/* ===== Design tokens ===== */
:root {
  --bg-page: oklch(0.98 0.004 80);
  --bg-muted: oklch(0.96 0.008 80);
  --navy: oklch(0.28 0.07 245);
  --navy-light: oklch(0.34 0.07 245);
  --navy-light-2: oklch(0.36 0.06 245);
  --navy-dark: oklch(0.2 0.05 245);
  --gold: oklch(0.4 0.09 70);
  --gold-tint-bg: oklch(0.94 0.03 75);
  --gold-accent: oklch(0.6 0.13 75);
  --text-body: oklch(0.24 0.02 250);
  --text-muted: oklch(0.4 0.02 250);
  --text-muted-2: oklch(0.5 0.02 250);
  --text-muted-3: oklch(0.42 0.02 250);
  --text-muted-4: oklch(0.48 0.02 250);
  --cream: oklch(0.98 0.004 80);
  --cream-on-navy: oklch(0.85 0.02 245);
  --border-light: oklch(0.9 0.01 80);
  --border-lighter: oklch(0.88 0.01 80);
  --link-color: oklch(0.32 0.09 240);
  --eyebrow-gold: oklch(0.75 0.1 80);
  --header-bg: oklch(0.98 0.004 80 / 0.92);

  --font-heading: "Libre Franklin", Helvetica, sans-serif;
  --font-body: "Source Sans 3", Helvetica, Arial, sans-serif;

  --container-max: 1180px;
  --radius-card: 12px;
  --radius-btn: 7px;
  --radius-photo: 16px;
  --radius-logo: 3px;
  --radius-pill: 20px;
}

/* ===== Reset ===== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg-page);
  color: var(--text-body);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
}
h1, h2, h3 {
  font-family: var(--font-heading);
  margin: 0;
  color: var(--text-body);
}
p { margin: 0; }
a {
  color: var(--link-color);
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover { color: var(--gold-accent); }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.body-text { font-size: 18px; color: var(--text-muted-3); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: var(--radius-btn);
  font-size: 15px;
  font-weight: 700;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--cream);
}
.btn-primary:hover { color: var(--gold-accent); }
.btn-secondary {
  background: oklch(0.94 0.01 80);
  color: var(--navy);
}
.btn-secondary:hover { color: var(--gold-accent); }
.btn-sm { padding: 10px 20px; }
.btn-block { width: 100%; }
.btn:disabled {
  background: oklch(0.85 0.005 80);
  color: oklch(0.55 0.01 80);
  cursor: not-allowed;
}
.btn:disabled:hover { color: oklch(0.55 0.01 80); }

/* ===== Eyebrow ===== */
.eyebrow, .eyebrow-pill {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.eyebrow {
  display: block;
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 10px;
}
.eyebrow-light { color: var(--eyebrow-gold); }
.eyebrow-pill {
  display: inline-block;
  background: var(--gold-tint-bg);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  margin-bottom: 20px;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-bg);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-light);
}
.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand:hover { color: inherit; }
.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: var(--radius-logo);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.logo-mark::before {
  content: "";
  width: 26px;
  height: 26px;
  border: 2.5px solid var(--cream);
  border-radius: var(--radius-logo);
}
.logo-mark-sm {
  width: 34px;
  height: 34px;
}
.logo-mark-sm::before {
  width: 20px;
  height: 20px;
  border-width: 2px;
}
.wordmark {
  display: flex;
  flex-direction: column;
}
.wordmark-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-body);
}
.wordmark-sub {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted-2);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-desktop a:not(.btn) {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-body);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  display: block;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 18px;
  padding: 20px 24px 24px;
  border-top: 1px solid var(--border-light);
}
.nav-mobile a:not(.btn) {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-body);
}
.nav-mobile.open { display: flex; }

/* ===== Section base ===== */
section {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) 24px;
  scroll-margin-top: 73px;
}
.about, .services, .contact { padding-left: 24px; padding-right: 24px; }
.about, .contact { max-width: 100%; }
.about-grid, .contact-grid { max-width: var(--container-max); margin: 0 auto; }

/* ===== Hero ===== */
.hero { padding: clamp(48px, 8vw, 96px) 24px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
h1 {
  font-weight: 800;
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.08;
  margin-bottom: 18px;
}
.subtitle {
  font-size: 23px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero-text .body-text { max-width: 520px; margin-bottom: 32px; }
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.stat-row {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 28px;
  color: var(--navy);
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted-2);
}

.hero-media { position: relative; }
.photo-card {
  border-radius: var(--radius-photo);
  border: 1px solid var(--border-lighter);
  background-size: cover;
  background-position: center;
}
.hero-photo { aspect-ratio: 4 / 5; }
.quote-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--navy);
  color: var(--cream);
  padding: 20px 24px;
  border-radius: var(--radius-card);
  max-width: 230px;
  box-shadow: 0 12px 28px oklch(0.2 0.03 250 / 0.25);
  font-size: 14px;
  font-weight: 600;
}

/* ===== About ===== */
.about { background: var(--bg-muted); }
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.about-photo { aspect-ratio: 1 / 1; }
.about-text h2 { margin-bottom: 20px; }
.about-text p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.about-text p:last-child { margin-bottom: 0; }

h2 {
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 38px);
}

/* ===== Services ===== */
.services-header {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}
.services-header .eyebrow { display: inline-block; }
.services-header h2 { margin-bottom: 14px; }
.services-header .body-text { margin-top: 14px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 26px;
}
.icon-tile {
  width: 40px;
  height: 40px;
  background: var(--gold-tint-bg);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.icon-tile svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}
.service-card h3 {
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 14.5px;
  color: var(--text-muted-4);
}

/* ===== Contact ===== */
.contact { background: var(--navy); max-width: 100%; padding: clamp(56px, 8vw, 96px) 24px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.contact-text h2 { color: var(--cream); margin-bottom: 16px; }
.contact-text .body-text { color: var(--cream-on-navy); margin-bottom: 32px; }

.contact-rows {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-row a { color: var(--cream); font-weight: 600; }
.contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy-light-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 20px;
  height: 20px;
  color: var(--cream-on-navy);
}

.contact-form-wrap { min-width: 0; }
.contact-photo {
  width: 100%;
  aspect-ratio: 8 / 5;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--border-lighter);
}
/* ===== Footer ===== */
.site-footer { background: var(--navy-dark); }
.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 40px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-copy {
  font-size: 14px;
  color: var(--navy-light);
  color: oklch(0.75 0.02 245);
}
.footer-nav {
  display: flex;
  gap: 24px;
}
.footer-nav a {
  font-size: 14px;
  color: oklch(0.75 0.02 245);
}

/* ===== Responsive: 760px breakpoint ===== */
@media (max-width: 760px) {
  .nav-desktop { display: none; }
  .hamburger { display: flex; }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-media { order: 2; }
  .about-text { order: 1; }

  .hero-photo { aspect-ratio: 8 / 5; }
  .about-photo { aspect-ratio: 2 / 1; }

  .quote-card {
    max-width: 200px;
    padding: 16px 20px;
  }

  .service-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
  }
  .icon-tile { margin-bottom: 0; }
  .service-card h3 { font-size: 15px; }
  .service-card p { text-align: right; }
}
