@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800&family=Lato:wght@300;400;700&display=swap');

:root {
  --color-beige: #f5f0e8;
  --color-beige-dark: #ede5d8;
  --color-beige-mid: #e8dfd0;
  --color-green: #5a7a5c;
  --color-green-dark: #3d5c3f;
  --color-green-light: #7a9e7c;
  --color-blue: #7baab8;
  --color-blue-light: #a8c8d4;
  --color-terracotta: #b8705a;
  --color-terracotta-light: #d4907a;
  --color-white: #ffffff;
  --color-grey-100: #f8f6f2;
  --color-grey-200: #ece8e0;
  --color-grey-300: #d4cfc5;
  --color-grey-400: #b0a89a;
  --color-grey-500: #7a7468;
  --color-grey-600: #5a5650;
  --color-grey-700: #3a3832;
  --color-grey-800: #2a2820;
  --color-text-primary: #2a2820;
  --color-text-secondary: #5a5650;
  --color-text-muted: #7a7468;
  --font-heading: 'Raleway', sans-serif;
  --font-body: 'Lato', sans-serif;
  --container-max: 1280px;
  --section-padding: 80px 0;
  --border-radius: 4px;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-primary);
  background-color: var(--color-beige);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
  color: var(--color-text-primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1.2em; color: var(--color-text-secondary); }
p:last-child { margin-bottom: 0; }

a { color: var(--color-green); text-decoration: none; transition: color var(--transition-base); }
a:hover { color: var(--color-green-dark); }

ul, ol { padding-left: 1.5em; margin-bottom: 1.2em; color: var(--color-text-secondary); }
li { margin-bottom: 0.4em; }

strong { font-weight: 700; color: var(--color-text-primary); }

img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
}

.section-padding {
  padding: var(--section-padding);
}

.section-padding-sm {
  padding: 48px 0;
}

.bg-beige { background-color: var(--color-beige); }
.bg-beige-dark { background-color: var(--color-beige-dark); }
.bg-white { background-color: var(--color-white); }
.bg-green { background-color: var(--color-green); }
.bg-green-dark { background-color: var(--color-green-dark); }
.bg-grey-100 { background-color: var(--color-grey-100); }

.text-green { color: var(--color-green); }
.text-terracotta { color: var(--color-terracotta); }
.text-muted { color: var(--color-text-muted); }
.text-white { color: var(--color-white) !important; }
.text-center { text-align: center; }

.divider {
  width: 60px;
  height: 3px;
  background-color: var(--color-terracotta);
  margin: 20px 0 32px 0;
}

.divider-center {
  margin: 20px auto 32px auto;
}

.divider-white {
  background-color: var(--color-white);
  opacity: 0.5;
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(245, 240, 232, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-grey-300);
  transition: box-shadow var(--transition-base);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(42, 40, 32, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background-color: var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}

.logo-mark span {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--color-white);
  letter-spacing: 0.02em;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text-primary);
  letter-spacing: 0.03em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.header-nav a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition-base);
  position: relative;
  padding-bottom: 3px;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-green);
  transition: width var(--transition-base);
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--color-green);
}

.header-nav a:hover::after,
.header-nav a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--color-text-primary);
  transition: all var(--transition-base);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  background-color: var(--color-beige);
  border-top: 1px solid var(--color-grey-300);
  padding: 16px 32px 24px;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav ul li {
  margin-bottom: 0;
  border-bottom: 1px solid var(--color-grey-200);
}

.mobile-nav ul li a {
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 0;
  transition: color var(--transition-base);
}

.mobile-nav ul li a:hover,
.mobile-nav ul li a.active {
  color: var(--color-green);
}

.page-body {
  padding-top: 72px;
}

.hero-section {
  position: relative;
  background-color: var(--color-grey-800);
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: center;
}

.hero-section img.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(42,40,32,0.72) 0%, rgba(90,122,92,0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 80px 32px;
  width: 100%;
}

.hero-content .hero-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-terracotta-light);
  margin-bottom: 20px;
  border-left: 3px solid var(--color-terracotta);
  padding-left: 14px;
}

.hero-content h1 {
  color: var(--color-white);
  max-width: 820px;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-content .hero-lead {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
  padding: 10px 20px;
  border-radius: var(--border-radius);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.04em;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-terracotta-light);
}

.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--border-radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-base);
  line-height: 1;
}

.btn-primary {
  background-color: var(--color-green);
  border-color: var(--color-green);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-green-dark);
  border-color: var(--color-green-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(90,122,92,0.3);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--color-green);
  color: var(--color-green);
}

.btn-outline:hover {
  background-color: var(--color-green);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  border-color: rgba(255,255,255,0.7);
  color: var(--color-white);
}

.btn-outline-white:hover {
  background-color: rgba(255,255,255,0.15);
  border-color: var(--color-white);
  color: var(--color-white);
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: 12px;
}

.card {
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--color-grey-200);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.card:hover {
  box-shadow: 0 12px 40px rgba(42,40,32,0.1);
  transform: translateY(-4px);
}

.card-img {
  overflow: hidden;
  height: 220px;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card-img img {
  transform: scale(1.04);
}

.card-body {
  padding: 28px;
}

.card-body .section-label {
  margin-bottom: 8px;
}

.card-body h3 {
  margin-bottom: 12px;
  color: var(--color-text-primary);
}

.card-body p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-top: 16px;
  transition: gap var(--transition-base), color var(--transition-base);
}

.card-link:hover {
  gap: 14px;
  color: var(--color-green-dark);
}

.card-link::after {
  content: '→';
  font-size: 0.9rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  align-items: center;
}

.grid-2-alt {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  align-items: center;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.two-col-img {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
}

.two-col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}

.two-col-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.two-col-text h2 {
  margin-bottom: 8px;
}

.two-col-text p {
  margin-bottom: 16px;
}

.stat-strip {
  background-color: var(--color-green);
  padding: 48px 0;
}

.stat-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.2);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.timeline-section {
  background-color: var(--color-grey-800);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.timeline-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(90,122,92,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 30%, rgba(123,170,184,0.1) 0%, transparent 50%);
}

.timeline-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
}

.timeline-header h2 { color: var(--color-white); }
.timeline-header p { color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto; }

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.3) 10%, rgba(255,255,255,0.3) 90%, transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  gap: 48px;
  margin-bottom: 48px;
  position: relative;
  align-items: flex-start;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-item-content {
  flex: 1;
  background-color: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--border-radius);
  padding: 24px 28px;
  backdrop-filter: blur(4px);
  transition: background-color var(--transition-base);
}

.timeline-item-content:hover {
  background-color: rgba(255,255,255,0.1);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-terracotta-light);
  margin-bottom: 8px;
}

.timeline-item-content h3 {
  color: var(--color-white);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.timeline-item-content p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 24px;
  width: 14px;
  height: 14px;
  background-color: var(--color-terracotta);
  border: 3px solid var(--color-grey-800);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.timeline-spacer {
  flex: 1;
}

.info-block {
  background-color: var(--color-white);
  border-left: 4px solid var(--color-green);
  padding: 28px 32px;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  margin-bottom: 24px;
}

.info-block h3 {
  margin-bottom: 12px;
  color: var(--color-green-dark);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-grey-200);
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

.feature-list li:last-child { border-bottom: none; }

.feature-list li::before {
  content: '';
  min-width: 8px;
  height: 8px;
  background-color: var(--color-terracotta);
  border-radius: 50%;
  margin-top: 8px;
}

.tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.tag {
  display: inline-block;
  background-color: var(--color-beige-dark);
  border: 1px solid var(--color-grey-300);
  color: var(--color-text-secondary);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
}

.tag.tag-green {
  background-color: rgba(90,122,92,0.12);
  border-color: rgba(90,122,92,0.3);
  color: var(--color-green-dark);
}

.tag.tag-blue {
  background-color: rgba(123,170,184,0.15);
  border-color: rgba(123,170,184,0.35);
  color: var(--color-blue);
}

.full-width-section {
  position: relative;
  overflow: hidden;
}

.full-width-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.3;
}

.full-width-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: var(--color-green-dark);
  opacity: 0.88;
}

.full-width-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.disclaimer-block {
  background-color: var(--color-grey-100);
  border: 1px solid var(--color-grey-200);
  border-top: 3px solid var(--color-terracotta);
  padding: 32px 40px;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  margin-top: 48px;
}

.disclaimer-block h3 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: 12px;
}

.disclaimer-block p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

.edu-notice {
  background-color: var(--color-beige-mid);
  border: 1px solid var(--color-grey-300);
  padding: 20px 28px;
  border-radius: var(--border-radius);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}

.edu-notice-icon {
  min-width: 24px;
  height: 24px;
  background-color: var(--color-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 2px;
}

.edu-notice p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: var(--color-text-secondary);
}

.accordion-item {
  border-bottom: 1px solid var(--color-grey-200);
}

.accordion-btn {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  text-align: left;
  gap: 16px;
  transition: color var(--transition-base);
}

.accordion-btn:hover { color: var(--color-green); }

.accordion-icon {
  min-width: 24px;
  height: 24px;
  border: 1px solid var(--color-grey-300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 1rem;
  font-weight: 300;
  transition: all var(--transition-base);
}

.accordion-btn.open .accordion-icon {
  background-color: var(--color-green);
  border-color: var(--color-green);
  color: white;
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-content-inner {
  padding: 0 0 24px 0;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
}

.site-footer {
  background-color: var(--color-grey-800);
  padding: 64px 0 0;
  color: rgba(255,255,255,0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 20px;
}

.footer-logo .logo-mark { background-color: var(--color-green-light); }
.footer-logo .logo-text { color: var(--color-white); }

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}

.footer-edu-notice {
  background-color: rgba(90,122,92,0.2);
  border: 1px solid rgba(90,122,92,0.4);
  padding: 12px 16px;
  border-radius: var(--border-radius);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--color-green-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer-links a:hover { color: var(--color-white); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-icon {
  min-width: 18px;
  height: 18px;
  background-color: rgba(255,255,255,0.1);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.footer-contact-icon svg {
  width: 10px;
  height: 10px;
  fill: rgba(255,255,255,0.6);
}

.footer-contact-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.footer-hours {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  max-width: 900px;
  margin-bottom: 8px;
}

.footer-copyright {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
  white-space: nowrap;
  margin-top: 4px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: var(--color-grey-800);
  border-top: 2px solid var(--color-green);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.2);
}

.cookie-banner.hidden { display: none; }

.cookie-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  flex: 1;
  min-width: 220px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-btn {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: var(--border-radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

.cookie-btn-accept {
  background-color: var(--color-green);
  border-color: var(--color-green);
  color: var(--color-white);
}

.cookie-btn-accept:hover {
  background-color: var(--color-green-dark);
  color: white;
}

.cookie-btn-reject {
  background-color: transparent;
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
}

.cookie-btn-reject:hover {
  border-color: rgba(255,255,255,0.7);
  color: var(--color-white);
}

.cookie-btn-more {
  background-color: transparent;
  border-color: transparent;
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  padding: 10px 12px;
}

.cookie-btn-more:hover { color: var(--color-white); }

.policy-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 64px 32px 80px;
}

.policy-page h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.policy-page .policy-date {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  letter-spacing: 0.06em;
  margin-bottom: 40px;
  display: block;
}

.policy-page .policy-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  padding: 24px 28px;
  background-color: var(--color-grey-100);
  border-left: 4px solid var(--color-green);
  margin-bottom: 48px;
}

.policy-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-grey-200);
}

.policy-section:last-of-type { border-bottom: none; }

.policy-section h2 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  gap: 12px;
}

.policy-section h2 .policy-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--color-green);
  color: white;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.policy-section p, .policy-section li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
}

.policy-section ul, .policy-section ol {
  margin-bottom: 0;
}

.about-hero {
  background-color: var(--color-beige-dark);
  padding: 80px 0;
  border-bottom: 1px solid var(--color-grey-300);
}

.about-hero .grid-2 { align-items: stretch; }

.about-hero-text h1 { margin-bottom: 8px; }
.about-hero-text h2 { margin-bottom: 24px; font-size: 1.3rem; font-weight: 400; color: var(--color-text-muted); }

.about-hero-img {
  border-radius: var(--border-radius);
  overflow: hidden;
  max-height: 440px;
}

.about-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.quote-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-grey-200);
  border-radius: var(--border-radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}

.quote-card:hover {
  box-shadow: 0 8px 32px rgba(42,40,32,0.09);
}

.quote-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: var(--font-heading);
  font-size: 8rem;
  font-weight: 800;
  color: var(--color-beige-dark);
  line-height: 1;
  z-index: 0;
}

.quote-card blockquote {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.75;
  color: var(--color-text-secondary);
  margin: 0 0 16px 0;
}

.quote-card cite {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-style: normal;
}

.quote-card.accent-terracotta { border-top: 3px solid var(--color-terracotta); }
.quote-card.accent-green { border-top: 3px solid var(--color-green); }
.quote-card.accent-blue { border-top: 3px solid var(--color-blue); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-form-box {
  background-color: var(--color-white);
  border: 1px solid var(--color-grey-200);
  border-radius: var(--border-radius);
  padding: 48px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--color-grey-300);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-primary);
  background-color: var(--color-beige);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  -webkit-appearance: none;
  outline: none;
}

.form-control:focus {
  border-color: var(--color-green);
  box-shadow: 0 0 0 3px rgba(90,122,92,0.15);
  background-color: var(--color-white);
}

textarea.form-control {
  resize: vertical;
  min-height: 160px;
}

.form-disclaimer {
  background-color: var(--color-grey-100);
  border: 1px solid var(--color-grey-200);
  border-left: 3px solid var(--color-blue);
  padding: 16px 20px;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  margin-bottom: 24px;
}

.form-disclaimer p {
  font-size: 0.83rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
  line-height: 1.65;
}

.contact-info-panel {
  background-color: var(--color-beige-dark);
  border: 1px solid var(--color-grey-300);
  border-radius: var(--border-radius);
  padding: 36px;
  position: sticky;
  top: 96px;
}

.contact-info-panel h3 {
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-grey-300);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-grey-200);
}

.contact-info-item:last-of-type { border-bottom: none; }

.contact-info-icon {
  min-width: 38px;
  height: 38px;
  background-color: var(--color-white);
  border: 1px solid var(--color-grey-300);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-icon svg { width: 16px; height: 16px; stroke: var(--color-green); fill: none; stroke-width: 1.8; }

.contact-info-detail .label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: 4px;
}

.contact-info-detail .value {
  font-size: 0.9rem;
  color: var(--color-text-primary);
}

.contact-info-detail a {
  color: var(--color-green);
  text-decoration: none;
}

.contact-info-detail a:hover { text-decoration: underline; }

.thankyou-section {
  min-height: calc(100vh - 72px - 280px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 32px;
}

.thankyou-box {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.thankyou-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: rgba(90,122,92,0.12);
  border: 2px solid var(--color-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.thankyou-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-green);
  fill: none;
  stroke-width: 2;
}

.thankyou-box h1 { margin-bottom: 20px; }
.thankyou-box p { font-size: 1.05rem; color: var(--color-text-secondary); margin-bottom: 36px; }

.glossary-rail {
  background-color: var(--color-grey-100);
  border: 1px solid var(--color-grey-200);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.glossary-rail-header {
  background-color: var(--color-green);
  padding: 16px 24px;
}

.glossary-rail-header h3 {
  color: var(--color-white);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
}

.glossary-item {
  padding: 18px 24px;
  border-bottom: 1px solid var(--color-grey-200);
  transition: background-color var(--transition-base);
}

.glossary-item:last-child { border-bottom: none; }

.glossary-item:hover { background-color: var(--color-white); }

.glossary-term {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-green-dark);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.glossary-def {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.wide-img-section {
  position: relative;
  overflow: hidden;
  height: 480px;
}

.wide-img-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wide-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(42,40,32,0.75) 0%, rgba(42,40,32,0.2) 60%, transparent 100%);
  display: flex;
  align-items: center;
}

.wide-img-text {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

.wide-img-text h2 {
  color: var(--color-white);
  max-width: 480px;
  margin-bottom: 16px;
}

.wide-img-text p {
  color: rgba(255,255,255,0.75);
  max-width: 420px;
  margin-bottom: 0;
}

.pattern-bg {
  background-image:
    radial-gradient(circle, var(--color-grey-300) 1px, transparent 1px);
  background-size: 28px 28px;
  background-color: var(--color-grey-100);
}

.section-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--color-grey-300), transparent);
  margin: 0;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background-color: var(--color-grey-300);
  border: 2px solid var(--color-grey-300);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.ingredient-cell {
  background-color: var(--color-white);
  padding: 28px 24px;
  transition: background-color var(--transition-base);
}

.ingredient-cell:hover { background-color: var(--color-grey-100); }

.ingredient-cell .ic-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: 8px;
}

.ingredient-cell h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.ingredient-cell p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
  line-height: 1.6;
}

.two-col-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.matrix-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.matrix-table th {
  background-color: var(--color-green);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 18px;
  text-align: left;
}

.matrix-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--color-grey-200);
  color: var(--color-text-secondary);
  vertical-align: top;
}

.matrix-table tr:last-child td { border-bottom: none; }

.matrix-table tr:nth-child(even) td { background-color: var(--color-grey-100); }

.matrix-table td:first-child {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-text-primary);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  letter-spacing: 0.03em;
  margin-bottom: 32px;
}

.breadcrumb a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-base);
}

.breadcrumb a:hover { color: var(--color-green); }

.breadcrumb .sep { color: var(--color-grey-400); }

@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stat-strip .container { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item { padding: 16px; }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --section-padding: 56px 0; }
  h1 { font-size: clamp(1.9rem, 6vw, 2.8rem); }
  h2 { font-size: clamp(1.35rem, 4vw, 1.9rem); }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-2, .grid-2-alt { grid-template-columns: 1fr; gap: 32px; }
  .two-col-info { grid-template-columns: 1fr; }
  .timeline::before { left: 20px; }
  .timeline-item, .timeline-item:nth-child(even) { flex-direction: column; gap: 16px; padding-left: 48px; }
  .timeline-dot { left: 20px; }
  .timeline-spacer { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-info-panel { position: static; }
  .quote-gallery { grid-template-columns: 1fr; }
  .wide-img-section { height: 320px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .header-inner { padding: 0 20px; }
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .stat-strip .container { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { flex-direction: column; }
  .hero-content { padding: 60px 20px; }
  .contact-form-box { padding: 28px 20px; }
  .policy-page { padding: 40px 20px 60px; }
  .disclaimer-block { padding: 24px 20px; }
  .ingredients-grid { grid-template-columns: 1fr; }
  .cookie-banner { padding: 16px 20px; flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .stat-strip .container { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .stat-item:last-child { border-bottom: none; }
  .grid-4 { grid-template-columns: 1fr; }
  .two-col-img img { min-height: 240px; }
  .card-img { height: 180px; }
}
