/*
Theme Name: Kancelaria Tłumaczeń Prawnych
Theme URI: https://oryva.pl
Author: Oryva
Author URI: https://oryva.pl
Description: Custom one-page theme for a sworn-translator practice. Content editable via ACF fields. Ported from the Oryva static preview (tlumacz-przysiegly).
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 8.0
Text Domain: tlumaczenia
*/

:root {
  --paper:      #F2EFE6;
  --paper-warm: #E5DFCD;
  --paper-deep: #D2C9AA;

  --teal:       #2B4A66;
  --teal-deep:  #14283A;
  --teal-soft:  rgba(43, 74, 102, 0.08);

  --gold:       #A78751;
  --gold-soft:  #CFB283;
  --gold-wash:  rgba(167, 135, 81, 0.14);

  --ink:        #1A222C;
  --ink-soft:   #3A4452;
  --ink-mute:   #7C8694;
  --ink-faint:  rgba(26, 34, 44, 0.12);

  --f-display: 'Libre Caslon Text', Georgia, serif;
  --f-sans:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max:   1280px;
  --pad-x: clamp(20px, 5vw, 64px);
  --rule:      1px solid rgba(31, 42, 46, 0.14);
  --rule-soft: 1px solid rgba(31, 42, 46, 0.07);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
}
::selection { background: var(--gold-soft); color: var(--teal-deep); }
:focus-visible {
  outline: 1.5px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

h1, h2, h3 { text-wrap: balance; font-family: var(--f-display); font-weight: 400; }
p { text-wrap: pretty; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: 16.5px;
  line-height: 1.65;
  font-weight: 300;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ── Layout primitives ─────────────────────────────────────── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad-x); }
.section { padding: clamp(60px, 9vw, 120px) 0; position: relative; }
.section--paper-warm { background: var(--paper-warm); }
.section--teal { background: var(--teal); color: var(--paper); }
.section--teal h2, .section--teal h3 { color: var(--paper); }

.label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.label--gold { color: var(--gold); }
.label--paper { color: var(--gold-soft); }

.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(24px, 6vw, 80px);
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.section-head__intro p {
  color: var(--ink-soft);
  font-size: 17px;
  max-width: 56ch;
}
.section--teal .section-head__intro p { color: var(--paper); opacity: 0.85; }
.section-head h2 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.section-head h2 em {
  font-style: italic;
  color: var(--gold);
}
.section-head .label { margin-bottom: 14px; display: block; }

@media (max-width: 820px) {
  .section-head { grid-template-columns: 1fr; gap: 18px; align-items: start; }
}

/* ── Topbar (desktop only) ────────────────────────────────── */
.topbar {
  background: var(--teal-deep);
  color: var(--paper);
  font-size: 12.5px;
  letter-spacing: 0.04em;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 38px;
}
.topbar__left, .topbar__right { display: flex; gap: 28px; align-items: center; }
.topbar__right a:hover { color: var(--gold-soft); }
.topbar__tp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.topbar__tp::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
}
@media (max-width: 820px) { .topbar { display: none; } }

/* ── Site header (single bar, sticky) ─────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(246, 241, 230, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: var(--rule-soft);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.brand {
  display: flex;
  flex-direction: column;
  gap: 5px;
  line-height: 1;
}
.brand__logo {
  height: 30px;
  width: auto;
  display: block;
}
.brand small {
  display: block;
  font-family: var(--f-sans);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding-left: 3px;
}
@media (max-width: 480px) {
  .brand__logo { height: 26px; }
  .brand small { font-size: 8.5px; letter-spacing: 0.1em; }
}
.nav-desktop {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 400;
}
.nav-desktop a {
  position: relative;
  padding: 6px 0;
  color: var(--ink-soft);
  transition: color .2s;
}
.nav-desktop a:hover { color: var(--teal); }
.nav-desktop a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--gold); transform: scaleX(0);
  transform-origin: left; transition: transform .25s ease;
}
.nav-desktop a:hover::after { transform: scaleX(1); }

.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--teal);
  color: var(--paper);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: 999px;
  border: 1px solid var(--teal);
  transition: all .25s;
}
.cta:hover { background: var(--teal-deep); border-color: var(--teal-deep); }
.cta--ghost {
  background: transparent;
  color: var(--teal);
  border-color: rgba(20, 71, 75, 0.4);
}
.cta--ghost:hover { background: var(--teal); color: var(--paper); border-color: var(--teal); }
.cta--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--teal-deep);
}
.cta--gold:hover { background: #A4763E; border-color: #A4763E; }

.cta svg { width: 14px; height: 14px; }

.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--teal);
  color: var(--paper);
}
.menu-toggle span {
  display: block; width: 16px; height: 1.5px;
  background: currentColor; position: relative;
}
.menu-toggle span::before, .menu-toggle span::after {
  content: ''; position: absolute; left: 0; width: 100%; height: 1.5px;
  background: currentColor;
}
.menu-toggle span::before { top: -5px; }
.menu-toggle span::after  { top:  5px; }

@media (max-width: 820px) {
  .nav-desktop, .site-header .cta { display: none; }
  .menu-toggle { display: inline-flex; }
}

.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 300;
  padding: 96px var(--pad-x) 40px;
  transform: translateY(-100%);
  transition: transform .35s ease;
  display: flex; flex-direction: column; gap: 8px;
}
.nav-mobile.open { transform: translateY(0); }
.nav-mobile a {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--teal-deep);
  padding: 10px 0;
  border-bottom: var(--rule-soft);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile .cta { margin-top: 28px; align-self: flex-start; }
.nav-mobile__close {
  position: absolute; top: 18px; right: var(--pad-x);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: flex; align-items: center; justify-content: center;
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  padding: clamp(32px, 5vw, 56px) 0 clamp(40px, 5vw, 64px);
  position: relative;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: end;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px 6px 6px;
  border: 1px solid var(--ink-faint);
  border-radius: 999px;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 18px;
  background: rgba(255,255,255,0.4);
}
.hero__eyebrow .seal {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--teal-deep);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 11px;
  font-weight: 500;
}
.hero h1 {
  font-size: clamp(28px, 4.4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 18px;
  color: var(--teal-deep);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero__lead {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 52ch;
  margin-bottom: 26px;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__side {
  border-left: var(--rule);
  padding-left: clamp(24px, 4vw, 56px);
}
.hero__stats {
  display: grid;
  gap: 22px;
}
.hero__stat .num {
  font-family: var(--f-display);
  font-size: 40px;
  line-height: 1;
  font-weight: 400;
  color: var(--teal);
  letter-spacing: -0.02em;
}
.hero__stat .num em {
  font-style: italic;
  color: var(--gold);
}
.hero__stat .lbl {
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.4;
  max-width: 26ch;
}

@media (max-width: 820px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__side { border-left: none; border-top: var(--rule); padding: 32px 0 0; }
  .hero__stats { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero__stat .num { font-size: 38px; }
}

/* ── Trust strip ───────────────────────────────────────────── */
.trust {
  border-top: var(--rule);
  border-bottom: var(--rule);
  background: var(--paper-warm);
  padding: 22px 0;
  font-size: 13px;
  color: var(--ink-soft);
}
.trust__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 36px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.trust__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.04em;
}
.trust__item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

/* ── Dla kogo (personas) ──────────────────────────────────── */
.personas {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ink-faint);
  border: 1px solid var(--ink-faint);
}
.persona {
  background: var(--paper);
  padding: 36px 28px;
  display: flex; flex-direction: column;
  gap: 14px;
  transition: background .2s;
}
.persona:hover { background: var(--paper-warm); }
.persona__icon {
  width: 38px; height: 38px;
  color: var(--teal);
  margin-bottom: 6px;
}
.persona h3 {
  font-size: 22px;
  letter-spacing: -0.005em;
  color: var(--teal-deep);
}
.persona p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.persona__tags {
  margin-top: auto;
  padding-top: 18px;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.persona__tag {
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  background: var(--teal-soft);
  color: var(--teal);
  border-radius: 999px;
}
@media (max-width: 980px) { .personas { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .personas { grid-template-columns: 1fr; } }

/* ── Usługi (services) ─────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink-faint);
  border: 1px solid var(--ink-faint);
}
.service {
  background: var(--paper);
  padding: 40px 32px 36px;
  position: relative;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 240px;
  transition: background .2s;
}
.service:hover { background: var(--paper-warm); }
.service__index {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.service__name {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--teal-deep);
}
.service__desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-top: auto;
}
@media (max-width: 980px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .services-grid { grid-template-columns: 1fr; } }

/* ── Proces ────────────────────────────────────────────────── */
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 56px);
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 32px;
  border-top: 2px solid var(--gold-soft);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -22px;
  left: 0;
  background: var(--paper);
  color: var(--gold);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  padding-right: 14px;
  letter-spacing: 0.04em;
}
.section--teal .step::before { background: var(--teal); }
.step h3 {
  font-size: 26px;
  margin-bottom: 14px;
  color: var(--paper);
}
.step p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--paper);
  opacity: 0.82;
}
@media (max-width: 820px) { .process { grid-template-columns: 1fr; gap: 40px; } }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq {
  max-width: 880px;
  margin: 0 auto;
  border-top: var(--rule);
}
.faq__item { border-bottom: var(--rule); }
.faq__q {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  font-family: var(--f-display);
  font-size: clamp(19px, 2.2vw, 23px);
  font-weight: 400;
  color: var(--teal-deep);
  line-height: 1.3;
}
.faq__q:hover { color: var(--teal); }
.faq__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold-wash);
  color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: transform .25s;
  font-family: var(--f-sans);
  font-weight: 400;
}
.faq__item[open] .faq__icon { transform: rotate(45deg); }
.faq__a {
  padding: 0 0 28px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 70ch;
}

/* ── Cennik ────────────────────────────────────────────────── */
.cennik-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.tier {
  background: var(--paper);
  border: 1px solid var(--ink-faint);
  padding: 36px 32px 32px;
  display: flex; flex-direction: column;
  gap: 18px;
  position: relative;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.tier:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -28px rgba(20, 71, 75, 0.25);
  border-color: var(--teal-soft);
}
.tier--featured {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--paper);
}
.tier--featured .tier__name,
.tier--featured .tier__price,
.tier--featured .tier__list li { color: var(--paper); }
.tier--featured .tier__sub { color: var(--gold-soft); }
.tier--featured .tier__badge {
  background: var(--gold);
  color: var(--teal-deep);
}
.tier__badge {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--teal);
  color: var(--paper);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 500;
}
.tier__name {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--teal-deep);
}
.tier__price {
  font-family: var(--f-display);
  font-size: 38px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--teal-deep);
}
.tier__price span { font-size: 14px; color: var(--ink-mute); font-family: var(--f-sans); margin-left: 4px; }
.tier__sub { font-size: 13px; color: var(--ink-mute); }
.tier__list {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.tier:not(.tier--featured) .tier__list { border-top-color: var(--ink-faint); }
.tier__list li {
  position: relative;
  padding-left: 22px;
}
.tier__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 12px; height: 7px;
  border-left: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(-45deg);
}
.tier .cta { margin-top: auto; align-self: flex-start; }

.cennik__disclaimer {
  margin-top: 32px;
  font-size: 13px;
  color: var(--ink-mute);
  text-align: center;
  letter-spacing: 0.02em;
}
@media (max-width: 980px) { .cennik-grid { grid-template-columns: 1fr; } }

/* ── Doradca (founder) ────────────────────────────────────── */
.doradca {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.doradca__seal {
  aspect-ratio: 3 / 4;
  background: var(--paper-warm);
  border: 1px solid var(--ink-faint);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
}
.doradca__seal-mark {
  width: 70%;
  height: auto;
  color: var(--teal);
  opacity: 0.85;
}
.doradca h3 {
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.15;
  color: var(--teal-deep);
  margin-bottom: 8px;
}
.doradca__role {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  font-weight: 500;
}
.doradca__bio {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 58ch;
  margin-bottom: 24px;
}
.doradca__credentials {
  display: flex; flex-direction: column; gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
  padding-top: 24px;
  border-top: var(--rule);
}
.doradca__credentials strong {
  color: var(--teal-deep);
  font-weight: 500;
  letter-spacing: 0.02em;
  font-family: var(--f-sans);
}
@media (max-width: 820px) {
  .doradca { grid-template-columns: 1fr; }
  .doradca__seal { aspect-ratio: 4 / 3; max-width: 280px; }
}

/* ── Opinie ────────────────────────────────────────────────── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi {
  background: var(--paper);
  border: 1px solid var(--ink-faint);
  padding: 36px 30px 30px;
  display: flex; flex-direction: column;
  gap: 18px;
  position: relative;
}
.testi::before {
  content: '"';
  font-family: var(--f-display);
  font-style: italic;
  font-size: 80px;
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.4;
  position: absolute;
  top: 18px; right: 22px;
}
.testi__quote {
  font-family: var(--f-display);
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: var(--teal-deep);
}
.testi__meta {
  margin-top: auto;
  padding-top: 18px;
  border-top: var(--rule-soft);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
  color: var(--ink-mute);
}
.testi__author { color: var(--teal); font-weight: 500; }
@media (max-width: 980px) { .testimonials { grid-template-columns: 1fr; } }

/* ── Kontakt ───────────────────────────────────────────────── */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.kontakt-form {
  display: grid;
  gap: 18px;
}
.kontakt-form .field { display: flex; flex-direction: column; gap: 8px; }
.kontakt-form label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.kontakt-form input,
.kontakt-form textarea,
.kontakt-form select {
  font: inherit;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--ink-faint);
  border-radius: 4px;
  color: var(--ink);
  transition: border-color .2s, background .2s;
}
.kontakt-form input:focus,
.kontakt-form textarea:focus,
.kontakt-form select:focus {
  outline: none;
  border-color: var(--teal);
  background: #fff;
}
.kontakt-form textarea { min-height: 110px; resize: vertical; }
.kontakt-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.kontakt-form button { justify-self: start; margin-top: 6px; }
.kontakt-form__note {
  font-size: 12.5px;
  color: var(--ink-mute);
  line-height: 1.55;
}

.kontakt-info {
  background: var(--paper);
  border: 1px solid var(--ink-faint);
  padding: 32px 30px;
  display: flex; flex-direction: column; gap: 22px;
}
.kontakt-info__block {
  display: flex; flex-direction: column; gap: 4px;
  font-size: 15px;
  color: var(--ink-soft);
}
.kontakt-info__block .lbl {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 4px;
}
.kontakt-info__block a { color: var(--teal); transition: color .15s; }
.kontakt-info__block a:hover { color: var(--gold); }
.kontakt-map {
  margin-top: 8px;
  display: block;
  aspect-ratio: 4 / 3;
  background: var(--paper-warm);
  border: 1px solid var(--ink-faint);
  position: relative;
  overflow: hidden;
}
.kontakt-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.2) sepia(0.05); }

@media (max-width: 820px) {
  .kontakt-grid { grid-template-columns: 1fr; }
  .kontakt-form .row { grid-template-columns: 1fr; }
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--teal-deep);
  color: var(--paper);
  padding: 56px 0 28px;
  font-size: 14px;
}
.footer a { color: var(--gold-soft); transition: color .15s; }
.footer a:hover { color: var(--paper); }
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer__logo {
  height: 88px;
  width: auto;
  display: block;
  margin-bottom: 18px;
}
.footer__tag {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  max-width: 38ch;
}
.footer__col h4 {
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer__bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}
@media (max-width: 820px) {
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
}

/* ── Reveal animation ─────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
