:root {
  --ink: #14110f;
  --muted: #625c55;
  --paper: #fffaf0;
  --panel: #ffffff;
  --gold: #f6c343;
  --red: #b51e23;
  --deep-red: #781114;
  --charcoal: #24211e;
  --line: rgba(20, 17, 15, 0.14);
  --shadow: 0 22px 55px rgba(20, 17, 15, 0.16);
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
  overflow-wrap: anywhere;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 10px clamp(18px, 4vw, 58px) 14px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(120, 17, 20, 0.96), rgba(36, 33, 30, 0.98) 42%, rgba(20, 17, 15, 0.98)),
    var(--charcoal);
  border-bottom: 4px solid var(--gold);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 34px rgba(20, 17, 15, 0.24);
}

.brand img {
  width: 168px;
  height: auto;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.34));
}

.nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.91rem;
  font-weight: 800;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  place-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(246, 195, 67, 0.42);
  border-radius: 6px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 3px;
  background: var(--gold);
  border-radius: 999px;
}

.nav a,
.header-call,
.contact-links a,
.quick-contact a {
  text-decoration: none;
}

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

.nav a {
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.86);
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(246, 195, 67, 0.36);
}

.header-call {
  padding: 12px 18px;
  color: #1b1206;
  background: var(--gold);
  border: 2px solid #d49b16;
  border-radius: 6px;
  font-weight: 900;
  box-shadow: 0 8px 0 rgba(120, 17, 20, 0.86);
}

.hero {
  position: relative;
  display: grid;
  justify-items: end;
  min-height: clamp(660px, 82vh, 820px);
  background:
    linear-gradient(90deg, rgba(20, 17, 15, 0.22), rgba(20, 17, 15, 0.74) 58%, rgba(20, 17, 15, 0.88)),
    url("assets/hero-white-trim-house.png") center / cover no-repeat;
}

.hero-panel {
  display: grid;
  align-content: center;
  gap: clamp(18px, 2.4vw, 28px);
  width: min(760px, 100%);
  min-height: 100%;
  padding: clamp(30px, 5vw, 64px);
  color: #fff;
  background: linear-gradient(90deg, rgba(20, 17, 15, 0.34), rgba(20, 17, 15, 0.72));
  backdrop-filter: blur(1px);
}

.hero-content {
  max-width: 720px;
  scroll-margin-top: 140px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3,
p,
a,
button,
label,
input,
select,
textarea {
  min-width: 0;
}

h1 {
  margin: 0;
  max-width: 15ch;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 14px 0 10px;
  font-size: 1.3rem;
}

.hero-copy {
  max-width: 690px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.91);
  font-size: clamp(1.02rem, 1.8vw, 1.24rem);
  line-height: 1.48;
}

.hero-about {
  display: grid;
  gap: 10px;
  max-width: 620px;
  margin-top: 18px;
  padding-left: 16px;
  border-left: 4px solid var(--gold);
}

.hero-about p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1.5;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 20px;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
}

.button.primary {
  color: #1b1206;
  background: var(--gold);
  border-color: #d49b16;
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.48);
}

.button.secondary.dark {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.quick-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 26px;
  padding: 18px clamp(18px, 4vw, 58px);
  color: #fff;
  background: var(--red);
  font-weight: 900;
  text-align: center;
}

.quick-contact p {
  width: 100%;
  margin: 0;
}

.section {
  padding: clamp(64px, 9vw, 110px) clamp(20px, 6vw, 74px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.intro > p,
.contact-copy > p,
.service-grid p {
  color: var(--muted);
  font-size: 1.07rem;
  line-height: 1.7;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.services {
  color: #fff;
  background: var(--charcoal);
}

.services .section-heading h2,
.services h3 {
  color: #fff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.service-grid article {
  min-height: 260px;
  padding: 28px;
  background: #2f2b27;
}

.service-grid span {
  color: var(--gold);
  font-weight: 900;
}

.service-grid p {
  color: rgba(255, 255, 255, 0.75);
}

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

.gallery figure {
  margin: 0;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.gallery img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.gallery figcaption {
  padding: 15px 18px 18px;
  font-weight: 900;
}

.reviews {
  background:
    linear-gradient(135deg, rgba(246, 195, 67, 0.18), rgba(255, 255, 255, 0) 46%),
    #fff;
}

.reviews-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(22px, 5vw, 56px);
  align-items: center;
  padding: clamp(24px, 5vw, 46px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 8px solid var(--gold);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.google-rating {
  display: grid;
  gap: 10px;
}

.stars {
  color: var(--gold);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
  text-shadow: 0 2px 0 rgba(120, 17, 20, 0.18);
}

.google-rating strong {
  color: var(--deep-red);
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  line-height: 1.1;
}

.google-rating p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.07rem;
  line-height: 1.7;
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.reviews .section-heading > p:not(.eyebrow) {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.07rem;
  line-height: 1.65;
}

.review-carousel {
  display: grid;
  grid-template-columns: 52px minmax(0, 760px) 52px;
  gap: 14px;
  align-items: center;
  max-width: 920px;
  margin-top: 24px;
}

.review-window {
  overflow: hidden;
  border-radius: 8px;
}

.review-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  transition: transform 260ms ease;
}

.review-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 230px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(20, 17, 15, 0.1);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.review-card:hover {
  border-color: rgba(181, 30, 35, 0.34);
  box-shadow: 0 18px 42px rgba(20, 17, 15, 0.14);
  transform: translateY(-3px);
}

.review-arrow {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  color: #fff;
  background: var(--deep-red);
  border: 2px solid rgba(120, 17, 20, 0.28);
  border-radius: 999px;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(20, 17, 15, 0.16);
}

.review-arrow:hover {
  background: var(--red);
}

.stars.small {
  font-size: 1.15rem;
}

.review-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.review-card strong {
  align-self: end;
  color: var(--deep-red);
  font-size: 0.96rem;
}

.quote-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  padding: clamp(42px, 7vw, 72px) clamp(20px, 6vw, 74px);
  color: #fff;
  background: var(--red);
}

.quote-band .eyebrow {
  color: var(--gold);
}

.areas {
  background: #fff;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.area-list span {
  padding: 12px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 6vw, 72px);
  background: var(--charcoal);
  color: #fff;
}

.contact-copy {
  align-self: center;
}

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

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  font-size: 1.14rem;
  font-weight: 900;
}

form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  background: #fff;
  border-radius: 8px;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hero-form {
  max-width: 520px;
  gap: 11px;
  padding: clamp(18px, 2.8vw, 26px);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.28);
}

.hero-form h2 {
  color: var(--ink);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.05;
}

.hero-form input,
.hero-form select {
  min-height: 42px;
}

.hero-form textarea {
  min-height: 84px;
}

label {
  display: grid;
  gap: 7px;
  font-size: 0.91rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

textarea {
  resize: vertical;
}

button {
  font: inherit;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 38px 20px;
  text-align: center;
  background: #100f0e;
  color: #fff;
}

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

.site-footer p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .brand img {
    width: 148px;
  }

  .nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .intro,
  .contact,
  .quote-band,
  .reviews-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    justify-items: stretch;
    background:
      linear-gradient(0deg, rgba(20, 17, 15, 0.84), rgba(20, 17, 15, 0.45)),
      url("assets/hero-white-trim-house.png") center / cover no-repeat;
  }

  .hero-form {
    max-width: none;
  }

  .quote-band {
    justify-items: start;
  }

  .review-actions {
    justify-content: flex-start;
  }

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

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

@media (max-width: 620px) {
  .site-header {
    position: sticky;
    gap: 12px;
    padding: 10px 14px;
    grid-template-columns: auto 1fr auto;
  }

  .header-call {
    order: 2;
    justify-self: center;
    padding: 9px 10px;
    font-size: clamp(0.72rem, 3vw, 0.86rem);
    white-space: nowrap;
    box-shadow: 0 5px 0 var(--deep-red);
  }

  .brand {
    order: 1;
  }

  .brand img {
    width: clamp(128px, 36vw, 148px);
  }

  .menu-toggle {
    display: inline-grid;
    order: 3;
    justify-self: end;
    width: 28px;
    height: 28px;
    gap: 3px;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(50% + 18px);
    right: 0;
    width: min(185px, calc(100vw - 28px));
    padding: 8px;
    background: rgba(16, 15, 14, 0.92);
    border: 1px solid rgba(246, 195, 67, 0.24);
    border-radius: 8px;
    box-shadow: 0 16px 34px rgba(20, 17, 15, 0.28);
    z-index: 30;
  }

  .nav.is-open {
    display: grid;
    gap: 6px;
  }

  .nav a {
    padding: 12px;
    text-align: right;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
  }

  .review-carousel {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 8px;
  }

  .review-arrow {
    width: 42px;
    height: 42px;
    font-size: 1.85rem;
  }

  .review-card {
    min-height: 260px;
    padding: 20px;
  }

  .hero {
    min-height: 0;
  }

  .hero-panel {
    padding: 34px 18px 42px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 12vw, 2.75rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(1.62rem, 9vw, 2.15rem);
    line-height: 1.05;
  }

  .hero-copy,
  .hero-about p,
  .intro > p,
  .contact-copy > p,
  .service-grid p {
    font-size: 0.98rem;
  }

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

  .button {
    min-height: 46px;
    padding: 12px 14px;
    font-size: 0.84rem;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
  }

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

  .service-grid article {
    min-height: auto;
  }

  form {
    padding: 20px;
  }
}

@media (max-width: 360px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .header-call {
    justify-self: center;
  }

  .brand img {
    width: 116px;
  }

  .nav {
    justify-content: center;
    font-size: 0.7rem;
  }

  .hero-panel,
  .section {
    padding-left: 14px;
    padding-right: 14px;
  }

  h1 {
    font-size: 2.08rem;
  }
}
