@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --navy: #16233F;
  --navy-2: #223259;
  --navy-deep: #0E1730;
  --slate: #5B7096;
  --slate-light: #A9B7CE;
  --gold: #C99A44;
  --gold-2: #E4BE78;
  --paper: #F6F4EF;
  --paper-2: #EFEBE0;
  --line: #DCD7CB;
  --ink: #16233F;

  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;

  --max: 1120px;
}

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

html { scroll-behavior: smooth; }

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

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

a { color: inherit; text-decoration: none; }

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

/* ---------- Focus & motion ---------- */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

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

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 244, 239, 0.92);
  backdrop-filter: blur(8px);
  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;
}

.brand img { height: 40px; width: 40px; }

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text .name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.brand-text .name .accent { color: var(--gold); }

.brand-text .sub {
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--slate);
  font-weight: 600;
  margin-top: 2px;
}

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

.main-nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
}

.main-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  position: relative;
  padding: 4px 0;
}

.main-nav a[aria-current="page"] { color: var(--gold); }

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.2s ease;
}
.main-nav a:hover::after { width: 100%; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 3px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn-gold:hover { background: var(--gold-2); }

.btn-outline {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline-light {
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}
.btn-outline-light:hover { border-color: var(--gold-2); color: var(--gold-2); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  display: block;
}

/* ---------- Hero ---------- */
.hero {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 96px 0 88px;
}

.hero::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -80px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,154,68,0.16) 0%, rgba(201,154,68,0) 70%);
}

.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 22px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold-2);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.hero h1 .accent { color: var(--gold-2); }

.hero p.lead {
  font-size: 17px;
  color: var(--slate-light);
  max-width: 46ch;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero ledger card */
.ledger-card {
  background: var(--navy-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 30px 28px;
}

.ledger-card .ledger-card-title {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate-light);
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ---------- Ledger row (signature component) ---------- */
.ledger-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
}
.ledger-row:last-child { border-bottom: none; }

.ledger-row .tick {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ledger-row .tick svg { width: 100%; height: 100%; }

.ledger-row .label {
  font-weight: 600;
  font-size: 15px;
  flex: 1;
}

.ledger-row .fill {
  flex: 1;
  border-bottom: 1px dotted var(--line);
  margin: 0 6px;
  transform: translateY(-4px);
}

.ledger-row .value {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold);
  font-size: 15px;
  white-space: nowrap;
}

/* dark variant */
.ledger-card .ledger-row { border-bottom-color: rgba(255,255,255,0.12); }
.ledger-card .ledger-row .label { color: var(--slate-light); font-weight: 500; font-size: 14px; }
.ledger-card .ledger-row .fill { border-bottom-color: rgba(255,255,255,0.16); }
.ledger-card .ledger-row .value { color: var(--gold-2); font-size: 20px; }

/* ---------- Sections ---------- */
section { padding: 88px 0; }

.section-head {
  max-width: 640px;
  margin-bottom: 52px;
}

.section-head .eyebrow { color: var(--gold); }
.section-head .eyebrow::before { background: var(--gold); }

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.section-head p {
  color: var(--slate);
  font-size: 16px;
}

.section-alt { background: var(--paper-2); }
.section-dark { background: var(--navy); color: #fff; }
.section-dark .section-head p { color: var(--slate-light); }

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

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px 28px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover { border-color: var(--gold); transform: translateY(-3px); }

.card .icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card .icon svg { width: 22px; height: 22px; }

.card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}

.card p {
  color: var(--slate);
  font-size: 14.5px;
}

.card a.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
}

/* ---------- Quote ---------- */
.quote-block {
  border-left: 3px solid var(--gold);
  padding-left: 28px;
  max-width: 720px;
}
.quote-block p.quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 18px;
}
.quote-block .attr {
  font-size: 13px;
  color: var(--slate);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 76px 0;
  position: relative;
  overflow: hidden;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 3.4vw, 38px);
  margin-bottom: 18px;
}
.cta-band p {
  color: var(--slate-light);
  margin-bottom: 32px;
  font-size: 16px;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: var(--slate-light);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .brand-text .name { color: #fff; }
.footer-brand p {
  font-size: 13.5px;
  margin-top: 16px;
  max-width: 34ch;
  color: var(--slate-light);
}
.footer-col h4 {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: var(--slate-light); }
.footer-col a:hover { color: var(--gold-2); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 12.5px;
  color: var(--slate);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 68px 0 60px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.page-hero p {
  color: var(--slate-light);
  max-width: 56ch;
  font-size: 16px;
}
.breadcrumb {
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 700;
  margin-bottom: 18px;
  display: flex;
  gap: 8px;
  align-items: center;
}

/* ---------- Services list ---------- */
.service-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 24px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.service-row:first-child { padding-top: 0; }
.service-row .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
}
.service-row h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
}
.service-row p { color: var(--slate); font-size: 15px; max-width: 62ch; }
.service-row .tag {
  align-self: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 6px 14px;
  white-space: nowrap;
}

/* ---------- Process steps ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-step { position: relative; padding-top: 44px; }
.process-step .step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: var(--navy);
  background: var(--gold-2);
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: absolute; top: 0; left: 0;
}
.process-step h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}
.process-step p { color: var(--slate); font-size: 14px; }

/* ---------- Team ---------- */
.team-card {
  text-align: left;
}
.team-card .avatar {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--gold-2);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
}
.team-card h3 { font-family: var(--font-display); font-size: 17px; margin-bottom: 4px; }
.team-card .role { font-size: 13px; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
.team-card p.bio { font-size: 14px; color: var(--slate); }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: var(--navy);
  color: #fff;
  border-radius: 6px;
  padding: 40px 34px;
}
.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 24px;
}
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.contact-item .icon {
  flex: 0 0 auto;
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}
.contact-item .icon svg { width: 16px; height: 16px; }
.contact-item .label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 700;
  margin-bottom: 3px;
}
.contact-item .val { font-size: 14.5px; color: var(--slate-light); }

.hours-table { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12); }
.hours-row {
  display: flex; justify-content: space-between;
  font-size: 13.5px; color: var(--slate-light);
  padding: 6px 0;
}
.hours-row span:last-child { color: #fff; font-weight: 600; }

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.field label { font-size: 13px; font-weight: 700; color: var(--navy); }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 14.5px;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold);
  outline: none;
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 12.5px; color: var(--slate); margin-top: 14px; }
.form-status {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  display: none;
}
.form-status.success { color: #3D7A4F; display: block; }

.map-placeholder {
  margin-top: 40px;
  height: 260px;
  border-radius: 6px;
  background: repeating-linear-gradient(135deg, var(--paper-2), var(--paper-2) 12px, #fff 12px, #fff 24px);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 20px;
}

/* ---------- About stats strip ---------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat {
  border-top: 3px solid var(--gold);
  padding-top: 18px;
}
.stat .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 38px);
  color: var(--navy);
}
.stat .label {
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 700;
  margin-top: 6px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .grid-3, .grid-2, .process, .stat-strip { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .main-nav ul, .main-nav .btn { display: none; }
  .nav-toggle { display: flex; }
  .main-nav.open {
    position: absolute;
    top: 84px; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 20px 28px 28px;
    gap: 20px;
  }
  .main-nav.open ul { display: flex; flex-direction: column; gap: 18px; }
  .main-nav.open .btn { display: inline-flex; }
  .grid-3, .grid-2, .process, .stat-strip, .footer-grid, .form-row { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
  .service-row { grid-template-columns: 44px 1fr; }
  .service-row .tag { grid-column: 2; }
}
