@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;0,700;1,400&family=Source+Sans+3:wght@300;400;600;700&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-primary: #2C3E50;
  --color-sand: #EAE0D5;
  --color-muted-green: #7F8C8D;
  --color-terracotta: #CB5C38;
  --color-white: #FAFAF8;
  --color-light-gray: #D5CFC7;
  --color-dark-overlay: rgba(44, 62, 80, 0.72);
  --color-text-on-dark: #F0EBE4;
  --color-text-body: #2C3E50;
  --font-heading: 'Source Sans 3', sans-serif;
  --font-body: 'Lora', serif;
  --container-max: 1440px;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 64px;
  --space-xl: 96px;
  --space-xxl: 128px;
  --transition-base: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-body);
  background-color: var(--color-white);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
  color: var(--color-primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 600; }

p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--color-terracotta);
  text-decoration: none;
  transition: color var(--transition-base), opacity var(--transition-base);
}
a:hover { color: #a8472a; text-decoration: underline; }

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul, ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
li { margin-bottom: 0.5rem; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xl) 0;
}

.section--dark {
  background-color: var(--color-primary);
  color: var(--color-text-on-dark);
}
.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: var(--color-text-on-dark);
}

.section--sand {
  background-color: var(--color-sand);
}

.section--green {
  background-color: #6B7B7C;
  color: var(--color-text-on-dark);
}
.section--green h2,
.section--green h3 {
  color: var(--color-text-on-dark);
}

.divider {
  width: 56px;
  height: 3px;
  background-color: var(--color-terracotta);
  margin: var(--space-sm) 0 var(--space-md);
  border: none;
}

.divider--centered {
  margin: var(--space-sm) auto var(--space-md);
}

.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-terracotta);
  margin-bottom: var(--space-xs);
}

.tag--light {
  color: #D4A898;
}

.eyebrow {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted-green);
  display: block;
  margin-bottom: var(--space-xs);
}

.eyebrow--light {
  color: var(--color-light-gray);
}

.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 34px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color var(--transition-base), border-color var(--transition-base), color var(--transition-base), box-shadow var(--transition-base);
  text-decoration: none;
}

.btn--primary {
  background-color: var(--color-terracotta);
  border-color: var(--color-terracotta);
  color: var(--color-white);
}
.btn--primary:hover {
  background-color: #a8472a;
  border-color: #a8472a;
  color: var(--color-white);
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(203, 92, 56, 0.35);
}

.btn--outline {
  background-color: transparent;
  border-color: var(--color-text-on-dark);
  color: var(--color-text-on-dark);
}
.btn--outline:hover {
  background-color: var(--color-terracotta);
  border-color: var(--color-terracotta);
  color: var(--color-white);
  text-decoration: none;
}

.btn--outline-dark {
  background-color: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.btn--outline-dark:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.text-center { text-align: center; }
.text-right { text-align: right; }

.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--color-primary);
  border-bottom: 1px solid rgba(234, 224, 213, 0.12);
  transition: background-color var(--transition-base), box-shadow var(--transition-base);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 var(--space-md);
  max-width: var(--container-max);
  margin: 0 auto;
}

.site-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-on-dark);
  letter-spacing: 0.04em;
  text-decoration: none;
}
.site-logo span {
  color: var(--color-terracotta);
}
.site-logo:hover {
  color: var(--color-text-on-dark);
  text-decoration: none;
  opacity: 0.9;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-nav a {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240, 235, 228, 0.75);
  text-decoration: none;
  transition: color var(--transition-base);
  position: relative;
  padding-bottom: 3px;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-terracotta);
  transition: width var(--transition-base);
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--color-text-on-dark);
  text-decoration: none;
}
.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text-on-dark);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

/* ===== FOOTER ===== */
.site-footer {
  background-color: var(--color-primary);
  color: var(--color-text-on-dark);
  padding-top: var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(234, 224, 213, 0.15);
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text-on-dark);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-sm);
}

.footer-brand-name span {
  color: var(--color-terracotta);
}

.footer-description {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(240, 235, 228, 0.65);
  margin-bottom: var(--space-sm);
}

.footer-disclaimer-box {
  background-color: rgba(255,255,255,0.05);
  border-left: 3px solid var(--color-terracotta);
  padding: var(--space-sm);
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(240, 235, 228, 0.6);
  margin-top: var(--space-sm);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: var(--space-sm);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(240, 235, 228, 0.65);
  text-decoration: none;
  transition: color var(--transition-base);
}
.footer-links a:hover {
  color: var(--color-sand);
  text-decoration: none;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  font-size: 0.88rem;
  color: rgba(240, 235, 228, 0.65);
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-contact-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-hours {
  font-size: 0.82rem;
  color: rgba(240, 235, 228, 0.55);
  border-top: 1px solid rgba(234, 224, 213, 0.12);
  padding-top: var(--space-sm);
  margin-top: var(--space-xs);
}

.footer-bottom {
  padding: var(--space-md) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.footer-copyright {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: rgba(240, 235, 228, 0.4);
  letter-spacing: 0.05em;
}

.footer-edu-note {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(240, 235, 228, 0.5);
  letter-spacing: 0.06em;
  font-style: italic;
}

.footer-big-disclaimer {
  border-top: 1px solid rgba(234, 224, 213, 0.1);
  padding: var(--space-md) 0;
  font-size: 0.78rem;
  line-height: 1.7;
  color: rgba(240, 235, 228, 0.42);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 70px;
  background-color: var(--color-primary);
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(44,62,80,0.88) 50%, rgba(44,62,80,0.35) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: var(--space-xl) var(--space-md);
}

.hero-disclaimer {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240, 235, 228, 0.45);
  margin-top: var(--space-md);
  border-top: 1px solid rgba(234, 224, 213, 0.18);
  padding-top: var(--space-sm);
}

.hero-automedicacion {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(203, 92, 56, 0.7);
  margin-top: var(--space-xs);
}

/* ===== SECTION TITLES ===== */
.section-header {
  margin-bottom: var(--space-lg);
}

.section-header--centered {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-lg);
}

/* ===== CARDS ===== */
.card {
  background-color: var(--color-white);
  border: 1px solid var(--color-light-gray);
  padding: var(--space-md);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.card:hover {
  box-shadow: 0 8px 30px rgba(44, 62, 80, 0.12);
  transform: translateY(-2px);
}

.card--sand {
  background-color: var(--color-sand);
  border-color: transparent;
}

.card--dark {
  background-color: rgba(255,255,255,0.06);
  border-color: rgba(234, 224, 213, 0.15);
  color: var(--color-text-on-dark);
}
.card--dark h3 {
  color: var(--color-text-on-dark);
}

.card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: var(--space-sm);
}

/* ===== FEATURE ICON ===== */
.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background-color: rgba(203, 92, 56, 0.1);
  border-radius: 0;
  margin-bottom: var(--space-sm);
}
.feature-icon svg {
  color: var(--color-terracotta);
}

/* ===== SPLIT SECTION ===== */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.split-image {
  overflow: hidden;
  position: relative;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.split-image:hover img {
  transform: scale(1.02);
}

.split-content {
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-content--sand {
  background-color: var(--color-sand);
}

.split-content--dark {
  background-color: var(--color-primary);
  color: var(--color-text-on-dark);
}
.split-content--dark h2,
.split-content--dark h3 {
  color: var(--color-text-on-dark);
}

/* ===== STAT STRIP ===== */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(234, 224, 213, 0.15);
  border-bottom: 1px solid rgba(234, 224, 213, 0.15);
}

.stat-item {
  padding: var(--space-md) var(--space-sm);
  text-align: center;
  border-right: 1px solid rgba(234, 224, 213, 0.15);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-terracotta);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240, 235, 228, 0.55);
}

/* ===== INGREDIENT CARDS ===== */
.ingredient-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-light-gray);
  padding: var(--space-md) var(--space-sm);
  text-align: center;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.ingredient-card:hover {
  box-shadow: 0 6px 24px rgba(44, 62, 80, 0.1);
  transform: translateY(-3px);
}

.ingredient-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== TABLE ===== */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-heading);
  font-size: 0.9rem;
}

.comparison-table th {
  background-color: var(--color-primary);
  color: var(--color-text-on-dark);
  padding: 14px 20px;
  text-align: left;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--color-light-gray);
  vertical-align: top;
}

.comparison-table tr:nth-child(even) td {
  background-color: rgba(234, 224, 213, 0.3);
}

.comparison-table tr:hover td {
  background-color: rgba(234, 224, 213, 0.5);
}

.check-yes {
  color: var(--color-terracotta);
  font-weight: 700;
}

/* ===== ACCORDION ===== */
.accordion-item {
  border-bottom: 1px solid var(--color-light-gray);
}

.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: var(--space-md) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: color var(--transition-base);
  gap: var(--space-sm);
}
.accordion-trigger:hover {
  color: var(--color-terracotta);
}

.accordion-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 2px solid var(--color-terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-base);
  color: var(--color-terracotta);
}

.accordion-trigger.is-open .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  display: none;
  padding: 0 0 var(--space-md);
  font-size: 0.95rem;
  line-height: 1.75;
  color: #4a5568;
}
.accordion-body.is-open {
  display: block;
}

.accordion-disclaimer {
  font-size: 0.78rem;
  font-style: italic;
  color: var(--color-muted-green);
  border-left: 2px solid var(--color-light-gray);
  padding-left: var(--space-sm);
  margin-top: var(--space-sm);
}

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--color-light-gray);
}

.timeline-item {
  position: relative;
  margin-bottom: var(--space-md);
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--color-terracotta);
  border: 3px solid var(--color-white);
  box-shadow: 0 0 0 2px var(--color-terracotta);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: 4px;
}

/* ===== PRINCIPLES / TRUST STRIP ===== */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  border-left: 3px solid var(--color-terracotta);
}

.trust-item-icon {
  flex-shrink: 0;
  color: var(--color-terracotta);
}

/* ===== HOW IT WORKS STEPS ===== */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 1px;
  background-color: var(--color-light-gray);
  z-index: 0;
}

.step-item {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--color-terracotta);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  border: 4px solid var(--color-sand);
}

/* ===== PERSPECTIVES ===== */
.perspectives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.perspective-card {
  background-color: var(--color-sand);
  padding: var(--space-md);
  border-bottom: 3px solid var(--color-terracotta);
  transition: box-shadow var(--transition-base);
}
.perspective-card:hover {
  box-shadow: 0 8px 28px rgba(44, 62, 80, 0.1);
}

.perspective-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  color: var(--color-terracotta);
}

/* ===== CONTEXT NOTE ===== */
.context-note {
  background-color: var(--color-sand);
  border-left: 4px solid var(--color-terracotta);
  padding: var(--space-md) var(--space-lg);
  font-size: 0.88rem;
  line-height: 1.7;
  color: #4a5568;
  margin: var(--space-lg) 0;
}

.context-note h3 {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: var(--space-xs);
}

/* ===== IMAGE ROW ===== */
.img-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.img-grid-3 img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.img-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.img-grid-2 img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

/* ===== FULL WIDTH IMAGE SECTION ===== */
.section-banner {
  width: 100%;
  height: 420px;
  overflow: hidden;
  position: relative;
}
.section-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(44,62,80,0.75) 0%, rgba(44,62,80,0.2) 100%);
  display: flex;
  align-items: center;
}
.section-banner-text {
  padding: 0 var(--space-xl);
  color: var(--color-text-on-dark);
  max-width: 600px;
}
.section-banner-text h2 {
  color: var(--color-text-on-dark);
}

/* ===== POLICY PAGES ===== */
.policy-header {
  background-color: var(--color-primary);
  padding: var(--space-xl) 0 var(--space-lg);
  margin-top: 70px;
}

.policy-header h1 {
  color: var(--color-text-on-dark);
}

.policy-content {
  padding: var(--space-xl) 0;
}

.policy-section {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-light-gray);
}
.policy-section:last-child {
  border-bottom: none;
}

.policy-section h2 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  color: var(--color-primary);
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  background-color: var(--color-primary);
  padding: var(--space-xxl) 0 var(--space-xl);
  margin-top: 70px;
}

.about-hero h1 {
  color: var(--color-text-on-dark);
}

.philosophy-block {
  background-color: var(--color-sand);
  padding: var(--space-xl);
  border-left: 6px solid var(--color-terracotta);
  margin: var(--space-lg) 0;
}

.philosophy-block blockquote {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--color-primary);
  line-height: 1.6;
  margin: 0;
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
  background-color: var(--color-primary);
  padding: var(--space-xl) 0;
  margin-top: 70px;
}
.contact-hero h1 {
  color: var(--color-text-on-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.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-primary);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--color-light-gray);
  background-color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-primary);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  outline: none;
  border-radius: 0;
}
.form-control:focus {
  border-color: var(--color-terracotta);
  box-shadow: 0 0 0 3px rgba(203, 92, 56, 0.12);
}

textarea.form-control {
  resize: vertical;
  min-height: 160px;
}

.form-disclaimer {
  background-color: var(--color-sand);
  border-left: 3px solid var(--color-terracotta);
  padding: var(--space-sm) var(--space-md);
  font-size: 0.82rem;
  line-height: 1.6;
  color: #5a6878;
  margin-bottom: var(--space-md);
}

/* ===== THANK YOU PAGE ===== */
.thankyou-hero {
  background-color: var(--color-primary);
  padding: var(--space-xxl) 0;
  margin-top: 70px;
  text-align: center;
}
.thankyou-hero h1 {
  color: var(--color-text-on-dark);
}

.thankyou-check {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: rgba(203, 92, 56, 0.15);
  border: 2px solid var(--color-terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.nav-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.nav-card {
  background-color: var(--color-sand);
  padding: var(--space-md);
  border-bottom: 3px solid var(--color-terracotta);
  transition: box-shadow var(--transition-base);
}
.nav-card:hover {
  box-shadow: 0 6px 24px rgba(44, 62, 80, 0.12);
}
.nav-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.nav-card p {
  font-size: 0.87rem;
  color: #5a6878;
}

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: var(--color-primary);
  border-top: 3px solid var(--color-terracotta);
  padding: var(--space-md) var(--space-lg);
  display: none;
}

.cookie-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cookie-text {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  color: rgba(240, 235, 228, 0.8);
  flex: 1;
  min-width: 240px;
}

.cookie-actions {
  display: flex;
  gap: var(--space-xs);
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 20px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color var(--transition-base), color var(--transition-base), border-color var(--transition-base);
  text-decoration: none;
  display: inline-block;
}

.cookie-btn--accept {
  background-color: var(--color-terracotta);
  border-color: var(--color-terracotta);
  color: var(--color-white);
}
.cookie-btn--accept:hover {
  background-color: #a8472a;
  border-color: #a8472a;
  color: var(--color-white);
  text-decoration: none;
}

.cookie-btn--decline {
  background-color: transparent;
  border-color: rgba(240, 235, 228, 0.4);
  color: rgba(240, 235, 228, 0.7);
}
.cookie-btn--decline:hover {
  border-color: rgba(240, 235, 228, 0.8);
  color: rgba(240, 235, 228, 1);
  text-decoration: none;
}

.cookie-btn--policy {
  background-color: transparent;
  border-color: transparent;
  color: rgba(240, 235, 228, 0.5);
  text-decoration: underline;
}
.cookie-btn--policy:hover {
  color: var(--color-sand);
  text-decoration: underline;
}

/* ===== PAGE OFFSET ===== */
.page-content {
  margin-top: 70px;
}

/* ===== INLINE HELPERS ===== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0,0,0,0);
  overflow: hidden;
}

.inline-note {
  font-size: 0.78rem;
  font-style: italic;
  color: var(--color-muted-green);
}

.label-terracotta {
  background-color: var(--color-terracotta);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  display: inline-block;
}

.line-rule {
  border: none;
  border-top: 1px solid var(--color-light-gray);
  margin: var(--space-lg) 0;
}

.text-terracotta { color: var(--color-terracotta); }
.text-sand { color: var(--color-sand); }
.text-muted { color: var(--color-muted-green); }
.text-light { color: rgba(240, 235, 228, 0.7); }

.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.font-heading { font-family: var(--font-heading); }

.list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-check li {
  list-style: none;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 10px;
}
.list-check li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-terracotta);
  font-weight: 700;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-row::before { display: none; }
}

@media (max-width: 860px) {
  .grid-2,
  .split-section,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .split-section {
    display: flex;
    flex-direction: column;
  }
  .split-image {
    min-height: 280px;
  }
  .split-image img {
    height: 280px;
  }
  .split-content {
    padding: var(--space-lg) var(--space-md);
  }
  .grid-3,
  .perspectives-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }
  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item:nth-child(2) { border-right: none; }
  .nav-card-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  :root {
    --space-xl: 56px;
    --space-xxl: 80px;
  }
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--color-primary);
    flex-direction: column;
    padding: var(--space-md);
    gap: var(--space-sm);
    border-top: 1px solid rgba(234, 224, 213, 0.15);
    align-items: flex-start;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { font-size: 0.9rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .img-grid-3 { grid-template-columns: 1fr; }
  .img-grid-2 { grid-template-columns: 1fr; }
  .img-grid-3 img, .img-grid-2 img { height: 220px; }
  .section-banner { height: 300px; }
  .hero { min-height: 70vh; }
  .steps-row { grid-template-columns: 1fr; }
  .nav-card-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
  .context-note { padding: var(--space-md); }
  .container { padding: 0 var(--space-sm); }
  .section-banner-text { padding: 0 var(--space-md); }
}
