:root {
  --ink: #171411;
  --charcoal: #25221f;
  --smoke: #5c564d;
  --cream: #f7f2e8;
  --ivory: #fffaf0;
  --linen: #e6dccd;
  --brass: #b28b49;
  --green: #18392f;
  --wine: #562c2c;
  --shadow: 0 24px 70px rgba(18, 15, 11, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::selection {
  background: var(--brass);
  color: white;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: var(--ivory);
  background: linear-gradient(180deg, rgba(14, 12, 10, 0.82), rgba(14, 12, 10, 0.34) 88%, transparent);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 250, 240, 0.52);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  color: var(--brass);
  background: rgba(20, 18, 15, 0.42);
}

.brand strong,
.site-footer strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 500;
}

.brand small,
.site-footer span {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  color: rgba(255, 250, 240, 0.72);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.6vw, 34px);
  font-size: 13px;
  color: rgba(255, 250, 240, 0.82);
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: white;
}

.nav-cta,
.button,
.quote-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(255, 250, 240, 0.42);
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.nav-cta:hover,
.button:hover,
.quote-form button:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--ivory);
  background: #14110e;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 11, 9, 0.93) 0%, rgba(17, 14, 11, 0.72) 34%, rgba(17, 14, 11, 0.2) 68%),
    linear-gradient(180deg, rgba(9, 7, 5, 0.18) 0%, rgba(9, 7, 5, 0.48) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 8vh;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.02;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(54px, 8vw, 104px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 5vw, 64px);
}

h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 400;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 250, 240, 0.82);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.58;
}

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

.button.primary,
.quote-form button {
  border-color: var(--brass);
  color: #171411;
  background: var(--brass);
}

.button.secondary {
  background: rgba(255, 250, 240, 0.08);
}

.button.ghost {
  color: var(--ivory);
  background: rgba(24, 57, 47, 0.42);
  border-color: rgba(255, 250, 240, 0.24);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 42px;
}

.hero-proof span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 250, 240, 0.2);
  color: rgba(255, 250, 240, 0.8);
  background: rgba(255, 250, 240, 0.07);
  backdrop-filter: blur(10px);
  font-size: 13px;
}

.intro,
.contact-band,
.services,
.process,
.coverage,
.quote {
  padding: clamp(70px, 10vw, 132px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 1fr);
  gap: clamp(30px, 7vw, 86px);
  align-items: start;
  background: var(--ivory);
}

.intro p:not(.section-kicker),
.coverage p,
.quote-copy p,
.no-mess-panel p,
.service-card p,
.step p,
.promise-list span {
  color: var(--smoke);
  font-size: 17px;
  line-height: 1.72;
}

.contact-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: rgba(38, 32, 26, 0.14);
}

.contact-band a,
.contact-band div {
  display: grid;
  gap: 8px;
  min-height: 142px;
  align-content: center;
  padding: 28px;
  background: var(--cream);
}

.contact-band span,
.contact-band small,
.field-note,
.form-note {
  color: var(--smoke);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-band strong {
  overflow-wrap: anywhere;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 2.4vw, 31px);
  font-weight: 400;
  color: var(--green);
}

.contact-band small {
  letter-spacing: 0;
  text-transform: none;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 42px;
}

.services {
  background:
    linear-gradient(135deg, rgba(24, 57, 47, 0.08), transparent 38%),
    var(--cream);
}

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

.service-card {
  min-height: 292px;
  padding: 30px;
  border: 1px solid rgba(38, 32, 26, 0.14);
  background: rgba(255, 250, 240, 0.72);
  box-shadow: 0 18px 44px rgba(40, 32, 24, 0.06);
}

.service-card.featured {
  color: var(--ivory);
  background: var(--green);
}

.service-card.featured p {
  color: rgba(255, 250, 240, 0.74);
}

.card-number {
  display: block;
  margin-bottom: 58px;
  color: var(--brass);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.no-mess {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1fr);
  gap: 18px;
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 72px);
  color: var(--ivory);
  background:
    linear-gradient(140deg, rgba(86, 44, 44, 0.92), rgba(24, 57, 47, 0.9)),
    var(--charcoal);
}

.no-mess-panel,
.promise-list {
  border: 1px solid rgba(255, 250, 240, 0.16);
  background: rgba(255, 250, 240, 0.07);
}

.no-mess-panel {
  padding: clamp(32px, 5vw, 54px);
}

.no-mess-panel p {
  color: rgba(255, 250, 240, 0.76);
}

.promise-list {
  display: grid;
}

.promise-list div {
  display: grid;
  gap: 8px;
  padding: 30px;
  border-bottom: 1px solid rgba(255, 250, 240, 0.12);
}

.promise-list div:last-child {
  border-bottom: 0;
}

.promise-list strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
}

.promise-list span {
  color: rgba(255, 250, 240, 0.72);
}

.process {
  background: var(--ivory);
}

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

.step {
  padding: 28px;
  border-left: 1px solid rgba(178, 139, 73, 0.45);
  background: linear-gradient(180deg, rgba(247, 242, 232, 0.72), rgba(247, 242, 232, 0.18));
}

.step span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 36px;
  color: var(--brass);
  border: 1px solid rgba(178, 139, 73, 0.42);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
}

.coverage {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 380px);
  gap: 34px;
  align-items: center;
  color: var(--ivory);
  background: var(--charcoal);
}

.coverage p {
  color: rgba(255, 250, 240, 0.76);
}

.radius-card {
  padding: 36px;
  border: 1px solid rgba(255, 250, 240, 0.2);
  background: rgba(255, 250, 240, 0.07);
  box-shadow: var(--shadow);
}

.radius-card strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(56px, 8vw, 92px);
  font-weight: 400;
  color: var(--brass);
}

.radius-card span {
  color: rgba(255, 250, 240, 0.74);
  line-height: 1.6;
}

.quote {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(30px, 5vw, 70px);
  background: linear-gradient(180deg, var(--cream), var(--linen));
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(38, 32, 26, 0.14);
  background: rgba(255, 250, 240, 0.82);
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-form .full {
  grid-column: 1 / -1;
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(38, 32, 26, 0.2);
  border-radius: 0;
  padding: 14px 13px;
  color: var(--ink);
  background: white;
  font: inherit;
  letter-spacing: 0;
}

textarea {
  resize: vertical;
}

.file-input {
  padding: 18px;
  border-style: dashed;
  background: rgba(255, 255, 255, 0.72);
}

.field-note {
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
}

.quote-form button {
  grid-column: 1 / -1;
  width: 100%;
  cursor: pointer;
}

.form-note {
  grid-column: 1 / -1;
  margin: -2px 0 0;
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
  text-transform: none;
}

.form-note a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--ivory);
  background: #11100f;
}

.site-footer a,
.footer-contact a {
  color: var(--brass);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  justify-content: flex-end;
}

.thank-you-page {
  min-height: 100vh;
  color: var(--ivory);
  background:
    linear-gradient(90deg, rgba(13, 11, 9, 0.9), rgba(24, 57, 47, 0.78)),
    url("assets/luxury-furniture-hero.png") center / cover;
}

.thank-you {
  min-height: 100vh;
  display: grid;
  align-content: center;
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 80px 0;
}

.thank-you h1 {
  margin-bottom: 18px;
}

.thank-you p:not(.section-kicker) {
  color: rgba(255, 250, 240, 0.78);
  font-size: 20px;
  line-height: 1.65;
}

@media (min-width: 1180px) {
  .hero-content {
    margin-left: clamp(54px, 7vw, 118px);
  }
}

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

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 14px;
  }

  .hero {
    min-height: 860px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(13, 11, 9, 0.94), rgba(17, 14, 11, 0.62)),
      linear-gradient(180deg, rgba(9, 7, 5, 0.1), rgba(9, 7, 5, 0.5));
  }

  .intro,
  .no-mess,
  .coverage,
  .quote {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .site-header {
    min-height: auto;
    padding: 14px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding-top: 160px;
  }

  h1 {
    font-size: 50px;
  }

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

  .contact-band {
    grid-template-columns: 1fr;
  }

  .contact-band a,
  .contact-band div {
    min-height: 118px;
  }

  .service-grid,
  .steps,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 250px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-contact {
    justify-content: flex-start;
  }
}
