/* ---------- Face by OXY — Design tokens ---------- */
:root {
  --apricot: #FEF5EE;
  --soft-peach: #FAE0CC;
  --warm-peach: #E8C4A8;
  --sage: #8AAE88;
  --sage-dark: #6e8f6d;
  --forest: #2E3424;
  --forest-60: #5a6350;
  --white: #FFFFFF;

  --f-display: 'Cormorant Garamond', serif;
  --f-body: 'Jost', system-ui, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--f-body);
  font-weight: 300;
  color: var(--forest);
  background: var(--apricot);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- Type utilities ---------- */
.display { font-family: var(--f-display); font-weight: 300; line-height: 1.02; letter-spacing: -.01em; }
.heading { font-family: var(--f-display); font-weight: 400; line-height: 1.08; letter-spacing: -.005em; }
.quote   { font-family: var(--f-display); font-style: italic; font-weight: 400; }
.label   { font-family: var(--f-body); font-weight: 400; text-transform: uppercase; letter-spacing: .18em; font-size: 11px; }
.label-md{ font-family: var(--f-body); font-weight: 400; text-transform: uppercase; letter-spacing: .2em; font-size: 12px; }
.body    { font-family: var(--f-body); font-weight: 300; font-size: 16px; line-height: 1.6; color: var(--forest-60); }
.body-lg { font-family: var(--f-body); font-weight: 300; font-size: 18px; line-height: 1.55; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--f-body); font-weight: 500; text-transform: uppercase;
  letter-spacing: .18em; font-size: 11px;
  padding: 18px 28px; border-radius: 0;
  transition: all .3s var(--ease);
  cursor: pointer; white-space: nowrap;
}
.btn-sage { background: var(--sage); color: var(--white); }
.btn-sage:hover { background: var(--sage-dark); transform: translateY(-1px); }
.btn-forest { background: var(--forest); color: var(--apricot); }
.btn-forest:hover { background: #1f2417; }
.btn-ghost-dark { background: transparent; color: var(--apricot); border: 1px solid rgba(254,245,238,.35); }
.btn-ghost-dark:hover { border-color: var(--apricot); }
.btn-ghost-light { background: transparent; color: var(--forest); border: 1px solid rgba(46,52,36,.2); }
.btn-ghost-light:hover { border-color: var(--forest); }
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Layout ---------- */
.container { max-width: 1320px; margin: 0 auto; padding: 0 48px; }
.container-narrow { max-width: 980px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 780px) {
  .container, .container-narrow { padding: 0 24px; }
}

/* ---------- Promo banner ---------- */
.promo {
  background: var(--forest);
  color: var(--apricot);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  padding: 10px 0;
  text-align: center;
  overflow: hidden;
}
.promo .marquee {
  display: inline-flex; gap: 48px;
  animation: marq 38s linear infinite;
  white-space: nowrap;
}
.promo .dot { color: var(--sage); }
@keyframes marq {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--apricot);
  border-bottom: 1px solid var(--soft-peach);
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 48px;
}
.nav .logo {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--forest);
  line-height: 1;
  display: flex; align-items: baseline; gap: 8px;
}
.nav .logo .ital { font-style: italic; font-weight: 400; }
.nav .logo .dot { width: 5px; height: 5px; background: var(--sage); border-radius: 50%; display: inline-block; transform: translateY(-4px); }

.nav-links {
  display: flex; gap: 22px; align-items: center; flex-wrap: nowrap;
}
.nav-links a {
  font-family: var(--f-body); font-weight: 400;
  text-transform: uppercase; font-size: 11px; letter-spacing: .12em;
  color: var(--forest); position: relative; padding: 6px 0;
  white-space: nowrap;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--sage); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--sage); color: var(--white);
  padding: 12px 20px; font-weight: 500; text-transform: uppercase;
  font-size: 11px; letter-spacing: .12em;
  white-space: nowrap; flex: none;
  transition: background .3s var(--ease);
}
.nav-cta:hover { background: var(--sage-dark); }
.nav-inner { gap: 20px; }
@media (max-width: 1080px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 10px; letter-spacing: .08em; }
}
@media (max-width: 960px) {
  .nav-inner { padding: 18px 24px; }
  .nav-links { display: none; }
}

/* ---------- Hero (editorial variant) ---------- */
.hero {
  background: var(--forest);
  color: var(--apricot);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 96px 48px 120px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 72px;
  align-items: end;
  min-height: 78vh;
}
.hero-kicker {
  display: flex; align-items: center; gap: 14px;
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--soft-peach); opacity: .85;
  margin-bottom: 28px;
}
.hero-kicker .bar { width: 32px; height: 1px; background: var(--warm-peach); }
.hero h1 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(54px, 7.5vw, 108px);
  line-height: .96;
  letter-spacing: -.015em;
  color: var(--apricot);
  margin: 0 0 28px;
}
.hero h1 em {
  font-style: italic; font-weight: 400;
  color: var(--warm-peach);
}
.hero-sub {
  font-family: var(--f-body); font-weight: 300;
  font-size: 17px; line-height: 1.55;
  color: var(--soft-peach); opacity: .85;
  max-width: 460px;
  margin: 0 0 40px;
}
.hero-ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

.hero-side {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--warm-peach);
  overflow: hidden;
}
.hero-side .portrait-placeholder {
  position: absolute; inset: 0;
  background: 
    repeating-linear-gradient(135deg, rgba(46,52,36,.04) 0 12px, rgba(46,52,36,.08) 12px 24px),
    linear-gradient(180deg, #E8C4A8 0%, #D9AE8F 100%);
}
.hero-side .portrait-label {
  position: absolute; left: 20px; bottom: 20px;
  color: var(--forest); font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px; letter-spacing: .1em;
  background: rgba(254,245,238,.7);
  padding: 6px 10px;
}
.hero-tag {
  position: absolute; top: 24px; right: 24px;
  background: var(--sage); color: var(--white);
  padding: 10px 14px; font-size: 10px; letter-spacing: .2em;
  text-transform: uppercase; font-weight: 500;
}

.hero-trust {
  display: flex; gap: 48px;
  padding: 28px 0;
  border-top: 1px solid rgba(250,224,204,.15);
  margin-top: 48px;
}
.hero-trust .item { display: flex; flex-direction: column; gap: 4px; }
.hero-trust .num { font-family: var(--f-display); font-size: 32px; font-weight: 300; color: var(--apricot); line-height: 1; }
.hero-trust .cap { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--soft-peach); opacity: .7; }

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; padding: 64px 24px 80px; }
  .hero-side { aspect-ratio: 4/5; }
  .hero-trust { flex-wrap: wrap; gap: 28px; }
}

/* ---------- Scroll hint ---------- */
.scroll-hint {
  position: absolute; bottom: 32px; left: 48px;
  display: flex; align-items: center; gap: 12px;
  font-size: 10px; letter-spacing: .24em;
  text-transform: uppercase; color: var(--soft-peach); opacity: .7;
}
.scroll-hint .line {
  width: 42px; height: 1px; background: var(--warm-peach);
  position: relative; overflow: hidden;
}
.scroll-hint .line::after {
  content: ''; position: absolute; inset: 0;
  background: var(--apricot);
  animation: scrollL 2.4s var(--ease) infinite;
}
@keyframes scrollL {
  0%,15% { transform: translateX(-100%); }
  70%,100% { transform: translateX(100%); }
}
@media (max-width: 780px) { .scroll-hint { display: none; } }

/* ---------- Section framing ---------- */
.section { padding: 140px 0; position: relative; }
.section.bg-apricot { background: var(--apricot); }
.section.bg-white { background: var(--white); }
.section.bg-peach { background: var(--soft-peach); }
.section.bg-forest { background: var(--forest); color: var(--apricot); }

.section-intro {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px;
  align-items: start; margin-bottom: 72px;
}
.section-intro .eyebrow {
  display: flex; align-items: center; gap: 14px;
}
.section-intro .eyebrow .bar { width: 28px; height: 1px; background: var(--sage); }
.section-intro h2 {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.02; letter-spacing: -.01em;
  margin: 0;
  color: inherit;
}
.section-intro h2 em { font-style: italic; color: var(--sage); }
.section.bg-forest .section-intro h2 em { color: var(--warm-peach); }
.section-intro p { max-width: 520px; font-size: 18px; line-height: 1.55; }
.section.bg-forest .body { color: var(--soft-peach); opacity: .78; }

@media (max-width: 860px) {
  .section { padding: 96px 0; }
  .section-intro { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
}

/* ---------- Problem quote ---------- */
.problem {
  background: var(--apricot);
  padding: 180px 0;
  position: relative;
}
.problem .inner { max-width: 1100px; margin: 0 auto; padding: 0 48px; }
.problem .eyebrow {
  display: flex; align-items: center; gap: 14px; margin-bottom: 40px;
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--forest-60);
}
.problem .eyebrow .bar { width: 28px; height: 1px; background: var(--sage); }
.problem-quote {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(42px, 5.4vw, 78px);
  line-height: 1.08;
  color: var(--forest);
  letter-spacing: -.01em;
  max-width: 980px;
}
.problem-quote em { font-style: italic; color: var(--sage); font-weight: 400; }
.problem-attr {
  margin-top: 48px; font-size: 12px;
  letter-spacing: .24em; text-transform: uppercase; color: var(--forest-60);
}
@media (max-width: 780px) {
  .problem { padding: 110px 0; }
  .problem .inner { padding: 0 24px; }
}

/* ---------- Method (3-column) ---------- */
.method-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  background: var(--warm-peach);
  margin-top: 32px;
}
.method-card {
  background: var(--apricot);
  padding: 56px 40px 48px;
  position: relative;
  transition: background .4s var(--ease);
}
.method-card:hover { background: var(--white); }
.method-card .num {
  font-family: var(--f-display); font-weight: 300;
  font-size: 18px; color: var(--sage);
  letter-spacing: .02em;
  margin-bottom: 100px;
}
.method-card h3 {
  font-family: var(--f-display); font-weight: 400;
  font-size: 32px; line-height: 1.1;
  margin: 0 0 20px;
  color: var(--forest);
}
.method-card p { font-size: 15px; line-height: 1.6; color: var(--forest-60); margin: 0; }
.method-card .glyph {
  position: absolute; top: 40px; right: 40px;
  width: 48px; height: 48px;
  border: 1px solid var(--warm-peach); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-style: italic;
  color: var(--sage); font-size: 22px;
}
@media (max-width: 860px) {
  .method-grid { grid-template-columns: 1fr; gap: 1px; }
  .method-card .num { margin-bottom: 48px; }
}

/* ---------- Process timeline ---------- */
.process {
  background: var(--forest); color: var(--apricot);
}
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  background: rgba(254,245,238,.08);
  margin-top: 48px;
}
.process-step {
  background: var(--forest);
  padding: 40px 32px 44px;
  position: relative;
}
.process-step .time {
  font-family: var(--f-display); font-size: 14px; font-style: italic;
  color: var(--warm-peach); margin-bottom: 28px;
}
.process-step .num {
  font-family: var(--f-display); font-weight: 300;
  font-size: 56px; line-height: 1; color: var(--apricot);
  margin-bottom: 24px;
  opacity: .95;
}
.process-step h4 {
  font-family: var(--f-display); font-weight: 400;
  font-size: 22px; line-height: 1.15;
  margin: 0 0 14px;
}
.process-step p {
  font-size: 13px; line-height: 1.6;
  color: var(--soft-peach); opacity: .72;
  margin: 0;
}
@media (max-width: 960px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* ---------- Before/after slider ---------- */
.ba-wrap {
  position: relative;
  aspect-ratio: 16/10;
  max-width: 1100px;
  margin: 32px auto 0;
  overflow: hidden;
  background: var(--warm-peach);
  user-select: none;
  cursor: ew-resize;
}
.ba-layer { position: absolute; inset: 0; }
.ba-before {
  background: 
    repeating-linear-gradient(45deg, rgba(46,52,36,.06) 0 10px, rgba(46,52,36,.1) 10px 20px),
    linear-gradient(180deg, #E8C4A8, #C89D7E);
}
.ba-after {
  background: 
    repeating-linear-gradient(45deg, rgba(254,245,238,.3) 0 10px, rgba(254,245,238,.5) 10px 20px),
    linear-gradient(180deg, #FAE0CC, #FEF5EE);
  clip-path: inset(0 50% 0 0);
}
.ba-label {
  position: absolute; top: 20px;
  font-size: 10px; letter-spacing: .24em; text-transform: uppercase;
  padding: 8px 14px;
  background: rgba(46,52,36,.85);
  color: var(--apricot);
}
.ba-label.before { left: 20px; }
.ba-label.after { right: 20px; background: rgba(254,245,238,.9); color: var(--forest); }
.ba-handle {
  position: absolute; top: 0; bottom: 0;
  width: 2px; background: var(--apricot);
  left: 50%; transform: translateX(-50%);
  pointer-events: none;
}
.ba-handle .knob {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--sage);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 18px;
  box-shadow: 0 10px 30px rgba(46,52,36,.25);
}
.ba-note {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  text-align: center; color: var(--forest-60);
  margin-top: 24px;
}

/* ---------- About ---------- */
.about {
  background: var(--apricot);
}
.about-grid {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px;
  align-items: center;
}
.about-photo {
  aspect-ratio: 4/5;
  background: var(--soft-peach);
  position: relative;
  overflow: hidden;
}
.about-photo .fill {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(46,52,36,.05) 0 14px, rgba(46,52,36,.09) 14px 28px),
    linear-gradient(180deg, #FAE0CC, #E8C4A8);
}
.about-photo .cap {
  position: absolute; left: 16px; bottom: 16px;
  background: rgba(254,245,238,.85);
  padding: 6px 10px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px; color: var(--forest);
}
.about-credentials {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 32px 0;
}
.about-credentials .chip {
  border: 1px solid var(--warm-peach);
  padding: 8px 14px;
  font-size: 10px; letter-spacing: .2em;
  text-transform: uppercase; font-weight: 400;
  color: var(--forest-60);
}
.about-sig {
  font-family: var(--f-display); font-style: italic;
  font-size: 28px; color: var(--sage);
  margin-top: 32px;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  background: var(--warm-peach);
  margin-top: 32px;
}
.price-card {
  background: var(--apricot);
  padding: 48px 40px;
  display: flex; flex-direction: column;
  position: relative;
  transition: background .4s var(--ease);
}
.price-card.featured { background: var(--forest); color: var(--apricot); }
.price-card.featured .price, .price-card.featured h3 { color: var(--apricot); }
.price-card.featured p { color: var(--soft-peach); opacity: .8; }
.price-card .tier {
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 28px;
}
.price-card.featured .tier { color: var(--warm-peach); }
.price-card h3 {
  font-family: var(--f-display); font-weight: 400;
  font-size: 28px; margin: 0 0 24px; line-height: 1.1;
}
.price-card .price {
  font-family: var(--f-display); font-weight: 300;
  font-size: 72px; line-height: 1; letter-spacing: -.02em;
  color: var(--forest); margin-bottom: 6px;
}
.price-card .price sup { font-size: 24px; font-style: italic; vertical-align: super; font-weight: 400; margin-right: 4px; }
.price-card .per { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--forest-60); margin-bottom: 28px; }
.price-card.featured .per { color: var(--soft-peach); opacity: .7; }
.price-card ul {
  list-style: none; padding: 0; margin: 0 0 36px;
  font-size: 14px; line-height: 1.7;
}
.price-card li {
  padding: 10px 0;
  border-top: 1px solid rgba(46,52,36,.1);
  display: flex; align-items: flex-start; gap: 10px;
}
.price-card.featured li { border-color: rgba(254,245,238,.12); }
.price-card li::before {
  content: '—'; color: var(--sage); flex: none; margin-top: 1px;
}
.price-card.featured li::before { color: var(--warm-peach); }
.price-card .badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--sage); color: var(--white);
  padding: 6px 10px; font-size: 9px; letter-spacing: .22em; text-transform: uppercase; font-weight: 500;
}
.price-card .btn { margin-top: auto; }
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 1px; }
}

/* ---------- Testimonials ---------- */
.testimonials { background: var(--soft-peach); }
.testimonial-track {
  display: flex; gap: 24px;
  transition: transform .6s var(--ease);
  padding-bottom: 8px;
}
.testimonial-viewport { overflow: hidden; margin-top: 40px; }
.testimonial {
  flex: 0 0 calc(50% - 12px);
  background: var(--apricot);
  padding: 48px 44px;
  border: 1px solid var(--warm-peach);
}
.testimonial .stars { color: var(--sage); font-size: 14px; letter-spacing: 4px; margin-bottom: 20px; }
.testimonial blockquote {
  font-family: var(--f-display); font-style: italic;
  font-weight: 400; font-size: 24px;
  line-height: 1.35; color: var(--forest);
  margin: 0 0 28px;
  text-wrap: pretty;
}
.testimonial .who {
  display: flex; align-items: center; gap: 14px;
  padding-top: 24px; border-top: 1px solid var(--warm-peach);
}
.testimonial .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--warm-peach);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-style: italic; color: var(--forest);
}
.testimonial .name { font-size: 13px; font-weight: 400; }
.testimonial .meta { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--forest-60); }
.test-controls {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 32px;
}
.test-controls .counter { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--forest-60); }
.test-controls .arrows { display: flex; gap: 8px; }
.test-controls .arrows button {
  width: 48px; height: 48px;
  border: 1px solid var(--warm-peach);
  background: transparent; color: var(--forest);
  transition: all .3s var(--ease);
}
.test-controls .arrows button:hover { background: var(--forest); color: var(--apricot); border-color: var(--forest); }
@media (max-width: 780px) {
  .testimonial { flex: 0 0 100%; padding: 36px 28px; }
  .testimonial blockquote { font-size: 20px; }
}

/* ---------- FAQ ---------- */
.faq-list { border-top: 1px solid var(--warm-peach); }
.faq-item {
  border-bottom: 1px solid var(--warm-peach);
}
.faq-q {
  width: 100%; text-align: left;
  padding: 28px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  font-family: var(--f-display); font-weight: 400;
  font-size: 22px; color: var(--forest);
  transition: color .3s var(--ease);
}
.faq-q:hover { color: var(--sage); }
.faq-q .plus {
  font-family: var(--f-body); font-weight: 300;
  font-size: 24px; color: var(--sage);
  transition: transform .4s var(--ease);
  line-height: 1; flex: none;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .5s var(--ease), padding .4s var(--ease);
  color: var(--forest-60);
  font-size: 15px; line-height: 1.65;
  max-width: 680px;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 0 32px;
}

/* ---------- Booking ---------- */
.booking { background: var(--forest); color: var(--apricot); }
.booking-card {
  background: var(--apricot); color: var(--forest);
  max-width: 880px; margin: 48px auto 0;
  padding: 56px;
}
.booking-steps {
  display: flex; gap: 8px; margin-bottom: 40px;
}
.booking-steps .step {
  flex: 1; height: 3px; background: var(--soft-peach);
  position: relative; overflow: hidden;
}
.booking-steps .step.active { background: var(--sage); }
.booking-steps .step.done { background: var(--forest); }
.booking-step-title {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 28px; flex-wrap: wrap; gap: 16px;
}
.booking-step-title .label { color: var(--forest-60); }
.booking-step-title h3 {
  font-family: var(--f-display); font-weight: 400;
  font-size: 34px; margin: 0; line-height: 1.1;
}

.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.service-opt {
  border: 1px solid var(--warm-peach);
  padding: 24px;
  cursor: pointer;
  transition: all .25s var(--ease);
  display: flex; flex-direction: column; gap: 10px;
  background: transparent;
  text-align: left;
}
.service-opt:hover { border-color: var(--sage); }
.service-opt.active {
  border-color: var(--sage);
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--sage);
}
.service-opt .s-name { font-family: var(--f-display); font-size: 22px; font-weight: 400; }
.service-opt .s-meta { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--forest-60); }
.service-opt .s-price { font-family: var(--f-display); font-size: 20px; color: var(--sage); font-style: italic; }

.cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
  margin-bottom: 24px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  background: var(--soft-peach);
  color: var(--forest);
  cursor: pointer;
  transition: all .2s var(--ease);
  font-weight: 400;
}
.cal-day.disabled { background: transparent; color: var(--forest-60); opacity: .35; cursor: not-allowed; }
.cal-day.available:hover { background: var(--warm-peach); }
.cal-day.selected { background: var(--sage); color: var(--white); }
.cal-label-row {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
  margin-bottom: 8px;
}
.cal-label-row div {
  text-align: center; font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--forest-60);
}

.slot-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  margin-top: 24px;
}
.slot {
  padding: 14px; text-align: center;
  border: 1px solid var(--warm-peach);
  font-size: 12px; letter-spacing: .1em;
  cursor: pointer;
  transition: all .2s var(--ease);
  background: transparent;
  font-family: var(--f-body);
}
.slot:hover:not(.taken) { border-color: var(--sage); }
.slot.selected { background: var(--sage); color: var(--white); border-color: var(--sage); }
.slot.taken { opacity: .3; text-decoration: line-through; cursor: not-allowed; }

.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--forest-60); margin-bottom: 8px; }
.form-field input, .form-field textarea {
  width: 100%; padding: 14px 0;
  background: transparent; border: none; border-bottom: 1px solid var(--warm-peach);
  font-family: var(--f-body); font-size: 15px; color: var(--forest);
  outline: none; transition: border-color .3s var(--ease);
  font-weight: 300;
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--sage); }
.form-field textarea { resize: vertical; min-height: 80px; }

.booking-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--warm-peach);
  gap: 16px;
}
.booking-nav .summary {
  font-size: 12px; color: var(--forest-60); letter-spacing: .1em;
}
.booking-nav .summary strong { color: var(--forest); font-weight: 400; }

.booking-confirm {
  text-align: center;
  padding: 40px 0;
}
.booking-confirm .check {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--sage); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 24px;
}
.booking-confirm h3 {
  font-family: var(--f-display); font-weight: 400;
  font-size: 42px; line-height: 1.1; margin: 0 0 14px;
}
.booking-confirm p { color: var(--forest-60); max-width: 420px; margin: 0 auto 28px; }
.booking-confirm .details {
  display: inline-flex; flex-direction: column; gap: 6px;
  padding: 20px 28px; background: var(--soft-peach);
  font-size: 13px;
  margin-bottom: 28px;
}

@media (max-width: 680px) {
  .booking-card { padding: 32px 24px; }
  .service-grid { grid-template-columns: 1fr; }
  .slot-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 96px; right: 24px;
  z-index: 60;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px rgba(46,52,36,.25);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 16px 34px rgba(46,52,36,.3);
}
@media (max-width: 680px) {
  .whatsapp-float { bottom: 84px; right: 16px; width: 50px; height: 50px; }
}

/* ---------- Sticky book bar ---------- */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 40;
  background: var(--forest);
  color: var(--apricot);
  padding: 14px 32px;
  display: flex; justify-content: space-between; align-items: center;
  transform: translateY(110%);
  transition: transform .5s var(--ease);
  border-top: 1px solid var(--sage);
}
.sticky-bar.show { transform: translateY(0); }
.sticky-bar .left { display: flex; align-items: center; gap: 14px; }
.sticky-bar .pulse {
  width: 8px; height: 8px; background: var(--sage); border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(138,174,136,.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(138,174,136,.6); }
  70% { box-shadow: 0 0 0 10px rgba(138,174,136,0); }
  100% { box-shadow: 0 0 0 0 rgba(138,174,136,0); }
}
.sticky-bar .msg { font-size: 12px; letter-spacing: .1em; }
.sticky-bar .msg strong { font-family: var(--f-display); font-weight: 400; font-style: italic; font-size: 16px; color: var(--warm-peach); letter-spacing: 0; }
@media (max-width: 680px) {
  .sticky-bar { padding: 10px 16px; }
  .sticky-bar .msg { display: none; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--soft-peach);
  color: var(--forest);
  padding: 96px 0 40px;
  border-top: 2px solid var(--warm-peach);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 72px;
}
.footer h5 {
  font-size: 10px; letter-spacing: .24em; text-transform: uppercase;
  font-weight: 400; margin: 0 0 20px; color: var(--forest-60);
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { padding: 6px 0; font-size: 14px; }
.footer a:hover { color: var(--sage); }
.footer .wordmark {
  font-family: var(--f-display); font-weight: 300;
  font-size: 56px; line-height: 1; margin: 0 0 16px;
}
.footer .wordmark em { font-style: italic; }
.footer .tagline { font-size: 14px; color: var(--forest-60); max-width: 280px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid var(--warm-peach);
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--forest-60);
}
.socials { display: flex; gap: 6px; margin-top: 16px; }
.socials a {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--sage); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s var(--ease);
}
.socials a:hover { background: var(--sage-dark); }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}

/* ---------- Stat band ---------- */
.stat-band {
  background: var(--warm-peach);
  padding: 48px 0;
  border-top: 1px solid rgba(46,52,36,.08);
  border-bottom: 1px solid rgba(46,52,36,.08);
}
.stat-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 48px; align-items: center;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat .num {
  font-family: var(--f-display); font-weight: 300;
  font-size: 48px; line-height: 1; color: var(--forest);
}
.stat .num em { font-style: italic; color: var(--sage); }
.stat .cap { font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--forest-60); }
@media (max-width: 860px) {
  .stat-row { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

/* ---------- Tweaks panel ---------- */
.tweaks-panel {
  position: fixed; bottom: 80px; right: 20px;
  z-index: 100;
  background: var(--forest);
  color: var(--apricot);
  padding: 20px;
  width: 280px;
  border: 1px solid var(--sage);
  font-family: var(--f-body);
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
  display: none;
}
.tweaks-panel.show { display: block; }
.tweaks-panel h4 {
  font-family: var(--f-display); font-weight: 400;
  font-size: 20px; margin: 0 0 16px;
  letter-spacing: .02em;
}
.tweaks-panel .tweak { margin-bottom: 16px; }
.tweaks-panel label { display: block; font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: var(--warm-peach); margin-bottom: 8px; }
.tweak-options { display: flex; gap: 4px; flex-wrap: wrap; }
.tweak-opt {
  padding: 8px 12px; font-size: 10px;
  background: transparent; color: var(--apricot);
  border: 1px solid rgba(254,245,238,.2);
  cursor: pointer;
  transition: all .2s var(--ease);
  text-transform: uppercase; letter-spacing: .14em;
}
.tweak-opt.active { background: var(--sage); border-color: var(--sage); color: var(--white); }
.tweak-opt:hover { border-color: var(--apricot); }
.tweak-toggle {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px;
}
.tweak-toggle .t { width: 36px; height: 20px; border-radius: 10px; background: rgba(254,245,238,.15); position: relative; transition: background .25s var(--ease); }
.tweak-toggle .t::after {
  content: ''; position: absolute; top: 2px; left: 2px;
  width: 16px; height: 16px; background: var(--apricot); border-radius: 50%;
  transition: transform .25s var(--ease);
}
.tweak-toggle.on .t { background: var(--sage); }
.tweak-toggle.on .t::after { transform: translateX(16px); }
.tweak-input {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid rgba(254,245,238,.3);
  padding: 6px 0; color: var(--apricot);
  font-family: var(--f-body); font-size: 12px; outline: none;
}
.tweak-input:focus { border-color: var(--sage); }

/* ---------- Hero variants ---------- */
.hero.variant-split .hero-inner { grid-template-columns: 1fr 1fr; gap: 0; padding: 0; min-height: 82vh; }
.hero.variant-split .hero-text { padding: 96px 64px; display: flex; flex-direction: column; justify-content: center; }
.hero.variant-split .hero-side { aspect-ratio: auto; }
.hero.variant-split .hero-trust { border-top: 1px solid rgba(250,224,204,.15); margin-top: 40px; }

.hero.variant-centered .hero-inner { grid-template-columns: 1fr; text-align: center; align-items: center; padding: 120px 48px 140px; min-height: auto; }
.hero.variant-centered .hero-kicker { justify-content: center; }
.hero.variant-centered .hero-sub { max-width: 560px; margin: 0 auto 40px; }
.hero.variant-centered .hero-ctas { justify-content: center; }
.hero.variant-centered .hero-side { display: none; }
.hero.variant-centered .hero-trust { justify-content: center; margin: 72px auto 0; max-width: 900px; }

@media (max-width: 960px) {
  .hero.variant-split .hero-inner { grid-template-columns: 1fr; }
  .hero.variant-split .hero-text { padding: 64px 24px; }
}
