:root {
  --accent: #B5894E;
  --accent-alt: #9A7038;
  --ink: #0E0D0B;
  --cream: #EFEAE0;
  --section-pad: clamp(76px, 9.5vw, 132px);
}

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

html {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: 'DM Sans', system-ui, sans-serif;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; border: none; background: none; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
img { max-width: 100%; display: block; }
section { scroll-margin-top: 92px; }
::selection { background: var(--accent); color: var(--ink); }

#oak-root { position: relative; overflow-x: clip; }

.wrap { max-width: 1280px; margin: 0 auto; }

@keyframes oakBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(7px); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .oak-preloader { display: none !important; }
}

/* ---- intro preloader (first-paint brand reveal) ---- */
.oak-preloader {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  background: var(--ink);
  animation: oakPreExit .8s cubic-bezier(.76,0,.24,1) 1.4s forwards;
}
.oak-preloader--done { display: none !important; }
@keyframes oakPreExit { to { transform: translateY(-100%); visibility: hidden; } }

.oak-preloader-inner { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.oak-preloader-icon {
  width: 92px; height: 102px; color: var(--cream);
  opacity: 0; transform: translateY(16px) scale(.9);
  animation: oakPreIn .85s cubic-bezier(.16,1,.3,1) .15s forwards;
}
.oak-preloader-word-wrap { display: flex; flex-direction: column; align-items: center; gap: 11px; }
.oak-preloader-word {
  width: 224px; height: 26.5px; color: var(--cream); display: block;
  opacity: 0; transform: translateY(14px);
  animation: oakPreIn .8s cubic-bezier(.16,1,.3,1) .45s forwards;
}
.oak-preloader-sub {
  font-weight: 600; font-size: 11px; letter-spacing: .5em; color: var(--accent);
  padding-left: .5em; opacity: 0;
  animation: oakPreFade .8s ease .65s forwards;
}
/* thin bronze progress line that sweeps across during the hold */
.oak-preloader::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left center;
  animation: oakPreBar 1.15s cubic-bezier(.65,0,.35,1) .2s forwards;
}
@keyframes oakPreIn { to { opacity: 1; transform: none; } }
@keyframes oakPreFade { to { opacity: 1; } }
@keyframes oakPreBar { to { transform: scaleX(1); } }

/* ---- reveal animation (JS toggles .is-visible) ---- */
/* Easing: cubic-bezier(.16,1,.3,1) is an "expo-out" curve — fast start, long
   graceful settle. That decelerating tail is what reads as "smooth/expensive"
   rather than the linear-ish default. Blur-in adds depth without extra motion. */
.oak-reveal {
  opacity: 0;
  transform: translateY(32px);
  filter: blur(4px);
  transition: opacity .95s cubic-bezier(.16,1,.3,1), transform .95s cubic-bezier(.16,1,.3,1), filter .95s cubic-bezier(.16,1,.3,1);
}
.oak-reveal.is-visible { opacity: 1; transform: none; filter: none; }
.hero-in {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(6px);
  transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1), filter .9s cubic-bezier(.16,1,.3,1);
}
.hero-in.is-visible { opacity: 1; transform: none; filter: none; }

/* Hero headline: each line is its own block so it rises independently, one
   after the other (staggered by the hero-in cascade in JS). */
.hero-title .hero-line { display: block; }

/* ---- shared bits ---- */
.eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.eyebrow-rule { width: 34px; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: left center; transition: transform .8s cubic-bezier(.16,1,.3,1) .12s; }
.is-visible .eyebrow-rule { transform: scaleX(1); }
.eyebrow-text { font-size: 12px; font-weight: 500; letter-spacing: .24em; text-transform: uppercase; color: var(--accent); }
.accent-text { color: var(--accent); }
.accent-text-alt { color: var(--accent-alt); }

.h2-dark {
  font-weight: 800;
  font-size: clamp(28px, 3.7vw, 50px);
  line-height: 1.03;
  letter-spacing: -.005em;
  text-transform: uppercase;
  margin: 0;
  color: #17140E;
}
.h2-light {
  font-weight: 800;
  font-size: clamp(28px, 3.7vw, 50px);
  line-height: 1.03;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin: 0;
  color: var(--cream);
}

.oak-navlink { font-size: 14px; color: rgba(239,234,224,.72); transition: color .25s ease; }
.oak-navlink:hover { color: var(--cream); }

.oak-btn-accent {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: var(--ink);
  font-weight: 700; font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase;
  padding: 13px 22px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  transition: background .3s ease, transform .3s ease;
}
.oak-btn-accent:hover { background: color-mix(in oklab, var(--accent) 84%, #fff); transform: translateY(-1px); }
.oak-btn-lg { padding: 17px 30px; font-size: 13.5px; gap: 11px; clip-path: polygon(0 0, 100% 0, 100% 100%, 18px 100%, 0 calc(100% - 18px)); }
.oak-btn-lg:hover { transform: translateY(-2px); }

.oak-btn-outline {
  display: inline-flex; align-items: center; gap: 11px;
  color: var(--cream); font-weight: 700; font-size: 13.5px; letter-spacing: .1em; text-transform: uppercase;
  padding: 17px 26px; border: 1px solid rgba(239,234,224,.24);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  transition: border-color .3s ease, background .3s ease;
}
.oak-btn-outline:hover { border-color: var(--accent); background: rgba(181,137,78,.08); }

/* ---- header ---- */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 20px clamp(20px, 5vw, 56px);
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background .4s ease, padding .4s ease, border-color .4s ease, backdrop-filter .4s ease;
}
#site-header.is-scrolled {
  background: rgba(14,13,11,.82);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border-bottom-color: rgba(239,234,224,.12);
  padding-top: 13px; padding-bottom: 13px;
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand-icon { width: 31px; height: 34px; color: var(--cream); flex: none; }
.brand-word-wrap { display: flex; flex-direction: column; align-items: flex-start; gap: 5px; line-height: 1; }
.brand-word { width: 129px; height: 15.3px; color: var(--cream); display: block; }
.brand-sub { font-weight: 600; font-size: 8.5px; letter-spacing: .44em; color: var(--accent); }
.site-nav { display: flex; align-items: center; gap: 34px; }
.site-nav a { font-size: 12.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.header-actions { display: flex; align-items: center; gap: 20px; }
.tel-link { font-weight: 500; font-size: 13px; letter-spacing: .02em; white-space: nowrap; }

@media (max-width: 860px) {
  .site-nav { display: none; }
}

/* ---- hero ---- */
.hero {
  position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: center;
  padding: 150px clamp(20px, 5vw, 56px) 64px; overflow: hidden;
}
@keyframes heroKen {
  0%   { transform: scale(1.06) translate3d(0, 0, 0); }
  50%  { transform: scale(1.1) translate3d(-1.5%, -1%, 0); }
  100% { transform: scale(1.06) translate3d(0, 0, 0); }
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .32; animation: heroKen 28s ease-in-out infinite; will-change: transform; }
.hero-scrim {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, var(--ink) 8%, rgba(14,13,11,.72) 42%, rgba(14,13,11,.38) 72%, rgba(14,13,11,.62)),
    linear-gradient(0deg, var(--ink) 2%, transparent 30%, transparent 78%, rgba(14,13,11,.7));
}
.hero-mark {
  position: absolute; left: -9%; top: 50%; transform: translateY(-50%);
  width: min(620px, 52vw); height: min(686px, 58vw); color: var(--cream); opacity: .05; pointer-events: none;
}
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 90% at 90% 48%, rgba(181,137,78,.14), transparent 46%);
}
.hero-inner { position: relative; max-width: 1280px; margin: 0 auto; width: 100%; }
.eyebrow.hero-in { display: flex; align-items: center; gap: 14px; }
.hero-title {
  font-weight: 900; font-size: clamp(44px, 7.4vw, 118px); line-height: .96; letter-spacing: -.03em;
  text-transform: uppercase; margin: 26px 0 0; max-width: 15ch;
}
.hero-title span.hero-in { display: block; }
.hero-copy { max-width: 600px; margin: 30px 0 0; font-size: clamp(16px, 1.5vw, 19px); line-height: 1.62; color: rgba(239,234,224,.7); }
.hero-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 40px; }
.hero-footer {
  position: relative; max-width: 1280px; margin: auto auto 0; width: 100%;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; padding-top: 64px;
}
.hero-coords { font-weight: 600; font-size: 11.5px; letter-spacing: .14em; color: rgba(239,234,224,.42); text-transform: uppercase; line-height: 1.7; }
.hero-scroll { display: flex; flex-direction: column; align-items: center; gap: 9px; animation: oakBob 2.4s ease-in-out infinite; }
.hero-scroll span:first-child { font-weight: 600; font-size: 10px; letter-spacing: .28em; color: rgba(239,234,224,.4); text-transform: uppercase; }
.hero-scroll-line { width: 1px; height: 34px; background: linear-gradient(rgba(239,234,224,.5), transparent); }

/* ---- light/dark bands ---- */
.band-light { position: relative; background: var(--cream); color: #17140E; padding: var(--section-pad) clamp(20px, 5vw, 56px); }
.band-dark { position: relative; background: var(--ink); padding: var(--section-pad) clamp(20px, 5vw, 56px); overflow: hidden; }

.positioning { padding-top: calc(var(--section-pad) + 42px); clip-path: polygon(0 42px, 100% 0, 100% 100%, 0 100%); }
.positioning-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(32px, 5vw, 80px); align-items: start; }

/* Credibility line — anchors the section so the lower half isn't dead space */
.positioning-strip { max-width: 1280px; margin: clamp(52px, 6.5vw, 88px) auto 0; padding-top: clamp(28px, 3vw, 40px); border-top: 1px solid rgba(23,20,14,.16); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 60px); }
.pstrip-item { position: relative; padding-left: 20px; }
.pstrip-item::before { content: ""; position: absolute; left: 0; top: 7px; width: 9px; height: 9px; background: var(--accent); }
.pstrip-label { font-family: 'DM Sans', sans-serif; font-weight: 800; text-transform: uppercase; font-size: clamp(14px, 1.3vw, 16px); line-height: 1.18; color: #17140E; }
.pstrip-sub { margin-top: 10px; font-size: 14px; line-height: 1.55; color: rgba(23,20,14,.6); }
@media (max-width: 680px) { .positioning-strip { grid-template-columns: 1fr; gap: 26px; } }
.lead-copy { font-size: clamp(17px, 1.7vw, 21px); line-height: 1.62; margin: 0 0 22px; color: #2c281f; }
.pull-quote { font-weight: 700; font-size: clamp(20px, 2.2vw, 28px); line-height: 1.15; color: #17140E; margin: 0; padding-left: 20px; border-left: 3px solid var(--accent); }

/* ---- capabilities ---- */
.capabilities { padding-top: 0; }
.capabilities-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 52px; }
.capabilities-head .h2-dark { max-width: 16ch; }
.cap-intro { max-width: 400px; font-size: 16px; line-height: 1.6; color: #4a4437; margin: 0; }
.cap-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: rgba(23,20,14,.12); border: 1px solid rgba(23,20,14,.12); }
.oak-card { position: relative; background: var(--cream); padding: 38px 32px 44px; transition: background .35s ease, transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s ease; }
.oak-card:hover { background: #E6DECE; transform: translateY(-6px); box-shadow: 0 22px 40px rgba(23,20,14,.14); }
.oak-card::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 0; border-left: 32px solid var(--accent); border-top: 32px solid transparent; }
.cap-num { font-weight: 700; font-size: 12px; letter-spacing: .16em; color: var(--accent-alt); margin-bottom: 26px; }
.cap-title { font-weight: 800; font-size: clamp(19px, 1.9vw, 25px); line-height: 1.1; text-transform: uppercase; margin: 0 0 14px; }
.cap-desc { font-size: 15px; line-height: 1.6; color: #4a4437; margin: 0 0 20px; }
.cap-tags { font-weight: 600; font-size: 11px; letter-spacing: .06em; color: #847a63; line-height: 1.9; }

/* ---- portfolio ---- */
.portfolio-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(32px, 4vw, 56px); }
.portfolio-count { display: flex; align-items: baseline; gap: 10px; }
#active-num { font-weight: 800; font-size: clamp(52px, 6vw, 84px); line-height: 1; color: transparent; -webkit-text-stroke: 1.5px var(--accent); }
#total-num { font-weight: 600; font-size: 15px; letter-spacing: .14em; color: rgba(239,234,224,.45); }
.portfolio-body { display: flex; flex-wrap: wrap; gap: clamp(28px, 3.4vw, 52px); align-items: stretch; }
.project-index-wrap { flex: 1 1 320px; min-width: 290px; max-width: 460px; display: flex; flex-direction: column; }
.project-index { display: flex; flex-direction: column; flex: 1; }
.project-row {
  display: flex; align-items: center; justify-content: space-between; gap: 14px; width: 100%;
  padding: 19px 14px 19px 18px; text-align: left;
  border-left: 3px solid rgba(239,234,224,.12); border-bottom: 1px solid rgba(239,234,224,.08);
  background: transparent; color: rgba(239,234,224,.48); cursor: pointer; transition: all .35s ease;
}
.project-row:hover, .project-row.is-active {
  border-left-color: var(--accent); background: rgba(239,234,224,.045); color: var(--cream);
}
.project-row-main { display: flex; align-items: baseline; gap: 14px; }
.project-row-num { font-weight: 700; font-size: 12px; letter-spacing: .1em; color: rgba(239,234,224,.35); padding-top: 3px; flex: none; }
.project-row.is-active .project-row-num { color: var(--accent); }
.project-row-text { display: flex; flex-direction: column; align-items: flex-start; gap: 5px; text-align: left; }
.project-row-name { font-weight: 800; font-size: clamp(19px, 1.7vw, 24px); line-height: 1.05; text-transform: uppercase; letter-spacing: -.01em; }
.project-row-meta { font-weight: 500; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: rgba(239,234,224,.45); }
.project-row-arrow { flex: none; font-size: 18px; color: transparent; transform: translateX(-8px); transition: all .35s ease; }
.project-row.is-active .project-row-arrow { color: var(--accent); transform: none; }
.project-index-note { font-weight: 500; font-size: 12.5px; letter-spacing: .06em; line-height: 1.7; color: rgba(239,234,224,.4); padding: 18px 2px 0; }

.project-canvas-wrap { flex: 2 1 480px; min-width: min(100%, 440px); display: flex; flex-direction: column; }
.canvas-frame-outer { position: relative; }
.canvas-tab { position: absolute; left: -10px; bottom: -12px; width: 84px; height: 84px; background: var(--accent); z-index: 0; }
.canvas-frame {
  position: relative; z-index: 1; aspect-ratio: 16/10; overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 76px 100%, 0 calc(100% - 76px));
  background-color: #1a1712; cursor: zoom-in;
}
.canvas-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; }
.canvas-ph {
  position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, rgba(239,234,224,.05) 0 2px, transparent 2px 13px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  transition: opacity .5s ease;
}
.canvas-ph-icon { width: 44px; height: 49px; color: rgba(239,234,224,.25); }
.canvas-ph-text { font-weight: 600; font-size: 11px; letter-spacing: .18em; color: rgba(239,234,224,.35); text-transform: uppercase; }
.canvas-shade { position: absolute; inset: auto 0 0 0; height: 44%; background: linear-gradient(transparent, rgba(14,13,11,.78)); pointer-events: none; }
.canvas-caption {
  position: absolute; left: clamp(20px, 3vw, 34px); bottom: clamp(18px, 2.6vw, 28px); right: clamp(20px, 3vw, 34px);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; pointer-events: none;
}
.canvas-meta { font-weight: 600; font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.canvas-name { font-weight: 800; font-size: clamp(22px, 2.6vw, 34px); line-height: 1; text-transform: uppercase; letter-spacing: -.01em; color: var(--cream); }
.canvas-open {
  flex: none; font-weight: 700; font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: rgba(239,234,224,.85);
  border: 1px solid rgba(239,234,224,.3); padding: 10px 16px; backdrop-filter: blur(6px); background: rgba(14,13,11,.3);
}
.thumb-row { display: flex; align-items: center; gap: 10px; margin-top: 18px; height: 70px; overflow-x: auto; overflow-y: hidden; scrollbar-width: thin; scrollbar-color: var(--accent) transparent; }
.thumb-btn {
  width: 86px; height: 58px; flex: none; padding: 0; background-size: cover; background-position: center;
  background-color: #1a1712; cursor: pointer; transition: all .3s ease; border: 2px solid transparent; opacity: .55;
}
.thumb-btn.is-active { border-color: var(--accent); opacity: 1; }

/* ---- lightbox ---- */
.lightbox {
  position: fixed; inset: 0; z-index: 300; background: rgba(10,9,7,.94); backdrop-filter: blur(14px);
  display: flex; flex-direction: column;
}
.lightbox[hidden] { display: none; }
.lightbox-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px clamp(20px, 4vw, 44px); }
.lightbox-title { display: flex; align-items: baseline; gap: 16px; }
#lb-name { font-weight: 800; font-size: 17px; text-transform: uppercase; letter-spacing: -.01em; color: var(--cream); }
.lightbox-count { font-weight: 600; font-size: 12px; letter-spacing: .16em; color: rgba(239,234,224,.5); }
.oak-close-btn {
  font-weight: 700; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: rgba(239,234,224,.75);
  border: 1px solid rgba(239,234,224,.3); padding: 10px 18px; transition: all .25s ease;
}
.oak-close-btn:hover { color: var(--ink); background: var(--cream); }
.lightbox-stage { position: relative; flex: 1; display: flex; align-items: center; justify-content: center; padding: 0 clamp(56px, 8vw, 96px); min-height: 0; }
.lightbox-stage img { max-width: 100%; max-height: 100%; object-fit: contain; box-shadow: 0 40px 90px rgba(0,0,0,.5); }
.oak-arrow-btn {
  position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--cream);
  border: 1px solid rgba(239,234,224,.25); background: rgba(14,13,11,.5); transition: all .25s ease;
}
.oak-arrow-btn:hover { background: var(--accent); color: var(--ink); border-color: transparent; }
.oak-arrow-left { left: clamp(8px, 2vw, 24px); }
.oak-arrow-right { right: clamp(8px, 2vw, 24px); }
.lightbox-thumbs { display: flex; justify-content: center; gap: 8px; padding: 16px clamp(20px, 4vw, 44px) 22px; flex-wrap: wrap; }
.lightbox-thumbs .thumb-btn { width: 72px; height: 48px; }

/* ---- process ---- */
.process-head { max-width: 780px; margin-bottom: 56px; }
.process-copy { font-size: clamp(16px, 1.5vw, 19px); line-height: 1.6; color: rgba(23,20,14,.66); margin: 0; }
.process-grid { position: relative; display: grid; grid-template-columns: 1fr; gap: 1px; background: rgba(23,20,14,.14); border-top: 2px solid var(--accent); }

/* Keep the 4-card grids dividing evenly: 1 / 2 / 4 columns, never 3 (which strands one card + empty cells) */
@media (min-width: 560px) {
  .cap-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .cap-grid, .process-grid { grid-template-columns: repeat(4, 1fr); }
}
.process-step { position: relative; background: var(--cream); padding: 34px 26px 40px; }
.process-num { font-weight: 900; font-size: clamp(46px, 5vw, 68px); line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(23,20,14,.28); margin-bottom: 20px; }
.process-num-accent { color: var(--accent); -webkit-text-stroke: 0; }
.process-title { font-weight: 800; font-size: 22px; line-height: 1.05; text-transform: uppercase; margin: 0 0 12px; }
.process-desc { font-size: 14.5px; line-height: 1.6; color: rgba(23,20,14,.62); margin: 0; }

/* ---- quote band ---- */
.quote-band { text-align: center; }
.quote-mark { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: min(560px, 80vw); height: min(560px, 80vw); color: var(--cream); opacity: .045; pointer-events: none; }
.quote-inner { position: relative; max-width: 1000px; margin: 0 auto; }
.quote-text { font-weight: 800; font-size: clamp(26px, 3.9vw, 54px); line-height: 1.08; text-transform: uppercase; letter-spacing: -.025em; margin: 26px 0 0; }
.quote-copy { max-width: 560px; margin: 28px auto 0; font-size: 17px; line-height: 1.62; color: rgba(239,234,224,.62); }

/* ---- about ---- */
.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(36px, 5vw, 72px); align-items: center; }
.about-photo-wrap { position: relative; aspect-ratio: 4/5; max-width: 460px; }
.about-photo-tab { position: absolute; left: 0; bottom: 0; width: 78px; height: 78px; background: var(--accent); z-index: 0; }
.about-photo { position: absolute; inset: 0; clip-path: polygon(0 0, 100% 0, 100% 100%, 78px 100%, 0 calc(100% - 78px)); overflow: hidden; }
.about-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-photo-shade { position: absolute; inset: auto 0 0 0; height: 50%; background: linear-gradient(transparent, rgba(14,13,11,.72)); }
.about-photo-caption { position: absolute; left: 24px; bottom: 22px; font-weight: 600; font-size: 11px; letter-spacing: .16em; color: rgba(239,234,224,.85); text-transform: uppercase; }
.about-title { font-size: clamp(26px, 3.4vw, 44px); line-height: 1.05; margin: 0 0 22px; }
.about-copy { font-size: 17px; line-height: 1.62; color: #3a3529; margin: 0 0 18px; }
.about-person { display: flex; align-items: center; gap: 16px; padding-top: 24px; border-top: 1px solid rgba(23,20,14,.14); margin-top: 12px; }
.about-person-icon { width: 40px; height: 40px; color: #17140E; flex: none; }
.about-person-name { font-weight: 800; font-size: 20px; letter-spacing: .02em; text-transform: uppercase; }
.about-person-role { font-size: 12px; letter-spacing: .06em; color: #6b6252; }

/* ---- contact ---- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(36px, 5vw, 72px); }
.contact-title { margin: 0 0 28px; font-size: clamp(30px, 4.4vw, 62px); line-height: 1.02; }
.contact-copy { max-width: 440px; font-size: 17px; line-height: 1.62; color: rgba(239,234,224,.66); margin: 0 0 40px; }
.contact-list { display: flex; flex-direction: column; gap: 22px; }
.contact-row { display: flex; align-items: baseline; gap: 16px; }
.contact-label { font-weight: 600; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(239,234,224,.45); width: 76px; flex: none; }
.contact-value { font-weight: 700; font-size: clamp(22px, 2.4vw, 30px); letter-spacing: .01em; }
.contact-address { font-size: 16px; line-height: 1.5; color: rgba(239,234,224,.82); }
.contact-address-sub { color: rgba(239,234,224,.5); font-size: 14px; }

.contact-form-wrap { position: relative; }
.oak-form { display: flex; flex-direction: column; gap: 24px; background: #17140E; padding: clamp(28px, 3.4vw, 44px); clip-path: polygon(0 0, 100% 0, 100% 100%, 32px 100%, 0 calc(100% - 32px)); }
.form-row-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 24px; }
.form-field { display: flex; flex-direction: column; gap: 9px; }
.form-label { font-weight: 600; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(239,234,224,.5); }
.oak-input { background: transparent; border: none; border-bottom: 1px solid rgba(239,234,224,.24); padding: 9px 0; font-size: 16px; color: var(--cream); outline: none; transition: border-color .3s ease; }
.oak-input:focus { border-bottom-color: var(--accent); }
select.oak-input option { background: #17140E; }
textarea.oak-input { resize: vertical; }
.form-submit { align-self: flex-start; margin-top: 6px; }
.form-sent {
  display: none; position: absolute; inset: 0; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 16px;
  background: #17140E; padding: 44px; clip-path: polygon(0 0, 100% 0, 100% 100%, 32px 100%, 0 calc(100% - 32px));
}
.form-sent.is-visible { display: flex; }
.form-sent-icon { width: 52px; height: 52px; color: var(--accent); }
.form-sent-title { font-weight: 800; font-size: 30px; text-transform: uppercase; margin: 0; }
.form-sent-copy { font-size: 16px; line-height: 1.6; color: rgba(239,234,224,.66); max-width: 340px; margin: 0; }

/* ---- footer ---- */
.site-footer { background: var(--ink); border-top: 1px solid rgba(239,234,224,.12); padding: clamp(56px, 7vw, 88px) clamp(20px, 5vw, 56px) 40px; }
.footer-top { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 36px; padding-bottom: 48px; border-bottom: 1px solid rgba(239,234,224,.1); }
.footer-brand { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.footer-icon { width: 44px; height: 49px; color: var(--cream); flex: none; }
.footer-word { width: 211px; height: 25px; color: var(--cream); display: block; }
.footer-sub { font-weight: 600; font-size: 11.5px; letter-spacing: .46em; color: var(--accent); }
.footer-tagline { font-weight: 700; font-size: clamp(20px, 2.4vw, 30px); text-transform: uppercase; color: rgba(239,234,224,.9); margin: 0; }
.footer-cols { display: flex; gap: clamp(40px, 6vw, 80px); flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 13px; }
.footer-col-title { font-weight: 600; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: rgba(239,234,224,.4); margin-bottom: 4px; }
.footer-address { font-size: 14px; color: rgba(239,234,224,.72); max-width: 200px; line-height: 1.5; }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; padding-top: 26px; font-weight: 600; font-size: 11px; letter-spacing: .08em; color: rgba(239,234,224,.4); }
