@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #171615;
  --graphite: #242424;
  --graphite-2: #30302d;
  --plaster: #f5f1e8;
  --paper: #fbfaf6;
  --cream: #ede5d2;
  --stone: #d8d0c2;
  --line: rgba(23, 22, 21, 0.14);
  --line-dark: rgba(255, 255, 255, 0.16);
  --copper: #a45d38;
  --copper-2: #c88752;
  --moss: #536155;
  --moss-deep: #2d3a30;
  --white: #ffffff;
  --muted: #6f6a61;
  --shadow: 0 24px 70px rgba(20, 18, 15, 0.18);
  --shadow-deep: 0 30px 80px rgba(20, 18, 15, 0.22);
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "Manrope", "Inter Tight", Optima, Candara, "Segoe UI", system-ui, sans-serif;
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

.shell {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(23, 22, 21, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 22, 21, 0.028) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 246, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav {
  width: min(var(--max), calc(100% - 40px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand img {
  width: 188px;
  height: auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  color: var(--ink);
  place-items: center;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 19px;
  height: 2px;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav-toggle span::before {
  transform: translateY(-7px);
}

.nav-toggle span::after {
  transform: translateY(5px);
}

.nav-toggle[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::before {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span::after {
  transform: translateY(-2px) rotate(-90deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 4px;
  color: #3f3c36;
  font-size: 15px;
  font-weight: 650;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.is-active {
  background: rgba(164, 93, 56, 0.11);
  color: var(--ink);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn,
.mini-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 760;
  line-height: 1.1;
  min-height: 44px;
  text-align: center;
}

.btn {
  padding: 14px 18px;
  font-size: 15px;
}

.btn-primary {
  background: var(--copper);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(164, 93, 56, 0.24);
}

.btn-primary:hover {
  background: #8f4c2d;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn-light {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--line);
}

.btn-light:hover {
  border-color: rgba(164, 93, 56, 0.42);
}

.mini-btn {
  padding: 10px 13px;
  font-size: 14px;
  background: var(--ink);
  color: var(--white);
}

.hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 78% 18%, rgba(200, 135, 82, 0.18), transparent 30%),
    var(--ink);
  background-size: 54px 54px, 54px 54px, auto, auto;
  color: var(--white);
}

.hero-inner {
  width: min(var(--max), calc(100% - 40px));
  min-height: calc(100vh - 74px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 46px;
  align-items: center;
  padding: 64px 0 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f0d8bd;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 44px;
  height: 2px;
  background: var(--copper-2);
}

.hero-logo {
  width: 290px;
  margin-bottom: 34px;
}

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

h1 {
  max-width: 720px;
  margin-top: 18px;
  font-family: var(--display);
  font-size: 68px;
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.018em;
  font-variation-settings: "opsz" 96;
}

.lead {
  max-width: 640px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 680px;
  margin-top: 44px;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.hero-proof span {
  min-height: 92px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.hero-proof strong {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
  font-size: 16px;
}

.hero-visual {
  position: relative;
  min-height: 610px;
  border-left: 1px solid var(--line-dark);
}

.hero-photo {
  position: absolute;
  inset: 22px 0 70px 40px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(23, 22, 21, 0.48), transparent 52%),
    linear-gradient(0deg, rgba(23, 22, 21, 0.42), transparent 40%);
}

.measurement {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 76%;
  min-height: 176px;
  padding: 24px;
  background: var(--plaster);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.measurement::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 22px;
  width: 86px;
  height: 86px;
  background: url("logo-symbol-color.svg") center/contain no-repeat;
  opacity: 0.18;
}

.measurement b {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.measurement p {
  max-width: 360px;
  color: var(--muted);
  font-size: 15px;
}

.section {
  padding: 92px 0;
}

.section.alt {
  background: var(--plaster);
}

.section.dark {
  background: var(--graphite);
  color: var(--white);
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 34px;
  align-items: end;
  margin-bottom: 42px;
}

.section-kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 820;
  text-transform: uppercase;
}

h2 {
  font-family: var(--display);
  font-size: 44px;
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -0.014em;
  font-variation-settings: "opsz" 60;
}

h3 {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.22;
  font-weight: 500;
  letter-spacing: -0.005em;
  font-variation-settings: "opsz" 28;
}

.section-head p,
.rich p {
  color: var(--muted);
  font-size: 18px;
}

.dark .section-head p,
.dark .rich p {
  color: rgba(255, 255, 255, 0.72);
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #eee7dc;
}

.trust-grid {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  min-height: 108px;
  padding: 24px 20px;
  border-left: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 1px solid var(--line);
}

.trust-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}

.trust-item span {
  color: var(--muted);
  font-size: 14px;
}

.service-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 220px 1fr 150px;
  gap: 26px;
  align-items: center;
  padding: 28px;
  background: var(--paper);
}

.service-row:hover {
  background: #fffdf8;
}

.service-index {
  color: var(--copper);
  font-weight: 820;
}

.service-row p {
  color: var(--muted);
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: var(--ink);
  font-weight: 790;
}

.arrow-link::after {
  content: ">";
  color: var(--copper);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: start;
}

.material-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.material-tile {
  min-height: 164px;
  padding: 20px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  position: relative;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 18px),
    var(--graphite);
}

.material-tile:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent),
    var(--moss);
}

.material-tile:nth-child(3) {
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.11) 0 2px, transparent 2px 16px),
    #80634c;
}

.material-tile:nth-child(4) {
  background:
    linear-gradient(90deg, rgba(164, 93, 56, 0.24), transparent),
    #35312c;
}

.material-tile strong {
  position: relative;
  z-index: 1;
  max-width: 190px;
  font-size: 18px;
}

.process {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.process-step {
  min-height: 250px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.055);
  counter-increment: step;
}

.process-step::before {
  content: "0" counter(step);
  display: block;
  margin-bottom: 38px;
  color: var(--copper-2);
  font-family: var(--display);
  font-size: 52px;
  line-height: 1;
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.02em;
}

.process-step p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.reference-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.reference-item {
  min-height: 300px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.reference-item::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background:
    linear-gradient(135deg, rgba(164, 93, 56, 0.22), transparent 45%),
    repeating-linear-gradient(90deg, rgba(23, 22, 21, 0.18) 0 1px, transparent 1px 22px);
}

.reference-item:nth-child(2)::before {
  background:
    linear-gradient(135deg, rgba(83, 97, 85, 0.28), transparent 52%),
    repeating-linear-gradient(0deg, rgba(23, 22, 21, 0.15) 0 1px, transparent 1px 18px);
}

.reference-item:nth-child(3)::before {
  background:
    linear-gradient(135deg, rgba(128, 99, 76, 0.3), transparent 52%),
    repeating-linear-gradient(45deg, rgba(23, 22, 21, 0.14) 0 2px, transparent 2px 18px);
}

.reference-item h3,
.reference-item p,
.reference-item span {
  position: relative;
  z-index: 1;
}

.reference-item span {
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 9px;
  background: rgba(23, 22, 21, 0.86);
  color: var(--white);
  font-size: 12px;
  font-weight: 760;
}

.reference-item p {
  margin-top: 8px;
  color: var(--muted);
}

.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.area-box {
  min-height: 220px;
  padding: 28px;
  background: var(--paper);
}

.area-box strong {
  display: block;
  margin-bottom: 14px;
  font-size: 20px;
}

.area-box p {
  color: var(--muted);
}

.faq {
  display: grid;
  gap: 10px;
}

.faq details {
  border: 1px solid var(--line);
  background: var(--paper);
}

.faq summary {
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 800;
}

.faq details p {
  padding: 0 22px 22px;
  color: var(--muted);
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  background: var(--ink);
  color: var(--white);
}

.cta-panel p {
  max-width: 660px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
}

.page-hero {
  background: var(--ink);
  color: var(--white);
  padding: 84px 0 72px;
}

.page-hero .wrap {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 42px;
  align-items: end;
}

.page-hero h1 {
  margin-top: 14px;
  font-size: 60px;
  font-variation-settings: "opsz" 80;
}

.breadcrumbs {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.8);
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.scope-item {
  min-height: 210px;
  padding: 24px;
  background: var(--paper);
}

.scope-item p {
  margin-top: 10px;
  color: var(--muted);
}

.two-col-text {
  columns: 2;
  column-gap: 52px;
}

.two-col-text p {
  margin-bottom: 18px;
  color: var(--muted);
  break-inside: avoid;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 34px;
  align-items: start;
}

.form {
  display: grid;
  gap: 14px;
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  font-size: 14px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(23, 22, 21, 0.18);
  border-radius: 4px;
  background: #fffdf8;
  padding: 12px 13px;
  color: var(--ink);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 13px;
}

.contact-facts {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.contact-facts a,
.contact-facts div {
  display: block;
  padding: 22px;
  background: var(--plaster);
}

.contact-facts span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 780;
  text-transform: uppercase;
}

.contact-facts strong {
  display: block;
  margin-top: 5px;
  font-size: 20px;
  overflow-wrap: anywhere;
}

.legal {
  max-width: 840px;
}

.legal h2 {
  margin-top: 42px;
  margin-bottom: 14px;
  font-size: 32px;
}

.legal p,
.legal li {
  color: var(--muted);
}

.legal ul {
  padding-left: 20px;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 54px 0 30px;
}

.footer-grid {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 0.7fr);
  gap: 32px;
}

.footer-logo {
  width: 218px;
  margin-bottom: 20px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer h3 {
  margin-bottom: 16px;
  font-size: 15px;
  text-transform: uppercase;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}

.footer-bottom {
  width: min(var(--max), calc(100% - 40px));
  margin: 38px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
}

.mobile-contact {
  display: none;
}

@media (max-width: 1060px) {
  .nav {
    width: min(var(--max), calc(100% - 28px));
  }

  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 76px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .nav-actions .mini-btn {
    display: none;
  }

  .hero-inner,
  .split,
  .page-hero .wrap,
  .contact-layout,
  .section-head {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding: 56px 0 64px;
  }

  .hero-visual {
    min-height: 520px;
  }

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

  .reference-grid,
  .scope-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-row {
    grid-template-columns: 170px 1fr;
  }

  .service-row .arrow-link {
    justify-content: flex-start;
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 72px;
  }

  .nav {
    min-height: 68px;
  }

  .brand img {
    width: 164px;
  }

  .wrap,
  .hero-inner,
  .trust-grid,
  .footer-grid {
    width: min(var(--max), calc(100% - 28px));
  }

  h1,
  .page-hero h1 {
    font-size: 42px;
    line-height: 1.02;
    font-variation-settings: "opsz" 60;
  }

  h2 {
    font-size: 34px;
    font-variation-settings: "opsz" 36;
  }

  .process-step::before {
    font-size: 40px;
    margin-bottom: 22px;
  }

  .lead {
    font-size: 18px;
  }

  .hero-inner {
    padding: 38px 0 46px;
  }

  .hero-logo {
    display: none;
  }

  .hero-proof {
    display: none;
  }

  .trust-grid,
  .process,
  .reference-grid,
  .scope-grid,
  .area-grid,
  .material-board,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    inset: 0 0 82px 0;
  }

  .hero-visual {
    min-height: 350px;
    border-left: 0;
    margin-top: 16px;
  }

  .measurement {
    width: calc(100% - 28px);
    right: 14px;
    min-height: 128px;
    padding: 18px;
  }

  .section,
  .page-hero {
    padding: 64px 0;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px;
  }

  .service-row .arrow-link {
    grid-column: auto;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .two-col-text {
    columns: 1;
  }

  .mobile-contact {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line-dark);
    background: var(--ink);
  }

  .mobile-contact a {
    min-height: 58px;
    display: grid;
    place-items: center;
    color: var(--white);
    font-weight: 820;
  }

  .mobile-contact a + a {
    border-left: 1px solid var(--line-dark);
    background: var(--copper);
  }
}
