@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* =============================================
   TENVIA — CONTEXTUAL EDITORIAL ATLAS
   Design System v1.0
============================================= */

:root {
  --primary: #2C3E50;
  --secondary: #F5F5F0;
  --accent: #D35400;
  --neutral: #7F8C8D;
  --white: #ffffff;
  --border: #d4d4cc;
  --text-dark: #1a2530;
  --text-body: #3d4f5c;
  --text-muted: #7F8C8D;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --transition: 0.35s ease;
  --container: 1440px;
  --text-max: 750px;
  --section-gap: 140px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--secondary);
}

body {
  font-family: var(--font-sans);
  background-color: var(--secondary);
  color: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* =============================================
   TYPOGRAPHY
============================================= */

h1, h2, h3 {
  font-family: var(--font-serif);
  color: var(--primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3vw, 2.75rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }

h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neutral);
}

p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
  max-width: var(--text-max);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--accent); }

ul, ol { padding-left: 1.5rem; }
li { line-height: 1.75; margin-bottom: 0.4rem; }

strong { font-weight: 600; color: var(--text-dark); }

/* =============================================
   LAYOUT UTILITIES
============================================= */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--text {
  max-width: var(--text-max);
  margin: 0 auto;
  padding: 0 2rem;
}

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

.section--flush {
  padding: 0;
}

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

.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.section--dark p,
.section--dark li {
  color: rgba(245, 245, 240, 0.82);
}

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

.divider--light {
  border-top-color: rgba(245, 245, 240, 0.2);
}

/* =============================================
   HEADER / NAVIGATION
============================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(245, 245, 240, 0.97);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.site-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.03em;
  text-decoration: none;
  transition: color var(--transition);
}

.site-logo:hover { color: var(--accent); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition);
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent);
  transition: width var(--transition);
}

.site-nav a:hover { color: var(--accent); }
.site-nav a:hover::after { width: 100%; }

.site-nav a.active {
  color: var(--accent);
}

.site-nav a.active::after {
  width: 100%;
}

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

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: var(--primary);
  transition: all var(--transition);
}

/* =============================================
   PAGE OFFSET (for fixed header)
============================================= */

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

/* =============================================
   FOOTER
============================================= */

.site-footer {
  background-color: var(--primary);
  color: rgba(245, 245, 240, 0.75);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 60px;
}

.footer-brand .site-logo {
  color: var(--white);
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(245, 245, 240, 0.65);
  max-width: 280px;
}

.footer-col h4 {
  color: rgba(245, 245, 240, 0.5);
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(245, 245, 240, 0.7);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--white); }

.footer-contact p,
.footer-contact a {
  font-size: 0.85rem;
  color: rgba(245, 245, 240, 0.7);
  line-height: 1.9;
  max-width: none;
}

.footer-contact a:hover { color: var(--white); }

.footer-hours {
  margin-top: 0.8rem;
}

.footer-bottom {
  border-top: 1px solid rgba(245, 245, 240, 0.12);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-disclaimer {
  font-size: 0.72rem;
  color: rgba(245, 245, 240, 0.45);
  line-height: 1.8;
  max-width: 1000px;
}

.footer-legal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(245, 245, 240, 0.4);
}

.footer-edu-note {
  font-size: 0.72rem;
  color: rgba(211, 84, 0, 0.7);
  font-style: italic;
}

/* =============================================
   BUTTONS & CTA
============================================= */

.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border: 1px solid var(--primary);
  color: var(--primary);
  background: transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.btn:hover {
  background-color: var(--primary);
  color: var(--secondary);
}

.btn--light {
  border-color: rgba(245, 245, 240, 0.5);
  color: var(--secondary);
}

.btn--light:hover {
  background-color: rgba(245, 245, 240, 0.12);
  color: var(--white);
  border-color: var(--white);
}

.btn--accent {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--accent:hover {
  background-color: var(--accent);
  color: var(--white);
}

.text-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid var(--primary);
  padding-bottom: 1px;
  transition: color var(--transition), border-color var(--transition);
}

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

.text-link--light {
  color: rgba(245, 245, 240, 0.8);
  border-bottom-color: rgba(245, 245, 240, 0.4);
}

.text-link--light:hover {
  color: var(--white);
  border-bottom-color: var(--white);
}

/* =============================================
   HERO — FULL-WIDTH CINEMATIC
============================================= */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

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

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 40, 51, 0.92) 0%, rgba(28, 40, 51, 0.5) 50%, rgba(28, 40, 51, 0.15) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  width: 100%;
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 245, 240, 0.55);
  display: block;
  margin-bottom: 1.2rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 800px;
  margin-bottom: 1.5rem;
}

.hero__subtitle {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: rgba(245, 245, 240, 0.75);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

/* =============================================
   SECTION INTRO / HEADER
============================================= */

.section-intro {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 5rem;
}

.section-intro--center {
  grid-template-columns: 1fr;
  max-width: var(--text-max);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 4rem;
}

.section-intro--center p { margin: 0 auto; }

.section-intro .kicker {
  margin-bottom: 1rem;
}

/* =============================================
   TWO-COLUMN EDITORIAL LAYOUT
============================================= */

.editorial-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.editorial-duo--reverse .editorial-duo__image {
  order: -1;
}

.editorial-duo__image {
  position: relative;
}

.editorial-duo__image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}

.editorial-duo__image--portrait img {
  height: 680px;
}

.editorial-duo__body .kicker {
  margin-bottom: 1rem;
}

.editorial-duo__body h2 {
  margin-bottom: 1.5rem;
}

.editorial-duo__body p {
  margin-bottom: 1.5rem;
}

/* =============================================
   STAT STRIP
============================================= */

.stat-strip {
  background-color: var(--primary);
  padding: 60px 0;
}

.stat-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 0 1rem;
  border-right: 1px solid rgba(245, 245, 240, 0.12);
}

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

.stat-item__number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 245, 240, 0.5);
}

/* =============================================
   CONTENT CARDS
============================================= */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

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

.card {
  background-color: var(--white);
  padding: 2.5rem;
  border-top: 3px solid transparent;
  transition: border-color var(--transition);
}

.card:hover {
  border-color: var(--accent);
}

.card__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =============================================
   TOPIC MATRIX (signature — about page)
============================================= */

.topic-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}

.matrix-cell {
  padding: 2.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.matrix-cell:nth-child(3n) { border-right: none; }
.matrix-cell:nth-last-child(-n+3) { border-bottom: none; }

.matrix-cell__index {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--border);
  display: block;
  margin-bottom: 0.8rem;
}

.matrix-cell h3 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.matrix-cell p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =============================================
   DROP CAP (about page)
============================================= */

.drop-cap::first-letter {
  font-family: var(--font-serif);
  font-size: 5.5rem;
  font-weight: 700;
  color: var(--primary);
  float: left;
  line-height: 0.75;
  margin-right: 0.15em;
  margin-top: 0.1em;
}

/* =============================================
   FAQ ACCORDION
============================================= */

.faq-wrapper {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 5rem;
  align-items: start;
}

.accordion-item {
  border-top: 1px solid var(--border);
}

.accordion-item:last-child {
  border-bottom: 1px solid var(--border);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.accordion-trigger h3 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary);
  line-height: 1.4;
}

.accordion-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
  border: 1px solid var(--border);
  border-radius: 0;
}

.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--primary);
  transition: transform var(--transition), opacity var(--transition);
}

.accordion-icon::before { width: 8px; height: 1px; }
.accordion-icon::after { width: 1px; height: 8px; }

.accordion-trigger[aria-expanded="true"] .accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.accordion-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.accordion-body-inner {
  padding-bottom: 1.5rem;
}

.accordion-body-inner p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.75;
  max-width: 100%;
}

/* Glossary Rail */
.glossary-rail {
  position: sticky;
  top: 84px;
}

.glossary-rail h4 {
  margin-bottom: 1.2rem;
}

.glossary-rail ul {
  list-style: none;
  padding: 0;
}

.glossary-rail ul li {
  margin: 0;
}

.glossary-rail ul li a {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition), padding-left var(--transition);
}

.glossary-rail ul li a:hover {
  color: var(--primary);
  padding-left: 0.5rem;
}

/* =============================================
   CONTACT PAGE LAYOUT
============================================= */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-schedule {
  margin-top: 2rem;
  border: 1px solid var(--border);
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1.2rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}

.schedule-row:last-child { border-bottom: none; }

.schedule-row__day { color: var(--text-muted); }
.schedule-row__time { font-weight: 500; color: var(--primary); }
.schedule-row--closed .schedule-row__time { color: var(--neutral); }

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 1.5rem;
}

.contact-info-item__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neutral);
}

.contact-info-item__value {
  font-size: 0.95rem;
  color: var(--primary);
}

/* =============================================
   FORMS
============================================= */

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--primary);
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color var(--transition);
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--primary);
}

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

/* =============================================
   FULL-WIDTH IMAGE BREAK
============================================= */

.image-break {
  width: 100%;
  height: 60vh;
  overflow: hidden;
  position: relative;
}

.image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* =============================================
   PULL QUOTE / SIDEBAR QUOTE
============================================= */

.pull-quote {
  border-left: 3px solid var(--accent);
  padding: 1.2rem 2rem;
  margin: 2.5rem 0;
}

.pull-quote p {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--primary);
  line-height: 1.5;
  max-width: none;
}

/* =============================================
   BREADCRUMB
============================================= */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.breadcrumb a,
.breadcrumb span {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.breadcrumb a:hover { color: var(--primary); }

.breadcrumb__sep {
  color: var(--border);
  font-size: 0.7rem;
}

/* =============================================
   PAGE HEADER BANDS
============================================= */

.page-band {
  background-color: var(--primary);
  padding: 100px 0 70px;
}

.page-band h1 {
  color: var(--white);
  max-width: 700px;
  margin-bottom: 1rem;
}

.page-band p {
  color: rgba(245, 245, 240, 0.7);
  max-width: 540px;
}

/* =============================================
   POLICY PAGES
============================================= */

.policy-body {
  max-width: var(--text-max);
  margin: 0 auto;
}

.policy-body h2 {
  font-size: 1.3rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.policy-body h2:first-of-type { margin-top: 0; }

.policy-body p {
  max-width: none;
  margin-bottom: 1rem;
}

.policy-body ul {
  margin-bottom: 1rem;
}

.policy-body ul li { margin-bottom: 0.3rem; }

/* =============================================
   THANK-YOU PAGE
============================================= */

.thank-you-center {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 2rem;
}

.thank-you-center h1 { margin-bottom: 1rem; }
.thank-you-center p { margin-bottom: 2rem; }

/* =============================================
   404 PAGE
============================================= */

.error-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 2rem;
}

.error-code {
  font-family: var(--font-serif);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1rem;
}

/* =============================================
   COOKIE BANNER
============================================= */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: var(--primary);
  border-top: 2px solid var(--accent);
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-banner__text {
  font-size: 0.8rem;
  color: rgba(245, 245, 240, 0.8);
  max-width: 700px;
  line-height: 1.6;
}

.cookie-banner__text a {
  color: rgba(245, 245, 240, 0.9);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-accept {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  background-color: var(--accent);
  color: var(--white);
  border: 1px solid var(--accent);
  cursor: pointer;
  transition: background var(--transition);
}

.cookie-accept:hover { background-color: #b84700; border-color: #b84700; }

.cookie-decline {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  background: transparent;
  color: rgba(245, 245, 240, 0.65);
  border: 1px solid rgba(245, 245, 240, 0.25);
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition);
}

.cookie-decline:hover {
  color: var(--white);
  border-color: rgba(245, 245, 240, 0.5);
}

/* =============================================
   FEATURE LIST
============================================= */

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.feature-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-body);
  margin: 0;
}

.feature-list li:last-child { border-bottom: none; }

.feature-list__marker {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--accent);
  margin-top: 0.55rem;
  flex-shrink: 0;
}

/* =============================================
   INGREDIENT TAGS
============================================= */

.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.ingredient-item {
  padding: 1.5rem;
  background-color: var(--white);
  border-left: 3px solid var(--accent);
}

.ingredient-item h3 {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.ingredient-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: none;
}

/* =============================================
   PLANT HEALTH VISUAL (Index Garden)
============================================= */

.garden-results {
  background-color: var(--primary);
  padding: 80px 0;
}

.plant-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 3rem;
}

.plant-item {
  background-color: rgba(245, 245, 240, 0.05);
  padding: 2rem 1.5rem;
  text-align: center;
  border-top: 2px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}

.plant-item:hover {
  border-color: var(--accent);
  background-color: rgba(245, 245, 240, 0.08);
}

.plant-item__bar {
  height: 4px;
  background-color: rgba(245, 245, 240, 0.15);
  margin: 1rem 0;
  overflow: hidden;
}

.plant-item__fill {
  height: 100%;
  background-color: var(--accent);
  transition: width 1.5s ease;
}

.plant-item h3 {
  font-size: 0.85rem;
  color: rgba(245, 245, 240, 0.9);
  margin-bottom: 0.3rem;
  font-family: var(--font-sans);
  font-weight: 500;
}

.plant-item__percent {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
}

.plant-item__note {
  font-size: 0.72rem;
  color: rgba(245, 245, 240, 0.45);
  line-height: 1.5;
  margin-top: 0.5rem;
}

/* =============================================
   ADVISOR CARDS (index tips section)
============================================= */

.tips-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 3rem;
}

.tip-card {
  padding: 2rem 1.8rem;
  background-color: var(--white);
  border-top: 2px solid var(--border);
  transition: border-color var(--transition);
}

.tip-card:hover { border-color: var(--accent); }

.tip-card__num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--border);
  display: block;
  margin-bottom: 1rem;
}

.tip-card h3 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.tip-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: none;
}

/* =============================================
   WIDE DARK BANNER (CTA editorial)
============================================= */

.dark-banner {
  background-color: var(--primary);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.dark-banner::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(245, 245, 240, 0.05);
}

.dark-banner__inner {
  max-width: 640px;
}

/* =============================================
   ANIMATIONS
============================================= */

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

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* =============================================
   RESPONSIVE — TABLET
============================================= */

@media (max-width: 1100px) {
  :root { --section-gap: 100px; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .editorial-duo {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .editorial-duo--reverse .editorial-duo__image { order: 0; }

  .editorial-duo__image img { height: 400px; }

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

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

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

  .faq-wrapper { grid-template-columns: 1fr; }

  .glossary-rail { position: static; }

  .section-intro { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-gap: 72px; }

  .site-nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background-color: var(--secondary);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 2rem;
    gap: 1.2rem;
    z-index: 999;
  }

  .site-nav.open { display: flex; }

  .nav-toggle { display: flex; }

  .hero__title { font-size: clamp(2rem, 9vw, 3.5rem); }

  .image-break { height: 40vh; }

  .editorial-duo__image img { height: 280px; }

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

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

  .card-grid--two { grid-template-columns: 1fr; }

  .plant-grid,
  .tips-grid { grid-template-columns: 1fr; }

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

  .topic-matrix { grid-template-columns: 1fr; }

  .matrix-cell { border-right: none; }
  .matrix-cell:nth-last-child(-n+3) { border-bottom: 1px solid var(--border); }
  .matrix-cell:last-child { border-bottom: none; }

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

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

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

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

  .cookie-banner { flex-direction: column; align-items: flex-start; }

  .container { padding: 0 1.25rem; }
  .container--narrow { padding: 0 1.25rem; }
  .container--text { padding: 0 1.25rem; }

  .drop-cap::first-letter { font-size: 3.5rem; }
}

@media (max-width: 480px) {
  :root { --section-gap: 56px; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

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

  .stat-item { border-right: none; border-bottom: 1px solid rgba(245,245,240,0.12); padding: 1.5rem 0; }
  .stat-item:last-child { border-bottom: none; }

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