/* =========================================================================
   Halo Studio — Editorial Wellness Clinic
   Off-white canvas · deep forest green · bright lime · clean grotesk + mono
   Patterns: rounded full-bleed photography, data-UI stat cards, // labels
   ========================================================================= */

:root {
  /* Base */
  --bg:      #efede6;   /* warm off-white canvas */
  --bg-2:    #f5f4ef;   /* lighter panel */
  --card:    #ffffff;
  --ink:     #1b1b18;
  --ink-2:   #34332d;
  --muted:   #74726a;
  --muted-2: #a4a299;
  --line:    #e4e1d7;
  --line-2:  #ece9e0;

  /* Accent */
  --green:      #233f2b;
  --green-2:    #2d5037;
  --green-deep: #18301f;
  --lime:       #c8ef52;
  --lime-2:     #d7f481;
  --amber:      #efa736;

  /* Fonts */
  --font-sans: 'Schibsted Grotesk', system-ui, -apple-system, sans-serif;
  --font-mono: 'Spline Sans Mono', ui-monospace, monospace;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --maxw: 1280px;
  --r:    20px;   /* card radius */
  --r-sm: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
img[hidden] { display: none; }
figure, blockquote, h1, h2, h3, h4, p, ul { margin: 0; }
ul { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }

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

/* -------------------------------------------------------------------------
   Reusable
   ------------------------------------------------------------------------- */
.mono {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sec-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-bottom: 44px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.sec-label .idx { color: var(--muted-2); }

.h-display {
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.04;
  font-size: clamp(30px, 3.6vw, 46px);
  color: var(--ink);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.logo__mark { width: 30px; height: 30px; flex-shrink: 0; }
.logo__name { font-size: 18px; font-weight: 600; letter-spacing: -0.025em; white-space: nowrap; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  padding: 6px 6px 6px 22px;
  transition: transform 0.2s var(--ease), background 0.2s ease, color 0.2s ease;
}
.btn:active { transform: translateY(1px); }
.btn__ico {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s var(--ease);
}
.btn:hover .btn__ico { transform: translateX(3px); }
.btn--white { background: #fff; color: var(--ink); box-shadow: 0 1px 0 rgba(0,0,0,.02); }
.btn--white .btn__ico { background: var(--green); color: #fff; }
.btn--white:hover { background: #f3f2ec; }
.btn--green { background: var(--green); color: #fff; }
.btn--green .btn__ico { background: rgba(255,255,255,0.16); color: #fff; }
.btn--green:hover { background: var(--green-2); }
.btn--plain { padding: 11px 20px; background: #fff; color: var(--ink); }
.btn--plain:hover { background: #f3f2ec; }

/* Tag pills */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-2);
  background: rgba(255,255,255,0.5);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.tag:hover { background: #fff; border-color: var(--muted-2); }
.tag--on { background: var(--green); color: #fff; border-color: var(--green); }

.stars { color: var(--amber); letter-spacing: 1px; font-size: 13px; }

/* Stat / data cards */
.dcard {
  background: var(--card);
  border-radius: var(--r-sm);
  padding: 16px 18px;
  box-shadow: 0 18px 40px rgba(20,30,15,0.12);
}
.dlabel {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.dnum { font-weight: 500; letter-spacing: -0.02em; }

/* Mini bar chart */
.bars { display: flex; align-items: stretch; gap: 3px; height: 30px; }
.bars .bar { flex: 1; background: var(--green); border-radius: 2px; min-width: 4px; }
.bars .bar--empty { background: var(--line); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative;
  margin: 14px;
  border-radius: var(--r);
  overflow: hidden;
  min-height: 760px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  color: #fff;
  background: linear-gradient(120deg, #b8a392, #8f7d6c);
}
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(20,16,12,0.35) 0%, rgba(20,16,12,0) 26%, rgba(20,16,12,0) 55%, rgba(20,16,12,0.55) 100%),
    linear-gradient(90deg, rgba(20,16,12,0.30) 0%, rgba(20,16,12,0) 45%);
}
.hero__label {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 1;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); text-align: center;
}
.hero__img:not([hidden]) ~ .hero__scrim ~ .hero__label,
.hero__img:not([hidden]) ~ .hero__label { display: none; }

.hero__nav, .hero .badge, .hero__foot, .hero__locs { position: relative; z-index: 2; }

.hero__nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.hero__nav .logo { color: #fff; }
.nav-pill {
  display: flex; align-items: center; gap: 4px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-radius: 999px;
  padding: 5px;
}
.nav-pill a {
  padding: 8px 15px; border-radius: 999px; font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,0.92);
  transition: background 0.2s ease;
}
.nav-pill a:hover { background: rgba(255,255,255,0.16); }
.hero__nav-right { display: flex; align-items: center; gap: 10px; }

.badge {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 22px;
  align-self: flex-start;
  padding: 9px 16px 9px 13px;
  border-radius: 999px;
  background: rgba(20,16,12,0.28);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff;
}
.badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(200,239,82,0.25); }

.hero__foot {
  margin-top: auto;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 40px;
}
.hero__title {
  font-weight: 500; letter-spacing: -0.025em; line-height: 1.04;
  font-size: clamp(30px, 4.4vw, 54px); color: #fff; max-width: 720px;
}
.hero__aside { max-width: 290px; }
.hero__aside p { font-size: 14px; line-height: 1.5; color: rgba(255,255,255,0.86); margin-bottom: 18px; }
.hero__locs {
  display: flex; justify-content: space-between; gap: 12px;
  margin-top: 20px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}

/* =========================================================================
   SECTION SHELL
   ========================================================================= */
.section { padding: 64px 0 8px; }
.section--pad { padding: 64px 0; }

/* =========================================================================
   ABOUT
   ========================================================================= */
.about__quote {
  font-weight: 500; letter-spacing: -0.02em; line-height: 1.22;
  font-size: clamp(24px, 3.1vw, 40px);
  color: var(--ink);
  max-width: 1000px;
  margin: 0 0 48px auto;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.about__left { position: relative; border-radius: var(--r); overflow: hidden; min-height: 420px; }
.about__quote-card {
  position: absolute; left: 18px; bottom: 18px; right: 18px; z-index: 2;
  color: #fff;
}
.about__quote-card .q { font-size: 16px; font-weight: 500; margin-bottom: 14px; }
.about__rating { display: flex; align-items: center; gap: 10px; }
.about__rating .n { font-size: 20px; font-weight: 600; }
.about__rating .lbl { font-size: 12px; color: rgba(255,255,255,0.8); }

.about__right { display: grid; grid-template-rows: 1fr auto; gap: 20px; }
.about__row { display: grid; grid-template-columns: 1.1fr 1fr; gap: 20px; align-items: stretch; }
.about__photo { position: relative; border-radius: var(--r); overflow: hidden; min-height: 220px; }
.about__cta { display: flex; flex-direction: column; justify-content: center; gap: 18px; }
.about__cta p { font-size: 16px; color: var(--ink-2); }

/* Lime weekly card */
.lime-card {
  background: var(--lime);
  border-radius: var(--r);
  padding: 22px 24px;
  color: var(--green-deep);
}
.lime-card__top { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 6px; }
.lime-card__top .lbl { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; }
.lime-card__legend { display: flex; gap: 14px; font-size: 11px; font-weight: 600; }
.lime-card__legend span { display: inline-flex; align-items: center; gap: 5px; color: rgba(24,48,31,0.7); }
.lime-card__legend i { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }
.lime-card__big { font-size: clamp(40px, 6vw, 64px); font-weight: 600; letter-spacing: -0.03em; line-height: 1; margin: 6px 0 18px; }
.lime-card__bars { display: flex; align-items: flex-end; gap: 6px; height: 56px; }
.lime-card__bars .b { flex: 1; border-radius: 6px; background: var(--green); }
.lime-card__bars .b--mid { background: var(--green-2); }
.lime-card__bars .b--hatch {
  background: repeating-linear-gradient(135deg, rgba(24,48,31,0.5) 0 4px, transparent 4px 8px);
  border: 1px solid rgba(24,48,31,0.35);
}
.lime-card__scale { display: flex; justify-content: space-between; margin-top: 8px; font-size: 11px; font-weight: 600; color: rgba(24,48,31,0.6); }

/* =========================================================================
   FEATURED
   ========================================================================= */
.featured__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; margin-bottom: 22px; }
.featured__tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; max-width: 620px; }
.featured__grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 20px; align-items: stretch; }

.spec {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 16px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
}
.spec__photo { position: relative; border-radius: var(--r-sm); overflow: hidden; }
.spec__slots {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 34px 14px 14px;
  background: linear-gradient(to top, rgba(18,20,14,0.62), rgba(18,20,14,0));
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.06em; text-transform: uppercase; color: #fff;
}
.spec__slots .track { margin-top: 7px; height: 5px; border-radius: 999px; background: rgba(255,255,255,0.3); overflow: hidden; }
.spec__slots .track i { display: block; height: 100%; width: 62%; border-radius: 999px; background: var(--lime); }
.spec__body { padding: 12px 12px 12px 0; display: flex; flex-direction: column; }
.spec__name { font-size: 26px; font-weight: 500; letter-spacing: -0.02em; }
.spec__role { font-size: 14px; color: var(--muted); margin-bottom: 12px; }
.spec__rate { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; font-weight: 600; }
.spec__quote { font-size: 14px; color: var(--ink-2); line-height: 1.5; margin-bottom: 18px; font-style: italic; }
.spec__body .btn { margin-top: auto; align-self: flex-start; }

.nutri { position: relative; border-radius: var(--r); overflow: hidden; min-height: 440px; }
.nutri .dcard { position: absolute; top: 16px; left: 16px; right: 16px; }
.nutri__rows { display: flex; gap: 26px; margin-bottom: 14px; }
.nutri__rows .dnum { font-size: 30px; }
.nutri__rows .unit { font-family: var(--font-mono); font-size: 10px; color: var(--muted); margin-left: 4px; }
.nutri__track .dlabel { display: flex; justify-content: space-between; margin-bottom: 7px; }

/* =========================================================================
   CLASSES (our treatment)
   ========================================================================= */
.classes__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; margin-bottom: 34px; }
.classes__note { font-size: 14px; font-style: italic; color: var(--muted); max-width: 240px; }
.classes__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }

.price { position: relative; border-radius: var(--r); overflow: hidden; min-height: 520px; }
.price-card {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  background: var(--card); border-radius: var(--r-sm); padding: 18px 20px;
  box-shadow: 0 18px 40px rgba(20,30,15,0.14);
}
.price-card__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.price-card__from { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.price-card__amt { font-size: 30px; font-weight: 600; letter-spacing: -0.02em; }
.price-card__kg { background: var(--green); color: #fff; border-radius: 999px; padding: 6px 12px; font-size: 13px; font-weight: 600; }
.price-card__spark { height: 46px; margin: 6px 0 14px; }
.price-card__spark svg { width: 100%; height: 100%; overflow: visible; }
.price-card__foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; }
.price-card__desc { font-size: 12px; color: var(--muted); max-width: 150px; line-height: 1.4; }
.price-card__stats { display: flex; gap: 22px; text-align: left; }
.price-card__stats .dnum { font-size: 22px; }
.price-card__stats .pct { font-size: 12px; color: var(--muted); }

.tl-list { border-bottom: 1px solid var(--line); }
.tl-item { border-top: 1px solid var(--line); }
.tl-item summary { display: flex; gap: 18px; align-items: center; padding: 22px 2px; cursor: pointer; list-style: none; }
.tl-item summary::-webkit-details-marker { display: none; }
.tl-num {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--line); display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 11px; color: var(--muted);
}
.tl-item[open] .tl-num { background: var(--green); border-color: var(--green); color: #fff; }
.tl-title { font-size: clamp(20px, 2.4vw, 28px); font-weight: 500; letter-spacing: -0.02em; flex: 1; color: var(--muted-2); transition: color 0.2s ease; }
.tl-item[open] .tl-title, .tl-item summary:hover .tl-title { color: var(--ink); }
.tl-body { padding: 0 2px 26px 48px; }
.tl-body p { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; max-width: 460px; margin-bottom: 18px; }
.tl-actions { display: flex; align-items: center; gap: 18px; }
.tl-actions .reviews { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: 14px; }

/* =========================================================================
   PRODUCTS
   ========================================================================= */
.filter { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 30px; }
.filter__label { font-size: 14px; color: var(--muted); margin-right: 4px; }
.filter__search {
  margin-left: auto; display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px;
  color: var(--muted); font-size: 13px;
}
.filter__search input { border: none; outline: none; background: transparent; font-family: var(--font-sans); font-size: 13px; color: var(--ink); width: 120px; }
.products__head { margin-bottom: 30px; max-width: 720px; }
.products__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 14px; }
.product__media { position: relative; border-radius: var(--r-sm); overflow: hidden; aspect-ratio: 1/1; margin-bottom: 14px; background: var(--bg-2); }
.product__cat { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.product__name { font-size: 17px; font-weight: 500; letter-spacing: -0.01em; margin: 4px 0 12px; }
.product__foot { display: flex; align-items: center; justify-content: space-between; }
.product__price { font-weight: 600; }
.product__add {
  width: 34px; height: 34px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--green); color: #fff; font-size: 18px; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.2s var(--ease);
}
.product__add:hover { transform: scale(1.08); }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 44px; align-items: start; }
.faq__head h2 { margin-top: 12px; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 2px; cursor: pointer; list-style: none;
  font-size: 16px; font-weight: 500; color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__sign {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--bg-2); border: 1px solid var(--line); color: var(--green);
  display: inline-flex; align-items: center; justify-content: center; font-size: 15px;
  transition: transform 0.25s var(--ease);
}
.faq__item[open] .faq__sign { transform: rotate(45deg); background: var(--green); border-color: var(--green); color: #fff; }
.faq__answer { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0; padding: 0 36px 22px 2px; }

/* =========================================================================
   CTA
   ========================================================================= */
.cta__panel {
  background: var(--green);
  color: #fff;
  border-radius: var(--r);
  padding: clamp(40px, 6vw, 76px);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}
.cta__panel h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 500; letter-spacing: -0.025em; line-height: 1.05; }
.cta__panel h2 em { font-style: normal; color: var(--lime); }
.cta__panel p { color: rgba(255,255,255,0.82); font-size: 15px; line-height: 1.55; margin: 16px 0 0; max-width: 360px; }
.cta__panel .btn--lime { background: var(--lime); color: var(--green-deep); }
.cta__panel .btn--lime .btn__ico { background: var(--green); color: #fff; }
.cta__right { display: flex; justify-content: flex-end; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer { padding: 64px 0 28px; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 28px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.footer__about { font-size: 14px; color: var(--muted); max-width: 260px; margin-top: 16px; line-height: 1.55; }
.footer__addr { font-style: normal; font-size: 14px; color: var(--ink-2); margin-top: 16px; line-height: 1.6; }
.footer__addr a { color: var(--green); font-weight: 600; }
.footer__addr a:hover { text-decoration: underline; }
.footer__col h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; font-weight: 400; }
.footer__col ul { display: flex; flex-direction: column; gap: 11px; }
.footer__col a { font-size: 14px; color: var(--ink-2); transition: color 0.2s ease; }
.footer__col a:hover { color: var(--green); }
.footer__legal { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding-top: 22px; font-size: 13px; color: var(--muted); }

/* =========================================================================
   MEDIA PLACEHOLDER (img drops on top; if absent, labelled wash shows)
   ========================================================================= */
.ph { background: linear-gradient(135deg, #d7d2c4, #c7c1b0); position: relative; isolation: isolate; }
.ph::after {
  content: attr(data-label);
  position: absolute; left: 14px; bottom: 12px; max-width: 80%; z-index: -1;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: #6f6a5c;
}
.ph > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
/* positioned overlays (cards, scrims, slot labels) sit above the image automatically */

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1000px) {
  .featured__grid { grid-template-columns: 1fr; }
  .classes__grid { grid-template-columns: 1fr; gap: 32px; }
  .products__grid { grid-template-columns: 1fr 1fr; }
  .cta__panel { grid-template-columns: 1fr; }
  .cta__right { justify-content: flex-start; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-pill { display: none; }
  .about__grid { grid-template-columns: 1fr; }
  .about__row { grid-template-columns: 1fr; }
  .hero__foot { flex-direction: column; align-items: flex-start; gap: 24px; }
  .hero__aside { max-width: none; }
  .featured__head, .classes__head, .featured__grid { gap: 18px; }
  .spec { grid-template-columns: 140px 1fr; }
}
@media (max-width: 600px) {
  .wrap { padding: 0 18px; }
  .hero { margin: 8px; padding: 18px; min-height: 600px; }
  .about__quote { font-size: 22px; }
  .spec { grid-template-columns: 1fr; }
  .spec__photo { aspect-ratio: 16/10; }
  .products__grid { grid-template-columns: 1fr 1fr; }
  .filter__search { margin-left: 0; width: 100%; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

/* =========================================================================
   MICRO-ANIMATIONS & INTERACTIONS
   ========================================================================= */
a, button, summary { -webkit-tap-highlight-color: transparent; }
body { overflow-x: hidden; }
.section, .section--pad { scroll-margin-top: 18px; }
.about__left > img { object-position: center 22%; }

/* Hero slow ken-burns */
.hero__img { will-change: transform; animation: kenburns 24s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1.001); } to { transform: scale(1.08); } }

/* Live "available" dot pulse */
.badge .dot { animation: dotPulse 2.6s ease-in-out infinite; }
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,239,82,0.5); }
  60%      { box-shadow: 0 0 0 7px rgba(200,239,82,0); }
}

/* Framed-image zoom */
.ph > img { transition: transform 0.7s var(--ease); }

/* Accordion content fade-in */
.faq__item[open] .faq__answer,
.tl-item[open] .tl-body { animation: accIn 0.4s var(--ease); }
@keyframes accIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* Staggered children (driven by parent .reveal.in) */
.reveal .stagger > * {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.reveal.in .stagger > * { opacity: 1; transform: none; }
.reveal.in .stagger > *:nth-child(1) { transition-delay: 0.05s; }
.reveal.in .stagger > *:nth-child(2) { transition-delay: 0.10s; }
.reveal.in .stagger > *:nth-child(3) { transition-delay: 0.15s; }
.reveal.in .stagger > *:nth-child(4) { transition-delay: 0.20s; }
.reveal.in .stagger > *:nth-child(5) { transition-delay: 0.25s; }
.reveal.in .stagger > *:nth-child(6) { transition-delay: 0.30s; }
.reveal.in .stagger > *:nth-child(7) { transition-delay: 0.35s; }
.reveal.in .stagger > *:nth-child(8) { transition-delay: 0.40s; }

/* Chart bars grow up on reveal */
.reveal .lime-card__bars .b,
.reveal .nutri .bars .bar {
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.7s var(--ease);
}
.reveal.in .lime-card__bars .b,
.reveal.in .nutri .bars .bar { transform: scaleY(1); }
.reveal.in .lime-card__bars .b:nth-child(1){transition-delay:.10s}
.reveal.in .lime-card__bars .b:nth-child(2){transition-delay:.16s}
.reveal.in .lime-card__bars .b:nth-child(3){transition-delay:.22s}
.reveal.in .lime-card__bars .b:nth-child(4){transition-delay:.28s}
.reveal.in .lime-card__bars .b:nth-child(5){transition-delay:.34s}
.reveal.in .lime-card__bars .b:nth-child(6){transition-delay:.40s}
.reveal.in .lime-card__bars .b:nth-child(7){transition-delay:.46s}
.reveal.in .lime-card__bars .b:nth-child(8){transition-delay:.52s}
.reveal.in .lime-card__bars .b:nth-child(9){transition-delay:.58s}
.reveal.in .nutri .bars .bar { transition-delay: 0.25s; }

/* Self-drawing spark line */
.price-card__spark path:nth-of-type(1) { opacity: 0; }
.price-card__spark path:nth-of-type(2) { stroke-dasharray: 440; stroke-dashoffset: 440; }
.price-card__spark circle { opacity: 0; transform-box: fill-box; transform-origin: center; }
.reveal.in .price-card__spark path:nth-of-type(1) { animation: sparkFill 0.9s var(--ease) 0.3s forwards; }
.reveal.in .price-card__spark path:nth-of-type(2) { animation: sparkDraw 1.5s var(--ease) 0.2s forwards; }
.reveal.in .price-card__spark circle { animation: sparkDot 0.4s var(--ease) 1.3s forwards; }
@keyframes sparkDraw { to { stroke-dashoffset: 0; } }
@keyframes sparkFill { to { opacity: 1; } }
@keyframes sparkDot { from { opacity: 0; transform: scale(0); } to { opacity: 1; transform: scale(1); } }

/* Hover-only effects (skip on touch) */
@media (hover: hover) {
  .product:hover .product__media > img,
  .about__left:hover > img,
  .about__photo:hover > img,
  .spec:hover .spec__photo > img,
  .nutri:hover > img,
  .price:hover > img { transform: scale(1.05); }

  .product { transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease); }
  .product:hover { transform: translateY(-5px); box-shadow: 0 22px 46px rgba(20,30,15,0.14); }

  .spec { transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease); }
  .spec:hover { transform: translateY(-3px); box-shadow: 0 22px 46px rgba(20,30,15,0.10); }

  .tag { transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s var(--ease); }
  .tag:hover { transform: translateY(-2px); }

  .tl-item summary:hover .tl-num { border-color: var(--green); color: var(--green); }
}

/* =========================================================================
   MOBILE MENU
   ========================================================================= */
.nav-toggle { display: none; }
.mobile-menu { display: none; }

@media (max-width: 860px) {
  .hero__nav-right > .btn--plain { display: none; }
  .nav-toggle {
    display: inline-flex; flex-direction: column; gap: 4px;
    align-items: center; justify-content: center;
    width: 46px; height: 46px; padding: 0; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    cursor: pointer;
  }
  .nav-toggle span { display: block; width: 18px; height: 2px; background: #fff; border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.2s ease; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .mobile-menu {
    display: flex; flex-direction: column; gap: 2px;
    position: fixed; left: 8px; right: 8px; top: 80px; z-index: 60;
    padding: 12px;
    background: rgba(24,28,20,0.96);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.12); border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.3);
    opacity: 0; transform: translateY(-12px); pointer-events: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }
  .mobile-menu.open { opacity: 1; transform: none; pointer-events: auto; }
  .mobile-menu a { color: #fff; font-size: 16px; font-weight: 500; padding: 15px 16px; border-radius: 12px; }
  .mobile-menu a:active { background: rgba(255,255,255,0.1); }
  .mobile-menu .btn { justify-content: space-between; margin-top: 8px; }
}

/* =========================================================================
   SMALL-SCREEN TUNING
   ========================================================================= */
@media (max-width: 430px) {
  .hero { min-height: 540px; }
  .hero__title { font-size: 30px; }
  .hero__locs { font-size: 9.5px; gap: 8px; }
  .about__quote { font-size: 21px; }
  .h-display { font-size: 27px; }
  .products__grid { grid-template-columns: 1fr; }
  .spec__name { font-size: 23px; }
  .price, .nutri { min-height: 0; }
  .price { aspect-ratio: 3 / 4; }
  .nutri { aspect-ratio: 4 / 5; }
}

/* =========================================================================
   PRODUCTS — IN-STUDIO ONLY
   ========================================================================= */
.products__sub { font-size: 15px; color: var(--muted); line-height: 1.55; margin-top: 12px; }
.products__sub strong { color: var(--ink); font-weight: 600; }
.instore-badge {
  margin-left: auto; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--green); background: #eef5ee; border: 1px solid #d6e6d6; padding: 8px 14px; border-radius: 999px;
}
.instore-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.product__instore {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: var(--green);
  background: #eef5ee; border-radius: 999px; padding: 6px 12px;
}
.product__instore .pin { font-size: 11px; }
.instore-strip {
  margin-top: 26px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r); padding: 24px 28px;
}
.instore-strip__t { font-size: 19px; font-weight: 600; letter-spacing: -0.02em; }
.instore-strip__d { font-size: 14px; color: var(--muted); margin-top: 3px; }
.instore-strip__link {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--green); color: #fff; border-radius: 999px; padding: 6px 6px 6px 22px;
  font-weight: 600; font-size: 14px; transition: background 0.2s ease;
}
.instore-strip__link:hover { background: var(--green-2); }
.instore-strip__link .btn__ico { background: rgba(255,255,255,0.16); color: #fff; }

/* =========================================================================
   CLYRKE BOOKING SYSTEM
   ========================================================================= */
:root { --clyrke: #f46f22; }

.modal {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center; padding: 24px;
  background: rgba(22,24,18,0.5); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.modal.open { display: flex; animation: modalFade 0.25s var(--ease); }
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }

.bk {
  width: 100%; max-width: 600px; max-height: 92vh; display: flex; flex-direction: column;
  background: var(--card); border-radius: 24px; overflow: hidden;
  box-shadow: 0 40px 90px rgba(0,0,0,0.35); animation: bkIn 0.35s var(--ease);
}
@keyframes bkIn { from { opacity: 0; transform: translateY(18px) scale(0.985); } to { opacity: 1; transform: none; } }
.bk.shake { animation: shake 0.4s; }
@keyframes shake { 0%,100%{transform:translateX(0)} 20%,60%{transform:translateX(-7px)} 40%,80%{transform:translateX(7px)} }

.bk__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; padding: 20px 22px 16px; border-bottom: 1px solid var(--line); }
.bk__title { font-size: 18px; font-weight: 600; letter-spacing: -0.02em; }
.bk__close { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); background: var(--bg-2); cursor: pointer; font-size: 15px; color: var(--ink); display: inline-flex; align-items: center; justify-content: center; transition: background 0.2s; flex: none; }
.bk__close:hover { background: #eceae2; }

.powered { display: inline-flex; align-items: center; gap: 5px; margin-top: 4px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); }
.powered img { height: 13px; width: auto; display: block; }
.powered b { color: var(--clyrke); font-weight: 500; }
.powered--foot { margin: 0; }

.bk__progress { padding: 16px 22px 0; }
.bk__steps { display: flex; gap: 6px; }
.bk__steps .s { flex: 1; height: 4px; border-radius: 999px; background: var(--line); transition: background 0.3s var(--ease); }
.bk__steps .s.done, .bk__steps .s.active { background: var(--green); }
.bk__stepname { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); padding: 12px 0 0; }

.bk__body { padding: 18px 22px; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.bk-h { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; margin: 0 0 14px; }
.bk-h + .pill-row + .bk-h { margin-top: 24px; }

.opt-list { display: grid; gap: 10px; }
.opt {
  display: flex; align-items: center; gap: 14px; text-align: left; width: 100%;
  padding: 15px 16px; border: 1.5px solid var(--line); border-radius: 16px; background: #fff; cursor: pointer;
  font-family: inherit; transition: border-color 0.2s, background 0.2s, transform 0.15s var(--ease);
}
.opt:hover { border-color: var(--muted-2); }
.opt.selected { border-color: var(--green); background: #f4faf4; }
.opt__main { flex: 1; display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.opt__t { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
.opt__d { font-size: 13px; color: var(--muted); }
.opt__meta { font-size: 13px; font-weight: 600; color: var(--green); flex: none; }
.opt .tick { width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid var(--line); display: inline-grid; place-items: center; color: transparent; font-size: 12px; flex: none; transition: 0.2s; }
.opt.selected .tick { background: var(--green); border-color: var(--green); color: #fff; }
.tchr__av { width: 38px; height: 38px; border-radius: 50%; display: inline-grid; place-items: center; font-weight: 600; font-size: 13px; color: #fff; flex: none; }

.pill-row { display: flex; flex-wrap: wrap; gap: 8px; }
.pill-opt { padding: 10px 15px; border: 1.5px solid var(--line); border-radius: 14px; background: #fff; cursor: pointer; font-family: inherit; font-size: 13.5px; color: var(--ink); transition: 0.2s; text-align: center; min-width: 58px; }
.pill-opt:hover { border-color: var(--muted-2); }
.pill-opt.selected { background: var(--green); border-color: var(--green); color: #fff; }
.pill-opt .dow { display: block; font-size: 11px; color: var(--muted); margin-bottom: 2px; }
.pill-opt.selected .dow { color: rgba(255,255,255,0.82); }

.fld { margin-bottom: 14px; }
.fld label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.fld input, .fld textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 12px; font-family: inherit; font-size: 14px; color: var(--ink); background: #fff; transition: border-color 0.2s; }
.fld input:focus, .fld textarea:focus { outline: none; border-color: var(--green); }
.fld textarea { resize: vertical; min-height: 72px; }
.fld .err { color: #b42318; font-size: 12px; margin-top: 5px; display: none; }
.fld.invalid input, .fld.invalid textarea { border-color: #e0644f; }
.fld.invalid .err { display: block; }

.bk__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 22px; border-top: 1px solid var(--line); }
.bk__foot[hidden] { display: none; }
.bk__back { background: transparent; border: none; cursor: pointer; font-family: inherit; font-size: 14px; font-weight: 600; color: var(--muted); padding: 10px 2px; }
.bk__back[hidden] { display: none; }
.bk__back:hover { color: var(--ink); }
.bk__next { padding: 11px 11px 11px 22px; }

.bk-done { text-align: center; padding: 12px 0 6px; }
.bk-done__check { width: 64px; height: 64px; border-radius: 50%; background: #ecfdf3; color: var(--green); display: inline-grid; place-items: center; font-size: 30px; margin-bottom: 18px; animation: pop 0.45s var(--ease); }
@keyframes pop { from { transform: scale(0); } to { transform: scale(1); } }
.bk-done h3 { font-size: 24px; font-weight: 600; letter-spacing: -0.02em; margin: 0 0 8px; }
.bk-done > p { color: var(--muted); font-size: 14px; margin: 0 auto 20px; max-width: 360px; line-height: 1.5; }
.bk-done > p strong { color: var(--ink); }
.bk-summary { text-align: left; background: var(--bg-2); border-radius: 16px; padding: 6px 18px; margin: 0 auto 16px; }
.bk-summary .row { display: flex; justify-content: space-between; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.bk-summary .row:last-child { border-bottom: none; }
.bk-summary .row span:first-child { color: var(--muted); }
.bk-summary .row span:last-child { font-weight: 600; text-align: right; }
.bk-ref { font-family: var(--font-mono); font-size: 12px; color: var(--muted); }

@media (max-width: 600px) {
  .modal { padding: 0; align-items: stretch; }
  .bk { max-width: none; max-height: 100%; height: 100%; border-radius: 0; animation: bkInM 0.35s var(--ease); }
  @keyframes bkInM { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: none; } }
  .bk__body { flex: 1; }
  .instore-badge { margin-left: 0; }
  .instore-strip { padding: 20px; }
}

:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 6px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal .stagger > * { opacity: 1 !important; transform: none !important; }
  .hero__img { animation: none !important; transform: none !important; }
  .reveal .lime-card__bars .b, .reveal .nutri .bars .bar { transform: scaleY(1) !important; }
  .price-card__spark path { stroke-dashoffset: 0 !important; opacity: 1 !important; }
  .price-card__spark circle { opacity: 1 !important; }
}
