:root {
  --ink: #10151f;
  --ink-soft: #2a3241;
  --paper: #f6f4ee;
  --paper-dim: #ece8de;
  --line: #d9d4c6;
  --gold: #a9824c;
  --gold-deep: #8a6a3a;
  --teal: #2f4d47;
  --white: #ffffff;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --maxw: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1em; color: var(--ink-soft); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 14px;
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover { background: var(--gold-deep); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 244, 238, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.brand-name span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
}

.main-nav a:hover, .main-nav a.active { color: var(--ink); }

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--gold);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.6rem;
  color: var(--ink);
}

/* Hero */
.hero {
  position: relative;
  padding: 110px 0 100px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-copy p.lead {
  font-size: 1.15rem;
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-media {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 60px -20px rgba(16, 21, 31, 0.35);
}

.hero-media img { width: 100%; height: 100%; object-fit: cover; }

.stat-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-dim);
}

.stat-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.stat-item .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--ink);
  font-weight: 600;
}

.stat-item .label {
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

section { padding: 100px 0; }
section.tight { padding: 70px 0; }

.section-head {
  max-width: 620px;
  margin-bottom: 56px;
}

.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 36px 30px;
  border-radius: 3px;
}

.card i.ph {
  font-size: 1.9rem;
  color: var(--gold-deep);
  margin-bottom: 18px;
}

.card h3 { margin-bottom: 10px; }
.card p { margin-bottom: 0; font-size: 0.95rem; }

.split-media {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }

.process-list { counter-reset: step; }
.process-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.process-item:last-child { border-bottom: 1px solid var(--line); }
.process-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold-deep);
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
}
.logo-strip span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink-soft);
  opacity: 0.65;
}

.cta-band {
  background: var(--ink);
  color: var(--paper);
  border-radius: 4px;
  padding: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--paper); margin-bottom: 6px; }
.cta-band p { color: #cfd3da; margin-bottom: 0; }
.cta-band .btn-primary { background: var(--gold); color: var(--ink); }
.cta-band .btn-primary:hover { background: var(--paper); }

/* Footer */
.site-footer {
  background: var(--ink);
  color: #c9cdd6;
  padding: 72px 0 32px;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid #2c3444;
}

.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand img { width: 32px; height: 32px; }
.footer-brand span { font-family: var(--font-display); color: var(--paper); font-size: 1.05rem; }

.footer-col h4 {
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { text-decoration: none; color: #c9cdd6; font-size: 0.92rem; }
.footer-col a:hover { color: var(--gold); }

.footer-col p { color: #c9cdd6; font-size: 0.92rem; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 0.82rem;
  color: #8990a0;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a { color: #8990a0; text-decoration: none; margin-left: 18px; }
.footer-bottom a:hover { color: var(--gold); }

.disclaimer-bar {
  background: var(--paper-dim);
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-align: center;
  padding: 10px 20px;
}

/* Page header (inner pages) */
.page-hero {
  padding: 70px 0 60px;
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow { margin-bottom: 10px; }
.page-hero p.lead { max-width: 60ch; font-size: 1.05rem; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.info-row { display: flex; gap: 16px; margin-bottom: 26px; }
.info-row i.ph { font-size: 1.4rem; color: var(--gold-deep); margin-top: 3px; }
.info-row h4 { margin: 0 0 4px; font-size: 0.95rem; font-family: var(--font-body); font-weight: 600; }
.info-row p { margin: 0; font-size: 0.92rem; }

.map-frame {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 30px;
}
.map-frame iframe { width: 100%; height: 260px; border: 0; display: block; }

form.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}
form.contact-form .field { margin-bottom: 22px; }
form.contact-form input,
form.contact-form select,
form.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
}
form.contact-form textarea { resize: vertical; min-height: 130px; }
form.contact-form input:focus,
form.contact-form select:focus,
form.contact-form textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; }
.checkbox-row input { width: auto; margin-top: 4px; }
.checkbox-row label { font-size: 0.85rem; font-weight: 400; color: var(--ink-soft); }

.form-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 14px;
}
.form-success {
  display: none;
  background: #eef3ef;
  border: 1px solid var(--teal);
  color: var(--teal);
  padding: 16px 18px;
  border-radius: 3px;
  font-size: 0.9rem;
  margin-top: 18px;
}
.form-success.show { display: flex; align-items: center; gap: 10px; }

/* Legal pages */
.legal-content h2 { margin-top: 2.2em; font-size: 1.4rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content ul { color: var(--ink-soft); padding-left: 20px; }
.legal-content li { margin-bottom: 8px; }
.legal-content { max-width: 780px; }
.legal-content strong { color: var(--ink); }
.updated-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  max-width: 620px;
  margin: 0 auto;
  background: var(--ink);
  color: var(--paper);
  padding: 26px 28px;
  border-radius: 6px;
  box-shadow: 0 20px 50px -10px rgba(0,0,0,0.4);
  z-index: 1000;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner p { color: #cfd3da; font-size: 0.88rem; margin-bottom: 18px; }
.cookie-banner .cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-banner .btn-primary { background: var(--gold); color: var(--ink); }
.cookie-banner .btn-ghost { border-color: #454e60; color: var(--paper); }
.cookie-banner .btn-ghost:hover { background: #232a38; }
.cookie-banner a { color: var(--gold); text-decoration: underline; }

.team-card { text-align: left; }
.team-photo {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1/1;
  margin-bottom: 16px;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { margin: 0 0 2px; font-family: var(--font-display); font-size: 1.05rem; }
.team-card .role { font-size: 0.82rem; color: var(--gold-deep); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.team-card p { font-size: 0.9rem; }

.values-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

@media (max-width: 980px) {
  .hero-grid, .grid-2, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .stat-strip .container { grid-template-columns: repeat(2, 1fr); }
  .values-list { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .main-nav { position: fixed; top: 84px; left: 0; right: 0; bottom: 0; background: var(--paper); flex-direction: column; align-items: flex-start; padding: 30px 32px; gap: 24px; display: none; overflow-y: auto; }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .grid-3 { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; padding: 40px 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-bottom a { margin-left: 0; margin-right: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
