/* ============================================================
   Lumière Aesthetics — cosmetic & aesthetics clinic
   Luxe blush · warm rose-gold · cream · refined serif + airy sans
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --cream: #fdf8f4;
  --cream-2: #f8efe8;
  --blush: #f6e3df;
  --blush-2: #efd0cb;
  --rose: #d98f87;
  --rose-deep: #c0746c;
  --gold: #c9a36a;
  --gold-soft: #e3cba0;
  --plum: #4a2f33;
  --ink: #3b2a2c;
  --ink-soft: #7a6464;
  --ink-faint: #a89494;
  --line: #ecdcd5;
  --white: #ffffff;

  --grad-warm: linear-gradient(135deg, #f7e6e0 0%, #f3d9d2 50%, #ecc8c0 100%);
  --grad-gold: linear-gradient(120deg, var(--gold) 0%, var(--gold-soft) 100%);
  --grad-deep: linear-gradient(150deg, #4a2f33 0%, #6b4147 55%, #8a565a 100%);

  --shadow-sm: 0 4px 16px rgba(122, 74, 70, 0.08);
  --shadow: 0 18px 48px rgba(122, 74, 70, 0.14);
  --shadow-lg: 0 36px 90px rgba(122, 74, 70, 0.20);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", system-ui, sans-serif;

  --r: 22px;
  --r-lg: 30px;
  --wrap: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: -0.01em; color: var(--plum); }
h1 { font-size: clamp(2.9rem, 6vw, 5rem); }
h2 { font-size: clamp(2.2rem, 4vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.9rem); }
em { font-style: italic; color: var(--rose-deep); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans); font-size: .74rem; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase; color: var(--rose-deep);
  margin-bottom: 1.2rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); }
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }
.eyebrow.light { color: var(--gold-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--sans); font-size: .9rem; font-weight: 600;
  letter-spacing: .04em; padding: 1rem 1.8rem; border-radius: 100px;
  cursor: pointer; border: 1px solid transparent; transition: all .4s var(--ease);
  white-space: nowrap;
}
.btn .arr { transition: transform .4s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn-solid { background: var(--grad-deep); color: var(--cream); box-shadow: var(--shadow-sm); }
.btn-solid:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.btn-gold { background: var(--grad-gold); color: var(--plum); box-shadow: var(--shadow-sm); }
.btn-gold:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--plum); border-color: var(--blush-2); }
.btn-ghost:hover { background: var(--white); border-color: var(--rose); transform: translateY(-2px); }
.btn-light { background: var(--cream); color: var(--plum); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 248, 244, 0.78);
  backdrop-filter: blur(18px) saturate(1.3);
  border-bottom: 1px solid transparent;
  transition: all .45s var(--ease);
}
.site-header.shrink {
  background: rgba(253, 248, 244, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(122, 74, 70, 0.07);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 1.35rem 0; transition: padding .45s var(--ease); }
.site-header.shrink .nav { padding: .9rem 0; }

.brand { display: flex; flex-direction: column; line-height: 1; }
.brand-mark { font-family: var(--serif); font-size: 1.62rem; font-weight: 600; color: var(--plum); letter-spacing: .01em; }
.brand-mark .glow { color: var(--gold); }
.brand-sub { font-size: .62rem; font-weight: 600; letter-spacing: .34em; text-transform: uppercase; color: var(--rose-deep); margin-top: .28rem; }

.nav-links { display: flex; align-items: center; gap: 2.2rem; list-style: none; }
.nav-links a { font-size: .92rem; font-weight: 500; color: var(--ink); position: relative; padding: .3rem 0; transition: color .3s; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px; background: var(--gold); transition: width .4s var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--rose-deep); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 1.4rem; }
.nav-phone { display: inline-flex; align-items: center; gap: .5rem; font-size: .88rem; font-weight: 600; color: var(--plum); }
.nav-phone svg { width: 16px; height: 16px; color: var(--rose); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; z-index: 110; }
.nav-toggle span { width: 26px; height: 2px; background: var(--plum); border-radius: 2px; transition: all .4s var(--ease); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 4.5rem 0 5.5rem; overflow: hidden; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; z-index: 0; pointer-events: none; }
.hero-blob.a { width: 480px; height: 480px; background: radial-gradient(circle, #f3c9c1, transparent 70%); top: -120px; right: -120px; }
.hero-blob.b { width: 420px; height: 420px; background: radial-gradient(circle, #ecd6b3, transparent 70%); bottom: -160px; left: -140px; }

.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 4rem; align-items: center; }
.hero-copy h1 { margin: .5rem 0 1.4rem; }
.hero-tag { font-size: 1.12rem; color: var(--ink-soft); max-width: 30rem; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-trust { display: flex; align-items: center; gap: .8rem; margin-top: 2.2rem; font-size: .92rem; color: var(--ink-soft); }
.hero-trust b { color: var(--plum); }
.stars { color: var(--gold); letter-spacing: .12em; }

.hero-media { position: relative; }
.hero-frame {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/4.6;
  border: 1px solid var(--blush);
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); animation: kenburns 16s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1.06); } to { transform: scale(1.16) translate(-1%, -1%); } }

.hero-badge {
  position: absolute; bottom: 26px; left: -26px; background: var(--white);
  padding: 1.1rem 1.4rem; border-radius: 18px; box-shadow: var(--shadow);
  text-align: center; border: 1px solid var(--blush);
}
.hero-badge .n { font-family: var(--serif); font-size: 2.4rem; font-weight: 600; color: var(--rose-deep); line-height: 1; }
.hero-badge .l { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); margin-top: .35rem; }

.hero-float {
  position: absolute; top: 28px; right: -22px; display: flex; align-items: center; gap: .75rem;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); padding: .75rem 1.05rem;
  border-radius: 100px; box-shadow: var(--shadow); border: 1px solid var(--blush);
}
.hero-float .dot { width: 38px; height: 38px; border-radius: 50%; background: var(--grad-gold); display: grid; place-items: center; color: var(--plum); }
.hero-float .dot svg { width: 18px; height: 18px; }
.hero-float .t { display: flex; flex-direction: column; line-height: 1.2; }
.hero-float .t b { font-size: .98rem; color: var(--plum); }
.hero-float .t span { font-size: .72rem; color: var(--ink-soft); }

/* ---------- Marquee strip ---------- */
.strip { background: var(--grad-deep); color: var(--cream); padding: 1.15rem 0; overflow: hidden; }
.strip-track { display: flex; gap: 3.5rem; white-space: nowrap; animation: slide 28s linear infinite; }
.strip-track span { font-family: var(--serif); font-size: 1.25rem; font-style: italic; display: inline-flex; align-items: center; gap: 3.5rem; opacity: .9; }
.strip-track span::after { content: "✦"; color: var(--gold-soft); font-style: normal; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: 6rem 0; }
.section.cream2 { background: var(--cream-2); }
.section.blush { background: linear-gradient(180deg, var(--cream) 0%, var(--blush) 100%); }

.sec-head { margin-bottom: 3.2rem; }
.sec-head.center { text-align: center; max-width: 46rem; margin-left: auto; margin-right: auto; }
.split-head { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: end; }
.split-head p { color: var(--ink-soft); font-size: 1.05rem; }

/* ---------- Stats ---------- */
.stats { background: var(--grad-deep); padding: 3.6rem 0; }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat { text-align: center; color: var(--cream); }
.stat .n { font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 600; color: var(--gold-soft); line-height: 1; display: flex; justify-content: center; align-items: baseline; }
.stat .suf { font-size: .55em; }
.stat .l { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; margin-top: .7rem; opacity: .82; }

/* ---------- Treatments grid ---------- */
.treat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.treat {
  background: var(--white); border-radius: var(--r); padding: 2.2rem 2rem;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s;
  position: relative; overflow: hidden;
}
.treat::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--grad-gold); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.treat:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--blush-2); }
.treat:hover::before { transform: scaleX(1); }
.treat .ico { width: 56px; height: 56px; border-radius: 16px; background: var(--blush); display: grid; place-items: center; color: var(--rose-deep); margin-bottom: 1.3rem; transition: background .4s; }
.treat:hover .ico { background: var(--grad-gold); color: var(--plum); }
.treat .ico svg { width: 26px; height: 26px; }
.treat h3 { margin-bottom: .6rem; }
.treat p { color: var(--ink-soft); font-size: .98rem; margin-bottom: 1.1rem; }
.treat .from { font-family: var(--sans); font-size: .82rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--rose-deep); }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split.flip .split-media { order: 2; }
.split-media { position: relative; }
.frame { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/4.4; border: 1px solid var(--blush); }
.frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.frame:hover img { transform: scale(1.06); }
.tab {
  position: absolute; bottom: 22px; left: 22px; right: 22px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(10px);
  display: flex; align-items: center; gap: .9rem; padding: .9rem 1.2rem;
  border-radius: 16px; box-shadow: var(--shadow-sm);
}
.tab svg { width: 26px; height: 26px; color: var(--rose-deep); flex-shrink: 0; }
.tab b { display: block; font-size: .98rem; color: var(--plum); font-family: var(--serif); }
.tab span { font-size: .8rem; color: var(--ink-soft); }
.split-copy .lead { font-size: 1.12rem; color: var(--ink-soft); margin: 1.2rem 0 1.6rem; }

.feature-list { list-style: none; display: grid; gap: 1.3rem; margin: 1.8rem 0; }
.feature-list li { display: flex; gap: 1rem; }
.feature-list .ico { width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px; background: var(--blush); display: grid; place-items: center; color: var(--rose-deep); }
.feature-list .ico svg { width: 20px; height: 20px; }
.feature-list h4 { font-family: var(--serif); font-size: 1.2rem; margin-bottom: .2rem; }
.feature-list p { color: var(--ink-soft); font-size: .95rem; }

/* ---------- Steps / journey ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.step { text-align: center; padding: 0 .5rem; }
.step .num { width: 62px; height: 62px; margin: 0 auto 1.2rem; border-radius: 50%; background: var(--white); border: 1px solid var(--blush-2); display: grid; place-items: center; font-family: var(--serif); font-size: 1.5rem; color: var(--rose-deep); box-shadow: var(--shadow-sm); position: relative; }
.step h4 { font-size: 1.25rem; margin-bottom: .5rem; }
.step p { color: var(--ink-soft); font-size: .92rem; }

/* ---------- Testimonials ---------- */
.quote-band { background: var(--grad-deep); }
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.qcard { background: rgba(255,255,255,0.06); border: 1px solid rgba(227,203,160,0.25); border-radius: var(--r); padding: 2rem 1.9rem; backdrop-filter: blur(6px); }
.qcard .stars { font-size: 1rem; margin-bottom: 1rem; }
.qcard blockquote { font-family: var(--serif); font-size: 1.22rem; font-style: italic; color: var(--cream); line-height: 1.5; margin-bottom: 1.4rem; }
.qmeta { display: flex; align-items: center; gap: .85rem; }
.qmeta .av { width: 46px; height: 46px; border-radius: 50%; background: var(--grad-gold); color: var(--plum); display: grid; place-items: center; font-family: var(--serif); font-size: 1.3rem; font-weight: 600; }
.qmeta b { display: block; color: var(--cream); font-size: .98rem; }
.qmeta span { font-size: .82rem; color: var(--gold-soft); }

/* ---------- Agent ---------- */
.section.sand { background: linear-gradient(160deg, var(--blush) 0%, var(--cream) 60%); }

/* ---------- Journal ---------- */
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.post { border-top: 2px solid var(--line); padding-top: 1.4rem; transition: border-color .4s; }
.post:hover { border-color: var(--gold); }
.post .meta { display: flex; align-items: center; gap: .6rem; font-size: .78rem; color: var(--ink-faint); margin-bottom: .9rem; }
.post .type { font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--rose-deep); }
.post .meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--blush-2); }
.post h3 { font-size: 1.4rem; margin-bottom: .7rem; transition: color .3s; }
.post:hover h3 { color: var(--rose-deep); }
.post p { color: var(--ink-soft); font-size: .95rem; margin-bottom: 1rem; }
.more { display: inline-flex; align-items: center; gap: .4rem; font-size: .85rem; font-weight: 600; color: var(--rose-deep); }
.more svg { transition: transform .35s var(--ease); }
.post:hover .more svg { transform: translateX(4px); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; padding: 6rem 0; background: var(--grad-warm); text-align: center; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(201,163,106,0.3), transparent 70%); top: -180px; right: -120px; }
.cta-band h2 { max-width: 24rem; margin: 0 auto 1.2rem; position: relative; }
.cta-band > .wrap > p { max-width: 36rem; margin: 0 auto 2rem; color: var(--plum); position: relative; }
.cta-band .hero-actions { justify-content: center; position: relative; }

/* ---------- Footer ---------- */
.site-footer { background: var(--plum); color: var(--blush); padding: 4.5rem 0 0; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(246,227,223,0.15); }
.footer-brand .brand-mark { color: var(--cream); }
.footer-brand p { color: rgba(246,227,223,0.7); font-size: .92rem; margin: 1rem 0 1.4rem; max-width: 22rem; }
.footer-social { display: flex; gap: .7rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(246,227,223,0.25); display: grid; place-items: center; color: var(--blush); transition: all .35s; }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--plum); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 { font-family: var(--sans); font-size: .76rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 1.2rem; }
.footer-col a { display: block; color: rgba(246,227,223,0.72); font-size: .92rem; padding: .35rem 0; transition: color .3s, padding-left .3s; }
.footer-col a:hover { color: var(--cream); padding-left: 5px; }
.footer-nap { font-style: normal; color: rgba(246,227,223,0.72); font-size: .92rem; line-height: 1.9; }
.footer-nap a { color: var(--gold-soft); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .8rem; padding: 1.6rem 0; font-size: .82rem; color: rgba(246,227,223,0.55); }
.footer-disclaimer { background: rgba(0,0,0,0.18); padding: 1.1rem 28px; text-align: center; font-size: .78rem; color: rgba(246,227,223,0.5); line-height: 1.6; }

/* ---------- Page hero (sub pages) ---------- */
.page-hero { position: relative; padding: 4rem 0 3.5rem; background: linear-gradient(180deg, var(--blush) 0%, var(--cream) 100%); overflow: hidden; }
.page-hero .hero-blob.a { top: -140px; right: -80px; opacity: .5; }
.page-hero-inner { position: relative; z-index: 2; max-width: 44rem; }
.page-hero h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); margin: .4rem 0 1rem; }
.page-hero p { font-size: 1.1rem; color: var(--ink-soft); }
.crumb { font-size: .82rem; color: var(--ink-soft); letter-spacing: .04em; }
.crumb a { color: var(--rose-deep); }

/* ---------- Filter bar ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.8rem; }
.filter { font-family: var(--sans); font-size: .86rem; font-weight: 600; padding: .6rem 1.3rem; border-radius: 100px; border: 1px solid var(--line); background: var(--white); color: var(--ink-soft); cursor: pointer; transition: all .3s; }
.filter:hover { border-color: var(--rose); color: var(--rose-deep); }
.filter.active { background: var(--grad-deep); color: var(--cream); border-color: transparent; }

/* ---------- Price cards ---------- */
.price-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 1.6rem; }
.price-card {
  background: var(--white); border-radius: var(--r); padding: 2rem; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  display: flex; flex-direction: column;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card .tag { display: inline-block; align-self: flex-start; font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--rose-deep); background: var(--blush); padding: .35rem .8rem; border-radius: 100px; margin-bottom: 1.1rem; }
.price-card h3 { margin-bottom: .5rem; }
.price-card .desc { color: var(--ink-soft); font-size: .94rem; margin-bottom: 1.3rem; flex-grow: 1; }
.price-card .plist { list-style: none; border-top: 1px solid var(--line); }
.price-card .plist li { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: .8rem 0; border-bottom: 1px solid var(--line); font-size: .94rem; }
.price-card .plist .nm { color: var(--ink); }
.price-card .plist .pr { font-family: var(--serif); font-size: 1.2rem; color: var(--rose-deep); white-space: nowrap; }
.price-card .foot { padding-top: 1.3rem; }

.featured-treat { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 3rem; background: var(--white); border: 1px solid var(--blush); }
.featured-treat .ft-media { position: relative; min-height: 360px; }
.featured-treat .ft-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.featured-treat .ft-body { padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
.featured-treat .ft-body .desc { color: var(--ink-soft); margin: 1rem 0 1.6rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: start; }
.form-card { background: var(--white); border-radius: var(--r-lg); padding: 2.6rem; box-shadow: var(--shadow); border: 1px solid var(--blush); }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-size: .82rem; font-weight: 600; letter-spacing: .06em; color: var(--plum); margin-bottom: .5rem; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: .96rem; color: var(--ink);
  padding: .9rem 1.1rem; border: 1px solid var(--line); border-radius: 14px; background: var(--cream);
  transition: border-color .3s, box-shadow .3s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--rose); box-shadow: 0 0 0 3px rgba(217,143,135,0.18); background: var(--white); }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
[data-form-note] { display: none; align-items: center; gap: .6rem; margin-top: 1.2rem; padding: 1rem 1.1rem; border-radius: 14px; background: var(--blush); color: var(--plum); font-size: .92rem; }
[data-form-note].show { display: flex; }
[data-form-note] svg { color: var(--rose-deep); flex-shrink: 0; }

.info-card { background: var(--grad-deep); color: var(--cream); border-radius: var(--r-lg); padding: 2.4rem; box-shadow: var(--shadow); }
.info-card h3 { color: var(--cream); margin-bottom: 1.4rem; }
.info-item { display: flex; gap: .9rem; padding: .9rem 0; border-bottom: 1px solid rgba(246,227,223,0.14); }
.info-item:last-of-type { border-bottom: none; }
.info-item .ic { width: 40px; height: 40px; flex-shrink: 0; border-radius: 12px; background: rgba(227,203,160,0.18); display: grid; place-items: center; color: var(--gold-soft); }
.info-item .ic svg { width: 18px; height: 18px; }
.info-item b { display: block; font-size: .95rem; color: var(--cream); }
.info-item span, .info-item a { font-size: .9rem; color: rgba(246,227,223,0.78); }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.hours-table td { padding: .55rem 0; font-size: .92rem; border-bottom: 1px solid var(--line); }
.hours-table td:last-child { text-align: right; color: var(--rose-deep); font-weight: 600; }
.hours-table tr:last-child td { border-bottom: none; }

.map-wrap { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--blush); margin-top: 3rem; background: #f0e2db; }
.map-wrap svg { display: block; width: 100%; height: auto; }

/* ---------- Blog page ---------- */
.feature-post { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 3.5rem; background: var(--white); border: 1px solid var(--blush); }
.feature-post .fp-media { position: relative; min-height: 380px; }
.feature-post .fp-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature-post .fp-media .badge { position: absolute; top: 18px; left: 18px; background: var(--grad-gold); color: var(--plum); font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: .4rem .9rem; border-radius: 100px; }
.feature-post .fp-body { padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
.feature-post .fp-body h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 1rem 0; }
.feature-post .fp-body p { color: var(--ink-soft); margin-bottom: 1.6rem; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.blog-card { background: var(--white); border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.blog-card .bc-media { aspect-ratio: 16/10; overflow: hidden; background: var(--grad-warm); position: relative; }
.blog-card .bc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.blog-card:hover .bc-media img { transform: scale(1.07); }
.blog-card .bc-media .grad { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(74,47,51,0.4); }
.blog-card .bc-media .grad svg { width: 64px; height: 64px; }
.blog-card .bc-body { padding: 1.7rem 1.6rem 2rem; }
.blog-card .meta { display: flex; align-items: center; gap: .6rem; font-size: .76rem; color: var(--ink-faint); margin-bottom: .8rem; }
.blog-card .type { font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--rose-deep); }
.blog-card h3 { font-size: 1.32rem; margin-bottom: .6rem; transition: color .3s; }
.blog-card:hover h3 { color: var(--rose-deep); }
.blog-card p { color: var(--ink-soft); font-size: .92rem; margin-bottom: 1rem; }

.newsletter { background: var(--grad-deep); border-radius: var(--r-lg); padding: 3rem; text-align: center; color: var(--cream); margin-top: 4rem; }
.newsletter h3 { color: var(--cream); font-size: 1.9rem; margin-bottom: .6rem; }
.newsletter p { color: rgba(246,227,223,0.75); max-width: 32rem; margin: 0 auto 1.6rem; }
.news-form { display: flex; gap: .7rem; max-width: 30rem; margin: 0 auto; }
.news-form input { flex: 1; padding: .9rem 1.1rem; border-radius: 100px; border: 1px solid rgba(246,227,223,0.25); background: rgba(255,255,255,0.08); color: var(--cream); font-family: var(--sans); }
.news-form input::placeholder { color: rgba(246,227,223,0.5); }
.news-form input:focus { outline: none; border-color: var(--gold-soft); }

.sec-foot { text-align: center; margin-top: 3.2rem; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .1s; }
.reveal[data-d="2"] { transition-delay: .2s; }
.reveal[data-d="3"] { transition-delay: .3s; }
.reveal[data-d="4"] { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-frame img, .strip-track { animation: none; }
  .frame:hover img, .blog-card:hover .bc-media img { transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-media { max-width: 440px; margin: 0 auto; }
  .split, .contact-grid, .featured-treat, .feature-post { grid-template-columns: 1fr; }
  .split.flip .split-media { order: 0; }
  .featured-treat .ft-media, .feature-post .fp-media { min-height: 280px; }
  .split-head { grid-template-columns: 1fr; }
  .treat-grid, .quotes-grid, .journal-grid, .blog-grid, .steps { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 720px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav.open { position: fixed; inset: 0; background: var(--cream); flex-direction: column; justify-content: center; gap: 0; padding: 2rem; }
  .nav.open .nav-links { display: flex; flex-direction: column; gap: 1.4rem; text-align: center; }
  .nav.open .nav-links a { font-size: 1.6rem; font-family: var(--serif); }
  .nav.open .nav-cta { display: flex; flex-direction: column; margin-top: 2rem; gap: 1.2rem; }
  .nav.open .brand { position: absolute; top: 1.5rem; left: 28px; }
  .nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .treat-grid, .quotes-grid, .journal-grid, .blog-grid, .steps, .stats-inner { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .section { padding: 4rem 0; }
  .hero-badge { left: 0; }
  .hero-float { right: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .news-form { flex-direction: column; }
  .news-form input { border-radius: 14px; }
}

@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .wrap { padding: 0 20px; }
}
