:root {
  --ink: #0c0f0d;
  --paper: #efeee8;
  --paper-2: #f8f7f3;
  --white: #ffffff;
  --green: #20a652;
  --green-dark: #14783a;
  --green-soft: #dff4e6;
  --gray: #737873;
  --line: rgba(12, 15, 13, 0.15);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.12);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--white);
  border-radius: 10px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.display {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(3rem, 7vw, 6.7rem);
  line-height: .92;
  letter-spacing: -.065em;
  text-transform: uppercase;
}

h1, h2, h3, p { overflow-wrap: anywhere; }
h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: .96;
  letter-spacing: -.055em;
  text-transform: uppercase;
}
h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.12;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.lead {
  max-width: 62ch;
  margin: 20px 0 0;
  color: #333834;
  font-size: clamp(1.03rem, 1.8vw, 1.25rem);
}
.muted { color: var(--gray); }

.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 780;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-outline { border-color: currentColor; background: transparent; }
.btn-light { background: var(--white); color: var(--ink); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(12, 15, 13, .94);
  color: var(--white);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .08em;
}
.brand img {
  width: 68px;
  height: auto;
  object-fit: contain;
}
.brand span { white-space: nowrap; }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(255,255,255,.78);
  text-decoration: none;
  font-size: .94rem;
  font-weight: 650;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--white); background: rgba(255,255,255,.1); }
.site-nav .nav-cta { margin-left: 8px; background: var(--green); color: white; }
.site-nav .nav-cta:hover { background: var(--green-dark); }
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: transparent;
  color: white;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle.is-open span { opacity: 0; }
.menu-toggle.is-open::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open::after { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  background: #111;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.5) 48%, rgba(0,0,0,.14) 75%),
              linear-gradient(0deg, rgba(0,0,0,.52), transparent 50%),
              url('../images/hero-polishing.webp') center/cover no-repeat;
  transform: scale(1.01);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 100px 86px;
}
.hero .display { max-width: 9.7ch; }
.hero .lead { max-width: 54ch; color: rgba(255,255,255,.82); }
.hero .eyebrow { color: #7be59d; }
.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,.16);
  border-top: 1px solid rgba(255,255,255,.16);
}
.proof-item { padding: 22px 26px; background: rgba(9,12,10,.72); backdrop-filter: blur(10px); }
.proof-item strong { display: block; font-size: .98rem; }
.proof-item span { color: rgba(255,255,255,.62); font-size: .85rem; }

.marquee {
  overflow: hidden;
  background: var(--green);
  color: white;
  border-block: 1px solid rgba(0,0,0,.08);
}
.marquee-track {
  width: max-content;
  padding: 15px 0;
  font-size: clamp(1rem, 2.4vw, 1.65rem);
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
  animation: marquee 24s linear infinite;
}
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding-block: clamp(78px, 10vw, 138px); }
.section-white { background: var(--paper-2); }
.section-dark { background: var(--ink); color: white; }
.section-green { background: var(--green); color: white; }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 44px;
}
.section-heading p { max-width: 48ch; margin: 0; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
}
.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #d6d7d2;
  box-shadow: var(--shadow);
}
.image-frame img { width: 100%; height: 100%; object-fit: cover; }
.image-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 6px;
  background: var(--green);
}
.feature-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}
.feature {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
}
.feature-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 850;
}
.feature p { margin: 4px 0 0; color: #555b56; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.82);
  box-shadow: 0 12px 32px rgba(0,0,0,.055);
}
.service-card .price {
  margin: 24px 0 0;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -.04em;
}
.service-card ul { margin: 20px 0 28px; padding-left: 20px; color: #4e544f; }
.service-card li + li { margin-top: 8px; }
.service-card .btn { margin-top: auto; }
.service-card.featured { background: var(--ink); color: white; border-color: var(--ink); }
.service-card.featured ul { color: rgba(255,255,255,.7); }
.service-card.featured .eyebrow { color: #7be59d; }

.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.gallery-card {
  position: relative;
  grid-column: span 4;
  min-height: 360px;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-sm);
  background: #bbb;
  padding: 0;
  text-align: left;
}
.gallery-card:nth-child(1), .gallery-card:nth-child(5) { grid-column: span 8; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-card:hover img { transform: scale(1.035); }
.gallery-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 55px 22px 20px;
  color: white;
  background: linear-gradient(transparent, rgba(0,0,0,.78));
}
.gallery-overlay strong { display: block; font-size: 1.05rem; }
.gallery-overlay span { display: block; margin-top: 4px; color: rgba(255,255,255,.7); font-size: .88rem; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step { padding: 30px; border-top: 1px solid rgba(255,255,255,.2); }
.step .step-no { color: #7be59d; font-size: .85rem; font-weight: 850; letter-spacing: .12em; }
.step h3 { margin-top: 18px; font-size: 1.5rem; }
.step p { color: rgba(255,255,255,.67); }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.quote {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: white;
}
.quote-mark { color: var(--green); font-size: 4rem; line-height: .7; font-family: Georgia, serif; }
.quote h3 { margin-top: 18px; }
.quote p { color: #4d534e; }
.quote footer { margin-top: 22px; color: #707570; font-size: .9rem; }

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: clamp(44px, 8vw, 86px);
  background: var(--green);
  color: white;
}
.cta-band::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  right: -110px;
  top: -120px;
  border: 70px solid rgba(255,255,255,.1);
  border-radius: 50%;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { max-width: 12ch; }
.cta-band p { max-width: 52ch; }

.page-hero {
  padding-block: clamp(75px, 10vw, 130px);
  background: var(--ink);
  color: white;
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.7);
}

.page-hero .eyebrow {
  color: #7be59d;
}

.page-hero .display {
  max-width: 12ch;
}


/* Results page background */

.results-hero {
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(
      90deg,
      rgba(7, 11, 9, 0.92) 0%,
      rgba(7, 11, 9, 0.82) 38%,
      rgba(9, 18, 12, 0.56) 62%,
      rgba(9, 18, 12, 0.32) 100%
    ),
    linear-gradient(
      180deg,
      rgba(6, 10, 8, 0.26) 0%,
      rgba(6, 10, 8, 0.7) 100%
    ),
    url("../images/results-hero-bg.png") center / cover no-repeat;
}

.results-hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 72% 22%,
      rgba(125, 229, 157, 0.18),
      transparent 28%
    );

  pointer-events: none;
}

.results-copy {
  position: relative;
  z-index: 1;
}

.results-copy .lead {
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.8);
}
.service-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-detail {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: white;
}
.service-detail .service-top { display: flex; justify-content: space-between; gap: 24px; align-items: start; }
.service-detail .price { white-space: nowrap; color: var(--green-dark); font-weight: 900; }
.service-detail p { color: #525853; }
.service-detail ul { padding-left: 20px; }
.service-detail li + li { margin-top: 7px; }

.about-story { display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(36px, 8vw, 100px); align-items: start; }
.portrait { min-height: 680px; }
.story-copy p { font-size: 1.08rem; color: #414642; }
.story-copy .pullquote {
  margin: 34px 0;
  padding: 24px 0 24px 28px;
  border-left: 5px solid var(--green);
  font-size: 1.35rem;
  font-weight: 750;
  color: var(--ink);
}
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
.value-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: white; }
.value-card p { color: #585e59; }

.results-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
}

.results-meta {
  position: relative;
  z-index: 1;

  max-width: 520px;
  justify-self: end;

  padding: 28px 30px;

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;

  background:
    linear-gradient(
      180deg,
      rgba(13, 18, 15, 0.78),
      rgba(10, 15, 12, 0.68)
    );

  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
}

.results-meta::before {
  content: "";
  position: absolute;

  inset: 0 auto 0 0;
  width: 4px;

  border-radius: 24px 0 0 24px;

  background:
    linear-gradient(
      180deg,
      #7be59d 0%,
      var(--green) 100%
    );
}

.results-meta-label {
  display: inline-flex;
  margin-bottom: 12px;

  color: #a7f0bd;

  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.results-meta-title {
  margin: 0;

  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: -0.03em;

  color: white;
}

.results-meta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.results-meta p + p {
  margin-top: 12px;
}

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 24px; align-items: start; }
.contact-panel {
  position: sticky;
  top: 112px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
}
.contact-panel img { width: 100%; aspect-ratio: 1.2/1; object-fit: cover; opacity: .76; }
.contact-panel-copy { padding: 34px; }
.contact-panel-copy p { color: rgba(255,255,255,.68); }
.contact-links { display: grid; gap: 12px; margin-top: 28px; }
.contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.14);
  text-decoration: none;
}

.estimate-form {
  padding: clamp(26px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .9rem; font-weight: 750; }
.field input, .field textarea, .field select {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid #bdc2bd;
  border-radius: 13px;
  background: #fbfbf9;
  color: var(--ink);
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 3px solid rgba(32,166,82,.18); border-color: var(--green); }
.file-box {
  position: relative;
  min-height: 130px;
  display: grid;
  place-items: center;
  padding: 22px;
  border: 1.5px dashed #959b95;
  border-radius: 16px;
  background: var(--paper-2);
  text-align: center;
}
.file-box input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.file-box strong { display: block; }
.file-box span { display: block; margin-top: 4px; color: var(--gray); font-size: .88rem; }
.form-note { margin: 18px 0 0; color: var(--gray); font-size: .86rem; }
.form-error { margin: 10px 0 0; color: #a11919; font-size: .88rem; }
.honeypot { position: absolute; left: -5000px; }

.faq { display: grid; gap: 12px; }
details {
  border: 1px solid var(--line);
  border-radius: 15px;
  background: white;
  padding: 0 20px;
}
summary { padding: 20px 0; font-weight: 780; cursor: pointer; }
details p { margin: 0 0 20px; color: #565c57; }

.thank-you {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 80px 20px;
  text-align: center;
}
.thank-you-box { max-width: 720px; }
.thank-you-box .check {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 0 auto 26px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 2rem;
}

.lightbox {
  width: min(94vw, 1000px);
  max-height: 90vh;
  border: 0;
  border-radius: 18px;
  padding: 0;
  background: #0b0d0c;
  color: white;
  box-shadow: var(--shadow);
}
.lightbox::backdrop { background: rgba(0,0,0,.78); }
.lightbox img { width: 100%; max-height: 72vh; object-fit: contain; }
.lightbox-copy { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 20px; }
.lightbox-close { width: 42px; height: 42px; flex: 0 0 auto; border: 0; border-radius: 50%; background: white; color: black; font-size: 1.4rem; }

.site-footer { padding: 72px 0 26px; background: var(--ink); color: white; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .9fr; gap: 50px; }
.footer-brand img {
  width: 95px;
  height: auto;
  object-fit: contain;
}
.footer-brand p { max-width: 43ch; color: rgba(255,255,255,.6); }
.footer-title { margin: 0 0 16px; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: #7be59d; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.72); text-decoration: none; }
.footer-links a:hover { color: white; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.45);
  font-size: .82rem;
}

.reveal { opacity: 1; transform: none; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    padding: 16px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    background: #111512;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: grid; }
  .site-nav a { padding: 13px 15px; }
  .site-nav .nav-cta { margin-left: 0; text-align: center; }
  .hero { min-height: 680px; }
  .hero-proof { grid-template-columns: repeat(2, 1fr); }
  .split,
.contact-grid,
.about-story,
.results-intro {
  grid-template-columns: 1fr;
}

.results-meta {
  justify-self: start;
  max-width: 100%;
}
  .results-meta {
  justify-self: start;
  max-width: 100%;
}
  .card-grid, .testimonial-grid, .value-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .gallery-card, .gallery-card:nth-child(1), .gallery-card:nth-child(5) { grid-column: span 6; }
  .contact-panel { position: static; }
  .portrait { min-height: 560px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 660px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { min-height: 72px; }
  .brand img { width: 58px; height: 50px; }
  .brand span { font-size: .9rem; }
  .hero { min-height: auto; }
  .hero::before { background-position: 58% center; }
  .hero-content { padding-block: 96px 54px; }
  .hero-proof { grid-template-columns: 1fr; }
  .proof-item { padding: 16px 20px; }
  .section-heading { display: block; }
  .section-heading p { margin-top: 18px; }
  .card-grid, .testimonial-grid, .value-grid { grid-template-columns: 1fr; }
  .gallery-grid { gap: 12px; }
  .gallery-card, .gallery-card:nth-child(1), .gallery-card:nth-child(5) { grid-column: 1 / -1; min-height: 310px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .service-detail .service-top { display: block; }
  .service-detail .price { margin-top: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 8px; }
  .portrait { min-height: 500px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
