@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&display=swap');

:root {
  --ink: #2f2a25;
  --ink-soft: #5f564d;
  --forest: #34483b;
  --forest-dark: #233229;
  --sage: #899682;
  --sage-pale: #dce2d8;
  --cream: #f8f3ea;
  --cream-deep: #efe5d6;
  --paper: #fffdf8;
  --amber: #b57945;
  --amber-dark: #8d592f;
  --copper: #9b673c;
  --gold: #d9ae7b;
  --line: rgba(47, 42, 37, 0.14);
  --white-line: rgba(255, 253, 248, 0.18);
  --shadow-sm: 0 10px 35px rgba(51, 39, 27, 0.08);
  --shadow-lg: 0 25px 80px rgba(40, 31, 23, 0.16);
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-sm: 10px;
  --radius: 22px;
  --radius-lg: 36px;
  --container: 1240px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { overflow-x: clip; scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

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

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

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

button { color: inherit; }

::selection { color: var(--paper); background: var(--amber-dark); }

:focus-visible {
  outline: 3px solid var(--amber-dark);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(255, 253, 248, 0.94);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: white;
  background: var(--forest-dark);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.container--narrow { width: min(calc(100% - 40px), 880px); margin-inline: auto; }

.section { padding: 112px 0; }

.section--tight { padding: 78px 0; }

.section--cream { background: var(--cream); }

.section--forest { color: var(--paper); background: var(--forest-dark); }

.section--ink { color: var(--paper); background: var(--ink); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--amber-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 1px;
  content: '';
  background: currentColor;
}

.section--forest .eyebrow,
.section--ink .eyebrow,
.footer .eyebrow { color: var(--gold); }

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  text-wrap: balance;
}

h1 { font-size: clamp(3.25rem, 7vw, 6.6rem); letter-spacing: -0.045em; }
h2 { font-size: clamp(2.35rem, 4.4vw, 4.45rem); letter-spacing: -0.036em; }
h3 { font-size: clamp(1.45rem, 2.1vw, 2rem); letter-spacing: -0.018em; }
h4 { font-size: 1.22rem; }

p { margin: 0 0 1.1em; }

.lead {
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  line-height: 1.65;
}

.section--forest .lead,
.section--ink .lead { color: rgba(255, 253, 248, 0.74); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--amber-dark);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.text-link::after {
  content: '↗';
  transition: transform 180ms ease;
}

.text-link:hover::after { transform: translate(3px, -3px); }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button--amber { color: #fff; background: var(--amber-dark); }
.button--amber:hover { background: #704323; }
.button--forest { color: #fff; background: var(--forest-dark); }
.button--forest:hover { background: #17231c; }
.button--light { color: var(--ink); background: var(--paper); }
.button--light:hover { background: var(--cream-deep); }
.button--outline { color: var(--ink); border-color: var(--line); background: transparent; }
.button--outline:hover { border-color: var(--amber); }
.button--ghost-light { color: var(--paper); border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.05); }
.button--ghost-light:hover { border-color: var(--paper); background: rgba(255,255,255,.11); }

.button svg { width: 17px; height: 17px; }

.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.concept-bar {
  padding: 8px 20px;
  color: rgba(255, 253, 248, 0.8);
  background: var(--forest-dark);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-align: center;
  text-transform: uppercase;
}

.concept-bar a { margin-left: 12px; padding-bottom: 1px; border-bottom: 1px solid rgba(255, 253, 248, .45); color: var(--paper); text-decoration: none; }
.concept-bar a:hover, .concept-bar a:focus-visible { border-color: var(--amber); color: var(--amber); }

.site-header {
  position: relative;
  z-index: 1000;
  background: rgba(255, 253, 248, 0.96);
  border-bottom: 1px solid var(--line);
}

.site-header.is-sticky {
  position: sticky;
  top: 0;
  box-shadow: 0 8px 30px rgba(47, 42, 37, 0.07);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: inline-flex; flex: 0 0 auto; align-items: center; }
.brand img { width: 238px; height: auto; }

.main-nav { display: flex; align-items: center; gap: clamp(16px, 1.8vw, 30px); }

.main-nav a {
  position: relative;
  padding: 13px 0;
  color: #4f4841;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  content: '';
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current='page']::after { transform: scaleX(1); transform-origin: left; }
.main-nav a[aria-current='page'] { color: var(--amber-dark); }

.nav-cta { padding: 10px 18px !important; color: white !important; background: var(--forest-dark); border-radius: 999px; }
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--amber-dark); }

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 1.5px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded='true'] span:first-child { transform: translateY(3.25px) rotate(45deg); }
.nav-toggle[aria-expanded='true'] span:last-child { transform: translateY(-3.25px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: min(790px, calc(100vh - 120px));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  background: var(--ink);
}

.hero__media,
.hero__media::before,
.hero__media::after { position: absolute; inset: 0; }

.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; transform: scaleX(-1); }

.hero__media::before {
  z-index: 1;
  content: '';
  background: linear-gradient(90deg, rgba(29, 30, 25, 0.84) 0%, rgba(29, 30, 25, 0.58) 38%, rgba(29, 30, 25, 0.13) 75%), linear-gradient(0deg, rgba(29, 30, 25, 0.54), transparent 48%);
}

.hero__media::after {
  z-index: 2;
  content: '';
  background: linear-gradient(180deg, rgba(0,0,0,.05), transparent 20%);
}

.hero__content { position: relative; z-index: 3; max-width: 960px; padding: 100px 0 92px; }
.hero__content h1 { max-width: 930px; font-size: clamp(3.7rem, 6vw, 5.8rem); }
.hero__content .eyebrow { color: #f2c995; }
.hero__content .lead { max-width: 660px; margin-top: 24px; color: rgba(255,255,255,.88); }
.hero__content .button-row { margin-top: 38px; }

.hero__note {
  position: absolute;
  z-index: 4;
  right: max(30px, calc((100vw - var(--container)) / 2));
  bottom: 35px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.72);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero__note::before { width: 34px; height: 1px; content: ''; background: currentColor; }

.home-intro,
.home-activities,
.home-pension,
#races,
.home-faq { position: relative; overflow: hidden; isolation: isolate; }
.home-intro > .container,
#races > .container,
.home-activities > .container,
.home-pension > .container,
.home-faq > .container { position: relative; z-index: 1; }
.home-intro::after,
.home-activities::before,
.home-pension::after,
#races::before,
.home-faq::after {
  position: absolute;
  z-index: 0;
  width: 440px;
  height: 590px;
  content: '';
  background-image: url('assets/icons/paw-outline.svg'), url('assets/icons/paw-outline.svg'), url('assets/icons/paw-outline.svg');
  background-repeat: no-repeat;
  background-position: 12% 86%, 51% 47%, 87% 8%;
  background-size: 76px auto, 58px auto, 43px auto;
  opacity: .16;
  pointer-events: none;
  transform: rotate(-13deg);
}
.home-intro::after { top: -90px; right: -115px; }
.home-activities::before { top: 48px; right: -86px; transform: rotate(-18deg); }
.home-pension::after { top: 24px; left: -118px; transform: rotate(12deg) scaleX(-1); }
#races::before { bottom: -12px; left: -82px; transform: rotate(15deg) scaleX(-1); }
.home-faq::after { top: 34px; right: -105px; transform: rotate(-14deg); }

.interior-page main > .section:not(.section--forest) {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.interior-page main > .section:not(.section--forest) > .container {
  position: relative;
  z-index: 1;
}
.interior-page main > .section:not(.section--forest)::after {
  position: absolute;
  z-index: 0;
  top: clamp(34px, 7vw, 86px);
  right: -92px;
  width: 310px;
  height: 410px;
  content: '';
  background-image: url('assets/icons/paw-outline.svg'), url('assets/icons/paw-outline.svg');
  background-repeat: no-repeat;
  background-position: 15% 82%, 82% 13%;
  background-size: 68px auto, 45px auto;
  opacity: .14;
  pointer-events: none;
  transform: rotate(-13deg);
}
.interior-page main > .section:not(.section--forest):nth-of-type(even)::after {
  right: auto;
  left: -92px;
  transform: rotate(13deg) scaleX(-1);
}
.home-intro { padding: 92px 0; }
.home-intro__grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); align-items: end; gap: clamp(55px, 8vw, 125px); }
.home-intro__grid h2 { max-width: 650px; font-size: clamp(2.5rem, 4.5vw, 4.4rem); }
.home-intro__copy { max-width: 610px; }
.home-intro__copy .lead { margin-bottom: 20px; }

.home-activities { padding-top: 96px; }
.activity-choice { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); overflow: hidden; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); gap: 1px; }
.activity-panel { min-width: 0; display: grid; grid-template-rows: 380px 1fr; background: var(--paper); }
.activity-panel--pension { color: var(--paper); background: var(--forest-dark); }
.activity-panel__media { min-height: 0; overflow: hidden; }
.activity-panel__media img { width: 100%; height: 100%; object-fit: cover; }
.activity-panel:first-child .activity-panel__media img { object-position: 50% 33%; }
.activity-panel--pension .activity-panel__media img { object-position: 50% 48%; }
.activity-panel__copy { min-height: 330px; display: flex; align-items: flex-start; flex-direction: column; padding: clamp(34px, 4vw, 54px); }
.activity-panel__copy h3 { margin-bottom: 16px; font-size: clamp(2rem, 3.2vw, 3.1rem); }
.activity-panel__copy p:not(.eyebrow) { max-width: 500px; color: var(--ink-soft); }
.activity-panel__copy .button { align-self: flex-start; margin-top: auto; }
.activity-panel--pension .eyebrow { color: var(--gold); }
.activity-panel--pension .activity-panel__copy p:not(.eyebrow) { color: rgba(255,255,255,.74); }

.home-assurance .proof-item { min-height: 132px; gap: 22px; }
.home-assurance .proof-item strong { line-height: 1.22; }
.home-assurance .proof-item span { line-height: 1.45; }
.proof-marker { width: 36px; height: 1px; flex: 0 0 auto; background: var(--gold); }

.home-pension { background: var(--paper); }
.home-pension .pension-feature { min-height: 650px; }
.home-pension .pension-feature__copy { padding: clamp(46px, 5vw, 72px); }
.home-pension .price-teaser { gap: 22px; }
.home-pension .price-teaser > div { min-width: 104px; }

.home-breeds { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.home-breed { min-width: 0; min-height: 164px; display: grid; grid-template-columns: 118px minmax(0, 1fr) 44px; align-items: center; gap: 22px; padding: 20px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); transition: border-color 180ms ease, background-color 180ms ease; }
.home-breed:hover { background: #fff; border-color: var(--line); }
.home-breed > img { width: 118px; height: 122px; object-fit: cover; border-radius: 9px; }
.home-breed > div { min-width: 0; }
.home-breed h3 { display: block; font-size: 1.3rem; line-height: 1.16; }
.home-breed small { display: block; margin-top: 9px; color: var(--ink-soft); font-size: .78rem; }
.home-breed__arrow { width: 42px; height: 42px; display: grid; place-items: center; color: var(--amber-dark); border: 1px solid var(--line); border-radius: 50%; }
.home-section-actions { justify-content: center; margin-top: 38px; }

.page-hero {
  position: relative;
  min-height: 510px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  background: var(--forest-dark);
}

.page-hero--compact { min-height: 390px; }
.page-hero__media { position: absolute; inset: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.page-hero__media::after { position: absolute; inset: 0; content: ''; background: linear-gradient(90deg, rgba(27, 33, 27, .9), rgba(27, 33, 27, .48) 57%, rgba(27, 33, 27, .18)), linear-gradient(0deg, rgba(25,29,25,.5), transparent 60%); }
.page-hero__content { position: relative; z-index: 1; max-width: 820px; padding: 90px 0 78px; }
.page-hero__content h1 { font-size: clamp(3.1rem, 6vw, 5.7rem); }
.page-hero__content .lead { max-width: 700px; margin-top: 22px; color: rgba(255,255,255,.82); }
.page-hero__content .eyebrow { color: #f2c995; }

.proof-strip { color: var(--paper); background: var(--forest); }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.proof-item { min-height: 120px; display: flex; align-items: center; gap: 18px; padding: 28px 36px; border-right: 1px solid var(--white-line); }
.proof-item:last-child { border-right: 0; }
.proof-item strong { display: block; font-family: var(--serif); font-size: 1.28rem; font-weight: 500; }
.proof-item span { display: block; color: rgba(255,255,255,.62); font-size: .79rem; }
.proof-icon { width: 42px; height: 42px; display: grid; flex: 0 0 auto; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: var(--gold); font-family: var(--serif); font-size: 1.05rem; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 54px; }
.section-heading__copy { max-width: 760px; }
.section-heading .lead { max-width: 520px; margin: 0 0 5px; }

.editorial-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); align-items: center; gap: clamp(60px, 8vw, 130px); }
.editorial-grid--reverse { grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); }
.editorial-grid__copy { max-width: 580px; }
.editorial-grid__copy h2 { margin-bottom: 28px; }
.editorial-grid__copy .lead { margin-bottom: 24px; }
.editorial-grid__media { position: relative; min-height: 650px; }
.editorial-grid__media img { width: 86%; height: 610px; margin-left: auto; object-fit: cover; border-radius: var(--radius-lg) var(--radius-lg) 8px var(--radius-lg); box-shadow: var(--shadow-lg); }
.editorial-grid__media::before { position: absolute; top: -30px; right: 65%; width: 110px; height: 110px; content: ''; border: 1px solid var(--gold); border-radius: 50%; opacity: .65; }
.editorial-grid__badge { position: absolute; bottom: 10px; left: 0; width: 190px; padding: 24px; color: var(--paper); background: var(--forest-dark); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.editorial-grid__badge strong { display: block; font-family: var(--serif); font-size: 1.5rem; font-weight: 500; line-height: 1.15; }
.editorial-grid__badge span { display: block; margin-top: 8px; color: rgba(255,255,255,.62); font-size: .75rem; }

.signature-list { display: grid; gap: 0; margin: 34px 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.signature-list li { display: grid; grid-template-columns: 32px 1fr; gap: 14px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.signature-list .num { color: var(--amber-dark); font-family: var(--serif); font-size: .84rem; font-style: italic; }

.races-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; }
.race-card { position: relative; min-height: 420px; grid-column: span 4; overflow: hidden; color: white; border-radius: var(--radius); isolation: isolate; }
.race-card:nth-child(1), .race-card:nth-child(6) { grid-column: span 5; }
.race-card:nth-child(2), .race-card:nth-child(5) { grid-column: span 7; }
.race-card img { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 700ms cubic-bezier(.2,.7,.2,1); }
.race-card::after { position: absolute; z-index: -1; inset: 0; content: ''; background: linear-gradient(0deg, rgba(26,28,23,.86), rgba(26,28,23,.03) 70%); }
.race-card:hover img { transform: scale(1.045); }
.race-card__content { position: absolute; right: 0; bottom: 0; left: 0; padding: 32px; }
.race-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.race-card__content p { max-width: 380px; margin: 10px 0 0; color: rgba(255,255,255,.72); font-size: .88rem; }
.race-card__arrow { width: 42px; height: 42px; display: grid; flex: 0 0 auto; place-items: center; border: 1px solid rgba(255,255,255,.44); border-radius: 50%; transition: background 180ms ease, color 180ms ease; }
.race-card:hover .race-card__arrow { color: var(--ink); background: white; }

.filters { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 38px; }
.filter-button { padding: 10px 16px; color: var(--ink-soft); border: 1px solid var(--line); border-radius: 999px; background: transparent; cursor: pointer; font-size: .82rem; font-weight: 600; }
.filter-button:hover, .filter-button.is-active { color: white; border-color: var(--forest); background: var(--forest); }
.filter-item.is-hidden { display: none; }

.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.principle { min-height: 300px; padding: 42px 36px; background: var(--paper); }
.principle__num { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; margin-bottom: 50px; color: var(--amber-dark); border: 1px solid var(--line); border-radius: 50%; font-family: var(--serif); font-style: italic; }
.principle h3 { margin-bottom: 16px; }
.principle p { color: var(--ink-soft); font-size: .93rem; }

.journey { counter-reset: journey; display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 56px; }
.journey__step { position: relative; min-height: 260px; padding: 36px 26px; border-top: 1px solid var(--line); }
.journey__step::before { display: block; margin-bottom: 40px; color: var(--amber-dark); counter-increment: journey; content: '0' counter(journey); font-family: var(--serif); font-size: .92rem; font-style: italic; }
.journey__step::after { position: absolute; top: -5px; left: 0; width: 9px; height: 9px; content: ''; background: var(--paper); border: 2px solid var(--amber); border-radius: 50%; }
.journey__step h3 { margin-bottom: 13px; font-size: 1.3rem; }
.journey__step p { color: var(--ink-soft); font-size: .86rem; }

.pension-feature { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 690px; overflow: hidden; background: var(--forest-dark); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.pension-feature__media { position: relative; min-height: 520px; }
.pension-feature__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; }
.pension-feature__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(50px, 6vw, 86px); color: var(--paper); }
.pension-feature__copy h2 { margin-bottom: 26px; font-size: clamp(2.4rem, 4vw, 4rem); }
.pension-feature__copy p { color: rgba(255,255,255,.72); }
.price-teaser { display: flex; flex-wrap: wrap; gap: 28px; margin: 24px 0 10px; padding: 25px 0; border-top: 1px solid var(--white-line); border-bottom: 1px solid var(--white-line); }
.price-teaser strong { display: block; color: var(--gold); font-family: var(--serif); font-size: 2rem; font-weight: 500; line-height: 1.05; }
.price-teaser span { color: rgba(255,255,255,.58); font-size: .72rem; }
.demo-note { color: var(--ink-soft); font-size: .73rem; font-style: italic; }
.section--forest .demo-note, .section--ink .demo-note, .pension-feature .demo-note { color: rgba(255,255,255,.74); }

.availability-panel { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 50px; padding: clamp(42px, 6vw, 76px); color: var(--paper); background: var(--forest); border-radius: var(--radius-lg); }
.availability-panel h2 { max-width: 770px; font-size: clamp(2.2rem, 4vw, 3.8rem); }
.availability-panel p { max-width: 680px; margin: 18px 0 0; color: rgba(255,255,255,.72); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.price-card { position: relative; display: flex; min-height: 440px; flex-direction: column; padding: 38px; overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.price-card--featured { color: var(--paper); background: var(--forest-dark); border-color: var(--forest-dark); box-shadow: var(--shadow-lg); }
.price-card__tag { align-self: flex-start; margin-bottom: 50px; padding: 6px 11px; color: var(--amber-dark); background: var(--cream-deep); border-radius: 999px; font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.price-card--featured .price-card__tag { color: var(--forest-dark); background: var(--gold); }
.price-card h3 { font-size: 1.75rem; }
.price { margin: 18px 0 26px; color: var(--amber-dark); font-family: var(--serif); font-size: 3.3rem; line-height: 1; }
.price small { font-family: var(--sans); font-size: .75rem; font-weight: 500; }
.price-card--featured .price { color: var(--gold); }
.price-card__list { display: grid; gap: 11px; margin: 0 0 30px; padding: 0; list-style: none; color: var(--ink-soft); font-size: .87rem; }
.price-card__list li { display: grid; grid-template-columns: 15px 1fr; gap: 9px; }
.price-card__list li::before { color: var(--amber); content: '—'; }
.price-card--featured .price-card__list { color: rgba(255,255,255,.72); }
.price-card .button { margin-top: auto; }

.options-table { width: 100%; border-collapse: collapse; }
.options-table th, .options-table td { padding: 20px 18px; border-bottom: 1px solid var(--line); text-align: left; }
.options-table th { color: var(--ink-soft); font-size: .73rem; letter-spacing: .1em; text-transform: uppercase; }
.options-table td:last-child { color: var(--amber-dark); font-family: var(--serif); font-size: 1.3rem; text-align: right; }

.info-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius); }
.info-band__item { padding: 30px; border-right: 1px solid var(--line); }
.info-band__item:last-child { border-right: 0; }
.info-band__item span { display: block; margin-bottom: 8px; color: var(--amber-dark); font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.info-band__item strong { font-family: var(--serif); font-size: 1.15rem; font-weight: 500; }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; display: grid; grid-template-columns: 1fr 36px; align-items: center; gap: 20px; padding: 26px 0; border: 0; background: transparent; cursor: pointer; text-align: left; }
.faq-question span:first-child { font-family: var(--serif); font-size: clamp(1.1rem, 1.6vw, 1.38rem); }
.faq-plus { position: relative; width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; }
.faq-plus::before, .faq-plus::after { position: absolute; top: 50%; left: 50%; width: 12px; height: 1px; content: ''; background: var(--ink); transform: translate(-50%, -50%); transition: transform 180ms ease; }
.faq-plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-question[aria-expanded='true'] .faq-plus::after { transform: translate(-50%, -50%) rotate(0); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 250ms ease; }
.faq-answer[hidden] { display: none; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { max-width: 790px; padding: 0 55px 25px 0; color: var(--ink-soft); }
.faq-question[aria-expanded='true'] + .faq-answer { grid-template-rows: 1fr; }

.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 330px; align-items: start; gap: 80px; }
.content h2 { margin: 1.4em 0 .45em; font-size: clamp(2rem, 3vw, 3rem); }
.content h2:first-child { margin-top: 0; }
.content h3 { margin: 1.4em 0 .45em; }
.content p, .content li { color: var(--ink-soft); }
.content ul, .content ol { padding-left: 1.25em; }
.sidebar-card { position: sticky; top: 120px; padding: 30px; background: var(--cream); border-radius: var(--radius); }
.sidebar-card h3 { margin-bottom: 15px; }
.sidebar-card p { color: var(--ink-soft); font-size: .88rem; }

.form-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; }
.form-intro { position: sticky; top: 120px; align-self: start; }
.form-intro h2 { margin-bottom: 24px; }
.form-intro .lead { margin-bottom: 28px; }
.contact-form { padding: clamp(30px, 5vw, 58px); background: var(--cream); border-radius: var(--radius-lg); }
.form-section + .form-section { margin-top: 42px; padding-top: 36px; border-top: 1px solid var(--line); }
.form-section h3 { margin-bottom: 24px; font-size: 1.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field--full { grid-column: 1 / -1; }
.field label, .field legend { display: block; margin-bottom: 8px; color: var(--ink); font-size: .78rem; font-weight: 600; }
.field .hint { display: block; margin: -4px 0 8px; color: var(--ink-soft); font-size: .7rem; }
.field input, .field select, .field textarea { width: 100%; min-height: 52px; padding: 13px 15px; color: var(--ink); border: 1px solid rgba(47,42,37,.2); border-radius: var(--radius-sm); background: var(--paper); outline: none; transition: border 180ms ease, box-shadow 180ms ease; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--amber); box-shadow: 0 0 0 3px rgba(181,121,69,.12); }
.checkbox-field { display: grid; grid-template-columns: 18px 1fr; gap: 11px; align-items: start; }
.checkbox-field input { width: 17px; height: 17px; margin-top: 4px; accent-color: var(--forest); }
.checkbox-field label { color: var(--ink-soft); font-size: .76rem; }
.form-actions { margin-top: 30px; }
.form-actions .demo-note { margin-top: 12px; }
.demo-submit-status { margin: 16px 0 0; padding: 14px 16px; border: 1px solid rgba(131, 93, 39, .25); color: var(--forest); background: var(--cream-deep); font-weight: 600; }

.notice { padding: 18px 21px; color: var(--ink-soft); background: var(--cream); border-left: 3px solid var(--amber); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: .86rem; }
.notice strong { color: var(--ink); }

.cta-section { padding: 0 0 112px; }
.cta-panel { position: relative; min-height: 450px; display: grid; place-items: center; overflow: hidden; color: white; background: var(--forest-dark); border-radius: var(--radius-lg); text-align: center; }
.cta-panel::before, .cta-panel::after { position: absolute; width: 340px; height: 340px; content: ''; border: 1px solid rgba(217,174,123,.25); border-radius: 50%; }
.cta-panel::before { top: -230px; left: -90px; }
.cta-panel::after { right: -140px; bottom: -250px; }
.cta-panel__content { position: relative; z-index: 1; max-width: 800px; padding: 70px 30px; }
.cta-panel h2 { margin-bottom: 22px; }
.cta-panel p { max-width: 650px; margin: 0 auto; color: rgba(255,255,255,.72); }
.cta-panel .button-row { justify-content: center; }

.footer { padding: 80px 0 25px; color: rgba(255,253,248,.72); background: #1f2b24; }
.footer__top { display: grid; grid-template-columns: 1.3fr .7fr .7fr .85fr; gap: 50px; padding-bottom: 60px; }
.footer__brand img { width: 285px; margin-bottom: 24px; }
.footer__brand p { max-width: 360px; font-size: .84rem; }
.footer h3 { margin-bottom: 20px; color: var(--paper); font-family: var(--sans); font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.footer ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.footer li, .footer a { font-size: .82rem; }
.footer a:hover { color: var(--gold); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); }
.footer__bottom p { margin: 0; font-size: .68rem; }
.footer__legal { display: flex; flex-wrap: wrap; gap: 18px; }
.footer__legal a { font-size: .68rem; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 650ms ease, transform 650ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 90ms; }
.reveal-delay-2 { transition-delay: 180ms; }
.reveal-delay-3 { transition-delay: 270ms; }

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

@media (max-width: 1120px) {
  .brand img { width: 205px; }
  .main-nav { gap: 17px; }
  .main-nav a { font-size: .76rem; }
  .nav-cta { padding: 9px 14px !important; }
  .home-breeds { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pension-feature { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1.2fr repeat(3, .8fr); gap: 32px; }
}

@media (max-width: 960px) {
  .section { padding: 88px 0; }
  .section--tight { padding: 65px 0; }
  .nav-shell { min-height: 78px; }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    width: min(88vw, 410px);
    height: 100dvh;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    padding: 90px 42px 50px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--paper);
    box-shadow: -20px 0 60px rgba(33,27,22,.18);
    visibility: hidden;
    pointer-events: none;
    clip-path: inset(0 0 0 100%);
    opacity: 0;
    transition: clip-path 250ms ease, opacity 180ms ease, visibility 0s linear 250ms;
  }
  .main-nav::before { position: absolute; inset: 0 100% 0 -100vw; content: ''; background: rgba(24,28,23,.58); opacity: 0; pointer-events: none; transition: opacity 250ms ease; }
  .main-nav.is-open { visibility: visible; pointer-events: auto; clip-path: inset(0); opacity: 1; transition-delay: 0s; }
  .main-nav.is-open::before { opacity: 1; pointer-events: auto; }
  .main-nav a { padding: 13px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.5rem; font-weight: 500; }
  .main-nav a::after { display: none; }
  .nav-cta { margin-top: 25px; padding: 14px 20px !important; border: 0 !important; font-family: var(--sans) !important; font-size: .88rem !important; text-align: center; }
  .nav-toggle { position: relative; z-index: 1001; }
  .hero { min-height: 720px; }
  .hero__content { padding: 110px 0 78px; }
  .hero__note { display: none; }
  .home-intro__grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .activity-panel { grid-template-rows: 330px 1fr; }
  .activity-panel__copy { min-height: 310px; }
  .proof-item { padding: 24px 20px; }
  .editorial-grid, .editorial-grid--reverse { grid-template-columns: 1fr; gap: 60px; }
  .editorial-grid__copy { max-width: 700px; }
  .editorial-grid__media { min-height: 580px; }
  .editorial-grid__media img { height: 550px; }
  .race-card { grid-column: span 6 !important; min-height: 390px; }
  .principles-grid { grid-template-columns: 1fr 1fr; }
  .journey { grid-template-columns: repeat(3, 1fr); }
  .pension-feature { grid-template-columns: 1fr; }
  .pension-feature__media { min-height: 560px; }
  .pension-feature__copy { padding: 60px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { min-height: 0; }
  .info-band { grid-template-columns: 1fr 1fr; }
  .info-band__item:nth-child(2) { border-right: 0; }
  .info-band__item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .content-grid { grid-template-columns: 1fr; gap: 50px; }
  .sidebar-card { position: static; }
  .form-layout { grid-template-columns: 1fr; }
  .form-intro { position: static; }
  .footer__top { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .container, .container--narrow { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 70px 0; }
  .section--tight { padding: 54px 0; }
  .concept-bar { padding: 7px 10px; font-size: .6rem; }
  .brand img { width: 185px; }
  .nav-shell { min-height: 72px; }
  .nav-toggle { width: 43px; height: 43px; }
  h1 { font-size: clamp(2.9rem, 15vw, 4.4rem); }
  h2 { font-size: clamp(2.2rem, 11vw, 3.25rem); }
  .hero { min-height: min(650px, calc(100svh - 96px)); align-items: end; }
  .hero__media img { object-position: 57% 50%; }
  .hero__media::before { background: linear-gradient(0deg, rgba(26,28,23,.88), rgba(26,28,23,.28) 78%); }
  .hero__content { padding: 68px 0 42px; }
  .hero__content h1 { font-size: clamp(2.45rem, 10.8vw, 3.15rem); letter-spacing: -.036em; }
  .hero__content .lead { margin-top: 19px; font-size: .98rem; line-height: 1.55; }
  .hero__content .button-row { margin-top: 27px; }
  .button-row { align-items: stretch; flex-direction: column; }
  .button-row .button { width: 100%; }
  .home-intro { padding: 64px 0; }
  .home-intro::after,
  .home-activities::before,
  .home-pension::after,
  #races::before,
  .home-faq::after { width: 250px; height: 360px; background-size: 52px auto, 40px auto, 31px auto; opacity: .11; }
  .home-intro::after { top: -70px; right: -95px; }
  .home-activities::before { top: 40px; right: -110px; }
  .home-pension::after { top: 18px; left: -112px; }
  #races::before { bottom: -20px; left: -88px; }
  .home-faq::after { top: 18px; right: -112px; }
  .interior-page main > .section:not(.section--forest)::after {
    top: 28px;
    right: -88px;
    width: 220px;
    height: 300px;
    background-size: 47px auto, 33px auto;
    opacity: .1;
  }
  .interior-page main > .section:not(.section--forest):nth-of-type(even)::after { right: auto; left: -88px; }
  .home-intro__grid { grid-template-columns: 1fr; gap: 28px; }
  .home-intro__grid h2 { font-size: clamp(2.3rem, 10vw, 3.1rem); }
  .home-activities { padding-top: 68px; }
  .activity-choice { grid-template-columns: 1fr; border-radius: var(--radius); }
  .activity-panel { grid-template-rows: 270px auto; }
  .activity-panel__copy { min-height: 300px; padding: 32px 25px; }
  .activity-panel__copy h3 { font-size: 2.2rem; }
  .home-assurance .proof-item { min-height: 0; gap: 15px; padding: 20px 12px; }
  .home-assurance .proof-item strong { font-size: 1.12rem; }
  .proof-marker { width: 26px; }
  .home-pension .pension-feature { min-height: 0; }
  .home-pension .price-teaser { display: grid; grid-template-columns: 1fr 1fr; }
  .home-pension .price-teaser > div:last-child { grid-column: 1 / -1; }
  .home-breeds { grid-template-columns: 1fr; gap: 11px; }
  .home-breed { min-height: 132px; grid-template-columns: 88px minmax(0, 1fr) 40px; gap: 16px; padding: 14px; }
  .home-breed > img { width: 88px; height: 94px; }
  .home-breed h3 { font-size: 1.2rem; }
  .home-breed small { margin-top: 8px; font-size: .76rem; }
  .home-breed__arrow { width: 40px; height: 40px; }
  .home-section-actions { margin-top: 30px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item { min-height: 95px; border-right: 0; border-bottom: 1px solid var(--white-line); }
  .proof-item:last-child { border-bottom: 0; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 25px; margin-bottom: 38px; }
  .editorial-grid { gap: 44px; }
  .editorial-grid__media { min-height: 440px; }
  .editorial-grid__media img { width: 92%; height: 420px; }
  .editorial-grid__media::before { width: 80px; height: 80px; }
  .editorial-grid__badge { width: 165px; padding: 20px; }
  .races-grid { gap: 14px; }
  .race-card { grid-column: 1 / -1 !important; min-height: 390px; }
  .race-card__content { padding: 25px; }
  .principles-grid { grid-template-columns: 1fr; }
  .principle { min-height: 0; padding: 32px 25px; }
  .principle__num { margin-bottom: 30px; }
  .journey { grid-template-columns: 1fr; }
  .journey__step { min-height: 0; padding: 25px 15px 25px 30px; border-top: 0; border-left: 1px solid var(--line); }
  .journey__step::before { margin-bottom: 14px; }
  .journey__step::after { top: 32px; left: -5px; }
  .pension-feature { border-radius: var(--radius); }
  .pension-feature__media { min-height: 420px; }
  .pension-feature__copy { padding: 38px 25px; }
  .availability-panel { grid-template-columns: 1fr; gap: 28px; padding: 38px 25px; }
  .pricing-grid { gap: 15px; }
  .price-card { padding: 30px 25px; }
  .price-card__tag { margin-bottom: 35px; }
  .options-table th, .options-table td { padding: 17px 8px; font-size: .78rem; }
  .options-table td:last-child { font-size: 1.05rem; }
  .info-band { grid-template-columns: 1fr; }
  .info-band__item { border-right: 0; border-bottom: 1px solid var(--line); }
  .info-band__item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .info-band__item:last-child { border-bottom: 0; }
  .page-hero { min-height: 500px; }
  .page-hero--compact { min-height: 390px; }
  .page-hero__content { padding: 90px 0 60px; }
  .page-hero__content h1 { font-size: clamp(2.8rem, 14vw, 4.4rem); }
  .form-layout { gap: 40px; }
  .contact-form { padding: 28px 18px; border-radius: var(--radius); }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .cta-section { padding-bottom: 70px; }
  .cta-panel { min-height: 420px; border-radius: var(--radius); }
  .footer { padding-top: 60px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px 25px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__brand img { width: 250px; }
  .footer__bottom { align-items: flex-start; flex-direction: column; gap: 15px; }
}

@media (max-width: 360px) {
  .hero__content .eyebrow { font-size: .7rem; letter-spacing: .12em; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
