:root {
  --ink: #17120b;
  --ink-soft: #5b5145;
  --brass: #b8872d;
  --espresso: #15110b;
  --cta-gold: #c99a45;
  --gold: #d7b66f;
  --paper: #fffaf1;
  --mist: #f5ecdc;
  --line: rgba(23, 18, 11, .14);
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(23, 18, 11, .14);
  --display: Georgia, "Times New Roman", serif;
  --body: Inter, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

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

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  padding: 10px 12px;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(21, 17, 11, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.08);
  font-family: var(--display);
  font-weight: 700;
}

.brand strong {
  display: block;
  font-family: var(--display);
  font-size: 1.18rem;
}

.brand small {
  display: block;
  color: rgba(255,255,255,.68);
  font-size: .72rem;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255,255,255,.82);
  font-size: .93rem;
}

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

.nav-cta {
  padding: 11px 16px;
  background: var(--cta-gold);
  color: var(--ink) !important;
  border-radius: 6px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.28);
  background: transparent;
  border-radius: 6px;
  padding: 10px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  min-height: calc(100vh - 72px);
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-media,
.hero-media img,
.hero-media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

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

.hero-media iframe {
  border: 0;
  left: 50%;
  top: 50%;
  width: max(100%, 177.778vh);
  height: max(100%, 56.25vw);
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 17, 11, .88) 0%, rgba(49, 38, 24, .62) 48%, rgba(112, 82, 35, .18) 100%),
    linear-gradient(0deg, rgba(21, 17, 11, .76), rgba(21, 17, 11, .08));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(52px, 8vh, 82px) 0 48px;
  color: var(--white);
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--gold);
  font-weight: 800;
  font-size: .78rem;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #d7b56d;
}

.hero h1,
.section-head h2,
.intro h2,
.feature h2,
.zones h2,
.profile h2,
.contact h2 {
  font-family: var(--display);
  line-height: 1.05;
  margin: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.82);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 6px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
}

.button.primary {
  background: var(--cta-gold);
  color: var(--ink);
}

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

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 820px;
  margin-top: 42px;
}

.hero-facts span {
  display: block;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  color: rgba(255,255,255,.75);
}

.hero-facts strong {
  display: block;
  color: var(--white);
}

section {
  padding: 86px 0;
}

.band-light {
  background: var(--mist);
}

.intro-grid,
.zones-grid,
.profile-grid,
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 52px;
  align-items: center;
}

.intro h2,
.feature h2,
.zones h2,
.profile h2,
.contact h2,
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.intro p,
.section-head p,
.feature-copy p,
.zones p,
.profile-copy p,
.contact-copy p {
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: 1rem;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.compact {
  margin-bottom: 0;
}

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

.service-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(33,23,12,.08);
  min-height: 290px;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(185,139,58,.12);
  color: var(--brass);
  font-weight: 900;
}

.service-card h3 {
  margin: 22px 0 10px;
  font-family: var(--display);
  font-size: 1.55rem;
}

.service-card p {
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0 0 24px;
}

.service-card a {
  margin-top: auto;
  color: var(--brass);
  font-weight: 900;
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 560px);
  padding: 0;
  background: var(--espresso);
  color: var(--white);
}

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

.feature-copy {
  padding: 74px clamp(28px, 6vw, 76px);
}

.feature-copy .section-label {
  color: #d7b56d;
}

.steps {
  padding: 0;
  margin: 32px 0 0;
  list-style: none;
}

.steps li {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.78);
  line-height: 1.65;
}

.steps strong {
  color: var(--white);
}

.zone-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.zone-list span,
.trust-row span,
.contact-panel span {
  display: block;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  padding: 14px 16px;
  font-weight: 800;
}

.profile-photo {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--mist);
}

.profile-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact {
  background: var(--ink);
  color: var(--white);
}

.contact .section-label {
  color: #d7b56d;
}

.contact-copy p {
  color: rgba(255,255,255,.74);
}

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

.contact-panel strong {
  font-family: var(--display);
  font-size: 1.45rem;
}

.contact-panel span {
  border-color: rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.84);
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.full,
.form-submit,
.form-status {
  grid-column: 1 / -1;
}

label {
  font-weight: 800;
  font-size: .86rem;
}

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

textarea {
  resize: vertical;
}

.form-status {
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
}

.footer {
  background: var(--espresso);
  color: rgba(255,255,255,.72);
  padding: 34px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 24px;
  align-items: center;
}

.footer strong {
  color: var(--white);
  font-family: var(--display);
  font-size: 1.45rem;
}

.footer a {
  display: inline-block;
  margin-right: 14px;
  color: rgba(255,255,255,.86);
}

.footer-note {
  margin: 0;
  text-align: right;
  font-size: .88rem;
}

@media (max-width: 980px) {
  .menu-button {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 72px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--espresso);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 14px 12px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero-facts,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-grid,
  .zones-grid,
  .profile-grid,
  .contact-grid,
  .feature {
    grid-template-columns: 1fr;
  }

  .feature-image img {
    min-height: 360px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-note {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .container,
  .nav {
    width: min(100% - 28px, 1120px);
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 72px);
  }

  .hero-content {
    padding: 48px 0 34px;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .hero-facts,
  .service-grid,
  .zone-list,
  .lead-form {
    grid-template-columns: 1fr;
  }

  section {
    padding: 64px 0;
  }

  .feature {
    padding: 0;
  }

  .feature-copy {
    padding: 52px 20px;
  }
}
