/* ===== Design Tokens ===== */
:root {
  --paper: #F5F3EE;
  --ink: #1C1917;
  --muted: #78756F;
  --accent: #7A2E22;
  --hairline: #E5E2DB;
  --accent-text: #F5F0EC;
  --accent-border: #A86860;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'Spline Sans Mono', ui-monospace, monospace;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.25rem;
  --space-xl: 2rem;
  --space-2xl: 3.2rem;
  --space-3xl: 4.8rem;
  --space-4xl: 8rem;
  --max-width: 1200px;
  --content-width: 720px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #1C1917;
    --ink: #F5F3EE;
    --muted: #9C9A95;
    --accent: #A84438;
    --hairline: #2E2A27;
  }
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--ink);
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); font-weight: 400; }
h4 { font-size: 1.125rem; font-weight: 400; }

p {
  margin-bottom: var(--space-md);
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

a {
  color: var(--ink);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
a:hover { opacity: 0.6; }
a:focus-visible { outline: 1px solid var(--ink); outline-offset: 2px; }

/* ===== Shared Label Style ===== */
.label,
.eyebrow,
.section-header__label,
.page-header__eyebrow,
.case-hero__eyebrow,
.case-short-hero__eyebrow,
.dante-hero__eyebrow,
.about-company__label,
.results-header__label,
.news-header__label,
.how-section__label,
.dante-nav__title {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}

.dante-hero__eyebrow { color: var(--accent); }
.eyebrow--accent { color: var(--accent); }

/* ===== Shared Small Label ===== */
.label-sm,
.stat-item__label,
.highlight-item__label,
.result-card__metric-label,
.dante-panel__item-label,
.flowchart-step__tag,
.roi-card__caption,
.case-study-preview__stat-label,
.dante-cta__feature-label,
.module-card__badge {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.stat-item__label { color: var(--ink); }
.highlight-item__label { color: var(--accent-border); }
.result-card__metric-label,
.roi-card__caption { color: var(--muted); }
.dante-panel__item-label,
.module-card__badge { color: var(--accent); }
.module-card__badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background-color: rgba(122, 46, 34, 0.1);
  padding: 0.25rem 0.5rem;
}

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section { padding: var(--space-4xl) 0; }
.section--border { border-top: 1px solid var(--hairline); }

/* ===== Navigation ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--paper);
  padding: var(--space-lg) 0;
}

.nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.nav__logo:hover { opacity: 1; color: var(--accent); }

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  list-style: none;
}

.nav__link {
  font-size: 0.8125rem;
  color: var(--muted);
  transition: color 0.2s ease;
}
.nav__link:hover { opacity: 1; color: var(--ink); }
.nav__link--active { color: var(--ink); }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
}

@media (max-width: 768px) {
  .nav__toggle { display: block; }
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background-color: var(--paper);
    padding: var(--space-xl);
    gap: var(--space-md);
  }
  .nav__links--open { display: flex; }
  .nav__links .btn--enquire { width: 100%; justify-content: center; margin-top: var(--space-md); }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
}

.btn--enquire { background-color: var(--accent); color: var(--accent-text); }
.btn--enquire:hover { opacity: 1; background-color: var(--ink); color: var(--paper); }

.btn--outline { background-color: transparent; color: var(--ink); border: 1px solid var(--hairline); }
.btn--outline:hover { opacity: 1; border-color: var(--ink); }

.btn--accent-outline { background-color: transparent; color: var(--accent-text); border: 1px solid var(--accent-border); }
.btn--accent-outline:hover { opacity: 1; background-color: rgba(255, 255, 255, 0.1); }

/* ===== Hero ===== */
.hero { padding: var(--space-4xl) 0 var(--space-3xl); }
.hero__content { max-width: 640px; }
.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: var(--space-xl);
}
.hero__title em { font-style: italic; color: var(--accent); }
.hero__description {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 0;
  max-width: 640px;
}

/* Hero phyllotaxis graphic */
.hero__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}
@media (min-width: 900px) {
  .hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 500px);
    gap: var(--space-xl);
  }
}
.hero__visual { display: none; }
@media (min-width: 900px) {
  .hero__visual { display: block; }
}
.hero__visual svg { width: 100%; height: auto; display: block; }

#phyllo-spin {
  transform-box: fill-box;
  transform-origin: center;
  animation: phyllo-spin 90s linear infinite;
}

@keyframes phyllo-spin {
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  #phyllo-spin { animation: none; }
}

/* ===== Accent Panel ===== */
.accent-panel {
  background-color: var(--accent);
  padding: var(--space-xl) var(--space-2xl);
  margin-top: var(--space-3xl);
}
.accent-panel__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-xl);
}
@media (max-width: 640px) {
  .accent-panel { padding: var(--space-xl); }
  .accent-panel__inner { flex-direction: column; align-items: flex-start; }
}
.accent-panel__text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--accent-text);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

/* ===== How Section ===== */
.how-section {
  padding: var(--space-4xl) 0;
  border-top: 1px solid var(--hairline);
}
.how-section__label { margin-bottom: var(--space-3xl); }

.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}
@media (min-width: 768px) {
  .how-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-3xl); }
}

.how-item__number {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}
.how-item__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 300;
  margin-bottom: var(--space-sm);
}
.how-item__description {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 0;
  line-height: 1.7;
}

/* ===== Cards ===== */
.card {
  padding: var(--space-lg) 0;
  transition: opacity 0.2s ease;
}
.card:hover { opacity: 0.7; }
.card--bordered { border: 1px solid var(--hairline); padding: var(--space-xl); }
.card--bordered:hover { opacity: 1; border-color: var(--accent); }

.card__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}
.card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: var(--space-sm);
}
.card__description {
  color: var(--muted);
  margin-bottom: 0;
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ===== Grid ===== */
.grid { display: grid; gap: var(--space-xl); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 992px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

/* ===== Section Headers ===== */
.section-header { margin-bottom: var(--space-3xl); }
.section-header__label { margin-bottom: var(--space-lg); }
.section-header__title { font-weight: 300; margin-bottom: var(--space-md); }
.section-header__description { font-size: 1rem; max-width: 500px; color: var(--muted); line-height: 1.7; }

/* ===== Work Cards ===== */
.work-card {
  display: block;
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--hairline);
  transition: opacity 0.2s ease;
}
.work-card:first-child { border-top: 1px solid var(--hairline); }
.work-card:hover { opacity: 0.6; }

.work-card__meta {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}
.work-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: var(--space-sm);
}
.work-card__description {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 600px;
}

/* ===== Footer ===== */
.footer {
  margin-top: auto;
  padding: var(--space-3xl) 0;
  border-top: 1px solid var(--hairline);
}
.footer__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}
@media (min-width: 768px) {
  .footer__content { flex-direction: row; justify-content: space-between; align-items: flex-start; }
}
.footer__brand { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0;
}
.footer__tagline { font-size: 0.875rem; color: var(--muted); margin: 0; max-width: 280px; }

.footer__nav { display: flex; gap: var(--space-3xl); }
.footer__nav-group { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer__nav-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: var(--space-xs);
}
.footer__nav-links { list-style: none; display: flex; flex-direction: column; gap: var(--space-xs); }
.footer__nav-link { font-size: 0.875rem; color: var(--muted); }
.footer__nav-link:hover { opacity: 1; color: var(--ink); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  padding-top: var(--space-2xl);
  margin-top: var(--space-2xl);
  border-top: 1px solid var(--hairline);
}
.footer__copyright { font-size: 0.8125rem; color: var(--muted); margin: 0; }
.footer__legal { display: flex; gap: var(--space-lg); list-style: none; }
.footer__legal-link { font-size: 0.8125rem; color: var(--muted); }
.footer__legal-link:hover { opacity: 1; color: var(--ink); }

/* ===== Page Header ===== */
.page-header { padding: var(--space-3xl) 0 var(--space-2xl); }
.page-header__eyebrow { margin-bottom: var(--space-lg); }
.page-header__title { font-weight: 300; margin-bottom: var(--space-md); }
.page-header__description { font-size: 1.0625rem; max-width: 560px; margin-bottom: 0; color: var(--muted); line-height: 1.7; }

/* ===== Case Study Hero ===== */
.case-hero { padding: var(--space-4xl) 0; }
.case-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
}
@media (min-width: 900px) {
  .case-hero__inner { grid-template-columns: 1.3fr 1fr; align-items: start; }
}
.case-hero__content { max-width: 560px; }
.case-hero__eyebrow { margin-bottom: var(--space-lg); }
.case-hero__title { font-weight: 300; line-height: 1.1; margin-bottom: var(--space-xl); }
.case-hero__summary { font-size: 1.0625rem; line-height: 1.75; color: var(--muted); margin-bottom: 0; }

/* ===== Stats Panel ===== */
.stats-panel { background-color: var(--accent); padding: var(--space-2xl); }
.stats-panel__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: var(--space-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stats-panel__image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.stats-panel__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.stats-panel__image--placeholder::after {
  content: "";
  width: 48px;
  height: 48px;
  border: 2px solid var(--accent-border);
  opacity: 0.5;
}

.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
.stat-item { text-align: center; padding: var(--space-md) 0; }
.stat-item--featured {
  grid-column: span 2;
  padding-bottom: var(--space-xl);
  margin-bottom: var(--space-sm);
  border-bottom: 1px solid var(--accent-border);
}
.stat-item__value {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--accent-text);
  line-height: 1;
  margin-bottom: var(--space-xs);
}
.stat-item--featured .stat-item__value { font-size: 3.5rem; }

/* ===== About Company ===== */
.about-company {
  padding: var(--space-4xl) 0;
  border-top: 1px solid var(--hairline);
}
.about-company__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
@media (min-width: 768px) {
  .about-company__inner { grid-template-columns: 160px 1fr; gap: var(--space-3xl); }
}
.about-company__content { max-width: 640px; }
.about-company__content p { font-size: 1rem; line-height: 1.75; }
.about-company__content p:last-child { margin-bottom: 0; }

/* ===== Results Section ===== */
.results-section {
  padding: var(--space-4xl) 0;
  border-top: 1px solid var(--hairline);
}
.results-header { margin-bottom: var(--space-3xl); }
.results-header__label { margin-bottom: var(--space-lg); }
.results-header__title { font-weight: 300; max-width: 400px; }

.results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background-color: var(--hairline);
}
@media (min-width: 768px) {
  .results-grid { grid-template-columns: repeat(2, 1fr); }
}

.result-card {
  background-color: var(--paper);
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.result-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); }
.result-card--highlight { background-color: var(--accent); }
.result-card--highlight:hover { box-shadow: 0 8px 24px rgba(122, 46, 34, 0.25); }

.result-card__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--paper);
  margin-bottom: var(--space-md);
}
.result-card--highlight .result-card__eyebrow { color: var(--ink); }

.result-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: var(--space-md);
}
.result-card--highlight .result-card__title { color: var(--accent-text); }

.result-card__description {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 0;
  flex: 1;
}
.result-card--highlight .result-card__description { color: var(--accent-text); opacity: 0.85; }

.result-card__metric {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--hairline);
}
.result-card--highlight .result-card__metric { border-top-color: var(--accent-border); }

.result-card__metric-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 1;
}
.result-card--highlight .result-card__metric-value { color: var(--accent-text); }
.result-card__metric-label { margin-top: var(--space-xs); color: var(--ink); }
.result-card--highlight .result-card__metric-label { color: var(--ink); }

/* ===== Pull Quote ===== */
.pull-quote {
  padding: var(--space-4xl) 0;
  border-top: 1px solid var(--hairline);
}
.pull-quote__text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.35;
  max-width: 800px;
  margin: 0;
}
.pull-quote__text em { color: var(--accent); }
.pull-quote__footer { display: flex; align-items: center; margin-top: var(--space-xl); gap: var(--space-md); }
.pull-quote__avatar {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background-color: var(--hairline);
  overflow: hidden;
  border-radius: 50%;
}
.pull-quote__avatar img { width: 100%; height: 100%; object-fit: cover; }
.pull-quote__avatar--placeholder { display: flex; align-items: center; justify-content: center; }
.pull-quote__avatar--placeholder::after { content: ""; width: 24px; height: 24px; border: 1px solid var(--muted); opacity: 0.4; }
.pull-quote__author {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin: 0;
}
.pull-quote__role { font-size: 0.8125rem; color: var(--muted); margin: var(--space-xs) 0 0; }

/* ===== CTA Section ===== */
.case-cta {
  padding: var(--space-4xl) 0;
  border-top: 1px solid var(--hairline);
}
.case-cta__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-xl);
}
.case-cta__text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 300;
  margin: 0;
}
.case-cta__buttons { display: flex; gap: var(--space-md); flex-wrap: wrap; }

/* ===== About Page ===== */
.about__intro { font-size: 1.125rem; line-height: 1.8; max-width: var(--content-width); margin-bottom: var(--space-lg); color: var(--muted); }
.about__section { margin-bottom: var(--space-2xl); }
.about__section h3 { font-weight: 300; margin-bottom: var(--space-xl); }

/* Founder Profile */
.founder-profile {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}
@media (min-width: 768px) {
  .founder-profile {
    grid-template-columns: 380px 1fr;
    gap: var(--space-xl);
    align-items: start;
  }
}
.founder-profile__image img {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1;
  object-fit: contain;

}
.founder-profile__content { max-width: 640px; }
.founder-profile__content p { font-size: 1rem; line-height: 1.75; }
.founder-profile__content p:last-child { margin-bottom: 0; }

.experience-item { padding: var(--space-xl) 0; border-bottom: 1px solid var(--hairline); }
.experience-item:first-child { border-top: 1px solid var(--hairline); }
.experience-item:last-child { border-bottom: none; }
.experience-item__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}
.experience-item__role { font-family: var(--font-display); font-size: 1.125rem; font-weight: 400; }
.experience-item__date { font-family: var(--font-mono); font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.experience-item__company { color: var(--accent); font-weight: 500; font-size: 0.875rem; margin-bottom: var(--space-md); }
.experience-item p { font-size: 0.9375rem; line-height: 1.7; }

/* ===== Contact Page ===== */
.contact__content { max-width: var(--content-width); }
.contact__intro { font-size: 1.0625rem; margin-bottom: var(--space-3xl); color: var(--muted); line-height: 1.75; }
.contact__methods { display: flex; flex-direction: column; }
.contact__method { padding: var(--space-xl) 0; border-bottom: 1px solid var(--hairline); }
.contact__method:first-child { border-top: 1px solid var(--hairline); }
.contact__method-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: var(--space-sm);
}
.contact__method-value { font-family: var(--font-display); font-size: 1.25rem; font-weight: 300; }
.contact__method-value a:hover { opacity: 0.6; }
.contact__method-note { font-size: 0.8125rem; color: var(--muted); margin-top: var(--space-xs); }

/* ===== Utilities ===== */
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.text-accent { color: var(--accent); }
.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

/* ===== Scope Section ===== */
.scope-section { padding: var(--space-4xl) 0; border-top: 1px solid var(--hairline); }
.scope-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-2xl); }
@media (min-width: 768px) {
  .scope-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-3xl); }
}
.scope-item__number { font-family: var(--font-mono); font-size: 0.6875rem; font-weight: 500; color: var(--accent); margin-bottom: var(--space-md); }
.scope-item__title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 300; margin-bottom: var(--space-sm); }
.scope-item__description { font-size: 0.875rem; color: var(--muted); margin-bottom: 0; line-height: 1.7; }

/* ===== News Section ===== */
.news-section { padding: var(--space-4xl) 0; border-top: 1px solid var(--hairline); }
.news-header { margin-bottom: var(--space-2xl); }
.news-header__label { margin-bottom: var(--space-lg); }
.news-header__title { font-weight: 300; }
.news-list { list-style: none; }
.news-item { padding: var(--space-lg) 0; border-bottom: 1px solid var(--hairline); }
.news-item:first-child { border-top: 1px solid var(--hairline); }
.news-item__link {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-lg);
  transition: opacity 0.2s ease;
}
.news-item__link:hover { opacity: 0.6; }
.news-item__title { font-family: var(--font-display); font-size: 1.125rem; font-weight: 400; margin: 0; }
.news-item__source { font-family: var(--font-mono); font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); white-space: nowrap; }
.news-item__meta { font-family: var(--font-mono); font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin: var(--space-xs) 0 0; }
.news-item__placeholder { font-size: 0.9375rem; color: var(--muted); font-style: italic; }

/* ===== Short-form Case Study ===== */
.case-short-hero { padding: var(--space-4xl) 0 var(--space-3xl); }
.case-short-hero__inner { display: grid; grid-template-columns: 1fr; gap: var(--space-3xl); }
@media (min-width: 900px) {
  .case-short-hero__inner { grid-template-columns: 1.5fr 1fr; align-items: start; }
}
.case-short-hero__content { max-width: 640px; }
.case-short-hero__eyebrow { margin-bottom: var(--space-lg); }
.case-short-hero__title { font-weight: 300; line-height: 1.1; margin-bottom: var(--space-xl); }
.case-short-hero__summary { font-size: 1.0625rem; line-height: 1.75; color: var(--muted); margin-bottom: var(--space-xl); }
.case-short-hero__summary:last-child { margin-bottom: 0; }

/* Highlights Panel */
.highlights-panel { background-color: var(--accent); padding: var(--space-2xl); }
.highlights-panel__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: var(--space-xl);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.highlights-panel__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--space-lg);
}
.highlights-panel__image--placeholder::after { content: ""; width: 48px; height: 48px; border: 2px solid var(--accent-border); opacity: 0.5; }
.highlights-list { list-style: none; }
.highlight-item { padding: var(--space-md) 0; border-bottom: 1px solid var(--accent-border); }
.highlight-item:last-child { border-bottom: none; }
.highlight-item__label { margin-bottom: var(--space-xs); }
.highlight-item__value { font-family: var(--font-display); font-size: 1.5rem; font-weight: 300; color: var(--accent-text); line-height: 1.2; margin: 0; }

/* ===== Blinking Cursor ===== */
.cursor-blink {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 100;
  font-size: 3rem;
  animation: blink 1.2s ease-in-out infinite;
  margin-left: 0.3em;
  width: 0.6ch;
}
@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* ===== Privacy Policy ===== */
.legal-content { max-width: var(--content-width); }
.legal-content h2 { font-size: 1.5rem; margin-top: var(--space-3xl); margin-bottom: var(--space-lg); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 1.125rem; margin-top: var(--space-xl); margin-bottom: var(--space-md); }
.legal-content ul { list-style: none; margin-bottom: var(--space-lg); }
.legal-content li {
  position: relative;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.7;
}
.legal-content li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }
.legal-meta { font-family: var(--font-mono); font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: var(--space-3xl); }

/* ===== DANTE Hero ===== */
.dante-hero { padding: var(--space-4xl) 0 var(--space-3xl); border-bottom: 1px solid var(--hairline); }
.dante-hero__inner { display: grid; grid-template-columns: 1fr; gap: var(--space-3xl); }
@media (min-width: 900px) {
  .dante-hero__inner { grid-template-columns: 1.3fr 1fr; align-items: start; }
}
.dante-hero__eyebrow { margin-bottom: var(--space-lg); }
.dante-hero__title { font-weight: 300; line-height: 1.1; margin-bottom: var(--space-md); }
.dante-hero__subtitle { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.05em; color: var(--muted); margin-bottom: var(--space-xl); }
.dante-hero__description { font-size: 1.0625rem; line-height: 1.75; color: var(--muted); margin-bottom: 0; }

/* DANTE Panel */
.dante-panel { background-color: #1C1917; padding: var(--space-2xl); color: #F5F3EE; }
.dante-panel__title {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #F5F3EE;
  opacity: 0.6;
  margin-bottom: var(--space-xl);
}
.dante-panel__list { list-style: none; }
.dante-panel__item { padding: var(--space-md) 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.dante-panel__item:last-child { border-bottom: none; }
.dante-panel__item-label { margin-bottom: var(--space-xs); }
.dante-panel__item-value { font-family: var(--font-mono); font-size: 1rem; font-weight: 100; color: #F5F3EE; margin: 0; }

/* ===== Flowchart Section ===== */
.flowchart-section { padding: var(--space-4xl) 0; border-top: 1px solid var(--hairline); }
.flowchart { display: flex; flex-direction: column; gap: var(--space-md); max-width: 600px; }
.flowchart-step { display: flex; align-items: flex-start; gap: var(--space-lg); }
.flowchart-step__number {
  width: 40px;
  height: 40px;
  background-color: var(--accent);
  color: var(--accent-text);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.flowchart-step__content { flex: 1; padding-bottom: var(--space-lg); border-bottom: 1px solid var(--hairline); }
.flowchart-step:last-child .flowchart-step__content { border-bottom: none; }
.flowchart-step__title { font-family: var(--font-display); font-size: 1.125rem; font-weight: 400; margin-bottom: var(--space-xs); }
.flowchart-step__description { font-size: 0.875rem; color: var(--muted); margin: 0; line-height: 1.7; }
.flowchart-step__details { display: flex; flex-wrap: wrap; gap: var(--space-md); margin-top: var(--space-sm); }
.flowchart-step__duration { font-family: var(--font-mono); font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.flowchart-step__tag {
  display: inline-block;
  letter-spacing: 0.1em;
  background-color: rgba(122, 46, 34, 0.1);
  padding: 0.25rem 0.5rem;
  margin-top: var(--space-sm);
}

/* ===== Cost Table ===== */
.cost-table { width: 100%; border-collapse: collapse; margin-top: var(--space-xl); }
.cost-table th, .cost-table td { text-align: left; padding: var(--space-md); border-bottom: 1px solid var(--hairline); }
.cost-table th { font-family: var(--font-mono); font-size: 0.625rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.cost-table td { font-size: 0.9375rem; }
.cost-table tr:last-child td { border-bottom: none; }
.cost-table__highlight { color: var(--accent); font-weight: 500; }

/* ===== Diagrams ===== */
.diagram-container { margin-top: var(--space-xl); overflow-x: auto; }
.diagram { width: 100%; max-width: 800px; height: auto; }
.diagram--vertical { max-width: 300px; }
.diagram-label { font-family: var(--font-body); font-size: 11px; fill: var(--muted); }
.diagram-label-small { font-family: var(--font-body); font-size: 9px; fill: var(--muted); }
.diagram-box-title { font-family: var(--font-display); font-size: 12px; font-weight: 400; fill: var(--ink); }
.diagram-section-title { font-family: var(--font-mono); font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; fill: var(--muted); }
.diagram-annotation { font-family: var(--font-body); font-size: 11px; fill: var(--muted); }
.diagram-annotation-highlight { font-family: var(--font-display); font-size: 18px; font-weight: 400; fill: var(--accent); }
.diagram-caption { font-size: 0.875rem; color: var(--muted); margin-top: var(--space-lg); max-width: 640px; line-height: 1.7; }

/* Mermaid */
.mermaid { background: transparent; text-align: center; }
.mermaid svg { max-width: 100%; height: auto; }
.mermaid .node rect, .mermaid .node circle, .mermaid .node ellipse, .mermaid .node polygon { fill: #2E2A27; stroke: #9C9A95; }
.mermaid .node .label { color: #F5F3EE; }
.mermaid .edgePath .path { stroke: #9C9A95; }
.mermaid .edgeLabel { background-color: #1C1917; color: #F5F3EE; }
.mermaid .cluster rect { fill: #252220 !important; stroke: #9C9A95 !important; }
.mermaid .cluster span { color: #F5F3EE; }
.diagram-container .apexcharts-canvas { margin: 0 auto; }

/* ===== Two Column Layout ===== */
.two-column { display: grid; grid-template-columns: 1fr; gap: var(--space-3xl); align-items: start; }
@media (min-width: 900px) {
  .two-column { grid-template-columns: 1.2fr 1fr; }
}
.two-column__content { max-width: 560px; }
.two-column__content p { font-size: 1rem; line-height: 1.75; color: var(--muted); }
.two-column__content h4 { font-size: 1.125rem; font-weight: 400; margin-top: var(--space-xl); margin-bottom: var(--space-md); }
.two-column__diagram { display: flex; justify-content: center; }

/* ===== Feature List ===== */
.feature-list { list-style: none; margin: 0; padding: 0; }
.feature-list li { display: flex; align-items: flex-start; gap: var(--space-md); padding: var(--space-sm) 0; font-size: 0.9375rem; color: var(--muted); line-height: 1.6; }
.feature-list__marker { width: 6px; height: 6px; background-color: var(--accent); flex-shrink: 0; margin-top: 0.5em; }
.feature-list strong { color: var(--ink); font-weight: 500; }

/* ===== Security Grid ===== */
.security-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-xl); }
@media (min-width: 768px) { .security-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .security-grid { grid-template-columns: repeat(3, 1fr); } }
.security-item { padding: var(--space-xl); border: 1px solid var(--hairline); }
.security-item__title { font-family: var(--font-display); font-size: 1.125rem; font-weight: 400; margin-bottom: var(--space-md); }
.security-item__description { font-size: 0.875rem; color: var(--muted); line-height: 1.7; margin: 0; }

/* ===== Specs Grid ===== */
.specs-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-xl); }
@media (min-width: 768px) { .specs-grid { grid-template-columns: repeat(2, 1fr); } }
.specs-section { padding: var(--space-xl); background-color: #2E2A27; }
.specs-section__title { font-family: var(--font-mono); font-size: 0.6875rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted); margin-bottom: var(--space-lg); }
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr { border-bottom: 1px solid var(--hairline); }
.specs-table tr:last-child { border-bottom: none; }
.specs-table td { padding: var(--space-sm) 0; font-size: 0.875rem; vertical-align: top; }
.specs-table td:first-child { font-weight: 500; width: 100px; }
.specs-table td:last-child { color: var(--muted); }

/* ===== Modules Grid ===== */
.modules-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); }
@media (min-width: 768px) { .modules-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .modules-grid { grid-template-columns: repeat(3, 1fr); } }
.module-card { padding: var(--space-xl); border: 1px solid var(--hairline); position: relative; transition: border-color 0.2s ease; }
.module-card:hover { border-color: var(--ink); }
.module-card--core { background-color: #2E2A27; }
.module-card--custom { border-style: dashed; }
.module-card__title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; margin-bottom: var(--space-sm); padding-right: 60px; }
.module-card__description { font-size: 0.875rem; color: var(--muted); line-height: 1.7; margin-bottom: var(--space-lg); }
.module-card__features { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: var(--space-xs); }
.module-card__features li {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9C9A95;
  background-color: #1C1917;
  padding: 0.25rem 0.5rem;
  border: 1px solid #2E2A27;
}

/* ===== FAQ ===== */
.faq-list { max-width: 720px; }
.faq-item { padding: var(--space-xl) 0; border-bottom: 1px solid var(--hairline); }
.faq-item:first-child { border-top: 1px solid var(--hairline); }
.faq-item__question { font-family: var(--font-display); font-size: 1.125rem; font-weight: 400; margin-bottom: var(--space-md); }
.faq-item__answer { font-size: 0.9375rem; color: var(--muted); line-height: 1.75; margin: 0; }

/* ===== Case Study Preview ===== */
.case-study-preview { display: grid; grid-template-columns: 1fr; gap: var(--space-2xl); padding: var(--space-2xl); background-color: var(--paper); border: 1px solid var(--hairline); }
@media (min-width: 900px) { .case-study-preview { grid-template-columns: 1.5fr 1fr; } }
.case-study-preview__eyebrow { font-family: var(--font-mono); font-size: 0.6875rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted); margin-bottom: var(--space-md); }
.case-study-preview__title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 300; margin-bottom: var(--space-md); }
.case-study-preview__description { font-size: 0.9375rem; color: var(--muted); line-height: 1.75; margin-bottom: var(--space-xl); }
.case-study-preview__stats { display: flex; gap: var(--space-2xl); padding-top: var(--space-lg); border-top: 1px solid var(--hairline); }
.case-study-preview__stat { display: flex; flex-direction: column; gap: var(--space-xs); }
.case-study-preview__stat-value { font-family: var(--font-display); font-size: 1.5rem; font-weight: 300; color: var(--accent); line-height: 1; }
.case-study-preview__placeholder { display: flex; align-items: center; justify-content: center; background-color: var(--hairline); padding: var(--space-2xl); }
.case-study-preview__placeholder p { font-family: var(--font-mono); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin: 0; }

/* ===== DANTE CTA (Homepage) ===== */
.dante-cta { padding: var(--space-3xl) 0; background-color: var(--ink); color: var(--paper); }
@media (prefers-color-scheme: dark) { .dante-cta { background-color: #252220; } }
.dante-cta__inner { display: grid; grid-template-columns: 1fr; gap: var(--space-3xl); }
@media (min-width: 900px) { .dante-cta__inner { grid-template-columns: 1.3fr 1fr; align-items: center; } }
.dante-cta__eyebrow { margin-bottom: var(--space-md); color: var(--accent); }
.dante-cta__title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.5rem); font-weight: 300; color: var(--ink); margin-bottom: var(--space-xs); }
.dante-cta__subtitle { font-family: var(--font-mono); font-size: 0.6875rem; letter-spacing: 0.05em; color: var(--muted); margin-bottom: var(--space-lg); }
.dante-cta__description { font-size: 0.9375rem; line-height: 1.75; color: var(--muted); margin-bottom: var(--space-xl); max-width: 480px; }
.dante-cta__features { display: flex; flex-direction: column; gap: var(--space-lg); }
.dante-cta__feature { padding: var(--space-lg); border-left: 2px solid var(--accent); background-color: rgba(255, 255, 255, 0.03); }
.dante-cta__feature-value { font-family: var(--font-display); font-size: 1.5rem; font-weight: 300; color: var(--accent); margin-bottom: var(--space-xs); }
.dante-cta__feature-label { margin: 0; }

/* ===== DANTE Page Navigation ===== */
.dante-problem-layout { display: grid; grid-template-columns: 1fr; gap: var(--space-2xl); }
@media (min-width: 900px) { .dante-problem-layout { grid-template-columns: 200px 1fr; gap: var(--space-3xl); } }
.dante-problem-content { max-width: 720px; }
.dante-problem-content p { font-size: 1rem; line-height: 1.75; }
.dante-nav { display: none; }
@media (min-width: 900px) { .dante-nav { display: block; position: sticky; top: var(--space-2xl); align-self: start; } }
.dante-nav__title { margin-bottom: var(--space-md); }
.dante-nav__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--space-sm); }
.dante-nav__link {
  font-size: 1rem;
  color: var(--muted);
  transition: all 0.15s ease;
  display: block;
  line-height: 1.4;
  padding: var(--space-xs) var(--space-sm);
  margin-left: calc(-1 * var(--space-sm));
  border-radius: 4px;
}
.dante-nav__link:hover { color: var(--accent-text); background-color: var(--accent); opacity: 1; }

/* ===== Insights / Magazine Layout ===== */

/* Featured Article */
.article-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
@media (min-width: 768px) {
  .article-feature { grid-template-columns: 1.2fr 1fr; align-items: center; }
}
.article-feature:hover { opacity: 0.8; }
.article-feature__image {
  aspect-ratio: 16 / 10;
  background-color: var(--hairline);
  overflow: hidden;
}
.article-feature__image img { width: 100%; height: 100%; object-fit: cover; }
.article-feature__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent);
}
.article-feature__image--placeholder::after {
  content: "";
  width: 64px;
  height: 64px;
  border: 2px solid var(--accent-border);
  opacity: 0.5;
}
.article-feature__category {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: var(--space-md);
}
.article-feature__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}
.article-feature__excerpt {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}
.article-feature__meta {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin: 0;
}

/* Articles Grid */
.articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}
@media (min-width: 640px) {
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .articles-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Article Card */
.article-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.article-card:hover { opacity: 0.7; }
.article-card__image {
  aspect-ratio: 16 / 10;
  background-color: var(--hairline);
  margin-bottom: var(--space-lg);
  overflow: hidden;
}
.article-card__image img { width: 100%; height: 100%; object-fit: cover; }
.article-card__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.article-card__image--placeholder::after {
  content: "";
  width: 32px;
  height: 32px;
  border: 1px solid var(--muted);
  opacity: 0.3;
}
.article-card__category {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}
.article-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: var(--space-sm);
  line-height: 1.25;
}
.article-card__excerpt {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  flex: 1;
}
.article-card__meta {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin: 0;
}

/* Topics Grid */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}
@media (min-width: 640px) {
  .topics-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .topics-grid { grid-template-columns: repeat(6, 1fr); }
}

/* Topic Card */
.topic-card {
  padding: var(--space-lg);
  border: 1px solid var(--hairline);
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.topic-card:hover {
  border-color: var(--accent);
  background-color: rgba(122, 46, 34, 0.03);
  opacity: 1;
}
.topic-card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: var(--space-xs);
}
.topic-card__count {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin: 0;
}

/* Newsletter CTA */
.newsletter-cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  padding: var(--space-2xl);
  background-color: var(--accent);
}
@media (min-width: 768px) {
  .newsletter-cta { grid-template-columns: 1.2fr 1fr; align-items: center; }
}
.newsletter-cta__label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-text);
  opacity: 0.7;
  margin-bottom: var(--space-sm);
}
.newsletter-cta__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent-text);
  margin-bottom: var(--space-md);
}
.newsletter-cta__description {
  font-size: 0.9375rem;
  color: var(--accent-text);
  opacity: 0.85;
  line-height: 1.7;
  margin: 0;
}
.newsletter-cta__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
@media (min-width: 480px) {
  .newsletter-cta__form { flex-direction: row; }
}
.newsletter-cta__input {
  flex: 1;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  border: 1px solid var(--accent-border);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--accent-text);
}
.newsletter-cta__input::placeholder { color: var(--accent-border); }
.newsletter-cta__input:focus {
  outline: none;
  border-color: var(--accent-text);
  background-color: rgba(255, 255, 255, 0.15);
}
.newsletter-cta__form .btn--enquire {
  background-color: var(--accent-text);
  color: var(--accent);
}
.newsletter-cta__form .btn--enquire:hover {
  background-color: var(--paper);
}

/* ===== Article Page ===== */

/* Article Header */
.article-header {
  padding: var(--space-3xl) 0 var(--space-2xl);
}
.article-header__back {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: var(--space-2xl);
  transition: color 0.2s ease;
}
.article-header__back:hover { color: var(--ink); opacity: 1; }
.article-header__category {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: var(--space-md);
}
.article-header__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  max-width: 800px;
  margin-bottom: var(--space-lg);
}
.article-header__meta {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin: 0;
}

/* Article Hero Image */
.article-hero { padding-bottom: var(--space-3xl); }
.article-hero__image {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.article-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Article Content */
.article-content {
  padding-bottom: var(--space-4xl);
  border-bottom: 1px solid var(--hairline);
}
.article-body {
  max-width: 680px;
}
.article-body__lead {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: var(--space-2xl);
}
.article-body p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: var(--space-xl);
}
.article-body p:last-child { margin-bottom: 0; }
.article-body h2 {
  font-size: 1.5rem;
  font-weight: 300;
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-lg);
}
.article-body h3 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}
.article-body ul, .article-body ol {
  margin-bottom: var(--space-xl);
  padding-left: var(--space-xl);
}
.article-body li {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: var(--space-sm);
}
.article-body blockquote {
  border-left: 2px solid var(--accent);
  padding-left: var(--space-xl);
  margin: var(--space-2xl) 0;
  font-style: italic;
}
.article-body blockquote p {
  color: var(--ink);
}

/* Article Footer */
.article-footer {
  padding: var(--space-3xl) 0;
}
.article-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-xl);
}
.article-footer__cta {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 300;
  margin: 0;
}
