/* =====================================================================
   Dance First (Calgary) — Premium boutique dance studio site
   Design system: warm cream / champagne / muted gold / claret / soft ink
   Elegant serif (Cormorant Garamond) + warm sans (Nunito Sans)
   Hand-authored, token-driven CSS. No build step required.
   ===================================================================== */

/* ------------------------------- Tokens ---------------------------- */
:root {
  /* Warm neutrals */
  --cream:      #FBF6EE;
  --cream-2:    #FDFAF4;
  --sand:       #F4EADB;
  --beige:      #EAD9C2;
  --champagne:  #E6D2B2;

  /* Accents */
  --gold:       #B98A4B;   /* muted gold */
  --gold-deep:  #9C6F38;
  --claret:     #9B3E33;   /* romantic rosewood / wine */
  --claret-deep:#7E3128;

  /* Ink / text */
  --ink:        #2C2521;
  --ink-soft:   #4A3F38;
  --muted:      #7A6B5E;
  --on-dark:    #F6EEE2;
  --on-dark-mut:#D8C7B2;

  /* Lines & surfaces */
  --line:       rgba(44,37,33,0.10);
  --line-strong:rgba(44,37,33,0.18);
  --surface:    #FFFFFF;

  /* Shadows (warm-tinted) */
  --sh-sm: 0 2px 10px rgba(74,48,20,.06);
  --sh-md: 0 14px 36px rgba(74,48,20,.10);
  --sh-lg: 0 28px 64px rgba(74,48,20,.16);
  --sh-gold: 0 12px 30px rgba(160,110,40,.22);

  /* Type */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Rhythm */
  --radius:      22px;
  --radius-lg:   30px;
  --radius-pill: 999px;
  --container:   1180px;
  --ease:        cubic-bezier(.22,.61,.36,1);

  --nav-h: 76px;
}

/* ------------------------------- Reset ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink-soft);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4 { margin: 0; font-family: var(--serif); color: var(--ink); font-weight: 600; line-height: 1.08; letter-spacing: .2px; }
p { margin: 0; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

/* ------------------------------ Layout ----------------------------- */
.container { width: min(100% - 44px, var(--container)); margin-inline: auto; }
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section--tint { background: linear-gradient(180deg, var(--cream) 0%, var(--sand) 100%); }
.section--sand { background: var(--sand); }
.center { text-align: center; }

.eyebrow {
  font-family: var(--sans);
  font-weight: 800;
  font-size: .74rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: .6em;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); opacity: .8; }
.eyebrow.no-rule::before { display: none; }

.h-display { font-size: clamp(2.4rem, 6vw, 4.3rem); }
.h-2 { font-size: clamp(2rem, 4.4vw, 3.15rem); }
.h-3 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--muted); max-width: 60ch; }
.section-head { max-width: 62ch; margin-inline: auto; }
.section-head p { margin-top: 16px; }

.italic-accent { font-style: italic; color: var(--claret); font-family: var(--serif); }

/* ----------------------------- Buttons ----------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: 15px 30px; min-height: 52px;
  border-radius: var(--radius-pill);
  font-family: var(--sans); font-weight: 800; font-size: .98rem; letter-spacing: .01em;
  border: 1.5px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--primary { background: var(--claret); color: #fff; box-shadow: 0 12px 28px rgba(123,49,40,.28); }
.btn--primary:hover { background: var(--claret-deep); transform: translateY(-3px); box-shadow: 0 18px 38px rgba(123,49,40,.36); }
.btn--gold { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%); color: #fff; box-shadow: var(--sh-gold); }
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(160,110,40,.32); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-deep); transform: translateY(-3px); background: rgba(185,138,75,.06); }
.btn--light { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.4); backdrop-filter: blur(6px); }
.btn--light:hover { background: rgba(255,255,255,.24); transform: translateY(-3px); }
.btn--block { width: 100%; }
.btn--sm { padding: 11px 22px; min-height: 44px; font-size: .9rem; }

.link-arrow { font-weight: 800; color: var(--claret); display: inline-flex; align-items: center; gap: .45em; transition: gap .25s var(--ease), color .2s; }
.link-arrow:hover { gap: .8em; color: var(--claret-deep); }

/* ------------------------------ Header ----------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  background: var(--cream); box-shadow: 0 1px 0 var(--line);
  transition: box-shadow .35s var(--ease);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: min(100% - 44px, 1280px); }
.site-header.scrolled { box-shadow: 0 1px 0 var(--line), var(--sh-sm); }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--claret), var(--gold-deep)); color: #fff; box-shadow: var(--sh-sm); flex: none; }
.brand__mark svg { width: 22px; height: 22px; }
.brand__name { font-family: var(--serif); font-weight: 700; font-size: 1.42rem; color: var(--ink); line-height: 1; letter-spacing: .3px; }
.brand__loc { display:block; font-family: var(--sans); font-size: .58rem; letter-spacing: .32em; text-transform: uppercase; color: var(--gold-deep); font-weight: 800; margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 34px; }
.nav a { font-weight: 700; font-size: .95rem; color: var(--ink-soft); position: relative; padding: 6px 0; transition: color .2s; }
.nav a::after { content:""; position:absolute; left:0; bottom:0; height:2px; width:0; background: var(--gold); transition: width .28s var(--ease); border-radius: 2px; }
.nav a:hover { color: var(--claret); }
.nav a:hover::after { width: 100%; }

/* Header CTAs — always highly visible on the cream bar */
.header-cta .btn--ghost { color: var(--gold-deep); border-color: var(--gold); background: rgba(185,138,75,.10); }
.header-cta .btn--ghost:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.header-cta .btn--primary { box-shadow: 0 8px 22px rgba(123,49,40,.34); }
.header-cta { display: flex; align-items: center; gap: 14px; }

.nav-toggle { display: none; width: 46px; height: 46px; border: 1.5px solid var(--line-strong); border-radius: 12px; background: rgba(255,255,255,.6); align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content:""; display:block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; position: relative; }
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

/* Mobile menu */
.mobile-menu { position: fixed; inset: 0; z-index: 101; background: rgba(44,37,33,.5); backdrop-filter: blur(4px); opacity: 0; visibility: hidden; transition: opacity .3s; }
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu__panel { position: absolute; top: 0; right: 0; height: 100%; width: min(84vw, 360px);
  background: var(--cream-2); box-shadow: var(--sh-lg); padding: calc(var(--nav-h) + 16px) 30px 40px; transform: translateX(100%); transition: transform .38s var(--ease); display: flex; flex-direction: column; gap: 6px; }
.mobile-menu.open .mobile-menu__panel { transform: translateX(0); }
.mobile-menu__panel a.mnav { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); padding: 12px 0; border-bottom: 1px solid var(--line); }
.mobile-menu__panel .btn { margin-top: 20px; }
.mobile-close { position: absolute; top: 20px; right: 22px; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); background: #fff; font-size: 1.4rem; color: var(--ink); line-height: 1; }

/* ------------------------------- Hero ------------------------------ */
.hero { position: relative; min-height: auto; display: flex; align-items: center; padding: calc(var(--nav-h) + 132px) 0 152px; overflow: hidden;
  color: var(--on-dark);
  background: radial-gradient(120% 120% at 15% 20%, #4a2620 0%, #2c1a15 60%, #221410 100%); }
.hero__grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: clamp(28px, 5vw, 72px); align-items: center; width: 100%; padding: 6px 0 24px; }
.hero__copy { color: var(--on-dark); position: relative; z-index: 3; }
.hero__eyebrow { color: var(--champagne); }
.hero__eyebrow::before { background: var(--champagne); }
.hero h1 { color: #fff; font-size: clamp(2.6rem, 6.4vw, 5rem); font-weight: 600; margin: 14px 0 0; letter-spacing: .3px; }
.hero h1 em { font-style: italic; color: #E9B872; }
.hero__sub { margin-top: 16px; font-size: clamp(1.05rem, 1.7vw, 1.28rem); color: var(--on-dark-mut); max-width: 46ch; line-height: 1.55; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.hero__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 30px; margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14); }
.hero__rating { display: flex; align-items: center; gap: 12px; }
.hero__stars { color: #E9B872; font-size: 1.05rem; letter-spacing: 2px; }
.hero__rating b { color: #fff; font-size: 1.5rem; font-family: var(--serif); }
.hero__rating span { color: var(--on-dark-mut); font-size: .86rem; display: block; line-height: 1.2; }
.hero__pill { display: inline-flex; align-items: center; gap: 9px; color: var(--on-dark-mut); font-size: .9rem; font-weight: 700; }
.hero__pill svg { width: 18px; height: 18px; color: #E9B872; }

/* Hero visual */
.hero__visual { position: relative; z-index: 2; }
.hero__photo { position: relative; border-radius: 28px; overflow: hidden; box-shadow: var(--sh-lg); aspect-ratio: 1/1; border: 1px solid rgba(255,255,255,.12); }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 32%; animation: kenburns 22s ease-in-out infinite alternate; }
.hero__photo::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 55%, rgba(30,20,14,.42) 100%); z-index: 1; }
/* Slow, subtle "living photo" drift — dance-inspired motion on the hero image */
@keyframes kenburns { from { transform: scale(1.04) translate(0, 0); } to { transform: scale(1.11) translate(-1.6%, -1.4%); } }

/* Premium hero headline — each line rises up from behind a mask on load */
.hero-headline { color: #fff; font-size: clamp(2.6rem, 6.4vw, 5rem); font-weight: 600; margin: 14px 0 0; letter-spacing: .3px; line-height: 1.08; }
.hero-headline .ln { display: block; overflow: hidden; padding-bottom: .04em; }
.hero-headline .ln > span { display: block; transform: translateY(115%); animation: lineRise .95s var(--ease) both; }
.hero-headline .ln:nth-child(1) > span { animation-delay: .15s; }
.hero-headline .ln:nth-child(2) > span { animation-delay: .30s; }
.hero-headline em { font-style: italic; color: #E9B872; }
@keyframes lineRise { to { transform: translateY(0); } }
.hero__badge { position: absolute; bottom: -22px; left: -22px; background: var(--cream-2); color: var(--ink); border-radius: 18px; padding: 16px 20px; box-shadow: var(--sh-md); display: flex; align-items: center; gap: 13px; z-index: 4; max-width: 240px; }
.hero__badge .ico { width: 42px; height: 42px; border-radius: 12px; background: linear-gradient(135deg,var(--claret),var(--gold-deep)); display: grid; place-items: center; color: #fff; flex: none; }
.hero__badge .ico svg { width: 22px; height: 22px; }
.hero__badge b { display: block; font-family: var(--serif); font-size: 1.06rem; color: var(--ink); line-height: 1.15; }
.hero__badge span { font-size: .78rem; color: var(--muted); }

/* Floating soft accents */
.floaty { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .5; z-index: 1; pointer-events: none; }
/* Keep hero & contact backgrounds identical to the wedding section (clean gradient, no glow blobs) */
.hero .floaty, .contact .floaty { display: none; }
.floaty--1 { width: 320px; height: 320px; top: -60px; right: -80px; background: radial-gradient(circle at 30% 30%, rgba(233,184,114,.5), transparent 68%); animation: drift 15s ease-in-out infinite; }
.floaty--2 { width: 260px; height: 260px; bottom: 4%; left: 42%; background: radial-gradient(circle at 40% 40%, rgba(155,62,51,.42), transparent 70%); animation: drift 19s ease-in-out infinite reverse; }
@keyframes drift { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-26px, 22px); } }

.scroll-cue { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); color: rgba(255,255,255,.6); font-size: .72rem; letter-spacing: .24em; text-transform: uppercase; font-weight: 800; display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 3; }
.scroll-cue span { width: 1px; height: 34px; background: linear-gradient(rgba(255,255,255,.6), transparent); animation: cue 2.2s ease-in-out infinite; }
@keyframes cue { 0%,100% { transform: scaleY(.4); opacity:.4; transform-origin: top;} 50% { transform: scaleY(1); opacity:1; } }

/* --------------------------- Marquee strip ------------------------- */
.trust-strip { background: #221410; color: #ecd9c3; padding: 18px 0; overflow: hidden; }
.trust-track { display: flex; gap: 46px; white-space: nowrap; width: max-content; animation: marquee 48s linear infinite; }
.trust-track span { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; letter-spacing: .04em; font-size: .92rem; }
.trust-track span::before { content: "✦"; color: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .trust-track { animation: none; } }

/* ------------------------------ About ------------------------------ */
.about__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(30px, 5vw, 76px); align-items: center; }
.about__media { position: relative; }
.about__media .frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--sh-lg); aspect-ratio: 5/6; }
.about__media .frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%;
  clip-path: inset(0 0 100% 0); transform: scale(1.12); transition: clip-path 1.1s var(--ease) .12s, transform 1.5s var(--ease) .12s; }
.about__media.in .frame img { clip-path: inset(0 0 0 0); transform: scale(1); }
.about__sig { position: absolute; top: -26px; left: -14px; z-index: 3; font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--claret); transform: rotate(-6deg); }
.about__badge { position: absolute; right: -20px; bottom: -22px; z-index: 3; background: var(--cream-2); border-radius: 16px; padding: 14px 18px; box-shadow: var(--sh-md); display: flex; align-items: center; gap: 12px; }
.about__badge .stars { color: var(--gold); letter-spacing: 2px; font-size: .95rem; }
.about__badge b { font-family: var(--serif); font-size: 1.1rem; color: var(--ink); display: block; line-height: 1.1; }
.about__badge span { font-size: .76rem; color: var(--muted); }
.about__body p + p { margin-top: 18px; }
.about__names { display: flex; align-items: center; gap: 16px; margin: 26px 0; }
.about__names .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.about__names b { font-family: var(--serif); font-size: 1.55rem; color: var(--ink); font-weight: 600; }
.about__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 32px; }
.stat { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 20px 18px; box-shadow: var(--sh-sm); }
.stat b { font-family: var(--serif); font-size: 1.9rem; color: var(--claret); display: block; line-height: 1; }
.stat span { font-size: .82rem; color: var(--muted); font-weight: 600; margin-top: 6px; display: block; }

/* ----------------------------- Services ---------------------------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 54px; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px 26px; box-shadow: var(--sh-sm); position: relative; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  display: flex; flex-direction: column;
}
.card::before { content:""; position:absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg,var(--gold),var(--claret)); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.card:hover { transform: translateY(-8px); box-shadow: var(--sh-md); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card__ico { width: 56px; height: 56px; border-radius: 16px; background: linear-gradient(135deg, var(--sand), var(--champagne)); display: grid; place-items: center; color: var(--claret); margin-bottom: 20px; transition: transform .3s var(--ease); }
.card:hover .card__ico { transform: scale(1.06) rotate(-4deg); }
.card__ico svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .98rem; flex: 1; }
.card__link { margin-top: 20px; }
.card__tag { position: absolute; top: 20px; right: 20px; font-size: .64rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); background: rgba(185,138,75,.12); padding: 5px 10px; border-radius: 999px; }

/* Pricing callout */
.pricing { margin-top: 40px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--sh-md); padding: clamp(26px,3.5vw,40px); display: grid; grid-template-columns: 1fr; gap: 26px; text-align: center; }
.pricing__intro h3 { max-width: 24ch; margin-inline: auto; }
.pricing__rows { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pricing__rows--two { grid-template-columns: repeat(2, 1fr); max-width: 620px; margin-inline: auto; width: 100%; }
.pricing__note { justify-self: center; display: inline-flex; align-items: center; gap: 8px; margin: -8px 0 2px; color: var(--gold-deep); font-weight: 700; font-size: .98rem; }
.pricing__note b { color: var(--claret); }
.pricing__note svg { width: 18px; height: 18px; flex: none; color: var(--gold); }
.price-item { padding: 22px 16px; border-radius: 18px; background: var(--sand); border: 1px solid var(--line); }
.price-item b { display: block; font-family: var(--serif); font-size: clamp(2rem,4vw,2.7rem); color: var(--claret); line-height: 1; font-variant-numeric: tabular-nums; }
.price-item b i { font-style: normal; font-size: 1.1rem; color: var(--gold-deep); }
.price-item span { display: block; margin-top: 10px; font-size: .9rem; color: var(--muted); font-weight: 600; }
.pricing > .btn { justify-self: center; }
@media (max-width: 620px) { .pricing__rows { grid-template-columns: 1fr; } }

/* Dance-style photo cards ("Choose your style") */
.style-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 44px; }
.style-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--sh-sm); display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.style-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.style-card__media { aspect-ratio: 4 / 3; overflow: hidden; position: relative; }
.style-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(35,22,16,.28)); }
.style-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.style-card:hover .style-card__media img { transform: scale(1.06); }
.style-card__text { padding: 18px 20px 22px; }
.style-card__name { font-family: var(--serif); font-size: 1.35rem; color: var(--ink); line-height: 1.1; }
.style-card__name em { font-style: italic; color: var(--claret); font-size: .8em; }
.style-card__text p { margin-top: 8px; font-size: .88rem; color: var(--muted); line-height: 1.5; }
@media (max-width: 900px) { .style-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .style-cards { grid-template-columns: 1fr; } }

/* --------------------------- Wedding band -------------------------- */
.wedding { position: relative; overflow: hidden; color: var(--on-dark);
  background: radial-gradient(120% 120% at 15% 20%, #4a2620 0%, #2c1a15 60%, #221410 100%); }
.wedding__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px,5vw,70px); align-items: center; }
.wedding h2 { color: #fff; }
.wedding h2 em { font-style: italic; color: #E9B872; }
.wedding p { color: var(--on-dark-mut); margin-top: 18px; max-width: 52ch; }
.wedding__list { margin: 28px 0 34px; display: grid; gap: 14px; }
.wedding__list li { display: flex; align-items: flex-start; gap: 12px; color: var(--on-dark); font-weight: 600; }
.wedding__list svg { width: 22px; height: 22px; color: #E9B872; flex: none; margin-top: 1px; }
.wedding__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--sh-lg); aspect-ratio: 5/6; border: 1px solid rgba(255,255,255,.12); }
.wedding__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
.wedding__heart { position: absolute; font-size: 2rem; color: rgba(233,184,114,.22); animation: float-h 6s ease-in-out infinite; }
@keyframes float-h { 0%,100% { transform: translateY(0) rotate(-6deg);} 50% { transform: translateY(-14px) rotate(6deg);} }

/* ------------------------------ Why us ----------------------------- */
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
.why-item { display: flex; gap: 18px; padding: 26px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--sh-sm); transition: transform .3s var(--ease), box-shadow .3s; }
.why-item:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.why-item .num { font-family: var(--serif); font-size: 1.5rem; color: var(--gold); font-weight: 700; flex: none; }
.why-item h3 { font-size: 1.2rem; margin-bottom: 6px; }
.why-item p { color: var(--muted); font-size: .95rem; }

/* ------------------------------ Gallery ---------------------------- */
.g-carousel { position: relative; margin-top: 54px; }
.g-viewport { overflow: hidden; }
.g-track { display: flex; gap: 16px; width: max-content; animation: gscroll 80s linear infinite; }
.g-carousel:hover .g-track { animation-play-state: paused; }
.g-item { flex: 0 0 auto; height: clamp(220px, 27vw, 330px); border-radius: var(--radius); overflow: hidden; box-shadow: var(--sh-sm); }
.g-item img { height: 100%; width: auto; display: block; }
@keyframes gscroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .g-track { animation: none; } }

/* ---------------------------- Testimonial -------------------------- */
.review-wrap { max-width: 900px; margin: 54px auto 0; }
.review-card { background: var(--surface); border-radius: var(--radius-lg); padding: clamp(32px, 5vw, 56px); box-shadow: var(--sh-lg); border: 1px solid var(--line); position: relative; }
.review-card .quote-mark { font-family: var(--serif); font-size: 6rem; color: rgba(185,138,75,.22); line-height: .7; position: absolute; top: 24px; left: 32px; }
.review-stars { color: var(--gold); letter-spacing: 3px; font-size: 1.15rem; position: relative; z-index: 1; }
.review-card blockquote { font-family: var(--serif); font-size: clamp(1.35rem, 2.6vw, 1.9rem); line-height: 1.4; color: var(--ink); margin: 20px 0 26px; position: relative; z-index: 1; font-weight: 500; }
.review-author { display: flex; align-items: center; gap: 16px; }
.review-author .av { width: 54px; height: 54px; border-radius: 50%; background: linear-gradient(135deg,var(--claret),var(--gold-deep)); color:#fff; display: grid; place-items: center; font-family: var(--serif); font-size: 1.35rem; flex: none; }
.review-author b { color: var(--ink); font-size: 1.05rem; }
.review-author span { display: block; font-size: .85rem; color: var(--muted); }
.review-verified { display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; font-weight: 800; color: var(--gold-deep); background: rgba(185,138,75,.12); padding: 5px 12px; border-radius: 999px; margin-left: auto; }
.review-verified svg { width: 15px; height: 15px; }
.review-response { margin-top: 26px; padding: 22px 24px; background: var(--sand); border-radius: 18px; border-left: 3px solid var(--gold); }
.review-response b { color: var(--ink); font-size: .9rem; }
.review-response p { color: var(--ink-soft); font-size: .98rem; margin-top: 6px; font-style: italic; }

/* ------------------------- Location & Hours ------------------------ */
.loc__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 34px; align-items: stretch; }
.map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--sh-md); border: 1px solid var(--line); min-height: 440px; position: relative; background: var(--beige) center/cover no-repeat; display: block; }
.map-frame iframe { width: 100%; height: 100%; min-height: 440px; border: 0; display: block; position: relative; z-index: 1; }
.map-frame__pill { position: absolute; right: 16px; bottom: 16px; z-index: 2; display: inline-flex; align-items: center; gap: 8px; background: var(--claret); color: #fff; font-weight: 800; font-size: .85rem; padding: 10px 16px; border-radius: 999px; box-shadow: var(--sh-md); transition: transform .25s var(--ease), background .25s; }
.map-frame__pill svg { width: 16px; height: 16px; }
.map-frame__pill:hover { transform: translateY(-2px); background: var(--claret-deep); }
.loc-card { background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--sh-md); border: 1px solid var(--line); padding: 34px; display: flex; flex-direction: column; }
.loc-card h3 { font-size: 1.7rem; }
.loc-row { display: flex; gap: 14px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--line); }
.loc-row:last-of-type { border-bottom: none; }
.loc-row .ico { width: 42px; height: 42px; border-radius: 12px; background: var(--sand); display: grid; place-items: center; color: var(--claret); flex: none; }
.loc-row .ico svg { width: 20px; height: 20px; }
.loc-row b { display: block; color: var(--ink); font-size: 1rem; }
.loc-row span, .loc-row a { color: var(--muted); font-size: .95rem; }
.loc-row a:hover { color: var(--claret); }
.loc-card .btn { margin-top: 24px; }

/* Hours — two-panel layout (accent aside + day list) */
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(123,216,143,0); } }
.hours-card { margin: 52px auto 0; display: grid; grid-template-columns: .82fr 1.18fr; background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--sh-md); border: 1px solid var(--line); overflow: hidden; }
.hours-card__aside { background: linear-gradient(155deg, var(--claret) 0%, var(--claret-deep) 100%); color: #fff; padding: clamp(30px,3.4vw,44px); display: flex; flex-direction: column; }
.hours-card__aside .eyebrow::before { background: #F3DCB0; }
.hours-card__aside h3 { color: #fff; font-size: clamp(1.7rem,2.4vw,2.1rem); margin-top: 12px; }
.hours-card__aside > p { color: rgba(255,255,255,.82); margin-top: 12px; font-size: .95rem; line-height: 1.6; max-width: 34ch; }
.hours-card__status { display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,.16); padding: 8px 14px; border-radius: 999px; font-size: .82rem; font-weight: 800; margin-top: 22px; align-self: flex-start; }
.hours-card__status .dot { width: 9px; height: 9px; border-radius: 50%; background: #7BD88F; box-shadow: 0 0 0 4px rgba(123,216,143,.28); animation: pulse 2s infinite; }
.hours-card__aside .big { font-family: var(--serif); font-size: clamp(2rem,3vw,2.6rem); color: #fff; margin-top: auto; padding-top: 26px; line-height: 1; }
.hours-card__aside .big span { display: block; font-family: var(--sans); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.78); margin-top: 10px; font-weight: 800; }
.hours-card__aside .btn { margin-top: 22px; align-self: flex-start; }
.hours-card__days { padding: clamp(14px,1.6vw,22px) clamp(26px,3vw,38px); display: flex; flex-direction: column; justify-content: center; }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; border-radius: 12px; font-weight: 600; }
.hours-row + .hours-row { border-top: 1px solid var(--line); }
.hours-row .day { color: var(--ink); }
.hours-row .time { color: var(--muted); font-variant-numeric: tabular-nums; white-space: nowrap; }
.hours-row .day { display: inline-flex; align-items: center; }
.hours-row.today { background: rgba(185,138,75,.10); border-top-color: transparent; }
.hours-row.today + .hours-row { border-top-color: transparent; }
.hours-row.today .day { color: var(--claret); font-weight: 800; }
.hours-row.today .badge { font-size: .64rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #fff; background: var(--claret); padding: 3px 9px; border-radius: 999px; margin-left: 10px; }

/* ------------------------------- FAQ ------------------------------- */
.faq { max-width: 800px; margin: 50px auto 0; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; margin-bottom: 14px; box-shadow: var(--sh-sm); overflow: hidden; transition: box-shadow .3s; }
.faq-item[open] { box-shadow: var(--sh-md); }
.faq-item summary { list-style: none; cursor: pointer; padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 18px; font-family: var(--serif); font-size: 1.22rem; color: var(--ink); font-weight: 600; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { width: 32px; height: 32px; border-radius: 50%; background: var(--sand); display: grid; place-items: center; flex: none; transition: transform .3s var(--ease), background .3s; color: var(--claret); }
.faq-item[open] summary .chev { transform: rotate(45deg); background: var(--claret); color: #fff; }
.faq-item summary .chev svg { width: 16px; height: 16px; }
.faq-answer { padding: 0 26px; max-height: 0; overflow: hidden; transition: max-height .4s var(--ease), padding .4s var(--ease); }
.faq-item[open] .faq-answer { padding: 0 26px 24px; max-height: 400px; }
.faq-answer p { color: var(--muted); }

/* ------------------------------ Contact ---------------------------- */
.contact { position: relative; overflow: hidden; color: var(--on-dark);
  background: radial-gradient(120% 120% at 15% 20%, #4a2620 0%, #2c1a15 60%, #221410 100%); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,64px); align-items: start; }
.contact h2 { color: #fff; }
.contact h2 em { font-style: italic; color: #E9B872; }
.contact__intro { color: var(--on-dark-mut); margin-top: 18px; max-width: 46ch; }
.contact__methods { margin-top: 34px; display: grid; gap: 14px; }
.c-method { display: flex; align-items: center; gap: 16px; padding: 18px 20px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; transition: background .25s, transform .25s var(--ease); }
.c-method:hover { background: rgba(255,255,255,.09); transform: translateX(4px); }
.c-method .ico { width: 46px; height: 46px; border-radius: 12px; background: linear-gradient(135deg,var(--gold),var(--gold-deep)); display: grid; place-items: center; color: #fff; flex: none; }
.c-method .ico svg { width: 22px; height: 22px; }
.c-method b { color: #fff; display: block; font-size: 1.02rem; }
.c-method span { color: var(--on-dark-mut); font-size: .88rem; }
.contact__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

/* Form */
.form-card { background: var(--cream-2); border-radius: var(--radius-lg); padding: clamp(26px,4vw,40px); box-shadow: var(--sh-lg); }
.form-card h3 { font-size: 1.6rem; margin-bottom: 6px; }
.form-card .sub { color: var(--muted); font-size: .95rem; margin-bottom: 24px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: .86rem; color: var(--ink); margin-bottom: 7px; }
.field label .req { color: var(--claret); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line-strong); border-radius: 12px;
  font-family: inherit; font-size: 1rem; color: var(--ink); background: #fff; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(185,138,75,.16); }
.field textarea { resize: vertical; min-height: 100px; }
.field .err { color: var(--claret); font-size: .8rem; margin-top: 6px; display: none; font-weight: 700; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--claret); }
.field.invalid .err { display: block; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.form-note { font-size: .8rem; color: var(--muted); margin-top: 10px; text-align: center; }
/* Netlify honeypot — hidden from people, still reachable to bots that ignore CSS */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-error { margin-top: 12px; padding: 12px 14px; border-radius: 12px; background: #FBEDEB; border: 1px solid #E4B6B0; color: #7E2A20; font-size: .88rem; text-align: center; }
.form-error[hidden] { display: none; }
.form-error a { color: #7E2A20; font-weight: 700; }
.btn[disabled] { opacity: .65; cursor: default; }
.form-success { display: none; text-align: center; padding: 20px 10px; }
.form-success.show { display: block; }
.form-success .check { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg,var(--gold),var(--gold-deep)); display: grid; place-items: center; margin: 0 auto 18px; color: #fff; }
.form-success .check svg { width: 32px; height: 32px; }
.form-success h3 { color: var(--ink); }
.form-success p { color: var(--muted); margin-top: 10px; }

/* ------------------------------ Footer ----------------------------- */
.site-footer { background: #211812; color: var(--on-dark-mut); padding: 70px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__brand .brand__name { color: #fff; font-size: 1.6rem; }
.footer__brand p { margin-top: 16px; max-width: 34ch; font-size: .92rem; line-height: 1.7; }
.footer__col h4 { color: #fff; font-family: var(--sans); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 18px; font-weight: 800; }
.footer__col a, .footer__col p { display: block; color: var(--on-dark-mut); font-size: .95rem; padding: 5px 0; transition: color .2s; }
.footer__col a:hover { color: #E9B872; }
.footer__seo { font-size: .82rem; color: rgba(216,199,178,.6); padding: 24px 0 30px; line-height: 1.7; text-align: center; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 0 34px; border-top: 1px solid rgba(255,255,255,.1); flex-wrap: wrap; }
.footer__bottom p { font-size: .85rem; }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: grid; place-items: center; color: var(--on-dark-mut); transition: all .25s var(--ease); }
.footer__social a:hover { background: var(--gold); color: #211812; border-color: var(--gold); transform: translateY(-3px); }
.footer__social svg { width: 18px; height: 18px; }

/* --------------------------- Sticky mobile bar --------------------- */
.mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none;
  background: rgba(251,246,238,.96); backdrop-filter: blur(12px); border-top: 1px solid var(--line);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); gap: 10px; box-shadow: 0 -8px 24px rgba(74,48,20,.1); }
.mobile-bar a { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 8px 4px; border-radius: 14px; font-size: .72rem; font-weight: 800; color: var(--ink-soft); }
.mobile-bar a svg { width: 20px; height: 20px; }
.mobile-bar a.primary { background: var(--claret); color: #fff; flex: 1.4; }
.mobile-bar a.gold { background: linear-gradient(135deg,var(--gold),var(--gold-deep)); color:#fff; }

/* ------------------------- Scroll reveal --------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; } .reveal.d5 { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .floaty, .hero__heart, .wedding__heart, .hero__photo img, .hero-headline .ln > span { animation: none !important; transform: none !important; }
  .about__media .frame img { clip-path: none !important; transform: none !important; transition: none; }
}

/* ----------------------------- Responsive -------------------------- */
@media (max-width: 1024px) {
  .cards, .why__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav, .header-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .hero__grid { grid-template-columns: 1fr; padding-top: 20px; }
  .hero__visual { max-width: 460px; margin: 8px auto 20px; order: -1; }
  .hero { min-height: auto; padding-bottom: 40px; }
  .hero__badge { left: 0; }
  .about__grid, .wedding__grid, .contact__grid, .loc__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 440px; margin: 0 auto 40px; }
  .wedding__media { max-width: 440px; margin: 8px auto 0; }
  .hours-card { grid-template-columns: 1fr; }
  .hours-row { padding: 13px 10px; }
  .hours-row.today .badge { margin-left: 8px; padding: 3px 7px; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 74px; }
  .site-footer { padding-bottom: 74px; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .cards, .why__grid, .about__stats, .form-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero__cta .btn, .contact__actions .btn { flex: 1; }
  .review-verified { margin-left: 0; }
  .review-author { flex-wrap: wrap; }
  .about__badge { right: 8px; bottom: -16px; padding: 11px 14px; }

  /* Phone: smaller headings for easier reading & less scrolling */
  .hero h1, .hero-headline { font-size: 2.1rem; }
  .hero__sub { font-size: 1.02rem; }
  .h-display { font-size: 2rem; }
  .h-2 { font-size: 1.68rem; }
  .h-3 { font-size: 1.28rem; }
  .lead { font-size: 1rem; }
  .eyebrow { font-size: .66rem; letter-spacing: .18em; }
  .section { padding: 56px 0; }
  .review-card blockquote { font-size: 1.3rem; }
  .price-item b { font-size: 2rem; }
  .pricing__note { font-size: .9rem; text-align: center; }
}
