:root {
  --ink: #14221b;
  --ink-soft: #263b31;
  --bone: #edf2e5;
  --paper: #fbfcf6;
  --line: rgba(20, 34, 27, 0.16);
  --orange: #cfe84d;
  --orange-dark: #b8d337;
  --accent-ink: #789600;
  --sage: #b6c2b7;
  --text-muted: #617067;
  --page: min(1240px, calc(100vw - 64px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.lightbox-open { overflow: hidden; }

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

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

button,
input,
textarea { font: inherit; }

button { color: inherit; }

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

h1, h2, h3 {
  font-weight: 600;
  letter-spacing: -0.048em;
  line-height: 1.02;
}

h2 { font-size: clamp(2.7rem, 5.2vw, 5.4rem); }

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

.section { padding-block: clamp(90px, 11vw, 170px); }

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  background: var(--orange);
  color: #fff;
  transform: translateY(-150%);
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 35px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow.light { color: rgba(255, 255, 255, 0.68); }

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 25px;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 220ms var(--ease), background-color 220ms ease;
}

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

.button-primary { background: var(--orange); color: var(--ink); }
.button-primary:hover { background: var(--orange-dark); }

.button svg,
.text-link svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.text-link svg { transition: transform 220ms var(--ease); }
.text-link:hover svg { transform: translateX(4px); }
.light-link { color: #fff; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: 84px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-inline: 32px;
  border-bottom: 1px solid rgba(20, 34, 27, 0.1);
  background: rgba(251, 252, 246, 0.94);
  color: var(--ink);
  backdrop-filter: blur(14px);
  transition: height 250ms ease, background-color 250ms ease, box-shadow 250ms ease;
}

.site-header.is-scrolled {
  height: 70px;
  background: rgba(251, 252, 246, 0.98);
  box-shadow: 0 6px 30px rgba(20, 34, 27, 0.1);
}

.brand { display: flex; width: max-content; align-items: center; gap: 12px; }

.brand-mark {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
}

.brand-mark img { width: 100%; height: 100%; object-fit: contain; }

.brand-name {
  font-size: 0.78rem;
  letter-spacing: 0.055em;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand-name strong { font-size: 0.9rem; font-weight: 800; }

.desktop-nav { display: flex; align-items: center; gap: 36px; }

.desktop-nav a {
  position: relative;
  font-size: 0.78rem;
  font-weight: 700;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-call {
  display: flex;
  justify-self: end;
  align-items: flex-end;
  flex-direction: column;
  line-height: 1.2;
}

.header-call span { color: var(--text-muted); font-size: 0.65rem; text-transform: uppercase; letter-spacing: .12em; }
.header-call strong { margin-top: 4px; font-size: .9rem; }

.menu-toggle,
.mobile-menu { display: none; }

.hero {
  position: relative;
  display: flex;
  min-height: 820px;
  height: 100svh;
  align-items: center;
  overflow: hidden;
  color: var(--ink);
  isolation: isolate;
}

.hero-image,
.hero-shade { position: absolute; inset: 0; }

.hero-image {
  z-index: -2;
  background-image: url("public/images/hero-project-enhanced.jpg");
  background-position: center 56%;
  background-size: cover;
  animation: heroZoom 18s ease-out both;
}

@keyframes heroZoom { from { transform: scale(1.04); } to { transform: scale(1); } }

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(244, 248, 238, 0.18) 0%, transparent 62%),
    linear-gradient(0deg, rgba(20, 34, 27, 0.24) 0%, transparent 35%);
}

.hero .hero-content {
  width: min(820px, calc(100vw - 64px));
  margin: 84px auto 0 max(32px, calc((100vw - 1240px) / 2));
  padding: 54px 58px 56px;
  border-left: 9px solid var(--orange);
  background: rgba(251, 252, 246, 0.94);
  box-shadow: 0 28px 70px rgba(20, 34, 27, 0.18);
  backdrop-filter: blur(10px);
}

.hero .eyebrow.light { color: var(--text-muted); }
.hero .light-link { color: var(--ink); }

.hero h1 {
  max-width: 700px;
  margin-bottom: 30px;
  font-size: clamp(4rem, 6vw, 5.6rem);
  font-weight: 600;
  letter-spacing: -0.07em;
}

.hero h1 em { color: var(--accent-ink); font-style: normal; }

.hero-intro {
  max-width: 610px;
  margin-bottom: 40px;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.4vw, 1.28rem);
  line-height: 1.7;
}

.hero-actions { display: flex; align-items: center; gap: 32px; }

.hero-proof {
  position: absolute;
  right: 32px;
  bottom: 32px;
  display: flex;
  border: 1px solid rgba(20,34,27,.14);
  background: rgba(251,252,246,.94);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.hero-proof div { display: flex; min-width: 155px; padding: 20px 22px; flex-direction: column; border-right: 1px solid rgba(20,34,27,.14); }
.hero-proof div:last-child { border: 0; }
.hero-proof strong { color: var(--accent-ink); font-size: 1.05rem; }
.hero-proof span { margin-top: 4px; color: var(--text-muted); font-size: .62rem; line-height: 1.3; }

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 32px;
  width: 24px;
  height: 48px;
  border: 1px solid rgba(20,34,27,.32);
  background: rgba(251,252,246,.82);
  border-radius: 50px;
}

.scroll-cue span {
  position: absolute;
  top: 8px;
  left: 10px;
  width: 2px;
  height: 8px;
  background: var(--ink);
  animation: scrollCue 1.8s ease-in-out infinite;
}

@keyframes scrollCue { 0%,100% { transform: translateY(0); opacity: .35; } 50% { transform: translateY(19px); opacity: 1; } }

.intro { display: grid; grid-template-columns: .75fr 1.65fr; gap: 8vw; }
.intro-kicker { display: flex; align-items: flex-start; gap: 30px; }
.intro-kicker .number { color: var(--accent-ink); font-size: .7rem; font-weight: 800; }
.intro-kicker .eyebrow { margin: 0; }
.intro-copy h2 { margin-bottom: 42px; font-size: clamp(3rem, 5.5vw, 6rem); }
.intro-copy > p { max-width: 700px; margin: 0; color: var(--text-muted); font-size: 1.08rem; }

.services { background: var(--ink); color: #fff; }

.section-heading {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  align-items: end;
  gap: 8vw;
  margin-bottom: 74px;
}

.section-heading h2 { max-width: 760px; margin-bottom: 0; font-size: clamp(3rem, 5.6vw, 6.2rem); }
.section-heading > p { margin: 0 0 8px; color: var(--sage); font-size: .96rem; }

.service-list { border-top: 1px solid rgba(255,255,255,.18); }

.service-item {
  display: grid;
  grid-template-columns: 60px 90px minmax(250px, .8fr) 1.2fr;
  align-items: center;
  gap: 30px;
  min-height: 190px;
  border-bottom: 1px solid rgba(255,255,255,.18);
  transition: background-color 250ms ease, padding-inline 250ms var(--ease);
}

.service-item:hover { padding-inline: 24px; background: rgba(255,255,255,.035); }
.service-number { color: var(--orange); font-size: .7rem; font-weight: 800; }
.service-icon { display: grid; width: 70px; height: 70px; place-items: center; border: 1px solid rgba(255,255,255,.18); }
.service-icon svg { width: 39px; fill: none; stroke: var(--orange); stroke-linecap: square; stroke-linejoin: miter; stroke-width: 1.2; }
.service-item h3 { margin: 0; font-size: clamp(1.55rem, 2.3vw, 2.25rem); }
.service-item p { max-width: 530px; margin: 0; color: var(--sage); font-size: .93rem; }

.featured-project { display: grid; grid-template-columns: 1.3fr .7fr; padding: 0; background: var(--bone); }
.project-visual { position: relative; min-height: 850px; overflow: hidden; }
.project-visual img { height: 100%; object-fit: cover; }
.project-tag { position: absolute; right: 0; bottom: 0; padding: 18px 26px; background: var(--orange); color: var(--ink); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.project-story { display: flex; align-items: flex-start; justify-content: center; padding: clamp(70px, 8vw, 140px); flex-direction: column; }
.project-story h2 { margin-bottom: 38px; font-size: clamp(3.2rem, 5.1vw, 6rem); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.25rem); line-height: 1.72; }
.project-story .lead { max-width: 560px; margin-bottom: 45px; color: var(--text-muted); }
.project-details { width: 100%; margin: 0 0 45px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.project-details li { display: flex; gap: 22px; padding: 18px 0; border-bottom: 1px solid var(--line); font-size: .87rem; font-weight: 700; }
.project-details span { color: var(--accent-ink); font-size: .7rem; }

.gallery-section { background: var(--paper); }
.gallery-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 60px; }
.gallery-heading h2 { margin: 0; }
.gallery-heading .text-link { flex: none; margin-bottom: 10px; }

.gallery-grid { display: grid; grid-auto-rows: 285px; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { position: relative; overflow: hidden; padding: 0; border: 0; background: var(--ink); cursor: zoom-in; }
.gallery-item::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,10,9,.7), transparent 50%); content: ""; pointer-events: none; }
.gallery-item img { height: 100%; object-fit: cover; transition: transform 750ms var(--ease), filter 500ms ease; }
.gallery-item:hover img { transform: scale(1.045); filter: saturate(1.08); }
.gallery-item span { position: absolute; z-index: 2; bottom: 20px; left: 22px; color: #fff; font-size: .75rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.gallery-wide { grid-column: span 2; }
.gallery-tall { grid-row: span 2; }
.gallery-grid .gallery-item:nth-child(3) img { object-position: center 30%; }
.gallery-grid .gallery-item:nth-child(4) img { object-position: center 36%; }

.about { display: grid; grid-template-columns: 1fr 1fr; padding: 0; background: var(--bone); }
.about-image { position: relative; min-height: 800px; }
.about-image > img { height: 100%; object-fit: cover; object-position: 58% center; }
.about-stamp { position: absolute; right: -65px; bottom: 70px; display: flex; width: 150px; height: 150px; align-items: center; justify-content: center; border-radius: 50%; background: var(--orange); color: var(--ink); flex-direction: column; transform: rotate(-7deg); }
.about-stamp span { font-size: .62rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.about-stamp strong { font-size: 2.1rem; letter-spacing: -.04em; line-height: 1.2; }
.about-copy { display: flex; align-items: flex-start; justify-content: center; padding: clamp(80px, 10vw, 160px); flex-direction: column; }
.about-copy h2 { margin-bottom: 38px; }
.about-copy > p { max-width: 580px; color: var(--text-muted); }
.about-copy > .lead { color: var(--ink); }
.membership { display: flex; align-items: center; gap: 18px; margin-top: 35px; padding-top: 28px; border-top: 1px solid var(--line); }
.membership svg { width: 42px; fill: none; stroke: var(--orange); stroke-linecap: square; stroke-linejoin: miter; stroke-width: 1.5; }
.membership div { display: flex; flex-direction: column; }
.membership strong { font-size: .86rem; }
.membership span { color: var(--text-muted); font-size: .74rem; }

.process { background: var(--paper); }
.process .section-heading { color: var(--ink); }
.process .section-heading > p { color: var(--text-muted); }
.process-list { display: grid; margin: 0; padding: 0; grid-template-columns: repeat(4, 1fr); list-style: none; border-top: 1px solid var(--line); }
.process-list li { min-height: 280px; padding: 32px 30px; border-right: 1px solid var(--line); }
.process-list li:last-child { border: 0; }
.process-list span { color: var(--accent-ink); font-size: .7rem; font-weight: 800; }
.process-list h3 { margin: 80px 0 18px; font-size: 1.25rem; letter-spacing: -.025em; }
.process-list p { margin: 0; color: var(--text-muted); font-size: .82rem; }

.contact { background: var(--ink); color: #fff; }
.contact-main { display: grid; width: var(--page); margin-inline: auto; padding-block: clamp(90px, 11vw, 160px); grid-template-columns: 1fr 1fr; gap: 10vw; }
.contact-copy h2 { max-width: 670px; margin-bottom: 40px; font-size: clamp(3.6rem, 6.5vw, 7.2rem); }
.contact-copy > p { max-width: 560px; color: var(--sage); }
.contact-direct { display: flex; margin-top: 48px; flex-direction: column; }
.contact-direct a { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 17px 0; border-top: 1px solid rgba(255,255,255,.18); }
.contact-direct a:last-child { border-bottom: 1px solid rgba(255,255,255,.18); }
.contact-direct span { color: var(--sage); font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; }
.contact-direct strong { font-size: .85rem; }

.contact-form { padding-top: 35px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-form label { display: block; margin-bottom: 22px; }
.contact-form label span { display: block; margin-bottom: 8px; color: var(--sage); font-size: .66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.contact-form input,
.contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(255,255,255,.28); border-radius: 0; outline: 0; background: transparent; color: #fff; transition: border-color 200ms ease; }
.contact-form input { height: 52px; }
.contact-form textarea { min-height: 116px; padding-top: 13px; resize: vertical; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,.32); }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--orange); }
.contact-form .button { margin-top: 10px; }
.form-note { margin: 13px 0 0; color: rgba(255,255,255,.38); font-size: .66rem; }

.site-footer { width: var(--page); margin-inline: auto; padding: 55px 0 28px; border-top: 1px solid rgba(255,255,255,.16); }
.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 55px; font-size: .8rem; letter-spacing: .06em; line-height: 1.05; text-transform: uppercase; }
.footer-brand .brand-mark { width: 58px; height: 58px; padding: 5px; background: #fbfcf6; }
.footer-brand strong { font-size: .92rem; }
.footer-details { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-details > div { display: flex; flex-direction: column; }
.footer-details span { margin-bottom: 10px; color: var(--sage); font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-details a,
.footer-details p { margin: 0; font-size: .8rem; line-height: 1.7; }
.footer-details a:hover { color: var(--orange); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 55px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.42); font-size: .65rem; }
.footer-bottom p { margin: 0; }

.mobile-call { display: none; }

.lightbox {
  width: min(1100px, calc(100vw - 40px));
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}
.lightbox::backdrop { background: rgba(8,10,9,.92); backdrop-filter: blur(8px); }
.lightbox img { max-height: 86vh; object-fit: contain; }
.lightbox-close { position: absolute; z-index: 2; top: -46px; right: 0; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: transparent; color: #fff; cursor: pointer; font-size: 1.5rem; line-height: 1; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 800ms var(--ease), transform 800ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.service-item:nth-child(2), .process-list li:nth-child(2) { transition-delay: 80ms; }
.service-item:nth-child(3), .process-list li:nth-child(3) { transition-delay: 160ms; }
.service-item:nth-child(4), .process-list li:nth-child(4) { transition-delay: 240ms; }

@media (max-width: 1050px) {
  :root { --page: min(100% - 44px, 920px); }
  .site-header { height: 78px; padding-inline: 22px; grid-template-columns: 1fr auto; }
  .desktop-nav, .header-call { display: none; }
  .menu-toggle { position: relative; z-index: 3; display: block; width: 44px; height: 44px; padding: 0; border: 1px solid rgba(20,34,27,.3); background: transparent; cursor: pointer; }
  .menu-toggle > span:not(.sr-only) { position: absolute; left: 12px; width: 18px; height: 1px; background: var(--ink); transition: transform 250ms ease, top 250ms ease; }
  .menu-toggle > span:nth-child(2) { top: 17px; }
  .menu-toggle > span:nth-child(3) { top: 25px; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { top: 21px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { top: 21px; transform: rotate(-45deg); }
  .menu-toggle[aria-expanded="true"] { border-color: rgba(255,255,255,.45); }
  .menu-toggle[aria-expanded="true"] > span:not(.sr-only) { background: #fff; }
  .mobile-menu { position: fixed; z-index: 2; inset: 0; display: flex; padding: 120px 22px 40px; background: var(--ink); flex-direction: column; opacity: 0; visibility: hidden; transition: opacity 250ms ease, visibility 250ms ease; }
  .mobile-menu.is-open { opacity: 1; visibility: visible; }
  .mobile-menu nav { display: flex; flex: 1; flex-direction: column; }
  .mobile-menu nav a { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.14); font-size: clamp(2rem, 10vw, 4rem); font-weight: 600; letter-spacing: -.05em; line-height: 1.1; }
  .mobile-menu .button { align-self: flex-start; }
  .hero { min-height: 750px; }
  .hero-proof { right: 22px; bottom: 22px; }
  .hero-proof div { min-width: 140px; }
  .scroll-cue { display: none; }
  .featured-project { grid-template-columns: 1.1fr .9fr; }
  .project-visual { min-height: 720px; }
  .project-story { padding: 70px 45px; }
  .about-copy { padding: 90px 70px; }
  .about-stamp { right: -55px; }
}

@media (max-width: 760px) {
  :root { --page: calc(100vw - 36px); }
  body { font-size: 15px; }
  .section { padding-block: 84px; }
  .site-header { height: 70px; padding-inline: 18px; }
  .site-header.is-scrolled { height: 66px; }
  .brand-mark { width: 44px; height: 44px; }
  .brand-name { font-size: .66rem; }
  .brand-name strong { font-size: .75rem; }
  .hero { min-height: 720px; height: 92svh; align-items: flex-end; padding-bottom: 84px; }
  .hero-image { background-position: 61% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(20,34,27,.18) 0%, transparent 55%); }
  .hero .hero-content { width: var(--page); margin: 0 auto; padding: 30px 26px 32px; border-left-width: 6px; }
  .hero h1 { margin-bottom: 22px; font-size: clamp(3rem, 13vw, 4.1rem); }
  .hero-intro { margin-bottom: 28px; font-size: .96rem; }
  .hero-actions { align-items: flex-start; gap: 22px; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-proof { display: none; }
  .intro { grid-template-columns: 1fr; gap: 48px; }
  .intro-kicker { gap: 18px; }
  .intro-copy h2 { margin-bottom: 28px; }
  .section-heading { grid-template-columns: 1fr; gap: 28px; margin-bottom: 50px; }
  .service-item { min-height: auto; padding: 30px 0; grid-template-columns: 35px 58px 1fr; gap: 16px; }
  .service-item:hover { padding-inline: 0; }
  .service-icon { width: 54px; height: 54px; }
  .service-icon svg { width: 31px; }
  .service-item h3 { font-size: 1.45rem; }
  .service-item p { grid-column: 3; font-size: .83rem; }
  .featured-project { grid-template-columns: 1fr; }
  .project-visual { min-height: 560px; }
  .project-story { padding: 80px 18px; }
  .gallery-heading { align-items: flex-start; flex-direction: column; margin-bottom: 42px; }
  .gallery-grid { grid-auto-rows: 250px; grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery-tall { grid-row: span 2; }
  .gallery-grid .gallery-item:last-child { grid-column: span 2; }
  .gallery-item span { bottom: 14px; left: 14px; font-size: .62rem; }
  .about { grid-template-columns: 1fr; }
  .about-image { min-height: 570px; }
  .about-stamp { right: 18px; bottom: -55px; width: 125px; height: 125px; }
  .about-copy { padding: 120px 18px 80px; }
  .process-list { grid-template-columns: 1fr 1fr; }
  .process-list li { min-height: 250px; padding: 25px 18px; border-bottom: 1px solid var(--line); }
  .process-list li:nth-child(2) { border-right: 0; }
  .process-list h3 { margin-top: 55px; }
  .contact-main { grid-template-columns: 1fr; gap: 60px; }
  .contact-copy h2 { font-size: clamp(3.2rem, 15vw, 5rem); }
  .contact-direct a { align-items: flex-start; flex-direction: column; gap: 4px; }
  .contact-direct strong { overflow-wrap: anywhere; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form .button { width: 100%; }
  .footer-details { grid-template-columns: 1fr 1fr; }
  .footer-bottom { padding-bottom: 72px; }
  .mobile-call { position: fixed; z-index: 80; right: 16px; bottom: 14px; display: flex; min-height: 48px; align-items: center; gap: 9px; padding: 0 17px; border-radius: 50px; background: var(--orange); color: var(--ink); box-shadow: 0 8px 30px rgba(20,34,27,.22); font-size: .76rem; font-weight: 800; }
  .mobile-call svg { width: 18px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
}

@media (max-width: 460px) {
  .hero h1 { font-size: clamp(2.95rem, 13.6vw, 3.3rem); }
  .mobile-call { width: 52px; height: 52px; min-height: 52px; justify-content: center; padding: 0; }
  .mobile-call span { display: none; }
  .gallery-grid { display: flex; flex-direction: column; }
  .gallery-item { height: 280px; }
  .gallery-tall { height: 410px; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li { min-height: 210px; border-right: 0; }
  .process-list h3 { margin-top: 42px; }
  .footer-details { grid-template-columns: 1fr; }
}

@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; }
}
