/* =========================================================================
   Cast Holder Construction — mock site styles
   Hand-coded, no framework. Warm/premium residential GC. Mobile-first.
   ========================================================================= */

/* ---------- Tokens ---------- */
:root {
  --ink:      #17120D;   /* warm near-black */
  --ink-2:    #241C15;
  --bg:       #FAF7F1;   /* warm bone */
  --bg-2:     #F1EADF;   /* stone */
  --line:     #E4DACB;
  --muted:    #6E6357;
  --text:     #241E17;
  --accent:   #A87B53;   /* bronze */
  --accent-d: #8A6240;
  --white:    #ffffff;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --container: 1180px;
  --radius: 4px;
  --shadow-sm: 0 1px 2px rgba(23,18,13,.06), 0 4px 14px rgba(23,18,13,.06);
  --shadow-md: 0 10px 30px rgba(23,18,13,.12);
  --ease: cubic-bezier(.22,.61,.36,1);
  --header-h: 76px;
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body { overflow-x: clip; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; letter-spacing: -.01em; color: var(--ink); }
em { font-style: italic; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: clamp(64px, 9vw, 128px); }
.section--tight { padding-block: clamp(48px, 6vw, 84px); }
.center { text-align: center; }
.eyebrow {
  display: block;
  font-family: var(--font-sans); font-size: 12.5px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--accent-d);
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--accent); display: inline-block; vertical-align: middle; margin-right: 10px; }
.eyebrow.center-line::after { content: ""; width: 26px; height: 1px; background: var(--accent); display: inline-block; vertical-align: middle; margin-left: 10px; }
.section-head { max-width: 680px; }
.section-head.center { margin-inline: auto; }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); margin-top: 16px; }
.section-head p { color: var(--muted); margin-top: 18px; font-size: 1.06rem; }
.lead { font-size: clamp(1.1rem, 2vw, 1.32rem); line-height: 1.55; color: var(--ink); font-family: var(--font-display); }

/* ---------- Buttons ---------- */
.btn {
  --bg-btn: var(--ink); --fg-btn: #fff;
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--bg-btn); color: var(--fg-btn);
  padding: 14px 26px; border: 1px solid var(--bg-btn); border-radius: var(--radius);
  font-size: 14.5px; font-weight: 600; letter-spacing: .02em;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn .arr { transition: transform .25s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn--accent { --bg-btn: var(--accent); --fg-btn: #fff; border-color: var(--accent); }
.btn--accent:hover { background: var(--accent-d); border-color: var(--accent-d); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--light { background: #fff; color: var(--ink); border-color: #fff; }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--outline-light:hover { background: #fff; color: var(--ink); }
.btn--lg { padding: 16px 32px; font-size: 15px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.textlink { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14.5px; color: var(--accent-d); letter-spacing: .02em; }
.textlink .arr { transition: transform .25s var(--ease); }
.textlink:hover .arr { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; flex-direction: column; line-height: 1; letter-spacing: .02em; }
.brand b { font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; color: #fff; transition: color .3s var(--ease); }
.brand span { font-size: 10px; letter-spacing: .34em; text-transform: uppercase; color: rgba(255,255,255,.72); margin-top: 4px; transition: color .3s var(--ease); }
.nav { display: flex; align-items: center; gap: 34px; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-size: 14.5px; font-weight: 500; color: rgba(255,255,255,.86); letter-spacing: .01em; position: relative; padding: 4px 0; transition: color .25s var(--ease); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px; background: var(--accent); transition: width .28s var(--ease); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: #fff; }
.header-cta { display: flex; align-items: center; gap: 18px; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14.5px; color: #fff; }
.header-phone svg { width: 16px; height: 16px; }

/* solid header (scrolled / subpages) */
.site-header.solid { background: var(--bg); box-shadow: 0 1px 0 var(--line), 0 8px 30px rgba(23,18,13,.06); border-color: var(--line); }
.site-header.solid .brand b { color: var(--ink); }
.site-header.solid .brand span { color: var(--muted); }
.site-header.solid .nav-links a { color: var(--ink); }
.site-header.solid .header-phone { color: var(--ink); }
.site-header.solid .nav-toggle span { background: var(--ink); }

/* mobile nav toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 30px; height: 30px; justify-content: center; align-items: flex-end; background: none; border: 0; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: #fff; filter: drop-shadow(0 1px 1.5px rgba(0,0,0,.45)); transition: transform .3s var(--ease), opacity .2s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(15,11,8,.55) 0%, rgba(15,11,8,.18) 32%, rgba(15,11,8,.30) 60%, rgba(15,11,8,.82) 100%);
}
.hero__inner { padding-bottom: clamp(56px, 8vw, 110px); padding-top: calc(var(--header-h) + 40px); max-width: 820px; width: 100%; min-width: 0; }
.hero .eyebrow { max-width: 100%; flex-wrap: wrap; }
.hero h1 { overflow-wrap: break-word; }
.hero .eyebrow { color: #e9d9c6; }
.hero .eyebrow::before { background: var(--accent); }
.hero h1 { color: #fff; font-size: clamp(2.6rem, 6.4vw, 5rem); font-weight: 400; margin-top: 22px; letter-spacing: -.02em; }
.hero h1 em { color: #ecd9c6; font-style: italic; }
.hero p { font-size: clamp(1.05rem, 2.1vw, 1.28rem); color: rgba(255,255,255,.9); margin-top: 22px; max-width: 600px; }
.hero .btn-row { margin-top: 36px; }
.scroll-cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 10.5px; letter-spacing: .28em; text-transform: uppercase; color: rgba(255,255,255,.7); }
.scroll-cue .line { width: 1px; height: 42px; background: linear-gradient(rgba(255,255,255,.7), rgba(255,255,255,0)); animation: cue 2.2s var(--ease) infinite; }
@keyframes cue { 0%,100% { transform: scaleY(.4); transform-origin: top; opacity: .5; } 50% { transform: scaleY(1); opacity: 1; } }

/* ---------- Stats strip ---------- */
.stats { background: var(--ink); color: #fff; }
.stats .grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: clamp(34px, 4vw, 56px) 24px; text-align: center; border-left: 1px solid rgba(255,255,255,.10); }
.stat:first-child { border-left: 0; }
.stat__num { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.1rem); font-weight: 500; color: #fff; line-height: 1; }
.stat__num .suffix { color: var(--accent); }
.stat__label { margin-top: 12px; font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.62); }

/* ---------- Intro band ---------- */
.intro { background: var(--bg); }
.intro__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(30px, 6vw, 90px); align-items: center; }
.intro__grid .lead { color: var(--ink); }
.intro__grid p + p { margin-top: 18px; color: var(--muted); font-family: var(--font-sans); font-size: 1.02rem; }
.signature { margin-top: 26px; font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: var(--accent-d); }
.signature small { display: block; font-family: var(--font-sans); font-style: normal; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

/* ---------- Services ---------- */
.services { background: var(--bg-2); }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 54px; }
.service-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card__media { aspect-ratio: 3/2; overflow: hidden; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.service-card:hover .service-card__media img { transform: scale(1.06); }
.service-card__body { padding: 28px 26px 32px; }
.service-card__body .num { font-family: var(--font-display); font-size: 13px; color: var(--accent); letter-spacing: .1em; }
.service-card__body h3 { font-size: 1.5rem; margin: 10px 0 12px; }
.service-card__body p { color: var(--muted); font-size: .98rem; }
.service-card__body ul { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.service-card__body li { font-size: 12.5px; color: var(--ink); background: var(--bg-2); border: 1px solid var(--line); padding: 5px 11px; border-radius: 100px; }

/* ---------- Projects ---------- */
.projects { background: var(--bg); }
.projects__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.grid-projects { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px; }
.project { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/2.15; display: block; background: var(--ink); }
.project img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), opacity .6s; }
.project::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,11,8,0) 38%, rgba(15,11,8,.82) 100%); transition: opacity .4s; }
.project:hover img { transform: scale(1.07); }
.project__meta { position: absolute; left: 22px; right: 22px; bottom: 20px; z-index: 1; color: #fff; transform: translateY(6px); transition: transform .4s var(--ease); }
.project:hover .project__meta { transform: translateY(0); }
.project__tag { display: inline-block; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: #fff; background: rgba(168,123,83,.92); padding: 5px 11px; border-radius: 100px; margin-bottom: 12px; }
.project__meta h3 { color: #fff; font-size: 1.32rem; font-weight: 500; }
.project__meta .view { display: inline-flex; gap: 7px; align-items: center; font-size: 13px; font-weight: 600; margin-top: 8px; opacity: 0; transform: translateY(6px); transition: opacity .35s var(--ease), transform .35s var(--ease); }
.project:hover .project__meta .view { opacity: 1; transform: translateY(0); }
.project--tall { aspect-ratio: 3/4; }

/* ---------- About band ---------- */
.about-band { background: var(--ink); color: #fff; overflow: hidden; }
.about-band__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 6vw, 80px); align-items: center; }
.about-band__media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.about-band__media img { width: 100%; height: 100%; object-fit: cover; }
.about-band h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.about-band .eyebrow { color: var(--accent); }
.about-band p { color: rgba(255,255,255,.78); margin-top: 20px; }
.pull-quote { font-family: var(--font-display); font-style: italic; font-size: clamp(1.4rem,2.6vw,1.9rem); color: #fff; line-height: 1.32; border-left: 2px solid var(--accent); padding-left: 24px; margin: 28px 0; }
.about-band .btn-row { margin-top: 30px; }

/* ---------- Trust / difference ---------- */
.trust { background: var(--bg-2); }
.trust__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; margin-top: 50px; }
.trust__item { padding: 6px 4px; }
.trust__item .ic { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid var(--accent); border-radius: 50%; color: var(--accent-d); margin-bottom: 18px; }
.trust__item .ic svg { width: 22px; height: 22px; }
.trust__item h3 { font-size: 1.25rem; margin-bottom: 10px; }
.trust__item p { color: var(--muted); font-size: .98rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; color: #fff; text-align: center; overflow: hidden; }
.cta-band__bg { position: absolute; inset: 0; z-index: -2; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(15,11,8,.74), rgba(15,11,8,.8)); }
.cta-band h2 { color: #fff; font-size: clamp(2.1rem, 4.6vw, 3.4rem); max-width: 760px; margin-inline: auto; }
.cta-band p { color: rgba(255,255,255,.85); margin: 20px auto 34px; max-width: 540px; }
.cta-band .btn-row { justify-content: center; }
.cta-phone { margin-top: 26px; font-size: 14px; letter-spacing: .04em; color: rgba(255,255,255,.8); }
.cta-phone a { color: #fff; font-weight: 600; border-bottom: 1px solid var(--accent); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.72); padding-block: clamp(56px, 7vw, 84px) 30px; font-size: 14.5px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; }
.footer__brand b { font-family: var(--font-display); font-size: 1.4rem; color: #fff; }
.footer__brand .lic { display: inline-block; margin-top: 14px; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.footer__brand p { margin-top: 16px; max-width: 320px; color: rgba(255,255,255,.6); }
.footer h4 { color: #fff; font-family: var(--font-sans); font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 18px; font-weight: 600; }
.footer a:hover { color: #fff; }
.footer li { margin-bottom: 11px; }
.footer .contact-line { display: flex; gap: 11px; margin-bottom: 14px; align-items: flex-start; }
.footer .contact-line svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--accent); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 50px; padding-top: 26px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: rgba(255,255,255,.5); }

/* ---------- Page hero (subpages) ---------- */
.page-hero { background: var(--ink); color: #fff; padding-top: calc(var(--header-h) + 64px); padding-bottom: clamp(54px, 7vw, 92px); }
.page-hero.has-photo { position: relative; overflow: hidden; }
.page-hero__media { position: absolute; inset: 0; z-index: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.page-hero.has-photo::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(23,18,13,.62) 0%, rgba(23,18,13,.58) 45%, rgba(23,18,13,.8) 100%); }
.page-hero.has-photo > .container { position: relative; z-index: 2; }
.page-hero.has-photo h1, .page-hero.has-photo p, .page-hero.has-photo .crumbs { text-shadow: 0 2px 16px rgba(0,0,0,.6); }
.page-hero .eyebrow { color: var(--accent); }
.page-hero h1 { color: #fff; font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 400; margin-top: 16px; }
.page-hero p { color: rgba(255,255,255,.78); margin-top: 18px; max-width: 620px; }
.crumbs { font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 22px; }
.crumbs a:hover { color: #fff; }

/* ---------- Gallery filters ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filter { padding: 9px 18px; border: 1px solid var(--line); background: var(--bg); border-radius: 100px; font-size: 13.5px; font-weight: 500; color: var(--muted); transition: all .25s var(--ease); }
.filter:hover { border-color: var(--accent); color: var(--ink); }
.filter.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.gallery-grid .project { aspect-ratio: 4/3; }
.gallery-grid .project.hide { display: none; }

/* ---------- About page ---------- */
.values { display: grid; grid-template-columns: repeat(2,1fr); gap: 30px 60px; margin-top: 40px; }
.value h3 { font-size: 1.2rem; margin-bottom: 8px; display: flex; gap: 12px; align-items: baseline; }
.value h3 .n { font-family: var(--font-display); color: var(--accent); font-size: 1rem; }
.value p { color: var(--muted); font-size: .98rem; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px,6vw,80px); align-items: center; }
.split__media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(34px,5vw,70px); }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 13px; font-weight: 600; letter-spacing: .04em; color: var(--ink); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--white); font: inherit; font-size: 15px; color: var(--text); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(168,123,83,.14); }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 8px; }
.form-success { display: none; background: var(--bg-2); border: 1px solid var(--accent); border-radius: var(--radius); padding: 22px 24px; color: var(--ink); }
.form-success.show { display: block; }
.contact-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 30px; }
.contact-card h3 { font-size: 1.4rem; margin-bottom: 20px; }
.contact-line { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-line svg { width: 20px; height: 20px; color: var(--accent-d); flex-shrink: 0; margin-top: 3px; }
.contact-line .k { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.contact-line .v { color: var(--ink); font-weight: 500; }
.contact-line a.v:hover { color: var(--accent-d); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
.reveal[data-d="5"] { transition-delay: .40s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .intro__grid, .about-band__grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .cards-3, .grid-projects, .trust__grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .stats .grid { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(-n+2) { border-top: 0; }
  .stat:nth-child(odd) { border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.1); }
  .values { grid-template-columns: 1fr; }
  .about-band__media { order: -1; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-links, .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .nav { gap: 16px; }
  .cards-3, .grid-projects, .trust__grid, .gallery-grid, .field-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .page-hero.has-photo::after { background: linear-gradient(180deg, rgba(23,18,13,.55) 0%, rgba(23,18,13,.72) 55%, rgba(23,18,13,.82) 100%); }
  .page-hero.has-photo .page-hero__media img { object-position: 64% 30%; }
  .hero { min-height: 100svh; align-items: center; }
  .hero__inner { padding-top: calc(var(--header-h) + 20px); padding-bottom: 44px; }
  .hero .eyebrow { font-size: 11.5px; letter-spacing: .15em; }
  .hero .eyebrow .eyebrow__more { display: none; }
  .hero h1 { font-size: clamp(1.9rem, 7.8vw, 3rem); margin-top: 18px; line-height: 1.1; }
  .hero p { font-size: 1rem; margin-top: 18px; }
  .hero .btn-row { flex-direction: column; align-items: flex-start; gap: 12px; margin-top: 26px; }
  .hero__inner .btn-row .btn { flex: 0 0 auto; width: auto; justify-content: center; }
  .scroll-cue { display: none; }
  .projects__head { flex-direction: column; align-items: flex-start; }

  /* mobile slide-in menu */
  .nav-links {
    position: fixed; inset: var(--header-h) 0 auto 0; display: flex; flex-direction: column; gap: 0;
    background: var(--bg); padding: 12px 24px 26px; box-shadow: var(--shadow-md); transform: translateY(-120%); visibility: hidden;
    transition: transform .38s var(--ease), visibility .38s var(--ease); border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; transform: translateY(0); visibility: visible; }
  .nav-links a { color: var(--ink) !important; padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav-links a::after { display: none; }
  .header-cta .btn { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
