:root {
  --ink: #191815;
  --paper: #f6f3eb;
  --panel: #fffdf7;
  --muted: #686158;
  --line: #d9d0bd;
  --oxide: #b94f2b;
  --oxide-dark: #84361f;
  --mineral: #236c61;
  --amber: #e0b144;
  --graphite: #27221d;
  --shadow: 0 24px 80px rgba(39, 34, 29, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(35, 108, 97, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(185, 79, 43, 0.055) 1px, transparent 1px),
    var(--paper);
  background-size: 46px 46px, 46px 46px, auto;
  font-family: "Aptos", "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 5%, rgba(224, 177, 68, 0.2), transparent 28rem),
    linear-gradient(145deg, rgba(39, 34, 29, 0.02), transparent 45%);
}

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(217, 208, 189, 0.78);
  background: rgba(246, 243, 235, 0.92);
  backdrop-filter: blur(16px);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-lockup strong,
.brand-lockup small {
  display: block;
}

.brand-lockup strong {
  line-height: 1.05;
}

.brand-lockup small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(25, 24, 21, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, transparent 46%, var(--oxide) 47%, var(--oxide) 54%, transparent 55%),
    repeating-linear-gradient(90deg, rgba(25, 24, 21, 0.14) 0 1px, transparent 1px 9px),
    repeating-linear-gradient(0deg, rgba(25, 24, 21, 0.14) 0 1px, transparent 1px 9px),
    #fff8ec;
}

nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
}

nav a:hover {
  color: var(--ink);
  background: rgba(255, 253, 247, 0.9);
}

main {
  overflow: hidden;
}

.hero {
  width: min(1460px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  margin: 0 auto;
  padding: clamp(20px, 3vw, 42px) clamp(18px, 4vw, 56px) clamp(14px, 2vw, 26px);
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--oxide-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4.2vw, 4.8rem);
  line-height: 0.98;
  max-width: 780px;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.9vw, 4.3rem);
  line-height: 0.98;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.06rem;
}

.lede {
  max-width: 660px;
  color: #3f3a33;
  font-size: clamp(1.06rem, 1.45vw, 1.32rem);
  line-height: 1.6;
}

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

.primary-button,
.secondary-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 900;
}

.primary-button {
  border: 0;
  color: #fff8ec;
  background: var(--oxide);
  box-shadow: 0 14px 34px rgba(185, 79, 43, 0.24);
  cursor: pointer;
}

.primary-button:hover {
  background: var(--oxide-dark);
}

.secondary-button {
  border: 1px solid var(--line);
  color: var(--graphite);
  background: rgba(255, 253, 247, 0.86);
}

.secondary-button:hover {
  border-color: rgba(35, 108, 97, 0.4);
  background: #fffdf7;
}

.trust-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.trust-row span {
  padding: 9px 11px;
  border: 1px solid rgba(35, 108, 97, 0.22);
  border-radius: 8px;
  color: var(--mineral);
  background: rgba(255, 253, 247, 0.78);
  font-size: 0.85rem;
  font-weight: 900;
}

.hero-media {
  position: relative;
  margin: 0;
  isolation: isolate;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border: 1px solid rgba(39, 34, 29, 0.16);
  border-radius: 8px;
  transform: rotate(-1.8deg);
  background: rgba(255, 253, 247, 0.72);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  border: 1px solid rgba(39, 34, 29, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.82rem;
}

.problem-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1348px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
  box-shadow: var(--shadow);
}

.problem-strip article {
  min-height: 180px;
  padding: 26px;
  background: rgba(255, 253, 247, 0.96);
}

.problem-strip span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #fff8ec;
  background: var(--graphite);
  font-weight: 900;
}

.problem-strip strong {
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.problem-strip p,
.section-intro p,
.service-grid p,
.request-copy p,
.site-footer p,
.process-list span {
  color: var(--muted);
  line-height: 1.55;
}

.section-grid {
  width: min(1348px, 100%);
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px);
  margin: 0 auto;
  padding: clamp(70px, 8vw, 118px) clamp(18px, 4vw, 0px);
}

.section-intro {
  position: sticky;
  top: 100px;
  align-self: start;
}

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

.service-grid article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.94);
}

.service-grid article:nth-child(2n) {
  transform: translateY(22px);
}

.process-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(64px, 7vw, 98px) clamp(18px, 4vw, 56px);
  color: #fff8ec;
  background:
    linear-gradient(90deg, rgba(224, 177, 68, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 248, 236, 0.06) 1px, transparent 1px),
    var(--graphite);
  background-size: 38px 38px;
}

.process-band .eyebrow {
  color: #e7bf68;
}

.process-band h2 {
  max-width: 700px;
}

.process-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: minmax(130px, 0.35fr) minmax(0, 1fr);
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(255, 248, 236, 0.14);
  border-radius: 8px;
  background: rgba(255, 248, 236, 0.07);
}

.process-list strong {
  color: #fff8ec;
}

.process-list span {
  color: #d8cbb6;
}

.request-section {
  width: min(1348px, 100%);
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 0.52fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  margin: 0 auto;
  padding: clamp(70px, 8vw, 118px) clamp(18px, 4vw, 0px);
}

.notice {
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(185, 79, 43, 0.32);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.9);
}

.notice strong {
  display: block;
  margin-bottom: 8px;
}

.notice p {
  margin-bottom: 0;
}

.lead-form {
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.98);
  box-shadow: var(--shadow);
}

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

label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfc5b1;
  border-radius: 8px;
  color: var(--ink);
  background: #fffaf0;
  outline: none;
}

input,
select {
  min-height: 44px;
  padding: 0 12px;
}

textarea {
  min-height: 116px;
  resize: vertical;
  padding: 12px;
  line-height: 1.45;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--mineral);
  box-shadow: 0 0 0 3px rgba(35, 108, 97, 0.15);
}

fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
  margin: 0 0 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

legend {
  padding: 0 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

fieldset label,
.checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 0;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

fieldset input,
.checkbox-line input {
  width: auto;
  min-height: auto;
  margin-top: 2px;
}

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

.privacy-copy {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.form-submit {
  width: 100%;
  margin-top: 18px;
}

.form-note,
.form-status {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.form-status {
  min-height: 1.3em;
  color: var(--mineral);
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.76);
}

.site-footer p {
  margin: 0;
  font-size: 0.92rem;
}

@media (max-width: 1060px) {
  .hero,
  .section-grid,
  .process-band,
  .request-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .section-intro {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  nav a {
    min-height: 34px;
    justify-content: center;
    background: rgba(255, 253, 247, 0.72);
    font-size: 0.78rem;
    padding: 0 8px;
    text-align: center;
  }

  .problem-strip,
  .service-grid,
  .form-row,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-bottom: 74px;
    background:
      linear-gradient(180deg, rgba(246, 243, 235, 0.78), rgba(246, 243, 235, 0.9)),
      url("assets/liquid-stone-sample-boards.png") center bottom / min(88%, 350px) auto no-repeat;
  }

  .hero-media {
    display: none;
  }

  .service-grid article:nth-child(2n) {
    transform: none;
  }

  .process-list li {
    grid-template-columns: 1fr;
  }

  fieldset {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 2.35rem);
    line-height: 1;
  }

  .lede {
    font-size: 1rem;
    line-height: 1.5;
  }

  .trust-row {
    display: none;
  }
}

@media (max-width: 460px) {
  .hero-actions,
  .primary-button,
  .secondary-button {
    width: 100%;
  }
}
