@import url("../colors_and_type.css");

:root {
  --retreat-ink: #090907;
  --retreat-ink-soft: #12110f;
  --retreat-cream: #f5eddc;
  --retreat-sand: #dcc59d;
  --retreat-sand-deep: #c6a979;
  --retreat-bronze: #b8834f;
  --retreat-bronze-light: #ddb57c;
  --retreat-blue: #a7cbd7;
  --retreat-blue-deep: #243f49;
  --retreat-text: #2b241c;
  --retreat-muted: #675b4c;
  --retreat-line-dark: rgba(245, 237, 220, 0.16);
  --retreat-line-light: rgba(43, 36, 28, 0.16);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  background: var(--retreat-ink);
}

body {
  margin: 0;
  background: var(--retreat-ink);
  color: var(--retreat-cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }

.shell {
  width: min(1240px, calc(100% - 64px));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 500;
  padding: 12px 16px;
  background: var(--retreat-cream);
  color: var(--retreat-ink);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus { transform: translateY(0); }

.scroll-line {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 400;
  height: 2px;
  background: rgba(255,255,255,.05);
}

.scroll-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--retreat-bronze-light);
  transform: scaleX(0);
  transform-origin: left center;
}

.retreat-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 300;
  width: min(1320px, calc(100% - 40px));
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 10px 14px 10px 22px;
  border: 1px solid rgba(245, 237, 220, .18);
  background: rgba(9, 9, 7, .78);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  transform: translateX(-50%);
  transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.retreat-header.is-scrolled {
  background: rgba(9, 9, 7, .96);
  border-color: rgba(184, 131, 79, .42);
  box-shadow: 0 22px 60px -32px rgba(0,0,0,.95);
}

.retreat-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.retreat-header__mark {
  width: 26px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(184, 131, 79, .32));
}

.retreat-header__wordmark {
  width: clamp(155px, 15vw, 220px);
  height: auto;
}

.retreat-header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.retreat-header__nav a {
  position: relative;
  color: rgba(245, 237, 220, .76);
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.retreat-header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: .2em;
  bottom: -9px;
  height: 1px;
  background: var(--retreat-bronze-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.retreat-header__nav a:hover,
.retreat-header__nav a:focus-visible { color: var(--retreat-cream); }
.retreat-header__nav a:hover::after,
.retreat-header__nav a:focus-visible::after { transform: scaleX(1); }

.header-inquiry {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid rgba(255, 231, 190, .42);
  background: linear-gradient(180deg, #d1a067, #a96f3e);
  color: #0b0907;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, filter 160ms ease;
}

.header-inquiry:hover,
.header-inquiry:focus-visible { transform: translateY(-2px); filter: brightness(1.08); }

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--retreat-line-dark);
  background: transparent;
  cursor: pointer;
}

.menu-button > span:last-child,
.menu-button > span:last-child::before,
.menu-button > span:last-child::after {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--retreat-cream);
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-button > span:last-child { position: relative; margin: auto; }
.menu-button > span:last-child::before,
.menu-button > span:last-child::after { content: ""; position: absolute; left: 0; }
.menu-button > span:last-child::before { top: -6px; }
.menu-button > span:last-child::after { top: 6px; }
.menu-button[aria-expanded="true"] > span:last-child { background: transparent; }
.menu-button[aria-expanded="true"] > span:last-child::before { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded="true"] > span:last-child::after { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 250;
  padding: 130px 32px 40px;
  background:
    radial-gradient(600px 400px at 100% 0, rgba(184,131,79,.2), transparent 65%),
    #090907;
  flex-direction: column;
  gap: 18px;
}

.mobile-menu:not([hidden]) { display: flex; }

.mobile-menu > a {
  padding: 12px 0;
  border-bottom: 1px solid var(--retreat-line-dark);
  font-family: var(--font-heading);
  font-size: clamp(26px, 8vw, 40px);
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-menu .mobile-menu__cta {
  margin-top: 12px;
  padding: 17px 18px;
  border: 0;
  background: var(--retreat-bronze);
  color: var(--retreat-ink);
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-align: center;
}

.mobile-menu .mobile-menu__back {
  margin-top: auto;
  border: 0;
  color: var(--retreat-blue);
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: .18em;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: #8c653f;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .3em;
  line-height: 1.4;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  flex: 0 0 36px;
  height: 1px;
  background: currentColor;
}

.kicker--blue { color: var(--retreat-blue); }

.retreat-hero {
  position: relative;
  min-height: 100svh;
  padding: 148px 0 42px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(820px 520px at 8% 78%, rgba(36,63,73,.52), transparent 67%),
    radial-gradient(740px 460px at 92% 12%, rgba(184,131,79,.23), transparent 66%),
    linear-gradient(180deg, #0b0b09, #080807);
}

.retreat-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.retreat-hero__texture {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .12;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.retreat-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(460px, 1.06fr);
  align-items: center;
  gap: clamp(54px, 7vw, 108px);
}

.retreat-hero__copy { position: relative; z-index: 2; padding: 44px 0; }

.retreat-hero h1 {
  max-width: 10.5ch;
  margin: 28px 0 26px;
  color: #fff7e8;
  font-family: var(--font-heading);
  font-size: clamp(52px, 6.2vw, 88px);
  font-weight: 600;
  letter-spacing: -.015em;
  line-height: .99;
  text-transform: uppercase;
  text-wrap: balance;
}

.retreat-hero h1 em {
  color: var(--retreat-bronze-light);
  font-style: normal;
}

.retreat-hero__lead {
  max-width: 39ch;
  margin: 0 0 15px;
  color: var(--retreat-cream);
  font-size: clamp(19px, 1.7vw, 23px);
  font-weight: 650;
  line-height: 1.5;
}

.retreat-hero__body {
  max-width: 50ch;
  margin: 0;
  color: rgba(245,237,220,.7);
  font-size: 15px;
}

.retreat-hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.cta-primary {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 0 26px;
  border: 1px solid rgba(255,231,190,.42);
  background: linear-gradient(180deg, #d4a66c, #aa7040);
  color: #0b0907;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .17em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
}

.cta-primary:hover,
.cta-primary:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 22px 50px -25px rgba(221,181,124,.8);
}
.cta-primary:active { transform: translateY(0) scale(.99); }

.cta-primary--wide { width: 100%; }

.cta-text {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(245,237,220,.82);
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-decoration: none;
  text-transform: uppercase;
}

.cta-text:hover,
.cta-text:focus-visible { color: var(--retreat-blue); }

.retreat-hero__micro {
  margin: 16px 0 0;
  color: rgba(245,237,220,.46);
  font-size: 11px;
}

.retreat-hero__visual {
  position: relative;
  min-height: min(690px, calc(100svh - 205px));
  border: 1px solid rgba(221,181,124,.38);
  overflow: visible;
  box-shadow: 0 46px 100px -36px rgba(0,0,0,.94);
}

.retreat-hero__visual::before,
.retreat-hero__visual::after {
  content: "";
  position: absolute;
  z-index: 3;
  width: 44px;
  height: 44px;
  pointer-events: none;
}

.retreat-hero__visual::before { top: 14px; left: 14px; border-top: 1px solid var(--retreat-bronze-light); border-left: 1px solid var(--retreat-bronze-light); }
.retreat-hero__visual::after { right: 14px; bottom: 14px; border-right: 1px solid var(--retreat-bronze-light); border-bottom: 1px solid var(--retreat-bronze-light); }

.retreat-hero__visual > img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 55% center;
}

.retreat-hero__visual-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9,9,7,.06), rgba(9,9,7,0) 42%, rgba(9,9,7,.62)),
    radial-gradient(70% 50% at 100% 0, rgba(221,181,124,.16), transparent 70%);
}

.retreat-hero__stamp {
  position: absolute;
  left: -34px;
  bottom: 48px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 17px 20px;
  border: 1px solid rgba(221,181,124,.48);
  background: rgba(9,9,7,.9);
  color: var(--retreat-cream);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  line-height: 1.55;
  text-transform: uppercase;
}

.retreat-hero__stamp span:nth-child(2) { color: var(--retreat-blue); }
.retreat-hero__stamp span:nth-child(3) { color: var(--retreat-bronze-light); }

.retreat-hero__edition {
  position: absolute;
  top: 26px;
  right: -28px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(221,181,124,.42);
  background: rgba(9,9,7,.91);
  color: var(--retreat-cream);
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.retreat-hero__edition-dot { width: 7px; height: 7px; border-radius: 50%; background: #93b775; box-shadow: 0 0 12px rgba(147,183,117,.65); }

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 36px;
  border-top: 1px solid var(--retreat-line-dark);
  border-bottom: 1px solid var(--retreat-line-dark);
}

.hero-facts > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  min-height: 78px;
  padding: 10px clamp(18px, 3vw, 36px);
  border-right: 1px solid var(--retreat-line-dark);
}

.hero-facts > div:last-child { border-right: 0; }
.hero-facts strong { color: var(--retreat-bronze-light); font-family: var(--font-heading); font-size: 28px; font-weight: 500; }
.hero-facts span { color: rgba(245,237,220,.62); font-size: 12px; }

.light-section {
  position: relative;
  padding: 132px 0;
  background:
    radial-gradient(760px 420px at 95% 0, rgba(167,203,215,.22), transparent 68%),
    linear-gradient(180deg, #f4ead7, #e8d6b7);
  color: var(--retreat-text);
}

.dark-section {
  position: relative;
  padding: 132px 0;
  background:
    radial-gradient(740px 460px at 8% 100%, rgba(36,63,73,.45), transparent 65%),
    #0a0a08;
}

.section-heading h2,
.inclusions-intro h2,
.experience-grid__copy h2,
.mirko-copy h2,
.offer-copy h2,
.faq-intro h2,
.inquiry-copy h2 {
  margin: 22px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(38px, 4.6vw, 65px);
  font-weight: 600;
  letter-spacing: -.015em;
  line-height: 1.08;
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

.section-heading h2 em,
.inclusions-intro h2 em,
.experience-grid__copy h2 em,
.mirko-copy h2 em,
.offer-copy h2 em,
.faq-intro h2 em,
.inquiry-copy h2 em {
  color: var(--retreat-bronze);
  font-style: normal;
}

.section-heading--center { max-width: 970px; margin: 0 auto; text-align: center; }
.section-heading--center .kicker { justify-content: center; }
.section-heading--center > p:last-child { max-width: 68ch; margin: 26px auto 0; color: var(--retreat-muted); font-size: 17px; }
.light-section .section-heading h2 { color: var(--retreat-text); }
.light-section h2 em { color: #8c5c34; }
.light-section .kicker { color: #76502f; }

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 72px;
  background: var(--retreat-line-light);
  border: 1px solid var(--retreat-line-light);
}

.signal-grid article { min-height: 285px; padding: 36px; background: rgba(250,245,233,.64); }
.signal-grid article > span { color: #926c47; font-family: var(--font-label); font-size: 10px; font-weight: 800; letter-spacing: .22em; }
.signal-grid h3 { margin: 62px 0 14px; color: var(--retreat-text); font-family: var(--font-heading); font-size: 23px; line-height: 1.25; text-transform: uppercase; }
.signal-grid p { margin: 0; color: var(--retreat-muted); font-size: 14px; }

.positioning-callout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  max-width: 920px;
  margin: 66px auto 0;
  padding: 34px 40px;
  border-top: 1px solid rgba(43,36,28,.28);
  border-bottom: 1px solid rgba(43,36,28,.28);
}

.positioning-callout__symbol { color: var(--retreat-bronze); font-size: 30px; }
.positioning-callout h3 { margin: 0 0 6px; font-family: var(--font-heading); font-size: 25px; text-transform: uppercase; }
.positioning-callout p { margin: 0; color: var(--retreat-muted); }

.section-heading--split {
  display: grid;
  grid-template-columns: 1fr .82fr;
  align-items: end;
  gap: clamp(48px, 8vw, 120px);
}

.section-heading--split h2 { font-size: clamp(36px, 3.8vw, 54px); }
.section-heading--split > p { max-width: 55ch; margin: 0 0 8px; color: rgba(245,237,220,.65); font-size: 17px; }

.method-track {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 76px 0 0;
  padding: 0;
  border-top: 1px solid var(--retreat-line-dark);
  border-bottom: 1px solid var(--retreat-line-dark);
}

.method-track li {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 24px 32px;
  border-right: 1px solid var(--retreat-line-dark);
  transition: background 180ms ease, transform 180ms ease;
}

.method-track li:last-child { border-right: 0; }
.method-track li:hover { background: rgba(221,181,124,.05); transform: translateY(-4px); }
.method-track__number { color: var(--retreat-bronze-light); font-family: var(--font-label); font-size: 10px; letter-spacing: .22em; }
.method-track h3 { margin: 0 0 14px; color: var(--retreat-cream); font-family: var(--font-heading); font-size: 23px; text-transform: uppercase; }
.method-track p { margin: 0; color: rgba(245,237,220,.58); font-size: 14px; }

.experience-section { padding: 116px 0; background: #12100d; }

.experience-grid {
  display: grid;
  grid-template-columns: 1.35fr .68fr .68fr;
  grid-template-rows: auto auto;
  gap: 18px;
}

.experience-grid figure { position: relative; margin: 0; overflow: hidden; background: #0b0b09; }
.experience-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(.2,.7,.2,1); }
.experience-grid figure:hover img { transform: scale(1.025); }
.experience-grid figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 44px 22px 18px; background: linear-gradient(transparent, rgba(8,8,7,.86)); color: rgba(245,237,220,.76); font-size: 12px; }
.experience-grid figcaption span { display: block; margin-bottom: 4px; color: var(--retreat-bronze-light); font-family: var(--font-label); font-size: 9px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.experience-grid__main { grid-row: 1 / span 2; min-height: 710px; }
.experience-grid__main img { object-position: 55% center; }
.experience-grid__portrait { min-height: 380px; }
.experience-grid__portrait img { object-position: center 48%; }
.experience-grid__copy { display: flex; flex-direction: column; justify-content: flex-end; min-height: 310px; padding: 30px; border: 1px solid var(--retreat-line-dark); background: linear-gradient(145deg, rgba(36,63,73,.46), rgba(9,9,7,.9)); }
.experience-grid__copy h2 { margin-top: 18px; font-size: clamp(30px, 3vw, 46px); }
.experience-grid__copy h2 em { color: var(--retreat-blue); }
.experience-grid__small { min-height: 310px; }
.experience-grid__small img { object-position: center 30%; }

.inclusions-layout { display: grid; grid-template-columns: .76fr 1.24fr; gap: clamp(58px, 8vw, 120px); align-items: start; }
.inclusions-intro { position: sticky; top: 125px; }
.inclusions-intro h2 { color: var(--retreat-text); font-size: clamp(38px, 4vw, 58px); }
.inclusions-intro > p:not(.kicker) { margin: 24px 0 30px; color: var(--retreat-muted); }
.inclusions-intro figure { position: relative; max-width: 390px; height: 430px; margin: 0; overflow: hidden; border: 1px solid rgba(43,36,28,.2); }
.inclusions-intro figure::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 10px rgba(245,237,220,.11); }
.inclusions-intro figure img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }

.inclusions-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--retreat-line-light); }
.inclusions-list li { display: grid; grid-template-columns: 58px minmax(0, 1fr); gap: 24px; padding: 26px 0; border-bottom: 1px solid var(--retreat-line-light); }
.inclusions-list li > span { color: #946d47; font-family: var(--font-label); font-size: 10px; font-weight: 800; letter-spacing: .22em; }
.inclusions-list h3 { margin: 0 0 5px; color: var(--retreat-text); font-family: var(--font-heading); font-size: 20px; line-height: 1.22; text-transform: uppercase; overflow-wrap: normal; word-break: normal; hyphens: manual; }
.inclusions-list p { margin: 0; color: var(--retreat-muted); font-size: 14px; }

.week-section {
  padding: 132px 0;
  background:
    linear-gradient(90deg, rgba(9,9,7,.97), rgba(9,9,7,.86) 58%, rgba(9,9,7,.72)),
    url("../assets/mirko-mobility-rotation-beach.jpg") right center / 48% auto fixed no-repeat,
    #090907;
}

.section-heading--week { padding-bottom: 60px; border-bottom: 1px solid var(--retreat-line-dark); }
.week-timeline { max-width: 970px; margin-top: 34px; }
.week-timeline article { display: grid; grid-template-columns: 115px 1fr; gap: 34px; padding: 30px 0; border-bottom: 1px solid var(--retreat-line-dark); }
.week-day { display: flex; align-items: baseline; gap: 12px; }
.week-day span { color: var(--retreat-blue); font-family: var(--font-label); font-size: 9px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.week-day strong { color: var(--retreat-bronze-light); font-family: var(--font-heading); font-size: 30px; font-weight: 500; }
.week-timeline h3 { margin: 0 0 6px; font-family: var(--font-heading); font-size: 22px; text-transform: uppercase; }
.week-timeline p { margin: 0; color: rgba(245,237,220,.6); }

.fit-section { padding-bottom: 104px; }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 68px; }
.fit-card { padding: clamp(32px, 4vw, 52px); border: 1px solid var(--retreat-line-light); background: rgba(250,246,236,.54); }
.fit-card--yes { border-top: 3px solid var(--retreat-bronze); }
.fit-card--no { border-top: 3px solid var(--retreat-blue-deep); }
.fit-card__label { margin: 0 0 30px; font-family: var(--font-heading); font-size: 21px; font-weight: 600; text-transform: uppercase; }
.fit-card ul { list-style: none; margin: 0; padding: 0; }
.fit-card li { position: relative; padding: 15px 0 15px 34px; border-bottom: 1px solid var(--retreat-line-light); color: var(--retreat-muted); }
.fit-card li:last-child { border-bottom: 0; }
.fit-card li::before { position: absolute; left: 0; top: 15px; color: var(--retreat-bronze); content: "✓"; font-weight: 800; }
.fit-card--no li::before { color: var(--retreat-blue-deep); content: "×"; }
.health-note { max-width: 90ch; margin: 38px auto 0; color: #716453; font-size: 12px; text-align: center; }

.mirko-section { padding: 132px 0; background: #0b0b09; }
.mirko-layout { display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: clamp(58px, 9vw, 130px); }
.mirko-image { position: relative; max-width: 440px; }
.mirko-image::before { content: ""; position: absolute; inset: -14px 14px 14px -14px; border: 1px solid rgba(221,181,124,.34); }
.mirko-image > img { position: relative; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 30%; }
.mirko-image__badge { position: absolute; right: -48px; bottom: 42px; display: flex; align-items: center; gap: 15px; padding: 17px 20px; border: 1px solid rgba(221,181,124,.44); background: rgba(9,9,7,.94); }
.mirko-image__badge strong { color: var(--retreat-bronze-light); font-family: var(--font-heading); font-size: 25px; }
.mirko-image__badge span { max-width: 12ch; color: var(--retreat-cream); font-family: var(--font-label); font-size: 9px; font-weight: 700; letter-spacing: .18em; line-height: 1.4; text-transform: uppercase; }
.mirko-copy h2 { max-width: none; font-size: clamp(36px, 4vw, 58px); }
.mirko-copy__lead { max-width: 54ch; margin: 28px 0 16px; color: var(--retreat-cream); font-size: 20px; font-weight: 600; }
.mirko-copy > p:not(.kicker):not(.mirko-copy__lead) { max-width: 60ch; margin: 0; color: rgba(245,237,220,.6); }
.authority-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 40px; background: var(--retreat-line-dark); border: 1px solid var(--retreat-line-dark); }
.authority-grid div { padding: 22px; background: #0d0d0b; }
.authority-grid strong { display: block; color: var(--retreat-bronze-light); font-family: var(--font-heading); font-size: 26px; font-weight: 500; }
.authority-grid span { color: rgba(245,237,220,.54); font-size: 11px; }

.offer-section { padding: 132px 0; background: linear-gradient(145deg, #152a31, #080807 62%); }
.offer-layout { display: grid; grid-template-columns: 1fr .84fr; align-items: center; gap: clamp(60px, 9vw, 130px); }
.offer-copy,
.price-panel { min-width: 0; }
.offer-copy h2 { font-size: clamp(36px, 3.8vw, 54px); }
.offer-copy > p:not(.kicker) { max-width: 57ch; margin: 28px 0 0; color: rgba(245,237,220,.63); font-size: 17px; }
.offer-principle { display: grid; grid-template-columns: auto 1fr; gap: 18px; max-width: 590px; margin-top: 36px; padding: 22px 0; border-top: 1px solid var(--retreat-line-dark); border-bottom: 1px solid var(--retreat-line-dark); }
.offer-principle span { color: var(--retreat-bronze-light); font-size: 24px; }
.offer-principle p { margin: 0; color: var(--retreat-cream); }

.price-panel { position: relative; padding: clamp(34px, 4vw, 50px); border: 1px solid rgba(221,181,124,.5); background: rgba(9,9,7,.88); box-shadow: 0 44px 90px -42px rgba(0,0,0,.95); }
.price-panel::before { content: "RETREAT"; position: absolute; top: 20px; right: -2px; color: rgba(221,181,124,.08); font-family: var(--font-heading); font-size: 54px; font-weight: 700; letter-spacing: .08em; writing-mode: vertical-rl; pointer-events: none; }
.price-panel__label { margin: 0; color: var(--retreat-blue); font-family: var(--font-label); font-size: 9px; font-weight: 800; letter-spacing: .24em; text-transform: uppercase; }
.price-panel__price { margin-top: 14px; color: var(--retreat-cream); font-family: var(--font-heading); font-size: clamp(48px, 5vw, 70px); font-weight: 600; letter-spacing: -.02em; line-height: 1; }
.price-panel__price small { color: var(--retreat-bronze-light); font-size: 19px; letter-spacing: .08em; }
.price-panel__per { margin: 8px 0 0; color: rgba(245,237,220,.62); font-size: 12px; }
.price-panel__regular { display: flex; justify-content: space-between; gap: 20px; margin-top: 26px; padding: 16px 0; border-top: 1px solid var(--retreat-line-dark); border-bottom: 1px solid var(--retreat-line-dark); color: rgba(245,237,220,.52); font-size: 12px; }
.price-panel__regular strong { color: var(--retreat-cream); }
.price-panel ul { list-style: none; margin: 26px 0; padding: 0; }
.price-panel li { position: relative; padding: 9px 0 9px 26px; color: rgba(245,237,220,.7); font-size: 14px; }
.price-panel li::before { position: absolute; left: 0; content: "✓"; color: var(--retreat-bronze-light); }
.price-panel__fineprint { margin: 16px 0 0; color: rgba(245,237,220,.62); font-size: 11px; text-align: center; }

.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(60px, 9vw, 130px); align-items: start; }
.faq-intro { position: sticky; top: 130px; }
.faq-intro h2 { color: var(--retreat-text); font-size: clamp(38px, 4vw, 58px); }
.faq-list { border-top: 1px solid var(--retreat-line-light); }
.faq-list details { border-bottom: 1px solid var(--retreat-line-light); }
.faq-list summary { list-style: none; display: flex; justify-content: space-between; gap: 24px; padding: 25px 0; color: var(--retreat-text); font-family: var(--font-heading); font-size: 18px; font-weight: 600; line-height: 1.4; text-transform: uppercase; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { flex: 0 0 auto; color: var(--retreat-bronze); font-family: var(--font-body); font-size: 25px; font-weight: 400; transition: transform 160ms ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 68ch; margin: -4px 44px 26px 0; color: var(--retreat-muted); }

.inquiry-section { position: relative; padding: 132px 0; overflow: hidden; background: #090907; }
.inquiry-section__backdrop { position: absolute; inset: 0; opacity: .18; background: linear-gradient(90deg, #090907 0%, #090907 35%, rgba(9,9,7,.5)), url("../assets/mirko-glute-bridge-beach.jpg") center / cover no-repeat; }
.inquiry-layout { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(60px, 9vw, 130px); }
.inquiry-copy { padding-top: 12px; }
.inquiry-copy h2 { max-width: 13ch; }
.inquiry-copy > p:not(.kicker) { max-width: 52ch; margin: 26px 0 0; color: rgba(245,237,220,.64); }
.inquiry-promise { display: grid; grid-template-columns: auto 1fr; gap: 10px 18px; margin-top: 32px; }
.inquiry-promise span { color: var(--retreat-bronze-light); font-family: var(--font-label); font-size: 9px; letter-spacing: .18em; }
.inquiry-promise p { margin: 0; color: rgba(245,237,220,.7); font-size: 13px; }

.whatsapp-panel {
  position: relative;
  padding: clamp(32px, 4.8vw, 58px);
  overflow: hidden;
  border: 1px solid rgba(221,181,124,.38);
  background: linear-gradient(145deg, rgba(28,31,25,.96), rgba(9,9,7,.94));
  box-shadow: 0 42px 90px -40px rgba(0,0,0,.95);
  backdrop-filter: blur(10px);
}
.whatsapp-panel::before {
  position: absolute;
  top: -90px;
  right: -80px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(221,181,124,.13);
  content: "";
  transform: rotate(18deg);
}
.whatsapp-panel__top { position: relative; display: flex; align-items: center; gap: 14px; }
.whatsapp-panel__icon { width: 44px; height: 44px; display: inline-grid; flex: 0 0 44px; place-items: center; border: 1px solid rgba(221,181,124,.42); color: var(--retreat-bronze-light); }
.whatsapp-panel__top > span:last-child { color: var(--retreat-blue); font-family: var(--font-label); font-size: 9px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.whatsapp-panel h3 { position: relative; max-width: 14ch; margin: 30px 0 16px; color: var(--retreat-cream); font-family: var(--font-heading); font-size: clamp(30px, 3.2vw, 46px); font-weight: 600; line-height: 1.08; text-transform: uppercase; }
.whatsapp-panel > p:not(.whatsapp-panel__fineprint) { position: relative; max-width: 50ch; margin: 0; color: rgba(245,237,220,.64); }
.whatsapp-preview { position: relative; margin: 30px 0 26px; padding: 21px 22px; border-left: 3px solid var(--retreat-bronze-light); background: rgba(245,237,220,.07); }
.whatsapp-preview span { color: rgba(245,237,220,.7); font-family: var(--font-label); font-size: 9px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.whatsapp-preview p { margin: 9px 0 0; color: rgba(245,237,220,.82); font-size: 13px; line-height: 1.6; }
.whatsapp-panel .cta-primary { position: relative; }
.whatsapp-panel__fineprint { position: relative; margin: 14px 0 0; color: rgba(245,237,220,.64); font-size: 11px; text-align: center; }

.retreat-footer { padding: 92px 0 26px; border-top: 1px solid var(--retreat-line-dark); background: #050504; text-align: center; }
.retreat-footer__brand { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.retreat-footer__brand img:first-child { width: 56px; height: 104px; object-fit: contain; }
.retreat-footer__brand img:last-child { width: min(360px, 80vw); height: auto; }
.retreat-footer > .shell > p { margin: 22px 0 0; color: var(--retreat-bronze-light); font-family: var(--font-heading); font-size: 18px; letter-spacing: .08em; text-transform: uppercase; }
.retreat-footer nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px 32px; margin-top: 44px; }
.retreat-footer nav a { color: rgba(245,237,220,.58); font-family: var(--font-label); font-size: 9px; font-weight: 700; letter-spacing: .18em; text-decoration: none; text-transform: uppercase; }
.retreat-footer nav a:hover,
.retreat-footer nav a:focus-visible { color: var(--retreat-bronze-light); }
.retreat-footer__bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 54px; padding-top: 20px; border-top: 1px solid var(--retreat-line-dark); color: rgba(245,237,220,.58); font-family: var(--font-label); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }

.mobile-sticky-cta { display: none; }

:focus-visible { outline: 2px solid var(--retreat-blue); outline-offset: 4px; }

@media (max-width: 1100px) {
  .retreat-header { grid-template-columns: auto 1fr auto; }
  .retreat-header__nav { display: none; }
  .header-inquiry { justify-self: end; }
  .menu-button { display: block; }
  .retreat-hero__grid { grid-template-columns: 1fr 1fr; gap: 42px; }
  .retreat-hero__stamp { left: -18px; }
  .retreat-hero__edition { right: -12px; }
  .method-track { grid-template-columns: repeat(3, 1fr); }
  .method-track li:nth-child(3) { border-right: 0; }
  .method-track li:nth-child(-n+3) { border-bottom: 1px solid var(--retreat-line-dark); }
  .method-track li:nth-child(4) { grid-column: 1 / 2; }
  .experience-grid { grid-template-columns: 1.2fr .8fr; }
  .experience-grid__main { min-height: 640px; }
  .experience-grid__copy { min-height: 300px; }
  .experience-grid__small { min-height: 300px; }
  .inclusions-layout { grid-template-columns: .7fr 1.3fr; gap: 54px; }
}

@media (max-width: 820px) {
  .shell { width: min(calc(100% - 36px), 680px); }
  .section-heading--split,
  .inclusions-layout,
  .mirko-layout,
  .offer-layout,
  .faq-layout,
  .inquiry-layout { grid-template-columns: minmax(0, 1fr); }
  .section-heading--split > *,
  .inclusions-layout > *,
  .mirko-layout > *,
  .offer-layout > *,
  .faq-layout > *,
  .inquiry-layout > * { min-width: 0; }
  .retreat-header { top: 10px; width: calc(100% - 20px); min-height: 66px; padding: 8px 10px 8px 16px; }
  .retreat-header__mark { width: 22px; height: 40px; }
  .retreat-header__wordmark { width: 150px; }
  .header-inquiry { display: none; }
  .retreat-hero { min-height: 0; padding-top: 116px; }
  .retreat-hero__grid { grid-template-columns: 1fr; gap: 20px; }
  .retreat-hero__copy { padding: 20px 0 30px; }
  .retreat-hero h1 { font-size: clamp(45px, 12.8vw, 70px); }
  .retreat-hero__visual { min-height: 620px; }
  .retreat-hero__visual > img { object-position: 58% center; }
  .hero-facts { margin-top: 24px; }
  .hero-facts > div { grid-template-columns: 1fr; gap: 0; min-height: 90px; padding: 12px 16px; }
  .hero-facts strong { font-size: 25px; }
  .hero-facts span { font-size: 10px; }
  .light-section, .dark-section, .week-section, .mirko-section, .offer-section, .inquiry-section { padding: 94px 0; }
  .section-heading--split { grid-template-columns: 1fr; gap: 28px; }
  .signal-grid { grid-template-columns: 1fr; }
  .signal-grid article { min-height: auto; }
  .signal-grid h3 { margin-top: 38px; }
  .method-track { grid-template-columns: 1fr; }
  .method-track li { min-height: 230px; border-right: 0; border-bottom: 1px solid var(--retreat-line-dark); }
  .method-track li:nth-child(4) { grid-column: auto; }
  .method-track li:last-child { border-bottom: 0; }
  .experience-grid { grid-template-columns: 1fr 1fr; }
  .experience-grid__main { grid-column: 1 / -1; grid-row: auto; min-height: 470px; }
  .experience-grid__portrait { min-height: 390px; }
  .experience-grid__copy { min-height: 390px; }
  .experience-grid__small { grid-column: 1 / -1; min-height: 380px; }
  .inclusions-layout { grid-template-columns: 1fr; }
  .inclusions-intro { position: static; }
  .inclusions-intro figure { max-width: none; height: 460px; }
  .week-section { background: linear-gradient(90deg, rgba(9,9,7,.96), rgba(9,9,7,.87)), url("../assets/mirko-mobility-rotation-beach.jpg") center / cover no-repeat, #090907; }
  .fit-grid { grid-template-columns: 1fr; }
  .mirko-layout { grid-template-columns: 1fr; }
  .mirko-image { max-width: 520px; margin-inline: auto; }
  .mirko-image__badge { right: 12px; bottom: 18px; }
  .mirko-copy h2 { max-width: none; }
  .offer-layout { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-intro { position: static; }
  .inquiry-layout { grid-template-columns: 1fr; }
  .inquiry-copy { position: static; }
  .mobile-sticky-cta { position: fixed; left: 12px; right: 12px; bottom: max(12px, env(safe-area-inset-bottom)); z-index: 200; min-height: 54px; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 0 18px; border: 1px solid rgba(255,231,190,.42); background: linear-gradient(180deg, #d4a66c, #aa7040); color: #0b0907; font-family: var(--font-label); font-size: 9px; font-weight: 800; letter-spacing: .11em; opacity: 0; pointer-events: none; text-decoration: none; text-transform: uppercase; transform: translateY(calc(100% + 28px)); transition: opacity 180ms ease, transform 180ms ease; box-shadow: 0 18px 50px rgba(0,0,0,.46); }
  .mobile-sticky-cta.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .retreat-footer { padding-bottom: 94px; }
}

@media (max-width: 560px) {
  .retreat-header__wordmark { width: 132px; }
  .kicker { max-width: 100%; gap: 10px; letter-spacing: .16em; line-height: 1.55; overflow-wrap: normal; word-break: normal; text-wrap: balance; }
  .kicker::before { flex-basis: 24px; }
  .light-section, .dark-section, .week-section, .mirko-section, .offer-section, .inquiry-section { padding: 76px 0; }
  .section-heading h2,
  .inclusions-intro h2,
  .experience-grid__copy h2,
  .mirko-copy h2,
  .offer-copy h2,
  .faq-intro h2,
  .inquiry-copy h2 { font-size: clamp(28px, 8.4vw, 36px); line-height: 1.12; }
  .retreat-hero__actions { align-items: stretch; flex-direction: column; }
  .cta-primary { width: 100%; }
  .cta-text { justify-content: center; min-height: 40px; }
  .retreat-hero__visual { min-height: 500px; }
  .retreat-hero__stamp { left: 12px; bottom: 16px; }
  .retreat-hero__edition { top: 16px; right: 12px; }
  .hero-facts { grid-template-columns: 1fr; }
  .hero-facts > div { grid-template-columns: 60px 1fr; min-height: 62px; border-right: 0; border-bottom: 1px solid var(--retreat-line-dark); }
  .hero-facts > div:last-child { border-bottom: 0; }
  .positioning-callout { grid-template-columns: 1fr; padding-inline: 10px; }
  .experience-grid { grid-template-columns: 1fr; }
  .experience-grid__main,
  .experience-grid__portrait,
  .experience-grid__copy,
  .experience-grid__small { grid-column: auto; min-height: 430px; }
  .experience-grid__copy { min-height: 340px; }
  .inclusions-list li { grid-template-columns: 36px minmax(0, 1fr); gap: 12px; }
  .inclusions-list h3 { font-size: 18px; }
  .week-timeline article { grid-template-columns: 1fr; gap: 10px; }
  .fit-card { padding: 28px 22px; }
  .mirko-image__badge { right: 10px; bottom: 14px; }
  .authority-grid { grid-template-columns: 1fr; }
  .price-panel { padding: 32px 22px; }
  .price-panel__regular { flex-direction: column; gap: 4px; }
  .faq-list summary { font-size: 16px; }
  .whatsapp-panel { padding: 30px 22px; }
  .whatsapp-panel h3 { max-width: 12ch; }
  .whatsapp-preview { padding: 18px; }
  .retreat-footer__bottom { align-items: center; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .week-section { background-attachment: scroll; }
}
