@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800&family=Lato:wght@300;400;700&display=swap');

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

:root {
  --color-primary: #F5F5DC;
  --color-primary-dark: #EAE8C0;
  --color-sage: #A2B29F;
  --color-sage-dark: #7A917A;
  --color-gold: #CDA34F;
  --color-gold-light: #DDB96A;
  --color-terracotta: #E27B58;
  --color-white: #FFFFFF;
  --color-dark: #2C2C2C;
  --color-mid: #5A5A5A;
  --color-light-text: #8A8A7A;
  --color-border: #D8D8C0;
  --color-panel-bg: #F0EFD4;
  --font-heading: 'Raleway', sans-serif;
  --font-body: 'Lato', sans-serif;
  --max-width: 1440px;
  --container-width: 1200px;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 80px;
  --space-xxl: 120px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
  --transition: 0.35s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-primary);
  color: var(--color-dark);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--color-dark);
}

h1 { font-size: clamp(2rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.75rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { line-height: 1.7; color: var(--color-mid); }

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.container--wide {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.section-padding {
  padding: var(--space-xl) 0;
}

.section-padding--lg {
  padding: var(--space-xxl) 0;
}

.text-accent { color: var(--color-sage-dark); }
.text-gold { color: var(--color-gold); }
.text-terra { color: var(--color-terracotta); }

.divider {
  width: 60px;
  height: 3px;
  background: var(--color-gold);
  margin: var(--space-md) 0;
}

.divider--center {
  margin: var(--space-md) auto;
}

.tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-sage-dark);
  padding: 4px 12px;
  border: 1.5px solid var(--color-sage);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
}

.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: var(--color-sage);
  color: var(--color-white);
  border-color: var(--color-sage);
}

.btn--primary:hover {
  background: var(--color-sage-dark);
  border-color: var(--color-sage-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--color-dark);
  border-color: var(--color-dark);
}

.btn--outline:hover {
  background: var(--color-dark);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn--gold {
  background: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
}

.btn--gold:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(245, 245, 220, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.header-logo__mark {
  width: 36px;
  height: 36px;
  background: var(--color-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header-logo__mark svg {
  width: 20px;
  height: 20px;
  fill: var(--color-white);
}

.header-logo__text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-dark);
  letter-spacing: 0.04em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.header-nav__link {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-mid);
  text-decoration: none;
  position: relative;
  transition: color var(--transition);
}

.header-nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-sage);
  transition: width var(--transition);
}

.header-nav__link:hover,
.header-nav__link.active {
  color: var(--color-sage-dark);
}

.header-nav__link:hover::after,
.header-nav__link.active::after {
  width: 100%;
}

.header-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.header-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  transition: var(--transition);
}

.header-mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--color-primary);
  border-top: 1px solid var(--color-border);
  padding: var(--space-sm);
  gap: var(--space-xs);
}

.header-mobile-nav.open {
  display: flex;
}

.header-mobile-nav a {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-mid);
  padding: 10px var(--space-sm);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.header-mobile-nav a:hover {
  background: var(--color-sage);
  color: var(--color-white);
}

.page-body {
  padding-top: 72px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(245,245,220,0.92) 0%, rgba(245,245,220,0.72) 55%, rgba(245,245,220,0.2) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: var(--space-xxl) 0 var(--space-xl);
}

.hero__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-sage-dark);
  margin-bottom: var(--space-sm);
}

.hero__title {
  margin-bottom: var(--space-md);
}

.hero__title em {
  font-style: normal;
  color: var(--color-gold);
}

.hero__subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-mid);
  margin-bottom: var(--space-lg);
  max-width: 520px;
}

.hero__cta {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero__disclaimer {
  margin-top: var(--space-lg);
  font-size: 0.75rem;
  color: var(--color-light-text);
  font-style: italic;
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-sm);
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.hero__scroll span {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-light-text);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: var(--color-sage);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

.panel {
  position: relative;
}

.panel--beige { background: var(--color-primary); }
.panel--white { background: var(--color-white); }
.panel--sage { background: var(--color-sage); }
.panel--sage-light { background: #EBF0EA; }
.panel--gold-light { background: #F8F0E0; }
.panel--dark { background: var(--color-dark); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.two-col--60-40 {
  grid-template-columns: 3fr 2fr;
}

.two-col--40-60 {
  grid-template-columns: 2fr 3fr;
}

.two-col--reverse-mobile > *:first-child { order: 1; }
.two-col--reverse-mobile > *:last-child { order: 2; }

.panel-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.panel-image--full {
  border-radius: 0;
}

.panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.panel-image:hover img {
  transform: scale(1.03);
}

.panel-image--tall img {
  height: 520px;
}

.panel-image--medium img {
  height: 400px;
}

.panel-image--short img {
  height: 280px;
}

.panel-text {
  padding: var(--space-md) 0;
}

.panel-text--padded {
  padding: var(--space-lg);
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.concept-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.concept-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.concept-card__image {
  overflow: hidden;
  height: 200px;
}

.concept-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.concept-card:hover .concept-card__image img {
  transform: scale(1.05);
}

.concept-card__body {
  padding: var(--space-md);
}

.concept-card__tag {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-sage-dark);
  margin-bottom: var(--space-xs);
}

.concept-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.concept-card__text {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--color-mid);
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.season-card {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  cursor: default;
}

.season-card__bg {
  position: absolute;
  inset: 0;
}

.season-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.season-card:hover .season-card__bg img {
  transform: scale(1.06);
}

.season-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  transition: background var(--transition);
}

.season-card:hover .season-card__overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}

.season-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md);
  color: var(--color-white);
}

.season-card__num {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 6px;
}

.season-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 6px;
}

.season-card__text {
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.8);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.season-card:hover .season-card__text {
  max-height: 120px;
  opacity: 1;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.principle-item {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-sage);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.principle-item:hover {
  box-shadow: var(--shadow-md);
}

.principle-item__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--color-sage-light, #EBF0EA);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.principle-item__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-sage-dark);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.principle-item__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--color-dark);
}

.principle-item__text {
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--color-mid);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--color-dark);
}

.stat-strip__item {
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.stat-strip__item:last-child {
  border-right: none;
}

.stat-strip__num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-gold);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-strip__label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
}

.pull-quote {
  position: relative;
  padding: var(--space-xl) var(--space-lg);
  background: var(--color-panel-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.pull-quote::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 20px;
  font-family: var(--font-heading);
  font-size: 10rem;
  color: var(--color-sage);
  opacity: 0.15;
  line-height: 1;
}

.pull-quote__text {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.6;
  color: var(--color-dark);
  position: relative;
  z-index: 1;
}

.pull-quote__source {
  margin-top: var(--space-sm);
  font-size: 0.82rem;
  color: var(--color-sage-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.info-strip {
  background: var(--color-sage);
  padding: var(--space-md) 0;
}

.info-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.info-strip__item {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-strip__item::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.notice-box {
  background: var(--color-panel-bg);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-gold);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.notice-box__title {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 8px;
}

.notice-box__text {
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--color-mid);
}

.full-bleed {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.full-bleed__bg {
  position: absolute;
  inset: 0;
}

.full-bleed__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.full-bleed__overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 44, 44, 0.55);
}

.full-bleed__content {
  position: relative;
  z-index: 1;
  color: var(--color-white);
  max-width: 700px;
  padding: var(--space-xl) 0;
}

.full-bleed__content h2 {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.full-bleed__content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.02rem;
}

.tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--color-border);
  margin-bottom: var(--space-lg);
  overflow-x: auto;
}

.tab-btn {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-light-text);
  background: none;
  border: none;
  padding: var(--space-sm) var(--space-md);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.tab-btn.active,
.tab-btn:hover {
  color: var(--color-sage-dark);
  border-bottom-color: var(--color-sage);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
  gap: var(--space-sm);
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--color-sage-dark);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid var(--color-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
}

.faq-icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--color-sage-dark);
  fill: none;
  stroke-width: 2.5;
  transition: transform var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--color-sage);
}

.faq-item.open .faq-icon svg {
  stroke: var(--color-white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer__inner {
  padding-bottom: var(--space-md);
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--color-mid);
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.content-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.content-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--color-mid);
}

.content-list li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-sage);
  margin-top: 8px;
}

.image-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-sm);
}

.image-mosaic__large {
  grid-row: span 2;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.image-mosaic__large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
  transition: transform 0.6s ease;
}

.image-mosaic__large:hover img {
  transform: scale(1.04);
}

.image-mosaic__small {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.image-mosaic__small img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.image-mosaic__small:hover img {
  transform: scale(1.04);
}

.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-sage), var(--color-gold), var(--color-sage));
}

.timeline-item {
  position: relative;
  margin-bottom: var(--space-lg);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-gold);
  border: 3px solid var(--color-primary);
  box-shadow: 0 0 0 2px var(--color-gold);
}

.timeline-item__year {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-sage-dark);
  margin-bottom: 4px;
}

.timeline-item__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.timeline-item__text {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--color-mid);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-mid);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--color-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-sage);
  box-shadow: 0 0 0 3px rgba(162, 178, 159, 0.2);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.form-disclaimer {
  background: var(--color-panel-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--color-mid);
  font-style: italic;
}

.contact-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.contact-card__icon {
  width: 40px;
  height: 40px;
  background: #EBF0EA;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-sage-dark);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card__label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-light-text);
  margin-bottom: 4px;
}

.contact-card__value {
  font-size: 0.94rem;
  color: var(--color-dark);
  line-height: 1.5;
}

.policy-wrap {
  max-width: 840px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-sm);
}

.policy-wrap h1 {
  margin-bottom: var(--space-md);
}

.policy-wrap h2 {
  font-size: 1.35rem;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.policy-wrap p,
.policy-wrap ul,
.policy-wrap ol {
  margin-bottom: var(--space-sm);
  font-size: 0.94rem;
  line-height: 1.75;
  color: var(--color-mid);
}

.policy-wrap ul {
  padding-left: var(--space-md);
}

.policy-wrap ul li {
  list-style: disc;
  margin-bottom: 6px;
}

.policy-wrap .meta {
  font-size: 0.82rem;
  color: var(--color-light-text);
  margin-bottom: var(--space-lg);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.02rem;
}

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.8);
  padding: var(--space-xl) 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--space-sm);
  text-decoration: none;
}

.footer-brand__mark {
  width: 32px;
  height: 32px;
  background: var(--color-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-brand__mark svg {
  width: 18px;
  height: 18px;
  fill: var(--color-white);
}

.footer-brand__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: 0.04em;
}

.footer-brand__tagline {
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-sm);
}

.footer-disclaimer {
  font-size: 0.75rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.4);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-sm);
}

.footer-col__title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: var(--space-sm);
}

.footer-col__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col__links a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col__links a:hover {
  color: var(--color-sage);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-info li {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.footer-contact-info li strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 2px;
}

.footer-bottom {
  padding: var(--space-md) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-bottom__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom__notice {
  font-size: 0.78rem;
  color: var(--color-gold);
  font-style: italic;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: #2C2C2C;
  border-top: 3px solid var(--color-sage);
  padding: var(--space-md);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  flex: 1;
  min-width: 220px;
}

.cookie-banner__text strong {
  color: var(--color-white);
  font-family: var(--font-heading);
}

.cookie-banner__actions {
  display: flex;
  gap: var(--space-xs);
  flex-wrap: wrap;
}

.cookie-btn {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}

.cookie-btn--accept {
  background: var(--color-sage);
  color: var(--color-white);
  border-color: var(--color-sage);
}

.cookie-btn--accept:hover {
  background: var(--color-sage-dark);
  border-color: var(--color-sage-dark);
}

.cookie-btn--decline {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.25);
}

.cookie-btn--decline:hover {
  border-color: rgba(255,255,255,0.6);
  color: var(--color-white);
}

.cookie-btn--learn {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border-color: transparent;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-btn--learn:hover {
  color: var(--color-white);
}

.thank-you-page {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl) var(--space-sm);
}

.thank-you-block {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-xxl);
  max-width: 580px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.thank-you-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(to right, var(--color-sage), var(--color-gold));
}

.thank-you-icon {
  width: 72px;
  height: 72px;
  background: #EBF0EA;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.thank-you-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--color-sage-dark);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thank-you-block h1 {
  font-size: 1.8rem;
  margin-bottom: var(--space-sm);
}

.thank-you-block p {
  font-size: 0.94rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .season-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .two-col,
  .two-col--60-40,
  .two-col--40-60 {
    grid-template-columns: 1fr;
  }

  .two-col--reverse-mobile > *:first-child { order: 2; }
  .two-col--reverse-mobile > *:last-child { order: 1; }

  .concept-grid {
    grid-template-columns: 1fr 1fr;
  }

  .principles-grid {
    grid-template-columns: 1fr;
  }

  .panel-image--tall img {
    height: 360px;
  }
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }

  .header-burger {
    display: flex;
  }

  .concept-grid {
    grid-template-columns: 1fr;
  }

  .season-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-strip {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: 100svh;
  }

  .hero__overlay {
    background: rgba(245,245,220,0.88);
  }

  .thank-you-block {
    padding: var(--space-lg) var(--space-md);
  }

  .image-mosaic {
    grid-template-columns: 1fr;
  }

  .image-mosaic__large {
    grid-row: span 1;
  }

  .image-mosaic__large img {
    min-height: 240px;
  }
}

@media (max-width: 520px) {
  .season-grid {
    grid-template-columns: 1fr;
  }

  .stat-strip {
    grid-template-columns: 1fr 1fr;
  }
}
