:root {
  --oxblood-900: #3f121d;
  --oxblood-800: #4b1824;
  --oxblood-700: #5a1f2b;
  --oxblood-600: #6b2938;
  --ivory-100: #f5f0e6;
  --ivory-50: #fbf8f2;
  --charcoal-900: #252525;
  --charcoal-700: #4a4744;
  --charcoal-500: #746f69;
  --brass-500: #b08d57;
  --brass-300: #cdb78f;
  --stone-300: #d8d0c3;
  --stone-200: #e7dfd3;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(63, 18, 29, 0.08);
  --shadow-lg: 0 24px 70px rgba(63, 18, 29, 0.16);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--charcoal-900);
  background: var(--ivory-50);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(3rem, 7vw, 6.5rem); }
h2 { font-size: clamp(2.25rem, 4.4vw, 4.15rem); }
h3 { font-size: 1.45rem; }
p { color: var(--charcoal-700); }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.section { padding: 110px 0; }
.eyebrow {
  margin-bottom: 20px;
  color: var(--oxblood-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.eyebrow-light { color: var(--brass-300); }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  transform: translateY(-180%);
  padding: 10px 14px;
  color: var(--white);
  background: var(--oxblood-700);
  border-radius: 6px;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 248, 242, 0.94);
  border-bottom: 1px solid rgba(90, 31, 43, 0.08);
  backdrop-filter: blur(15px);
  transition: box-shadow 180ms ease;
}
.site-header.scrolled { box-shadow: 0 12px 35px rgba(37, 37, 37, 0.08); }
.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { width: min(280px, 52vw); flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.primary-nav { display: flex; align-items: center; gap: 30px; }
.primary-nav a {
  color: var(--charcoal-900);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}
.primary-nav a:not(.nav-cta) { position: relative; }
.primary-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--oxblood-700);
  transition: right 180ms ease;
}
.primary-nav a:not(.nav-cta):hover::after,
.primary-nav a:not(.nav-cta):focus-visible::after { right: 0; }
.nav-cta {
  padding: 12px 18px;
  color: var(--white) !important;
  background: var(--oxblood-700);
  border-radius: 999px;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--oxblood-700);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: calc(100vh - 86px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0 90px;
  background:
    radial-gradient(circle at 88% 18%, rgba(176, 141, 87, 0.14), transparent 24%),
    linear-gradient(135deg, var(--ivory-50), var(--ivory-100));
}
.hero::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -230px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(90, 31, 43, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(90, 31, 43, 0.025), 0 0 0 110px rgba(90, 31, 43, 0.02);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image: linear-gradient(rgba(90,31,43,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(90,31,43,.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, transparent, black 55%, black);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  align-items: center;
  gap: clamp(50px, 7vw, 110px);
}
.hero-copy h1 { margin-bottom: 26px; color: var(--charcoal-900); }
.hero-copy h1 span { color: var(--oxblood-700); }
.hero-lead { max-width: 710px; margin-bottom: 34px; font-size: clamp(1.1rem, 1.7vw, 1.35rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--oxblood-700); box-shadow: 0 12px 25px rgba(90,31,43,.18); }
.button-primary:hover { background: var(--oxblood-800); box-shadow: 0 16px 30px rgba(90,31,43,.24); }
.button-secondary { color: var(--oxblood-700); background: transparent; border-color: rgba(90,31,43,.28); }
.button-secondary:hover { background: rgba(90,31,43,.06); }
.button-small { min-height: 42px; padding: 10px 17px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 30px; }
.trust-item { display: flex; align-items: center; gap: 12px; color: var(--charcoal-700); font-size: 0.9rem; line-height: 1.35; }
.trust-item strong { color: var(--charcoal-900); }
.trust-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--oxblood-700);
  border-radius: 50%;
  font-weight: 900;
}
.hero-card {
  position: relative;
  max-width: 420px;
  justify-self: end;
  border: 1px solid rgba(176,141,87,.42);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(1.5deg);
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px solid rgba(245,240,230,.22);
  border-radius: 20px;
  pointer-events: none;
}
.hero-card img { width: 100%; }

.intro-strip { padding: 48px 0; background: var(--white); border-top: 1px solid var(--stone-200); border-bottom: 1px solid var(--stone-200); }
.intro-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.intro-grid p { margin-bottom: 0; font-size: 1.08rem; }
.intro-kicker { color: var(--oxblood-700) !important; font-family: Georgia, "Times New Roman", serif; font-size: 1.7rem !important; line-height: 1.25; }

.section-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: 70px; align-items: end; margin-bottom: 54px; }
.section-heading h2 { max-width: 760px; margin-bottom: 0; }
.section-heading > p { margin-bottom: 8px; font-size: 1.08rem; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  position: relative;
  min-height: 285px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 26px rgba(37,37,37,.035);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.service-card::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -65px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(90,31,43,.08);
  border-radius: 50%;
}
.service-card:hover { transform: translateY(-5px); border-color: rgba(90,31,43,.28); box-shadow: var(--shadow-sm); }
.service-number { display: block; margin-bottom: 38px; color: var(--brass-500); font-size: 0.78rem; font-weight: 900; letter-spacing: .15em; }
.service-card h3 { color: var(--oxblood-700); }
.service-card p { margin-bottom: 0; }

.process-section { color: var(--white); background: var(--oxblood-800); }
.process-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 110px; align-items: start; }
.process-copy h2 { color: var(--white); }
.process-copy p { color: rgba(255,255,255,.72); }
.process-list { list-style: none; margin: 0; padding: 0; }
.process-list li { display: grid; grid-template-columns: 52px 1fr; gap: 24px; padding: 30px 0; border-top: 1px solid rgba(255,255,255,.16); }
.process-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.16); }
.process-list > li > span { display: grid; width: 46px; height: 46px; place-items: center; color: var(--oxblood-900); background: var(--brass-300); border-radius: 50%; font-weight: 900; }
.process-list h3 { margin-bottom: 8px; color: var(--white); }
.process-list p { margin-bottom: 0; color: rgba(255,255,255,.69); }

.about { background: var(--ivory-100); }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.about-mark { padding: 45px; background: var(--white); border: 1px solid var(--stone-200); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.about-copy h2 { max-width: 680px; }
.about-copy > p { font-size: 1.04rem; }
.certification-card {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  padding: 22px;
  color: var(--charcoal-900);
  background: var(--white);
  border-left: 4px solid var(--oxblood-700);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.certification-card span { display: block; color: var(--oxblood-700); font-size: .72rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.certification-card strong { display: block; margin: 2px 0 3px; }
.certification-card small { color: var(--charcoal-500); }
.certification-seal { width: 52px; flex: 0 0 auto; }
.certification-seal svg circle { fill: none; stroke: var(--oxblood-700); stroke-width: 2; }
.certification-seal svg path { fill: none; stroke: var(--brass-500); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }

.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; align-items: start; }
.contact-copy { position: sticky; top: 130px; }
.contact-copy h2 { max-width: 560px; }
.contact-detail { padding: 20px 0; border-top: 1px solid var(--stone-200); }
.contact-detail:last-child { border-bottom: 1px solid var(--stone-200); }
.contact-detail span { display: block; margin-bottom: 4px; color: var(--charcoal-500); font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-detail strong { font-size: .98rem; }
.contact-form { padding: 40px; background: var(--ivory-50); border: 1px solid var(--stone-200); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: block; margin-bottom: 18px; }
.contact-form label > span { display: block; margin-bottom: 8px; color: var(--charcoal-900); font-size: .88rem; font-weight: 800; }
.contact-form label small { color: var(--charcoal-500); font-weight: 500; }
input, select, textarea {
  width: 100%;
  color: var(--charcoal-900);
  background: var(--white);
  border: 1px solid var(--stone-300);
  border-radius: 8px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
input, select { height: 48px; padding: 0 13px; }
textarea { min-height: 140px; padding: 13px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--oxblood-700); box-shadow: 0 0 0 3px rgba(90,31,43,.1); }
.consent { display: flex !important; align-items: flex-start; gap: 10px; }
.consent input { width: 18px; height: 18px; margin-top: 2px; flex: 0 0 auto; accent-color: var(--oxblood-700); }
.consent span { margin: 0 !important; color: var(--charcoal-700) !important; font-size: .82rem !important; font-weight: 500 !important; }
.consent a { color: var(--oxblood-700); }
.submit-button { border: 0; }
.form-note { margin: 14px 0 0; color: var(--charcoal-500); font-size: .78rem; }
.hidden-field { position: absolute; left: -9999px; }

.site-footer { padding: 70px 0 26px; color: var(--white); background: var(--charcoal-900); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr .7fr; gap: 50px; align-items: start; }
.footer-brand img { width: 260px; }
.footer-brand p, .footer-meta p { color: rgba(255,255,255,.64); }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.83); text-decoration: none; }
.footer-links a:hover { color: var(--brass-300); }
.footer-meta { text-align: right; }
.footer-disclaimer { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); }
.footer-disclaimer p { margin-bottom: 0; color: rgba(255,255,255,.48); font-size: .77rem; }

.compact-header .nav-wrap { min-height: 82px; }
.legal-main { padding: 90px 0 110px; }
.legal-container { max-width: 850px; }
.legal-container h1 { margin-bottom: 8px; color: var(--oxblood-700); font-size: clamp(3rem, 7vw, 5.2rem); }
.legal-container h2 { margin-top: 48px; font-size: 1.65rem; }
.legal-container p, .legal-container li { font-size: 1.02rem; }
.legal-date { margin-bottom: 45px; color: var(--charcoal-500); }
.legal-note { margin-top: 50px; padding: 24px; background: var(--ivory-100); border-left: 4px solid var(--oxblood-700); }
.legal-footer { padding-top: 45px; }

.confirmation-page { min-height: 100vh; display: grid; place-items: center; padding: 24px; background: var(--ivory-100); }
.confirmation-card { width: min(100%, 620px); padding: 55px; text-align: center; background: var(--white); border: 1px solid var(--stone-200); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.confirmation-card img { width: 350px; margin: 0 auto 25px; }
.confirmation-card h1 { margin-bottom: 16px; color: var(--oxblood-700); font-size: 3.5rem; }
.confirmation-card p { margin-bottom: 30px; }
.confirmation-check { display: grid; width: 56px; height: 56px; place-items: center; margin: 0 auto 22px; color: var(--white); background: var(--oxblood-700); border-radius: 50%; font-size: 1.5rem; font-weight: 900; }

@media (max-width: 980px) {
  .section { padding: 85px 0; }
  .hero-grid, .about-grid, .contact-grid, .process-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-card { max-width: 360px; justify-self: start; transform: none; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid, .about-grid, .contact-grid { gap: 55px; }
  .contact-copy { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-meta { text-align: left; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .nav-wrap { min-height: 74px; }
  .brand { width: 210px; }
  .nav-toggle { display: block; position: relative; z-index: 1001; }
  .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); }
  .primary-nav {
    position: fixed;
    inset: 74px 0 auto;
    display: grid;
    gap: 0;
    padding: 10px 20px 24px;
    background: var(--ivory-50);
    border-bottom: 1px solid var(--stone-200);
    box-shadow: 0 18px 35px rgba(37,37,37,.09);
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }
  .primary-nav.open { transform: translateY(0); }
  .primary-nav a { padding: 14px 6px; border-bottom: 1px solid var(--stone-200); }
  .primary-nav a::after { display: none; }
  .primary-nav .nav-cta { margin-top: 12px; text-align: center; border-bottom: 0; }
  .hero { padding: 65px 0 75px; }
  .hero-grid { gap: 50px; }
  .hero-copy h1 { font-size: clamp(3.2rem, 15vw, 5rem); }
  .trust-row { gap: 18px; }
  .hero-card { max-width: 310px; }
  .intro-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 25px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand img { width: 230px; }
  .confirmation-card { padding: 35px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
