:root {
  --black: #070707;
  --graphite: #151515;
  --graphite-2: #222;
  --white: #f8f7f3;
  --muted: #c7c1b5;
  --muted-2: #918a7d;
  --gold: #c6a35a;
  --gold-bright: #e3c878;
  --line: rgba(248, 247, 243, 0.14);
  --line-dark: rgba(7, 7, 7, 0.14);
  --shadow: 0 22px 72px rgba(0, 0, 0, 0.34);
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
}

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

img {
  max-width: 100%;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px clamp(18px, 5vw, 64px);
  background: linear-gradient(180deg, rgba(7, 7, 7, 0.92), rgba(7, 7, 7, 0.35), rgba(7, 7, 7, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark,
.form-icon,
.card-icon,
.why-grid span {
  display: grid;
  place-items: center;
  border: 1px solid rgba(227, 200, 120, 0.48);
  border-radius: 5px;
  color: var(--gold-bright);
  background: rgba(7, 7, 7, 0.42);
}

.brand-mark {
  width: 40px;
  height: 40px;
  overflow: hidden;
  padding: 2px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  border-radius: 3px;
  object-fit: cover;
  object-position: center;
}

.brand strong,
.brand .brand-subline {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand .brand-subline {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.8vw, 30px);
  color: rgba(248, 247, 243, 0.82);
  font-size: 0.86rem;
}

.nav-links a,
.footer-links a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--gold-bright);
}

.header-cta {
  border: 1px solid rgba(227, 200, 120, 0.45);
  border-radius: 4px;
  padding: 10px 13px;
  color: var(--gold-bright);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 50%;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.95) 0%, rgba(7, 7, 7, 0.84) 35%, rgba(7, 7, 7, 0.38) 66%, rgba(7, 7, 7, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 7, 7, 0.88) 0%, rgba(7, 7, 7, 0.08) 54%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.64fr);
  gap: clamp(26px, 5vw, 68px);
  align-items: center;
  width: min(1240px, calc(100% - 40px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 112px 0 72px;
}

.hero-copy-block {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-bright);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.55;
  text-transform: uppercase;
}

.icon-line {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.icon-line span {
  color: var(--gold-bright);
  font-size: 1rem;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.35rem, 6.4vw, 6.65rem);
  line-height: 0.9;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 4.6vw, 4.55rem);
  line-height: 0.98;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.06rem, 1.7vw, 1.34rem);
  line-height: 1.18;
}

.hero-subtitle {
  max-width: 690px;
  margin-bottom: 30px;
  color: rgba(248, 247, 243, 0.8);
  font-size: clamp(1.05rem, 1.55vw, 1.24rem);
  line-height: 1.72;
}

.hero-actions,
.estimate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

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

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

.button-primary {
  background: var(--gold);
  color: #11100c;
}

.button-secondary {
  border-color: rgba(227, 200, 120, 0.48);
  background: rgba(7, 7, 7, 0.5);
  color: var(--gold-bright);
}

.trust-line {
  max-width: 620px;
  margin: 0;
  color: rgba(248, 247, 243, 0.64);
  font-size: 0.91rem;
  line-height: 1.55;
}

.lead-form {
  border: 1px solid var(--line);
  border-radius: 7px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.022)),
    rgba(18, 18, 18, 0.82);
  box-shadow: var(--shadow);
}

.quick-lead-form {
  padding: clamp(18px, 2.6vw, 28px);
  backdrop-filter: blur(18px);
}

.form-heading {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-bottom: 20px;
}

.form-icon {
  width: 44px;
  height: 44px;
}

.form-heading h2 {
  margin-bottom: 7px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.18rem;
  font-weight: 760;
  line-height: 1.15;
}

.form-heading p,
.lead-section > div > p,
.category-card p,
.split-panel p,
.why-grid p,
.photo-cta p,
.compliance p {
  color: rgba(248, 247, 243, 0.7);
  line-height: 1.7;
}

.lead-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 13px;
}

.lead-form label span {
  color: rgba(248, 247, 243, 0.78);
  font-size: 0.8rem;
  font-weight: 760;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(248, 247, 243, 0.16);
  border-radius: 4px;
  background: rgba(7, 7, 7, 0.55);
  color: var(--white);
  font: inherit;
  min-height: 46px;
  padding: 11px 12px;
}

textarea {
  resize: vertical;
}

input[type="file"].native-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.file-upload-control {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 46px;
  border: 1px solid rgba(248, 247, 243, 0.16);
  border-radius: 4px;
  background: rgba(7, 7, 7, 0.55);
  padding: 6px;
}

.file-upload-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 3px;
  background: rgba(198, 163, 90, 0.18);
  color: var(--gold-bright);
  padding: 8px 11px;
  font-size: 0.75rem;
  font-weight: 820;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.file-upload-name {
  min-width: 0;
  overflow: hidden;
  color: rgba(248, 247, 243, 0.66);
  font-size: 0.84rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

select {
  appearance: none;
}

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

.form-status {
  min-height: 1.5em;
  margin: 12px 0 0;
  color: var(--gold-bright);
  font-size: 0.86rem;
  line-height: 1.55;
}

.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.section-heading,
.category-section,
.split-section,
.why-section,
.service-area,
.lead-section,
.compliance,
.page-hero,
.content-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.category-section,
.why-section,
.lead-section,
.content-section {
  padding: clamp(72px, 9vw, 118px) 0;
}

.section-heading {
  margin-bottom: clamp(32px, 5vw, 54px);
}

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

.category-card {
  grid-column: span 2;
  min-height: 255px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.014)),
    var(--graphite);
  box-shadow: var(--shadow);
  transition:
    transform 160ms ease,
    border-color 160ms ease;
}

.category-card:hover {
  border-color: rgba(227, 200, 120, 0.36);
  transform: translateY(-2px);
}

.card-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.badge {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  margin-bottom: 18px;
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.badge-direct {
  border: 1px solid rgba(227, 200, 120, 0.34);
  color: var(--gold-bright);
  background: rgba(198, 163, 90, 0.1);
}

.badge-partner {
  border: 1px solid rgba(248, 247, 243, 0.16);
  color: rgba(248, 247, 243, 0.82);
  background: rgba(248, 247, 243, 0.07);
}

.split-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding-bottom: clamp(72px, 9vw, 116px);
}

.split-panel {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: clamp(26px, 4vw, 44px);
  background: var(--graphite);
}

.partner-panel {
  background: var(--white);
  color: var(--black);
}

.partner-panel .eyebrow {
  color: #8a6b2f;
}

.partner-panel p,
.partner-panel .check-list li {
  color: rgba(7, 7, 7, 0.74);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li {
  border: 1px solid currentColor;
  border-color: rgba(248, 247, 243, 0.14);
  border-radius: 4px;
  padding: 10px 12px;
  color: rgba(248, 247, 243, 0.76);
  font-size: 0.9rem;
  line-height: 1.35;
}

.partner-panel .check-list li {
  border-color: rgba(7, 7, 7, 0.12);
}

.disclaimer-note {
  border-top: 1px solid var(--line-dark);
  margin: 26px 0 0;
  padding-top: 18px;
  font-size: 0.88rem;
}

.photo-cta,
.service-area {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 7vw, 80px);
  align-items: center;
  padding: clamp(56px, 7vw, 82px) clamp(20px, 6vw, 84px);
}

.photo-cta {
  background: var(--white);
  color: var(--black);
}

.photo-cta .eyebrow,
.photo-cta p {
  color: #7f642e;
}

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

.why-grid div {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.why-grid span {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
}

.service-area {
  border-block: 1px solid var(--line);
  background: #0d0d0d;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: flex-end;
}

.area-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  color: rgba(248, 247, 243, 0.76);
  font-size: 0.83rem;
}

.lead-section {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(420px, 1fr);
  gap: clamp(32px, 7vw, 84px);
  align-items: start;
}

.full-form {
  padding: clamp(20px, 3vw, 34px);
}

.checkbox-row {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 10px !important;
}

.checkbox-row input {
  width: 18px;
  min-height: 18px;
}

.compliance {
  border-top: 1px solid var(--line);
  padding: clamp(46px, 7vw, 74px) 0;
}

.compliance h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding: 26px clamp(20px, 5vw, 64px);
  color: rgba(248, 247, 243, 0.64);
}

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

.site-footer p {
  margin: 6px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.page-hero {
  padding: 134px 0 clamp(54px, 7vw, 82px);
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 6.2vw, 6.2rem);
}

.page-hero p {
  max-width: 760px;
  color: rgba(248, 247, 243, 0.72);
  font-size: 1.08rem;
  line-height: 1.75;
}

.simple-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.simple-card {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 24px;
  background: var(--graphite);
}

.simple-card p {
  color: rgba(248, 247, 243, 0.7);
  line-height: 1.7;
}

.division-section {
  border-top: 1px solid var(--line);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.package-card {
  display: flex;
  min-height: 265px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012)),
    var(--graphite);
}

.package-card-wide {
  grid-column: span 2;
}

.package-card h3 {
  margin-bottom: 14px;
}

.package-card p {
  color: rgba(248, 247, 243, 0.7);
  line-height: 1.68;
}

.package-card .package-price {
  margin: auto 0 0;
  color: var(--gold-bright);
  font-size: 0.95rem;
  font-weight: 820;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.package-card .package-note {
  margin: 8px 0 0;
  color: rgba(248, 247, 243, 0.56);
  font-size: 0.86rem;
}

.services-split {
  padding-top: 0;
}

@media (max-width: 1100px) {
  .category-card {
    grid-column: span 5;
  }

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

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

@media (max-width: 880px) {
  .site-header {
    position: absolute;
  }

  .nav-links {
    display: none;
  }

  .hero-inner,
  .split-section,
  .photo-cta,
  .service-area,
  .lead-section {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    align-items: end;
    padding-top: 112px;
  }

  .quick-lead-form {
    max-width: 620px;
  }

  .photo-cta,
  .service-area {
    width: 100%;
  }

  .area-list {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .header-cta {
    display: none;
  }

  .brand strong {
    font-size: 0.78rem;
  }

  .brand .brand-subline {
    font-size: 0.66rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .hero-inner,
  .section-heading,
  .category-section,
  .split-section,
  .why-section,
  .service-area,
  .lead-section,
  .compliance,
  .page-hero,
  .content-section {
    width: min(100% - 32px, 1180px);
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  .hero-actions,
  .estimate-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .form-grid-two,
  .check-list,
  .why-grid,
  .simple-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .package-card-wide {
    grid-column: auto;
  }

  .category-card {
    grid-column: span 10;
    min-height: auto;
  }

  .photo-cta,
  .service-area {
    padding-inline: 16px;
  }
}
