@import url("./mtt-active-cic.css?v=1.0.10");

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/barlow-condensed-500.ttf") format("truetype");
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/barlow-condensed-600.ttf") format("truetype");
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/barlow-condensed-700.ttf") format("truetype");
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/barlow-condensed-800.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/manrope-400.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/manrope-500.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/manrope-600.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/manrope-700.ttf") format("truetype");
}

:root {
  color-scheme: dark;
  --bg: #111318;
  --bg-soft: #161920;
  --surface: #1b1f27;
  --surface-strong: #222730;
  --text: #f2f0f4;
  --muted: #cbc7cf;
  --quiet: #a6a1aa;
  --line: rgba(242, 240, 244, 0.16);
  --line-strong: rgba(242, 240, 244, 0.34);
  --accent: #b8a9c9;
  --accent-strong: #d2c4df;
  --accent-ink: #111217;
  --danger: #f0a8ae;
  --success: #bdd6b4;
  --header-bg: rgba(17, 19, 24, 0.86);
  --shell: min(1340px, calc(100vw - 96px));
  --header-height: 72px;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Manrope", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  background: var(--bg);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid var(--accent-strong);
  outline-offset: 4px;
}

::selection {
  background: var(--accent);
  color: var(--accent-ink);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 700;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: clamp(104px, 9vw, 148px);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.9;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(3.8rem, 6.3vw, 6.8rem);
}

h3 {
  font-size: clamp(2.5rem, 4.2vw, 4.6rem);
}

.section-intro {
  max-width: 1050px;
  margin-bottom: clamp(56px, 6vw, 86px);
}

.section-intro p {
  max-width: 570px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  padding: 14px 24px;
  background: transparent;
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 300ms var(--ease), border-color 300ms var(--ease), color 300ms var(--ease);
}

.button-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--accent-ink);
}

.button-primary:hover {
  border-color: var(--accent-strong);
  background: var(--accent-strong);
}

.button-outline:hover,
.button-small:hover {
  border-color: var(--text);
  background: var(--text);
  color: var(--bg);
}

.button:active {
  transform: translateY(1px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.button-small {
  min-height: 38px;
  padding: 10px 16px;
  font-size: 0.67rem;
}

.text-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-bottom: 1px solid var(--line-strong);
  padding-inline: 3px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 300ms var(--ease), color 300ms var(--ease);
}

.text-link:hover {
  border-color: var(--accent-strong);
  color: var(--accent-strong);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  border-bottom: 1px solid transparent;
  padding-block: 10px;
  transition: background-color 350ms var(--ease), border-color 350ms var(--ease);
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: var(--header-bg);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
}

.header-inner {
  display: grid;
  min-height: calc(var(--header-height) - 20px);
  grid-template-columns: 116px 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand,
.brand img {
  width: 84px;
}

.brand {
  position: relative;
  z-index: 45;
  display: inline-flex;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.8vw, 42px);
}

.primary-nav a,
.primary-nav button,
.site-footer nav a,
.site-footer nav button,
.footer-legal a {
  position: relative;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.primary-nav a::after,
.primary-nav button::after,
.site-footer nav a::after,
.site-footer nav button::after,
.footer-legal a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: currentColor;
  content: "";
  transition: transform 320ms var(--ease);
}

.primary-nav a:hover::after,
.primary-nav button:hover::after,
.site-footer nav a:hover::after,
.site-footer nav button:hover::after,
.footer-legal a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: rgba(17, 19, 24, 0.76);
  color: var(--text);
  font-size: 1.35rem;
  cursor: pointer;
}

.menu-toggle [data-menu-close-icon] {
  display: none;
}

.menu-open .menu-toggle [data-menu-open-icon] {
  display: none;
}

.menu-open .menu-toggle [data-menu-close-icon] {
  display: block;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100dvh;
  overflow: hidden;
  padding-top: var(--header-height);
  background: var(--bg);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  margin: 0;
  overflow: hidden;
  background: var(--surface);
}

.hero-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, #111318 0%, rgba(17, 19, 24, 0.94) 25%, rgba(17, 19, 24, 0.61) 45%, rgba(17, 19, 24, 0.08) 72%, rgba(17, 19, 24, 0) 100%),
    linear-gradient(180deg, rgba(17, 19, 24, 0.12) 0%, transparent 46%, rgba(17, 19, 24, 0.25) 100%);
  content: "";
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: calc(100dvh - var(--header-height));
  align-items: center;
}

.hero-copy {
  width: min(610px, 49vw);
  padding-block: clamp(68px, 8vw, 110px);
}

.hero-principles {
  margin: 0 0 28px;
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.055em;
}

.hero h1 {
  font-size: clamp(5rem, 7.2vw, 7.8rem);
  line-height: 0.83;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

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

.hero-intro {
  max-width: 47ch;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.24vw, 1.14rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.routes {
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.route-list {
  border-top: 1px solid var(--line-strong);
}

.route-row {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 164px;
  overflow: hidden;
  grid-template-columns: 76px minmax(0, 1fr) 154px;
  align-items: center;
  gap: clamp(22px, 3vw, 46px);
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 26px clamp(20px, 2.2vw, 34px);
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  isolation: isolate;
  transition: background-color 420ms var(--ease);
}

.route-row::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(17, 19, 24, 0.98) 0%, rgba(17, 19, 24, 0.9) 42%, rgba(17, 19, 24, 0.36) 72%, rgba(17, 19, 24, 0.03) 100%);
  content: "";
  pointer-events: none;
}

.route-row:hover {
  background: var(--surface);
}

.route-icon,
.route-copy,
.route-action {
  position: relative;
  z-index: 2;
}

.route-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(210, 196, 223, 0.52);
  color: var(--accent-strong);
  font-size: 1.85rem;
}

.route-copy {
  display: grid;
  gap: 10px;
  max-width: 760px;
}

.route-copy strong {
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.55rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 0.92;
  white-space: nowrap;
  text-transform: uppercase;
}

.route-copy > span {
  max-width: 54ch;
  color: var(--muted);
  font-size: 0.88rem;
}

.route-action {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  color: var(--accent-strong);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.route-action i {
  font-size: 1.45rem;
}

.route-media {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: -2;
  width: min(46%, 620px);
  overflow: hidden;
  background: var(--surface-strong);
}

.route-media::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(17, 19, 24, 0.8) 20%, rgba(17, 19, 24, 0.3) 48%, transparent 76%),
    linear-gradient(180deg, rgba(17, 19, 24, 0.02), rgba(17, 19, 24, 0.12));
  content: "";
  pointer-events: none;
}

.route-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.94;
}

.session {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  padding-block: clamp(112px, 10vw, 164px);
  background: var(--bg-soft);
}

.session-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: clamp(60px, 7vw, 108px);
}

.session-copy {
  min-width: 0;
}

.session-eyebrow {
  margin: 0 0 32px;
  color: var(--accent-strong);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.session-copy h2 {
  max-width: 7.4ch;
  font-size: clamp(4.4rem, 6.5vw, 7.5rem);
  line-height: 0.82;
}

.session-copy h2 span {
  display: block;
  white-space: nowrap;
}

.large-copy {
  max-width: 530px;
  margin: 40px 0 0;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.4vw, 1.22rem);
  line-height: 1.7;
}

.session-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 30px);
  margin: 42px 0 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
  padding: 30px 0 28px;
  list-style: none;
}

.session-facts li {
  min-width: 0;
}

.session-facts i {
  display: block;
  margin-bottom: 18px;
  color: var(--accent-strong);
  font-size: 1.9rem;
}

.session-facts strong,
.session-facts span {
  display: block;
}

.session-facts strong {
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(1.08rem, 1.35vw, 1.6rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 0.95;
  white-space: nowrap;
  text-transform: uppercase;
}

.session-facts span {
  margin-top: 8px;
  color: var(--quiet);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  line-height: 1.35;
  text-transform: uppercase;
}

.session-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
}

.session-actions p {
  max-width: 190px;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.running-club-feature {
  display: grid;
  min-width: 0;
  gap: 24px;
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.running-club-panel {
  display: grid;
  gap: clamp(20px, 2.2vw, 28px);
  padding: clamp(30px, 3.2vw, 46px);
  border-radius: 2px;
  background: var(--accent);
  color: var(--accent-ink);
}

.running-club-kicker {
  margin: 0;
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.running-club-panel h3 {
  max-width: 9ch;
  font-size: clamp(3.5rem, 4.8vw, 5.6rem);
  line-height: 0.84;
}

.running-club-intro {
  max-width: 48ch;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.55;
}

.running-club-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.running-club-benefits li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.4;
}

.running-club-benefits i {
  font-size: 1rem;
  font-weight: 800;
}

.running-club-button {
  width: fit-content;
  margin-top: 0;
  border-color: var(--accent-ink);
  background: var(--accent-ink);
  color: var(--text);
}

.running-club-button:hover {
  border-color: var(--surface-strong);
  background: var(--surface-strong);
}

.running-club-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin: 0;
  border-radius: 2px;
  background: var(--surface);
}

.running-club-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 19, 24, 0.02), rgba(17, 19, 24, 0.18));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  content: "";
  pointer-events: none;
}

.running-club-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
}

.media-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--surface);
}

.media-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  content: "";
  pointer-events: none;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wellbeing-intro {
  max-width: none;
}

.wellbeing-intro h2 {
  max-width: none;
  font-size: clamp(3.8rem, 5.4vw, 5.6rem);
}

.wellbeing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: stretch;
  gap: clamp(42px, 6vw, 84px);
}

.wellbeing-media {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  aspect-ratio: 4 / 3;
}

.wellbeing-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, transparent 58%, rgba(17, 19, 24, 0.34) 100%);
  content: "";
  pointer-events: none;
}

.wellbeing-media img {
  object-position: 48% center;
}

.event-list {
  display: grid;
  gap: 24px;
}

.event-panel,
.event-empty {
  border: 1px solid var(--line-strong);
  padding: clamp(28px, 3vw, 42px);
  background: linear-gradient(145deg, rgba(34, 39, 48, 0.98), rgba(22, 25, 32, 0.94));
}

.event-flyer {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  margin: 0 0 30px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.event-flyer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-venue {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--accent-strong);
  font-size: 0.83rem;
  font-weight: 700;
}

.event-venue i {
  font-size: 1.15rem;
}

.event-panel h3,
.event-empty h3 {
  max-width: 11ch;
  margin-top: 24px;
  font-size: clamp(3rem, 4.4vw, 4.7rem);
}

.event-includes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
  margin: 36px 0;
  padding: 0;
  list-style: none;
}

.event-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.84rem;
}

.event-includes i {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--accent-strong);
  font-size: 1.12rem;
}

.event-empty p {
  max-width: 420px;
  margin: 26px 0 34px;
  color: var(--muted);
}

.retreats {
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
}

.retreat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(30px, 4vw, 58px);
}

.retreat-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 2px;
  background: var(--surface);
  isolation: isolate;
}

.retreat-card::after {
  position: absolute;
  inset: 20% 0 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(13, 15, 20, 0) 0%, rgba(13, 15, 20, 0.27) 34%, rgba(13, 15, 20, 0.88) 78%, rgba(13, 15, 20, 0.96) 100%);
  content: "";
  pointer-events: none;
}

.retreat-media {
  height: 100%;
  aspect-ratio: 4 / 5;
}

.retreat-media img {
  transition: transform 900ms var(--ease), filter 700ms var(--ease);
}

.retreat-card:hover .retreat-media img {
  transform: scale(1.025);
  filter: saturate(1.06);
}

.retreat-copy {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: clamp(30px, 4vw, 52px);
}

.retreat-copy > p {
  margin: 0 0 16px;
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.retreat-copy h3 {
  max-width: 8ch;
  font-size: clamp(3.3rem, 5vw, 5.5rem);
  line-height: 0.9;
}

.retreat-copy ul {
  display: flex;
  flex-wrap: wrap;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.retreat-copy li {
  margin: 0 13px 9px 0;
  padding-right: 13px;
  border-right: 1px solid rgba(242, 240, 244, 0.42);
  color: rgba(242, 240, 244, 0.86);
  font-size: 0.84rem;
}

.retreat-copy li:last-child {
  border-right: 0;
}

.retreat-copy .button-outline {
  border-color: rgba(242, 240, 244, 0.48);
  background: rgba(242, 240, 244, 0.1);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.retreat-copy .button-outline:hover {
  border-color: rgba(242, 240, 244, 0.82);
  background: rgba(242, 240, 244, 0.2);
  color: var(--text);
}

.cic {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(108px, 10vw, 156px);
  border-top: 0;
  background: var(--accent);
  color: var(--accent-ink);
}

.cic::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.3), transparent 26%),
    linear-gradient(118deg, transparent 0 58%, rgba(17, 18, 23, 0.055) 58% 58.12%, transparent 58.12% 100%);
  content: "";
  pointer-events: none;
}

.cic-shell {
  position: relative;
  z-index: 1;
}

.cic-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 16px;
  border-top: 1px solid rgba(17, 18, 23, 0.42);
  border-bottom: 1px solid rgba(17, 18, 23, 0.42);
  color: rgba(17, 18, 23, 0.76);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.cic-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.72fr);
  align-items: end;
  gap: clamp(56px, 8vw, 120px);
  padding-block: clamp(64px, 7vw, 104px);
}

.cic-heading > p {
  margin: 0 0 30px;
  color: rgba(17, 18, 23, 0.76);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cic-heading h2 {
  max-width: 7.4ch;
  margin: 0;
  color: var(--accent-ink);
  font-size: clamp(5.4rem, 8.6vw, 9.4rem);
  letter-spacing: -0.045em;
  line-height: 0.8;
}

.cic-heading h2 span,
.cic-heading h2 strong {
  display: block;
}

.cic-heading h2 strong {
  margin-top: 0.14em;
  color: var(--accent-ink);
  font-size: 0.76em;
  letter-spacing: -0.03em;
  line-height: 0.88;
  -webkit-text-stroke: 0;
  text-stroke: 0;
}

.cic-copy {
  padding: 8px 0 8px clamp(34px, 4vw, 58px);
  border-left: 1px solid rgba(17, 18, 23, 0.42);
}

.cic-copy > p {
  max-width: 50ch;
  margin: 0;
  color: rgba(17, 18, 23, 0.86);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.8;
}

.cic-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.cic-actions .button-primary {
  border-color: var(--accent-ink);
  background: var(--accent-ink);
  color: var(--text);
}

.cic-actions .button-primary:hover {
  border-color: #2b2d34;
  background: #2b2d34;
  color: var(--text);
}

.cic-actions .button-outline {
  border-color: rgba(17, 18, 23, 0.5);
  background: transparent;
  color: var(--accent-ink);
}

.cic-actions .button-outline:hover {
  border-color: var(--accent-ink);
  background: rgba(17, 18, 23, 0.08);
  color: var(--accent-ink);
}

.cic-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(17, 18, 23, 0.42);
  border-bottom: 1px solid rgba(17, 18, 23, 0.42);
}

.cic-pillars > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 22px;
  min-height: 100px;
  padding: 30px 34px;
}

.cic-pillars > div + div {
  border-left: 1px solid rgba(17, 18, 23, 0.42);
}

.cic-pillars span {
  color: rgba(17, 18, 23, 0.58);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.cic-pillars strong {
  color: var(--accent-ink);
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
  text-transform: uppercase;
}

.closing-cta {
  position: relative;
  display: grid;
  min-height: clamp(620px, 65vw, 780px);
  overflow: hidden;
  place-items: center;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.closing-cta-media {
  position: absolute;
  inset: 0;
  margin: 0;
}

.closing-cta-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 15, 20, 0.62), rgba(13, 15, 20, 0.3) 50%, rgba(13, 15, 20, 0.62)),
    linear-gradient(180deg, rgba(13, 15, 20, 0.24), rgba(13, 15, 20, 0.62));
  content: "";
}

.closing-cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
}

.closing-cta-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  padding-block: clamp(110px, 12vw, 160px);
  text-align: center;
}

.closing-cta-content > p {
  margin: 0 0 26px;
  color: var(--accent-strong);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.closing-cta h2 {
  max-width: 10ch;
  font-size: clamp(5rem, 9vw, 9rem);
  line-height: 0.82;
}

.closing-cta h2 span,
.closing-cta h2 strong {
  display: block;
}

.closing-cta h2 strong {
  color: var(--accent);
  font-weight: 700;
}

.closing-cta-copy {
  display: grid;
  justify-items: center;
  margin-top: 38px;
}

.closing-cta-copy p {
  max-width: 610px;
  margin: 0;
  color: rgba(242, 240, 244, 0.8);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.65;
}

.closing-cta-copy .button {
  margin-top: 34px;
}

.site-footer {
  border-top: 1px solid var(--line-strong);
  padding: 68px 0 26px;
  background: var(--bg);
}

.footer-main {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 58px;
}

.footer-identity {
  display: flex;
  align-items: flex-end;
  gap: 34px;
}

.footer-brand,
.footer-brand img {
  width: 136px;
}

.footer-identity p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.footer-legal p {
  margin: 0;
  color: var(--quiet);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.interest-dialog {
  width: min(1040px, calc(100vw - 48px));
  max-height: calc(100dvh - 48px);
  overflow: auto;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  padding: 0;
  background: var(--bg-soft);
  color: var(--text);
  box-shadow: 0 32px 100px rgba(2, 4, 7, 0.5);
}

.interest-dialog::backdrop {
  background: rgba(5, 7, 10, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.dialog-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(42px, 6vw, 86px);
  padding: clamp(42px, 6vw, 76px);
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: transparent;
  color: var(--text);
  font-size: 1.35rem;
  cursor: pointer;
  transition: background-color 250ms var(--ease), color 250ms var(--ease);
}

.dialog-close:hover {
  background: var(--text);
  color: var(--bg);
}

.dialog-heading h2 {
  max-width: 7ch;
  font-size: clamp(3.6rem, 5.5vw, 6rem);
}

.dialog-heading p {
  max-width: 350px;
  margin: 28px 0 0;
  color: var(--muted);
}

.interest-form {
  display: grid;
  gap: 28px;
  border-top: 1px solid var(--line-strong);
  padding-top: 30px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 20px;
}

.field {
  display: grid;
  gap: 9px;
}

.field label {
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field input,
.field select {
  width: 100%;
  min-height: 58px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: var(--surface);
  color: var(--text);
  padding: 14px 16px;
  transition: background-color 260ms var(--ease), border-color 260ms var(--ease);
}

.field input:hover,
.field select:hover {
  border-color: var(--text);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: var(--danger);
}

.field-error {
  display: none;
  margin: 0;
  color: var(--danger);
  font-size: 0.76rem;
}

.field.has-error .field-error {
  display: block;
}

.form-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 26px;
}

.form-footer p {
  max-width: 360px;
  margin: 0;
  color: var(--quiet);
  font-size: 0.73rem;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--success);
  font-size: 0.84rem;
  font-weight: 600;
}

.form-status.is-error {
  color: var(--danger);
}

[data-reveal],
[data-image-reveal],
[data-hero-item],
[data-hero-media] {
  visibility: visible;
}

@media (min-width: 1180px) {
  .wellbeing-intro h2 {
    white-space: nowrap;
  }

  .wellbeing-media {
    height: 100%;
    aspect-ratio: auto;
  }
}

@media (max-width: 1120px) {
  :root {
    --shell: min(100% - 56px, 1040px);
  }

  .hero-copy {
    width: min(540px, 52vw);
  }

  .hero h1 {
    font-size: clamp(4.2rem, 7.4vw, 6.3rem);
  }

  .route-row {
    grid-template-columns: 68px minmax(0, 1fr) 132px;
  }

  .session-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(450px, 1.1fr);
    gap: 48px;
  }

  .session-copy h2 {
    font-size: clamp(4.2rem, 7vw, 5.8rem);
  }

  .cic-layout {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.82fr);
    gap: 52px;
  }

  .wellbeing-layout {
    grid-template-columns: 1fr;
  }

  .wellbeing-media {
    position: relative;
    top: auto;
  }

  .event-list {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .dialog-panel {
    grid-template-columns: 1fr;
  }

  .dialog-heading h2 {
    max-width: none;
  }
}

@media (max-width: 840px) {
  :root {
    --header-height: 70px;
    --shell: calc(100% - 36px);
  }

  body {
    font-size: 16px;
  }

  .section {
    padding-block: 96px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 45;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  body.menu-open {
    overflow: hidden;
  }

  body.menu-open .site-header {
    border-color: transparent;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .primary-nav {
    position: fixed;
    inset: 0;
    z-index: 42;
    display: flex;
    min-height: 100dvh;
    transform: translateY(-102%);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: clamp(16px, 3.2vh, 28px);
    overflow-y: auto;
    padding: 112px 28px 64px;
    background:
      radial-gradient(circle at 50% 42%, rgba(184, 169, 201, 0.1), transparent 34%),
      #111318;
    opacity: 0;
    pointer-events: none;
    text-align: center;
    transition: transform 650ms var(--ease), opacity 360ms ease;
  }

  .primary-nav a,
  .primary-nav button {
    font-family: var(--display);
    font-size: clamp(2.7rem, 12vw, 4.6rem);
    font-weight: 600;
    line-height: 0.95;
  }

  .menu-open .primary-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hero-media::before {
    background:
      linear-gradient(90deg, rgba(17, 19, 24, 0.96) 0%, rgba(17, 19, 24, 0.84) 46%, rgba(17, 19, 24, 0.22) 100%),
      linear-gradient(180deg, rgba(17, 19, 24, 0.12) 0%, rgba(17, 19, 24, 0.32) 100%);
  }

  .hero-media img {
    object-position: 59% center;
  }

  .hero-copy {
    width: min(620px, 82vw);
  }

  .route-row {
    min-height: 176px;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
    padding: 26px 18px;
  }

  .route-action {
    grid-column: 2;
    justify-content: flex-start;
  }

  .route-media {
    width: 54%;
  }

  .session {
    padding-block: 104px;
  }

  .session-layout {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .session-copy h2 {
    max-width: 10ch;
    font-size: clamp(4.4rem, 12vw, 6.4rem);
  }

  .running-club-feature {
    gap: 20px;
  }

  .cic-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .cic-heading h2 {
    max-width: none;
  }

  .cic-copy {
    padding: 42px 0 0;
    border-top: 1px solid rgba(17, 18, 23, 0.42);
    border-left: 0;
  }

  .retreat-grid {
    grid-template-columns: 1fr;
    gap: 78px;
  }

  .retreat-card {
    width: min(100%, 660px);
    justify-self: center;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .section {
    padding-block: 82px;
  }

  h2 {
    font-size: clamp(3.2rem, 16vw, 4.7rem);
  }

  .section-intro {
    margin-bottom: 48px;
  }

  .hero {
    min-height: 780px;
  }

  .hero-content {
    min-height: calc(780px - var(--header-height));
  }

  .hero-copy {
    width: 100%;
    padding: 86px 0 54px;
  }

  .hero-principles {
    max-width: 30ch;
    margin-bottom: 24px;
    font-size: 0.7rem;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 18.8vw, 5.35rem);
  }

  .hero h1 span {
    white-space: normal;
  }

  .hero-intro {
    max-width: 34ch;
    margin-top: 26px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    gap: 10px;
    margin-top: 28px;
  }

  .hero-actions .button,
  .hero-actions .text-link,
  .session-actions .button,
  .running-club-button,
  .event-panel .button,
  .event-empty .button,
  .retreat-copy .button,
  .cic-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    justify-content: center;
    min-height: 52px;
  }

  .route-row {
    min-height: 224px;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    align-content: center;
    gap: 18px 12px;
    padding: 26px 18px 30px;
  }

  .route-icon {
    grid-column: 1;
    grid-row: 1;
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
  }

  .route-copy {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .route-copy strong {
    font-size: clamp(1.32rem, 5.8vw, 1.7rem);
    white-space: nowrap;
  }

  .route-copy > span {
    max-width: 30ch;
    font-size: 0.8rem;
  }

  .route-action {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    font-size: 0.66rem;
  }

  .route-media {
    width: 82%;
    opacity: 0.7;
  }

  .route-row::after {
    background: linear-gradient(90deg, rgba(17, 19, 24, 0.98) 0%, rgba(17, 19, 24, 0.9) 58%, rgba(17, 19, 24, 0.2) 100%);
  }

  .session {
    min-height: 0;
    padding-block: 84px;
  }

  .session-eyebrow {
    margin-bottom: 26px;
  }

  .session-copy h2 {
    font-size: clamp(3.8rem, 18.2vw, 5.2rem);
  }

  .session-copy h2 span {
    white-space: normal;
  }

  .large-copy {
    margin-top: 28px;
  }

  .session-facts {
    gap: 10px;
    margin-top: 30px;
    padding: 24px 0 22px;
  }

  .session-facts i {
    margin-bottom: 14px;
    font-size: 1.55rem;
  }

  .session-facts strong {
    font-size: clamp(0.96rem, 4vw, 1.24rem);
  }

  .session-facts span {
    margin-top: 6px;
    font-size: 0.58rem;
    letter-spacing: 0.04em;
  }

  .session-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 32px;
  }

  .session-layout {
    gap: 48px;
  }

  .running-club-panel {
    padding: 28px 22px;
  }

  .running-club-panel h3 {
    font-size: clamp(3.5rem, 17vw, 4.8rem);
  }

  .running-club-benefits {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .running-club-benefits li {
    font-size: 0.76rem;
  }

  .running-club-media {
    aspect-ratio: 4 / 3;
  }

  .cic-heading h2 {
    max-width: 8ch;
    font-size: clamp(4.65rem, 20vw, 6.4rem);
  }

  .cic-actions {
    display: grid;
  }

  .cic-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .cic-pillars {
    grid-template-columns: 1fr;
  }

  .cic-pillars > div {
    min-height: 78px;
    padding: 24px 0;
  }

  .cic-pillars > div + div {
    border-top: 1px solid rgba(17, 18, 23, 0.42);
    border-left: 0;
  }

  .retreat-grid {
    gap: 42px;
  }

  .retreat-copy {
    padding: 28px 24px;
  }

  .retreat-copy h3 {
    font-size: clamp(3rem, 14vw, 4.1rem);
  }

  .retreat-copy ul {
    margin: 18px 0 24px;
  }

  .closing-cta {
    min-height: 650px;
  }

  .closing-cta-media img {
    object-position: 58% center;
  }

  .closing-cta-content {
    padding-block: 100px;
  }

  .closing-cta h2 {
    font-size: clamp(4.4rem, 21vw, 6.2rem);
  }

  .closing-cta-copy {
    margin-top: 30px;
  }

  .wellbeing-intro h2 {
    font-size: clamp(3.2rem, 15vw, 4.6rem);
  }

  .wellbeing-media {
    aspect-ratio: 4 / 5;
  }

  .event-list,
  .event-includes,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .retreat-copy h3 {
    font-size: clamp(3.3rem, 15vw, 5rem);
  }

  .footer-main,
  .footer-identity,
  .footer-legal,
  .form-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 22px;
  }

  .interest-dialog {
    width: calc(100vw - 20px);
    max-height: calc(100dvh - 20px);
  }

  .dialog-panel {
    gap: 36px;
    padding: 66px 20px 28px;
  }

  .dialog-heading h2 {
    font-size: clamp(3.2rem, 16vw, 4.7rem);
  }

  .form-footer .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header.is-scrolled {
    background: var(--bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .interest-dialog::backdrop {
    background: rgba(5, 7, 10, 0.94);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

/* Gutenberg integration keeps the visual system native to the editor. */
.wp-site-blocks,
.wp-site-blocks > *,
.mtt-page-main,
.mtt-page-main > * {
  margin-block-start: 0;
}

.wp-site-blocks {
  overflow: clip;
  padding: 0;
}

.wp-block-group,
.wp-block-image,
.wp-block-buttons,
.wp-block-list {
  margin-block-end: 0;
  margin-block-start: 0;
}

.mtt-page-main {
  padding: 0;
}

.mtt-page-main > .alignfull {
  margin-inline: 0;
  width: 100%;
}

.wp-element-button,
.wp-block-button__link {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  padding: 14px 24px;
  background: transparent;
  color: var(--text);
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 300ms var(--ease), background-color 300ms var(--ease), border-color 300ms var(--ease), color 300ms var(--ease), box-shadow 300ms var(--ease);
}

.wp-block-button.button {
  min-height: 0;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
}

.button-primary .wp-element-button,
.button-primary.wp-element-button,
.mtt-dynamic-button {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--accent-ink);
}

.button-primary .wp-element-button:hover,
.button-primary.wp-element-button:hover,
.mtt-dynamic-button:hover {
  border-color: var(--accent-strong);
  background: var(--accent-strong);
  color: var(--accent-ink);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(5, 7, 10, 0.18);
}

.button-outline .wp-element-button:hover {
  border-color: var(--text);
  background: var(--text);
  color: var(--bg);
  transform: translateY(-2px);
}

.wp-element-button:active,
.wp-block-button__link:active {
  transform: scale(0.98);
}

.mtt-text-button .wp-element-button {
  min-height: 42px;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  padding-inline: 3px;
  background: transparent;
  color: var(--muted);
}

.mtt-text-button .wp-element-button:hover {
  border-color: var(--accent-strong);
  color: var(--accent-strong);
  transform: translateY(-2px);
}

.mtt-site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background-color 350ms var(--ease), border-color 350ms var(--ease);
}

.admin-bar .mtt-site-header {
  top: 32px;
}

.mtt-site-header.is-scrolled {
  border-color: var(--line);
  background: var(--header-bg);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
}

.mtt-header-bar {
  padding: 10px 0;
  background: transparent;
}

.mtt-header-bar .mtt-header-inner {
  width: var(--shell) !important;
  max-width: var(--shell) !important;
  margin-inline: auto !important;
  min-height: calc(var(--header-height) - 20px);
  gap: 24px;
}

.mtt-brand,
.mtt-brand img {
  display: block;
  width: 84px;
}

.mtt-brand {
  position: relative;
  z-index: 55;
  flex: 0 0 116px;
}

.mtt-primary-nav {
  flex: 1 1 auto;
  justify-content: center;
}

.mtt-primary-nav .wp-block-navigation__container {
  gap: clamp(22px, 2.8vw, 42px);
}

.mtt-primary-nav a {
  position: relative;
  color: var(--text);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.mtt-primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: currentColor;
  content: "";
  transition: transform 320ms var(--ease);
}

.mtt-primary-nav a:hover::after {
  transform: scaleX(1);
}

.mtt-header-action {
  flex: 0 0 auto;
}

.mtt-header-action .wp-element-button {
  min-height: 38px;
  padding: 10px 16px;
  font-size: 0.67rem;
}

.hero .hero-content > .hero-copy {
  margin-inline: 0;
}

.hero-copy > * + * {
  margin-block-start: 0;
}

.hero-actions .wp-block-button {
  margin: 0;
}

.route-row > * {
  position: relative;
  z-index: 2;
}

.route-row .route-copy {
  gap: 0;
}

.route-icon::before,
.session-facts li::before,
.running-club-benefits li::before {
  font-family: "Phosphor";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

.route-icon {
  font-size: 0;
}

.route-icon::before {
  font-size: 1.75rem;
}

.route-icon-run::before {
  content: "\e730";
}

.route-icon-wellbeing::before {
  content: "\e0b6";
}

.route-icon-retreat::before {
  content: "\e7ae";
}

.route-icon-list::before {
  content: "\e5e8";
}

.route-row .route-copy p {
  margin: 0;
}

.route-row .route-copy p:first-child {
  line-height: 1;
}

.route-row .route-copy p:last-child {
  max-width: 520px;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.8rem;
}

.route-row .route-action {
  margin: 0;
}

.route-row .route-action a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  color: var(--text);
}

.route-row .route-media {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 0;
}

.route-row .route-icon,
.route-row .route-action i,
.route-row .route-media img {
  transition: transform 600ms var(--ease), border-color 320ms var(--ease), opacity 320ms var(--ease);
}

.route-row:hover .route-icon {
  transform: translateX(4px);
  border-color: var(--accent-strong);
}

.route-row:hover .route-action i {
  transform: translateX(6px);
}

.route-row:hover .route-media img {
  transform: scale(1.035);
}

.session-copy > *,
.running-club-panel > *,
.cic-heading > *,
.cic-copy > *,
.closing-cta-content > * {
  margin-block-start: 0;
}

/* WordPress layout classes zero block margins, so section rhythm is restored semantically. */
.section-intro {
  margin-block-end: clamp(56px, 6vw, 86px);
}

.hero-copy > .hero-intro {
  margin-block-start: clamp(30px, 2.8vw, 36px);
}

.hero-copy > .hero-actions {
  margin-block-start: clamp(30px, 2.8vw, 36px);
}

.session-copy > .large-copy {
  margin-block-start: clamp(34px, 3.2vw, 42px);
}

.session-copy > .session-facts {
  margin-block-start: clamp(36px, 3.2vw, 42px);
}

.session-copy > .session-actions {
  margin-block-start: 34px;
}

.running-club-panel > .running-club-intro {
  margin-block-start: 0;
}

.running-club-panel > .running-club-benefits {
  margin-block-start: 0;
}

.running-club-panel > .wp-block-buttons {
  margin-block-start: 0;
}

.cic-copy > .cic-actions {
  margin-block-start: 38px;
}

.closing-cta-content > .closing-cta-copy {
  margin-block-start: 38px;
}

.closing-cta-copy > .wp-block-buttons {
  margin-block-start: 34px;
}

.session-actions .wp-block-buttons,
.running-club-panel .wp-block-buttons,
.closing-cta-copy .wp-block-buttons {
  margin: 0;
}

.session-facts li::before {
  display: block;
  margin-bottom: 18px;
  color: var(--accent-strong);
  font-size: 1.9rem;
}

.session-facts li:nth-child(1)::before {
  content: "\ed2c";
}

.session-facts li:nth-child(2)::before {
  content: "\e6fc";
}

.session-facts li:nth-child(3)::before {
  content: "\e6cc";
}

.running-club-button {
  margin-top: 0;
}

.running-club-benefits li {
  grid-template-columns: 18px minmax(0, 1fr);
}

.running-club-benefits li::before {
  color: var(--accent-ink);
  content: "\e182";
  font-size: 1rem;
}

.running-club-button .wp-element-button {
  border-color: var(--accent-ink);
  background: var(--accent-ink);
  color: var(--text);
}

.running-club-button .wp-element-button:hover {
  border-color: var(--surface-strong);
  background: var(--surface-strong);
}

.running-club-panel,
.running-club-media img {
  transition: transform 800ms var(--ease), box-shadow 500ms var(--ease);
}

.running-club-feature:hover .running-club-panel {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(5, 7, 10, 0.16);
}

.running-club-feature:hover .running-club-media img {
  transform: scale(1.025);
}

.mtt-event-list {
  display: grid;
  gap: 24px;
}

.mtt-event-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  padding: clamp(28px, 3vw, 42px);
  background: linear-gradient(145deg, rgba(34, 39, 48, 0.98), rgba(22, 25, 32, 0.94));
  transition: transform 600ms var(--ease), border-color 400ms var(--ease), box-shadow 600ms var(--ease);
}

.mtt-event-card:hover {
  transform: translateY(-4px);
  border-color: rgba(210, 196, 223, 0.48);
  box-shadow: 0 24px 64px rgba(5, 7, 10, 0.22);
}

.mtt-event-card__top,
.mtt-event-card__footer {
  position: relative;
  z-index: 2;
}

.mtt-event-card__top {
  display: grid;
  gap: 22px;
}

.mtt-event-card__top p {
  margin: 0;
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mtt-event-card__top h3 {
  max-width: 10ch;
  margin-top: 18px;
  font-size: clamp(3rem, 4.4vw, 4.7rem);
}

.mtt-event-card__top > strong {
  width: fit-content;
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.mtt-event-benefits {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
  margin: 36px 0;
  padding: 0;
  list-style: none;
}

.mtt-event-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.84rem;
}

.mtt-event-benefits i {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--accent-strong);
  font-size: 1.12rem;
}

.mtt-event-card__image {
  position: absolute;
  inset: 0 0 0 auto;
  width: 44%;
  opacity: 0.12;
}

.mtt-event-card__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--surface-strong), transparent);
  content: "";
}

.mtt-event-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mtt-event-card__footer .mtt-dynamic-button {
  position: relative;
  z-index: 2;
  gap: 16px;
}

.mtt-retreat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(30px, 4vw, 58px);
}

.mtt-retreat-card {
  position: relative;
  min-height: min(760px, 76vw);
  overflow: hidden;
  border-radius: 2px;
  background: var(--surface);
  isolation: isolate;
}

.mtt-retreat-card__media {
  position: absolute;
  inset: 0;
  margin: 0;
}

.mtt-retreat-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease), filter 700ms var(--ease);
}

.mtt-retreat-card:hover .mtt-retreat-card__media img {
  transform: scale(1.025);
  filter: saturate(1.06);
}

.mtt-retreat-card__scrim {
  position: absolute;
  inset: 20% 0 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(13, 15, 20, 0) 0%, rgba(13, 15, 20, 0.27) 34%, rgba(13, 15, 20, 0.88) 78%, rgba(13, 15, 20, 0.96) 100%);
}

.mtt-retreat-card__copy {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: clamp(30px, 4vw, 52px);
}

.mtt-retreat-card__copy > p {
  margin: 0 0 16px;
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mtt-retreat-card__copy h3 {
  max-width: 8ch;
  font-size: clamp(3.3rem, 5vw, 5.5rem);
}

.mtt-retreat-card__summary {
  display: block;
  max-width: 46ch;
  margin-top: 18px;
  color: rgba(242, 240, 244, 0.82);
  font-size: 0.9rem;
}

.mtt-retreat-themes {
  display: flex;
  flex-wrap: wrap;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.mtt-retreat-themes li {
  margin: 0 13px 9px 0;
  padding-right: 13px;
  border-right: 1px solid rgba(242, 240, 244, 0.42);
  color: rgba(242, 240, 244, 0.86);
  font-size: 0.84rem;
}

.mtt-retreat-themes li:last-child {
  border-right: 0;
}

.mtt-retreat-card .mtt-dynamic-button {
  border-color: rgba(242, 240, 244, 0.48);
  background: rgba(242, 240, 244, 0.1);
  color: var(--text);
  gap: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.mtt-retreat-card .mtt-dynamic-button:hover {
  border-color: rgba(242, 240, 244, 0.82);
  background: rgba(242, 240, 244, 0.2);
  color: var(--text);
}

.cic::before {
  display: none;
}

.cic-topline p,
.cic-pillars p {
  margin: 0;
}

.cic-pillars > p {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 22px;
  min-height: 100px;
  padding: 30px 34px;
}

.cic-pillars > p + p {
  border-left: 1px solid rgba(17, 18, 23, 0.42);
}

.cic-actions .button-primary .wp-element-button {
  border-color: var(--accent-ink);
  background: var(--accent-ink);
  color: var(--text);
}

.cic-actions .button-outline .wp-element-button {
  border-color: rgba(17, 18, 23, 0.5);
  background: transparent;
  color: var(--accent-ink);
}

.mtt-footer-wrap {
  border-top: 1px solid var(--line-strong);
  padding: 68px 0 26px;
  background: var(--bg);
}

.mtt-footer-wrap .mtt-footer-main {
  display: grid !important;
  width: var(--shell) !important;
  max-width: var(--shell) !important;
  margin-inline: auto !important;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: flex-end;
  gap: 48px;
  padding-bottom: 58px;
}

.mtt-footer-identity {
  display: flex;
  align-items: flex-end;
  flex-direction: row;
  gap: 34px;
}

.mtt-footer-identity > * {
  margin-inline: 0 !important;
}

.mtt-footer-brand,
.mtt-footer-brand img {
  display: block;
  width: 136px;
}

.mtt-footer-identity p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.mtt-footer-nav {
  width: auto;
  align-self: flex-end;
  justify-self: end;
}

.mtt-footer-nav .wp-block-navigation__container {
  align-items: center;
  justify-content: flex-end;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  gap: clamp(18px, 2vw, 30px);
}

.mtt-footer-nav a {
  color: var(--text);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mtt-footer-wrap .mtt-footer-legal {
  width: var(--shell) !important;
  max-width: var(--shell) !important;
  margin-inline: auto !important;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.mtt-footer-legal p {
  margin: 0;
  color: var(--quiet);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.mtt-interest-dialog {
  width: min(1040px, calc(100vw - 48px));
  max-height: calc(100dvh - 48px);
  overflow: auto;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  padding: 0;
  background: var(--bg-soft);
  color: var(--text);
  box-shadow: 0 32px 100px rgba(2, 4, 7, 0.5);
}

.mtt-interest-dialog::backdrop {
  background: rgba(5, 7, 10, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.mtt-dialog-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(42px, 6vw, 86px);
  padding: clamp(42px, 6vw, 76px);
}

.mtt-dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: transparent;
  color: var(--text);
  font-size: 1.35rem;
  cursor: pointer;
}

.mtt-dialog-heading > p {
  margin: 0 0 24px;
  color: var(--accent-strong);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mtt-dialog-heading h2 {
  max-width: 7ch;
  font-size: clamp(3.6rem, 5.5vw, 6rem);
}

.mtt-dialog-heading > span {
  display: block;
  max-width: 350px;
  margin-top: 28px;
  color: var(--muted);
}

.mtt-ghl-form-shell {
  min-width: 0;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: transparent;
}

.mtt-ghl-form {
  display: block;
  width: 100%;
  height: 410px;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.mtt-booking-dialog {
  width: min(1180px, calc(100vw - 48px));
}

.mtt-booking-dialog-panel {
  grid-template-columns: minmax(250px, 0.58fr) minmax(600px, 1.42fr);
}

.mtt-booking-calendar {
  height: 760px;
}

.mtt-empty-list {
  border: 1px solid var(--line-strong);
  padding: clamp(28px, 3vw, 42px);
  background: var(--surface);
}

.mtt-empty-list p {
  margin: 0 0 26px;
  color: var(--muted);
}

.mtt-reveal,
.mtt-image-reveal {
  opacity: 1;
}

.mtt-motion-ready .mtt-reveal,
.mtt-motion-ready .mtt-image-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 780ms var(--ease), transform 780ms var(--ease);
  transition-delay: var(--mtt-reveal-delay, 0ms);
}

.mtt-motion-ready .mtt-image-reveal {
  transform: translateY(0);
  clip-path: inset(0 0 12% 0);
  transition: opacity 900ms var(--ease), clip-path 1100ms var(--ease);
  transition-delay: var(--mtt-reveal-delay, 0ms);
}

.mtt-reveal.is-visible,
.mtt-image-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0);
}

.mtt-scroll-sentinel {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

@keyframes mtt-hero-media-enter {
  from {
    opacity: 0;
    transform: scale(1.035);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes mtt-header-enter {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-media {
    animation: mtt-hero-media-enter 1300ms var(--ease) both;
  }

  .mtt-site-header {
    animation: mtt-header-enter 700ms var(--ease) 100ms both;
  }
}

@media (max-width: 1120px) {
  .mtt-header-action {
    display: none;
  }

  .mtt-dialog-panel {
    grid-template-columns: 1fr;
  }

  .mtt-dialog-heading h2 {
    max-width: none;
  }
}

@media (max-width: 840px) {
  .admin-bar .mtt-site-header {
    top: 46px;
  }

  .mtt-header-bar .mtt-header-inner {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) !important;
    min-height: 50px;
  }

  .mtt-brand {
    flex-basis: auto;
  }

  .mtt-primary-nav {
    flex: 0 0 auto;
    justify-content: flex-end;
    justify-self: end;
    margin-left: auto;
  }

  .mtt-header-action {
    display: none !important;
  }

  .mtt-primary-nav .wp-block-navigation__responsive-container-open {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-strong);
    border-radius: 2px;
    background: rgba(17, 19, 24, 0.76);
    color: var(--text);
  }

  .wp-block-navigation.mtt-primary-nav .wp-block-navigation__responsive-container.is-menu-open {
    display: flex;
    width: 100vw;
    height: 100dvh !important;
    min-height: 100dvh;
    max-height: 100dvh;
    align-items: center;
    justify-content: center;
    position: fixed;
    inset: 0;
    z-index: 99999;
    padding: 88px 24px 48px;
    background: var(--bg) !important;
    color: var(--text) !important;
  }

  .mtt-primary-nav .wp-block-navigation__responsive-dialog,
  .mtt-primary-nav .wp-block-navigation__responsive-container-content {
    width: 100%;
    height: 100%;
  }

  .wp-block-navigation.mtt-primary-nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
    display: flex;
    align-items: center !important;
    justify-content: center !important;
    padding-top: 0 !important;
  }

  .mtt-primary-nav .wp-block-navigation__responsive-container-content .wp-block-navigation__container {
    width: min(100%, 640px);
    align-items: center;
    gap: clamp(10px, 2.4vh, 20px);
    text-align: center;
  }

  .mtt-primary-nav .wp-block-navigation__responsive-container-content .wp-block-navigation-item {
    width: 100%;
  }

  .mtt-primary-nav .wp-block-navigation__responsive-container-content a {
    display: flex;
    width: 100%;
    justify-content: center;
    font-family: var(--display);
    font-size: clamp(1.65rem, 7vw, 3rem);
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1;
    white-space: nowrap;
  }

  .mtt-primary-nav .wp-block-navigation__responsive-container-close {
    top: 16px;
    right: 18px;
    width: 44px;
    height: 44px;
  }

  .mtt-site-header:has(.wp-block-navigation__responsive-container.is-menu-open),
  .mtt-site-header.is-scrolled:has(.wp-block-navigation__responsive-container.is-menu-open) {
    border-color: transparent;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .mtt-retreat-grid {
    grid-template-columns: 1fr;
    gap: 78px;
  }

  .mtt-retreat-card {
    width: min(100%, 660px);
    min-height: 760px;
    justify-self: center;
  }

  .mtt-footer-wrap .mtt-footer-main {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 44px;
  }

  .mtt-footer-nav {
    width: 100%;
    justify-self: stretch;
  }

  .mtt-footer-nav .wp-block-navigation__container {
    display: grid !important;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: start;
    gap: 20px 24px;
  }

  .wellbeing-media {
    height: auto;
  }
}

@media (max-width: 560px) {
  .admin-bar .mtt-site-header {
    top: 0;
  }

  .mtt-primary-nav .wp-block-navigation__responsive-container.is-menu-open {
    padding-top: 76px;
  }

  /* Mobile content rhythm: preserve clear breathing room after headings and around lists. */
  .section-intro p {
    margin-top: 22px !important;
    line-height: 1.72;
  }

  .section-intro {
    margin-block-end: 44px;
  }

  .hero-copy > .hero-intro {
    margin-block-start: 28px;
  }

  .hero-copy > .hero-actions {
    margin-block-start: 30px;
  }

  .route-row .route-copy p:last-child {
    margin-top: 11px !important;
    line-height: 1.55;
  }

  .hero-actions .mtt-text-button {
    width: auto;
    justify-self: start;
  }

  .hero-actions .mtt-text-button .wp-element-button {
    width: auto;
    min-height: 52px;
    border: 0;
    padding: 14px 0 10px;
    text-decoration: underline;
    text-decoration-color: var(--accent-strong);
    text-decoration-thickness: 1px;
    text-underline-offset: 7px;
  }

  .large-copy {
    margin-top: 30px !important;
    line-height: 1.72;
  }

  .session-facts {
    margin-top: 34px !important;
    padding-block: 26px 24px !important;
  }

  .running-club-intro {
    margin-top: 0 !important;
    line-height: 1.65;
  }

  .running-club-benefits {
    gap: 15px !important;
    margin-top: 0 !important;
    padding-block: 2px !important;
  }

  .running-club-panel .wp-block-buttons {
    margin-top: 0 !important;
  }

  .route-row .route-copy p:first-child strong {
    font-size: clamp(1.24rem, 5.4vw, 1.6rem);
    white-space: nowrap;
  }

  .route-row .route-copy p:last-child {
    max-width: 30ch;
    font-size: 0.8rem;
  }

  .mtt-event-benefits {
    grid-template-columns: 1fr;
  }

  .mtt-event-card__top p {
    max-width: none;
    letter-spacing: 0.075em;
    white-space: nowrap;
  }

  .mtt-event-card__top h3 {
    max-width: 13ch;
    font-size: clamp(2.45rem, 11vw, 3rem);
    line-height: 0.92;
    text-wrap: balance;
  }

  .mtt-event-benefits {
    gap: 16px !important;
    margin-block: 32px !important;
    padding-block: 2px !important;
  }

  .mtt-event-card__image {
    width: 62%;
  }

  .mtt-retreat-grid {
    gap: 42px;
  }

  .mtt-retreat-card {
    min-height: 650px;
  }

  .mtt-retreat-card__copy {
    padding: 28px 24px;
  }

  .mtt-retreat-card__copy h3 {
    font-size: clamp(3.3rem, 15vw, 5rem);
  }

  .mtt-retreat-card__summary {
    margin-top: 20px;
    line-height: 1.65;
  }

  .mtt-retreat-themes {
    margin-block: 24px 30px !important;
    row-gap: 4px;
  }

  .cic-heading h2 {
    max-width: none;
    overflow: visible;
    font-size: clamp(3.8rem, 16vw, 5.4rem);
    line-height: 0.84;
  }

  .cic-heading h2 span,
  .cic-heading h2 strong {
    width: fit-content;
    max-width: 100%;
    white-space: nowrap;
  }

  .cic-heading h2 strong {
    margin-top: 0.18em;
    padding: 0 0.04em 0.08em;
    font-size: 0.76em;
    line-height: 0.9;
  }

  .cic-copy > p {
    line-height: 1.72;
  }

  .cic-actions {
    margin-top: 32px !important;
  }

  .closing-cta-copy {
    margin-top: 32px !important;
  }

  .closing-cta-copy .wp-block-buttons {
    margin-top: 30px !important;
  }

  .cic-pillars > p {
    min-height: 78px;
    padding: 24px 0;
  }

  .cic-pillars > p + p {
    border-top: 1px solid rgba(17, 18, 23, 0.42);
    border-left: 0;
  }

  .mtt-footer-main,
  .mtt-footer-legal {
    align-items: flex-start;
    flex-direction: column;
  }

  .mtt-footer-wrap .mtt-footer-main {
    gap: 40px;
    padding-bottom: 46px;
  }

  .mtt-footer-identity {
    display: flex;
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .mtt-footer-brand,
  .mtt-footer-brand img {
    width: 124px;
  }

  .mtt-footer-nav,
  .mtt-footer-nav .wp-block-navigation__container {
    width: 100%;
  }

  .mtt-footer-nav .wp-block-navigation__container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 18px;
  }

  .mtt-interest-dialog {
    width: calc(100vw - 20px);
    max-height: calc(100dvh - 20px);
  }

  .mtt-dialog-panel {
    gap: 36px;
    padding: 66px 20px 28px;
  }

  .mtt-dialog-heading h2 {
    font-size: clamp(3.2rem, 16vw, 4.7rem);
  }

  .mtt-ghl-form {
    height: 440px;
  }

  .mtt-booking-calendar {
    height: 760px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mtt-reveal,
  .mtt-image-reveal {
    opacity: 1;
    transform: none;
    clip-path: none;
  }
}

