:root {
  --ink: #17201b;
  --ink-deep: #0e1511;
  --paper: #f2eee4;
  --paper-soft: #faf8f2;
  --timber: #c79c57;
  --timber-light: #e5ca96;
  --moss: #75806b;
  --muted: #667069;
  --line: rgba(23, 32, 27, 0.16);
  --shell: min(1220px, calc(100vw - 48px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper-soft);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding: clamp(84px, 10vw, 148px) 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  color: white;
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--timber);
  outline-offset: 4px;
}

.preview-bar {
  position: relative;
  z-index: 101;
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 6px 20px;
  color: var(--ink-deep);
  background: var(--timber-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.preview-bar span + span::before {
  content: "•";
  margin-right: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(250, 248, 242, 0.94);
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 12px 40px rgba(14, 21, 17, 0.06);
}

.header-inner {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--paper-soft);
  background: var(--ink);
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 64px;
  height: 2px;
  background: var(--timber);
  transform: rotate(-43deg);
}

.brand-mark span {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 3vw, 42px);
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  color: #354038;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--timber);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-call {
  display: grid;
  line-height: 1.2;
  text-align: right;
  text-decoration: none;
}

.header-call-label {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.header-call strong {
  margin-top: 3px;
  font-size: 15px;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100svh - 112px);
  display: grid;
  align-items: center;
  padding: clamp(54px, 6vw, 92px) 0 86px;
  background:
    linear-gradient(90deg, rgba(199, 156, 87, 0.08) 1px, transparent 1px) 0 0 / 84px 84px,
    var(--paper-soft);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -18%;
  left: -13%;
  width: 42vw;
  aspect-ratio: 1;
  border: 1px solid rgba(199, 156, 87, 0.2);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--moss);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 38px;
  height: 2px;
  background: var(--timber);
}

.eyebrow.light {
  color: var(--timber-light);
}

.hero h1,
.section-heading h2,
.work-heading h2,
.about-copy h2,
.contact-intro h2,
.faq-grid h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(54px, 6.2vw, 96px);
}

.hero h1 em {
  color: var(--timber);
  font-weight: 400;
}

.hero-intro {
  max-width: 610px;
  margin: 32px 0 0;
  color: #4f5952;
  font-size: clamp(17px, 1.6vw, 20px);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
  color: white;
  background: var(--ink);
}

.button-primary:hover {
  background: #26342c;
}

.button svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  text-underline-offset: 7px;
  text-decoration-thickness: 1px;
}

.text-link.dark {
  margin-top: 8px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 48px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.hero-facts li {
  display: grid;
  gap: 4px;
  padding-right: 15px;
}

.hero-facts strong {
  font-family: var(--serif);
  font-size: 25px;
}

.hero-facts span {
  color: var(--muted);
  font-size: 11px;
}

.hero-visual {
  position: relative;
  min-height: 640px;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 54px -36px -34px 58px;
  background: var(--ink);
}

.hero-visual > img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  filter: saturate(0.83) contrast(1.03);
}

.hero-caption {
  position: absolute;
  right: 24px;
  bottom: 22px;
  display: grid;
  min-width: 192px;
  padding: 18px 20px;
  color: white;
  background: rgba(14, 21, 17, 0.88);
  backdrop-filter: blur(12px);
}

.hero-caption span,
.owner-label small {
  color: var(--timber-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-caption strong {
  margin-top: 3px;
  font-family: var(--serif);
  font-size: 18px;
}

.craft-stamp {
  position: absolute;
  top: -26px;
  right: -22px;
  width: 118px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  gap: 2px;
  border: 1px solid rgba(23, 32, 27, 0.3);
  border-radius: 50%;
  color: var(--ink);
  background: var(--timber-light);
  text-align: center;
  transform: rotate(7deg);
}

.craft-stamp span {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.craft-stamp strong {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
}

.hero-ruler {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 20px;
  opacity: 0.5;
  background: repeating-linear-gradient(90deg, var(--timber) 0 1px, transparent 1px 32px);
}

.services {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 66px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -36px;
}

.section-heading h2,
.work-heading h2,
.about-copy h2,
.contact-intro h2,
.faq-grid h2 {
  font-size: clamp(42px, 5vw, 76px);
}

.section-heading > p:last-child,
.work-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
}

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

.service-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 34px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.28);
  overflow: hidden;
  transition: background 200ms ease, color 200ms ease;
}

.service-card:hover {
  color: white;
  background: var(--ink);
}

.service-number {
  color: var(--timber);
  font-family: var(--serif);
  font-size: 14px;
}

.service-card h3 {
  max-width: 230px;
  margin: auto 0 16px;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
  line-height: 1.08;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.service-card:hover p {
  color: #c7d0ca;
}

.service-line {
  position: absolute;
  top: 42px;
  right: -44px;
  width: 135px;
  height: 1px;
  background: var(--timber);
  transform: rotate(-45deg);
}

.work {
  color: white;
  background: var(--ink-deep);
}

.work-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.5fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 62px;
}

.work-heading .eyebrow {
  margin-bottom: 25px;
}

.work-heading > p {
  color: #9ba69f;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 330px;
  gap: 18px;
}

.project-card {
  position: relative;
  grid-column: span 4;
  padding: 0;
  border: 0;
  color: white;
  background: #233027;
  overflow: hidden;
  cursor: zoom-in;
  text-align: left;
}

.project-card.project-wide {
  grid-column: span 8;
}

.project-card.project-tall {
  grid-row: span 2;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.05);
  transition: transform 500ms cubic-bezier(0.2, 0.75, 0.25, 1), filter 300ms ease;
}

.project-card:hover img,
.project-card:focus-visible img {
  transform: scale(1.035);
  filter: saturate(1) contrast(1.02);
}

.project-overlay {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 0 18px;
  padding: 62px 24px 22px;
  background: linear-gradient(transparent, rgba(6, 11, 8, 0.88));
}

.project-overlay small {
  grid-column: 1;
  color: var(--timber-light);
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.project-overlay strong {
  grid-column: 1;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.project-overlay i {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.project-card:hover .project-overlay i,
.project-card:focus-visible .project-overlay i {
  opacity: 1;
  transform: translateX(0);
}

.archive-note {
  margin: 30px 0 0;
  color: #9ba69f;
  font-size: 13px;
  text-align: right;
}

.about {
  background: var(--paper-soft);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(60px, 10vw, 142px);
  align-items: center;
}

.owner-visual {
  position: relative;
  min-height: 660px;
  background-image: linear-gradient(rgba(23, 32, 27, 0.02), rgba(23, 32, 27, 0.1)), url("assets/images/kees-bronbeeld.jpg");
  background-repeat: no-repeat;
  background-size: 292% auto;
  background-position: 93% 26%;
  box-shadow: -26px 26px 0 var(--timber-light);
}

.owner-visual::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.owner-label {
  position: absolute;
  right: -26px;
  bottom: 42px;
  min-width: 230px;
  display: grid;
  padding: 20px 24px;
  color: white;
  background: var(--ink);
}

.owner-label strong {
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
}

.about-copy .lead {
  margin: 32px 0 0;
  color: #354038;
  font-size: 21px;
}

.about-copy > p:not(.eyebrow):not(.lead) {
  color: var(--muted);
}

.about-copy blockquote {
  position: relative;
  margin: 36px 0 28px;
  padding: 10px 0 10px 34px;
  border-left: 2px solid var(--timber);
}

.about-copy blockquote > span {
  position: absolute;
  top: -20px;
  left: 16px;
  color: rgba(199, 156, 87, 0.25);
  font-family: var(--serif);
  font-size: 92px;
  line-height: 1;
}

.about-copy blockquote p {
  position: relative;
  margin: 0;
  font-family: var(--serif);
  font-size: 31px;
  line-height: 1.15;
}

.contact {
  position: relative;
  color: white;
  background: var(--ink);
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: -240px;
  right: -120px;
  width: 560px;
  aspect-ratio: 1;
  border: 1px solid rgba(199, 156, 87, 0.17);
  border-radius: 50%;
  box-shadow: 0 0 0 68px rgba(199, 156, 87, 0.04), 0 0 0 136px rgba(199, 156, 87, 0.025);
}

.contact-shell {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(60px, 9vw, 130px);
}

.contact-intro > p:not(.eyebrow) {
  max-width: 430px;
  color: #b7c0ba;
  font-size: 18px;
}

.phone-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin: 38px 0 34px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.phone-card:hover {
  border-color: var(--timber);
  background: rgba(255, 255, 255, 0.04);
}

.phone-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--timber);
}

.phone-icon svg {
  width: 21px;
  fill: currentColor;
}

.phone-card > span:nth-child(2) {
  display: grid;
}

.phone-card small {
  color: #9da8a0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.phone-card strong {
  font-family: var(--serif);
  font-size: 23px;
}

.phone-card i {
  color: var(--timber);
  font-style: normal;
  font-size: 24px;
}

.contact-intro address {
  color: #b7c0ba;
  font-style: normal;
}

.contact-intro address strong {
  color: white;
}

.map-link {
  display: inline-block;
  margin-top: 15px;
  color: var(--timber-light);
  font-size: 12px;
  font-weight: 800;
  text-underline-offset: 5px;
}

.project-form {
  display: grid;
  gap: 21px;
  padding: clamp(28px, 4vw, 52px);
  color: var(--ink);
  background: var(--paper-soft);
}

.form-heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}

.form-heading span {
  font-family: var(--serif);
  font-size: 29px;
}

.form-heading small {
  padding: 3px 8px;
  color: var(--ink);
  background: var(--timber-light);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.project-form label {
  display: grid;
  gap: 8px;
  color: #445048;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-form input,
.project-form select,
.project-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #b9bdb6;
  border-radius: 0;
  padding: 12px 4px;
  color: var(--ink);
  background: transparent;
  font-size: 15px;
  font-weight: 450;
  letter-spacing: 0;
  text-transform: none;
}

.project-form input:focus,
.project-form select:focus,
.project-form textarea:focus {
  outline: 0;
  border-color: var(--timber);
  box-shadow: 0 2px 0 var(--timber);
}

.project-form textarea {
  resize: vertical;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.form-status:not(:empty) {
  padding: 11px 13px;
  color: #6b4f19;
  background: #f1dfb9;
}

.faq {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(60px, 10vw, 140px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 24px 0;
  font-family: var(--serif);
  font-size: 21px;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--timber);
  font-family: var(--sans);
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 640px;
  margin: -8px 0 24px;
  color: var(--muted);
}

.site-footer {
  padding: 74px 0 28px;
  color: #b2bcb5;
  background: var(--ink-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.5fr;
  gap: 70px;
}

.brand-footer {
  color: white;
}

.brand-footer + p {
  max-width: 420px;
  margin-top: 22px;
}

.footer-grid > div:not(:first-child) {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-grid small {
  margin-bottom: 6px;
  color: var(--timber-light);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-grid a {
  color: white;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 64px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
}

.mobile-call {
  display: none;
}

.lightbox {
  max-width: min(980px, calc(100vw - 40px));
  padding: 0;
  border: 0;
  color: white;
  background: var(--ink-deep);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.45);
}

.lightbox::backdrop {
  background: rgba(4, 8, 5, 0.88);
  backdrop-filter: blur(5px);
}

.lightbox img {
  max-height: 78vh;
  width: 100%;
  object-fit: contain;
  background: black;
}

.lightbox p {
  margin: 0;
  padding: 16px 22px;
  font-family: var(--serif);
  font-size: 19px;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  color: white;
  background: rgba(14, 21, 17, 0.82);
  font-size: 28px;
  cursor: pointer;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .site-header {
    background: var(--paper-soft);
    backdrop-filter: none;
  }

  .header-inner {
    grid-template-columns: auto auto 1fr;
  }

  .site-nav {
    position: fixed;
    top: 112px;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    align-content: center;
    gap: 10px;
    padding: 34px;
    color: white;
    background: var(--ink-deep);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    color: white;
    font-family: var(--serif);
    font-size: clamp(30px, 7vw, 52px);
    font-weight: 400;
    text-align: center;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    color: var(--ink);
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 20px;
    height: 2px;
    display: block;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .hero-grid {
    grid-template-columns: 1fr 0.92fr;
    gap: 42px;
  }

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

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

  .contact-shell {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 46px;
  }
}

@media (max-width: 800px) {
  :root {
    --shell: min(100% - 34px, 680px);
  }

  .section {
    padding: 82px 0;
  }

  .preview-bar {
    justify-content: flex-start;
    overflow: hidden;
    white-space: nowrap;
  }

  .header-inner {
    min-height: 72px;
  }

  .header-call {
    display: none;
  }

  .site-nav {
    top: 100px;
  }

  .hero {
    display: block;
    min-height: 0;
    padding-top: 52px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .hero h1 {
    font-size: clamp(48px, 13vw, 72px);
  }

  .hero-facts {
    margin-top: 38px;
  }

  .hero-visual,
  .hero-visual > img {
    min-height: 500px;
    height: 500px;
  }

  .hero-visual::before {
    inset: 34px -17px -25px 34px;
  }

  .craft-stamp {
    top: -36px;
    right: 8px;
    width: 104px;
  }

  .section-heading,
  .work-heading,
  .about-grid,
  .contact-shell,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .section-heading .eyebrow {
    margin-bottom: 0;
  }

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

  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 310px;
  }

  .project-card,
  .project-card.project-wide {
    grid-column: span 1;
  }

  .project-card.project-tall {
    grid-row: span 1;
  }

  .about-grid {
    gap: 70px;
  }

  .owner-visual {
    width: calc(100% - 22px);
    min-height: 600px;
  }

  .contact-intro {
    max-width: 560px;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 66px;
  }

  .preview-bar {
    font-size: 9px;
  }

  .preview-bar span + span {
    display: none;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .brand-copy small {
    font-size: 8px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .text-link {
    justify-content: center;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-facts li {
    grid-template-columns: minmax(88px, auto) 1fr;
    align-items: baseline;
    gap: 10px;
  }

  .hero-visual,
  .hero-visual > img {
    min-height: 430px;
    height: 430px;
  }

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

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

  .project-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 360px;
  }

  .owner-visual {
    min-height: 540px;
    background-size: 315% auto;
    background-position: 94% 28%;
  }

  .owner-label {
    right: -16px;
    bottom: 24px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .project-form {
    margin-inline: -17px;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

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

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-call {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 110;
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    color: var(--ink);
    background: var(--timber-light);
    text-decoration: none;
    box-shadow: 0 -8px 28px rgba(14, 21, 17, 0.18);
  }

  .mobile-call span {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .mobile-call strong {
    font-family: var(--serif);
    font-size: 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
