:root {
  --navy: #122436;
  --navy-light: #1a3247;
  --gold: #e0a83e;
  --gold-light: #f0c375;
  --cream: #f4efe2;
  --cream-dark: #e9e1cc;
  --ink: #1c2a33;
  --text-muted: #5b6b74;
  --white: #ffffff;

  --font-display: "Fraunces", Georgia, serif;
  --font-condensed: "Barlow Condensed", sans-serif;
  --font-body: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max-width: 1180px;
  --radius: 10px;
  --shadow-sm: 0 2px 8px rgba(18, 36, 54, 0.08);
  --shadow-md: 0 12px 32px rgba(18, 36, 54, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

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

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

.skip-link {
  position: fixed;
  top: -60px;
  left: 12px;
  z-index: 200;
  background: var(--navy);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 600;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

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

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; color: var(--text-muted); }

.eyebrow {
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 0.75em;
}
.eyebrow-light { color: var(--gold-light); }

.section-lede {
  max-width: 620px;
  font-size: 1.08rem;
}
.section-lede.light { color: #c3cdd4; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: var(--gold-light); }
.btn-ghost {
  background: transparent;
  border-color: rgba(18, 36, 54, 0.25);
  color: var(--navy);
}
.btn-ghost:hover { background: rgba(18, 36, 54, 0.06); }
.btn-lg { padding: 15px 28px; font-size: 1rem; }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 239, 226, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(18, 36, 54, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark-img { width: 44px; height: auto; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.brand-tagline {
  font-family: var(--font-condensed);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  font-weight: 600;
}

.main-nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  position: relative;
  padding: 4px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone {
  display: none;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}
@media (min-width: 900px) {
  .header-phone { display: inline-flex; }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(18,36,54,0.08);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .main-nav.is-open { max-height: 400px; }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 20px;
  }
  .main-nav li { border-top: 1px solid rgba(18,36,54,0.06); }
  .main-nav a { display: block; padding: 14px 0; }
  .nav-toggle { display: flex; }
  .header-actions .btn-primary { display: none; }
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  overflow: hidden;
  padding: 90px 0 70px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; opacity: 0.7; }
.hero-inner { position: relative; z-index: 1; max-width: 780px; }
.hero h1 { margin-bottom: 0.4em; }
.hero h1 span { display: block; color: var(--gold); font-style: italic; }
.hero-lede { font-size: 1.15rem; max-width: 640px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 32px; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}
.hero-trust li { display: flex; align-items: center; gap: 8px; }
.hero-trust li::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}

/* Services strip */
.services-strip {
  background: var(--navy);
  color: var(--cream);
  padding: 14px 0;
  overflow: hidden;
}
.strip-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-light);
}

/* Sections */
.section { padding: 88px 0; }
.section-alt { background: var(--cream); }
.section-dark { background: var(--navy); color: var(--cream); }
.section-dark h2 { color: var(--white); }

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 44px;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(18,36,54,0.08);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(224,168,62,0.4);
}
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(224,168,62,0.12);
  margin-bottom: 16px;
}
.service-card h3 { margin-bottom: 0.4em; font-size: 1.1rem; }
.service-card p { margin: 0; font-size: 0.95rem; }

.services-more {
  margin-top: 36px;
  font-weight: 600;
  color: var(--navy);
}
.services-more a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 44px;
}
.feature-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: 0.2em;
}
.feature h3 { margin-bottom: 0.3em; }
.feature p { font-size: 0.95rem; margin: 0; }

/* Process */
.process-list {
  list-style: none;
  margin: 44px 0 0;
  padding: 0;
  display: grid;
  gap: 28px;
}
.process-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(18,36,54,0.08);
}
.process-list li:last-child { border-bottom: none; padding-bottom: 0; }
.process-step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
}
.process-list h3 { margin-bottom: 0.3em; }
.process-list p { margin: 0; font-size: 0.95rem; }

/* Service area */
.service-area-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.service-area-graphic { max-width: 320px; margin: 0 auto; }
@media (max-width: 820px) {
  .service-area-inner { grid-template-columns: 1fr; }
  .service-area-graphic { order: -1; max-width: 220px; }
}

/* Contact */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 820px) {
  .contact-inner { grid-template-columns: 1fr; }
}
.contact-list {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--navy);
}
.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(224,168,62,0.14);
  flex-shrink: 0;
}
.contact-list a:hover { color: var(--gold); }

.contact-form {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(18,36,54,0.08);
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(18,36,54,0.18);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  resize: vertical;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(224,168,62,0.25);
}
.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 12px 0 0;
  text-align: center;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: var(--cream);
  padding-top: 56px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(244,239,226,0.12);
}
@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr; }
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-logo-img { width: 72px; height: auto; flex-shrink: 0; }
.footer-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  margin: 0;
  font-size: 1.05rem;
}
.footer-tag {
  margin: 2px 0 0;
  font-size: 0.85rem;
  color: var(--gold-light);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a { color: #c3cdd4; font-size: 0.92rem; }
.footer-nav a:hover { color: var(--gold-light); }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.92rem;
}
.footer-contact a { color: #c3cdd4; }
.footer-contact a:hover { color: var(--gold-light); }
.footer-contact p { margin: 0; color: #8fa0aa; }

.footer-bottom {
  padding: 22px 24px;
  text-align: center;
  font-size: 0.82rem;
  color: #8fa0aa;
}
.footer-bottom p { margin: 0; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
