:root {
  --ink: #050505;
  --ink-2: #111111;
  --paper: #f5f1e8;
  --white: #ffffff;
  --gold: #f6b400;
  --gold-2: #d79a00;
  --red: #af0f14;
  --red-deep: #68070a;
  --line: rgba(246, 180, 0, 0.5);
  --muted: #d9d4c8;
  --text: #171717;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  font-family: "Inter", "Arial", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  padding: 0.65rem 0.85rem;
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 5, 5, 0.98);
  color: var(--white);
  border-bottom: 2px solid var(--gold);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: min(1180px, calc(100% - 2rem));
  min-height: 104px;
  margin: 0 auto;
}

.brand {
  display: grid;
  grid-template-columns: auto 1px auto;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 126px;
  min-width: 126px;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
}

.brand-divider {
  width: 1px;
  height: 64px;
  background: var(--gold);
}

.brand-copy strong {
  display: block;
  font-family: Georgia, serif;
  font-size: clamp(1.15rem, 2vw, 1.72rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.brand-copy span {
  display: block;
  margin-top: 0.4rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-copy {
  min-width: 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.primary-nav a {
  padding: 0.85rem 1rem;
  border-bottom: 3px solid transparent;
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav a[aria-current="page"],
.primary-nav a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 46px;
  padding-left: 1.35rem;
  border-left: 2px solid var(--gold);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.phone-dot,
.icon-disc {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 900;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 104px);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(42, 2, 3, 0.88) 28%, rgba(104, 7, 10, 0.62) 55%, rgba(5, 5, 5, 0.08) 78%),
    url("/assets/curb-appeal-hero.jpg") center right / cover no-repeat;
}

.hero::after,
.page-hero::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  left: 48%;
  width: 16px;
  content: "";
  background: var(--gold);
  transform: skewX(-14deg);
  box-shadow: -18px 0 0 rgba(128, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  width: min(1180px, calc(100% - 2rem));
  min-height: calc(100vh - 104px);
  margin: 0 auto;
  padding: 5rem 0;
}

.hero h1,
.page-hero h1,
.section-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(3.6rem, 8vw, 7.4rem);
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.48);
}

.gold {
  color: var(--gold);
}

.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: min(560px, 100%);
  margin: 1.4rem 0 1.65rem;
  color: var(--gold);
}

.divider::before,
.divider::after {
  flex: 1;
  height: 3px;
  content: "";
  background: var(--red);
}

.divider-house {
  flex: 0 0 auto;
  width: 48px;
  height: 36px;
  background: url("/assets/brand-house-mark.png") center / contain no-repeat;
}

.hero-lede {
  max-width: 570px;
  margin: 0;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.35;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.76);
}

.hero-note {
  margin: 1.5rem 0 0;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.82);
}

.hero-note-nowrap {
  display: inline-block;
  white-space: nowrap;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  max-width: 100%;
  min-height: 58px;
  padding: 0.9rem 1.5rem;
  border: 2px solid var(--gold);
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--red);
  color: var(--white);
}

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

.button-outline {
  background: rgba(0, 0, 0, 0.55);
  color: var(--white);
}

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(92, 4, 8, 0.86) 42%, rgba(92, 4, 8, 0.44) 62%, rgba(0, 0, 0, 0.08) 78%),
    url("/assets/curb-appeal-hero.jpg") center right / cover no-repeat;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 5rem 0;
}

.page-hero h1 {
  max-width: 680px;
  font-size: clamp(3rem, 6vw, 5rem);
}

.page-hero p {
  max-width: 620px;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.42;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.76);
}

.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 4.5rem 0;
}

.section-title {
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  text-align: center;
}

.section-intro {
  max-width: 760px;
  margin: 1rem auto 0;
  font-size: 1.16rem;
  line-height: 1.55;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.service-area-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  max-width: 880px;
  margin: 2rem auto 0;
  padding: 1.25rem 1.4rem;
  color: var(--white);
  background: var(--ink);
  border: 2px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(10, 10, 10, 0.14);
}

.service-area-card h3 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.1;
}

.service-area-card p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.service-item {
  display: flex;
  min-height: 240px;
  padding: 1.65rem 1.25rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(215, 154, 0, 0.32);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(10, 10, 10, 0.06);
}

.service-icon {
  display: block;
  width: min(58%, 168px);
  height: 112px;
  margin-bottom: 1.1rem;
  object-fit: contain;
}

.service-item h2,
.service-item h3 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.05;
}

.service-item p {
  margin: 0;
  color: #4b4943;
  font-size: 1.04rem;
  line-height: 1.35;
}

.proof-band,
.cta-band {
  color: var(--white);
  background: var(--ink);
  border-block: 2px solid var(--gold);
}

.proof-inner,
.cta-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2.2rem 0;
}

.proof-inner h2,
.cta-inner h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.proof-inner p,
.cta-inner p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.process-step {
  padding: 1.6rem;
  border-top: 5px solid var(--gold);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.process-step span {
  color: var(--red);
  font-weight: 900;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 3.5rem;
  align-items: start;
}

.contact-panel {
  color: var(--white);
  background: var(--ink);
  border: 2px solid var(--gold);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-panel-header {
  padding: 1.6rem 1.8rem 0.5rem;
}

.contact-panel h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(1.85rem, 3vw, 2.6rem);
}

.contact-panel p {
  margin: 0.4rem 0 0;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.3rem 1.8rem 1.8rem;
}

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

.field {
  display: grid;
  gap: 0.35rem;
}

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

label {
  font-size: 0.86rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  padding: 0.75rem 0.85rem;
  background: #f7f7f7;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 118px;
  resize: vertical;
}

.upload-field {
  position: relative;
  display: grid;
  gap: 0.65rem;
}

.upload-field input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.upload-dropzone {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.85rem;
  min-height: 92px;
  padding: 0.95rem;
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 184, 0, 0.18), rgba(125, 6, 10, 0.18)), rgba(255, 255, 255, 0.06);
  border: 1px dashed rgba(255, 184, 0, 0.72);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.upload-dropzone:hover,
.upload-field[data-dragging="true"] .upload-dropzone,
.upload-field input[type="file"]:focus-visible + .upload-dropzone {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(255, 184, 0, 0.28), rgba(198, 9, 15, 0.22)), rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.upload-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  background: var(--gold);
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.upload-dropzone strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.2;
}

.upload-dropzone small {
  display: block;
  margin-top: 0.22rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
}

.photo-list {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.photo-pill {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 0.55rem;
  min-height: 42px;
  padding: 0.5rem 0.55rem 0.5rem 0.7rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
}

.photo-pill span {
  overflow: hidden;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.photo-pill small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
}

.photo-pill button {
  min-height: 30px;
  padding: 0.3rem 0.55rem;
  color: var(--gold);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  background: transparent;
  border: 1px solid rgba(255, 184, 0, 0.55);
  border-radius: 5px;
  cursor: pointer;
}

.photo-pill button:hover,
.photo-pill button:focus-visible {
  color: var(--ink);
  background: var(--gold);
}

.help-text {
  color: #665b45;
  font-size: 0.92rem;
}

.contact-form .help-text {
  color: var(--muted);
}

.form-actions {
  display: grid;
  gap: 0.85rem;
}

.turnstile-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  font-weight: 800;
}

.form-status[data-state="success"] {
  color: #9ef09e;
}

.form-status[data-state="error"] {
  color: #ffb6b6;
}

.contact-success {
  display: grid;
  gap: 1rem;
  padding: 1.8rem;
}

.contact-success[hidden] {
  display: none;
}

.success-mark {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--ink);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  background: var(--gold);
  border-radius: 8px;
}

.contact-success h2 {
  max-width: 520px;
}

.contact-success p {
  max-width: 560px;
  font-size: 1.08rem;
  line-height: 1.5;
}

.contact-success .button {
  width: fit-content;
}

.direct-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.direct-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(215, 154, 0, 0.35);
}

.direct-item strong {
  display: block;
}

.direct-item a,
.direct-item span {
  color: var(--red);
  font-weight: 900;
  text-decoration: none;
}

.faq-list {
  display: grid;
  gap: 1rem;
  max-width: 880px;
  margin: 2.5rem auto 0;
}

.faq-list details {
  padding: 1.25rem 1.4rem;
  background: var(--white);
  border-left: 5px solid var(--gold);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin-bottom: 0;
  line-height: 1.55;
}

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

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0;
}

.footer-inner p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-links a {
  color: var(--gold);
  font-weight: 800;
  text-decoration: none;
}

.sticky-mobile-call {
  display: none;
}

.not-found {
  display: grid;
  min-height: 100vh;
  place-content: center;
  padding: 2rem;
  color: var(--white);
  background: var(--ink);
}

.brand-line {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.screen-reader-only,
.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

@media (max-width: 960px) {
  body {
    padding-bottom: 74px;
  }

  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
    gap: 0.85rem;
    min-height: 86px;
  }

  .brand {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.75rem;
    min-width: 0;
  }

  .brand-divider,
  .header-phone {
    display: none;
  }

  .brand-mark {
    width: 70px;
    min-width: 70px;
  }

  .brand-copy strong {
    font-size: 0.96rem;
    line-height: 1.04;
    overflow-wrap: anywhere;
  }

  .brand-copy span {
    max-width: 184px;
    margin-top: 0.3rem;
    font-size: 0.62rem;
    line-height: 1.22;
    overflow-wrap: anywhere;
  }

  .menu-toggle {
    display: block;
  }

  .nav-wrap {
    position: fixed;
    inset: 86px 0 0;
    display: none;
    align-content: start;
    padding: 1rem;
    background: rgba(5, 5, 5, 0.98);
  }

  .nav-wrap[data-open="true"] {
    display: grid;
  }

  .primary-nav {
    display: grid;
    gap: 0.4rem;
  }

  .primary-nav a {
    min-height: 52px;
    padding: 1rem;
    border: 1px solid rgba(246, 180, 0, 0.4);
  }

  .nav-wrap .header-phone {
    display: inline-flex;
    padding: 1rem;
    border: 1px solid var(--gold);
  }

  .hero,
  .hero-content {
    min-height: calc(100vh - 86px);
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.92) 0%, rgba(82, 4, 7, 0.84) 68%, rgba(5, 5, 5, 0.3) 100%),
      url("/assets/curb-appeal-hero.jpg") center / cover no-repeat;
  }

  .page-hero::before {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.92) 0%, rgba(82, 4, 7, 0.84) 68%, rgba(5, 5, 5, 0.3) 100%),
      url("/assets/curb-appeal-hero.jpg") center / cover no-repeat;
  }

  .hero::after,
  .page-hero::after {
    left: auto;
    right: -4%;
    width: 9px;
    opacity: 0.9;
  }

  .hero-content {
    padding: 3rem 0 7rem;
  }

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

  .hero-lede {
    max-width: 380px;
    font-size: 1.25rem;
  }

  .hero-note {
    max-width: min(100%, 370px);
    line-height: 1.3;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .upload-dropzone {
    min-height: 86px;
    padding: 0.85rem;
  }

  .photo-pill {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .photo-pill small {
    grid-column: 1;
  }

  .photo-pill button {
    grid-row: 1 / span 2;
    grid-column: 2;
  }

  .service-grid,
  .process,
  .contact-layout,
  .form-grid,
  .proof-inner,
  .cta-inner,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .service-item {
    min-height: 190px;
    padding: 1.4rem 1rem;
  }

  .service-icon {
    width: min(54%, 136px);
    height: 92px;
  }

  .contact-layout {
    gap: 2rem;
  }

  .contact-panel {
    border-radius: 0;
  }

  .contact-panel-header,
  .contact-form {
    padding-inline: 1rem;
  }

  .sticky-mobile-call {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 15;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 0.7rem;
    background: var(--ink);
    border-top: 2px solid var(--gold);
  }

  .sticky-mobile-call a {
    min-height: 48px;
    padding: 0.6rem 0.5rem;
    font-size: 0.86rem;
  }

  .site-footer {
    padding-bottom: 0;
  }
}

@media (max-width: 430px) {
  .header-inner {
    gap: 0.75rem;
    width: calc(100% - 2rem);
  }

  .brand {
    gap: 0.55rem;
  }

  .brand-mark {
    width: 66px;
    min-width: 66px;
  }

  .brand-copy strong {
    font-size: 0.84rem;
    line-height: 1.08;
  }

  .brand-copy span {
    display: block;
    max-width: 158px;
    margin-top: 0.22rem;
    font-size: 0.55rem;
    line-height: 1.25;
    letter-spacing: 0.03em;
  }

  .hero-content,
  .page-hero-inner,
  .section,
  .proof-inner,
  .cta-inner,
  .footer-inner {
    width: calc(100% - 1.5rem);
  }

  .hero h1 {
    font-size: clamp(2.85rem, 15vw, 4rem);
  }

  .page-hero h1 {
    font-size: 2.35rem;
  }

  .divider {
    gap: 0.65rem;
  }

  .divider-house {
    width: 42px;
    height: 32px;
  }
}

@media (max-width: 360px) {
  .hero-note {
    max-width: min(100%, 310px);
  }
}
