:root {
  --ink: #191513;
  --coal: #211a17;
  --cream: #faf6ee;
  --paper: #fffdf8;
  --mist: #eee7dc;
  --line: #ded3c3;
  --muted: #746a60;
  --copper: #b2452f;
  --copper-dark: #8f2d20;
  --sage: #637365;
  --gold: #c8a15d;
  --shadow: 0 26px 80px rgba(82, 45, 32, 0.16), 0 7px 24px rgba(25, 21, 19, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 8%, rgba(178, 69, 47, 0.12), transparent 26rem),
    radial-gradient(circle at 88% 18%, rgba(99, 115, 101, 0.16), transparent 24rem),
    linear-gradient(180deg, var(--paper), var(--cream));
  font-family: Arial, Helvetica, system-ui, sans-serif;
  line-height: 1.7;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .17;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
.page { overflow: hidden; }
.wrap { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.serif { font-family: Georgia, "Times New Roman", serif; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 42px; height: 1px; background: currentColor; opacity: .55; }
.headline {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 8vw, 104px);
  line-height: .95;
  letter-spacing: -0.03em;
  font-weight: 650;
}
.headline-small {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 650;
}
.lead {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.72;
}
.text { color: var(--muted); margin: 0; }

.nav {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  color: var(--paper);
  transition: background .35s ease, color .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}
.nav.scrolled {
  color: var(--ink);
  background: rgba(255, 253, 248, .94);
  box-shadow: 0 18px 48px rgba(25,21,19,.08), 0 1px 0 rgba(25,21,19,.08);
  backdrop-filter: blur(16px);
}
.nav-inner {
  width: min(1240px, calc(100% - 28px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 188px;
}
.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: rgba(255,255,255,.92);
  border-radius: 50%;
  padding: 4px;
}
.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1;
}
.brand span {
  display: block;
  margin-top: 3px;
  color: currentColor;
  opacity: .66;
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a,
.nav-parent {
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .82;
  transition: opacity .22s ease, color .22s ease;
}
.nav-links a:hover, .nav-links a:focus-visible, .nav-parent:hover, .nav-parent:focus-visible { opacity: 1; color: var(--gold); outline: 0; }
.nav-item { position: relative; }
.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.nav-parent::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: .7;
}
.dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  width: min(360px, calc(100vw - 32px));
  padding: 10px;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 0%, rgba(200,161,93,.16), transparent 12rem),
    rgba(255,253,248,.98);
  box-shadow: 0 28px 80px rgba(25,21,19,.16), 0 1px 0 rgba(25,21,19,.08);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: transform .24s cubic-bezier(.2,.8,.2,1), opacity .24s ease;
}
.dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.dropdown a {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-bottom: 1px solid rgba(222,211,195,.76);
  opacity: 1;
}
.dropdown a:last-child { border-bottom: 0; }
.dropdown span {
  font-size: 13px;
  color: var(--ink);
}
.dropdown small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}
.nav-cta { display: flex; align-items: center; gap: 12px; }
.menu-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .24s cubic-bezier(.2,.8,.2,1), opacity .24s ease, background .24s ease, border-color .24s ease, color .24s ease;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); outline: 3px solid rgba(200,161,93,.24); outline-offset: 3px; }
.btn:active { transform: translateY(0) scale(.98); }
.btn-primary {
  color: var(--paper);
  background: var(--copper);
  box-shadow: 0 16px 38px rgba(178,69,47,.24);
}
.btn-primary:hover { background: var(--copper-dark); }
.btn-ghost { color: inherit; border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.08); }
.nav.scrolled .btn-ghost { border-color: rgba(25,21,19,.22); background: rgba(25,21,19,.04); }
.btn-dark { color: var(--paper); background: var(--ink); box-shadow: 0 18px 44px rgba(25,21,19,.2); }

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  padding: 130px 0 72px;
  color: var(--paper);
  isolation: isolate;
}
.hero-media, .page-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media img, .page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero > img.page-hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::before, .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(20,16,14,.88), rgba(20,16,14,.48) 48%, rgba(20,16,14,.18)),
    linear-gradient(0deg, rgba(20,16,14,.58), transparent 42%);
}
.hero::after, .page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(99, 72, 54, .32);
  mix-blend-mode: multiply;
}
.hero-content { max-width: 920px; }
.hero .lead { max-width: 690px; color: rgba(255,253,248,.78); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 64px;
  max-width: 920px;
  background: rgba(255,255,255,.18);
}
.proof-item {
  display: grid;
  align-content: start;
  min-height: 138px;
  padding: 22px;
  color: var(--paper);
  text-decoration: none;
  background: rgba(25,21,19,.44);
  backdrop-filter: blur(10px);
  transition: transform .24s cubic-bezier(.2,.8,.2,1), background .24s ease, box-shadow .24s ease;
}
.proof-item:hover,
.proof-item:focus-visible {
  transform: translateY(-4px);
  background: rgba(178,69,47,.56);
  box-shadow: 0 18px 52px rgba(0,0,0,.18);
  outline: 3px solid rgba(255,253,248,.22);
  outline-offset: 3px;
}
.proof-item strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: clamp(26px, 2.8vw, 38px); line-height: 1; }
.proof-item span { display: block; margin-top: 10px; color: rgba(255,253,248,.76); font-size: 12px; letter-spacing: .09em; text-transform: uppercase; line-height: 1.45; }
.proof-item em {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--gold);
  font-style: normal;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.proof-item em::after { content: "->"; color: currentColor; }

.section { padding: clamp(72px, 10vw, 140px) 0; }
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
}
.image-pair {
  position: relative;
  min-height: 540px;
}
.image-pair img {
  position: absolute;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.image-pair img:first-child {
  top: 0;
  right: 0;
  width: 72%;
  height: 70%;
}
.image-pair img:last-child {
  left: 0;
  bottom: 0;
  width: 58%;
  height: 48%;
  border: 12px solid var(--paper);
}
.local-note {
  display: grid;
  gap: 8px;
  margin-top: 26px;
  padding: 18px 20px;
  border-left: 4px solid var(--copper);
  background:
    linear-gradient(90deg, rgba(178,69,47,.1), rgba(255,253,248,.62));
  box-shadow: 0 16px 44px rgba(82,45,32,.08);
}
.local-note span {
  color: var(--copper-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.local-note strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.15;
}
.split-dark {
  color: var(--paper);
  background:
    radial-gradient(circle at 84% 14%, rgba(178,69,47,.3), transparent 24rem),
    linear-gradient(135deg, #171311, #2a211d);
}
.split-dark .lead, .split-dark .text { color: rgba(255,253,248,.7); }
.service-grid, .project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}
.service-card, .project-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  color: var(--paper);
  text-decoration: none;
  background: var(--coal);
}
.service-card img, .project-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.8,.2,1), opacity .7s ease;
}
.service-card::after, .project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16,13,11,.86), rgba(16,13,11,.22) 58%, rgba(16,13,11,.08));
}
.service-card:hover img, .service-card:focus-visible img, .project-card:hover img, .project-card:focus-visible img {
  transform: scale(1.045);
  opacity: .82;
}
.card-copy {
  position: absolute;
  z-index: 1;
  left: 26px;
  right: 26px;
  bottom: 24px;
}
.card-copy small { color: var(--gold); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 900; }
.card-copy h3 { margin: 8px 0 8px; font-family: Georgia, "Times New Roman", serif; font-size: 32px; line-height: 1.02; letter-spacing: -0.02em; }
.card-copy p { margin: 0; color: rgba(255,253,248,.72); font-size: 14px; }

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 48px;
  background: var(--line);
}
.step {
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255,253,248,.72);
}
.step b { color: var(--copper); font-family: Georgia, "Times New Roman", serif; font-size: 46px; line-height: 1; }
.step h3 { margin: 18px 0 10px; font-size: 18px; line-height: 1.2; }
.step p { margin: 0; color: var(--muted); font-size: 15px; }

.feature-band {
  min-height: 620px;
  display: grid;
  align-items: end;
  color: var(--paper);
  position: relative;
  isolation: isolate;
  padding: 80px 0;
}
.feature-band img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(20,16,14,.88), rgba(20,16,14,.24));
}
.feature-copy { max-width: 780px; }
.feature-copy .lead { color: rgba(255,253,248,.76); }

.areas {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: start;
}
.area-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.area-list li {
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: rgba(255,253,248,.66);
  font-weight: 800;
}

.seo-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 40px;
  background: var(--line);
}
.seo-strip a {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 22px;
  color: var(--ink);
  text-decoration: none;
  background: rgba(255,253,248,.76);
  transition: transform .24s cubic-bezier(.2,.8,.2,1), background .24s ease;
}
.seo-strip a:hover,
.seo-strip a:focus-visible {
  transform: translateY(-3px);
  background: var(--paper);
  outline: 3px solid rgba(200,161,93,.24);
  outline-offset: 3px;
}
.seo-strip strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.05;
}
.seo-strip span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.page-hero {
  position: relative;
  min-height: 58svh;
  display: grid;
  align-items: end;
  padding: 130px 0 72px;
  color: var(--paper);
  isolation: isolate;
}
.page-hero .lead { max-width: 760px; color: rgba(255,253,248,.78); }
.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: start;
}
.sticky-note {
  position: sticky;
  top: 112px;
  padding: 30px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow);
}
.sticky-note p { color: rgba(255,253,248,.72); margin: 12px 0 22px; }
.service-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 26px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}
.service-row img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.service-row h2 { margin: 0 0 10px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(28px, 4vw, 44px); line-height: 1; letter-spacing: -0.025em; }
.service-row p { margin: 0 0 16px; color: var(--muted); }
.check-list { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; list-style: none; }
.check-list li { padding: 7px 12px; background: rgba(178,69,47,.09); color: var(--copper-dark); border-radius: 999px; font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }

.content-panel {
  padding: clamp(28px, 5vw, 54px);
  background:
    radial-gradient(circle at 100% 0%, rgba(99,115,101,.12), transparent 18rem),
    rgba(255,253,248,.74);
  border: 1px solid rgba(222,211,195,.82);
  box-shadow: 0 18px 50px rgba(82,45,32,.08);
}
.content-panel + .content-panel { margin-top: 22px; }
.content-panel h2,
.content-panel h3 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.content-panel h2 { font-size: clamp(30px, 4vw, 52px); }
.content-panel h3 { font-size: clamp(24px, 3vw, 36px); }
.content-panel p { margin: 0 0 18px; color: var(--muted); }
.answer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}
.answer-card {
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(255,253,248,.72);
}
.answer-card h3 { font-size: 25px; }
.answer-card p { margin: 0; font-size: 15px; }
.mini-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.mini-nav a {
  padding: 9px 13px;
  color: var(--copper-dark);
  text-decoration: none;
  border: 1px solid rgba(178,69,47,.22);
  background: rgba(178,69,47,.08);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .24s cubic-bezier(.2,.8,.2,1), background .24s ease;
}
.mini-nav a:hover,
.mini-nav a:focus-visible {
  transform: translateY(-2px);
  background: rgba(178,69,47,.14);
  outline: 3px solid rgba(178,69,47,.16);
  outline-offset: 2px;
}

.gallery {
  columns: 3 260px;
  column-gap: 18px;
  margin-top: 48px;
}
.gallery figure {
  break-inside: avoid;
  margin: 0 0 18px;
  position: relative;
  overflow: hidden;
  background: var(--coal);
}
.gallery img { width: 100%; object-fit: cover; }
.gallery figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px;
  color: var(--paper);
  background: linear-gradient(0deg, rgba(15,12,10,.84), transparent);
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 7vw, 84px);
}
.contact-card {
  padding: 32px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow);
}
.contact-card a { display: block; color: var(--paper); text-decoration: none; margin-top: 16px; font-size: 20px; font-weight: 800; }
.form {
  display: grid;
  gap: 16px;
}
.form label { display: grid; gap: 8px; color: var(--muted); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.form input, .form textarea, .form select {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255,253,248,.82);
  color: var(--ink);
  padding: 15px 16px;
  font: inherit;
  border-radius: 0;
}
.form input:focus, .form textarea:focus, .form select:focus { outline: 3px solid rgba(178,69,47,.18); border-color: var(--copper); }
.form-two { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }

.cta {
  color: var(--paper);
  background:
    radial-gradient(circle at 18% 12%, rgba(200,161,93,.24), transparent 22rem),
    linear-gradient(135deg, #171311, #2b211d);
  padding: clamp(64px, 9vw, 112px) 0;
}
.cta-grid { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 32px; align-items: end; }
.cta .lead { color: rgba(255,253,248,.72); max-width: 680px; }
.footer {
  background: #120f0d;
  color: rgba(255,253,248,.72);
  padding: 48px 0;
}
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 26px; align-items: start; }
.footer a { color: rgba(255,253,248,.82); text-decoration: none; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }

@media (max-width: 920px) {
  .nav-inner { min-height: 72px; }
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .menu-toggle {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.38);
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    color: inherit;
    font-size: 22px;
  }
  .nav.scrolled .menu-toggle { border-color: rgba(25,21,19,.18); }
  .nav.open .nav-links {
    display: grid;
    position: absolute;
    top: 72px;
    left: 14px;
    right: 14px;
    gap: 0;
    padding: 12px;
    color: var(--ink);
    max-height: calc(100svh - 88px);
    overflow-y: auto;
    background:
      radial-gradient(circle at 100% 0%, rgba(200,161,93,.18), transparent 16rem),
      rgba(255,253,248,.98);
    box-shadow: var(--shadow);
  }
  .nav.open .nav-links a { padding: 16px 12px; border-bottom: 1px solid var(--line); }
  .nav.open .nav-links > a,
  .nav.open .nav-links .nav-parent { padding: 16px 12px; border-bottom: 1px solid var(--line); }
  .nav.open .nav-parent { display: flex; justify-content: space-between; }
  .nav-item { display: grid; }
  .dropdown {
    position: static;
    width: auto;
    padding: 4px 0 8px 14px;
    color: var(--ink);
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
  }
  .dropdown::before { display: none; }
  .dropdown a {
    padding: 12px;
    border-bottom: 1px solid rgba(222,211,195,.7);
  }
  .dropdown small { display: none; }
  .hero { min-height: 88svh; padding-top: 112px; }
  .hero-proof, .service-grid, .project-grid, .process, .areas, .detail-grid, .contact-grid, .cta-grid, .intro-grid, .seo-strip, .answer-grid {
    grid-template-columns: 1fr;
  }
  .image-pair { min-height: 420px; }
  .service-row { grid-template-columns: 1fr; }
  .sticky-note { position: static; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .wrap { width: min(100% - 24px, 1180px); }
  .brand strong { font-size: 16px; }
  .brand span { display: none; }
  .nav-cta .btn-primary { display: none; }
  .headline { font-size: clamp(44px, 14vw, 70px); }
  .headline-small { font-size: clamp(34px, 10vw, 52px); }
  .hero-proof, .area-list, .form-two { grid-template-columns: 1fr; }
  .service-card, .project-card { min-height: 310px; }
  .image-pair img:first-child { width: 86%; }
  .image-pair img:last-child { width: 66%; }
  .cta .btn { width: 100%; }
}
