:root {
    --ink: #0a0a0c;
    --ink-2: #14141a;
    --cream: #f5efe0;
    --cream-dim: #e8dfc9;
    --gold: #d4a94a;
    --gold-hi: #ecc76a;
    --gold-dim: #8e6f2e;
    --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --sans: 'Inter', system-ui, -apple-system, sans-serif;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--ink);
    color: var(--cream);
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }

  /* Loader — vinyl spinning up */
  .loader {
    position: fixed; inset: 0; z-index: 100;
    background: var(--ink);
    display: flex; align-items: center; justify-content: center;
    animation: fadeOut 0.7s ease 1.6s forwards;
    pointer-events: none;
  }
  .loader svg { width: 120px; height: 120px; animation: spinIn 1.4s cubic-bezier(.2,.7,.2,1) forwards; }
  @keyframes spinIn {
    0% { transform: rotate(0) scale(0.4); opacity: 0; }
    60% { opacity: 1; }
    100% { transform: rotate(540deg) scale(1); opacity: 1; }
  }
  @keyframes fadeOut { to { opacity: 0; visibility: hidden; } }

  /* NAV */
  nav.top {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    padding: 22px 40px;
    display: flex; align-items: center; justify-content: space-between;
    background: linear-gradient(to bottom, rgba(10,10,12,.85), rgba(10,10,12,0));
    transition: background 0.3s;
  }
  nav.top.scrolled { background: rgba(10,10,12,.92); backdrop-filter: blur(10px); padding: 14px 40px; }
  nav.top .brand { display: flex; align-items: center; gap: 12px; }
  nav.top .brand img { width: 38px; height: 38px; border-radius: 50%; }
  nav.top .brand span {
    font-family: var(--serif); font-size: 19px; letter-spacing: .18em;
    text-transform: uppercase; color: var(--cream);
  }
  nav.top .brand span em { color: var(--gold); font-style: normal; font-size: 10px; display: block; letter-spacing: .3em; margin-top: 2px; }
  nav.top ul { display: flex; gap: 32px; list-style: none; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; }
  nav.top ul a { position: relative; padding: 4px 0; color: var(--cream-dim); transition: color .3s; }
  nav.top ul a::after {
    content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
    background: var(--gold); transition: width .4s ease;
  }
  nav.top ul a:hover { color: var(--gold); }
  nav.top ul a:hover::after { width: 100%; }
  nav.top .cta {
    padding: 10px 22px; border: 1px solid var(--gold); color: var(--gold);
    font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
    transition: all .3s; border-radius: 2px;
  }
  nav.top .cta:hover { background: var(--gold); color: var(--ink); }
  /* Hamburger button - hidden on desktop */
  nav.top .hamburger { display: none; background: none; border: 0; width: 40px; height: 40px; cursor: pointer; padding: 0; position: relative; z-index: 101; }
  nav.top .hamburger span { display: block; width: 26px; height: 2px; background: var(--cream); margin: 6px auto; transition: transform .3s, opacity .3s; }
  nav.top .hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); background: var(--gold); }
  nav.top .hamburger.open span:nth-child(2) { opacity: 0; }
  nav.top .hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: var(--gold); }

  @media (max-width: 900px) {
    nav.top { padding: 14px 20px; }
    nav.top .brand span { font-size: 14px; }
    nav.top .cta { display: none; }
    nav.top .hamburger { display: block; }
    nav.top ul {
      position: fixed; inset: 0; z-index: 100;
      background: rgba(10,10,12,0.98); backdrop-filter: blur(20px);
      flex-direction: column; justify-content: center; align-items: center;
      gap: 36px; font-size: 18px; letter-spacing: .3em;
      opacity: 0; pointer-events: none; transition: opacity .3s;
      margin: 0; padding: 40px;
    }
    nav.top ul.open { opacity: 1; pointer-events: auto; }
    nav.top ul a { color: var(--cream); font-family: var(--serif); font-size: 28px; letter-spacing: .05em; text-transform: none; }
    nav.top ul a:hover, nav.top ul a:focus { color: var(--gold); }
    nav.top ul li.mobile-cta { margin-top: 20px; }
    nav.top ul li.mobile-cta a {
      display: inline-block; padding: 14px 32px; border: 1px solid var(--gold);
      color: var(--gold); font-family: var(--sans); font-size: 12px;
      letter-spacing: .3em; text-transform: uppercase;
    }
  }

  /* HERO */
  .hero {
    position: relative; min-height: 100vh; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .hero-media {
    position: absolute; inset: 0; z-index: 1;
  }
  .hero-media img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(0.55) contrast(1.05);
    transform: scale(1.05);
    animation: kenburns 18s ease-in-out infinite alternate;
  }
  @keyframes kenburns {
    0% { transform: scale(1.05) translate(0, 0); }
    100% { transform: scale(1.15) translate(-2%, -1%); }
  }
  .hero-media::after {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at center, transparent 0%, rgba(10,10,12,.55) 60%, rgba(10,10,12,.95) 100%),
      linear-gradient(to bottom, rgba(10,10,12,.4) 0%, transparent 40%, rgba(10,10,12,.6) 100%);
  }
  .hero-inner {
    position: relative; z-index: 2; text-align: center;
    padding: 0 30px; max-width: 1100px;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 14px;
    font-size: 11px; letter-spacing: .35em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 32px;
    opacity: 0; animation: rise .9s ease .5s forwards;
  }
  .hero-eyebrow .line { width: 40px; height: 1px; background: var(--gold); }
  .hero h1 {
    font-family: var(--serif); font-weight: 400;
    font-size: clamp(2.6rem, 6.5vw, 5.6rem);
    line-height: 1.02; letter-spacing: -0.01em;
    color: var(--cream);
    margin-bottom: 28px;
  }
  .hero h1 .word {
    display: inline-block; opacity: 0; transform: translateY(30px);
    animation: rise .9s cubic-bezier(.2,.7,.2,1) forwards;
  }
  .hero h1 .accent { color: var(--gold); font-style: italic; font-weight: 500; }
  @keyframes rise { to { opacity: 1; transform: translateY(0); } }

  .hero-sub {
    font-family: var(--serif); font-style: italic;
    font-size: clamp(1.05rem, 1.9vw, 1.4rem);
    color: var(--cream-dim); max-width: 720px; margin: 0 auto 44px;
    opacity: 0; animation: rise 1s ease 1.6s forwards;
  }
  .hero-ctas {
    display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
    opacity: 0; animation: rise 1s ease 1.9s forwards;
  }
  .btn-primary, .btn-secondary {
    padding: 16px 34px; font-size: 12px; letter-spacing: .28em;
    text-transform: uppercase; border-radius: 2px;
    transition: all .35s cubic-bezier(.2,.7,.2,1); cursor: pointer;
    display: inline-block; font-family: var(--sans); font-weight: 500;
  }
  .btn-primary {
    background: var(--gold); color: var(--ink); border: 1px solid var(--gold);
    position: relative; overflow: hidden;
  }
  .btn-primary::before {
    content: ''; position: absolute; inset: 0; background: var(--gold-hi);
    transform: translateX(-101%); transition: transform .4s ease;
  }
  .btn-primary span { position: relative; z-index: 1; }
  .btn-primary:hover::before { transform: translateX(0); }
  .btn-primary:hover { box-shadow: 0 10px 30px rgba(212,169,74,.35); }
  .btn-secondary { color: var(--cream); border: 1px solid rgba(245,239,224,.35); }
  .btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

  .scroll-cue {
    position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
    z-index: 2; color: var(--cream-dim); font-size: 10px;
    letter-spacing: .35em; text-transform: uppercase;
    opacity: 0; animation: fadeIn 1s ease 2.4s forwards;
  }
  .scroll-cue::after {
    content: ''; display: block; width: 1px; height: 40px;
    background: var(--gold); margin: 12px auto 0;
    animation: pulseLine 2s ease-in-out infinite;
  }
  @keyframes fadeIn { to { opacity: .7; } }
  @keyframes pulseLine { 0%, 100% { transform: scaleY(1); opacity: 1; } 50% { transform: scaleY(.4); opacity: .3; } }

  /* MARQUEE */
  .marquee {
    background: var(--ink-2); border-top: 1px solid rgba(212,169,74,.15);
    border-bottom: 1px solid rgba(212,169,74,.15);
    padding: 24px 0; overflow: hidden; position: relative;
  }
  .marquee-track {
    display: flex; gap: 60px; white-space: nowrap;
    animation: scroll 40s linear infinite;
    font-family: var(--serif); font-size: clamp(1.5rem, 3.2vw, 2.4rem);
    font-style: italic; color: var(--cream-dim);
  }
  .marquee-track span { display: inline-flex; align-items: center; gap: 60px; }
  .marquee-track .dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; display: inline-block; }
  @keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* SECTION BASE */
  section { position: relative; }
  .section-pad { padding: 120px 40px; max-width: 1300px; margin: 0 auto; }
  @media (max-width: 700px) { .section-pad { padding: 80px 20px; } }

  .eyebrow {
    display: inline-flex; align-items: center; gap: 14px;
    font-size: 11px; letter-spacing: .35em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 24px;
  }
  .eyebrow .line { width: 32px; height: 1px; background: var(--gold); }

  h2.display {
    font-family: var(--serif); font-weight: 400;
    font-size: clamp(2rem, 4.5vw, 3.8rem); line-height: 1.05;
    color: var(--cream); letter-spacing: -.01em; margin-bottom: 24px;
  }
  h2.display em { color: var(--gold); font-weight: 500; }

  .lead {
    font-family: var(--serif); font-style: italic;
    font-size: clamp(1.1rem, 1.7vw, 1.35rem);
    color: var(--cream-dim); max-width: 640px;
  }

  /* Reveal utility */
  .reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s ease, transform 1s cubic-bezier(.2,.7,.2,1); }
  .reveal.in { opacity: 1; transform: translateY(0); }
  .reveal.delay-1 { transition-delay: .1s; }
  .reveal.delay-2 { transition-delay: .25s; }
  .reveal.delay-3 { transition-delay: .4s; }

  /* TWO-PART: cocktail then party */
  .duality {
    background: var(--ink);
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: 90vh; position: relative;
  }
  .duality .half {
    padding: 100px 60px; display: flex; flex-direction: column; justify-content: center;
    position: relative; overflow: hidden;
  }
  .duality .half-media {
    position: absolute; inset: 0; z-index: 0;
  }
  .duality .half-media img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
  }
  .duality .half:hover .half-media img { transform: scale(1.08); }
  .duality .half-media::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(10,10,12,.85) 0%, rgba(10,10,12,.55) 100%);
    transition: opacity .4s;
  }
  .duality .half:hover .half-media::after { opacity: .6; }
  .duality .half-content { position: relative; z-index: 1; }
  .duality .chapter-num {
    font-family: var(--serif); font-style: italic;
    font-size: 14px; color: var(--gold); letter-spacing: .3em;
    text-transform: uppercase; margin-bottom: 20px;
  }
  .duality h3 {
    font-family: var(--serif); font-weight: 400;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.05; margin-bottom: 20px; color: var(--cream);
  }
  .duality h3 em { color: var(--gold); font-weight: 500; }
  .duality .desc { color: var(--cream-dim); font-size: 1.05rem; line-height: 1.7; max-width: 460px; }
  .duality .divider-v {
    position: absolute; left: 50%; top: 15%; bottom: 15%; width: 1px;
    background: linear-gradient(to bottom, transparent, var(--gold-dim), transparent);
    z-index: 2;
  }
  @media (max-width: 900px) {
    .duality { grid-template-columns: 1fr; }
    .duality .divider-v { display: none; }
    .duality .half { padding: 70px 30px; }
  }

  /* MANIFESTO */
  .manifesto { background: var(--ink); text-align: center; }
  .manifesto .section-pad { max-width: 1000px; }
  .manifesto blockquote {
    font-family: var(--serif); font-weight: 400;
    font-size: clamp(1.6rem, 3.4vw, 2.6rem);
    line-height: 1.35; color: var(--cream);
    position: relative;
  }
  .manifesto blockquote em { color: var(--gold); font-style: italic; }
  .manifesto .quote-mark {
    font-family: var(--serif); color: var(--gold);
    font-size: 6rem; line-height: 0.5; display: block; margin-bottom: 20px;
  }
  .manifesto .signature {
    margin-top: 40px; font-family: var(--serif); font-style: italic;
    color: var(--gold); font-size: 1.1rem; letter-spacing: .1em;
  }

  /* WHAT YOU GET */
  .services {
    background: var(--ink-2);
    border-top: 1px solid rgba(212,169,74,.15);
    border-bottom: 1px solid rgba(212,169,74,.15);
  }
  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
    margin-top: 60px; background: rgba(212,169,74,.15);
  }
  @media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }
  .svc {
    background: var(--ink-2); padding: 48px 36px;
    transition: background .5s;
    position: relative; overflow: hidden;
  }
  .svc:hover { background: #1c1c22; }
  .svc::before {
    content: ''; position: absolute; top: 0; left: 0; width: 0; height: 2px;
    background: var(--gold); transition: width .5s ease;
  }
  .svc:hover::before { width: 100%; }
  .svc .num {
    font-family: var(--serif); font-size: 44px; font-style: italic;
    color: var(--gold-dim); margin-bottom: 24px;
  }
  .svc:hover .num { color: var(--gold); transition: color .4s; }
  .svc h4 {
    font-family: var(--serif); font-weight: 500; font-size: 1.6rem;
    color: var(--cream); margin-bottom: 14px;
  }
  .svc p { color: var(--cream-dim); font-size: .98rem; line-height: 1.65; }

  /* GALLERY strip */
  .gallery { background: var(--ink); padding: 100px 0 40px; }
  .gallery-head { text-align: center; padding: 0 40px 60px; }
  .gallery-strip {
    display: flex; gap: 20px; padding: 0 40px 40px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .gallery-strip::-webkit-scrollbar { display: none; }
  .gallery-strip .card {
    flex: 0 0 auto; scroll-snap-align: start;
    width: 380px; height: 500px; position: relative;
    overflow: hidden; border-radius: 2px;
    transition: transform .6s cubic-bezier(.2,.7,.2,1);
  }
  .gallery-strip .card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.2s ease, filter .8s;
    filter: grayscale(30%) brightness(.85);
  }
  .gallery-strip .card:hover img { transform: scale(1.08); filter: grayscale(0) brightness(1); }
  .gallery-strip .card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,10,12,.85), transparent 50%);
    pointer-events: none;
  }
  .gallery-strip .card .cap {
    position: absolute; bottom: 24px; left: 24px; right: 24px;
    z-index: 2; color: var(--cream);
    font-family: var(--serif); font-style: italic; font-size: 1.1rem;
  }
  .gallery-strip .card .cap em { color: var(--gold); font-style: normal; letter-spacing: .2em; text-transform: uppercase; font-size: 10px; display: block; margin-bottom: 6px; }

  /* CLOSING CTA */
  .closing {
    position: relative; min-height: 80vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center; overflow: hidden;
    background: var(--ink);
  }
  .closing-media { position: absolute; inset: 0; z-index: 0; }
  .closing-media img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(.35) contrast(1.1);
    transform: scale(1.05);
  }
  .closing-inner { position: relative; z-index: 1; padding: 0 30px; max-width: 900px; }
  .closing h2 {
    font-family: var(--serif); font-weight: 400;
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    line-height: 1.05; color: var(--cream); margin-bottom: 28px;
  }
  .closing h2 em { color: var(--gold); font-style: italic; }
  .closing p {
    font-family: var(--serif); font-style: italic;
    font-size: clamp(1.05rem, 1.7vw, 1.3rem);
    color: var(--cream-dim); margin-bottom: 42px;
  }

  /* WORDMARK closer */
  .wordmark-closer {
    background: var(--ink); padding: 80px 40px 40px;
    text-align: center; overflow: hidden;
  }
  .wordmark-closer img {
    max-width: min(90vw, 1200px); height: auto;
    margin: 0 auto; opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.4s ease, transform 1.4s cubic-bezier(.2,.7,.2,1);
  }
  .wordmark-closer.in img { opacity: 1; transform: translateY(0); }

  /* FOOTER */
  footer {
    background: #050506; padding: 60px 40px 40px;
    border-top: 1px solid rgba(212,169,74,.1);
  }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px;
    max-width: 1200px; margin: 0 auto;
  }
  @media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; gap: 40px; } }
  .footer-grid h5 {
    font-family: var(--serif); font-weight: 500; color: var(--gold);
    font-size: 13px; letter-spacing: .28em; text-transform: uppercase;
    margin-bottom: 20px;
  }
  .footer-grid p, .footer-grid a { color: var(--cream-dim); font-size: .95rem; line-height: 1.8; }
  .footer-grid a:hover { color: var(--gold); }
  .footer-bottom {
    max-width: 1200px; margin: 60px auto 0; padding-top: 30px;
    border-top: 1px solid rgba(212,169,74,.1);
    display: flex; justify-content: space-between; align-items: center;
    color: var(--gold-dim); font-size: 12px; letter-spacing: .15em; text-transform: uppercase;
  }
  @media (max-width: 700px) { .footer-bottom { flex-direction: column; gap: 12px; text-align: center; } }

  /* Cursor-follow spotlight on hero */
  .hero { cursor: none; }
  @media (hover: none) { .hero { cursor: default; } .cursor-light { display: none !important; } }
  .cursor-light {
    position: fixed; width: 400px; height: 400px; pointer-events: none;
    background: radial-gradient(circle, rgba(236,199,106,.15), transparent 60%);
    border-radius: 50%; z-index: 3; mix-blend-mode: screen;
    transform: translate(-50%, -50%); transition: transform .1s ease-out;
    opacity: 0;
  }
/* ============ SUBPAGE STYLES ============ */

/* Subpage hero — shorter than homepage */
.page-hero {
  position: relative;
  min-height: 60vh;
  padding: 200px 40px 100px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--ink);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 40%, rgba(212,169,74,0.08), transparent 60%),
                    radial-gradient(circle at 70% 60%, rgba(212,169,74,0.05), transparent 55%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 900px; }
.page-hero .eyebrow {
  font-family: var(--sans); font-size: 11px; letter-spacing: .4em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 24px;
}
.page-hero h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(48px, 7vw, 92px); line-height: 1;
  letter-spacing: -0.01em; margin-bottom: 24px;
}
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero p {
  font-size: 18px; color: var(--cream-dim); max-width: 620px;
  margin: 0 auto; line-height: 1.65;
}

/* Content sections */
.section {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-narrow { max-width: 820px; }
.section h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(36px, 4.5vw, 56px);
  margin-bottom: 32px; line-height: 1.1;
}
.section h2 em { color: var(--gold); font-style: italic; }
.section h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(24px, 3vw, 34px);
  margin: 40px 0 20px;
}
.section p {
  font-size: 17px; color: var(--cream-dim);
  margin-bottom: 20px; line-height: 1.75;
  max-width: 68ch;
}
.section p em { color: var(--gold); font-style: italic; }

/* Package cards */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 60px 0 30px;
}
.package-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(212,169,74,0.15);
  border-radius: 4px;
  padding: 44px 32px 36px;
  position: relative;
  transition: transform .5s ease, border-color .5s ease, box-shadow .5s ease;
}
.package-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,169,74,0.5);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}
.package-card.featured {
  border-color: rgba(212,169,74,0.5);
  background: linear-gradient(180deg, rgba(212,169,74,0.06), rgba(255,255,255,0.02));
}
.package-card.featured::before {
  content: 'Most Popular';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--ink);
  font-size: 10px; letter-spacing: .25em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 2px; font-weight: 500;
}
.package-card .pk-name {
  font-family: var(--serif); font-size: 28px; font-weight: 500;
  margin-bottom: 8px;
}
.package-card .pk-tag {
  font-family: var(--sans); font-size: 11px; letter-spacing: .25em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 24px;
}
.package-card .pk-price {
  font-family: var(--serif); font-size: 44px; color: var(--cream);
  margin-bottom: 4px; letter-spacing: -.01em;
}
.package-card .pk-price sup { font-size: 20px; color: var(--gold-dim); }
.package-card .pk-price-note {
  font-size: 12px; color: var(--cream-dim); opacity: 0.7;
  margin-bottom: 28px; letter-spacing: .05em;
}
.package-card .pk-desc {
  font-size: 15px; color: var(--cream-dim);
  line-height: 1.7; margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(212,169,74,0.12);
}
.package-card ul {
  list-style: none; margin-bottom: 32px;
}
.package-card ul li {
  font-size: 14px; color: var(--cream); opacity: .85;
  padding: 10px 0 10px 26px; position: relative;
  border-bottom: 1px dashed rgba(212,169,74,0.08);
}
.package-card ul li:last-child { border-bottom: none; }
.package-card ul li::before {
  content: ''; position: absolute; left: 0; top: 16px;
  width: 14px; height: 1px; background: var(--gold);
}
.package-card .pk-cta {
  display: block; text-align: center;
  padding: 14px 20px;
  border: 1px solid var(--gold); color: var(--gold);
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  transition: all .3s;
}
.package-card .pk-cta:hover { background: var(--gold); color: var(--ink); }

/* Add-on section */
.addons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.addon {
  padding: 24px;
  background: rgba(255,255,255,0.02);
  border-left: 2px solid var(--gold);
  border-radius: 2px;
}
.addon .a-name {
  font-family: var(--serif); font-size: 20px; margin-bottom: 6px;
}
.addon .a-price {
  color: var(--gold); font-size: 14px;
  letter-spacing: .1em; margin-bottom: 10px;
}
.addon .a-desc { font-size: 14px; color: var(--cream-dim); line-height: 1.6; }

/* FAQ accordion */
.faq-list { margin: 60px 0; }
.faq-item {
  border-bottom: 1px solid rgba(212,169,74,0.18);
  transition: background .3s;
}
.faq-item:first-child { border-top: 1px solid rgba(212,169,74,0.18); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 26px 0; cursor: pointer;
  font-family: var(--serif); font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 400; color: var(--cream);
  gap: 20px;
}
.faq-q:hover { color: var(--gold); }
.faq-q .plus {
  width: 24px; height: 24px; flex-shrink: 0;
  position: relative;
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.faq-q .plus::before, .faq-q .plus::after {
  content: ''; position: absolute; background: var(--gold);
  left: 50%; top: 50%; transform: translate(-50%,-50%);
}
.faq-q .plus::before { width: 16px; height: 1px; }
.faq-q .plus::after { width: 1px; height: 16px; transition: transform .4s; }
.faq-item.open .plus::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .5s ease;
}
.faq-item.open .faq-a { max-height: 1500px; }
.faq-a-inner {
  padding: 0 0 32px; font-size: 16px;
  color: var(--cream-dim); line-height: 1.75;
  max-width: 68ch;
}
.faq-a-inner ul {
  margin: 12px 0 12px 20px; color: var(--cream-dim);
}
.faq-a-inner ul li { margin-bottom: 6px; font-size: 15px; }

/* About page */
.about-hero-img {
  width: 100%; max-width: 900px;
  aspect-ratio: 16/9; object-fit: cover;
  border-radius: 4px; margin: 40px auto;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.7);
}
.about-quote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--gold); line-height: 1.4;
  border-left: 2px solid var(--gold);
  padding: 12px 0 12px 30px;
  margin: 50px 0;
  max-width: 700px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
  margin: 60px 0;
  padding: 0 20px;
  max-width: 1400px;
  margin-left: auto; margin-right: auto;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  background: var(--ink-2);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease, filter .8s ease;
  filter: brightness(0.85);
}
.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1);
}
.gallery-item.tall { grid-row: span 2; aspect-ratio: 1/2; }
@media (max-width: 640px) {
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 1/1; }
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin: 60px 0;
}
.testimonial {
  padding: 40px 32px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(212,169,74,0.1);
  border-radius: 4px;
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute; top: -20px; left: 20px;
  font-family: var(--serif); font-size: 120px;
  color: var(--gold); opacity: 0.4; line-height: 1;
}
.testimonial .stars {
  color: var(--gold); font-size: 16px; letter-spacing: 3px;
  margin-bottom: 20px;
}
.testimonial .quote {
  font-family: var(--serif); font-size: 18px;
  color: var(--cream); line-height: 1.6;
  margin-bottom: 24px; font-style: italic;
}
.testimonial .attribution {
  font-size: 12px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold);
}
.testimonial .attribution span {
  display: block; color: var(--cream-dim);
  letter-spacing: 0; text-transform: none;
  font-size: 13px; margin-top: 4px;
}

/* Coverage area */
.coverage-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  margin: 40px 0;
}
.coverage-group h4 {
  font-family: var(--sans); font-size: 12px; letter-spacing: .25em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(212,169,74,0.2);
}
.coverage-group ul {
  list-style: none; column-count: 1;
}
.coverage-group li {
  font-size: 14px; color: var(--cream-dim);
  padding: 5px 0;
}

/* Simple footer */
footer.site {
  padding: 60px 40px 40px;
  background: var(--ink-2);
  text-align: center;
  border-top: 1px solid rgba(212,169,74,0.15);
}
footer.site .brand-line {
  font-family: var(--serif); font-size: 22px;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
footer.site .tagline {
  color: var(--cream-dim); font-size: 13px;
  letter-spacing: .1em; margin-bottom: 30px;
}
footer.site .foot-nav {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 30px; margin-bottom: 30px;
  list-style: none;
}
footer.site .foot-nav a {
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--cream-dim); transition: color .3s;
}
footer.site .foot-nav a:hover { color: var(--gold); }
footer.site .copy {
  font-size: 11px; letter-spacing: .15em;
  color: var(--cream-dim); opacity: .5;
}

/* Section CTA band */
.cta-band {
  padding: 100px 40px;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(212,169,74,0.04));
  border-top: 1px solid rgba(212,169,74,0.1);
}
.cta-band h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 20px;
}
.cta-band p {
  color: var(--cream-dim); font-size: 17px;
  max-width: 500px; margin: 0 auto 32px;
}
.cta-band .btn-primary {
  display: inline-block;
  padding: 18px 40px;
  background: var(--gold); color: var(--ink);
  font-size: 12px; letter-spacing: .25em;
  text-transform: uppercase; font-weight: 500;
  border-radius: 2px;
  transition: all .3s;
}
.cta-band .btn-primary:hover {
  background: var(--gold-hi);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -15px rgba(212,169,74,0.4);
}

/* Reveal on scroll (shared with homepage) */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
  .section { padding: 60px 24px; }
  .page-hero { padding: 150px 24px 60px; min-height: 45vh; }
  .cta-band { padding: 60px 24px; }
}
