/* ─── ROOT & RESET ─────────────────────────────────────────────── */
:root {
  --bg:              #F3F0E8;
  --bg-subtle:       #EAE7DE;
  --bg-dark:         #182618;
  --bg-dark-2:       #1E3020;
  --green:           #2C5B3C;
  --green-mid:       #4A7A5A;
  --green-pale:      #C4D8CC;
  --ochre:           #B07D42;
  --ochre-pale:      #EDD8B8;
  --text:            #1C1C1A;
  --text-muted:      #5A5A56;
  --text-light:      #F3F0E8;
  --text-muted-light:#9CB5A6;
  --border:          #CECCBF;
  --border-dark:     #2A3E2E;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --max-w:     1320px;
  --gutter:    clamp(1.25rem, 4vw, 3rem);
  --sec-pad:   clamp(4rem, 9vw, 9rem);
  --radius:    4px;
  --radius-lg: 8px;
  --ease:      0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ─── UTILITIES ─────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section        { padding: var(--sec-pad) 0; }
.section--dark  { background: var(--bg-dark); color: var(--text-light); }
.section--subtle{ background: var(--bg-subtle); }

.section-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 1.25rem;
}
.section-label--light { color: var(--text-muted-light); }

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
}

.tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--ochre-pale);
  color: var(--ochre);
  border-radius: 2px;
  padding: 0.25em 0.65em;
}
.tag--sm { font-size: 0.62rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid var(--green-pale);
  padding-bottom: 0.1em;
  transition: color var(--ease), border-color var(--ease);
}
.link-arrow:hover { color: var(--text); border-color: var(--text); }
.link-arrow--light { color: var(--green-pale); border-color: var(--border-dark); }
.link-arrow--light:hover { color: var(--text-light); border-color: var(--text-light); }

.btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.85em 1.85em;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
  cursor: pointer;
}
.btn--primary { background: var(--green); color: var(--text-light); border-color: var(--green); }
.btn--primary:hover { background: var(--bg-dark); border-color: var(--bg-dark); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--text); }
/* Soft — all three hero CTA buttons share this uniform style */
.btn--soft {
  background: var(--bg-subtle);
  color: var(--text);
  border-color: var(--border);
}
.btn--soft:hover {
  background: var(--ochre-pale);
  border-color: var(--ochre);
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ─── NAV ───────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--ease);
}
.nav--scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.07); }

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.accent { color: var(--ochre); }

.nav__links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}
.nav__links a {
  text-decoration: none;
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--ease);
}
.nav__links a:hover { color: var(--text); }
/* .nav__cta — Contact link styled as plain nav link (no highlight) */

/* Language toggle + accessibility button */
.nav__utils {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  padding: 0.2em 0.35em;
  border-radius: 2px;
  transition: color var(--ease);
}
.lang-btn--active { color: var(--green); }
.lang-btn:hover   { color: var(--text); }
.lang-sep { color: var(--border); font-size: 0.7rem; user-select: none; }

.a11y-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 0.25rem;
  display: flex;
  align-items: center;
  border-radius: 2px;
  transition: color var(--ease);
}
.a11y-btn:hover,
.a11y-btn--active { color: var(--green); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.nav__toggle--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle--open span:nth-child(2) { opacity: 0; }
.nav__toggle--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .nav__links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 0.75rem 0;
    align-items: flex-start;
  }
  .nav__links--open { display: flex; }
  .nav__links li { width: 100%; }
  .nav__links a { display: block; padding: 0.7rem var(--gutter); font-size: 1rem; }
  .nav__cta { margin: 0.5rem var(--gutter); display: inline-block; }
}

/* ─── ACCESSIBILITY MODE ────────────────────────────────────────── */
/* Toggled by the contrast icon in the nav. Larger text + stronger contrast. */
body.a11y {
  font-size: 20px;
  line-height: 1.8;
  --bg:              #FFFFFF;
  --bg-subtle:       #F2F2F2;
  --bg-dark:         #000000;
  --bg-dark-2:       #111111;
  --green:           #004D1A;
  --green-mid:       #004D1A;
  --green-pale:      #99BBAA;
  --ochre:           #6B3A00;
  --ochre-pale:      #F5DFA0;
  --text:            #000000;
  --text-muted:      #1A1A1A;
  --text-light:      #FFFFFF;
  --text-muted-light:#CCCCCC;
  --border:          #555555;
  --border-dark:     #333333;
}

/* ─── HERO ──────────────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--sec-pad) 0 5rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 2fr 3fr;
  grid-template-rows: auto 1fr auto;
  column-gap: clamp(2rem, 5vw, 5rem);
  align-items: stretch;
}
.hero__eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  grid-column: 1;
  grid-row: 1;
  padding-bottom: 1.5rem;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 11rem);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.03em;
  color: var(--bg-dark);
  text-align: right;
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: end;
}

.hero__body {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 0;
}

.hero__actions {
  grid-column: 1;
  grid-row: 3;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.25rem;
}

@media (max-width: 760px) {
  .hero__inner { display: block; }
  .hero__title { margin-bottom: 2.5rem; margin-top: 1.5rem; text-align: left; }
  .hero__eyebrow { padding-bottom: 0; }
  .hero__actions { padding-top: 1.5rem; }
}
.hero__rule {
  width: 3rem;
  height: 2px;
  background: var(--green);
  margin-bottom: 1.5rem;
}
.hero__tagline {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 0;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: var(--gutter);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  animation: nudge 2.2s ease-in-out infinite;
}
@keyframes nudge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}

/* ─── ABOUT ─────────────────────────────────────────────────────── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}
.about__heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--bg-dark);
}
.about__intro p { color: var(--text-muted); margin-bottom: 1rem; }
.about__intro .link-arrow { margin-top: 0.5rem; }

.about__values {
  list-style: none;
  border-top: 1px solid var(--border);
}
.about__values li {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: border-bottom-color var(--ease), background var(--ease);
  border-left: 3px solid transparent;
  padding-left: 1rem;
  margin-left: -1rem;
}
.about__values li:hover {
  border-left-color: var(--ochre);
  background: color-mix(in srgb, var(--ochre-pale) 40%, transparent);
}
.about__values strong {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  color: var(--green);
}
.about__values p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.5; }

@media (max-width: 760px) { .about__grid { grid-template-columns: 1fr; } }

/* ─── SERVICES ──────────────────────────────────────────────────── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.875rem;
}
.svc-card {
  display: flex;
  flex-direction: row;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease);
}
.svc-card .link-arrow::after {
  content: '';
  position: absolute;
  inset: 0;
}
.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
}
.svc-card__accent {
  width: 110px;
  min-width: 110px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-card__icon {
  width: 48px;
  height: 56px;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.22));
}
.svc-card__accent--1 { background: linear-gradient(160deg, #2C5B3C 0%, #4A8B5F 45%, #B07D42 100%); }
.svc-card__accent--2 { background: linear-gradient(160deg, #182618 0%, #2C5B3C 55%, #9CB5A6 100%); }
.svc-card__accent--3 { background: linear-gradient(160deg, #7B5228 0%, #B87A32 55%, #3D6B4A 100%); }
.svc-card__accent--4 { background: linear-gradient(160deg, #1A1A28 0%, #2C3C5B 55%, #4A6A8B 100%); }
.svc-card__body {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.svc-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.2;
}
.svc-card p {
  font-size: 0.875rem;
  color: var(--text-muted-light);
  line-height: 1.65;
  flex: 1;
}
@media (max-width: 700px) { .services__grid { grid-template-columns: 1fr; } }
.svc-team {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
  text-align: right;
}
.svc-team__link {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.svc-team__link:hover { color: var(--bg-dark); }
@media (max-width: 540px) {
  .svc-card { flex-direction: column; }
  .svc-card__accent { width: 100%; min-width: 0; height: 80px; }
  .svc-card__icon { width: 40px; height: 40px; }
}

/* ─── CASE STUDIES ──────────────────────────────────────────────── */
.carousel-wrap {
  position: relative;
}

/* Looping centred carousel: one column visible, faded cards either side */
.cards-grid {
  display: grid;
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;
  grid-auto-columns: calc(36% - 0.875rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 0.875rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  padding-bottom: 0.5rem;
  /* Permanent fade on both sides — loop means there's always a card either side */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 14%, black 86%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, black 14%, black 86%, transparent 100%);
}
.cards-grid:active { cursor: grabbing; }
.cards-grid::-webkit-scrollbar { display: none; }

.carousel-controls {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.carousel-btn {
  width: 2.25rem;
  height: 2.25rem;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  background: var(--bg);
  color: var(--text);
  font-size: 0.875rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease), border-color var(--ease), opacity var(--ease);
  flex-shrink: 0;
}
.carousel-btn:hover:not(:disabled) {
  background: var(--ochre-pale);
  border-color: var(--ochre);
}
.carousel-btn:disabled { opacity: 0.25; cursor: default; }

.topic-select {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.45em 2em 0.45em 0.75em;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%235A5A56' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.6em center;
  background-size: 10px 6px;
  transition: border-color var(--ease), color var(--ease);
}
.topic-select:hover { border-color: var(--text-muted); color: var(--text); }
.topic-select:focus { outline: 2px solid var(--green-pale); outline-offset: 2px; border-color: var(--green); }

.case-card {
  min-width: 0;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease);
}
.case-card .link-arrow::after {
  content: '';
  position: absolute;
  inset: 0;
}
.case-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}
.case-card--spacer {
  visibility: hidden;
  pointer-events: none;
  border: none !important;
  box-shadow: none !important;
}
.case-card__img {
  width: 100%;
  min-width: 0;
  aspect-ratio: 840 / 320;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  position: relative;
}
.case-card__img--1 { background: linear-gradient(160deg, #2C5B3C 0%, #4A8B5F 45%, #B07D42 100%); }
.case-card__img--2 { background: linear-gradient(160deg, #182618 0%, #2C5B3C 55%, #9CB5A6 100%); }
.case-card__img--3 { background: linear-gradient(160deg, #B07D42 0%, #EDD8B8 55%, #4A7A5A 100%); }

.case-card__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35em 1.25rem;
  background: var(--ochre-pale);
  color: var(--ochre);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.case-card__body {
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.case-card__body h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}
.case-card__body h3 a {
  text-decoration: none;
  color: var(--text);
  transition: color var(--ease);
}
.case-card__body h3 a:hover { color: var(--green); }
.case-card__body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
}
.case-card__footer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}
.case-card__via {
  font-size: 0.65rem;
  color: var(--border);
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.via-link {
  color: inherit;
  text-decoration: none;
}
.via-link:hover {
  text-decoration: underline;
}

@media (max-width: 700px) {
  .cards-grid { grid-auto-columns: calc(82% - 0.875rem); }
}

/* ─── BLOG ──────────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;
  grid-auto-columns: calc(36% - 0.875rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 0.875rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  padding-bottom: 0.5rem;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 14%, black 86%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, black 14%, black 86%, transparent 100%);
}
.blog-grid:active { cursor: grabbing; }
.blog-grid::-webkit-scrollbar { display: none; }
.blog-card {
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease);
}
.blog-card .link-arrow::after {
  content: '';
  position: absolute;
  inset: 0;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}
.blog-card__img {
  width: 100%;
  min-width: 0;
  aspect-ratio: 840 / 320;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  position: relative;
}
.blog-card__img--1 { background: linear-gradient(160deg, #2C5B3C 0%, #4A8B5F 45%, #B07D42 100%); }
.blog-card__img--2 { background: linear-gradient(160deg, #4A3520 0%, #B07D42 65%, #EDD8B8 100%); }
.blog-card__img--3 { background: linear-gradient(160deg, #182618 0%, #2C5B3C 55%, #9CB5A6 100%); }

.card-credit {
  position: absolute;
  bottom: 0.35rem;
  right: 0.5rem;
  font-size: 0.375rem;
  color: rgba(255,255,255,0.72);
  font-style: normal;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  pointer-events: none;
  line-height: 1;
}

.blog-card__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35em 1.25rem;
  background: var(--ochre-pale);
  color: var(--ochre);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.blog-card__body {
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.blog-card__meta time {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}
.blog-card h3 a {
  text-decoration: none;
  color: var(--text);
  transition: color var(--ease);
}
.blog-card h3 a:hover { color: var(--green); }
.blog-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
}
.blog-card .link-arrow { margin-top: auto; padding-top: 0.5rem; }
.blog-card--spacer {
  visibility: hidden;
  pointer-events: none;
  border: none !important;
  box-shadow: none !important;
}
.blog-card__footer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}
.blog-card__via {
  font-size: 0.65rem;
  color: var(--border);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

@media (max-width: 700px) { .blog-grid { grid-auto-columns: calc(82% - 0.875rem); } }

/* ─── FOOTER ────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: var(--sec-pad) 0 3rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  margin-bottom: 4rem;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.footer__brand p {
  font-size: 0.875rem;
  color: var(--text-muted-light);
  line-height: 1.6;
  max-width: 22rem;
}
.footer__contact h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.footer__contact p {
  font-size: 0.875rem;
  color: var(--text-muted-light);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.footer__email {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--green-pale);
  text-decoration: none;
  border-bottom: 1px solid var(--border-dark);
  padding-bottom: 0.1em;
  transition: color var(--ease);
}
.footer__email:hover { color: var(--text-light); }

.footer__nav ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer__nav a {
  font-size: 0.875rem;
  color: var(--text-muted-light);
  text-decoration: none;
  transition: color var(--ease);
}
.footer__nav a:hover { color: var(--text-light); }

.footer__bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--text-muted-light);
}

@media (max-width: 760px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
}

/* ─── POLICY PAGES ──────────────────────────────────────────────── */
.policy-body h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 2.5rem 0 0.75rem;
  color: var(--bg-dark);
}
.policy-body p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.policy-body code {
  font-size: 0.85em;
  background: var(--bg-subtle);
  padding: 0.15em 0.4em;
  border-radius: 3px;
  color: var(--green);
}
.policy-body a { color: var(--green); }
.footer__bottom a { color: var(--text-muted-light); text-decoration: none; }
.footer__bottom a:hover { color: var(--text-light); }
