/* ==========================================================================
   Honey Skin Rejuvenation — site styles
   Palette: honey. original brand — silver grey #CBCFD3, greige sign lettering, slate text
   ========================================================================== */

:root {
  --cream: #EEF0F2;
  --ivory: #FFFFFF;
  --sand: #CBCFD3;
  --sand-2: #D9DCDF;
  --honey: #ABA397;
  --honey-deep: #7F7669;
  --honey-soft: #E6E2DC;
  --espresso: #595448;
  --cocoa: #45413A;
  --taupe: #7A756B;
  --white: #FFFFFF;

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Jost", "Helvetica Neue", Arial, sans-serif;

  --radius: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --shadow: 0 10px 30px rgba(89, 84, 72, 0.10);
  --shadow-lg: 0 24px 60px rgba(89, 84, 72, 0.16);
  --ease: cubic-bezier(.2,.7,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--espresso);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; margin: 0 0 .5em; letter-spacing: -0.01em; color: #3F3B33; }
h1 { font-size: clamp(2.6rem, 6.2vw, 4.8rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
h3 { font-size: clamp(1.45rem, 2.4vw, 1.9rem); }
p { margin: 0 0 1em; }
p.lead { font-size: 1.15rem; color: var(--cocoa); }
.muted { color: var(--taupe); }
.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.narrow { max-width: 720px; }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--honey-deep); font-weight: 500; margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--honey); }
.eyebrow.center-line { justify-content: center; }
.eyebrow.center-line::after { content: ""; width: 28px; height: 1px; background: var(--honey); }

/* Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .95rem 1.7rem; border-radius: 999px; font-weight: 500; font-size: .95rem;
  letter-spacing: .03em; border: 1px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), background .25s, color .25s, box-shadow .25s, border-color .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--espresso); color: var(--cream); }
.btn-primary:hover { background: #3F3B33; box-shadow: var(--shadow); }
.btn-gold { background: var(--honey); color: var(--espresso); }
.btn-gold:hover { background: #B9B2A7; box-shadow: 0 10px 25px rgba(171,163,151,.4); }
.btn-outline { background: transparent; border-color: rgba(89,84,72,.25); color: var(--espresso); }
.btn-outline:hover { border-color: var(--espresso); background: rgba(89,84,72,.04); }
.btn-light { background: var(--cream); color: var(--espresso); }
.btn-light:hover { background: var(--white); }
.btn-sm { padding: .6rem 1.15rem; font-size: .85rem; }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* Header -------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(238,240,242,.85);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(89,84,72,.06);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(89,84,72,.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; height: 84px; }
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand .wordmark { font-family: var(--font-display); font-size: 2.1rem; font-weight: 600; letter-spacing: -.02em; color: var(--espresso); }
.brand .wordmark span { color: var(--honey); }
.brand .sub { font-size: .62rem; letter-spacing: .34em; text-transform: uppercase; color: var(--taupe); margin-top: .3rem; padding-left: .15rem; }
.nav { display: flex; align-items: center; gap: 2.1rem; }
.nav a { font-size: .95rem; font-weight: 500; color: var(--cocoa); position: relative; padding: .3rem 0; }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: var(--honey); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav a.active { color: var(--espresso); }
.header-cta { display: flex; align-items: center; gap: 1rem; }
.header-cta .phone { font-size: .92rem; color: var(--cocoa); font-weight: 500; }
.nav-toggle { display: none; background: none; border: 0; padding: .5rem; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--espresso); margin: 5px 0; transition: transform .3s, opacity .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Announcement bar */
.topbar { background: var(--espresso); color: var(--cream); font-size: .8rem; letter-spacing: .06em; text-align: center; padding: .5rem 1rem; }
.topbar a { color: #E6E2DC; border-bottom: 1px solid rgba(230,226,220,.4); }

/* Hero ---------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; padding: clamp(3rem, 8vw, 6.5rem) 0 clamp(3rem, 7vw, 5.5rem); }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath d='M28 0 L56 16 L56 50 L28 66 L0 50 L0 16 Z M28 34 L56 50 L56 84 L28 100 L0 84 L0 50 Z' fill='none' stroke='%23ABA397' stroke-opacity='0.16' stroke-width='1'/%3E%3C/svg%3E");
  mask-image: radial-gradient(ellipse at 80% 40%, #000 0%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse at 80% 40%, #000 0%, transparent 65%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.hero h1 { margin-bottom: .35em; }
.hero h1 .dot { color: var(--honey); }
.hero p.lead { max-width: 520px; font-size: 1.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.8rem; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 1.5rem 2rem; margin-top: 2.4rem; font-size: .9rem; color: var(--taupe); }
.hero-meta strong { display: block; color: var(--espresso); font-weight: 500; }
.hero-visual { position: relative; }
.hero-visual .arch {
  aspect-ratio: 4 / 5; border-radius: 999px 999px var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.hero-visual .badge {
  position: absolute; left: -1.5rem; bottom: 2.5rem; background: var(--ivory);
  border-radius: 16px; padding: 1rem 1.25rem; box-shadow: var(--shadow); max-width: 240px;
  border: 1px solid var(--sand-2);
}
.hero-visual .badge .stars { color: var(--honey); letter-spacing: .1em; font-size: .95rem; }
.hero-visual .badge p { margin: .3rem 0 0; font-size: .88rem; color: var(--cocoa); }
.hero-visual .badge small { color: var(--taupe); }

/* Placeholder imagery ------------------------------------------------- */
.ph {
  position: relative; width: 100%; height: 100%; min-height: 200px;
  background:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,.95) 0, transparent 45%),
    radial-gradient(circle at 75% 70%, rgba(171,163,151,.6) 0, transparent 55%),
    radial-gradient(circle at 60% 20%, rgba(230,226,220,.9) 0, transparent 40%),
    linear-gradient(160deg, #E4E4E2 0%, #C9C4BC 100%);
}
.ph::after {
  content: attr(data-label); position: absolute; left: 50%; bottom: 1rem; transform: translateX(-50%);
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(89,84,72,.6);
  background: rgba(255,255,255,.7); padding: .35rem .75rem; border-radius: 999px; white-space: nowrap;
}
.ph.dark { background:
    radial-gradient(circle at 30% 30%, rgba(171,163,151,.55) 0, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(127,118,105,.6) 0, transparent 55%),
    linear-gradient(160deg, #6B665C 0%, #595448 100%); }
.ph.dark::after { color: rgba(238,240,242,.8); background: rgba(89,84,72,.5); }
.ph.soft { background:
    radial-gradient(circle at 20% 80%, rgba(203,207,211,.9) 0, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,1) 0, transparent 50%),
    linear-gradient(160deg, #F1F2F3 0%, #D5D2CC 100%); }

/* Marquee ------------------------------------------------------------- */
.marquee { border-top: 1px solid var(--sand-2); border-bottom: 1px solid var(--sand-2); background: var(--sand); overflow: hidden; padding: .9rem 0; }
.marquee-track { display: flex; gap: 3rem; width: max-content; animation: marquee 40s linear infinite; }
.marquee-track span { font-family: var(--font-display); font-size: 1.25rem; font-style: italic; color: var(--cocoa); white-space: nowrap; display: inline-flex; align-items: center; gap: 3rem; }
.marquee-track span::after { content: "✦"; color: var(--honey-deep); font-style: normal; font-size: .8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* Sections ------------------------------------------------------------ */
.section { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.section.tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section-head { max-width: 680px; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section-head.center { margin-inline: auto; }
.bg-ivory { background: var(--ivory); }
.bg-sand { background: var(--sand); }
.bg-espresso { background: var(--espresso); color: var(--cream); }
.bg-espresso h2, .bg-espresso h3 { color: var(--cream); }
.bg-espresso .eyebrow { color: var(--honey); }
.bg-espresso .eyebrow::before, .bg-espresso .eyebrow::after { background: var(--honey); }
.bg-espresso .muted { color: rgba(238,240,242,.7); }

/* Intro split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.split .visual { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/4.6; box-shadow: var(--shadow); }
.split .visual.small { aspect-ratio: 4/3; }
.stat-row { display: flex; gap: 2.5rem; margin-top: 2rem; flex-wrap: wrap; }
.stat-row div { border-left: 1px solid var(--sand-2); padding-left: 1rem; }
.stat-row strong { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 500; line-height: 1; color: var(--espresso); }
.stat-row span { font-size: .85rem; color: var(--taupe); }

/* Cards --------------------------------------------------------------- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--ivory); border: 1px solid var(--sand-2); border-radius: var(--radius);
  padding: 1.6rem; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s;
  display: flex; flex-direction: column; gap: .6rem; position: relative;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--honey-soft); }
.card h3 { margin: 0; font-size: 1.5rem; }
.card p { margin: 0; color: var(--cocoa); font-size: .95rem; }
.card .from { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--honey-deep); }
.card .link { margin-top: auto; padding-top: .5rem; font-size: .9rem; font-weight: 500; display: inline-flex; gap: .4rem; align-items: center; color: var(--espresso); }
.card .link .arrow { color: var(--honey); transition: transform .25s var(--ease); }
.card:hover .link .arrow { transform: translateX(4px); }
.card .icon { width: 46px; height: 46px; border-radius: 12px; background: var(--honey-soft); display: grid; place-items: center; color: var(--honey-deep); margin-bottom: .35rem; }
.card .icon svg { width: 22px; height: 22px; }
.card.media { padding: 0; overflow: hidden; }
.card.media .media-img { aspect-ratio: 4/3; }
.card.media .body { padding: 1.4rem 1.6rem 1.6rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.price-tag { font-family: var(--font-display); font-size: 1.5rem; color: var(--espresso); }
.price-tag small { font-family: var(--font-body); font-size: .8rem; color: var(--taupe); margin-left: .35rem; }

/* Feature list */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.feature .num { font-family: var(--font-display); font-size: 2.6rem; color: var(--honey); line-height: 1; }
.feature h3 { font-size: 1.35rem; margin: .5rem 0 .4rem; }
.feature p { font-size: .95rem; color: var(--cocoa); margin: 0; }

/* Service menu -------------------------------------------------------- */
.menu { display: flex; flex-direction: column; }
.menu-item {
  display: grid; grid-template-columns: 1fr auto auto; gap: 1rem 2rem; align-items: start;
  padding: 1.5rem 0; border-bottom: 1px solid var(--sand-2);
}
.menu-item:first-child { border-top: 1px solid var(--sand-2); }
.menu-item h3 { font-size: 1.45rem; margin: 0 0 .2rem; }
.menu-item .dur { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--taupe); }
.menu-item .desc { font-size: .95rem; color: var(--cocoa); margin: .5rem 0 0; max-width: 62ch; }
.menu-item .note { font-size: .85rem; color: var(--honey-deep); margin-top: .4rem; }
.menu-item .price { font-family: var(--font-display); font-size: 1.6rem; color: var(--espresso); white-space: nowrap; padding-top: .15rem; }
.menu-item .price small { font-family: var(--font-body); font-size: .75rem; color: var(--taupe); display: block; text-align: right; letter-spacing: .05em; }
.menu-item .btn { align-self: start; margin-top: .2rem; }
.menu-group + .menu-group { margin-top: 3.5rem; }
.menu-group > h2 { font-size: 2rem; margin-bottom: .25rem; }
.menu-group > p { color: var(--taupe); margin-bottom: 1rem; }

/* Page hero */
.page-hero { padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem); position: relative; overflow: hidden; }
.page-hero .container { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: end; }
.page-hero h1 { font-size: clamp(2.6rem, 5.5vw, 4.4rem); }
.page-hero .visual { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/9; box-shadow: var(--shadow); }
.breadcrumb { font-size: .82rem; color: var(--taupe); margin-bottom: 1rem; display: flex; gap: .5rem; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--honey-deep); }

/* Sidebar layout for service pages */
.service-layout { display: grid; grid-template-columns: 1fr 320px; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.sticky-card { position: sticky; top: 110px; background: var(--ivory); border: 1px solid var(--sand-2); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow); }
.sticky-card h3 { font-size: 1.4rem; margin-bottom: .6rem; }
.sticky-card ul { list-style: none; padding: 0; margin: 0 0 1.2rem; font-size: .92rem; color: var(--cocoa); }
.sticky-card li { padding: .45rem 0; border-bottom: 1px dashed var(--sand-2); display: flex; gap: .6rem; }
.sticky-card li::before { content: "✦"; color: var(--honey); font-size: .7rem; margin-top: .3rem; }
.sticky-card .btn { width: 100%; }
.sticky-card .hours { font-size: .85rem; color: var(--taupe); margin-top: .9rem; text-align: center; }

/* Notice box */
.notice { background: var(--honey-soft); border-radius: var(--radius); padding: 1.25rem 1.5rem; font-size: .93rem; color: var(--cocoa); border-left: 3px solid var(--honey); }
.notice strong { color: var(--espresso); }

/* FAQ */
.faq details { border-bottom: 1px solid var(--sand-2); padding: 1rem 0; }
.faq details:first-child { border-top: 1px solid var(--sand-2); }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--honey); font-size: 1.6rem; font-weight: 300; transition: transform .3s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { margin: .75rem 0 0; color: var(--cocoa); font-size: .97rem; max-width: 70ch; }

/* Testimonials */
.quote { background: var(--ivory); border: 1px solid var(--sand-2); border-radius: var(--radius); padding: 1.8rem; }
.quote .stars { color: var(--honey); letter-spacing: .12em; margin-bottom: .6rem; }
.quote p { font-family: var(--font-display); font-size: 1.3rem; line-height: 1.4; color: var(--espresso); margin-bottom: 1rem; }
.quote footer { font-size: .85rem; color: var(--taupe); }

/* CTA band */
.cta-band { position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0; opacity: .35; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath d='M28 0 L56 16 L56 50 L28 66 L0 50 L0 16 Z M28 34 L56 50 L56 84 L28 100 L0 84 L0 50 Z' fill='none' stroke='%23ABA397' stroke-opacity='0.35' stroke-width='1'/%3E%3C/svg%3E");
  mask-image: radial-gradient(ellipse at 20% 50%, #000 0%, transparent 60%);
  -webkit-mask-image: radial-gradient(ellipse at 20% 50%, #000 0%, transparent 60%);
}
.cta-band .container { position: relative; display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
.cta-band h2 { margin: 0 0 .3rem; }
.cta-band p { margin: 0; }
.cta-band .actions { display: flex; gap: .9rem; flex-wrap: wrap; }

/* Hours / location */
.hours-table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.hours-table td { padding: .55rem 0; border-bottom: 1px dashed var(--sand-2); }
.hours-table td:last-child { text-align: right; color: var(--cocoa); }
.hours-table tr.closed td:last-child { color: var(--taupe); }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); min-height: 340px; background: var(--sand); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; filter: sepia(.25) saturate(.8); }
.contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .9rem; }
.contact-list li { display: flex; gap: .9rem; align-items: flex-start; }
.contact-list .ic { width: 40px; height: 40px; flex: none; border-radius: 12px; background: var(--honey-soft); display: grid; place-items: center; color: var(--honey-deep); }
.contact-list .ic svg { width: 18px; height: 18px; }
.contact-list li > div:last-child { flex: 1; min-width: 0; }
.contact-list strong { display: block; font-weight: 500; overflow-wrap: anywhere; }
.contact-list span { font-size: .92rem; color: var(--cocoa); }

/* Forms */
.form { display: grid; gap: 1rem; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form label { font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--taupe); display: block; margin-bottom: .35rem; }
.form input, .form select, .form textarea {
  width: 100%; font: inherit; padding: .85rem 1rem; border-radius: 12px; border: 1px solid var(--sand-2);
  background: var(--white); color: var(--espresso); transition: border-color .2s, box-shadow .2s;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--honey); box-shadow: 0 0 0 4px rgba(171,163,151,.25); }
.form textarea { min-height: 140px; resize: vertical; }
.form .hint { font-size: .8rem; color: var(--taupe); }

/* Footer -------------------------------------------------------------- */
.site-footer { background: var(--espresso); color: rgba(238,240,242,.8); padding: 4.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 3rem; }
.site-footer .brand .wordmark { color: var(--cream); font-size: 2.4rem; }
.site-footer .brand .sub { color: rgba(238,240,242,.55); }
.site-footer h4 { font-family: var(--font-body); font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--honey); margin: 0 0 1rem; font-weight: 500; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; font-size: .95rem; }
.site-footer a:hover { color: var(--honey-soft); }
.site-footer p { font-size: .95rem; }
.footer-bottom { margin-top: 3.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(238,240,242,.12); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .82rem; color: rgba(238,240,242,.5); }
.footer-bottom a { color: rgba(238,240,242,.7); }
.social { display: flex; gap: .6rem; margin-top: 1.2rem; }
.social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(238,240,242,.2); display: grid; place-items: center; transition: background .25s, border-color .25s; }
.social a:hover { background: var(--honey); border-color: var(--honey); color: var(--espresso); }
.social svg { width: 16px; height: 16px; }

/* Reveal animations --------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; } .reveal-delay-2 { transition-delay: .2s; } .reveal-delay-3 { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* Floating book button (mobile) */
.float-book { display: none; }

/* Responsive ---------------------------------------------------------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-layout { grid-template-columns: 1fr; }
  .sticky-card { position: static; }
  .header-cta .phone { display: none; }
}
@media (max-width: 860px) {
  .nav { position: fixed; inset: 84px 0 auto 0; background: var(--ivory); flex-direction: column; align-items: stretch; gap: 0; padding: .5rem 1.25rem 1.5rem; border-bottom: 1px solid var(--sand-2); box-shadow: var(--shadow-lg); transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s; }
  .nav.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav a { padding: .9rem 0; border-bottom: 1px solid var(--sand); font-size: 1.05rem; }
  .nav a::after { display: none; }
  .nav-toggle { display: block; }
  .header-cta .btn { display: none; }
  .hero-grid, .split, .page-hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-visual .arch { max-width: 420px; margin-inline: auto; }
  .hero-visual .badge { position: static; max-width: none; margin: -1.5rem auto 0; width: min(100%, 420px); }
  .split .visual { max-width: 520px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr 1fr; }
  .menu-item { grid-template-columns: 1fr auto; }
  .menu-item .btn { grid-column: 1 / -1; justify-self: start; }
  .float-book { display: flex; position: fixed; bottom: 1rem; left: 50%; transform: translateX(-50%); z-index: 40; box-shadow: var(--shadow-lg); }
  body { padding-bottom: 4.5rem; }
}
.visit-split { align-items: stretch; }
.visit-split .map-wrap { height: 100%; }
@media (max-width: 600px) {
  .tb-addr { display: none; }
  .visit-split .map-wrap { min-height: 300px; }
  .grid-2, .grid-3, .grid-4, .features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form .row { grid-template-columns: 1fr; }
  .hero-meta { gap: 1rem 1.5rem; }
  .stat-row { gap: 1.5rem; }
  .cta-band .container { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   v2 — signature features
   ========================================================================== */

/* Cinematic hero */
.hero-cine { padding-top: clamp(3.5rem, 8vw, 6.5rem); }
.hero-media { position: absolute; inset: 0; z-index: 0; opacity: .55; }
.hero-media .ph { min-height: 100%; }
.hero-media .ph::after { top: 1rem; bottom: auto; left: auto; right: 1rem; transform: none; font-size: .6rem; opacity: .8; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, var(--cream) 0%, rgba(238,240,242,.92) 45%, rgba(238,240,242,.35) 100%); }
.hero-cine::before { z-index: 1; }
.hero-cine .hero-grid { z-index: 2; }
.words .w { display: inline-block; opacity: 0; transform: translateY(.35em) rotate(1.5deg); animation: wordin .9s var(--ease) forwards; animation-delay: calc(.15s + var(--i) * .16s); }
.words .w.dot { color: var(--honey); }
@keyframes wordin { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .words .w { animation: none; opacity: 1; transform: none; } }

/* Drip divider */
.drip { line-height: 0; background: var(--cream); margin-top: -1px; }
.drip svg { width: 100%; height: 42px; display: block; }
.drip svg path { fill: var(--sand); }

/* Trust bar */
.trustbar { background: var(--sand); padding: 1.6rem 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.trust-grid div { display: flex; flex-direction: column; gap: .15rem; padding-left: 1rem; border-left: 1px solid rgba(89,84,72,.18); }
.trust-grid strong { font-weight: 500; font-size: .98rem; color: var(--espresso); }
.trust-grid span { font-size: .85rem; color: var(--cocoa); }

/* Concern pills */
.pills { display: flex; flex-wrap: wrap; gap: .8rem; }
.pill { display: inline-flex; align-items: center; gap: .6rem; padding: .8rem 1.25rem .8rem .9rem; border-radius: 999px; background: var(--ivory); border: 1px solid var(--sand-2); font-weight: 500; font-size: .95rem; color: var(--espresso); transition: transform .3s var(--ease), box-shadow .3s, border-color .3s, background .3s; }
.pill:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--honey); }
.pill .pi { width: 30px; height: 30px; border-radius: 50%; background: var(--honey-soft); display: grid; place-items: center; color: var(--honey-deep); }
.pill .pi svg { width: 15px; height: 15px; }
.pill-cta { background: var(--espresso); color: var(--cream); border-color: var(--espresso); }
.pill-cta:hover { background: var(--cocoa); }
.pill-cta .arrow { color: var(--honey); }

/* Mega menu */
.has-mega { position: relative; }
.has-mega > a .chev { font-size: .8em; margin-left: .15rem; display: inline-block; transform: translateY(-2px); }
.mega { position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px); width: 680px; background: var(--ivory); border: 1px solid var(--sand-2); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 1.4rem; display: grid; grid-template-columns: 1.5fr 1fr; gap: 1.5rem; opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s var(--ease); z-index: 60; }
.mega::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.has-mega:hover .mega, .has-mega:focus-within .mega { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.mega h5 { margin: 0 0 .7rem; font-family: var(--font-body); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--honey-deep); font-weight: 500; }
.mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .25rem; }
.mega-grid a { display: flex; gap: .7rem; align-items: center; padding: .55rem .6rem; border-radius: 10px; font-size: .9rem; }
.nav .mega-grid a::after { display: none; }
.mega-grid a:hover { background: var(--sand); }
.mega-grid .mi { width: 32px; height: 32px; border-radius: 9px; background: var(--honey-soft); display: grid; place-items: center; color: var(--honey-deep); flex: none; }
.mega-grid .mi svg { width: 16px; height: 16px; }
.mega-grid strong { display: block; font-weight: 500; color: var(--espresso); line-height: 1.2; }
.mega-grid small { color: var(--taupe); font-size: .78rem; }
.mega-side { border-left: 1px solid var(--sand-2); padding-left: 1.5rem; display: flex; flex-direction: column; }
.mega-list { display: flex; flex-direction: column; gap: .1rem; }
.mega-list a { padding: .4rem .5rem; border-radius: 8px; font-size: .9rem; }
.nav .mega-list a::after, .nav .mega-link::after, .nav .mega .btn::after { display: none; }
.mega-list a:hover { background: var(--sand); }
.mega-link { margin-top: auto; padding-top: 1rem; font-size: .88rem; color: var(--honey-deep) !important; }

/* Mobile tab bar */
.tabbar { display: none; }

/* The honey. method */
.method-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.method-step { position: relative; padding: 1.6rem 1.4rem 1.4rem; border: 1px solid rgba(238,240,242,.14); border-radius: var(--radius); background: rgba(255,255,255,.03); }
.method-step::before { content: ""; position: absolute; right: -1.5rem; top: 50%; width: 1.5rem; height: 1px; background: rgba(238,240,242,.2); }
.method-step:last-child::before { display: none; }
.method-step .num { font-family: var(--font-display); font-size: 2.4rem; color: var(--honey); line-height: 1; }
.method-step h3 { font-size: 1.5rem; margin: .5rem 0 .4rem; }
.method-step p { margin: 0; font-size: .93rem; color: rgba(238,240,242,.75); }

/* Before / after slider */
.ba { position: relative; aspect-ratio: 4/3.4; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); --pos: 50%; user-select: none; }
.ba > div { position: absolute; inset: 0; }
.ba .ba-before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba .ph::after { bottom: auto; top: 1rem; transform: none; }
.ba .ba-after .ph::after { left: auto; right: 1rem; }
.ba .ba-before .ph::after { left: 1rem; }
.ba input[type=range] { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; z-index: 3; -webkit-appearance: none; appearance: none; }
.ba .ba-handle { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; background: var(--ivory); transform: translateX(-1px); pointer-events: none; z-index: 2; }
.ba .ba-handle span { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 44px; height: 44px; border-radius: 50%; background: var(--ivory); color: var(--espresso); display: grid; place-items: center; font-size: 1.1rem; box-shadow: var(--shadow); }

/* Quiz */
.quiz { background: var(--ivory); border: 1px solid var(--sand-2); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow); position: relative; }
.quiz-progress { height: 3px; background: var(--sand); border-radius: 3px; overflow: hidden; margin-bottom: 1.5rem; }
.quiz-progress span { display: block; height: 100%; width: 33%; background: var(--honey); transition: width .4s var(--ease); }
.quiz h3 { font-size: 1.7rem; margin-bottom: 1.1rem; }
.quiz-opts { display: grid; gap: .6rem; }
.quiz-opts button { text-align: left; font: inherit; font-weight: 500; font-size: .98rem; padding: .95rem 1.15rem; border-radius: 12px; border: 1px solid var(--sand-2); background: var(--white); color: var(--espresso); cursor: pointer; transition: border-color .2s, background .2s, transform .2s var(--ease); display: flex; justify-content: space-between; align-items: center; }
.quiz-opts button::after { content: "→"; color: var(--honey); opacity: 0; transition: opacity .2s, transform .2s; transform: translateX(-4px); }
.quiz-opts button:hover { border-color: var(--honey); background: var(--honey-soft); transform: translateX(3px); }
.quiz-opts button:hover::after { opacity: 1; transform: none; }
.quiz-step, .quiz-result { animation: fadein .4s var(--ease); }
@keyframes fadein { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.quiz-cards { display: grid; gap: 1rem; }
.quiz-card { border: 1px solid var(--sand-2); border-radius: 14px; padding: 1.1rem 1.2rem; background: var(--white); position: relative; }
.quiz-card.best { border-color: var(--honey); box-shadow: 0 0 0 3px var(--honey-soft); }
.quiz-card .tag { position: absolute; top: -.7rem; left: 1rem; background: var(--espresso); color: var(--cream); font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; padding: .25rem .6rem; border-radius: 999px; }
.quiz-card h4 { font-family: var(--font-display); font-size: 1.35rem; margin: .2rem 0 .1rem; font-weight: 500; }
.quiz-card .meta { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--taupe); }
.quiz-card p { font-size: .92rem; color: var(--cocoa); margin: .5rem 0 .6rem; }
.quiz-card .row { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.quiz-card .row a { font-size: .88rem; font-weight: 500; color: var(--honey-deep); }

/* Occasions */
.occ { display: flex; flex-direction: column; gap: .5rem; padding: 1.6rem; border-radius: var(--radius); background: var(--ivory); border: 1px solid var(--sand-2); transition: transform .35s var(--ease), box-shadow .35s; }
.occ:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.occ h3 { margin: 0; font-size: 1.5rem; }
.occ p { margin: 0; font-size: .93rem; color: var(--cocoa); }
.occ .link { margin-top: auto; padding-top: .5rem; font-size: .9rem; font-weight: 500; display: inline-flex; gap: .4rem; }
.occ .link .arrow { color: var(--honey); }

/* Hex gallery (true honeycomb: 2-3-2) */
.hexgrid { --hw: 230px; --gap: 10px; display: flex; flex-direction: column; align-items: center; }
.hexrow { display: flex; justify-content: center; gap: var(--gap); }
.hexrow + .hexrow { margin-top: calc(var(--hw) * -0.2887 + var(--gap) * 0.6); }
.hex { width: var(--hw); aspect-ratio: 1 / 1.1547; overflow: hidden; clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%); transition: transform .4s var(--ease); }
.hex:hover { transform: scale(1.05); z-index: 2; }
.hex .ph { min-height: 100%; }
.hex .ph::after { bottom: 27%; max-width: 80%; overflow: hidden; text-overflow: ellipsis; }

/* Menu page */
.page-hero.compact .container { grid-template-columns: 1fr; }
.menu-tools { position: sticky; top: 84px; z-index: 30; background: var(--cream); padding: 1rem 0; margin-bottom: 1rem; border-bottom: 1px solid var(--sand-2); }
.search { position: relative; }
.search .si { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--taupe); }
.search .si svg { width: 18px; height: 18px; display: block; }
.search input { width: 100%; font: inherit; font-size: 1.05rem; padding: .95rem 1rem .95rem 3rem; border-radius: 999px; border: 1px solid var(--sand-2); background: var(--white); color: var(--espresso); }
.search input:focus { outline: none; border-color: var(--honey); box-shadow: 0 0 0 4px rgba(171,163,151,.25); }
.tools-row { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-top: .9rem; flex-wrap: wrap; }
.tabs { display: flex; gap: .35rem; flex-wrap: wrap; }
.tab { font: inherit; font-size: .88rem; font-weight: 500; padding: .5rem .95rem; border-radius: 999px; border: 1px solid transparent; background: transparent; color: var(--cocoa); cursor: pointer; transition: background .2s, color .2s; }
.tab:hover { background: var(--sand); }
.tab.active { background: var(--espresso); color: var(--cream); }
.quick { display: flex; gap: .4rem; align-items: center; flex-wrap: wrap; }
.chip { font: inherit; font-size: .82rem; font-weight: 500; padding: .45rem .85rem; border-radius: 999px; border: 1px solid var(--sand-2); background: var(--white); color: var(--cocoa); cursor: pointer; transition: all .2s; }
.chip:hover { border-color: var(--honey); }
.chip.active { background: var(--honey-soft); border-color: var(--honey); color: var(--espresso); }
#menu-sort { font: inherit; font-size: .85rem; padding: .45rem .8rem; border-radius: 999px; border: 1px solid var(--sand-2); background: var(--white); color: var(--cocoa); }
.menu-count { font-size: .85rem; margin: .8rem 0 0; }
.menu-page .menu-group { margin-top: 2.5rem; }
.menu-page .menu-group[hidden] { display: none; }
.menu-page .menu-item[hidden], .menu-page .menu-sub[hidden] { display: none; }
.menu-sub { font-size: 1.15rem; letter-spacing: .04em; color: var(--honey-deep); margin: 1.8rem 0 .4rem; font-family: var(--font-body); font-weight: 500; text-transform: uppercase; font-size: .78rem; letter-spacing: .2em; }
.menu-empty { text-align: center; padding: 4rem 0; }
.menu-item mark { background: var(--honey-soft); color: inherit; border-radius: 3px; padding: 0 .1em; }

/* Concerns page */
.jump { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.jump a { font-size: .85rem; font-weight: 500; padding: .5rem .95rem; border-radius: 999px; border: 1px solid var(--sand-2); background: var(--ivory); }
.jump a:hover { border-color: var(--honey); }
.concern-head { display: flex; gap: 1.5rem; align-items: flex-start; max-width: 820px; margin-bottom: 2rem; }
.concern-head .icon { width: 56px; height: 56px; flex: none; border-radius: 16px; background: var(--honey-soft); display: grid; place-items: center; color: var(--honey-deep); }
.concern-head .icon svg { width: 26px; height: 26px; }
.concern-head h2 { margin-bottom: .4rem; }
.rec-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.2rem; }
.rec { display: flex; flex-direction: column; gap: .4rem; padding: 1.4rem; background: var(--ivory); border: 1px solid var(--sand-2); border-radius: var(--radius); transition: transform .35s var(--ease), box-shadow .35s, border-color .3s; }
.rec:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--honey); }
.rec-top { display: flex; justify-content: space-between; align-items: baseline; gap: .5rem; }
.rec .from { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--honey-deep); }
.rec .price-tag { font-size: 1.3rem; }
.rec h3 { margin: 0; font-size: 1.35rem; }
.rec p { margin: 0; font-size: .9rem; color: var(--cocoa); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.rec .link { margin-top: auto; padding-top: .5rem; font-size: .88rem; font-weight: 500; display: inline-flex; gap: .4rem; }
.rec .link .arrow { color: var(--honey); }
hr.rule { border: 0; border-top: 1px solid var(--sand-2); margin: 0; }
.concern { padding: clamp(3rem, 6vw, 4.5rem) 0; }

/* Responsive for v2 */
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .method-step::before { display: none; }
  .mega { width: 560px; }
}
@media (max-width: 860px) {
  .has-mega { display: contents; }
  .has-mega > a .chev { display: none; }
  .mega { position: static; transform: none; opacity: 1; pointer-events: auto; width: auto; box-shadow: none; border: 0; border-bottom: 1px solid var(--sand); border-radius: 0; padding: .5rem 0 1rem; grid-template-columns: 1fr; gap: 1rem; background: transparent; }
  .mega-side { border-left: 0; padding-left: 0; }
  .mega-grid a { padding: .5rem .2rem; border-bottom: 0; }
  .nav a { border-bottom: 1px solid var(--sand); }
  .nav .mega a, .nav .jump a { border-bottom: 0; }
  .hero-media { opacity: .35; }
  .hero-media .ph::after { display: none; }
  .hero-shade { background: linear-gradient(180deg, rgba(238,240,242,.6) 0%, var(--cream) 70%); }
  .float-book { display: none !important; }
  .tabbar { display: grid; grid-template-columns: repeat(4, 1fr); position: fixed; bottom: 0; left: 0; right: 0; z-index: 45; background: rgba(255,255,255,.96); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-top: 1px solid var(--sand-2); padding: .45rem .5rem calc(.45rem + env(safe-area-inset-bottom)); }
  .tabbar a { display: flex; flex-direction: column; align-items: center; gap: .2rem; font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; color: var(--cocoa); font-weight: 500; padding: .3rem 0; border-radius: 12px; }
  .tabbar a svg { width: 22px; height: 22px; }
  .tabbar .tab-book { background: var(--espresso); color: var(--cream); }
  body { padding-bottom: 4.6rem; }
  .menu-tools { top: 84px; }
  .hexgrid { --hw: 28vw; --gap: 6px; }
  .ba { aspect-ratio: 4/3; }
}
@media (max-width: 600px) {
  .trust-grid { grid-template-columns: 1fr; gap: .9rem; }
  .method-grid { grid-template-columns: 1fr; }
  .quiz { padding: 1.4rem; }
  .tools-row { flex-direction: column; align-items: stretch; }
  .hexgrid { --hw: 30vw; --gap: 4px; }
}

/* ==========================================================================
   v3 — top-performer patterns + unique tools
   ========================================================================== */
.btn-ghost { background: transparent; color: var(--cocoa); border-color: transparent; }
.btn-ghost:hover { background: var(--sand); }
.pill-tiny { font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; background: var(--honey-soft); color: var(--honey-deep); padding: .15rem .45rem; border-radius: 999px; margin-left: .35rem; vertical-align: middle; }
.sig { display: inline-block; font-family: var(--font-body); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--honey-deep); background: var(--honey-soft); padding: .2rem .5rem; border-radius: 999px; vertical-align: middle; margin-left: .3rem; }
.mi-actions { display: flex; flex-direction: column; gap: .4rem; align-items: flex-start; }
.menu-item .add-visit { font-size: .78rem; padding: .35rem .6rem; }
.menu-item.in-visit .add-visit { background: var(--espresso); color: var(--cream); }

/* Visit tray */
.visit-tray { position: fixed; left: 0; right: 0; bottom: 0; z-index: 46; background: var(--ivory); border-top: 1px solid var(--sand-2); box-shadow: 0 -12px 40px rgba(89,84,72,.14); }
.vt-inner { padding: .75rem 0 .9rem; display: grid; grid-template-columns: 1fr auto; gap: .5rem 1.5rem; align-items: center; }
.vt-toggle { font: inherit; background: none; border: 0; text-align: left; cursor: pointer; display: flex; align-items: center; gap: .6rem; color: var(--espresso); padding: 0; }
.vt-toggle .vt-summary { color: var(--taupe); font-size: .92rem; }
.vt-toggle .chev { color: var(--honey); transition: transform .3s; }
.visit-tray.open .vt-toggle .chev { transform: rotate(180deg); }
.vt-list { list-style: none; margin: 0; padding: 0; grid-column: 1 / -1; display: none; flex-direction: column; gap: .35rem; border-top: 1px dashed var(--sand-2); padding-top: .6rem; }
.visit-tray.open .vt-list { display: flex; }
.vt-list li { display: flex; justify-content: space-between; gap: 1rem; font-size: .92rem; }
.vt-list li span:last-child { color: var(--taupe); white-space: nowrap; }
.vt-list button { background: none; border: 0; color: var(--honey-deep); cursor: pointer; font: inherit; font-size: .8rem; margin-left: .5rem; }
.vt-actions { display: flex; align-items: center; gap: .6rem; }
.vt-total { font-family: var(--font-display); font-size: 1.25rem; white-space: nowrap; }
.vt-hint { grid-column: 1 / -1; font-size: .8rem; margin: 0; display: none; }
.visit-tray.open .vt-hint { display: block; }
body.has-tray { padding-bottom: 5.5rem; }

/* Newsletter */
.newsletter { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; align-items: center; padding: 2rem; border: 1px solid rgba(238,240,242,.14); border-radius: var(--radius-lg); margin-bottom: 3.5rem; background: rgba(255,255,255,.03); }
.newsletter h3 { color: var(--cream); font-size: 1.6rem; margin: .3rem 0 .3rem; }
.newsletter .eyebrow { color: var(--honey); } .newsletter .eyebrow::before { background: var(--honey); }
.newsletter p { margin: 0; }
.nl-form { display: flex; gap: .6rem; }
.nl-form input { flex: 1; font: inherit; padding: .9rem 1.1rem; border-radius: 999px; border: 1px solid rgba(238,240,242,.2); background: rgba(255,255,255,.06); color: var(--cream); min-width: 0; }
.nl-form input::placeholder { color: rgba(238,240,242,.5); }
.nl-form input:focus { outline: none; border-color: var(--honey); }

/* Seasonal card */
.season { margin-top: 2rem; display: grid; grid-template-columns: auto 1fr auto; gap: 1.25rem; align-items: center; padding: 1.4rem 1.6rem; background: var(--ivory); border: 1px solid var(--sand-2); border-radius: var(--radius); }
.season-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--honey-soft); display: grid; place-items: center; color: var(--honey-deep); }
.season-icon svg { width: 24px; height: 24px; }
.season h3 { margin: .2rem 0 .2rem; font-size: 1.45rem; }
.season p { margin: 0; font-size: .95rem; }

/* Rating badge */
.rating-badge { display: inline-flex; align-items: center; gap: .6rem; margin-top: 1rem; padding: .55rem 1rem; border-radius: 999px; background: var(--ivory); border: 1px solid var(--sand-2); font-size: .9rem; color: var(--taupe); }
.rating-badge .stars { color: var(--honey); letter-spacing: .1em; }
.rating-badge strong { color: var(--espresso); font-family: var(--font-display); font-size: 1.15rem; }

/* Planner */
.planner { max-width: 900px; }
.plan-form { background: var(--ivory); border: 1px solid var(--sand-2); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow); display: grid; gap: 1.25rem; }
.plan-form .row, .calc .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.plan-form label, .calc label { font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--taupe); display: block; margin-bottom: .35rem; }
.plan-form input, .calc input, .calc select { width: 100%; font: inherit; padding: .85rem 1rem; border-radius: 12px; border: 1px solid var(--sand-2); background: var(--white); color: var(--espresso); }
.plan-form input:focus, .calc input:focus, .calc select:focus { outline: none; border-color: var(--honey); box-shadow: 0 0 0 4px rgba(171,163,151,.25); }
.plan-form fieldset { border: 0; padding: 0; margin: 0; }
.plan-form legend { font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--taupe); margin-bottom: .6rem; }
.checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: .5rem; }
.check { display: flex; align-items: center; gap: .6rem; padding: .7rem .9rem; border: 1px solid var(--sand-2); border-radius: 12px; background: var(--white); cursor: pointer; font-size: .95rem; }
.check:has(input:checked) { border-color: var(--honey); background: var(--honey-soft); }
.check input { accent-color: var(--honey-deep); }
.plan-out { margin-top: 2rem; animation: fadein .4s var(--ease); }
.plan-head h2 { margin-bottom: .2rem; }
.timeline { list-style: none; padding: 0; margin: 1.5rem 0 0; position: relative; }
.timeline::before { content: ""; position: absolute; left: 116px; top: 0; bottom: 0; width: 1px; background: var(--sand-2); }
.tl { display: grid; grid-template-columns: 100px 1fr; gap: 1.5rem; padding: 1rem 0; position: relative; }
.tl .when { text-align: right; }
.tl .when strong { display: block; font-family: var(--font-display); font-size: 1.25rem; color: var(--espresso); line-height: 1.1; }
.tl .when span { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--taupe); }
.tl .dot { position: absolute; left: 111px; top: 1.35rem; width: 11px; height: 11px; border-radius: 50%; background: var(--honey); border: 2px solid var(--cream); }
.tl .what { background: var(--ivory); border: 1px solid var(--sand-2); border-radius: 14px; padding: 1rem 1.2rem; }
.tl .what h3 { margin: 0 0 .2rem; font-size: 1.3rem; }
.tl .what p { margin: 0; font-size: .92rem; color: var(--cocoa); }
.tl .what .meta { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--honey-deep); display: block; margin-top: .4rem; }
.tl.event .dot { background: var(--espresso); width: 15px; height: 15px; left: 109px; }
.tl.event .what { background: var(--espresso); color: var(--cream); border-color: var(--espresso); }
.tl.event .what h3 { color: var(--cream); } .tl.event .what p { color: rgba(238,240,242,.8); }

/* Lash calc */
.calc { background: var(--ivory); border: 1px solid var(--sand-2); border-radius: var(--radius-lg); padding: 1.8rem; box-shadow: var(--shadow); display: grid; gap: 1rem; }
.calc-out { border-top: 1px dashed var(--sand-2); padding-top: 1rem; display: grid; gap: .4rem; animation: fadein .4s var(--ease); }
.calc-out h3 { margin: 0; font-size: 1.5rem; }
.calc-out p { margin: 0; font-size: .95rem; color: var(--cocoa); }
.calc-out .btn { justify-self: start; margin-top: .4rem; }

/* Membership */
.proposal-bar { background: var(--honey-soft); color: var(--espresso); font-size: .85rem; text-align: center; padding: .6rem 1rem; border-bottom: 1px solid var(--sand-2); }
.tier { position: relative; }
.price-big { font-family: var(--font-display); font-size: 2.6rem; color: var(--espresso); line-height: 1; margin: .3rem 0 .6rem; }
.price-big small { font-family: var(--font-body); font-size: .85rem; color: var(--taupe); margin-left: .3rem; }
.proposed { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--honey-deep); margin-top: auto; padding-top: .8rem; }

@media (max-width: 860px) {
  .vt-inner { grid-template-columns: 1fr; }
  .vt-actions { justify-content: space-between; }
  .visit-tray { bottom: 4.4rem; }
  .newsletter { grid-template-columns: 1fr; }
  .season { grid-template-columns: auto 1fr; }
  .season .btn { grid-column: 1 / -1; justify-self: start; }
  .timeline::before { left: 20px; }
  .tl { grid-template-columns: 1fr; gap: .4rem; padding-left: 44px; }
  .tl .when { text-align: left; display: flex; gap: .6rem; align-items: baseline; }
  .tl .dot { left: 15px; }
  .tl.event .dot { left: 13px; }
}
@media (max-width: 600px) {
  .plan-form .row, .calc .row, .checks { grid-template-columns: 1fr; }
  .nl-form { flex-direction: column; }
  .mi-actions { flex-direction: row; }
}

/* Real logo */
.brand .logo { height: 44px; width: auto; display: block; color: var(--espresso); }
.site-footer .brand .logo { height: 56px; color: #fff; }
@media (max-width: 600px) { .brand .logo { height: 36px; } }

/* Real photos (added Sept 5) ------------------------------------------ */
.ph.img { background-size: cover; background-position: center; background-repeat: no-repeat; }
.ph.img::after { display: none; }
.ba-tag { position: absolute; top: 1rem; z-index: 2; font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--cocoa); background: rgba(255,255,255,.85); padding: .35rem .75rem; border-radius: 999px; pointer-events: none; }
.ba-tag-l { left: 1rem; } .ba-tag-r { right: 1rem; }
.team-photos { display: grid; grid-template-columns: 3fr 2fr; gap: 1.25rem; }
.team-photos { height: clamp(320px, 36vw, 520px); }
.team-photos > div { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); height: 100%; }
.team-photos .ph { min-height: 100%; }
@media (max-width: 760px) { .team-photos { grid-template-columns: 1fr; height: auto; } .team-photos > div { aspect-ratio: 4/3; } }

/* Acuity embed --------------------------------------------------------- */
.acuity-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: #595448; }
.acuity-wrap iframe { display: block; min-height: 900px; }

.acuity-wrap { scroll-margin-top: 96px; }
