:root {
  --ink: #050505;
  --coal: #0c0c0d;
  --panel: #141312;
  --panel-soft: #1d1a17;
  --line: rgba(232, 197, 116, 0.2);
  --gold: #d9ad4f;
  --gold-bright: #f2d184;
  --cream: #f7f0df;
  --muted: #bdb6a8;
  --white: #fffaf0;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 32px, var(--max));
  min-height: 76px;
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(242, 209, 132, 0.18);
  background: rgba(5, 5, 5, 0.76);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.brand-mark {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(242, 209, 132, 0.55);
  color: var(--gold-bright);
  font-weight: 800;
}

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

.brand strong {
  position: relative;
  padding-bottom: 6px;
  font-size: 1.15rem;
  line-height: 1.05;
}

.brand strong::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 250, 240, 0.86);
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #e7dfcf;
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav a {
  opacity: 0.82;
  transition: color 180ms ease, opacity 180ms ease;
}

.site-nav a:hover {
  color: var(--gold-bright);
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(242, 209, 132, 0.28);
  background: transparent;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--gold-bright);
}

.hero {
  position: relative;
  min-height: 92vh;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-polisher-final-20260508-v6.png");
  background-position: -28% center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.02);
  filter: brightness(1.30) contrast(1.03) saturate(0.72);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.48) 0%, rgba(5, 5, 5, 0.35) 42%, rgba(5, 5, 5, 0.08) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.54) 0%, rgba(5, 5, 5, 0.04) 38%, rgba(5, 5, 5, 0.05) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 150px 0 104px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 980px;
  margin-bottom: 22px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
  font-size: clamp(2.25rem, 4.9vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: 0;
}

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

h3 {
  margin-bottom: 12px;
  font-size: 1.12rem;
}

.hero h1 {
  color: #ffffff;
}

.hero-copy {
  max-width: 620px;
  color: #ffffff;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid rgba(242, 209, 132, 0.35);
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: #120e06;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border-color: transparent;
}

.button.ghost {
  color: var(--gold-bright);
  background: rgba(255, 255, 255, 0.04);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 760px;
  margin: 52px 0 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.hero-stats div {
  padding: 18px;
  background: rgba(10, 10, 10, 0.76);
}

.hero-stats dt {
  color: var(--gold-bright);
  font-size: 1.25rem;
  font-weight: 800;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.trust-strip {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 4vw, 56px);
  padding: 20px 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  background: #090909;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section,
.split-section,
.results,
.contact {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.section {
  padding: 104px 0;
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
  border-bottom: 1px solid rgba(242, 209, 132, 0.12);
}

.intro p:last-child,
.results-content p,
.contact-copy p,
.service-card p,
.steps p {
  color: var(--muted);
  line-height: 1.75;
}

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

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

.service-card {
  min-height: 270px;
  padding: 26px;
  background: linear-gradient(180deg, var(--panel), #0d0d0d);
}

.card-number {
  display: inline-block;
  margin-bottom: 56px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 1px;
  margin-bottom: 46px;
  border: 1px solid var(--line);
  background: var(--line);
}

.feature-panel,
.quote-panel {
  padding: clamp(30px, 5vw, 58px);
  background: var(--panel-soft);
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #e7ddcb;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 12px;
  height: 12px;
  border: 2px solid var(--gold-bright);
}

.quote-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.quote-panel p {
  color: var(--white);
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1.18;
}

.quote-panel span {
  color: var(--gold-bright);
  font-weight: 800;
}

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

.steps article {
  padding: 30px;
  border: 1px solid var(--line);
  background: #0d0d0d;
}

.steps span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 26px;
  color: #141006;
  background: var(--gold-bright);
  font-weight: 900;
}

.results {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 92px 0;
  border-top: 1px solid rgba(242, 209, 132, 0.12);
  border-bottom: 1px solid rgba(242, 209, 132, 0.12);
}

.result-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.result-board div {
  min-height: 148px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(242, 209, 132, 0.11), transparent 45%),
    #111;
}

.result-board span {
  display: block;
  margin-bottom: 34px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.result-board strong {
  display: block;
  font-size: 1.2rem;
  line-height: 1.25;
}

.contact {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 56px;
  align-items: start;
  padding: 108px 0;
}

.estimate-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  background: #101010;
}

.estimate-form label {
  display: grid;
  gap: 8px;
  color: var(--gold-bright);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.estimate-form input,
.estimate-form textarea {
  width: 100%;
  border: 1px solid rgba(242, 209, 132, 0.2);
  border-radius: 0;
  color: var(--cream);
  background: #090909;
  padding: 14px 15px;
  outline: none;
}

.estimate-form textarea {
  resize: vertical;
}

.estimate-form input:focus,
.estimate-form textarea:focus {
  border-color: var(--gold-bright);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer a {
  color: var(--gold-bright);
  font-weight: 800;
}

@media (min-width: 1025px) {
  .site-header {
    width: calc(100% - clamp(48px, 6vw, 128px));
    max-width: none;
  }
}

@media (min-width: 1440px) {
  .hero-media {
    background-position: -220% center;
    transform: scale(1.01);
  }

  .hero-inner {
    width: calc(100% - clamp(80px, 7vw, 140px));
    max-width: none;
  }

  h1 {
    max-width: 940px;
  }
}

@media (max-width: 1200px) {
  .hero-media {
    background-position: -22% center;
  }
}

@media (max-width: 1024px) {
  .hero {
    min-height: 820px;
  }

  .hero-media {
    background-size: cover;
    background-position: 34% center;
  }

  h1 {
    font-size: clamp(2.25rem, 6.4vw, 4rem);
  }
}

@media (max-width: 920px) {
  .site-header {
    width: calc(100% - 24px);
    margin-top: 12px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(242, 209, 132, 0.18);
    background: rgba(5, 5, 5, 0.94);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 18px;
    border-bottom: 1px solid rgba(242, 209, 132, 0.12);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.44) 0%, rgba(5, 5, 5, 0.31) 58%, rgba(5, 5, 5, 0.09) 100%),
      linear-gradient(0deg, rgba(5, 5, 5, 0.50) 0%, rgba(5, 5, 5, 0.04) 46%, rgba(5, 5, 5, 0.05) 100%);
  }

  .intro,
  .split-section,
  .results,
  .contact {
    grid-template-columns: 1fr;
  }

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

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

  .trust-strip {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 840px;
  }

  .hero-media {
    background-size: auto 36%;
    background-position: 35% 20%;
    background-repeat: no-repeat;
  }

  .hero-inner {
    padding: 116px 0 86px;
  }

  .hero .eyebrow {
    display: block;
    position: relative;
    left: 50%;
    width: calc(100vw - 24px);
    max-width: none;
    transform: translateX(-50%);
    white-space: nowrap;
    text-align: left;
    font-size: 1rem;
    letter-spacing: 0.04em;
  }

  .hero-title {
    max-width: 560px;
    font-size: clamp(2rem, 7.2vw, 3.05rem);
    line-height: 1.03;
  }

  .hero-title span {
    display: block;
  }

  .hero-copy {
    font-size: 1.02rem;
    line-height: 1.58;
  }

  .hero-actions {
    margin-top: 44px;
  }
}

@media (max-width: 620px) {
  .brand strong {
    max-width: calc(100vw - 96px);
    font-size: 1.29rem;
    line-height: 1;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 820px;
  }

  .hero-inner {
    padding-top: 136px;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.65rem);
  }

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

  .hero-stats,
  .service-grid,
  .result-board {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 76px 0;
  }

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

  .card-number {
    margin-bottom: 36px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .hero {
    min-height: 820px;
  }

  .hero-media {
    background-size: auto 35%;
    background-position: 37% 22%;
    background-repeat: no-repeat;
  }

  .hero-inner {
    width: min(100% - 28px, var(--max));
    padding: 112px 0 72px;
  }

  .hero-title {
    max-width: 330px;
    font-size: clamp(1.75rem, 8.2vw, 2.35rem);
    line-height: 1.04;
  }

  .hero-copy {
    max-width: 340px;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .button {
    min-height: 48px;
    padding: 0 18px;
  }

  .hero-actions {
    gap: 12px;
    margin-top: 42px;
  }
}
