:root {
  --green: #1d1f20;
  --lime: #bffc00;
  --olive: #e4ef9a;
  --brown: #8a623d;
  --white: #ffffff;
  --paper: #fbfaf0;
  --wood: #eadcc5;
  --wood-dark: #8a623d;
  --sage: #f3f7df;
  --text: #1d1f20;
  --muted: #626866;
  --line: rgba(29, 31, 32, 0.14);
  --shadow: 0 18px 45px rgba(29, 31, 32, 0.09);
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  position: relative;
  margin: 0;
  color: var(--text);
  font-family: Inter, "Nunito Sans", "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 8% 5%, rgba(191, 252, 0, 0.18), transparent 24rem),
    linear-gradient(180deg, var(--paper) 0%, var(--white) 42%, rgba(191, 252, 0, .12) 100%);
  line-height: 1.6;
}

.site-background {
  position: fixed;
  inset: -3rem;
  z-index: 0;
  overflow: hidden;
  opacity: .075;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.site-background iframe {
  width: calc(100% + 6rem);
  height: calc(100% + 6rem);
  border: 0;
  filter: saturate(.75) contrast(1.04);
  transform: scale(1.04);
  transform-origin: center;
}

main,
.site-header,
.site-footer,
.splash,
.image-zoom {
  position: relative;
  z-index: 1;
}

body.no-scroll { overflow: hidden; }

img { max-width: 100%; display: block; }

a { color: inherit; }

button, input, select, textarea { font: inherit; }

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  z-index: 200;
  top: 1rem;
  left: 1rem;
  padding: .75rem 1rem;
  background: var(--green);
  color: var(--white);
  border-radius: 999px;
}

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
  color: var(--green);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 { font-size: clamp(2.3rem, 6vw, 4.9rem); margin-bottom: 1.1rem; }
h2 { font-size: clamp(1.7rem, 3.6vw, 3rem); margin-bottom: .9rem; }
h3 { font-size: 1.18rem; margin-bottom: .55rem; }
p { color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .85rem 1.18rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(29, 31, 32, .14); }
.btn:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible { outline: 3px solid rgba(191, 252, 0, .78); outline-offset: 3px; }

.btn--primary { background: var(--green); color: var(--white); }
.btn--secondary { background: var(--paper); color: var(--brown); border-color: var(--brown); }
.btn--light { background: var(--white); color: var(--green); }
.btn--ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.72); }

.header-cta,
.hero .btn--primary,
.section-action .btn--primary,
.subhero .btn--primary,
.cta-band .btn--light,
.offer-card.is-featured .btn--primary,
.product .add-cart,
.newsletter .btn--primary {
  background: var(--lime);
  color: var(--green);
  border-color: var(--lime);
}

.cta-band--soft .btn--primary {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
}

.actions { display: flex; gap: .8rem; flex-wrap: wrap; align-items: center; }
.actions--center { justify-content: center; }

.splash {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: linear-gradient(145deg, var(--white) 0%, var(--paper) 45%, var(--olive) 100%);
}

.splash.is-hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s ease, visibility .45s ease;
}

.splash__content {
  width: min(720px, 100%);
  padding: clamp(1rem, 5vw, 3rem);
  text-align: center;
  color: var(--green);
}

.splash__logo {
  width: min(340px, 72vw);
  margin: 0 auto 1.4rem;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, .24));
}

.splash__content h1 {
  margin-bottom: .6rem;
  color: var(--green);
  font-size: clamp(2.4rem, 8vw, 5rem);
}

.splash__content p {
  max-width: 520px;
  margin: 0 auto 1.5rem;
  color: var(--muted);
  font-size: 1.18rem;
}

.splash__content .btn {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(29, 31, 32, .16);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: .75rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(251,250,242,.90);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  min-width: 0;
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
}

.brand__logo { width: 76px; height: 66px; object-fit: contain; }
.brand span { white-space: nowrap; }

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(.45rem, 1.2vw, 1rem);
}

.main-nav a {
  padding: .45rem .4rem;
  border-radius: 999px;
  color: var(--green);
  font-size: .92rem;
  font-weight: 750;
  text-decoration: none;
}

.main-nav a.is-active { color: var(--green); background: rgba(191, 252, 0, .26); }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--green);
}

.page { display: none; }
.page.is-active { display: block; }

.hero,
.subhero,
.section,
.cta-band,
.site-footer {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.hero {
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2.4rem, 6vw, 5rem) 0;
}

.hero__content p, .subhero p { max-width: 690px; font-size: 1.12rem; }

.eyebrow {
  display: inline-flex;
  margin-bottom: .8rem;
  color: var(--brown);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 32px;
  box-shadow: var(--shadow);
  background: var(--sage);
}

.hero-visual::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(180deg, rgba(29,31,32,.02), rgba(29,31,32,.18));
}

.hero-visual img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }

.visual-note {
  position: absolute;
  z-index: 2;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 1rem;
  color: var(--green);
  background: rgba(251,250,242,.92);
  border-radius: 16px;
  font-weight: 850;
}

.floating-badges {
  position: absolute;
  z-index: 2;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  gap: .55rem;
  flex-wrap: wrap;
}

.floating-badges span,
.badge,
.price {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 34px;
  padding: .42rem .75rem;
  border-radius: 999px;
  color: var(--green);
  background: rgba(251, 250, 242, .94);
  border: 1px solid rgba(29,31,32,.14);
  font-weight: 900;
  font-size: .86rem;
}

.badge { margin-bottom: .55rem; background: var(--lime); }
.price { margin-bottom: .9rem; background: var(--olive); }

.badge + .price {
  margin-top: .25rem;
}

.concept-line {
  max-width: 900px;
  text-align: center;
  padding-top: 1rem;
}

.concept-line p {
  max-width: 760px;
  margin-inline: auto;
  font-size: 1.16rem;
}

.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }

.section--sage {
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, calc((100vw - var(--max)) / 2));
  background: linear-gradient(180deg, rgba(228, 239, 154, .36), rgba(191, 252, 0, .12));
}

.section--wood {
  width: min(var(--max), calc(100% - 2rem));
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 30px;
  background:
    linear-gradient(110deg, rgba(234, 220, 197, .96), rgba(228, 239, 154, .62)),
    url("../Images/27091358-tree-bark-texture.jpg") center / cover;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1.6rem;
}

.section-action { margin-top: 1.5rem; }

.split-heading {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.6rem;
}

.grid { display: grid; gap: 1rem; }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid--5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }

.card,
.mini-card,
.service-card,
.offer-card,
.values article,
.product,
.contact-card,
.cart-panel,
.account-login,
.account-card,
.account-tree article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(29,31,32,.06);
}

.card { padding: 1.25rem; }
.mini-card, .service-card, .values article { padding: 1.15rem; }

.card,
.mini-card,
.service-card,
.offer-card,
.product {
  transition: transform .22s ease, box-shadow .22s ease;
}

.card:hover,
.mini-card:hover,
.service-card:hover,
.offer-card:hover,
.product:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: var(--olive);
  position: relative;
}

.icon::before, .icon::after { content: ""; position: absolute; }
.icon--leaf::before { width: 24px; height: 34px; top: 8px; left: 13px; background: var(--lime); border-radius: 72% 28% 70% 30%; transform: rotate(32deg); }
.icon--pad::before { inset: 15px 8px 12px; background: var(--green); border-radius: 14px; }
.icon--pad::after { width: 6px; height: 6px; top: 22px; left: 16px; background: var(--lime); border-radius: 50%; box-shadow: 15px 0 0 var(--lime); }
.icon--branch::before { width: 6px; height: 34px; top: 8px; left: 22px; background: var(--wood-dark); border-radius: 999px; transform: rotate(18deg); }
.icon--branch::after { width: 20px; height: 12px; top: 14px; left: 23px; background: var(--lime); border-radius: 80% 20% 80% 20%; }

.service-card a {
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
}

.skill-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 2rem;
  align-items: center;
}

.skill-tree {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .8rem;
}

.tree-line {
  display: none;
}

.skill-tree article {
  position: relative;
  z-index: 1;
  min-height: 150px;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  border: 1px solid var(--line);
}

.skill-tree small {
  display: inline-flex;
  margin-top: .7rem;
  color: var(--green);
  font-weight: 850;
}

.skill-tree span,
.level-row span {
  color: var(--green);
  font-weight: 950;
}

.skill-tree strong { display: block; color: var(--text); line-height: 1.25; }

.cta-band {
  margin-block: clamp(2rem, 6vw, 4rem);
  padding: clamp(2rem, 6vw, 4rem);
  text-align: center;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--green), var(--brown));
  color: var(--white);
}

.cta-band h2, .cta-band p { color: var(--white); }
.cta-band--soft { background: var(--wood); color: var(--brown); }
.cta-band--soft h2 { color: var(--brown); }
.cta-band--soft p { color: var(--muted); }

.subhero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 2rem;
  align-items: center;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2rem, 5vw, 3rem);
}

.subhero--plain { display: block; max-width: 900px; }
.subhero img { height: 360px; width: 100%; object-fit: cover; border-radius: 28px; box-shadow: var(--shadow); }
#page-discover .subhero img { transform: translateX(-12px); }

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline article {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 1rem;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.timeline span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--green);
  font-weight: 950;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.pill-grid span {
  padding: .85rem 1rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--green);
  border: 1px solid var(--line);
  font-weight: 850;
}

.level-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.level-row article {
  padding: 1.2rem;
  border-left: 6px solid var(--lime);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.offers,
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.offer-card { padding: 1.35rem; display: flex; flex-direction: column; align-items: flex-start; }
.offer-card.is-featured {
  border: 2px solid var(--lime);
  background: linear-gradient(180deg, var(--white), rgba(228, 239, 154, .34));
}
.offer-card .btn { margin-top: auto; }
.offer-card ul { padding-left: 1.2rem; color: var(--muted); }

.notice {
  margin-bottom: 1.2rem;
  padding: 1rem 1.15rem;
  border-radius: 18px;
  background: var(--sage);
  border: 1px solid var(--line);
}

.notice strong {
  color: var(--green);
  font-size: 1.08rem;
}

.notice p {
  margin: .25rem 0 0;
}

.cafe-section,
.visit-layout,
.contact-layout,
.checkout-layout,
.place-section {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 2rem;
  align-items: start;
}

.cafe-section img,
.place-section img { border-radius: 28px; min-height: 320px; width: 100%; object-fit: cover; box-shadow: var(--shadow); }

.check-list {
  padding: 0;
  list-style: none;
  display: grid;
  gap: .55rem;
  color: var(--muted);
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: .1rem;
  display: grid;
  place-items: center;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: var(--lime);
  color: var(--green);
  content: "✓";
  font-size: .75rem;
  font-weight: 950;
}

.testimonials blockquote {
  margin: 0;
  padding: 1.3rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--text);
  box-shadow: 0 12px 28px rgba(29,31,32,.06);
}

.testimonials cite {
  display: block;
  margin-top: 1rem;
  color: var(--green);
  font-weight: 900;
  font-style: normal;
}

.booking {
  max-width: 960px;
}

.stepper {
  display: flex;
  gap: .5rem;
  margin-bottom: 1.5rem;
}

.stepper span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--green);
  font-weight: 950;
}

.stepper span.is-current { background: var(--green); color: var(--white); }

.wizard {
  padding: clamp(1rem, 4vw, 2rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.wizard-step { display: none; padding: 0; border: 0; margin: 0; }
.wizard-step.is-active { display: block; }
.wizard legend { margin-bottom: 1rem; color: var(--green); font-size: 1.7rem; font-weight: 950; }

.choice-grid,
.slot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
}

.choice-grid label,
.slot-grid label,
.checkbox-list label {
  display: block;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  cursor: pointer;
  background: var(--paper);
}

.choice-grid label.is-disabled {
  opacity: .52;
  cursor: not-allowed;
  background: var(--sage);
}

.choice-grid label.is-disabled small::after {
  content: " · indisponible pour une première visite";
}

.choice-grid input,
.slot-grid input { margin-right: .6rem; }
.choice-grid small { display: block; color: var(--muted); margin-left: 1.55rem; }

.slot-grid label span {
  display: inline-grid;
  gap: .15rem;
  vertical-align: top;
}

.slot-grid strong {
  color: var(--green);
}

.slot-grid small {
  color: var(--muted);
  font-weight: 750;
}

.slot-grid--days {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.day-slots {
  display: grid;
  gap: .55rem;
  padding: .85rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(234, 242, 227, .42);
}

.day-slots h3 {
  margin: 0 0 .25rem;
  font-size: 1.05rem;
}

.day-slots label {
  padding: .72rem .8rem;
  background: var(--white);
}

.agenda {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.agenda-day {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(234, 242, 227, .48);
}

.agenda-day h3 {
  margin-bottom: .1rem;
  text-transform: capitalize;
}

.agenda-day p {
  margin-bottom: .85rem;
  color: var(--green);
  font-weight: 850;
}

.agenda-day--subscription {
  max-width: 460px;
  background: var(--paper);
}

.agenda-day--workshop {
  padding: 0;
  background: var(--white);
}

.agenda-slots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .5rem;
}

.agenda-slot {
  display: block;
}

.agenda-slot input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.agenda-slot span {
  display: grid;
  place-items: center;
  min-height: 42px;
  padding: .55rem .4rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--green);
  font-weight: 850;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.agenda-slot input:checked + span {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.agenda-workshop {
  display: block;
  height: 100%;
}

.agenda-workshop input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.agenda-workshop span {
  display: grid;
  align-content: start;
  gap: .45rem;
  height: 100%;
  padding: 1rem;
  border: 2px solid transparent;
  border-radius: 18px;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}

.agenda-workshop small {
  color: var(--green);
  font-weight: 850;
}

.agenda-workshop strong {
  color: var(--text);
  line-height: 1.2;
  text-transform: uppercase;
}

.agenda-workshop em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.45;
}

.agenda-workshop input:checked + span {
  border-color: var(--green);
  background: rgba(234, 242, 227, .72);
}

.visit-status {
  display: grid;
  gap: .55rem;
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 16px;
  background: var(--sage);
  border: 1px solid var(--line);
}

.visit-status p {
  margin: 0;
  color: var(--green);
  font-weight: 900;
}

.visit-status label {
  display: flex;
  gap: .55rem;
  align-items: flex-start;
}

.visit-status input {
  width: auto;
  margin-top: .3rem;
}

.filters {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.filters button {
  border: 1px solid var(--line);
  background: var(--sage);
  color: var(--green);
  border-radius: 999px;
  padding: .6rem .85rem;
  cursor: pointer;
  font-weight: 850;
}

.form-grid,
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label { color: var(--green); font-weight: 850; }

input, select, textarea {
  width: 100%;
  margin-top: .35rem;
  padding: .85rem .9rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  color: var(--text);
}

textarea { min-height: 120px; resize: vertical; }
.full { grid-column: 1 / -1; }

.checkbox-list { display: grid; gap: .7rem; }
.checkbox-list input { width: auto; margin-right: .65rem; }

.form-note,
.reassurance {
  margin-top: 1rem;
  color: var(--green);
  font-weight: 850;
}

.wizard-actions {
  display: flex;
  justify-content: space-between;
  gap: .8rem;
  margin-top: 1.5rem;
}

.summary {
  padding: 1rem;
  background: var(--sage);
  border-radius: 16px;
}

.summary--center {
  max-width: 620px;
  margin: 1.2rem auto;
  text-align: left;
}

.card-payment {
  margin-top: 1.2rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
}

.card-payment h3 {
  margin-bottom: .35rem;
}

.card-types {
  display: grid;
  gap: .9rem;
  margin: .8rem 0 1rem;
}

.card-choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
}

.card-choice-group p {
  width: 100%;
  margin: 0;
  color: var(--green);
  font-weight: 900;
}

.card-choice {
  display: inline-flex;
  padding: .45rem .7rem;
  border-radius: 999px;
  background: var(--sage);
  color: var(--green);
  font-weight: 850;
  border: 1px solid var(--line);
  cursor: pointer;
}

.card-choice.is-active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.confirmation {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: 22px;
  background: var(--sage);
  border: 1px solid var(--line);
}

.story {
  max-width: 870px;
  font-size: 1.15rem;
}

.info-list {
  display: grid;
  gap: 1rem;
}

.info-list article,
.quick-answers p {
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--white);
}

.map-placeholder {
  min-height: 440px;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: .75rem;
  padding: .75rem;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.map-placeholder iframe {
  width: 100%;
  min-height: 380px;
  border: 0;
  border-radius: 20px;
}

.map-link {
  justify-self: start;
  color: var(--green);
  font-weight: 900;
}

.hours {
  width: 100%;
  border-collapse: collapse;
  color: var(--muted);
}

.hours th,
.hours td {
  padding: .45rem 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.quick-answers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.product { padding: 1rem; }

.product h2 {
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  white-space: nowrap;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.product-img {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 1rem;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 16px;
  color: var(--green);
  font-weight: 950;
  background:
    radial-gradient(circle at 30% 28%, rgba(191,252,0,.36), transparent 30%),
    linear-gradient(135deg, var(--sage), var(--wood));
}

.zoom-shirt {
  cursor: zoom-in;
}

.zoom-shirt:hover img {
  transform: scale(1.14);
}

.product-img--logo img {
  width: min(145px, 70%);
  max-height: 118px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(29, 31, 32, .12));
}

.product-img--shirt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: drop-shadow(0 12px 22px rgba(29, 31, 32, .14));
  transform: scale(1.08);
  transition: transform .2s ease;
}

.product strong { display: block; margin: .65rem 0; color: var(--green); }

.checkout-form {
  display: grid;
  gap: .9rem;
  padding: 1.2rem;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--line);
}

.shop-payment-panel {
  display: grid;
  gap: .75rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
}

.shop-payment-panel[hidden] {
  display: none;
}

.shop-payment-panel h3,
.shop-payment-panel p {
  margin-bottom: 0;
}

.cart-panel { padding: 1.2rem; }

.membership {
  max-width: 920px;
}

.membership-card {
  padding: clamp(1.5rem, 5vw, 3rem);
  border-radius: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.membership-price {
  display: block;
  margin: .4rem 0 1.2rem;
  color: var(--green);
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1;
}

.membership-equivalent {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1.2rem;
  padding: .55rem .8rem;
  border-radius: 999px;
  background: var(--sage);
  color: var(--green);
  font-weight: 900;
}

.account-hero {
  align-items: stretch;
}

.account-login {
  display: grid;
  align-content: center;
  gap: 1rem;
  min-height: 360px;
  padding: clamp(1.3rem, 4vw, 2rem);
}

.account-login h2 {
  margin-bottom: 0;
}

.account-login[hidden],
.account-dashboard[hidden] {
  display: none;
}

.account-dashboard {
  display: grid;
  gap: 1.2rem;
}

.account-dashboard > .section {
  width: 100%;
  padding-block: clamp(2rem, 5vw, 3.5rem);
}

.account-dashboard .section--sage {
  padding-inline: clamp(1rem, 4vw, 2rem);
  border-radius: 28px;
}

.account-dashboard-head {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  align-items: end;
}

.account-card {
  display: grid;
  align-content: center;
  min-height: 320px;
  padding: clamp(1.3rem, 4vw, 2rem);
}

.account-card h2 {
  margin: .7rem 0 .35rem;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.account-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .7rem;
  margin-top: 1.3rem;
}

.account-stat-grid div {
  padding: .85rem;
  border-radius: 16px;
  background: var(--sage);
}

.account-stat-grid strong,
.account-stat-grid span {
  display: block;
}

.account-stat-grid strong {
  color: var(--green);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1;
}

.account-stat-grid span {
  color: var(--muted);
  font-weight: 850;
}

.account-selector {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.subscriber-pill {
  padding: .8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--green);
  font-weight: 900;
  cursor: pointer;
}

.subscriber-pill.is-active {
  background: var(--green);
  color: var(--white);
}

.account-tree-section {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 2rem;
  align-items: center;
}

.account-tree {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
}

.account-tree article {
  min-height: 230px;
  padding: 1.15rem;
  opacity: .62;
}

.account-tree article.is-unlocked,
.account-tree article.is-current {
  opacity: 1;
}

.account-tree article.is-current {
  border-color: rgba(191, 252, 0, .72);
  box-shadow: 0 18px 38px rgba(29,31,32,.12);
}

.account-tree article.is-locked {
  filter: saturate(.75);
}

.account-tree span {
  display: inline-flex;
  margin-bottom: .8rem;
  padding: .35rem .6rem;
  border-radius: 999px;
  background: var(--sage);
  color: var(--green);
  font-size: .88rem;
  font-weight: 950;
}

.account-tree h3 {
  margin-bottom: .7rem;
}

.skill-status {
  position: relative;
}

.skill-status span {
  display: inline-flex;
  margin-bottom: .75rem;
  padding: .32rem .58rem;
  border-radius: 999px;
  color: var(--green);
  background: var(--sage);
  font-size: .82rem;
  font-weight: 950;
}

.skill-status.is-locked {
  opacity: .68;
}

.skill-status.is-locked span {
  color: var(--brown);
  background: var(--wood);
}

.product-detail {
  grid-template-columns: .85fr 1.15fr;
}

.product-photo {
  display: grid;
  place-items: center;
  min-height: 440px;
  border-radius: 32px;
  text-align: center;
  color: var(--green);
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 950;
  background:
    radial-gradient(circle at 50% 35%, rgba(191,252,0,.58), transparent 18%),
    radial-gradient(circle at 35% 55%, rgba(191,252,0,.34), transparent 24%),
    linear-gradient(135deg, var(--sage), var(--wood));
  box-shadow: var(--shadow);
}

.checkout-steps h2 {
  font-size: 1.25rem;
}

.confirmation-page {
  min-height: 58vh;
  display: grid;
  align-content: center;
}

.confirmation-logo,
.contact-logo {
  width: min(150px, 48vw);
  margin: 0 auto 1.2rem;
}

.contact-logo {
  margin-inline: 0;
  width: 118px;
}

.faq-list {
  max-width: 900px;
}

details {
  padding: 1rem 1.1rem;
  margin-bottom: .8rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

summary {
  color: var(--green);
  cursor: pointer;
  font-weight: 950;
}

details p { margin: .8rem 0 0; }

.contact-form {
  padding: 1.25rem;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-card {
  padding: 1.4rem;
  position: sticky;
  top: 6rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr 1fr;
  gap: 1.2rem;
  align-items: start;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}

.footer-logo { width: 72px; }
.site-footer p { max-width: 420px; margin: 0; }
.site-footer nav { display: flex; gap: 1rem; flex-wrap: wrap; }
.site-footer a { color: var(--green); font-weight: 850; text-decoration: none; }

.footer-info p { margin-bottom: .6rem; }
.newsletter { display: grid; gap: .6rem; }

.image-zoom {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(29, 31, 32, .86);
}

.image-zoom[hidden] {
  display: none;
}

.image-zoom img {
  max-width: min(92vw, 920px);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 20px;
  background: var(--paper);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .28);
}

.image-zoom__close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 50%;
  background: var(--paper);
  color: var(--green);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

@media (max-width: 1060px) {
  .header-cta { display: none; }
  .site-header { grid-template-columns: auto auto; justify-content: space-between; }
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 72px 1rem auto 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: .8rem 1rem; }
}

@media (max-width: 900px) {
  .hero,
  .subhero,
  .skill-section,
  .cafe-section,
  .visit-layout,
  .contact-layout,
  .checkout-layout,
  .place-section,
  .product-detail,
  .account-tree-section,
  .site-footer {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; }
  .hero-visual, .hero-visual img { min-height: 360px; }
  #page-discover .subhero img { transform: none; }
  .grid--3,
  .grid--4,
  .grid--5,
  .offers,
  .shop-grid,
  .quick-answers,
  .level-row,
  .account-tree,
  .agenda {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .skill-tree { grid-template-columns: 1fr; }
  .skill-tree article { min-height: 112px; }
}

@media (max-width: 620px) {
  .brand span { display: none; }
  h1 { font-size: 2.3rem; }
  .split-heading { display: block; }
  .grid--3,
  .grid--4,
  .grid--5,
  .offers,
  .shop-grid,
  .quick-answers,
  .level-row,
  .account-tree,
  .account-stat-grid,
  .agenda,
  .choice-grid,
  .slot-grid,
  .form-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }
  .section--sage { padding-inline: 1rem; }
  .section--wood, .cta-band { border-radius: 22px; }
  .account-dashboard-head { display: grid; align-items: start; }
  .account-dashboard-head .btn { width: 100%; }
  .wizard-actions { flex-direction: column-reverse; }
  .wizard-actions .btn { width: 100%; }
  .site-footer { display: block; }
  .site-footer nav { margin-top: 1rem; }
}
