:root {
  --radius: 0.625rem;
  --navy: #16273f;
  --navy-mid: #1c3a5e;
  --gold: #be8e45;
  --gold-light: #fbce7e;
  --gold-dark: #a77233;
  --gold-text: #8a6a2f;
  --heart: #e0303a;
  --muted: #4a5568;
  --muted-2: #7a8290;
  --line: #e7e2d6;
  --background: #ffffff;
  --foreground: #16273f;
  --card: #ffffff;
  --card-foreground: #16273f;
  --primary: #1c3a5e;
  --primary-foreground: #ffffff;
  --secondary: #f6f3ec;
  --muted-foreground: #4a5568;
  --accent: #be8e45;
  --accent-foreground: #3a2a0c;
  --border: #e7e2d6;
  --font: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.container-6xl { max-width: 72rem; }
.container-5xl { max-width: 64rem; }
.container-4xl { max-width: 56rem; }

@media (max-width: 640px) {
  .container { padding-inline: 1.25rem; }
}

.eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow--accent { color: var(--accent); }
.eyebrow--primary { color: var(--primary); }

h2 {
  margin-top: 0.5rem;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

@media (min-width: 640px) {
  h2 { font-size: 2.25rem; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 12px;
  padding: 15px 26px;
  font-size: 1rem;
  font-weight: 700;
  transition: filter 0.15s ease, background-color 0.15s ease, transform 0.15s ease;
}

.btn--gold {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  color: var(--accent-foreground);
  box-shadow: 0 6px 20px rgb(190 142 69 / 0.25);
}

.btn--gold:hover { filter: brightness(1.05); }

.btn--navy-outline {
  background: #fff;
  border: 1.5px solid var(--navy-mid);
  color: var(--navy-mid);
}

.btn--navy-outline:hover {
  background: var(--secondary);
}

.btn--primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.btn--primary:hover { filter: brightness(1.1); }

.btn--outline {
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--card-foreground);
}

.btn--outline:hover {
  background: var(--secondary);
}

/* Hero */
.hero {
  width: 100%;
  min-height: 100vh;
  background: #fff;
  padding: 3.5rem 4rem 4.5rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.hero__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.hero__mark {
  position: relative;
  width: 150px;
}

.hero__mark img {
  width: 100%;
  height: auto;
  display: block;
}

.hero__name {
  color: var(--navy-mid);
  font-weight: 800;
  font-size: 1.375rem;
  letter-spacing: 0.01em;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 4rem;
  align-items: start;
  max-width: 90rem;
  margin: 0 auto;
  width: 100%;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.375rem;
  max-width: none;
}

.badge {
  display: inline-block;
  margin-bottom: 0;
  border: 0;
  background: none;
  padding: 0;
  color: var(--gold-text);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: none;
}

.hero__title {
  display: flex;
  flex-direction: column;
}

.hero h1 {
  margin: 0;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  color: var(--navy);
  text-wrap: pretty;
}

.hero__sub {
  margin: 0;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: pretty;
  background: linear-gradient(90deg, var(--gold), var(--gold-light) 55%, var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  margin: 0;
  max-width: 30rem;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: 0;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.25rem;
  margin-top: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  width: 100%;
  font-size: 0.875rem;
}

.hero__stats strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
}

.hero__stats span {
  color: var(--muted-2);
  font-size: 0.8125rem;
  font-weight: 600;
  opacity: 1;
}

.hero__photo {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgb(22 39 63 / 0.18);
}

.hero__photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1376 / 768;
  display: block;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .hero {
    padding: 2.5rem 1.5rem 3rem;
    gap: 2.5rem;
    min-height: 0;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero h1,
  .hero__sub {
    font-size: 2.25rem;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 1.75rem 1.25rem 2.5rem;
    gap: 1.75rem;
  }

  .hero__mark {
    width: 120px;
  }

  .hero__name {
    font-size: 1.125rem;
  }

  .hero h1,
  .hero__sub {
    font-size: 1.875rem;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions {
    width: 100%;
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__stats {
    gap: 1.25rem 1.75rem;
  }
}

/* Announcement */
.announce {
  max-width: 64rem;
  margin-inline: auto;
  padding: 5rem 1.5rem;
  text-align: center;
}

@media (max-width: 640px) {
  .announce {
    padding: 3.5rem 1.25rem;
  }
}

.announce .eyebrow {
  margin-bottom: 0.75rem;
}

.announce h2 {
  margin-top: 0.75rem;
}

.announce p:not(.eyebrow) {
  margin: 1.25rem auto 0;
  max-width: 42rem;
  font-size: 1.125rem;
  line-height: 1.625;
  color: var(--muted-foreground);
}

.announce picture {
  display: block;
  margin-top: 2.5rem;
}

.announce img {
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 896;
  border-radius: calc(var(--radius) + 12px);
  object-fit: cover;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

/* Features */
.features {
  background: color-mix(in oklab, var(--secondary) 60%, transparent);
  padding-block: 5rem;
}

@media (max-width: 640px) {
  .features {
    padding-block: 3.5rem;
  }
}

.features__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 3rem;
}

.features__intro {
  max-width: 28rem;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .features__head {
    flex-direction: row;
    align-items: flex-end;
  }
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--card-foreground);
  padding: 1.25rem;
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  transition: box-shadow 0.15s ease;
}

.feature-card:hover {
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.feature-card__icon {
  flex: none;
  display: flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: color-mix(in oklab, var(--primary) 10%, transparent);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 700;
}

.feature-card span:last-child {
  font-weight: 500;
}

/* Arrangements */
.arrangements {
  padding-block: 5rem;
}

@media (max-width: 640px) {
  .arrangements {
    padding-block: 3.5rem;
  }

  .package {
    padding: 1.5rem;
  }
}

.arrangements__intro {
  max-width: 42rem;
  margin-bottom: 3rem;
}

.arrangements__intro p:not(.eyebrow) {
  margin-top: 1rem;
  color: var(--muted-foreground);
}

.arrangements__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .arrangements__grid { grid-template-columns: repeat(2, 1fr); }
}

.package {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 12px);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 2rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.package:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.package__blob {
  position: absolute;
  right: -2rem;
  top: -2rem;
  width: 8rem;
  height: 8rem;
  border-radius: 9999px;
  background: color-mix(in oklab, var(--accent) 10%, transparent);
  transition: transform 0.15s ease;
}

.package:hover .package__blob {
  transform: scale(1.25);
}

.package h3 {
  position: relative;
  font-size: 1.25rem;
  font-weight: 600;
}

.package p {
  position: relative;
  margin-top: 0.75rem;
  color: var(--muted-foreground);
}

/* Locations */
.locations {
  background: var(--primary);
  color: var(--primary-foreground);
  padding-block: 5rem;
}

.locations__grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .locations__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.locations p:not(.eyebrow) {
  margin-top: 1rem;
  color: color-mix(in oklab, var(--primary-foreground) 80%, transparent);
}

.place-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 640px) {
  .locations {
    padding-block: 3.5rem;
  }

  .place {
    padding: 1rem 0.5rem;
  }

  .place strong {
    font-size: 1rem;
  }
}

.place {
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid color-mix(in oklab, var(--primary-foreground) 20%, transparent);
  background: color-mix(in oklab, var(--primary-foreground) 5%, transparent);
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(8px);
}

.place small {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--primary-foreground) 60%, transparent);
}

.place strong {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}

/* CTA */
.cta {
  max-width: 56rem;
  margin-inline: auto;
  padding: 6rem 1.5rem;
  text-align: center;
}

@media (max-width: 640px) {
  .cta {
    padding: 3.5rem 1.25rem;
  }

  .cta__actions {
    flex-direction: column;
  }

  .cta__actions .btn {
    width: 100%;
  }
}

.cta h2 {
  margin-top: 0.75rem;
}

@media (min-width: 640px) {
  .cta h2 { font-size: 3rem; }
}

.cta p:not(.eyebrow) {
  margin: 1.25rem auto 0;
  max-width: 42rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: color-mix(in oklab, var(--secondary) 40%, transparent);
}

.site-footer__inner {
  display: flex;
  max-width: 72rem;
  margin-inline: auto;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 1.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.site-footer__link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.site-footer__link:hover {
  color: var(--navy);
}

.site-footer__credit {
  margin: 0;
  font-size: inherit;
  color: inherit;
}

.site-footer__credit a {
  color: var(--navy);
  font-weight: 700;
}

.site-footer__credit a span {
  color: #dd0b0b;
}

.site-footer__credit a:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

@media (min-width: 640px) {
  .site-footer__inner {
    flex-direction: row;
  }
}
