@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@600;700;800&family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  --iron: #07110f;
  --iron-2: #0d1d19;
  --green: #15382f;
  --green-soft: #204a40;
  --gold: #c59a45;
  --gold-bright: #dfb861;
  --steel: #aeb9b4;
  --mist: #e7ece9;
  --white: #ffffff;
  --ink: #17201d;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--mist);
  background: var(--iron);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 28px;
  min-height: 82px;
  padding: 16px clamp(18px, 4vw, 54px);
  background: rgba(7, 17, 15, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.brand img {
  width: clamp(168px, 18vw, 232px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  color: rgba(231, 236, 233, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a {
  transition: color 160ms ease, border-color 160ms ease;
}

.site-nav a:hover {
  color: var(--white);
}

.nav-cta {
  color: var(--iron);
  background: var(--gold);
  border: 1px solid var(--gold-bright);
  padding: 11px 16px;
  border-radius: 4px;
}

.nav-cta:hover {
  color: var(--iron);
  border-color: var(--white);
}

.nav-toggle {
  display: none;
}

.section-shell {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

section {
  scroll-margin-top: 96px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(500px, 0.98fr) minmax(420px, 1.02fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  min-height: calc(100svh - 82px);
  padding: clamp(42px, 6vw, 78px) 0 clamp(44px, 6vw, 72px);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  margin: 0;
  max-width: 700px;
  color: var(--white);
  font-family: "Archivo", "Inter", Arial, Helvetica, sans-serif;
  font-size: clamp(3.2rem, 5vw, 4.78rem);
  font-weight: 800;
  line-height: 0.97;
  letter-spacing: 0;
}

.hero-copy h1 span {
  display: block;
}

.hero-copy p {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(231, 236, 233, 0.82);
  font-size: clamp(1.03rem, 1.45vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 650px);
  margin: 28px 0 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.12);
}

.hero-proof div {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.045);
}

.hero-proof dt,
.hero-proof dd {
  margin: 0;
}

.hero-proof dt {
  color: var(--gold-bright);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-proof dd {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 800;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 13px 18px;
  border: 1px solid transparent;
  font-size: 0.93rem;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: var(--iron);
  background: var(--gold);
  border-color: var(--gold-bright);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.03);
}

.hero-media {
  position: relative;
  margin-top: 18px;
  min-height: 470px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 17, 15, 0.16), rgba(7, 17, 15, 0));
  z-index: 1;
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  padding: clamp(46px, 6vw, 72px) max(20px, calc((100% - var(--max)) / 2));
  color: var(--ink);
  background: var(--mist);
}

.intro-band h2,
.section-heading h2,
.property-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Archivo", "Inter", Arial, Helvetica, sans-serif;
  font-size: clamp(1.9rem, 3.65vw, 3.72rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.intro-band p {
  margin: 0;
  color: rgba(23, 32, 29, 0.75);
  font-size: 1.08rem;
}

.section-label {
  margin: 0 0 12px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.services,
.capabilities,
.difference,
.programs,
.process,
.property-types,
.assurance,
.faq,
.contact {
  padding-block: clamp(64px, 9vw, 112px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  margin-bottom: clamp(32px, 6vw, 62px);
}

.section-heading h2 {
  color: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 360px;
  padding: clamp(22px, 2.6vw, 30px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
}

.service-card span,
.process-list span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  border: 1px solid rgba(223, 184, 97, 0.42);
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 900;
}

.service-card h3,
.difference-list h3,
.process-list h3,
.program-grid h3,
.capability-grid h3 {
  margin: 52px 0 12px;
  color: var(--white);
  font-size: 1.18rem;
  line-height: 1.12;
}

.service-card p,
.difference-list p,
.process-list p,
.property-copy p,
.assurance-grid p,
.faq p,
.contact-copy p,
.program-grid p {
  margin: 0;
  color: rgba(231, 236, 233, 0.72);
}

.service-points,
.capability-grid ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-points li,
.capability-grid li {
  position: relative;
  padding-left: 18px;
  color: rgba(231, 236, 233, 0.66);
  font-size: 0.91rem;
}

.service-points li::before,
.capability-grid li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--gold-bright);
  transform: translateY(-50%);
}

.capabilities {
  padding-top: 0;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.capability-grid article {
  padding: clamp(24px, 3vw, 36px);
  background: var(--iron-2);
}

.capability-grid h3 {
  margin: 0 0 18px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.difference {
  width: 100%;
  margin-inline: 0;
  padding-inline: max(20px, calc((100% - var(--max)) / 2));
  background: var(--green);
}

.difference-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.difference-list article {
  min-height: 260px;
  padding: clamp(22px, 2.6vw, 32px);
  background: var(--green);
}

.difference-list h3 {
  margin-top: 0;
}

.programs {
  padding-top: 0;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.program-grid article {
  padding: clamp(23px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.program-grid h3 {
  margin: 0 0 14px;
  min-height: 2.35em;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.process-list h3 {
  margin-top: 34px;
}

.property-types {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: start;
}

.property-copy h2 {
  color: var(--white);
}

.property-copy p {
  margin-top: 24px;
}

.property-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.property-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: rgba(231, 236, 233, 0.88);
  font-size: clamp(1.06rem, 1.7vw, 1.35rem);
  font-weight: 700;
}

.assurance {
  width: 100%;
  margin-inline: 0;
  padding-inline: max(20px, calc((100% - var(--max)) / 2));
  color: var(--ink);
  background: var(--mist);
}

.assurance .section-label {
  color: #80601d;
}

.assurance .section-heading h2,
.assurance-grid p {
  color: var(--ink);
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(23, 32, 29, 0.14);
}

.assurance-grid p {
  min-height: 190px;
  padding: clamp(22px, 2.8vw, 32px);
  background: var(--mist);
  font-size: 1.04rem;
  font-weight: 700;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  padding: 23px 0;
  color: var(--white);
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
  font-weight: 800;
}

.faq details[open] summary {
  color: var(--gold-bright);
}

.faq p {
  max-width: 850px;
  padding-bottom: 24px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(380px, 1.22fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy p {
  margin-top: 24px;
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-methods a {
  color: var(--gold-bright);
  font-weight: 800;
}

.walkthrough-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.walkthrough-form label {
  display: grid;
  gap: 8px;
  color: rgba(231, 236, 233, 0.78);
  font-size: 0.84rem;
  font-weight: 800;
}

.service-selector {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  border: 0;
}

.service-selector legend {
  padding: 0;
  color: rgba(231, 236, 233, 0.78);
  font-size: 0.84rem;
  font-weight: 800;
}

.service-selector p {
  margin: 0;
  color: rgba(231, 236, 233, 0.68);
  font-size: 0.92rem;
}

.service-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.walkthrough-form .choice-card {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  min-height: 48px;
  padding: 12px 13px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(7, 17, 15, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.walkthrough-form .choice-card:hover,
.walkthrough-form .choice-card:focus-within {
  border-color: var(--gold-bright);
  background: rgba(21, 56, 47, 0.72);
}

.choice-card span {
  min-width: 0;
}

.walkthrough-form input,
.walkthrough-form select,
.walkthrough-form textarea {
  width: 100%;
  min-height: 48px;
  color: var(--white);
  background: rgba(7, 17, 15, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  padding: 12px 13px;
  outline: none;
}

.walkthrough-form textarea {
  resize: vertical;
}

.walkthrough-form input:focus,
.walkthrough-form select:focus,
.walkthrough-form textarea:focus {
  border-color: var(--gold-bright);
}

.walkthrough-form .choice-card input {
  width: 17px;
  height: 17px;
  min-height: 0;
  margin: 0;
  padding: 0;
  accent-color: var(--gold);
}

.full-span {
  grid-column: 1 / -1;
}

.hidden-field {
  display: none;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(20px, 4vw, 54px);
  border-top: 1px solid var(--line);
  color: rgba(231, 236, 233, 0.68);
  font-size: 0.92rem;
}

.site-footer img {
  width: 168px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--gold-bright);
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    min-height: 74px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 10px 12px;
    font-size: 0.82rem;
    font-weight: 900;
  }

  .nav-lines {
    display: grid;
    gap: 3px;
  }

  .nav-lines span {
    display: block;
    width: 15px;
    height: 2px;
    background: currentColor;
  }

  .site-nav {
    position: fixed;
    inset: 74px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px;
    background: var(--iron);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.36);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-nav .nav-cta {
    margin-top: 16px;
    text-align: center;
    border-bottom: 1px solid var(--gold-bright);
  }

  .hero,
  .intro-band,
  .section-heading,
  .property-types,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 50px;
  }

  .hero-media,
  .hero-media img {
    min-height: 360px;
  }

  .service-grid,
  .difference-list,
  .process-list,
  .program-grid,
  .assurance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .section-shell {
    width: min(100% - 30px, var(--max));
  }

  .hero-copy h1 {
    font-size: clamp(2.55rem, 12.2vw, 3.9rem);
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-media,
  .hero-media img {
    min-height: 300px;
  }

  .service-grid,
  .capability-grid,
  .difference-list,
  .process-list,
  .program-grid,
  .assurance-grid,
  .service-choice-grid,
  .walkthrough-form {
    grid-template-columns: 1fr;
  }

  .service-card,
  .difference-list article,
  .assurance-grid p {
    min-height: auto;
  }

  .service-card h3 {
    margin-top: 36px;
  }

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

  .program-grid h3 {
    min-height: 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
