/* bodylicious — homepage styles */

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 90; transition: background .3s, box-shadow .3s, padding .3s;
  padding: 18px 0;
}
.nav.solid { background: rgba(247,244,238,0.86); backdrop-filter: blur(14px) saturate(1.2); box-shadow: 0 1px 0 var(--line-2); padding: 12px 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { line-height: 1; }
.nav .bl-name { color: var(--ink); transition: color .3s; }
.nav .bl-tag { color: var(--olive); transition: color .3s; }
.nav.on-hero:not(.solid) .bl-name { color: #fff; }
.nav.on-hero:not(.solid) .bl-tag { color: rgba(255,255,255,0.82); }
.nav.on-hero:not(.solid) .nav-link { color: #fff; }
.nav.on-hero:not(.solid) .nav-burger { color: #fff; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link { padding: 9px 15px; border-radius: 999px; font-size: 14.5px; font-weight: 500; color: var(--ink-soft); transition: all .18s; }
.nav-link:hover { color: var(--green); background: rgba(47,80,67,0.07); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-burger { display: none; background: none; border: none; color: var(--ink); padding: 6px; }

@media (max-width: 960px) {
  .nav-links, .nav-actions .btn { display: none; }
  .nav-burger { display: inline-flex; }
}
.nav-mobile { position: fixed; inset: 0; z-index: 95; background: var(--bg); padding: 84px 28px 28px; display: flex; flex-direction: column; gap: 6px; animation: bkIn .25s ease; }
.nav-mobile a { font-family: var(--serif); font-size: 30px; padding: 12px 0; border-bottom: 1px solid var(--line-2); color: var(--ink); }
.nav-mobile .btn { margin-top: 22px; }
.nav-mobile-close { position: absolute; top: 20px; right: 24px; background: none; border: none; font-size: 32px; color: var(--ink); line-height: 1; }

/* ---------- hero ---------- */
/* ---------- hero (slider) ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; margin-top: -84px; padding-top: 84px; overflow: hidden; isolation: isolate; }

.hero-stage { position: absolute; inset: 0; z-index: 0; }
.hero-bg { position: absolute; inset: 0; opacity: 0; background-color: #2a3a33; background-size: cover; background-position: center; background-repeat: no-repeat;
  transform: scale(1.1) translate(calc(var(--px,0) * 18px), calc(var(--py,0) * 14px));
  transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.hero-bg.active { opacity: 1; }
.hero-bg.no-img.tone-forest {
  background-image:
    radial-gradient(55% 75% at 50% 12%, rgba(104,134,118,0.5), transparent 62%),
    radial-gradient(82% 92% at 86% 92%, rgba(8,15,11,0.85), transparent 55%),
    radial-gradient(40% 50% at 22% 30%, rgba(190,142,94,0.2), transparent 60%),
    linear-gradient(160deg, #2a3a33, #131e1a); }
.hero-bg-overlay { position: absolute; inset: 0;
  background:
    radial-gradient(62% 72% at 50% 46%, rgba(12,20,15,0.52), transparent 72%),
    linear-gradient(180deg, rgba(12,20,15,0.5) 0%, rgba(12,20,15,0.14) 38%, rgba(12,20,15,0.58) 100%); }

.hero-topscrim { position: absolute; top: 0; left: 0; right: 0; height: 210px; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(13,22,17,0.4), transparent); }

.hero-inner { position: relative; z-index: 3; width: 100%; display: flex; justify-content: center; padding: 120px 0 96px; }
.hero-content { max-width: 880px; text-align: center; display: flex; flex-direction: column; align-items: center;
  transform: translate(calc(var(--px,0) * -22px), calc(var(--py,0) * -14px)); transition: transform .25s ease; }
.hero-content > * { animation: heroIn .85s cubic-bezier(.2,.7,.2,1) both; }
.hero-content > *:nth-child(1) { animation-delay: .04s; }
.hero-content > *:nth-child(2) { animation-delay: .12s; }
.hero-content > *:nth-child(3) { animation-delay: .2s; }
.hero-content > *:nth-child(4) { animation-delay: .28s; }
@keyframes heroIn { from { opacity: 0; transform: translateY(24px); filter: blur(6px); } to { opacity: 1; transform: none; filter: none; } }

.hero-eyebrow { color: rgba(255,255,255,0.92); justify-content: center; }
.hero-eyebrow::before { background: rgba(255,255,255,0.7); }

.hero-title { display: block; width: 100%; text-align: center; margin: 22px 0 0; font-family: var(--serif); font-weight: 600;
  font-size: clamp(38px, 6vw, 76px); line-height: 1.08; letter-spacing: -0.015em;
  --mx: 50%; --my: 42%;
  background: radial-gradient(circle 320px at var(--mx) var(--my), #ffffff 0%, rgba(255,255,255,0.92) 32%, rgba(255,255,255,0.64) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
  filter: drop-shadow(0 6px 26px rgba(0,0,0,0.3)); }
.hero-line { display: block; }
.hero-line:nth-child(2) { font-style: italic; }

.hero-sub { color: rgba(255,255,255,0.92); font-size: clamp(17px, 2.3vw, 21px); line-height: 1.5;
  max-width: 600px; margin: 28px 0 0; text-align: center; text-shadow: 0 1px 16px rgba(0,0,0,0.35); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 36px; }
.hero-btn-primary { background: #ffffff; color: var(--green-deep); box-shadow: 0 12px 32px rgba(0,0,0,0.2); }
.hero-btn-primary:hover { background: #ffffff; transform: translateY(-2px); box-shadow: 0 18px 44px rgba(0,0,0,0.28); }
.hero-btn-ghost { background: rgba(255,255,255,0.13); color: #fff; border: 1px solid rgba(255,255,255,0.5); backdrop-filter: blur(6px); }
.hero-btn-ghost:hover { background: rgba(255,255,255,0.24); transform: translateY(-2px); }

.hero-flash { position: absolute; inset: 0; z-index: 6; background: #fff; opacity: 0; pointer-events: none; transition: opacity .5s ease; }
.hero-flash[data-on="true"] { opacity: 1; }

.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 7; width: 54px; height: 54px;
  border-radius: 50%; background: rgba(255,255,255,0.13); border: 1px solid rgba(255,255,255,0.4); color: #fff;
  display: grid; place-items: center; backdrop-filter: blur(6px); transition: background .2s, transform .2s; }
.hero-arrow.left { left: 30px; } .hero-arrow.right { right: 30px; }
.hero-arrow:hover { background: rgba(255,255,255,0.26); }
.hero-arrow:active { transform: translateY(-50%) scale(0.94); }
.hero-dots { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 7; display: flex; gap: 10px; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.45); border: none; cursor: pointer; transition: all .3s; padding: 0; }
.hero-dot.active { background: #fff; width: 32px; border-radius: 6px; }

@media (max-width: 860px) {
  .hero { min-height: 88vh; }
  .hero-arrow { display: none; }
  .hero-inner { padding: 110px 0 90px; }
  .hero-content { transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg, .hero-content, .hero-line { transform: none !important; transition: none; }
  .hero-content > * { animation: none; }
}

/* ---------- trust ---------- */
.trust { background: var(--green-deep); color: #fff; }
.trust-rail { display: flex; gap: 38px; padding: 22px 32px; overflow-x: auto; justify-content: center; }
.trust-item { display: inline-flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 500; white-space: nowrap; color: rgba(255,255,255,0.92); }
.trust-item svg { color: var(--rose); }
@media (max-width: 760px) { .trust-rail { justify-content: flex-start; gap: 26px; } }

/* ---------- section heads ---------- */
.sec-head { max-width: 620px; margin-bottom: 48px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 { font-size: clamp(32px, 5vw, 52px); margin-top: 16px; }
.sec-lead { font-size: 18px; color: var(--ink-soft); line-height: 1.55; margin-top: 18px; }

/* ---------- services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 960px) { .svc-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .svc-grid { grid-template-columns: 1fr; } }
.svc-card { overflow: hidden; display: flex; flex-direction: column; }
.svc-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.svc-body { padding: 22px 24px 24px; position: relative; flex: 1; display: flex; flex-direction: column; }
.svc-icon { position: absolute; top: -24px; left: 24px; width: 48px; height: 48px; border-radius: 14px; background: var(--surface); box-shadow: var(--shadow-sm); display: grid; place-items: center; color: var(--green); }
.svc-body h3 { font-size: 23px; margin-top: 16px; }
.svc-body p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.5; margin-top: 8px; }
.svc-link { margin-top: auto; padding-top: 16px; display: inline-flex; align-items: center; gap: 7px; background: none; border: none; color: var(--green-mid); font-family: var(--sans); font-weight: 600; font-size: 14.5px; align-self: flex-start; transition: gap .18s; }
.svc-link:hover { gap: 12px; color: var(--green-deep); }

/* ---------- vision ---------- */
.vision { background: var(--bg-2); }
.vision-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
@media (max-width: 880px) { .vision-grid { grid-template-columns: 1fr; gap: 36px; } }
.vision-text h2 { font-size: clamp(32px, 5vw, 50px); margin: 16px 0 20px; }
.vision-text p { color: var(--ink-soft); font-size: 17px; line-height: 1.6; }
.vision-list { list-style: none; padding: 0; margin: 26px 0 0; display: flex; flex-direction: column; gap: 14px; }
.vision-list li { display: flex; align-items: center; gap: 12px; font-size: 16px; font-weight: 500; }
.vision-list svg { color: var(--green); flex-shrink: 0; }
.vision-gallery { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 16px; height: 520px; }
.vision-gallery .ph, .vision-gallery img { border-radius: var(--r-lg); width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 880px) { .vision-gallery { height: 400px; } }

/* brand strip */
.brand-strip { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--line); display: flex; flex-direction: column; align-items: center; gap: 22px; }
.brand-strip-label { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.brand-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.brand-chip { font-family: var(--sans); font-size: 15px; font-weight: 600; color: var(--green-deep); letter-spacing: 0.01em; white-space: nowrap; padding: 10px 20px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); transition: border-color .2s, color .2s, transform .2s; }
.brand-chip:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }
.brand-chip:last-child { background: var(--green-soft); border-color: transparent; color: var(--green-deep); }

/* ---------- hioo ---------- */
.hioo-cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 720px) { .hioo-cat-grid { grid-template-columns: 1fr; } }
.hioo-cat { overflow: hidden; display: flex; flex-direction: column; text-align: left; color: inherit; }
img.hioo-cat-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; background: var(--cream); }
.hioo-cat-img { width: 100%; }
.hioo-cat-body { padding: 26px 28px 28px; position: relative; flex: 1; display: flex; flex-direction: column; }
.hioo-cat-no { position: absolute; top: 22px; right: 28px; font-family: var(--serif); font-size: 46px; font-weight: 600; line-height: 1; color: var(--green-soft); }
.hioo-cat-icon { width: 48px; height: 48px; border-radius: 14px; background: var(--green-soft); color: var(--green); display: grid; place-items: center; margin-bottom: 16px; }
.hioo-cat-body h3 { font-size: 24px; line-height: 1.18; max-width: 84%; }
.hioo-cat-body p { color: var(--ink-soft); font-size: 15px; line-height: 1.55; margin: 12px 0 20px; }
.hioo-cat-body .pill { align-self: flex-start; margin-top: auto; }
.hioo-foot { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 40px; }

/* ---------- extensions ---------- */
.extensions { background: var(--green-deep); color: #fff; }
.ext-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 880px) { .ext-grid { grid-template-columns: 1fr; gap: 40px; } }
.ext-text h2 { color: #fff; font-size: clamp(32px, 5vw, 52px); margin: 16px 0 20px; }
.ext-text > p { color: rgba(255,255,255,0.82); font-size: 17px; line-height: 1.6; }
.ext-text .eyebrow { color: var(--rose); }
.ext-text .eyebrow::before { background: var(--rose); }
.ext-points { display: flex; gap: 14px; margin: 28px 0 30px; flex-wrap: wrap; }
.ext-points div { display: flex; flex-direction: column; gap: 3px; padding: 16px 20px; background: rgba(255,255,255,0.07); border-radius: var(--r); border: 1px solid rgba(255,255,255,0.12); flex: 1; min-width: 120px; }
.ext-points strong { font-size: 15px; }
.ext-points span { font-size: 13px; color: rgba(255,255,255,0.7); }
.ext-gallery { position: relative; padding-bottom: 0; }
.ext-photo { border-radius: var(--r-lg); object-fit: cover; box-shadow: 0 24px 60px rgba(0,0,0,0.28); }
.ext-photo-1 { width: 78%; aspect-ratio: 4/5; }
.ext-photo-2 { position: absolute; right: 0; bottom: -28px; width: 46%; aspect-ratio: 3/4; border: 5px solid var(--green-deep); }
.ext-gallery .ext-ba-tag { left: 8%; bottom: 24px; top: auto; }

/* before/after slider */
.ba-slider { position: relative; width: 100%; aspect-ratio: 4/5; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3); cursor: ew-resize; user-select: none; touch-action: pan-y; background: var(--green-deep); }
.ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-handle { position: absolute; top: 0; bottom: 0; width: 2px; background: rgba(255,255,255,0.9); transform: translateX(-1px); pointer-events: none; box-shadow: 0 0 12px rgba(0,0,0,0.3); }
.ba-knob { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 48px; height: 48px; border-radius: 50%;
  background: #fff; color: var(--green-deep); display: grid; grid-auto-flow: column; place-items: center; gap: 1px; box-shadow: 0 6px 18px rgba(0,0,0,0.28); }
.ba-tag { position: absolute; bottom: 18px; font-size: 12px; font-weight: 700; letter-spacing: 0.04em; padding: 7px 13px; border-radius: 999px; pointer-events: none; }
.ba-tag-before { left: 16px; background: rgba(255,255,255,0.92); color: var(--green-deep); }
.ba-tag-after { right: 16px; background: var(--green); color: #fff; }
@media (max-width: 880px) {
  .ext-photo-1 { width: 70%; }
  .ext-photo-2 { width: 44%; bottom: -20px; }
  .ext-gallery .ext-ba-tag { bottom: 10px; }
}
.ext-ba-tag { position: absolute; background: var(--rose); color: #7c4a3f; font-size: 12px; font-weight: 700; padding: 7px 13px; border-radius: 999px; transform: none; box-shadow: var(--shadow); white-space: nowrap; }

/* ---------- click & collect ---------- */
.collect-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
@media (max-width: 760px) { .collect-grid { grid-template-columns: 1fr; } }
.collect-card { background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r-lg); padding: 32px 28px; position: relative; box-shadow: var(--shadow-sm); }
.collect-num { position: absolute; top: 24px; right: 28px; font-family: var(--serif); font-size: 40px; color: var(--green-soft); font-weight: 600; line-height: 1; }
.collect-icon { width: 54px; height: 54px; border-radius: 16px; background: var(--green-soft); color: var(--green); display: grid; place-items: center; margin-bottom: 18px; }
.collect-card h3 { font-size: 22px; }
.collect-card p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.5; margin-top: 8px; }

/* ---------- kontakt ---------- */
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: stretch; }
@media (max-width: 880px) { .kontakt-grid { grid-template-columns: 1fr; } }
.kontakt-info h2 { font-size: clamp(32px, 5vw, 50px); margin: 16px 0 24px; }
.kontakt-block { margin-bottom: 24px; }
.kontakt-name { font-weight: 700; font-size: 17px; margin-bottom: 6px; }
.kontakt-block p { color: var(--ink-soft); line-height: 1.55; }
.kontakt-rows { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.kontakt-row { display: flex; align-items: center; gap: 14px; padding: 14px 18px; background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r); transition: all .18s; }
.kontakt-row:hover { border-color: var(--green); transform: translateX(3px); }
.kr-ic { width: 42px; height: 42px; border-radius: 12px; background: var(--green-soft); color: var(--green); display: grid; place-items: center; flex-shrink: 0; }
.kontakt-row b { display: block; font-size: 15.5px; }
.kontakt-row em { font-style: normal; font-size: 12.5px; color: var(--muted); }
.kontakt-hours { margin-bottom: 24px; }
.kontakt-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.kontakt-map-full { position: relative; border-radius: var(--r-lg); overflow: hidden; height: 360px; margin-top: 40px; box-shadow: var(--shadow-sm); }
.kontakt-map-frame { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.18) contrast(1.02); }
.kontakt-map-cta { position: absolute; left: 24px; bottom: 24px; z-index: 2; box-shadow: var(--shadow); }
.kontakt-map .ph { width: 100%; height: 100%; }
.kontakt-map-pin { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-100%); width: 48px; height: 48px; background: var(--green); color: #fff; border-radius: 50% 50% 50% 0; rotate: -45deg; display: grid; place-items: center; box-shadow: var(--shadow); }
.kontakt-map-pin svg { rotate: 45deg; }

/* contact form */
.kontakt-form { padding: 32px 30px; display: flex; flex-direction: column; gap: 14px; align-self: start; }
.kontakt-form h3 { font-size: 26px; margin-top: 4px; }
.kontakt-form .eyebrow { margin-bottom: 2px; }
.kf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px) { .kf-row { grid-template-columns: 1fr; } }
.kontakt-form label { display: flex; flex-direction: column; gap: 7px; font-size: 13.5px; font-weight: 600; color: var(--ink-soft); }
.kontakt-form label em { color: var(--muted); font-weight: 400; }
.kontakt-form input, .kontakt-form textarea { font-family: var(--sans); font-size: 15.5px; padding: 13px 16px; border-radius: var(--r-sm); border: 1.5px solid var(--line); background: var(--surface); color: var(--ink); transition: border .16s; resize: vertical; }
.kontakt-form input:focus, .kontakt-form textarea:focus { outline: none; border-color: var(--green); }
.kontakt-form label.err input, .kontakt-form label.err textarea { border-color: var(--rose-deep); background: #fcf3f1; }
.kf-check-row { flex-direction: row !important; align-items: flex-start; gap: 11px; font-weight: 400; color: var(--ink-soft); font-size: 13.5px; line-height: 1.5; }
.kf-check-row input { width: 19px; height: 19px; margin-top: 1px; accent-color: var(--green); flex-shrink: 0; }
.kf-check-row a { color: var(--green); text-decoration: underline; }
.kf-check-row.err span { color: var(--rose-deep); }
.kf-error { font-size: 13.5px; color: var(--rose-deep); display: flex; align-items: center; gap: 8px; }
.kf-error a { color: var(--green); text-decoration: underline; }
.kf-success { align-items: center; text-align: center; gap: 12px; padding: 48px 30px; }
.kf-check { width: 64px; height: 64px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 26px rgba(33,58,48,0.24); }
.kf-success h3 { font-size: 26px; }
.kf-success p { color: var(--ink-soft); line-height: 1.55; }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,0.82); padding: 64px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.12); }
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr; gap: 28px; } }
.footer-logo { margin-bottom: 16px; font-size: 27px; }
.footer-logo .bl-name { color: #fff; }
.footer-logo .bl-tag { color: var(--bl-green-lt); }
.footer-brand p { font-size: 14.5px; line-height: 1.6; max-width: 320px; }
.footer-col h4 { font-family: var(--sans); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--rose); margin: 0 0 16px; }
.footer-col a, .footer-col p { display: block; color: rgba(255,255,255,0.78); font-size: 14.5px; padding: 5px 0; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 28px; font-size: 13px; color: rgba(255,255,255,0.55); }
.footer-bottom .fb-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom a:hover { color: #fff; }

/* floating book button (mobile) */
.fab { position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%); z-index: 80; display: none; box-shadow: var(--shadow-lg); }
@media (max-width: 960px) { .fab { display: inline-flex; } }
