:root {
  --bg: #0c0c0e;
  --bg-2: #141418;
  --bg-3: #1c1c22;
  --surface: #1c1c22;
  --surface-2: #25252c;
  --copper: #d4a55a;
  --copper-light: #dfb676;
  --copper-bright: #ecc788;
  --cream: #f5ead2;
  --cream-muted: #d8ccae;
  --text: #f5ead2;
  --text-muted: #aca48f;
  --text-dim: #726d5e;
  --line: rgba(212, 165, 90, 0.18);
  --line-strong: rgba(212, 165, 90, 0.4);

  --serif: "Cormorant Garamond", "Georgia", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1180px;
  --radius: 4px;
  --radius-lg: 8px;

  --transition: 200ms ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(201, 164, 92, 0.10), transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(230, 198, 133, 0.06), transparent 60%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

a:hover {
  color: var(--copper-bright);
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--cream);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

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

.eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 0.75rem;
}

.eyebrow.center,
.section-lead.center,
h2.center {
  text-align: center;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 3rem;
}

.muted {
  color: var(--text-muted);
  font-weight: 400;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 12, 14, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo {
  height: 44px;
  width: auto;
}

.logo-sm {
  height: 32px;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-list a {
  color: var(--cream);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding: 0.5rem 0;
}

.nav-list a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--copper-light);
  transition: width var(--transition);
}

.nav-list a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--copper);
  color: var(--bg) !important;
  padding: 0.55rem 1.25rem !important;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}

.nav-cta:hover {
  background: var(--copper-bright);
  transform: translateY(-1px);
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: transform var(--transition), opacity var(--transition);
}

/* HERO */
.hero {
  position: relative;
  padding: 7rem 0 6rem;
  overflow: hidden;
}

.hero-inner {
  max-width: 820px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  background: linear-gradient(135deg, var(--cream) 0%, var(--copper-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-glow {
  position: absolute;
  top: -180px;
  right: -120px;
  width: 760px;
  height: 760px;
  background:
    radial-gradient(circle, rgba(212, 165, 90, 0.22) 0%, transparent 60%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600'><g stroke='%23d4a55a' stroke-opacity='0.45' fill='%23ecc788' fill-opacity='0.8'><line x1='160' y1='110' x2='280' y2='180' stroke-width='0.7'/><line x1='280' y1='180' x2='420' y2='140' stroke-width='0.7'/><line x1='280' y1='180' x2='340' y2='300' stroke-width='0.7'/><line x1='420' y1='140' x2='510' y2='220' stroke-width='0.7'/><line x1='340' y1='300' x2='450' y2='360' stroke-width='0.7'/><line x1='450' y1='360' x2='510' y2='220' stroke-width='0.7'/><line x1='160' y1='110' x2='220' y2='250' stroke-width='0.7'/><line x1='220' y1='250' x2='340' y2='300' stroke-width='0.7'/><line x1='220' y1='250' x2='130' y2='340' stroke-width='0.7'/><line x1='130' y1='340' x2='340' y2='300' stroke-width='0.7'/><line x1='510' y1='220' x2='560' y2='350' stroke-width='0.7'/><line x1='450' y1='360' x2='560' y2='350' stroke-width='0.7'/><line x1='280' y1='180' x2='130' y2='340' stroke-width='0.7'/><line x1='130' y1='340' x2='220' y2='450' stroke-width='0.7'/><line x1='340' y1='300' x2='220' y2='450' stroke-width='0.6'/><line x1='560' y1='350' x2='480' y2='470' stroke-width='0.7'/><line x1='450' y1='360' x2='480' y2='470' stroke-width='0.7'/><line x1='420' y1='140' x2='550' y2='100' stroke-width='0.6'/><circle cx='160' cy='110' r='2.5'/><circle cx='280' cy='180' r='3'/><circle cx='420' cy='140' r='2.5'/><circle cx='510' cy='220' r='2.5'/><circle cx='340' cy='300' r='3.5'/><circle cx='450' cy='360' r='2.5'/><circle cx='220' cy='250' r='2.5'/><circle cx='130' cy='340' r='2'/><circle cx='560' cy='350' r='2'/><circle cx='220' cy='450' r='2.5'/><circle cx='480' cy='470' r='2'/><circle cx='550' cy='100' r='2'/></g></svg>");
  background-size: cover;
  background-position: center;
  opacity: 0.85;
  z-index: 1;
  pointer-events: none;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--copper);
  color: var(--bg);
}

.btn-primary:hover {
  background: var(--copper-bright);
  color: var(--bg);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(184, 115, 51, 0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--line-strong);
}

.btn-ghost:hover {
  border-color: var(--copper-light);
  color: var(--copper-bright);
}

.btn-block {
  width: 100%;
}

/* SECTIONS */
.section {
  padding: 6rem 0;
  border-top: 1px solid var(--line);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* OVER */
.col-portrait {
  position: relative;
}

.portrait {
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  display: block;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px var(--line-strong);
}

.col-portrait::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at 30% 30%, rgba(184, 115, 51, 0.15), transparent 70%);
  border-radius: 12px;
  z-index: -1;
}

.credentials {
  list-style: none;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.credentials li {
  padding: 0.5rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.credentials strong {
  color: var(--cream);
  font-weight: 600;
  margin-right: 0.5rem;
}

/* EXPERTISE CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.card {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-3) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.card-icon {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--copper);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
  display: inline-block;
  padding-right: 1.5rem;
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* TIMELINE */
.timeline {
  max-width: 820px;
  margin: 3rem auto 0;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--line-strong);
}

.tl-item {
  display: flex;
  gap: 2rem;
  padding-bottom: 2.5rem;
  position: relative;
}

.tl-item:last-child {
  padding-bottom: 0;
}

.tl-marker {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--copper);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 1px var(--copper);
  flex-shrink: 0;
  margin-top: 6px;
  position: relative;
  z-index: 1;
}

.tl-body {
  flex: 1;
}

.tl-period {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 0.4rem;
}

.tl-body h3 {
  margin-bottom: 0.5rem;
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
}

.tl-body p:not(.tl-period) {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* TRUST STRIP */
.trust-strip {
  padding: 3rem 0;
  border-top: 1px solid var(--line);
}

.trust-label {
  text-align: center;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 2rem;
}

.trust-logos {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3rem 4rem;
}

.trust-logos li {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
}

.trust-logos img {
  max-height: 44px;
  width: auto;
  max-width: 180px;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity var(--transition), filter var(--transition);
}

.trust-logos li:hover img {
  opacity: 1;
  filter: brightness(0) invert(1) sepia(0.4) saturate(2.5) hue-rotate(-15deg);
}

@media (max-width: 640px) {
  .trust-logos {
    gap: 2rem 2.5rem;
  }
  .trust-logos li {
    height: 36px;
  }
  .trust-logos img {
    max-height: 36px;
    max-width: 140px;
  }
}

/* CONTACT */
.section-contact {
  padding-bottom: 8rem;
}

.contact-centered {
  text-align: center;
  max-width: 760px;
}

.contact-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.contact-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.contact-cta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.5rem 1.25rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.contact-cta:hover {
  transform: translateY(-3px);
  border-color: var(--copper);
  background: var(--bg-3);
}

.contact-cta-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.contact-cta-value {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--cream);
  word-break: break-word;
}

.contact-cta:hover .contact-cta-value {
  color: var(--copper-bright);
}

.contact-location {
  color: var(--text-dim);
  font-size: 0.9rem;
  font-style: italic;
}

@media (max-width: 720px) {
  .contact-cta-grid {
    grid-template-columns: 1fr;
  }
  .contact-cta-value {
    font-size: 1.1rem;
  }
}

/* FOOTER */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.footer-meta {
  text-align: right;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer-meta a {
  color: var(--text-muted);
}

.footer-meta a:hover {
  color: var(--copper-light);
}

.footer-meta p {
  margin-bottom: 0.25rem;
}

/* LEGAL PAGES (privacy, cookies) */
.legal-section {
  padding-top: 4rem;
}

.legal-container {
  max-width: 760px;
}

.legal-container h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 0.75rem;
}

.legal-meta {
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-bottom: 2.5rem;
}

.legal-container h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--copper-light);
}

.legal-subhead {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.legal-list {
  margin: 0.75rem 0 1rem 1.25rem;
  color: var(--text-muted);
}

.legal-list li {
  padding: 0.25rem 0;
}

.legal-list strong {
  color: var(--cream);
}

.legal-note {
  font-size: 0.9rem;
  color: var(--text-dim);
  font-style: italic;
  margin-top: 0.5rem;
}

.legal-back {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--text-muted);
  background: var(--bg-2);
}

.badge-required {
  background: rgba(184, 115, 51, 0.15);
  color: var(--copper-bright);
  border-color: var(--copper);
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.9rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cookie-table th,
.cookie-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.cookie-table th {
  background: var(--bg-3);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--cream);
}

.cookie-table td {
  color: var(--text-muted);
}

.cookie-table tr:last-child td {
  border-bottom: 0;
}

.cookie-table code {
  font-family: "Consolas", "Monaco", monospace;
  font-size: 0.85em;
  background: var(--bg);
  padding: 0.1em 0.4em;
  border-radius: 3px;
  color: var(--copper-light);
}

.footer-links {
  margin-top: 0.5rem;
}

.footer-links a {
  color: var(--text-muted);
  margin: 0 0.25rem;
}

.footer-links a:hover {
  color: var(--copper-light);
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 720px;
  margin: 0 auto;
  z-index: 1000;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 220ms ease, transform 220ms ease;
}

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

.cookie-banner-inner {
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cookie-banner-text h3 {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--cream);
}

.cookie-banner-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.55;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-banner-actions .btn {
  padding: 0.6rem 1.1rem;
  font-size: 0.88rem;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(8, 8, 10, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 200ms ease;
}

.cookie-modal-overlay.is-visible {
  opacity: 1;
}

.cookie-modal {
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.cookie-modal h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--cream);
}

.cookie-modal-lead {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.cookie-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: 0;
  color: var(--text-muted);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}

.cookie-modal-close:hover {
  color: var(--cream);
  background: var(--bg-3);
}

.cookie-option {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.cookie-option:last-of-type {
  border-bottom: 0;
}

.cookie-option-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.cookie-option-head strong {
  color: var(--cream);
  font-weight: 600;
}

.cookie-option-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.15rem 0.5rem;
  margin-left: 0.5rem;
  border-radius: 999px;
  background: rgba(184, 115, 51, 0.15);
  color: var(--copper-bright);
  border: 1px solid var(--copper);
}

.cookie-option p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 0;
  padding-left: calc(40px + 1rem);
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  cursor: pointer;
  background: var(--bg-3);
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  transition: background var(--transition), border-color var(--transition);
}

.cookie-toggle-slider::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  left: 2px;
  top: 2px;
  background: var(--text-muted);
  border-radius: 50%;
  transition: transform var(--transition), background var(--transition);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--copper);
  border-color: var(--copper);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(18px);
  background: var(--cream);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-modal-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

@media (max-width: 560px) {
  .cookie-banner {
    bottom: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
  }

  .cookie-banner-inner {
    padding: 1.25rem;
  }

  .cookie-banner-actions {
    flex-direction: column-reverse;
  }

  .cookie-banner-actions .btn {
    width: 100%;
  }

  .cookie-option p {
    padding-left: 0;
    margin-top: 0.5rem;
  }

  .cookie-modal {
    padding: 1.5rem;
  }

  .cookie-modal-actions {
    flex-direction: column-reverse;
  }

  .cookie-modal-actions .btn {
    width: 100%;
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .col-portrait {
    max-width: 360px;
    margin: 0 auto;
  }

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

  .hero {
    padding: 4rem 0 4rem;
  }

  .section {
    padding: 4rem 0;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-meta {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .nav-toggle {
    display: flex;
  }

  .nav-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    padding: 1rem 1.5rem;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
  }

  .nav.is-open .nav-list {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-list li {
    width: 100%;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-list li:last-child a {
    border-bottom: 0;
  }

  .nav-cta {
    text-align: center;
    margin-top: 0.5rem;
  }

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

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    text-align: center;
    justify-content: center;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }
}
