:root {
  --ink: #171717;
  --muted: #66645f;
  --paper: #fbfaf6;
  --surface: #ffffff;
  --line: #ded8cc;
  --charcoal: #141310;
  --forest: #1f4d43;
  --forest-dark: #12342d;
  --gold: #c79b47;
  --clay: #9f694d;
  --shadow: 0 18px 50px rgba(20, 19, 16, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  align-items: center;
  background: rgba(20, 19, 16, 0.92);
  color: #ffffff;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  left: 0;
  min-height: 76px;
  padding: 12px 5vw;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  height: 52px;
  width: 156px;
}

.brand img {
  height: 100%;
  object-fit: contain;
  object-position: left center;
  width: 100%;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: 26px;
  justify-content: center;
}

.main-nav a,
.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 180ms ease;
}

.main-nav a:hover,
.site-footer a:hover {
  color: #ffffff;
}

.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  color: #ffffff;
  padding: 10px 16px;
}

.hero {
  color: #ffffff;
  min-height: 82vh;
  overflow: hidden;
  position: relative;
}

.hero-media {
  background-image: url("assets/real-living-room-lvp.jpeg");
  background-position: center;
  background-size: cover;
  inset: 0;
  position: absolute;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(20, 19, 16, 0.83), rgba(20, 19, 16, 0.45) 54%, rgba(20, 19, 16, 0.14));
  inset: 0;
  position: absolute;
}

.hero-content {
  max-width: 760px;
  padding: 128px 5vw 96px;
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

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

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.35rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
  margin-bottom: 22px;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.05rem;
  line-height: 1.25;
  margin-bottom: 10px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
  max-width: 620px;
}

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

.button {
  align-items: center;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

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

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

.button-primary:hover {
  background: #d7ad5c;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #ffffff;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.trust-strip {
  background: var(--forest);
  color: #ffffff;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-strip div {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  padding: 26px 5vw;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: #ffffff;
  font-size: 1.3rem;
}

.trust-strip span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.section {
  padding: 92px 5vw;
}

.intro-section {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 1fr);
}

.intro-copy {
  color: var(--muted);
  font-size: 1.05rem;
}

.services-section,
.portfolio-section {
  background: var(--surface);
}

.section-heading {
  margin-bottom: 36px;
  max-width: 720px;
}

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

.service-card {
  background: #f7f4ee;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.service-card img {
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.service-card-body {
  padding: 22px;
}

.service-card-body span {
  color: var(--clay);
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.service-card-body p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.feature-band {
  background: var(--charcoal);
  color: #ffffff;
  display: grid;
  gap: 60px;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  padding: 92px 5vw;
}

.feature-content p + h2 {
  color: #ffffff;
}

.process-list {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
}

.process-list div {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}

.process-list span {
  align-items: center;
  background: var(--forest);
  border-radius: 50%;
  color: #ffffff;
  display: inline-flex;
  font-weight: 800;
  height: 34px;
  justify-content: center;
  margin-bottom: 16px;
  width: 34px;
}

.process-list p {
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 0;
}

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

.portfolio-grid figure {
  margin: 0;
  position: relative;
}

.portfolio-grid figure:first-child {
  grid-column: span 2;
}

.portfolio-grid img {
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
}

.portfolio-grid figure:first-child img {
  aspect-ratio: 16 / 10;
}

.portfolio-grid figcaption {
  background: rgba(20, 19, 16, 0.86);
  border-radius: 6px;
  bottom: 16px;
  color: #ffffff;
  font-weight: 800;
  left: 16px;
  padding: 8px 12px;
  position: absolute;
}

.video-section {
  align-items: center;
  background: #f4efe7;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1.2fr);
  padding: 92px 5vw;
}

.video-copy {
  max-width: 560px;
}

.video-copy p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.05rem;
}

.video-frame {
  background: var(--charcoal);
  border-radius: 8px;
  box-shadow: var(--shadow);
  min-height: 360px;
  overflow: hidden;
  position: relative;
}

.video-frame img,
.video-frame iframe {
  aspect-ratio: 16 / 10;
  border: 0;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.play-badge {
  align-items: center;
  background: rgba(20, 19, 16, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  display: flex;
  height: 72px;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
}

.play-badge::before {
  border-bottom: 14px solid transparent;
  border-left: 22px solid #ffffff;
  border-top: 14px solid transparent;
  content: "";
  margin-left: 5px;
}

.reviews-section {
  background: var(--surface);
}

.reviews-heading {
  align-items: end;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin-bottom: 34px;
}

.reviews-heading h2 {
  max-width: 720px;
}

.review-marquee {
  margin: 0 -5vw 34px;
  overflow: hidden;
  padding: 4px 0;
}

.review-track {
  animation: review-scroll 58s linear infinite;
  display: flex;
  gap: 16px;
  width: max-content;
}

.review-marquee:hover .review-track {
  animation-play-state: paused;
}

.google-review-card {
  background: var(--charcoal);
  border-radius: 8px;
  color: #ffffff;
  display: grid;
  gap: 10px;
  min-height: 160px;
  padding: 22px;
  width: 340px;
}

.google-review-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.google-review-card h3 {
  color: #ffffff;
  font-size: 1.05rem;
  margin: 0;
}

.google-review-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  margin-bottom: 0;
}

.google-review-card a {
  align-self: end;
  color: #ffffff;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@keyframes review-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 8px));
  }
}

.reputation-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}

.reputation-grid article {
  background: #f7f4ee;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
}

.reputation-grid span {
  color: var(--clay);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.reputation-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.review-form-section {
  background: var(--paper);
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(260px, 0.55fr) minmax(360px, 1fr);
  padding: 92px 5vw;
}

.review-form-copy {
  align-self: start;
  max-width: 520px;
  position: sticky;
  top: 104px;
}

.review-form-copy p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.05rem;
}

.review-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 30px;
}

.estimate-section {
  background: linear-gradient(90deg, var(--forest-dark), var(--forest));
  color: #ffffff;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(260px, 0.55fr) minmax(360px, 1fr);
  padding: 92px 5vw;
}

.estimate-copy {
  align-self: start;
  position: sticky;
  top: 104px;
}

.estimate-copy p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
}

.contact-card {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  margin-top: 34px;
  padding-top: 24px;
}

.contact-card span {
  color: var(--gold);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.contact-card a {
  color: #ffffff;
  overflow-wrap: anywhere;
}

.estimate-form {
  background: var(--surface);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--ink);
  padding: 30px;
}

fieldset {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0 0 26px;
  padding: 24px 0 0;
}

fieldset:first-of-type {
  border-top: 0;
  padding-top: 0;
}

legend {
  font-weight: 900;
  margin-bottom: 16px;
  padding: 0;
}

.form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin-bottom: 16px;
}

.form-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.form-grid.three {
  grid-template-columns: 1.1fr 0.6fr 0.9fr;
}

label,
.full-label {
  color: var(--ink);
  display: grid;
  font-size: 0.88rem;
  font-weight: 800;
  gap: 7px;
}

input,
select,
textarea {
  background: #fbfaf6;
  border: 1px solid #d6d0c4;
  border-radius: 6px;
  color: var(--ink);
  min-height: 46px;
  padding: 11px 12px;
  width: 100%;
}

input.is-invalid,
select.is-invalid,
textarea.is-invalid {
  border-color: #b84a3a;
  box-shadow: 0 0 0 3px rgba(184, 74, 58, 0.12);
}

label.has-error,
.option-grid.has-error,
.consent.has-error {
  border-color: #b84a3a;
}

label.has-error:not(.consent) {
  color: #8f2f24;
}

.option-grid.has-error label,
.consent.has-error {
  background: #fff5f2;
  border-color: #b84a3a;
}

input.is-valid,
select.is-valid,
textarea.is-valid {
  border-color: #2f7b67;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(31, 77, 67, 0.12);
  outline: 0;
}

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

.file-label {
  margin-top: 16px;
}

.budget-custom-row[hidden] {
  display: none;
}

.field-error,
.field-help {
  font-size: 0.8rem;
  font-weight: 700;
  margin: -6px 0 0;
}

.field-error {
  color: #b84a3a;
  min-height: 18px;
}

.field-help {
  color: var(--muted);
}

.contact-rule {
  margin: -4px 0 18px;
}

.option-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 18px;
}

.option-grid label,
.consent {
  align-items: center;
  background: #fbfaf6;
  border: 1px solid #ded8cc;
  border-radius: 6px;
  display: flex;
  gap: 10px;
  padding: 11px 12px;
}

.option-grid input,
.consent input {
  accent-color: var(--forest);
  min-height: auto;
  width: auto;
}

.consent {
  font-size: 0.88rem;
  margin: 18px 0;
}

.form-submit {
  width: 100%;
}

.form-note {
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 800;
  margin: 14px 0 0;
  min-height: 22px;
  text-align: center;
}

.honeypot {
  display: none;
}

.site-footer {
  background: var(--charcoal);
  color: #ffffff;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr auto auto;
  padding: 56px 5vw;
}

.site-footer img {
  height: 72px;
  margin-bottom: 14px;
  object-fit: contain;
  object-position: left center;
  width: 220px;
}

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

.site-footer div {
  display: grid;
  gap: 9px;
}

.site-footer span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.thanks-page {
  background: var(--charcoal);
  color: #ffffff;
  min-height: 100vh;
}

.thanks-main {
  align-content: center;
  background:
    linear-gradient(rgba(20, 19, 16, 0.74), rgba(20, 19, 16, 0.86)),
    url("assets/real-living-room-lvp.jpeg") center / cover;
  display: grid;
  justify-items: start;
  min-height: 100vh;
  padding: 8vw;
}

.thanks-main img {
  height: 90px;
  margin-bottom: 36px;
  object-fit: contain;
  object-position: left center;
  width: 260px;
}

.thanks-main h1 {
  max-width: 780px;
}

.thanks-main p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.1rem;
  max-width: 620px;
}

.thanks-main .button {
  margin-top: 18px;
}

.return-note {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
  margin: 8px 0 0;
}

@media (max-width: 1080px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .estimate-section,
  .feature-band,
  .review-form-section,
  .video-section {
    grid-template-columns: 1fr;
  }

  .estimate-copy,
  .review-form-copy {
    position: static;
  }
}

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

  .main-nav {
    display: none;
  }

  .brand {
    height: 46px;
    width: 140px;
  }

  .nav-cta {
    padding: 9px 12px;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-overlay {
    background: rgba(20, 19, 16, 0.68);
  }

  .hero-content {
    padding: 90px 6vw 74px;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .trust-strip,
  .intro-grid,
  .portfolio-grid,
  .site-footer,
  .reputation-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid figure:first-child {
    grid-column: auto;
  }

  .trust-strip div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    border-right: 0;
    padding: 20px 6vw;
  }

  .section,
  .feature-band,
  .estimate-section,
  .review-form-section,
  .video-section {
    padding: 70px 6vw;
  }

  .reviews-heading {
    align-items: start;
    flex-direction: column;
  }

  .review-marquee {
    margin-left: -6vw;
    margin-right: -6vw;
  }

  .google-review-card {
    width: 300px;
  }

  .process-list,
  .service-grid,
  .option-grid,
  .form-grid.two,
  .form-grid.three {
    grid-template-columns: 1fr;
  }

  .estimate-form,
  .review-form {
    padding: 22px;
  }

  .video-frame {
    min-height: 240px;
  }
}

@media (max-width: 420px) {
  body {
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 2rem;
  }
}
