:root {
  --forest-950: #041b14;
  --forest-900: #063f2b;
  --forest-800: #075b3b;
  --brand-green: #008a50;
  --brand-orange: #f28b2b;
  --lime: #a8dc63;
  --ink: #10281f;
  --muted: #52645c;
  --paper: #f3f6ef;
  --white: #ffffff;
  --line: rgba(16, 40, 31, 0.18);
  --max: 1440px;
  --pad: clamp(1.25rem, 4vw, 4.75rem);
  --hero-image:
    linear-gradient(120deg, rgba(4, 27, 20, 0.12), rgba(6, 63, 43, 0.18)),
    url("https://images.pexels.com/photos/35918463/pexels-photo-35918463.jpeg?auto=compress&cs=tinysrgb&w=2400");
  --technical-image:
    linear-gradient(140deg, rgba(4, 27, 20, 0.08), rgba(6, 63, 43, 0.24)),
    url("https://images.pexels.com/photos/27309420/pexels-photo-27309420.jpeg?auto=compress&cs=tinysrgb&w=1800");
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.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;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--brand-orange);
  color: var(--forest-950);
  padding: 0.7rem 1rem;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 6rem;
  padding: 0 var(--pad);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition: background 220ms ease, height 220ms ease, border-color 220ms ease;
}
.site-header.scrolled {
  height: 4.9rem;
  background: rgba(4, 27, 20, 0.95);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; gap: 0.85rem; }
.brand-logo-wrap {
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.26);
}
.brand-logo-wrap img { width: 100%; height: 100%; padding: 0.12rem; object-fit: contain; }
.brand-type { display: flex; flex-direction: column; line-height: 1.12; }
.brand-type strong { font-size: 1.06rem; letter-spacing: -0.02em; }
.brand-type small { margin-top: 0.22rem; color: rgba(255,255,255,0.68); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: clamp(1.2rem, 2.3vw, 2.6rem); }
.site-nav a { font-size: 0.875rem; font-weight: 650; }
.site-nav a:not(.nav-cta) { opacity: 0.82; transition: opacity 160ms ease; }
.site-nav a:not(.nav-cta):hover { opacity: 1; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  padding: 0.72rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}
.nav-cta:hover { background: var(--brand-orange); color: var(--forest-950); border-color: var(--brand-orange); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: min(100svh, 64rem);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--forest-900);
  color: var(--white);
}
.hero-image, .hero-shade, .contour-lines { position: absolute; inset: 0; }
.hero-image {
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}
.hero-shade {
  background:
    linear-gradient(180deg, rgba(3, 19, 14, 0.5) 0%, rgba(3, 19, 14, 0.08) 30%, rgba(3, 19, 14, 0.88) 100%),
    linear-gradient(90deg, rgba(3, 19, 14, 0.57), transparent 70%);
}
.contour-lines {
  left: auto;
  width: 50%;
  opacity: 0.18;
  background: repeating-radial-gradient(ellipse at 100% 48%, transparent 0 26px, rgba(255,255,255,0.76) 27px 28px, transparent 29px 51px);
  mask-image: linear-gradient(to left, black, transparent);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 9rem var(--pad) 0;
}
.eyebrow {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin: 0 0 clamp(2.5rem, 6vh, 5rem);
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.42);
  font-size: 0.76rem;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.eyebrow.dark { color: var(--forest-950); border-color: rgba(4,27,20,0.3); }
.hero h1,
.intro h2,
.section-head h2,
.technical h2,
.founder h2,
.contact h2 {
  margin: 0;
  font-weight: 400;
  line-height: 0.93;
  letter-spacing: -0.055em;
}
.hero h1 { max-width: 76rem; font-size: clamp(3.7rem, 8vw, 7.7rem); }
.hero-bottom {
  display: grid;
  grid-template-columns: minmax(18rem, 34rem) auto;
  justify-content: space-between;
  align-items: end;
  gap: 3rem;
  margin-top: clamp(2.5rem, 6vh, 4.75rem);
  padding-bottom: 2.8rem;
}
.hero-bottom > p { margin: 0; color: rgba(255,255,255,0.83); font-size: clamp(1rem, 1.35vw, 1.22rem); line-height: 1.6; }
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: flex-end; }
.button {
  min-height: 3.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.46);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.button-solid { background: var(--brand-orange); color: var(--forest-950); border-color: var(--brand-orange); }
.button-solid:hover { background: var(--white); border-color: var(--white); }
.button-ghost:hover { background: var(--white); color: var(--forest-950); border-color: var(--white); }
.credential-strip { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,0.24); }
.credential-strip p { display: grid; grid-template-columns: 2.2rem 1fr; gap: 0.5rem; margin: 0; padding: 1.25rem 0; color: rgba(255,255,255,0.74); font-size: 0.83rem; font-weight: 650; }
.credential-strip p + p { padding-left: 1.25rem; border-left: 1px solid rgba(255,255,255,0.24); }
.credential-strip span { color: var(--brand-orange); font-size: 0.72rem; font-weight: 800; }

.section-pad { padding: clamp(5.5rem, 10vw, 9rem) var(--pad); }
.section-kicker {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
  align-items: baseline;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  padding-top: 0.82rem;
  border-top: 1px solid var(--line);
  color: #5b6d65;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.section-kicker p { margin: 0; }
.section-kicker.light { color: rgba(255,255,255,0.64); border-color: rgba(255,255,255,0.22); }
.intro, .experience, .founder { max-width: var(--max); margin: 0 auto; }
.intro-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(23rem, 0.7fr); gap: clamp(4rem, 8vw, 8rem); align-items: end; }
.intro h2, .section-head h2, .contact h2 { font-size: clamp(3rem, 6.4vw, 6.25rem); }
.intro-copy > p { max-width: 45rem; margin: 2.4rem 0 0; color: var(--muted); font-size: clamp(1rem, 1.3vw, 1.2rem); line-height: 1.7; }
.proof-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.proof-grid article { min-height: 12rem; display: flex; flex-direction: column; justify-content: space-between; padding: 1.15rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof-grid strong { color: var(--brand-green); font-size: clamp(2.5rem, 4.3vw, 4.4rem); font-weight: 400; line-height: 1; letter-spacing: -0.05em; }
.proof-grid span { max-width: 9.5rem; color: var(--muted); font-size: 0.82rem; font-weight: 650; line-height: 1.4; }

.expertise { background: var(--forest-950); color: var(--white); }
.expertise > *, .projects > *, .contact > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.section-head { display: grid; grid-template-columns: minmax(15rem, 0.57fr) 1.43fr; gap: clamp(3rem, 6vw, 7rem); align-items: start; margin-bottom: clamp(4rem, 8vw, 7rem); }
.section-head .section-kicker { width: 100%; margin: 0; }
.section-head h2 { max-width: 62rem; }
.section-note { max-width: 42rem; margin: 2.2rem 0 0; color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.section-note.light-note { color: rgba(255,255,255,0.66); }
.service-list { border-top: 1px solid rgba(255,255,255,0.2); }
.service {
  position: relative;
  display: grid;
  grid-template-columns: 3.5rem minmax(15rem, 0.85fr) minmax(17rem, 1fr) 2rem;
  gap: 1rem;
  align-items: start;
  padding: 2.15rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: color 180ms ease, padding 180ms ease;
}
.service::before {
  content: "";
  position: absolute;
  inset: 0 calc(var(--pad) * -1);
  z-index: 0;
  background: var(--lime);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 220ms ease;
}
.service:hover::before { transform: scaleY(1); }
.service > * { position: relative; z-index: 1; }
.service:hover { color: var(--forest-950); padding-left: 0.65rem; padding-right: 0.65rem; }
.service-no { margin: 0.28rem 0 0; color: #8c9c96; font-size: 0.76rem; font-weight: 800; }
.service:hover .service-no { color: var(--forest-950); }
.service h3 { margin: 0; font-size: clamp(1.6rem, 2.8vw, 2.7rem); font-weight: 400; line-height: 1.04; letter-spacing: -0.04em; }
.service > p:nth-of-type(2) { max-width: 38rem; margin: 0.12rem 0 0; color: rgba(255,255,255,0.65); line-height: 1.66; }
.service:hover > p:nth-of-type(2) { color: rgba(4,27,20,0.76); }
.service > span { margin-top: 0.2rem; color: var(--brand-orange); font-size: 1.25rem; }
.service:hover > span { color: var(--forest-950); }

.experience { background: var(--paper); }
.experience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.experience-card { min-width: 0; padding: 1.2rem; background: var(--paper); }
.experience-card > img, .feature-art { width: 100%; aspect-ratio: 16 / 9.4; margin-bottom: 1.25rem; object-fit: cover; background: #dfe8db; }
.feature-art {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  overflow: hidden;
  color: var(--white);
  background:
    repeating-radial-gradient(ellipse at 92% 15%, transparent 0 22px, rgba(255,255,255,0.18) 23px 24px, transparent 25px 45px),
    var(--forest-900);
}
.feature-art::after { content: "Classic Golf Resort"; position: absolute; top: 1.4rem; left: 1.5rem; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.feature-art span { font-size: clamp(5rem, 10vw, 10rem); font-weight: 300; line-height: 0.72; letter-spacing: -0.08em; }
.feature-art small { margin: 0 0 0.2rem 0.6rem; color: var(--brand-orange); font-size: 0.9rem; font-weight: 800; text-transform: uppercase; }
.experience-meta { display: flex; justify-content: space-between; gap: 1rem; margin-bottom: 1.8rem; color: #66776f; font-size: 0.74rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.experience-card h3 { margin: 0; font-size: clamp(1.7rem, 3vw, 3.1rem); font-weight: 400; line-height: 1.05; letter-spacing: -0.045em; }
.experience-card > p { max-width: 39rem; margin: 1.2rem 0 0; color: var(--muted); line-height: 1.67; }
.additional-record { display: grid; grid-template-columns: minmax(20rem, 0.75fr) 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; margin-top: clamp(3rem, 7vw, 6rem); padding-top: clamp(3rem, 6vw, 5rem); border-top: 1px solid var(--line); }
.additional-record img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.mini-label { margin: 0 0 1.5rem; color: var(--brand-green); font-size: 0.74rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.additional-record h3 { margin: 0; font-size: clamp(2.2rem, 4.8vw, 4.9rem); font-weight: 400; line-height: 0.98; letter-spacing: -0.05em; }
.additional-record div > p:last-child { max-width: 37rem; margin: 1.7rem 0 0; color: var(--muted); line-height: 1.68; }

.projects { background: var(--forest-900); color: var(--white); }
.project-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.project-card { min-width: 0; background: var(--white); color: var(--ink); }
.project-image { aspect-ratio: 16 / 9.5; display: grid; place-items: center; overflow: hidden; background: #eef2e9; }
.project-image img { width: 100%; height: 100%; padding: 0.6rem; object-fit: contain; transition: transform 420ms ease; }
.project-card:hover .project-image img { transform: scale(1.025); }
.project-info { display: grid; grid-template-columns: 7rem 1fr auto; gap: 1rem; align-items: baseline; padding: 1.25rem; border-top: 1px solid var(--line); }
.project-info span { color: var(--brand-green); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; }
.project-info h3 { margin: 0; font-size: clamp(1.35rem, 2.3vw, 2.4rem); font-weight: 400; letter-spacing: -0.04em; }
.project-info p { margin: 0; color: var(--muted); font-size: 0.84rem; font-weight: 650; }
.project-wide { grid-column: 1 / -1; }
.project-wide .project-image { aspect-ratio: 2.45 / 1; }

.technical { min-height: 62rem; display: grid; grid-template-columns: 1fr 1fr; background: var(--forest-950); color: var(--white); }
.technical-image { min-height: 42rem; background-image: var(--technical-image); background-size: cover; background-position: center; }
.technical-copy { display: flex; flex-direction: column; justify-content: center; }
.technical h2 { font-size: clamp(3.1rem, 5.7vw, 5.9rem); }
.technical-lead { max-width: 39rem; margin: 2.4rem 0 3.3rem; color: rgba(255,255,255,0.66); font-size: 1.06rem; line-height: 1.7; }
.technical-list { border-top: 1px solid rgba(255,255,255,0.22); }
.technical-list article { display: grid; grid-template-columns: 2.4rem 1fr; gap: 1rem; padding: 1.15rem 0; border-bottom: 1px solid rgba(255,255,255,0.22); }
.technical-list article > span { color: var(--brand-orange); font-size: 0.76rem; font-weight: 800; }
.technical-list h3 { margin: 0 0 0.35rem; font-size: 1rem; font-weight: 700; }
.technical-list p { margin: 0; color: rgba(255,255,255,0.62); font-size: 0.92rem; line-height: 1.55; }

.founder-layout { display: grid; grid-template-columns: minmax(20rem, 0.7fr) 1.3fr; gap: clamp(4rem, 9vw, 9rem); align-items: center; }
.founder-photo { position: relative; overflow: hidden; }
.founder-photo img { width: 100%; aspect-ratio: 0.78; object-fit: cover; object-position: center top; filter: saturate(0.82) contrast(1.03); transform: scale(1.045); }
.founder-photo > p { position: absolute; left: 1rem; right: 1rem; bottom: 1rem; margin: 0; padding: 0.8rem 1rem; background: rgba(4,27,20,0.9); color: var(--white); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.founder-copy .section-kicker { margin-bottom: 3rem; }
.founder h2 { max-width: 56rem; font-size: clamp(3rem, 6vw, 6rem); }
.founder-copy .mini-label { margin-bottom: 1.1rem; }
.founder-bio { max-width: 46rem; margin: 2rem 0 3rem; color: var(--muted); font-size: 1.05rem; line-height: 1.75; }
.founder-credentials { border-top: 1px solid var(--line); }
.founder-credentials p { display: grid; grid-template-columns: 8rem 1fr; gap: 1rem; margin: 0; padding: 1rem 0; border-bottom: 1px solid var(--line); color: var(--muted); }
.founder-credentials span { color: var(--ink); font-size: 0.74rem; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; }
.founder blockquote { margin: 3rem 0 0; padding-left: 1.5rem; border-left: 0.28rem solid var(--brand-orange); color: var(--brand-green); font-size: clamp(1.6rem, 3vw, 2.7rem); line-height: 1.2; letter-spacing: -0.035em; }

.contact { background: var(--lime); }
.contact-top .eyebrow { margin-bottom: clamp(3rem, 7vw, 6rem); }
.contact h2 { margin-bottom: clamp(4rem, 8vw, 7rem); }
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(4,27,20,0.3); border-left: 1px solid rgba(4,27,20,0.3); }
.contact-grid > * { min-height: 14rem; display: flex; flex-direction: column; justify-content: space-between; padding: 1.3rem; border-right: 1px solid rgba(4,27,20,0.3); border-bottom: 1px solid rgba(4,27,20,0.3); transition: background 180ms ease, color 180ms ease; }
.contact-grid > a:hover { background: var(--forest-950); color: var(--white); }
.contact-grid span { font-size: 0.74rem; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }
.contact-grid strong { margin: auto 0; font-size: clamp(1.45rem, 3vw, 3.2rem); font-weight: 400; line-height: 1.08; letter-spacing: -0.045em; overflow-wrap: anywhere; }
.contact-grid small { color: rgba(4,27,20,0.65); font-size: 0.78rem; font-weight: 750; }
.contact-grid > a:hover small { color: rgba(255,255,255,0.64); }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto minmax(18rem, auto) auto;
  align-items: center;
  gap: 2rem;
  padding: 2.25rem var(--pad);
  background: var(--forest-950);
  color: rgba(255,255,255,0.62);
  font-size: 0.8rem;
}
.site-footer p { margin: 0; }
.footer-brand { color: var(--white); }
.footer-brand .brand-logo-wrap { width: 2.8rem; height: 2.8rem; }
.photo-credit a { text-decoration: underline; text-underline-offset: 0.18em; }
.photo-credit a:hover { color: var(--white); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 650ms ease, transform 650ms ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-image { transform: none; }
  .project-image img { transition: none; }
}

@media (max-width: 1100px) {
  .site-footer { grid-template-columns: 1fr auto; }
  .site-footer > p:first-of-type { display: none; }
  .photo-credit { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 900px) {
  .site-header { height: 5rem; }
  .menu-toggle {
    position: relative;
    z-index: 2;
    width: 2.85rem;
    height: 2.85rem;
    display: grid;
    place-content: center;
    gap: 0.38rem;
    color: inherit;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.36);
    border-radius: 50%;
  }
  .menu-toggle span:not(.sr-only) { width: 1rem; height: 1px; display: block; background: currentColor; transition: transform 180ms ease; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 0;
    padding: 7rem var(--pad) 3rem;
    background: var(--forest-950);
    transform: translateX(100%);
    transition: transform 250ms ease;
  }
  .site-nav.open { transform: translateX(0); }
  .site-nav a { width: 100%; padding: 0.82rem 0; border-bottom: 1px solid rgba(255,255,255,0.17); font-size: clamp(1.8rem, 7vw, 3rem); font-weight: 400; letter-spacing: -0.04em; }
  .site-nav .nav-cta { margin-top: 2rem; padding: 1rem; border: 1px solid rgba(255,255,255,0.35); font-size: 1rem; font-weight: 800; }
  .hero { min-height: 58rem; }
  .hero h1 { font-size: clamp(3.4rem, 12vw, 6.5rem); }
  .intro-grid, .section-head, .founder-layout { grid-template-columns: 1fr; gap: 3rem; }
  .section-head .section-kicker { margin-bottom: 0.5rem; }
  .service { grid-template-columns: 2.5rem 1fr 2rem; }
  .service > p:nth-of-type(2) { grid-column: 2 / 4; }
  .experience-grid { grid-template-columns: 1fr; }
  .additional-record { grid-template-columns: 1fr; }
  .project-info { grid-template-columns: 6rem 1fr; }
  .project-info p { grid-column: 2; }
  .technical { grid-template-columns: 1fr; min-height: 0; }
  .technical-image { min-height: 68vw; }
  .founder-photo { max-width: 33rem; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .brand-logo-wrap { width: 2.8rem; height: 2.8rem; }
  .brand-type small { display: none; }
  .hero { min-height: 54rem; }
  .hero-content { padding-top: 7rem; }
  .hero .eyebrow span:last-child { text-align: right; }
  .hero-bottom { grid-template-columns: 1fr; gap: 1.8rem; }
  .hero-actions { justify-content: stretch; }
  .button { flex: 1; }
  .credential-strip { grid-template-columns: 1fr; }
  .credential-strip p + p { padding-left: 0; border-left: 0; border-top: 1px solid rgba(255,255,255,0.2); }
  .credential-strip p:nth-child(3) { display: none; }
  .contour-lines { width: 82%; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid article { min-height: 10rem; }
  .service { grid-template-columns: 2.2rem 1fr 1.5rem; padding: 1.6rem 0; }
  .experience-card { padding: 0.85rem; }
  .project-grid { grid-template-columns: 1fr; }
  .project-wide { grid-column: auto; }
  .project-wide .project-image, .project-image { aspect-ratio: 16 / 10; }
  .project-info { grid-template-columns: 1fr; }
  .project-info p { grid-column: auto; }
  .technical-image { min-height: 31rem; }
  .founder-credentials p { grid-template-columns: 1fr; gap: 0.35rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-grid > * { min-height: 12rem; }
  .site-footer { grid-template-columns: 1fr; gap: 1.4rem; }
  .photo-credit { grid-column: auto; grid-row: auto; }
}

@media (max-width: 420px) {
  .hero .eyebrow { display: block; }
  .hero .eyebrow span { display: block; }
  .hero .eyebrow span + span { margin-top: 0.55rem; text-align: left; }
  .hero-actions { flex-direction: column; }
  .proof-grid { grid-template-columns: 1fr; }
}
