@font-face {
  font-family: "Source Sans 3";
  src: url("../assets/fonts/SourceSans3-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans 3";
  src: url("../assets/fonts/SourceSans3-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans 3";
  src: url("../assets/fonts/SourceSans3-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../assets/fonts/Montserrat-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Russo One";
  src: url("../assets/fonts/RussoOne-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --gold: #c49a37;
  --black: #0a0a0a;
  --white: #ffffff;
  --paper: #f6f3ec;
  --ink: #0a0a0a;
  --muted: #b8b3a8;
  --card-dark: #141414;
  --line: #2a261c;
  --header-h: 132px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #0A0A0A;
  color: #ffffff;
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--gold);
  color: var(--black);
  padding: 0.5rem 1rem;
  z-index: 1000;
}
.skip:focus { left: 8px; }

.wrap {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.eyebrow {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.75rem;
}

h1, h2, .display {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1.12;
  margin: 0 0 1rem;
}
h1 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.15rem); }
h3 {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}
p { margin: 0 0 1rem; }
.lede { font-size: 1.15rem; color: #ece8df; max-width: 40rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #0A0A0A;
  border-bottom: 1px solid #1c1c1c;
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo-link { display: flex; align-items: center; position: relative; }
.logo-link img { height: 120px; width: auto; }
.logo-link .logo-on-light { display: none; }
.logo-link .logo-on-dark { display: block; }
.logo-link:hover { text-decoration: none; }

.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}
.nav a {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.nav a[aria-current="page"] { color: var(--gold); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.4rem 0.7rem;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
}

body.has-hero .site-header {
  position: absolute;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.55);
  border-bottom: 1px solid transparent;
}
body.has-hero .site-header.is-solid,
body.has-hero.is-scrolled .site-header {
  position: sticky;
  background: #0A0A0A;
  border-bottom-color: #1c1c1c;
}
body.has-hero .logo-link .logo-on-light { display: none !important; }
body.has-hero .logo-link .logo-on-dark { display: block !important; }
body.has-hero .nav a { color: var(--white); }
body.has-hero .nav a[aria-current="page"] { color: var(--gold); }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 2rem) 0 5rem;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.42) 0%, rgba(10,10,10,0.38) 45%, rgba(10,10,10,0.72) 100%),
    url("../assets/images/hero-roof.jpg") center / cover no-repeat;
}
.hero-inner { width: min(1120px, calc(100% - 2.5rem)); margin-inline: auto; }
.hero .display { max-width: 16ch; color: var(--white); }
.hero .lede { max-width: 36rem; color: #f4f0e6; }
.hero .eyebrow { color: var(--gold); }

.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.65rem 1.15rem;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid var(--gold);
  cursor: pointer;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: #d4ad4a; }
.btn-ghost { background: transparent; color: var(--white); }
.btn-ghost:hover { background: rgba(196,154,55,0.18); color: var(--white); }
.section-panel .btn-ghost,
.band-light .btn-ghost {
  color: var(--ink);
}
.section-panel .btn-ghost:hover,
.band-light .btn-ghost:hover {
  background: rgba(196,154,55,0.12);
  color: var(--ink);
}

.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0A0A0A;
  padding: 1.15rem 0;
}
.trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}
.trust-list strong { color: var(--white); font-weight: 700; display: block; }

.section { padding: 4.5rem 0; background: #0A0A0A; color: #ffffff; }
.section-dark { background: #0A0A0A; color: #ffffff; }
.section-panel,
.band-light {
  background: #F6F3EC;
  color: #0A0A0A;
}
.section-panel h1,
.section-panel h2,
.section-panel h3,
.section-panel .display,
.band-light h1,
.band-light h2,
.band-light h3 {
  color: #0A0A0A;
}
.section-panel .lede,
.band-light .lede {
  color: #1a1814;
}
.section-panel p,
.band-light p { color: #1a1814; }
.rule { height: 2px; width: 48px; background: var(--gold); margin: 0 0 1.25rem; border: 0; }

.photo-band {
  min-height: 42vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.photo-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.22), rgba(10,10,10,0.42));
}
.photo-band-tired { background-image: url("../assets/images/band-tired.jpg"); }
.photo-band-vents { background-image: url("../assets/images/band-vents.jpg"); }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.card {
  background: var(--card-dark);
  border: 1px solid var(--gold);
  padding: 1.4rem 1.3rem 1.5rem;
  color: #ece8df;
}
.card h2, .card h3 { color: var(--white); }
.card p:last-child { margin-bottom: 0; }
.card.featured {
  border-color: var(--gold);
  box-shadow: inset 0 0 0 1px var(--gold);
}
.section-panel .card,
.band-light .card {
  background: #fffefb;
  border: 1px solid #e4dfd4;
  color: #1a1814;
}
.section-panel .card h2,
.section-panel .card h3,
.band-light .card h2,
.band-light .card h3 {
  color: #0A0A0A;
}
.section-panel .card.featured,
.band-light .card.featured {
  border-color: var(--gold);
  box-shadow: inset 0 0 0 1px var(--gold);
}
.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 0.2rem 0.45rem;
  margin-bottom: 0.7rem;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.area-list li {
  border: 1px solid var(--gold);
  padding: 0.4rem 0.7rem;
  color: var(--white);
  font-weight: 600;
  background: var(--card-dark);
}

.site-footer {
  border-top: 1px solid #2a261c;
  padding: 2.75rem 0 2rem;
  background: #0A0A0A;
  color: #e8e4dc;
}
.site-footer .fine { color: #a39d90; }
.site-footer h1,
.site-footer h2,
.site-footer h3 { color: var(--white); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
}
.footer-logo { height: 92px; width: auto; }
.footer-nav { display: flex; flex-direction: column; gap: 0.45rem; }
.footer-nav a { color: var(--white); font-weight: 600; }
.fine { color: var(--muted); font-size: 0.9rem; }
.legal-bar {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #2a261c;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: #a39d90;
  font-size: 0.85rem;
}

.page-hero {
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid var(--line);
  background: #0A0A0A;
  color: #ffffff;
}
.page-hero h1 { color: var(--white); }
.page-hero .lede { color: #ece8df; }

.plan-meta { color: var(--muted); font-size: 0.95rem; }
.plan-meta dt { color: var(--gold); font-weight: 700; margin-top: 0.7rem; }
.plan-meta dd { margin: 0.15rem 0 0; }
.section-panel .plan-meta { color: #5c574d; }
.card .plan-meta { color: inherit; }

.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.value {
  text-align: center;
  padding: 1.2rem 0.8rem;
  border: 1px solid #e4dfd4;
  background: #fffefb;
  color: #1a1814;
}
.value h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0A0A0A;
}
.value img { height: 72px; width: auto; margin: 0 auto 0.75rem; }

form { display: grid; gap: 0.9rem; max-width: 36rem; }
label { font-weight: 600; color: var(--white); display: grid; gap: 0.35rem; }
.section-panel label { color: #0A0A0A; }
input, select, textarea {
  font: inherit;
  background: #141414;
  color: var(--white);
  border: 1px solid #3a3428;
  padding: 0.65rem 0.7rem;
  width: 100%;
}
.section-panel input,
.section-panel select,
.section-panel textarea {
  background: var(--white);
  color: var(--ink);
  border: 1px solid #e4dfd4;
}
textarea { min-height: 120px; resize: vertical; }
.contact-aside { color: var(--muted); }

@media (max-width: 900px) {
  .trust-list, .grid-3, .footer-grid, .values { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    left: 0; right: 0;
    top: var(--header-h);
    flex-direction: column;
    align-items: flex-start;
    background: #0A0A0A;
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem 1.25rem;
    gap: 0.85rem;
  }
  .nav a { color: var(--white); }
  .nav.is-open { display: flex; }
  .trust-list, .grid-3, .footer-grid, .values { grid-template-columns: 1fr; }
  .hero { min-height: 80vh; align-items: center; }
  .logo-link img { height: 88px; }
}
