:root {
  --black: #0d0d0d;
  --ink: #171717;
  --paper: #ffffff;
  --bone: #f4f2ee;
  --line: #dedbd4;
  --muted: #6a665f;
  --accent: #1f6f3f;
  --accent-dark: #17572f;
  --wrap: 1180px;
  --radius: 4px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

h1, h2, h3 {
  font-family: "Anton", "Arial Narrow", sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0 0 0.4em;
}

h1 { font-size: clamp(3rem, 11vw, 8rem); }
h2 { font-size: clamp(2rem, 5.2vw, 3.6rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.5rem); }

p { margin: 0 0 1.1em; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 0.9rem;
}

.skip-link {
  position: absolute;
  left: -9999px;
  background: var(--accent);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 100;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--black);
  color: #fff;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}
.brand {
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 1.15rem;
  text-decoration: none;
  color: #fff;
}
.brand span { color: var(--accent); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid #444;
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.55rem 0.8rem;
  border-radius: var(--radius);
  cursor: pointer;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.85;
}
.nav a:hover, .nav a[aria-current="page"] { opacity: 1; color: #fff; }
.nav a[aria-current="page"] { border-bottom: 2px solid var(--accent); padding-bottom: 2px; }

.nav .btn { opacity: 1; }

/* Buttons */
.btn {
  display: inline-block;
  border: 2px solid var(--accent);
  background: var(--accent);
  color: #fff !important;
  padding: 0.85rem 1.5rem;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn--ghost { background: transparent; color: #fff !important; border-color: #fff; }
.btn--ghost:hover { background: #fff; color: var(--black) !important; border-color: #fff; }
.btn--dark { background: var(--black); border-color: var(--black); }
.btn--dark:hover { background: #2b2b2b; border-color: #2b2b2b; }
.btn--wide { width: 100%; text-align: center; }

/* Hero */
.hero {
  background: var(--black);
  color: #fff;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(3rem, 7vw, 5rem);
  overflow: hidden;
}
.hero .eyebrow { color: #a8a49c; }
.hero h1 { margin-bottom: 0.25em; }
.hero-lede {
  max-width: 46ch;
  color: #cfccc6;
  font-size: 1.05rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.hero-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.trust-bar {
  background: #171717;
  color: #cfccc6;
  border-top: 1px solid #262626;
}
.trust-bar ul {
  list-style: none;
  margin: 0;
  padding: 1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Sections */
.section { padding: clamp(3.2rem, 7vw, 5.5rem) 0; }
.section--bone { background: var(--bone); }
.section--dark { background: var(--black); color: #fff; }
.section--dark .eyebrow { color: #a8a49c; }
.section-head { max-width: 62ch; margin-bottom: 2.4rem; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.split img { border-radius: var(--radius); }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
}
.card p:last-child { margin-bottom: 0; }
.card .price {
  font-family: "Anton", sans-serif;
  font-size: 1.1rem;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.gallery figure { margin: 0; }
.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}
.gallery figcaption {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.6rem;
  font-weight: 600;
}

/* Quote estimator */
.quote-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.panel {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--line);
}
.field { margin-bottom: 1.15rem; }
.field > label,
.field > .field-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.45rem;
}
.field .hint {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.35rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
}
input[type="number"],
input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  font-size: 1rem;
  background: #fff;
  color: var(--ink);
}
textarea { min-height: 110px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.choices { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 0.6rem; }
.choice { position: relative; }
.choice input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}
.choice span {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.7rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}
.choice input:checked + span {
  border-color: var(--accent);
  background: rgba(31, 111, 63, 0.08);
  color: var(--accent-dark);
}
.choice input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.result {
  background: var(--bone);
  border: 1px solid var(--line);
  border-left: 5px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.4rem;
  margin-top: 1.4rem;
}
.result[hidden] { display: none; }
.result .range {
  font-family: "Anton", sans-serif;
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  line-height: 1;
  margin: 0.2rem 0 0.6rem;
}
.result ul { margin: 0 0 1rem; padding-left: 1.1rem; font-size: 0.92rem; color: var(--muted); }
.result .disclaimer { font-size: 0.82rem; color: var(--muted); margin-bottom: 1rem; }
.result-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }

.callout {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 1.6rem;
}
.callout ol { padding-left: 1.1rem; margin: 0; }
.callout li { margin-bottom: 0.6rem; }

.big-phone {
  font-family: "Anton", sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  text-decoration: none;
  display: inline-block;
  line-height: 1.1;
}
.big-phone:hover { color: var(--accent); }

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
}
.info-grid h3 { margin-bottom: 0.3rem; }
.info-grid p { margin-bottom: 0.2rem; }

.form-status {
  margin-top: 1rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--accent-dark);
}

/* Footer */
.site-footer {
  background: var(--black);
  color: #b9b5ae;
  padding: 3rem 0 2rem;
  font-size: 0.9rem;
}
.site-footer a { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.6rem;
  margin-bottom: 2rem;
}
.site-footer .brand { display: inline-block; margin-bottom: 0.6rem; }
.footer-bottom {
  border-top: 1px solid #262626;
  padding-top: 1.2rem;
  font-size: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  justify-content: space-between;
}

@media (max-width: 860px) {
  .hero-grid, .split, .quote-grid, .two-col { grid-template-columns: 1fr; }
  .nav-toggle { display: inline-block; }
  .nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    align-items: flex-start;
    gap: 1.1rem;
    padding: 1.4rem 1.25rem 1.8rem;
    border-top: 1px solid #262626;
  }
  .nav.is-open { display: flex; }
  .site-header .wrap { position: relative; }
}
