

:root {
  --bg: #f6f4ef;
  --bg-alt: #eeebe3;
  --surface: #ffffff;
  --ink: #1a1f24;
  --ink-muted: #5c6369;
  --accent: #8b6914;
  --accent-soft: #c4a035;
  --border: rgba(26, 31, 36, 0.12);
  --dark: #12161a;
  --dark-elev: #1c2228;
  --radius: 12px;
  --shadow: 0 18px 50px rgba(18, 22, 26, 0.08);
  --font-sans: "Source Sans 3", system-ui, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #6d5010;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 244, 239, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.logo:hover {
  color: var(--accent);
}

.nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav a {
  color: var(--ink);
  text-decoration: none;
}

.nav a:hover {
  color: var(--accent);
}

.nav-cta {
  padding: 0.45rem 1rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
}

.nav-cta:hover {
  background: var(--ink);
  color: var(--bg) !important;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
  position: relative;
}

.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, top 0.2s ease;
}

.menu-toggle::before {
  top: 16px;
}

.menu-toggle::after {
  top: 24px;
}

.menu-toggle[aria-expanded="true"]::before {
  top: 20px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  top: 20px;
  transform: rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 1.25rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.mobile-nav:not([hidden]) {
  display: flex;
}

.mobile-nav a {
  padding: 0.65rem 0;
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 900px) {
  .nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }
}

.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(4rem, 10vw, 7rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 0%, rgba(196, 160, 53, 0.18), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, #ebe6dc 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 1.25rem;
  max-width: 18ch;
}

.accent {
  color: var(--accent);
}

.lead {
  font-size: 1.125rem;
  color: var(--ink-muted);
  max-width: 58ch;
  margin: 0 0 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: var(--ink);
  color: var(--bg);
}

.btn-primary:hover {
  background: var(--accent);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--bg);
}

.btn-large {
  padding: 1rem 1.75rem;
  font-size: 1.05rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin: 0;
  padding: 1.75rem 0 0;
  border-top: 1px solid var(--border);
}

.hero-stats dt {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 0.35rem;
}

.hero-stats dd {
  margin: 0;
  font-weight: 600;
  font-size: 1rem;
}


.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section-alt {
  background: #ebe6dc;
}

.section-dark {
  background: var(--dark);
  color: #e8eaed;
}

.section-dark a {
  color: var(--accent-soft);
}

.section-head {
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 600;
  margin: 0 0 1rem;
}

.section-intro {
  margin: 0;
  max-width: 65ch;
  color: var(--ink-muted);
  font-size: 1.08rem;
}

.section-intro-light {
  color: rgba(232, 234, 237, 0.82);
}

.grid-2 {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 3rem;
  }
}

.prose h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 0.75rem;
  font-weight: 600;
}

.prose p {
  margin: 0 0 1rem;
  color: var(--ink-muted);
}

.prose p:last-child {
  margin-bottom: 0;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.card-highlight h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 1rem;
}

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--ink-muted);
}

.checklist li:last-child {
  margin-bottom: 0;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-soft);
}


.services-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.service-card:hover {
  border-color: rgba(139, 105, 20, 0.35);
  box-shadow: var(--shadow);
}

.service-num {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.65rem;
  font-weight: 600;
}

.service-card p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--ink-muted);
}


.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.timeline li {
  background: var(--dark-elev);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.5rem 3.25rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.timeline li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1.25rem;
  top: 1.45rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: #fff;
}

.timeline span {
  color: rgba(232, 234, 237, 0.78);
  font-size: 0.98rem;
}



.pillars {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--border);
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.65rem;
}

.pillar p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--ink-muted);
}


.compliance-grid .notice {
  background: var(--surface);
  border-left: 4px solid var(--accent);
  padding: 1.5rem 1.75rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow);
}

.notice p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.98rem;
}

.notice strong {
  color: var(--ink);
}



.section-cta {
  background: linear-gradient(135deg, #2a2420 0%, var(--dark) 100%);
  color: #e8eaed;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}

.section-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  margin: 0 0 0.5rem;
}

.section-cta p {
  margin: 0;
  max-width: 52ch;
  color: rgba(232, 234, 237, 0.85);
}

.section-cta .btn-primary {
  background: var(--accent-soft);
  color: var(--dark);
  flex-shrink: 0;
}

.section-cta .btn-primary:hover {
  background: #fff;
  color: var(--dark);
}



.contact-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 1rem;
}

.contact-card p {
  margin: 0 0 0.5rem;
}

.muted {
  color: var(--ink-muted);
}

.small {
  font-size: 0.875rem;
}

.bullet {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--ink-muted);
}

.bullet li {
  margin-bottom: 0.5rem;
}

.site-footer {
  background: var(--dark);
  color: #a8aeb4;
  padding: 2.5rem 0 1.5rem;
  font-size: 0.95rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.site-footer strong {
  color: #e8eaed;
  display: block;
  margin-bottom: 0.35rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-links a {
  color: #e8eaed;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent-soft);
}

.footer-legal {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-legal p {
  margin: 0;
  max-width: 80ch;
}
