/* ==========================================================================
   Orchards Lane — Stylesheet
   Design tokens, layout, and components for the SEO agency site.
   Fonts: Barlow Condensed (display) + DM Sans (body)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800;900&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300;1,9..40,400&display=swap');

/* ---------- Tokens ---------- */
:root {
  --background: #F8F5EF;
  --foreground: #363D39;
  --card: #FDFAF5;
  --primary: #5A6B62;
  --primary-foreground: #F8F5EF;
  --secondary: #EDE9E0;
  --muted: #E8E3D8;
  --muted-foreground: #7A8078;
  --accent: #CEB99E;
  --border: rgba(54, 61, 57, 0.12);
  --font-size: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: var(--font-size); scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--background);
  color: var(--foreground);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
input, select, textarea { font-family: inherit; max-width: 100%; }

.display {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  overflow-wrap: break-word;
  word-break: break-word;
}

.container { max-width: 90rem; margin: 0 auto; }

/* ---------- Grid/flex overflow fix ----------
   Grid and flex items default to min-width: auto, which stops them
   shrinking past the width of their longest unbreakable word (e.g. a
   heading like "Destination"). That's what was preventing these rows
   from compressing below ~530px on narrow screens. Resetting min-width
   to 0 on every direct child of these layout containers lets the text
   actually wrap/shrink with the viewport. */
.service-hero-grid > *,
.sector-grid > *,
.panel-row > *,
.overview-grid > *,
.services-list .service-row > *,
.process-grid > *,
.why-grid > *,
.cta-grid > *,
.form-row > *,
.service-hero-lead-col > *,
.cta-trust > *,
.why-list-col > * {
  min-width: 0;
}

/* ---------- Section padding ---------- */
.px { padding-left: 2.5rem; padding-right: 2.5rem; }
@media (min-width: 768px) { .px { padding-left: 3rem; padding-right: 3rem; } }
@media (min-width: 1024px) { .px { padding-left: 4rem; padding-right: 4rem; } }

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d15 { transition-delay: 0.15s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d4 { transition-delay: 0.4s; }
.fade-only { opacity: 0; transition: opacity 1s var(--ease); }
.fade-only.in-view { opacity: 1; }

/* ==========================================================================
   Site Nav
   ========================================================================== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background-color 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}
.site-nav.solid {
  background: rgba(248, 245, 239, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-nav-inner {
  padding: 1.25rem 2.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  column-gap: 1rem;
  align-items: center;
}
@media (min-width: 768px) { .site-nav-inner { padding: 1.25rem 3rem; } }
@media (min-width: 1024px) { .site-nav-inner { padding: 1.25rem 4rem; } }

.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 1.125rem;
  text-align: left;
  white-space: nowrap;
  color: #fff;
  transition: color 0.3s;
}
.site-nav.solid .nav-logo { color: var(--foreground); }

.nav-links {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }
@media (min-width: 1280px) { .nav-links { gap: 2rem; } }

.nav-link {
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}
.nav-link:hover { color: #fff; }
.site-nav.solid .nav-link { color: var(--muted-foreground); }
.site-nav.solid .nav-link:hover { color: var(--foreground); }
.nav-link.active { color: #fff; font-weight: 600; }
.site-nav.solid .nav-link.active { color: var(--foreground); font-weight: 600; }

.nav-right { display: flex; align-items: center; justify-content: flex-end; gap: 1rem; }

.nav-audit-btn {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.625rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
@media (min-width: 768px) { .nav-audit-btn { display: flex; } }
.nav-audit-btn:hover { background: #fff; color: var(--foreground); }
.site-nav.solid .nav-audit-btn { border-color: var(--foreground); color: var(--foreground); }
.site-nav.solid .nav-audit-btn:hover { background: var(--foreground); color: var(--background); }

.nav-toggle { display: block; color: #fff; transition: color 0.3s; }
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.site-nav.solid .nav-toggle { color: var(--foreground); }
.nav-toggle svg { width: 20px; height: 20px; }

.mobile-menu {
  display: none;
  background: var(--background);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 2.5rem 1.5rem;
}
.mobile-menu.open { display: block; }
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }

.mobile-nav-link {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted-foreground);
}
.mobile-nav-link:hover { color: var(--foreground); }
.mobile-nav-link.active { color: var(--foreground); font-weight: 600; }

.mobile-cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.875rem 1.25rem;
  border-radius: 999px;
  margin-top: 0.75rem;
}

/* ==========================================================================
   Buttons / links
   ========================================================================== */
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.625rem 1.25rem;
  border-radius: 999px;
  transition: background-color 0.2s, color 0.2s;
}
.btn-outline-light:hover { background: #fff; color: var(--foreground); }

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--foreground);
  color: var(--foreground);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.625rem 1.25rem;
  border-radius: 999px;
  transition: background-color 0.2s, color 0.2s;
}
.btn-outline-dark:hover { background: var(--foreground); color: var(--background); }

.btn-solid {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--primary-foreground);
  color: var(--primary);
  padding: 0.875rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}
.btn-solid:hover { opacity: 0.9; }

.btn-solid-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--primary-foreground);
  color: var(--primary);
  padding: 0.875rem 2.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}
.btn-solid-inline:hover { opacity: 0.9; }
.btn-solid svg { transition: transform 0.2s; }
.btn-solid:hover svg { transform: translateX(2px); }

.icon-sm { width: 0.75rem; height: 0.75rem; flex-shrink: 0; }
.icon-md { width: 1rem; height: 1rem; flex-shrink: 0; }

/* ---------- Service hero (sub-pages) ---------- */
.service-hero {
  background: var(--foreground);
  color: var(--background);
  padding: 9rem 2.5rem 5rem;
  text-align: center;
}
@media (min-width: 768px) { .service-hero { padding-left: 3rem; padding-right: 3rem; } }
@media (min-width: 1024px) { .service-hero { padding-left: 4rem; padding-right: 4rem; text-align: left; } }
.service-eyebrow {
  color: rgba(248,245,239,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.service-hero-grid {
  display: grid;
  gap: 3rem;
  align-items: end;
}
@media (min-width: 1024px) { .service-hero-grid { grid-template-columns: repeat(12, 1fr); gap: 5rem; } }
@media (min-width: 1024px) { .service-hero-title-col { grid-column: span 7; } }
.service-hero-title {
  color: var(--background);
  line-height: 0.88;
  font-size: clamp(2.6rem, 10vw, 8rem);
}
.service-hero-lead-col { display: flex; flex-direction: column; align-items: center; }
@media (min-width: 1024px) { .service-hero-lead-col { grid-column: span 5; align-items: flex-start; } }
.service-hero-lead {
  color: rgba(248,245,239,0.65);
  line-height: 1.6;
  font-size: 1rem;
}
.service-hero-lead-col .btn-outline-light { margin-top: 2rem; }

/* ---------- Service hero v2 (centered, no split grid) ---------- */
.service-hero-v2 {
  background: var(--foreground);
  color: var(--background);
  padding: 9rem 2.5rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-v2-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  z-index: 0;
}
.hero-full-bg .hero-v2-bg { opacity: 0.7; }
iframe.hero-v2-bg { border: 0; pointer-events: none; }
.hero-v2-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(54,61,57,0.35), rgba(54,61,57,0.55));
}
.service-hero-v2 > *:not(.hero-v2-bg) {
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) { .service-hero-v2 { padding-left: 3rem; padding-right: 3rem; } }
@media (min-width: 1024px) {
  .service-hero-v2 {
    padding-left: 4rem;
    padding-right: 4rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.hero-v2-label {
  font-size: 1.5rem;
  color: rgba(248,245,239,0.7);
  margin-bottom: 2.5rem;
}
.hero-v2-title {
  font-size: clamp(2.8rem, 9vw, 7.5rem);
  line-height: 0.98;
  color: var(--background);
  max-width: 64rem;
  margin: 0 auto 2.75rem;
}
.hero-v2-sub {
  color: rgba(248,245,239,0.7);
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 36rem;
  margin: 0 auto;
}

/* ---------- What We Cover — 2-col divided grid ---------- */
.cover-section { background: var(--secondary); text-align: center; }
@media (min-width: 1024px) {
  .cover-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.cover-label { font-size: 1.1rem; color: var(--muted-foreground); margin-bottom: 3rem; }
.cover-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
@media (min-width: 640px) { .cover-grid { grid-template-columns: repeat(2, 1fr); } }
.cover-grid > * { min-width: 0; }
.cover-cell { background: var(--secondary); padding: 3rem 2rem; }
.cover-title { font-size: 1.6rem; margin-bottom: 1rem; color: var(--foreground); }
.cover-body { font-size: 0.9rem; line-height: 1.7; color: var(--muted-foreground); max-width: 26rem; margin: 0 auto; }

/* ==========================================================================
   Sector callouts (home)
   ========================================================================== */
.sector-grid {
  display: grid;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) { .sector-grid { grid-template-columns: 1fr 1fr; } }
.sector-panel {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--secondary);
}
@media (min-width: 768px) { .sector-panel { padding: 4rem 3rem; align-items: flex-start; text-align: left; } }
@media (min-width: 1024px) { .sector-panel { padding: 4rem 4rem; } }
.sector-panel.left { border-bottom: 1px solid var(--border); }
@media (min-width: 768px) { .sector-panel.left { border-bottom: none; border-right: 1px solid var(--border); } }
.sector-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .sector-eyebrow { margin-bottom: 2rem; } }
.sector-headline {
  line-height: 0.92;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: var(--foreground);
  margin-bottom: 1.25rem;
}
.sector-body { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }

/* ==========================================================================
   Service panels (home)
   ========================================================================== */
.panel-row { display: grid; }
@media (min-width: 1024px) { .panel-row { grid-template-columns: 1fr 1fr; } }

.panel-text {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  order: 2;
}
@media (min-width: 768px) { .panel-text { padding: 4rem 3rem; } }
@media (min-width: 1024px) { .panel-text { padding: 4rem 4rem; order: 1; align-items: flex-start; text-align: left; min-height: 480px; } }

.panel-text.dark { background: var(--primary); color: var(--primary-foreground); }
.panel-text.darker { background: var(--foreground); color: var(--background); }
.panel-row.reverse .panel-text { order: 2; }
@media (min-width: 1024px) { .panel-row.reverse .panel-text { order: 2; } }

.panel-number { font-size: 0.75rem; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 1.5rem; opacity: 0.4; }
@media (min-width: 768px) { .panel-number { margin-bottom: 2rem; } }
.panel-title { line-height: 0.9; font-size: clamp(2rem, 5vw, 4.5rem); margin-bottom: 1.25rem; }
.panel-body { line-height: 1.6; font-size: 0.875rem; max-width: 24rem; opacity: 0.7; }
.panel-text .btn-outline-light,
.panel-text .btn-outline-light-alt { margin-top: 2rem; }
.btn-outline-light-alt {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid rgba(248,245,239,0.3);
  color: var(--background);
  font-size: 0.75rem; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.625rem 1.25rem; border-radius: 999px;
  transition: background-color 0.2s, color 0.2s;
}
.btn-outline-light-alt:hover { background: var(--background); color: var(--foreground); }

.panel-image {
  order: 1;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--muted);
}
@media (min-width: 1024px) { .panel-image { order: 2; aspect-ratio: auto; min-height: 480px; } }
.panel-image img { width: 100%; height: 100%; object-fit: cover; }
.panel-row.reverse .panel-image { order: 1; }
@media (min-width: 1024px) { .panel-row.reverse .panel-image { order: 1; } }
@media (min-width: 1024px) { .panel-row.reverse .panel-text { order: 2; } }

/* ==========================================================================
   Stop paying / statement sections
   ========================================================================== */
.statement-section {
  background: var(--secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 2.5rem;
  text-align: center;
}
@media (min-width: 768px) { .statement-section { padding: 5rem 3rem; text-align: left; } }
@media (min-width: 1024px) { .statement-section { padding: 5rem 4rem; } }
.statement-title { line-height: 0.88; font-size: clamp(2.3rem, 9vw, 8rem); color: var(--foreground); }
.statement-sub { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; max-width: 32rem; margin-top: 1.25rem; }
@media (min-width: 768px) { .statement-sub { margin-left: 0; } }
.statement-sub, .statement-title { margin-left: auto; margin-right: auto; }
@media (min-width: 768px) { .statement-sub, .statement-title { margin-left: 0; margin-right: 0; } }

.primary-statement {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 4rem 2.5rem;
  text-align: center;
}
@media (min-width: 768px) { .primary-statement { padding: 5rem 3rem; } }
@media (min-width: 1024px) { .primary-statement { padding: 5rem 4rem; text-align: left; } }
.primary-statement-title { line-height: 0.88; font-size: clamp(2.2rem, 8vw, 7rem); }
.primary-statement-sub { color: rgba(248,245,239,0.65); font-size: 0.875rem; line-height: 1.6; max-width: 32rem; margin: 2rem auto 0; }
@media (min-width: 1024px) { .primary-statement-sub { margin-left: 0; margin-right: 0; } }

/* ==========================================================================
   Overview split section
   ========================================================================== */
.overview-section { background: var(--secondary); border-bottom: 1px solid var(--border); }
.overview-grid { display: grid; }
@media (min-width: 1024px) { .overview-grid { grid-template-columns: repeat(12, 1fr); } }
.overview-lead {
  padding: 4rem 2.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) { .overview-lead { padding: 5rem 3rem; } }
@media (min-width: 1024px) { .overview-lead { grid-column: span 5; padding: 5rem 4rem; border-bottom: none; border-right: 1px solid var(--border); text-align: left; } }
.overview-lead p { line-height: 0.92; font-size: clamp(1.8rem, 3.5vw, 3rem); color: var(--foreground); text-transform: uppercase; font-family: 'Barlow Condensed', sans-serif; font-weight: 900; letter-spacing: -0.01em; }
.overview-copy {
  padding: 4rem 2.5rem;
  display: flex;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) { .overview-copy { padding: 5rem 3rem; } }
@media (min-width: 1024px) { .overview-copy { grid-column: span 7; padding: 5rem 4rem; text-align: left; } }
.overview-copy p { line-height: 1.6; margin-bottom: 1.5rem; }
.overview-copy p:last-child { margin-bottom: 0; color: var(--muted-foreground); }

/* ==========================================================================
   Generic content sections
   ========================================================================== */
.section { padding: 4rem 2.5rem; }
@media (min-width: 768px) { .section { padding: 5rem 3rem; } }
@media (min-width: 1024px) { .section { padding: 5rem 4rem; } }
.section.bordered-y { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--secondary); }
.section.bordered-b { border-bottom: 1px solid var(--border); }
.section.bg-secondary { background: var(--secondary); }

.section-kicker { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 0.75rem; }
@media (min-width: 768px) { .section-kicker { justify-content: flex-start; } }
.section-kicker .rule { height: 1px; width: 2.5rem; background: var(--primary); opacity: 0.6; }
.section-kicker span { font-size: 0.75rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted-foreground); font-weight: 500; }
.section-heading { line-height: 0.92; font-size: clamp(2.2rem, 5vw, 4rem); color: var(--foreground); margin-bottom: 3rem; }
.section-heading-wrap { margin-bottom: 3rem; text-align: center; }
@media (min-width: 768px) { .section-heading-wrap { text-align: left; } }

/* ---------- Services list ---------- */
.services-list { border-top: 1px solid var(--border); }
.service-row {
  display: grid;
  gap: 0.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
@media (min-width: 768px) { .service-row { grid-template-columns: repeat(12, 1fr); gap: 2rem; text-align: left; } }
.service-row .no { font-size: 0.75rem; color: var(--muted-foreground); font-weight: 500; }
@media (min-width: 768px) { .service-row .no { grid-column: span 1; } }
.service-row .title { font-weight: 600; color: var(--foreground); font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; letter-spacing: 0.01em; }
@media (min-width: 768px) { .service-row .title { grid-column: span 4; } }
.service-row .body { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }
@media (min-width: 768px) { .service-row .body { grid-column: span 7; } }

/* ---------- Process steps ---------- */
.process-grid { display: grid; gap: 1px; background: var(--border); }
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(3, 1fr); } }
.process-step { background: var(--secondary); padding: 2rem; height: 100%; text-align: center; }
@media (min-width: 768px) { .process-step { text-align: left; } }
.process-step .n { font-size: 4rem; line-height: 1; color: var(--primary); opacity: 0.2; margin-bottom: 1.5rem; }
.process-step .title { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; color: var(--foreground); font-size: 1.3rem; letter-spacing: 0.01em; margin-bottom: 0.75rem; }
.process-step .body { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }

/* ---------- Editorial image band ---------- */
.editorial-image { height: 40vh; overflow: hidden; background: var(--muted); }
@media (min-width: 768px) { .editorial-image { height: 55vh; } }
.editorial-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* ---------- Why Orchards Lane ---------- */
.why-grid { display: grid; gap: 3rem; text-align: center; }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(12, 1fr); gap: 5rem; text-align: left; } }
.why-heading-col { }
.why-heading-col .section-kicker { justify-content: center; }
@media (min-width: 1024px) { .why-heading-col { grid-column: span 5; } .why-heading-col .section-kicker { justify-content: flex-start; } }
.why-heading { line-height: 0.92; font-size: clamp(2rem, 4vw, 3.2rem); color: var(--foreground); }
.why-list-col { display: flex; align-items: center; }
@media (min-width: 1024px) { .why-list-col { grid-column: span 7; } }
.why-list { width: 100%; border-top: 1px solid var(--border); }
.why-item { padding: 1.75rem 0; border-bottom: 1px solid var(--border); }
.why-item .title { font-weight: 600; color: var(--foreground); margin-bottom: 0.5rem; font-size: 0.875rem; }
.why-item .body { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }

/* ==========================================================================
   CTA / Contact form
   ========================================================================== */
.cta-section { background: var(--primary); color: var(--primary-foreground); }
.cta-heading-wrap {
  padding: 4rem 2.5rem 2.5rem;
  border-bottom: 1px solid rgba(248,245,239,0.1);
  text-align: center;
}
@media (min-width: 768px) { .cta-heading-wrap { padding: 5rem 3rem 2.5rem; text-align: left; } }
@media (min-width: 1024px) { .cta-heading-wrap { padding: 5rem 4rem 2.5rem; } }
.cta-heading { line-height: 0.88; font-size: clamp(2.2rem, 10vw, 9rem); }
.cta-kicker { font-size: 1.5rem; color: rgba(248,245,239,0.7); margin-bottom: 2.5rem; }

.cta-body { padding: 3rem 2.5rem; }
@media (min-width: 768px) { .cta-body { padding: 3rem 3rem 4rem; } }
@media (min-width: 1024px) { .cta-body { padding: 4rem 4rem; } }
.cta-grid { max-width: 80rem; margin: 0 auto; display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .cta-grid { grid-template-columns: repeat(12, 1fr); gap: 4rem; } }

/* ---------- Contact page: single centered form ---------- */
.contact-page-form { max-width: 34rem; margin: 0 auto; padding: 3rem 1.75rem; background: var(--card); border-radius: 1.25rem; }
@media (min-width: 768px) { .contact-page-form { padding: 4rem 3rem; } }
.form-light {
  background: var(--muted);
  color: var(--foreground);
}
@media (min-width: 1024px) {
  .form-light {
    min-height: 100vh;
    display: flex;
    align-items: center;
  }
  .form-light .cta-body { width: 100%; }
}
.form-light .field-group { border-bottom-color: rgba(54,61,57,0.22); }
.form-light .field-group label { color: var(--muted-foreground); }
.form-light .field-group input,
.form-light .field-group select,
.form-light .field-group textarea { color: var(--foreground); }
.form-light .field-group input::placeholder,
.form-light .field-group textarea::placeholder { color: rgba(54,61,57,0.35); }
.form-light .field-group select { color: rgba(54,61,57,0.45); }
.form-light .field-group select.filled { color: var(--foreground); }
.form-light .btn-solid { background: var(--foreground); color: var(--background); margin-top: 0.5rem; }
.form-light-heading { text-align: center; color: var(--foreground); margin-bottom: 4.5rem; font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1; }

/* ---------- Simple CTA (service pages: heading + blurb + single button) ---------- */
.cta-simple {
  max-width: 34rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.cta-simple .lead {
  color: rgba(248,245,239,0.7);
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2.75rem;
}

.cta-trust { display: flex; flex-direction: column; align-items: center; text-align: center; }
@media (min-width: 1024px) { .cta-trust { grid-column: span 4; align-items: flex-start; text-align: left; } }
.cta-trust p.lead { color: rgba(248,245,239,0.7); line-height: 1.6; margin-bottom: 1.5rem; font-size: 0.875rem; }
.trust-list { display: none; flex-direction: column; gap: 0.625rem; border-top: 1px solid rgba(248,245,239,0.15); padding-top: 1.5rem; width: 100%; text-align: left; }
@media (min-width: 768px) { .trust-list { display: flex; } }
.trust-list .item { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: rgba(248,245,239,0.5); }
.trust-list .dot { width: 4px; height: 4px; border-radius: 999px; background: rgba(248,245,239,0.3); margin-top: 0.375rem; flex-shrink: 0; }

.cta-form-col { }
@media (min-width: 1024px) { .cta-form-col { grid-column: span 7 / span 7; grid-column-start: 6; } }

.contact-form { display: flex; flex-direction: column; gap: 1.75rem; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-row { display: grid; gap: 2rem 2rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; row-gap: 1.75rem; } }
.field-group {
  border-bottom: 1px solid rgba(248,245,239,0.3);
  padding-bottom: 0.75rem;
  transition: border-color 0.2s;
}
.field-group:focus-within { border-color: var(--primary-foreground); }
.field-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(248,245,239,0.8);
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-align: center;
}
@media (min-width: 768px) { .field-group label { text-align: left; } }
.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--primary-foreground);
  font-size: 0.875rem;
  text-align: center;
}
@media (min-width: 768px) { .field-group input, .field-group select, .field-group textarea { text-align: left; } }
.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus { outline: none; }
.field-group input::placeholder,
.field-group textarea::placeholder { color: rgba(248,245,239,0.25); }
.field-group textarea { resize: none; font-family: inherit; }
.field-group select { appearance: none; cursor: pointer; color: rgba(248,245,239,0.25); }
.field-group select.filled { color: var(--primary-foreground); }
.field-group select option { color: var(--foreground); background: var(--background); }

.form-thankyou { padding: 2rem 0; text-align: center; }
@media (min-width: 768px) { .form-thankyou { text-align: left; } }
.form-thankyou .title { font-size: 3rem; color: var(--primary-foreground); margin-bottom: 1rem; }
.form-thankyou .body { color: rgba(248,245,239,0.6); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--foreground);
  color: var(--background);
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  text-align: center;
}
@media (min-width: 768px) { .site-footer { padding: 2.5rem 3rem; flex-direction: row; text-align: left; } }
@media (min-width: 1024px) { .site-footer { padding: 2.5rem 4rem; } }
.footer-logo { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; text-transform: uppercase; letter-spacing: 0.02em; font-size: 1.25rem; }
.footer-tag { color: rgba(248,245,239,0.4); font-size: 0.75rem; }
.footer-tag a { color: rgba(248,245,239,0.65); text-decoration: underline; }
.footer-tag a:hover { color: rgba(248,245,239,0.9); }
.footer-brandkit-link {
  font-size: 0.75rem; letter-spacing: 0.05em; text-transform: uppercase;
  border: 1px solid rgba(248,245,239,0.2); color: rgba(248,245,239,0.5);
  padding: 0.375rem 1rem; border-radius: 999px;
  transition: border-color 0.2s, color 0.2s;
}
.footer-brandkit-link:hover { border-color: rgba(248,245,239,0.5); color: var(--background); }
.home-footer-text { text-align: center; }
@media (min-width: 768px) { .home-footer-text { text-align: right; } }

/* ==========================================================================
   Brand Kit page
   ========================================================================== */
.bk-header {
  background: var(--foreground); color: var(--background);
  padding: 2rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
@media (min-width: 768px) { .bk-header { padding: 2rem 3rem; } }
@media (min-width: 1024px) { .bk-header { padding: 2rem 4rem; } }
.bk-header .eyebrow { color: rgba(248,245,239,0.4); font-size: 0.75rem; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.25rem; }
.bk-header h1 { font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1; }
.bk-back {
  font-size: 0.75rem; letter-spacing: 0.05em; text-transform: uppercase;
  border: 1px solid rgba(248,245,239,0.3); color: var(--background);
  padding: 0.625rem 1.25rem; border-radius: 999px; white-space: nowrap;
  transition: background-color 0.2s, color 0.2s;
}
.bk-back:hover { background: var(--background); color: var(--foreground); }

.bk-body { padding: 4rem 2.5rem; max-width: 80rem; margin: 0 auto; display: flex; flex-direction: column; gap: 5rem; }
@media (min-width: 768px) { .bk-body { padding: 4rem 3rem; } }
@media (min-width: 1024px) { .bk-body { padding: 4rem 4rem; } }
.bk-h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 2rem; color: var(--foreground); }

.bk-colors { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .bk-colors { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .bk-colors { grid-template-columns: repeat(4, 1fr); } }
.bk-color-card { border: 1px solid var(--border); border-radius: 0.75rem; overflow: hidden; }
.bk-color-swatch { height: 6rem; }
.bk-color-card .info { padding: 1rem; background: var(--card); }
.bk-color-card .name { font-weight: 600; font-size: 0.875rem; color: var(--foreground); margin-bottom: 0.125rem; }
.bk-color-card .hex, .bk-color-card .token { font-size: 0.75rem; color: var(--muted-foreground); font-family: monospace; }
.bk-color-card .token { opacity: 0.7; margin-bottom: 0.5rem; }
.bk-color-card .usage { font-size: 0.75rem; color: var(--muted-foreground); line-height: 1.6; }

.bk-fonts { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .bk-fonts { grid-template-columns: 1fr 1fr; } }
.bk-font-card { border: 1px solid var(--border); border-radius: 0.75rem; overflow: hidden; }
.bk-font-sample { background: var(--secondary); padding: 2.5rem 2rem; }
.bk-font-sample p { line-height: 0.9; font-size: clamp(2rem, 4vw, 3.2rem); color: var(--foreground); text-transform: uppercase; letter-spacing: -0.01em; }
.bk-font-info { padding: 1.5rem; background: var(--card); }
.bk-font-info .top-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 0.75rem; }
.bk-font-info .family { font-weight: 600; color: var(--foreground); }
.bk-font-info .role { font-size: 0.75rem; color: var(--muted-foreground); }
.bk-font-link {
  display: flex; align-items: center; gap: 0.25rem; font-size: 0.75rem; color: var(--primary);
  border: 1px solid rgba(90,107,98,0.3); padding: 0.375rem 0.75rem; border-radius: 999px;
  white-space: nowrap; transition: background-color 0.2s, color 0.2s;
}
.bk-font-link:hover { background: var(--primary); color: var(--primary-foreground); }
.bk-weights { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.75rem; }
.bk-weights span { font-size: 0.75rem; background: var(--muted); color: var(--muted-foreground); padding: 0.25rem 0.5rem; border-radius: 0.25rem; }
.bk-font-info .usage { font-size: 0.75rem; color: var(--muted-foreground); line-height: 1.6; }

.bk-photo-note { font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 2rem; margin-top: -1rem; }
.bk-photos { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .bk-photos { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .bk-photos { grid-template-columns: repeat(3, 1fr); } }
.bk-photo-card { border: 1px solid var(--border); border-radius: 0.75rem; overflow: hidden; display: block; }
.bk-photo-frame { aspect-ratio: 3 / 2; overflow: hidden; background: var(--muted); position: relative; }
.bk-photo-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.bk-photo-card:hover .bk-photo-frame img { transform: scale(1.05); }
.bk-photo-card .info { padding: 1rem; background: var(--card); }
.bk-photo-card .label { font-weight: 600; font-size: 0.875rem; color: var(--foreground); margin-bottom: 0.125rem; }
.bk-photo-card .usage { font-size: 0.75rem; color: var(--muted-foreground); margin-bottom: 0.25rem; }
.bk-photo-card .credit { font-size: 0.75rem; color: var(--muted-foreground); opacity: 0.6; }

.bk-tokens {
  background: var(--foreground); color: rgba(248,245,239,0.8);
  border-radius: 0.75rem; padding: 2rem;
  font-size: 0.75rem; line-height: 1.6; overflow-x: auto;
  white-space: pre-wrap; font-family: 'DM Sans', monospace;
}

.bk-layout-rules { border-top: 1px solid var(--border); }
.bk-layout-row { display: grid; grid-template-columns: 1fr; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--border); }
@media (min-width: 768px) { .bk-layout-row { grid-template-columns: repeat(12, 1fr); } }
.bk-layout-row .rule { font-size: 0.75rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted-foreground); font-weight: 500; }
@media (min-width: 768px) { .bk-layout-row .rule { grid-column: span 3; } }
.bk-layout-row .value { font-size: 0.875rem; color: var(--foreground); line-height: 1.6; }
@media (min-width: 768px) { .bk-layout-row .value { grid-column: span 9; } }

.bk-footer { background: var(--foreground); color: var(--background); padding: 2rem 2.5rem; margin-top: 4rem; }
@media (min-width: 768px) { .bk-footer { padding: 2rem 3rem; } }
@media (min-width: 1024px) { .bk-footer { padding: 2rem 4rem; } }
.bk-footer p { color: rgba(248,245,239,0.4); font-size: 0.75rem; }

/* ==========================================================================
   Light centered content section + dark box-grid section
   (technical-seo.html "Behind the scenes" / "Core Web Vitals" pattern)
   ========================================================================== */
.light-section {
  background: var(--muted);
  text-align: center;
  padding: 5rem 2.5rem;
}
.light-section-alt-bg { background: var(--secondary); }
@media (min-width: 768px) { .light-section { padding: 6rem 3rem; } }
@media (min-width: 1024px) { .light-section { padding: 8rem 4rem; } }
.light-section-inner { max-width: 42rem; margin: 0 auto; }
.light-section-kicker { font-size: 1.1rem; color: var(--muted-foreground); margin-bottom: 1.5rem; }
.light-section-heading { font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.05; color: var(--foreground); margin-bottom: 2rem; }
.light-section .body-text { font-size: 1rem; line-height: 1.7; color: var(--muted-foreground); margin-bottom: 1.25rem; }
.light-section .body-text:last-child { margin-bottom: 0; }

/* ---------- Split section: image left, icon callout list right ---------- */
.split-callout-section {
  display: grid;
  background: var(--secondary);
}
@media (min-width: 1024px) { .split-callout-section { grid-template-columns: 1fr 1fr; min-height: 100vh; gap: 3rem; } }
.split-callout-section > * { min-width: 0; }
.split-callout-image { min-height: 320px; overflow: hidden; }
@media (min-width: 1024px) { .split-callout-image { min-height: 100vh; } }
.split-callout-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split-callout-list {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2.25rem;
}
@media (min-width: 768px) { .split-callout-list { padding: 4rem 3rem; } }
@media (min-width: 1024px) { .split-callout-list { padding: 5rem 4rem; gap: 2.5rem; align-items: flex-start; text-align: left; } }

/* ---------- Compact variant: fixed padding on the text column drives the row's
   height; the image is a CSS background-image that always covers whatever
   height that ends up being — no <img> height resolution to fight with. ---------- */
.split-compact .split-callout-image {
  min-height: 320px;
  background-size: cover;
  background-position: center;
}
.split-compact .split-callout-list { padding: 5rem 2.5rem; justify-content: flex-start; }
@media (min-width: 768px) { .split-compact .split-callout-list { padding: 6rem 3rem; } }
@media (min-width: 1024px) {
  .split-callout-section.split-compact { min-height: 0; }
  .split-compact .split-callout-image { min-height: 0; }
  .split-compact .split-callout-list { padding: 8rem 4rem; justify-content: flex-start; }
}
.callout-item .callout-icon { width: 2.75rem; height: 2.75rem; margin: 0 auto 1rem; display: block; }
@media (min-width: 1024px) { .callout-item .callout-icon { margin-left: 0; margin-right: 0; } }
.callout-item .title { font-weight: 600; color: var(--foreground); font-size: 1.15rem; margin-bottom: 0.5rem; }
.callout-item .body { font-size: 0.9rem; line-height: 1.6; color: var(--muted-foreground); max-width: 30rem; }

/* ---------- Centered callouts row, appended within a light-section ---------- */
.light-section-callouts {
  display: grid;
  gap: 1.5rem;
  margin-top: 4.5rem;
  max-width: 68rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) { .light-section-callouts { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.light-section-callouts > * { min-width: 0; }
.light-section-callouts .callout-item {
  background: var(--card);
  border-radius: 1rem;
  padding: 2rem;
}
.light-section-callouts .callout-icon { margin-left: auto; margin-right: auto; }

/* ---------- Area cards (Areas We Cover directory page) ---------- */
.area-card-links { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1.25rem; }
.area-card-links a { font-size: 0.85rem; font-weight: 600; color: var(--foreground); text-decoration: underline; text-underline-offset: 2px; }
.area-card-links a:hover { color: var(--primary); }

.box-section {
  background: var(--foreground);
  color: var(--background);
  padding: 5rem 2.5rem;
}
@media (min-width: 768px) { .box-section { padding: 6rem 3rem; } }
@media (min-width: 1024px) { .box-section { padding: 8rem 4rem; } }
.box-section-intro { max-width: 34rem; margin: 0 auto 3.5rem; text-align: center; }
.box-section-heading { font-size: clamp(1.6rem, 3.5vw, 2.4rem); line-height: 1.1; color: var(--background); }
.box-section-sub { color: rgba(248,245,239,0.65); margin-top: 1rem; font-size: 0.95rem; line-height: 1.6; }
.box-grid { display: grid; gap: 1.5rem; max-width: 80rem; margin: 0 auto; width: 100%; }
.box-grid > * { min-width: 0; }
@media (min-width: 640px) { .box-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) {
  .box-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
  .box-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
}
.box-card { background: var(--card); border-radius: 1rem; padding: 2rem; text-align: left; }
.box-card .title { font-weight: 600; color: var(--foreground); font-size: 1.05rem; margin-bottom: 0.75rem; }
.box-card .body { font-size: 0.875rem; line-height: 1.6; color: var(--muted-foreground); }

.cta-fullscreen { }
@media (min-width: 1024px) {
  .cta-fullscreen { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; }
}

.cta-bright {
  position: relative;
  overflow: hidden;
  background: var(--foreground);
  color: var(--background);
}
.cta-bright > *:not(.hero-v2-bg) {
  position: relative;
  z-index: 1;
}
.cta-bright .cta-heading-wrap {
  border-bottom: none;
  text-align: center;
  padding-bottom: 0;
}
.cta-bright .cta-body { padding-top: 2.75rem; }
.cta-bright .cta-heading {
  font-size: clamp(2.8rem, 9vw, 7.5rem);
  color: var(--background);
}
.cta-bright .cta-simple .lead { color: rgba(248,245,239,0.7); }

/* ---------- Legal / policy content pages ---------- */
.legal-content { max-width: 42rem; margin: 0 auto; text-align: left; }
.legal-content h2 {
  font-size: 1.25rem;
  color: var(--foreground);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
.legal-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}
.legal-content a { color: var(--foreground); text-decoration: underline; }

/* ---------- Cookie consent banner ---------- */
.cookie-banner {
  position: fixed;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 200;
  max-width: 40rem;
  margin: 0 auto;
  background: var(--foreground);
  color: var(--background);
  border-radius: 1rem;
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}
.cookie-banner p { font-size: 0.9rem; line-height: 1.5; margin: 0; flex: 1 1 16rem; }
.cookie-banner a { color: var(--background); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-banner-actions button {
  font-family: inherit;
  font-size: 0.85rem;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(248,245,239,0.35);
  background: transparent;
  color: var(--background);
  cursor: pointer;
  transition: background var(--ease) 0.2s;
}
.cookie-banner-actions .cookie-accept { background: var(--background); color: var(--foreground); border-color: var(--background); }

/* ---------- Solid button, dark-on-light variant (for CTAs on light-section backgrounds) ---------- */
.btn-solid-inline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--foreground);
  color: var(--background);
  padding: 0.875rem 2.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}
.btn-solid-inline-dark:hover { opacity: 0.85; }

/* ---------- 4-column variant of the centred-callouts row ---------- */
.light-section-callouts-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .light-section-callouts-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .light-section-callouts-4 { grid-template-columns: repeat(4, 1fr); } }
.step-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--primary);
  opacity: 0.35;
  margin-bottom: 1rem;
  display: block;
}

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 46rem; margin: 3rem auto 0; display: flex; flex-direction: column; gap: 1rem; text-align: left; }
.faq-item { background: var(--card); border-radius: 1rem; padding: 1.5rem 1.75rem; }
@media (min-width: 768px) { .faq-item { padding: 1.75rem 2.25rem; } }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--foreground);
  letter-spacing: 0.01em;
}
.faq-item summary .faq-toggle {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.2s var(--ease);
}
.faq-item[open] summary .faq-toggle { transform: rotate(45deg); }
.faq-item p { margin-top: 1rem; font-size: 0.95rem; line-height: 1.7; color: var(--muted-foreground); }
.cookie-banner-actions button:hover { opacity: 0.85; }
