:root {
  --emerald: #0f3329;
  --emerald-2: #174638;
  --ink: #14201d;
  --muted: #66736f;
  --line: #d9dedb;
  --mist: #edf2f0;
  --paper: #fbfbf8;
  --gold: #c79a58;
  --gold-2: #e1bf7a;
  --gold-deep: #9f7138;
  --champagne: #f4ead8;
  --alert: #8f642f;
  --shadow: 0 18px 42px rgba(15, 51, 41, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

.hidden-field {
  display: none;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
}

.top-strip {
  display: flex;
  justify-content: center;
  background: var(--gold-2);
  color: #1a2f28;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .01em;
  padding: 7px 16px;
}

.top-strip a {
  text-decoration: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(15, 51, 41, .92);
  border-bottom: 1px solid rgba(225, 191, 122, .18);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(430px, 56vw);
  color: var(--gold-2);
  text-decoration: none;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex: none;
}

.brand span {
  max-width: 300px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.02;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, .86);
  font-size: 13px;
  font-weight: 800;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:not(.nav-cta) {
  position: relative;
  padding: 8px 0;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 0;
  height: 2px;
  background: var(--gold-2);
  transition: width .2s ease;
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 6px;
  padding: 12px 18px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.nav-cta,
.button.primary {
  background: linear-gradient(180deg, var(--gold-2) 0%, var(--gold) 100%);
  color: #16231f;
  box-shadow: 0 12px 26px rgba(199, 154, 88, .22);
}

.button.secondary {
  background: rgba(255, 255, 255, .11);
  color: white;
  border: 1px solid rgba(255, 255, 255, .2);
}

.button.small {
  min-height: 38px;
  padding: 9px 14px;
  font-size: 12px;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 6px;
  background: rgba(255, 255, 255, .08);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: white;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  background: var(--emerald);
  padding-top: 122px;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 24, 20, .88) 0%, rgba(8, 24, 20, .63) 42%, rgba(8, 24, 20, .14) 100%),
    linear-gradient(180deg, rgba(8, 24, 20, .25) 0%, rgba(8, 24, 20, .75) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(740px, calc(100% - 36px));
  margin: 0 auto 128px;
  transform: translateX(-22%);
}

.eyebrow,
.section-kicker,
.mini-label {
  margin: 0 0 10px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 11ch;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(54px, 8vw, 104px);
  line-height: .92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 28px;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(16px, 2vw, 19px);
}

.hero-actions,
.inline-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(980px, calc(100% - 36px));
  margin: 0 auto 32px;
  background: rgba(15, 51, 41, .92);
  border: 1px solid rgba(225, 191, 122, .24);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-stats div {
  padding: 20px 24px;
  border-right: 1px solid rgba(225, 191, 122, .18);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  color: var(--gold-2);
  font-size: 18px;
}

.hero-stats span {
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.intro,
.standard,
.credentials {
  padding: clamp(72px, 10vw, 124px) clamp(18px, 5vw, 72px);
  text-align: center;
}

.intro {
  max-width: 820px;
  margin: 0 auto;
}

.intro h2,
.standard h2,
.credentials h2,
.contact h2 {
  margin: 0 auto 14px;
  color: #17372f;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

.intro h2,
.standard h2,
.credentials h2 {
  font-family: "Playfair Display", Georgia, serif;
}

.intro p,
.standard-lead,
.credentials p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
}

.featured-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  width: min(1140px, calc(100% - 36px));
  margin: 0 auto 32px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-card {
  min-height: 360px;
  background: white;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 58px);
  background: #123c31;
  color: white;
}

.feature-copy.dark {
  background: #1a2522;
}

.feature-copy h3 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.02;
}

.feature-copy p {
  max-width: 56ch;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, .78);
}

.text-link {
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: min(1140px, calc(100% - 36px));
  margin: 0 auto clamp(72px, 10vw, 118px);
}

.service-grid article,
.standard-grid article,
.credential-grid article {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(20, 32, 29, .08);
}

.service-grid article {
  min-height: 218px;
  padding: 24px;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 32px;
  border-radius: 6px;
  background: var(--champagne);
  color: var(--gold-deep);
  font-size: 18px;
}

.service-grid h3,
.standard-grid h3 {
  margin: 0 0 10px;
  color: #17372f;
  font-size: 20px;
}

.service-grid p,
.standard-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.financing-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(860px, calc(100% - 36px));
  margin: 0 auto clamp(72px, 10vw, 118px);
  padding: 24px 30px;
  color: white;
  background: var(--emerald);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.financing-band strong,
.financing-band span {
  display: block;
}

.financing-band span {
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
}

.financing-band a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 6px;
  color: #16231f;
  background: linear-gradient(180deg, var(--gold-2) 0%, var(--gold) 100%);
  text-decoration: none;
}

.standard {
  background: var(--mist);
}

.standard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: min(1040px, 100%);
  margin: 52px auto 0;
  text-align: left;
}

.standard-grid article {
  padding: 26px;
}

.standard-grid span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 36px;
  border-radius: 6px;
  background: var(--champagne);
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 900;
}

.credentials {
  background: var(--paper);
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: min(980px, 100%);
  margin: 42px auto 0;
}

.credential-grid article {
  min-height: 150px;
  display: grid;
  place-items: center;
  padding: 26px;
}

.credential-grid strong {
  color: var(--emerald);
  font-size: 28px;
  letter-spacing: .05em;
}

.credential-grid span {
  color: var(--muted);
  font-size: 13px;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--emerald);
  font-weight: 700;
}

.emergency {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 4vw, 52px);
  color: white;
  background: linear-gradient(90deg, #725029 0%, var(--alert) 48%, var(--gold) 100%);
}

.emergency strong,
.emergency span {
  display: block;
}

.emergency span {
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
}

.emergency-button {
  background: var(--paper);
  color: #583a1b;
  white-space: nowrap;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
  padding: clamp(72px, 10vw, 118px) clamp(18px, 5vw, 72px);
  color: white;
  background: #123c31;
}

.contact h2 {
  margin-left: 0;
  color: white;
  font-family: "Playfair Display", Georgia, serif;
}

.contact-copy p:not(.section-kicker) {
  max-width: 620px;
  color: rgba(255, 255, 255, .74);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(225, 191, 122, .22);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 6px;
  background: rgba(255, 255, 255, .95);
  color: var(--ink);
  font: inherit;
  padding: 12px;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(180px, .6fr) minmax(220px, .8fr);
  gap: 42px;
  padding: 52px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, .72);
  background: #091f1a;
}

.footer img {
  width: 280px;
  margin-bottom: 18px;
}

.footer h2 {
  margin: 0 0 16px;
  color: white;
  font-size: 14px;
}

.footer a,
.footer span {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
  font-size: 14px;
}

.chat-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 12;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-2) 0%, var(--gold) 100%);
  color: #16231f;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .2);
}

.thanks-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(8, 24, 20, .9), rgba(8, 24, 20, .68)),
    url("../images/adc-hero.png") center / cover;
  color: white;
}

.thanks {
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 42px;
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: 60px 0;
}

.thanks-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-2);
  text-decoration: none;
}

.thanks-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.thanks-brand span {
  max-width: 320px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.02;
}

.thanks-panel {
  max-width: 720px;
}

.thanks-panel h1 {
  margin: 0 0 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(44px, 7vw, 78px);
  line-height: .96;
  letter-spacing: 0;
}

.thanks-panel p:not(.section-kicker) {
  max-width: 58ch;
  color: rgba(255, 255, 255, .8);
  font-size: 18px;
}

@media (max-width: 940px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 109px 0 auto;
    display: none;
    min-height: calc(100vh - 109px);
    padding: 28px;
    background: rgba(15, 51, 41, .98);
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 6px;
  }

  .hero-content {
    transform: none;
    margin-bottom: 78px;
  }

  .featured-services,
  .service-grid,
  .standard-grid,
  .credential-grid,
  .contact,
  .footer {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 300px;
  }
}

@media (max-width: 680px) {
  .brand {
    width: auto;
  }

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

  .brand span {
    max-width: 190px;
    font-size: 16px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    width: calc(100% - 32px);
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(225, 191, 122, .18);
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

  .emergency,
  .financing-band {
    align-items: stretch;
    flex-direction: column;
  }

  .emergency-button {
    white-space: normal;
  }
}
