/* ==========================================================================
   Puffy Pearl Balloons & Decor — styles.css
   Palette: pearl cream, champagne gold, blush, espresso
   Fonts:  Cormorant Garamond (display) · Pinyon Script (accent) · Jost (body)
   ========================================================================== */

:root {
  --pearl: #FBF7F0;
  --pearl-deep: #F3EBDD;
  --champagne: #B08D3E;
  --champagne-soft: #D8BE8A;
  --blush: #EBC9C4;
  --blush-deep: #DDA8A0;
  --espresso: #3B2F26;
  --espresso-soft: #6E5F52;
  --lilac: #C7B4DD;
  --white: #FFFFFF;
  --shadow: 0 24px 60px -24px rgba(59, 47, 38, .28);
  --radius-arch: 999px 999px 18px 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--pearl);
  color: var(--espresso);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

::selection {
  background: var(--champagne-soft);
  color: var(--espresso);
}

.serif {
  font-family: 'Cormorant Garamond', serif;
}

.script {
  font-family: 'Pinyon Script', cursive;
  font-weight: 400;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.5vw, 36px);
  padding: 10px clamp(20px, 5vw, 64px);
  background: rgba(251, 247, 240, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(176, 141, 62, .18);
  transition: box-shadow .3s;
}

nav.scrolled {
  box-shadow: 0 8px 30px -18px rgba(59, 47, 38, .3);
}

.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-brand img {
  height: 100px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 36px);
  font-size: .82rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  padding: 4px 0;
  color: var(--espresso-soft);
  transition: color .25s;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--champagne);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--champagne);
  transition: width .3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-cta {
  background: var(--espresso);
  color: var(--pearl) !important;
  padding: 11px 26px;
  border-radius: 999px;
  font-size: .82rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background .3s, transform .3s;
}

.nav-cta:hover {
  background: var(--champagne);
  transform: translateY(-1px);
}

/* Hamburger button — desktop: hidden */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 10px;
  transition: background .2s;
}

.nav-hamburger:hover {
  background: rgba(59, 47, 38, .07);
}

.bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--espresso);
  border-radius: 2px;
  transform-origin: center;
  transition: transform .35s cubic-bezier(.4, 0, .2, 1), opacity .25s ease, width .3s ease;
}

.nav-hamburger.open .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open .bar:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav-hamburger.open .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu drawer — desktop: hidden */
.mobile-menu {
  display: none;
}

@media (max-width: 820px) {
  nav {
    justify-content: space-between;
  }

  .nav-links {
    display: none;
  }

  .nav-brand img {
    height: 60px;
  }

  .nav-hamburger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 80px; /* updated by JS to exact nav height */
    left: 0;
    right: 0;
    z-index: 99;
    background: rgba(251, 247, 240, .97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(176, 141, 62, .2);
    box-shadow: 0 24px 48px -20px rgba(59, 47, 38, .22);
    padding: 16px clamp(24px, 6vw, 64px) 36px;
    transform: translateY(-110%);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
  }

  .mobile-menu.open {
    transform: translateY(0);
  }

  .mobile-link {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.65rem;
    font-weight: 500;
    letter-spacing: .02em;
    color: var(--espresso);
    padding: 16px 0;
    border-bottom: 1px solid rgba(176, 141, 62, .14);
    opacity: 0;
    transform: translateY(-8px);
    transition: color .25s, opacity .3s ease, transform .3s ease;
  }

  .mobile-link:last-of-type {
    border-bottom: none;
  }

  .mobile-link:hover {
    color: var(--champagne);
  }

  .mobile-menu.open .mobile-link:nth-child(1) { opacity: 1; transform: none; transition-delay: .06s; }
  .mobile-menu.open .mobile-link:nth-child(2) { opacity: 1; transform: none; transition-delay: .11s; }
  .mobile-menu.open .mobile-link:nth-child(3) { opacity: 1; transform: none; transition-delay: .16s; }
  .mobile-menu.open .mobile-link:nth-child(4) { opacity: 1; transform: none; transition-delay: .21s; }
  .mobile-menu.open .mobile-link:nth-child(5) { opacity: 1; transform: none; transition-delay: .26s; }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(110px, 16vh, 160px) clamp(20px, 6vw, 84px) clamp(60px, 8vh, 90px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(48% 42% at 82% 8%, rgba(235, 201, 196, .5), transparent 70%),
    radial-gradient(40% 36% at 8% 92%, rgba(216, 190, 138, .32), transparent 70%),
    radial-gradient(30% 30% at 70% 85%, rgba(199, 180, 221, .22), transparent 70%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: .78rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--champagne);
  margin-bottom: 26px;
}

.eyebrow::before {
  content: "";
  width: 44px;
  height: 1px;
  background: var(--champagne-soft);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2.9rem, 6.4vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -.01em;
  margin-bottom: 10px;
}

.hero h1 em {
  font-family: 'Pinyon Script', cursive;
  font-style: normal;
  font-size: 1.12em;
  color: var(--champagne);
  display: inline-block;
  transform: translateY(.06em);
}

.hero p.lead {
  max-width: 46ch;
  font-size: 1.06rem;
  font-weight: 300;
  color: var(--espresso-soft);
  margin: 22px 0 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(120deg, var(--champagne), #CBA85C 55%, var(--champagne));
  background-size: 200% 100%;
  color: var(--white);
  padding: 17px 38px;
  border-radius: 999px;
  font-size: .85rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0 18px 38px -16px rgba(176, 141, 62, .65);
  transition: background-position .5s, transform .3s, box-shadow .3s;
}

.btn-gold:hover {
  background-position: 100% 0;
  transform: translateY(-2px);
  box-shadow: 0 24px 44px -16px rgba(176, 141, 62, .75);
}

.btn-gold svg {
  transition: transform .3s;
}

.btn-gold:hover svg {
  transform: translateX(4px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  border: 1px solid rgba(59, 47, 38, .24);
  font-size: .85rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--espresso);
  transition: border-color .3s, background .3s;
}

.btn-ghost:hover {
  border-color: var(--champagne);
  background: rgba(216, 190, 138, .14);
}

.hero-note {
  margin-top: 30px;
  font-size: .9rem;
  color: var(--espresso-soft);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-note .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--champagne);
  box-shadow: 0 0 0 4px rgba(176, 141, 62, .16);
}

/* Hero arches — the signature element */

.hero-arches {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(14px, 1.8vw, 24px);
  align-items: end;
}

.arch {
  border-radius: var(--radius-arch);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 6px solid var(--white);
  outline: 1px solid rgba(176, 141, 62, .35);
  outline-offset: -1px;
  background: var(--white);
  animation: drift 9s ease-in-out infinite;
}

.arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arch-a {
  aspect-ratio: 3 / 4.3;
  animation-delay: 0s;
}

.arch-b {
  aspect-ratio: 3 / 4;
  margin-bottom: clamp(24px, 4vw, 56px);
  animation-delay: -4.5s;
}

@keyframes drift {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.hero-badge {
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid rgba(176, 141, 62, .3);
  border-radius: 999px;
  padding: 12px 26px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.02rem;
  color: var(--espresso-soft);
  box-shadow: 0 14px 30px -14px rgba(59, 47, 38, .3);
  white-space: nowrap;
}

.hero-badge strong {
  color: var(--champagne);
  font-style: normal;
  font-weight: 600;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 120px;
  }

  .hero-arches {
    max-width: 520px;
  }
}

/* Floating pearls */

.pearl-float {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle at 32% 28%, #fff 0%, #F5E9D3 38%, #DFC79A 78%, #C9AC6E 100%);
  box-shadow: inset -6px -8px 16px rgba(150, 115, 50, .25), 0 14px 28px -12px rgba(59, 47, 38, .28);
  animation: drift 11s ease-in-out infinite;
}

.pf1 {
  width: 64px;
  height: 64px;
  top: 16%;
  right: 44%;
  animation-delay: -2s;
}

.pf2 {
  width: 34px;
  height: 34px;
  top: 26%;
  right: 38%;
  animation-delay: -6s;
  opacity: .85;
}

.pf3 {
  width: 46px;
  height: 46px;
  bottom: 14%;
  left: 42%;
  animation-delay: -4s;
  opacity: .9;
}

@media (max-width: 900px) {
  .pf1, .pf2, .pf3 {
    display: none;
  }
}

/* ==========================================================================
   Section shell
   ========================================================================== */

section {
  padding: clamp(72px, 10vw, 130px) clamp(20px, 6vw, 84px);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head .eyebrow {
  justify-content: center;
}

.section-head .eyebrow::after {
  content: "";
  width: 44px;
  height: 1px;
  background: var(--champagne-soft);
}

.section-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  line-height: 1.08;
}

.section-head h2 em {
  font-family: 'Pinyon Script', cursive;
  font-style: normal;
  color: var(--champagne);
  font-size: 1.1em;
}

.section-head p {
  margin-top: 16px;
  color: var(--espresso-soft);
  font-weight: 300;
  font-size: 1.03rem;
}

/* ==========================================================================
   Services
   ========================================================================== */

.services {
  background: linear-gradient(180deg, var(--pearl) 0%, var(--pearl-deep) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(16px, 2.4vw, 28px);
  max-width: 1200px;
  margin: 0 auto;
}

.service {
  background: var(--white);
  border: 1px solid rgba(176, 141, 62, .22);
  border-radius: 22px;
  padding: 36px 30px 32px;
  text-align: center;
  transition: transform .35s, box-shadow .35s;
}

.service:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service .glyph {
  width: 64px;
  height: 74px;
  margin: 0 auto 20px;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(160deg, var(--blush) 0%, var(--pearl-deep) 100%);
  border: 1px solid rgba(176, 141, 62, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--champagne);
}

.service h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.service p {
  font-size: .94rem;
  color: var(--espresso-soft);
  font-weight: 300;
}

/* ==========================================================================
   Packages
   ========================================================================== */

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(20px, 2.6vw, 32px);
  max-width: 1220px;
  margin: 0 auto;
  align-items: stretch;
}

.pkg {
  position: relative;
  background: var(--white);
  border-radius: 26px;
  border: 1px solid rgba(176, 141, 62, .24);
  padding: 0 0 34px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .35s, box-shadow .35s;
}

.pkg:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.pkg-media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.pkg-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.pkg:hover .pkg-media img {
  transform: scale(1.05);
}

.pkg-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(255, 255, 255, .92) 100%);
}

.pkg-body {
  padding: 6px 32px 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pkg-name {
  font-size: .78rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--champagne);
  margin-bottom: 6px;
}

.pkg-price {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 3rem;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 18px;
}

.pkg-price small {
  font-size: .95rem;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--espresso-soft);
  letter-spacing: .05em;
}

.pkg ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.pkg li {
  display: flex;
  gap: 12px;
  font-size: .95rem;
  font-weight: 300;
  color: var(--espresso-soft);
  align-items: flex-start;
}

.pkg li::before {
  content: "";
  flex: none;
  width: 9px;
  height: 9px;
  margin-top: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, var(--champagne-soft) 60%, var(--champagne));
}

.pkg .pkg-btn {
  margin-top: auto;
  display: inline-flex;
  justify-content: center;
  padding: 15px 20px;
  border-radius: 999px;
  border: 1px solid var(--espresso);
  font-size: .8rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background .3s, color .3s, border-color .3s;
}

.pkg .pkg-btn:hover {
  background: var(--espresso);
  color: var(--pearl);
}

.pkg.featured {
  border: 1px solid var(--champagne);
  box-shadow: 0 30px 70px -30px rgba(176, 141, 62, .5);
}

.pkg.featured .pkg-btn {
  background: var(--espresso);
  color: var(--pearl);
  border-color: var(--espresso);
}

.pkg.featured .pkg-btn:hover {
  background: var(--champagne);
  border-color: var(--champagne);
}

.pkg-flag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(176, 141, 62, .4);
  color: var(--champagne);
  font-size: .7rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.pkg-note {
  max-width: 760px;
  margin: 40px auto 0;
  text-align: center;
  font-size: .92rem;
  color: var(--espresso-soft);
  font-weight: 300;
}

.pkg-note strong {
  color: var(--champagne);
  font-weight: 600;
}

/* ==========================================================================
   Gallery
   ========================================================================== */

.gallery {
  background: linear-gradient(180deg, var(--pearl-deep) 0%, var(--pearl) 30%);
}

.gallery-grid {
  columns: 3;
  column-gap: 18px;
  max-width: 1220px;
  margin: 0 auto;
}

.gallery-grid figure {
  break-inside: avoid;
  margin: 0 0 18px;
  border-radius: 18px;
  overflow: hidden;
  border: 5px solid var(--white);
  outline: 1px solid rgba(176, 141, 62, .28);
  outline-offset: -1px;
  box-shadow: 0 16px 40px -22px rgba(59, 47, 38, .3);
  position: relative;
}

.gallery-grid img {
  width: 100%;
  transition: transform .6s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.045);
}

.gallery-grid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px 16px 12px;
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(40, 30, 22, .72));
  opacity: 0;
  transition: opacity .35s;
}

.gallery-grid figure:hover figcaption {
  opacity: 1;
}

@media (max-width: 900px) {
  .gallery-grid {
    columns: 2;
  }
}

@media (max-width: 560px) {
  .gallery {
    padding-left: 0;
    padding-right: 0;
  }

  .gallery .section-head {
    padding-left: 20px;
    padding-right: 20px;
  }

  .gallery-grid {
    columns: unset;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding: 0 20px 20px;
    scrollbar-width: none;
    /* pull the grid flush so the first card lines up with page edge */
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }

  .gallery-grid::-webkit-scrollbar {
    display: none;
  }

  .gallery-grid figure {
    flex: none;
    width: 80vw;
    margin: 0;
    scroll-snap-align: start;
    /* keep aspect ratio consistent per slide */
    aspect-ratio: 3 / 4;
  }

  .gallery-grid figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* captions always visible on touch — no hover */
  .gallery-grid figcaption {
    opacity: 1;
  }

  /* swipe hint */
  .gallery-grid::after {
    content: "";
    flex: none;
    width: 6px;
  }
}

/* ==========================================================================
   Booking form section
   ========================================================================== */

.booking {
  position: relative;
  background: var(--espresso);
  color: var(--pearl);
  overflow: hidden;
}

.booking::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 55% at 10% 18%, rgba(216, 190, 138, .18), transparent 70%),
    radial-gradient(42% 55% at 90% 86%, rgba(235, 201, 196, .14), transparent 70%);
  pointer-events: none;
}

.booking-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: start;
}

.booking-script {
  font-family: 'Pinyon Script', cursive;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--champagne-soft);
  margin-bottom: 10px;
}

.booking-copy h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.08;
  margin-bottom: 20px;
}

.booking-copy h2 em {
  font-family: 'Pinyon Script', cursive;
  font-style: normal;
  color: var(--champagne-soft);
  font-size: 1.1em;
}

.booking-copy>p {
  font-weight: 300;
  color: rgba(251, 247, 240, .72);
  max-width: 38ch;
  font-size: 1rem;
  margin-bottom: 36px;
}

.booking-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.booking-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  color: rgba(251, 247, 240, .78);
  transition: color .3s;
}

.booking-contact a:hover {
  color: var(--champagne-soft);
}

.booking-contact svg {
  opacity: .7;
  flex-shrink: 0;
}

/* Custom booking form */

.booking-form-wrap {
  background: var(--white);
  border: 1px solid rgba(176, 141, 62, .3);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .38);
  padding: 44px clamp(28px, 4vw, 52px);
}

.booking-form {
  display: grid;
  gap: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--espresso);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: 'Jost', sans-serif;
  font-size: .97rem;
  font-weight: 300;
  color: var(--espresso);
  background: var(--pearl);
  border: 1px solid rgba(59, 47, 38, .18);
  border-radius: 12px;
  padding: 14px 18px;
  outline: none;
  transition: border-color .25s, box-shadow .25s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236E5F52' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-color: var(--pearl);
  padding-right: 42px;
  cursor: pointer;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(110, 95, 82, .5);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--champagne);
  box-shadow: 0 0 0 3px rgba(176, 141, 62, .14);
}

.form-field input.error,
.form-field select.error,
.form-field textarea.error {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, .1);
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.7;
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(120deg, var(--champagne), #CBA85C 55%, var(--champagne));
  background-size: 200% 100%;
  color: var(--white);
  padding: 17px 38px;
  border-radius: 999px;
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: .85rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 18px 38px -16px rgba(176, 141, 62, .65);
  transition: background-position .5s, transform .3s, box-shadow .3s;
}

.form-submit:hover:not(:disabled) {
  background-position: 100% 0;
  transform: translateY(-2px);
  box-shadow: 0 24px 44px -16px rgba(176, 141, 62, .75);
}

.form-submit:hover:not(:disabled) svg {
  transform: translateX(4px);
}

.form-submit:disabled {
  opacity: .65;
  cursor: not-allowed;
}

.form-submit svg {
  transition: transform .3s;
}

.form-privacy {
  font-size: .83rem;
  color: rgba(59, 47, 38, .5);
  font-weight: 300;
}

.form-success {
  text-align: center;
  padding: 32px 20px;
}

.form-success-icon {
  display: block;
  font-size: 2rem;
  color: var(--champagne);
  margin-bottom: 16px;
}

.form-success strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
  color: var(--espresso);
}

.form-success p {
  font-size: .95rem;
  color: var(--espresso-soft);
  font-weight: 300;
  max-width: 40ch;
  margin: 0 auto;
}

.form-error {
  background: rgba(192, 57, 43, .07);
  border: 1px solid rgba(192, 57, 43, .25);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: .9rem;
  color: #8b2015;
}

.form-error a {
  color: inherit;
  text-decoration: underline;
}

@media (max-width: 860px) {
  .booking-inner {
    grid-template-columns: 1fr;
  }

  .booking-copy>p {
    max-width: 100%;
  }
}

@media (max-width: 540px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   Our Story
   ========================================================================== */

.story {
  background: linear-gradient(180deg, var(--pearl-deep) 0%, var(--pearl) 100%);
}

.story-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr .55fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
}

.story-copy h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.08;
  margin-bottom: 30px;
}

.story-copy h2 em {
  font-family: 'Pinyon Script', cursive;
  font-style: normal;
  color: var(--champagne);
  font-size: 1.1em;
}

.story-body p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--espresso-soft);
  line-height: 1.85;
  margin-bottom: 18px;
}

.story-body p:last-child {
  margin-bottom: 0;
}

.story-thanks {
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic;
  font-size: 1.08rem !important;
  color: var(--espresso) !important;
  font-weight: 400 !important;
}

.story-sig {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(176, 141, 62, .2);
}

.story-sig-love {
  font-size: .88rem;
  color: var(--espresso-soft);
  font-weight: 300;
  margin-bottom: 2px;
}

.story-sig-name {
  display: block;
  font-family: 'Pinyon Script', cursive;
  font-size: 2.4rem;
  color: var(--champagne);
  line-height: 1.2;
  margin-bottom: 4px;
}

.story-sig-title {
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--espresso-soft);
  font-weight: 500;
}

.story-visual {
  position: relative;
}

.story-arch {
  border-radius: 999px 999px 18px 18px;
  overflow: hidden;
  border: 6px solid var(--white);
  outline: 1px solid rgba(176, 141, 62, .35);
  outline-offset: -1px;
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 4.6;
}

.story-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-pearl {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #fff 0%, #F5E9D3 38%, #DFC79A 78%, #C9AC6E 100%);
  box-shadow: inset -4px -5px 12px rgba(150, 115, 50, .25), 0 10px 20px -10px rgba(59, 47, 38, .28);
  animation: drift 10s ease-in-out infinite;
}

.sp-a {
  width: 52px;
  height: 52px;
  top: 12%;
  left: -22px;
  animation-delay: -3s;
}

.sp-b {
  width: 30px;
  height: 30px;
  bottom: 16%;
  right: -14px;
  animation-delay: -7s;
}

@media (max-width: 860px) {
  .story-inner {
    grid-template-columns: 1fr;
  }

  .story-visual {
    display: none;
  }
}

/* ==========================================================================
   About Us
   ========================================================================== */

.about {
  background: var(--pearl);
}

.about-intro {
  max-width: 820px;
  margin: 0 auto 56px;
  text-align: center;
}

.about-intro p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--espresso-soft);
  line-height: 1.85;
  margin-bottom: 16px;
}

.about-intro p:last-child {
  margin-bottom: 0;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.4vw, 28px);
  max-width: 900px;
  margin: 0 auto 56px;
}

.mv-card {
  background: var(--white);
  border: 1px solid rgba(176, 141, 62, .22);
  border-radius: 22px;
  padding: 40px 36px;
  text-align: center;
  transition: transform .35s, box-shadow .35s;
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.mv-card .glyph {
  width: 64px;
  height: 74px;
  margin: 0 auto 20px;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(160deg, var(--blush) 0%, var(--pearl-deep) 100%);
  border: 1px solid rgba(176, 141, 62, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--champagne);
}

.mv-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.mv-card p {
  font-size: .95rem;
  color: var(--espresso-soft);
  font-weight: 300;
  line-height: 1.75;
}

.values-wrap {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.values-label {
  font-size: .78rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--champagne);
  margin-bottom: 22px;
}

.values-grid {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.values-grid li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid rgba(176, 141, 62, .22);
  border-radius: 999px;
  padding: 13px 22px;
  font-size: .92rem;
  color: var(--espresso);
  font-weight: 400;
}

.val-icon {
  color: var(--champagne);
}

@media (max-width: 600px) {
  .mv-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq {
  background: var(--pearl-deep);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto 56px;
}

@media (max-width: 740px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(176, 141, 62, .2);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}

.faq-item[open] {
  border-color: rgba(176, 141, 62, .55);
  box-shadow: 0 8px 30px -16px rgba(176, 141, 62, .35);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--espresso);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
  transition: color .25s;
  line-height: 1.3;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] summary {
  color: var(--champagne);
}

.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(176, 141, 62, .35);
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23B08D3E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center / 10px no-repeat;
  transition: transform .3s ease;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
  background-color: rgba(176, 141, 62, .08);
}

.faq-body {
  border-top: 1px solid rgba(176, 141, 62, .12);
  padding: 0 24px 20px;
}

.faq-body p {
  padding-top: 16px;
  font-size: .95rem;
  font-weight: 300;
  color: var(--espresso-soft);
  line-height: 1.8;
}

.faq-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.faq-cta > p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--espresso);
}


/* ==========================================================================
   Footer
   ========================================================================== */

footer {
  background: var(--espresso);
  border-top: 1px solid rgba(216, 190, 138, .2);
  color: rgba(251, 247, 240, .6);
  padding: 30px clamp(20px, 6vw, 84px);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  font-size: .85rem;
  font-weight: 300;
  letter-spacing: .04em;
}

footer .fbrand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--champagne-soft);
  letter-spacing: .06em;
}

/* ==========================================================================
   Animations
   ========================================================================== */

/* ── Keyframes ────────────────────────────────────────────────────────────── */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}

@keyframes shimmer {
  from { left: -75%; }
  to   { left: 150%; }
}

/* ── Hero entrance (staggered on load) ─────────────────────────────────────── */

.hero-copy .eyebrow     { animation: fadeUp .7s cubic-bezier(.4,0,.2,1) .1s both; }
.hero-copy h1           { animation: fadeUp .7s cubic-bezier(.4,0,.2,1) .22s both; }
.hero-copy .lead        { animation: fadeUp .7s cubic-bezier(.4,0,.2,1) .36s both; }
.hero-copy .hero-actions{ animation: fadeUp .7s cubic-bezier(.4,0,.2,1) .5s both; }
.hero-copy .hero-note   { animation: fadeUp .7s cubic-bezier(.4,0,.2,1) .62s both; }
.hero-arches            { animation: fadeUp .9s cubic-bezier(.4,0,.2,1) .3s both; }

/* ── FAQ body reveal when opened ──────────────────────────────────────────── */

details[open] .faq-body {
  animation: faqReveal .28s cubic-bezier(.4,0,.2,1) both;
}

/* ── Package card shine sweep on hover ────────────────────────────────────── */

.pkg::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
  z-index: 2;
}

.pkg:hover::before {
  animation: shimmer .65s ease forwards;
}

/* ── Values pill hover ────────────────────────────────────────────────────── */

.values-grid li {
  transition: transform .25s ease, border-color .25s, background .25s, box-shadow .25s;
}

.values-grid li:hover {
  transform: translateY(-3px);
  border-color: rgba(176, 141, 62, .45);
  background: rgba(216, 190, 138, .1);
  box-shadow: 0 8px 20px -10px rgba(176, 141, 62, .28);
}

/* ── Story arch image zoom on hover ──────────────────────────────────────── */

.story-arch img {
  transition: transform .7s cubic-bezier(.4,0,.2,1);
}

.story-arch:hover img {
  transform: scale(1.04);
}

/* ── Mission / Vision card glow on hover ─────────────────────────────────── */

.mv-card {
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.mv-card:hover {
  border-color: rgba(176, 141, 62, .5);
}

/* ── FAQ item summary icon spin on open ──────────────────────────────────── */

.faq-item summary {
  transition: color .25s ease;
}

/* ── Booking form wrap entrance glow ─────────────────────────────────────── */

.booking-form-wrap {
  transition: box-shadow .4s ease;
}

.booking-form-wrap:focus-within {
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.38), 0 0 0 3px rgba(176,141,62,.12);
}

/* ==========================================================================
   Scroll reveal & accessibility
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}