@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --black: #0a0907;
  --ink: #1a1510;
  --muted: #6b6056;
  --warm-muted: #8a7a6a;
  --paper: #faf8f4;
  --panel: #ffffff;
  --cream: #f3ead8;
  --cream2: #ede0c4;
  --gold: #a97c2f;
  --gold2: #d4a84b;
  --gold3: #f0cc7a;
  --line: #e6dbc8;
  --line2: #d8ccb4;
  --warm-dark: #13110d;
  --warm-dark2: #1e1a13;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow-sm: 0 4px 20px rgba(30,20,8,.08);
  --shadow: 0 12px 48px rgba(30,20,8,.12);
  --shadow-lg: 0 24px 80px rgba(30,20,8,.16);
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', ui-sans-serif, system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; }

/* ─── Layout ─── */
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.narrow { max-width: 860px; }
.narrow-sm { max-width: 680px; }
.muted { color: var(--muted); }

/* ─── Topbar ─── */
.topbar {
  background: var(--warm-dark);
  color: #c8b98a;
  font-size: 12px;
  font-weight: 500;
  border-bottom: 1px solid rgba(212,168,75,.18);
  letter-spacing: .02em;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 9px 0;
}
.topbar .hide-sm { white-space: nowrap; }

/* ─── Header & Nav ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,248,244,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(169,124,47,.2);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}
.brand img { width: 200px; }
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
}
.nav a {
  padding: 7px 14px;
  border-radius: 999px;
  color: var(--ink);
  opacity: .75;
  transition: opacity .2s, background .2s;
}
.nav a:hover, .nav a[aria-current="page"] {
  opacity: 1;
  background: rgba(169,124,47,.1);
  color: var(--gold);
}
.nav-cta {
  padding: 8px 18px !important;
  background: var(--gold) !important;
  color: #fff !important;
  opacity: 1 !important;
  font-weight: 600;
  transition: background .2s !important;
}
.nav-cta:hover { background: #c09035 !important; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line2);
  border-radius: 999px;
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  color: var(--ink);
}

/* ─── Typography ─── */
.eyebrow, .kicker {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.dark .kicker, .dark .eyebrow { color: var(--gold3); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; margin: 0 0 1rem; line-height: 1.08; letter-spacing: -.02em; }
h1 { font-size: clamp(44px, 7vw, 84px); line-height: .97; margin-bottom: 1.2rem; }
h2 { font-size: clamp(30px, 4.5vw, 54px); }
h3 { font-size: 22px; line-height: 1.2; }

.lead { font-size: 19px; color: #c8b794; line-height: 1.65; max-width: 680px; }
.lead-dark { font-size: 18px; color: var(--muted); line-height: 1.65; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 13px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--gold); color: #fff; box-shadow: 0 6px 24px rgba(169,124,47,.35); }
.btn-primary:hover { background: #be8f37; box-shadow: 0 8px 30px rgba(169,124,47,.45); }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn-outline:hover { background: rgba(255,255,255,.08); }
.actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 2rem; }

/* ─── Sections ─── */
.section { padding: 90px 0; }
.section.alt { background: var(--panel); }
.section.cream { background: linear-gradient(160deg, var(--cream) 0%, #fff 100%); }
.section.dark { background: var(--warm-dark); color: #fff; }
.section.charcoal { background: #161310; color: #fff; }

.section-head { max-width: 780px; margin-bottom: 2.5rem; }
.section-head.center { text-align: center; margin-inline: auto; }

/* ─── Hero ─── */
.hero {
  background: var(--warm-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 85% 20%, rgba(169,124,47,.22) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(169,124,47,.1) 0%, transparent 50%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 400px;
  gap: 64px;
  align-items: center;
  min-height: 680px;
  padding: 96px 0 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold3);
  border: 1px solid rgba(240,204,122,.25);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 1.5rem;
  background: rgba(240,204,122,.07);
}

/* Hero card */
.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(12px);
}
.hero-card-logo { width: 120px; margin-bottom: 20px; opacity: .9; }
.hero-card h2 {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 12px;
  font-weight: 400;
}
.hero-card p { color: #c8b794; font-size: 15px; margin-bottom: 0; }
.statline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(240,204,122,.2);
}
.stat b { display: block; font-size: 24px; font-family: var(--font-display); color: var(--gold3); font-weight: 400; }
.stat span { display: block; font-size: 11px; color: #a0917a; font-weight: 500; letter-spacing: .05em; margin-top: 2px; }

/* ─── Intro / quote ─── */
.intro-panel {
  padding: 70px 0;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}
.intro-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.35;
  color: var(--ink);
  font-style: italic;
  max-width: 820px;
}
.intro-text strong { font-style: normal; color: var(--gold); }

/* ─── Cards ─── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card.warm { background: linear-gradient(160deg, #fff 60%, var(--cream)); }
.card.dark-card { background: var(--warm-dark2); color: #fff; border-color: #2e2416; }
.card.dark-card p { color: #b8a888; }
.card p { color: var(--muted); font-size: 15px; }

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(169,124,47,.15), rgba(169,124,47,.08));
  border: 1px solid rgba(169,124,47,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 20px;
}

.number {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--gold);
  margin-bottom: 16px;
}

/* ─── List items ─── */
.check-list { list-style: none; margin: 20px 0 0; }
.check-list li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.check-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.dark-card .check-list li { border-color: #2e2416; color: #d4c4a0; }
.dark-card .check-list li::before { background: var(--gold3); }

/* ─── Process steps ─── */
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: start; }
.process { display: grid; gap: 14px; }
.process-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.04);
  transition: background .2s;
}
.process-item:hover { background: rgba(255,255,255,.07); }
.process-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
}
.process-item h3 { font-size: 17px; font-family: var(--font-display); font-weight: 400; color: #fff; margin-bottom: 6px; }
.process-item p { color: #b0a080; font-size: 14px; margin: 0; }

/* ─── Sector tags ─── */
.sector-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.5rem; }
.sector-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(169,124,47,.3);
  background: rgba(169,124,47,.07);
  color: var(--gold);
}
.dark .sector-tag {
  border-color: rgba(240,204,122,.25);
  background: rgba(240,204,122,.07);
  color: var(--gold3);
}

/* ─── Trust / cert badges ─── */
.trust-bar {
  padding: 36px 0;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.trust-item span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.trust-cert {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--ink);
  font-style: italic;
}

/* ─── Details / verification ─── */
.details-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.details-panel dl { margin: 0; }
.details-panel .row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
}
.details-panel .row:last-child { border-bottom: 0; }
.details-panel dt { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); padding-top: 2px; }
.details-panel dd { margin: 0; font-weight: 500; font-size: 15px; }

/* ─── Page hero ─── */
.page-hero {
  background: var(--warm-dark);
  color: #fff;
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 85% 20%, rgba(169,124,47,.2) 0%, transparent 60%);
}
.page-hero .container { position: relative; }
.page-hero h1 { font-size: clamp(40px, 6vw, 68px); margin-bottom: 1rem; }
.page-hero p { font-size: 18px; color: #c0aa7e; max-width: 740px; line-height: 1.65; margin-bottom: 0; }
.breadcrumbs { font-size: 13px; color: #9a8a6a; margin-bottom: 1.5rem; }
.breadcrumbs a { color: var(--gold3); }
.breadcrumbs a:hover { text-decoration: underline; }

/* ─── Contact ─── */
.contact-box {
  background: var(--warm-dark2);
  border: 1px solid rgba(169,124,47,.25);
  border-radius: var(--radius);
  padding: 36px;
}
.contact-link {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  color: var(--gold3);
  margin-bottom: 8px;
  word-break: break-word;
  line-height: 1.2;
  font-style: italic;
}
.contact-link:hover { text-decoration: underline; }
.notice {
  background: #fff9ec;
  border: 1px solid rgba(169,124,47,.2);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  font-size: 14px;
  color: #5a4520;
  margin-top: 1.5rem;
  line-height: 1.6;
}
.notice strong { font-weight: 600; }

/* ─── Footer ─── */
.site-footer { background: var(--warm-dark); color: #b0a080; padding: 52px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
}
.footer-logo { width: 190px; margin-bottom: 14px; opacity: .85; }
.footer-tagline { font-size: 14px; line-height: 1.7; color: #806a4a; }
.legal { font-size: 12px; color: #5a4e38; margin-top: 10px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; text-align: right; }
.footer-links a { font-size: 14px; font-weight: 500; color: #c0a870; transition: color .2s; }
.footer-links a:hover { color: var(--gold3); }

/* ─── Inline quote ─── */
blockquote {
  border-left: 3px solid var(--gold);
  margin: 0;
  padding: 16px 0 16px 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: #4b4030;
  line-height: 1.5;
}

/* ─── Responsive ─── */
@media (max-width: 960px) {
  .topbar .hide-sm { display: none; }
  .nav-toggle { display: block; }
  .nav {
    position: absolute;
    top: 74px;
    left: 20px;
    right: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 16px;
    box-shadow: var(--shadow);
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { width: 100%; }
  .nav-cta { margin-top: 6px; }
  .brand img { width: 170px; }
  .hero-grid, .grid-2, .grid-3, .grid-4, .split { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; padding: 72px 0 56px; gap: 40px; }
  .section { padding: 64px 0; }
  .statline { grid-template-columns: repeat(3, 1fr); }
  .details-panel .row { grid-template-columns: 1fr; gap: 4px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { text-align: left; flex-direction: row; flex-wrap: wrap; }
  .trust-items { gap: 28px; }
}
@media (max-width: 520px) {
  .statline { grid-template-columns: 1fr 1fr; }
  .actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}
