/* ═══════════════════════════════════════════════════════════════════
   Ashlar Holdings — Stylesheet v2
   Aesthetic: Monolithic Refinement / Washington Stone
   Fonts: Cormorant (display) + Jost (body)
   ═══════════════════════════════════════════════════════════════════ */

/* ── Design Tokens ─────────────────────────────────────────────── */
:root {
  --ink:          #0e0d0c;
  --ink-90:       #1a1917;
  --ink-80:       #2b2926;
  --ink-60:       #57524c;
  --ink-40:       #8a8077;
  --ink-20:       #b5ada5;
  --parchment:    #f5f2ee;
  --parchment-dk: #ede9e3;
  --white:        #fefcf9;
  --brass:        #c9a96e;
  --brass-lt:     #ddc28f;
  --brass-dim:    rgba(201, 169, 110, 0.35);
  --brass-faint:  rgba(201, 169, 110, 0.12);

  --serif: 'Cormorant', Georgia, 'Times New Roman', serif;
  --sans:  'Jost', system-ui, sans-serif;

  --s1:   4px;  --s2:   8px;  --s3:  12px;  --s4:  16px;
  --s6:  24px;  --s8:  32px;  --s12: 48px;  --s16: 64px;
  --s24: 96px;  --s32: 128px;

  --fast: 150ms ease-out;
  --mid:  280ms ease-out;
  --slow: 480ms ease-out;
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; touch-action: manipulation; }
body {
  background: var(--ink);
  color: var(--parchment);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Global grain */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 8000;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* ── Page Loader ───────────────────────────────────────────────── */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 10000;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
  transition: opacity 0.7s ease-out, visibility 0.7s ease-out;
}
.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader-bar {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--brass), transparent);
  width: 0;
  transition: width 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.loader-bar.go { width: 100%; }

/* ── Custom Cursor ─────────────────────────────────────────────── */
@media (pointer: fine) {
  * { cursor: none !important; }

  .cursor {
    position: fixed;
    top: 0; left: 0;
    width: 7px; height: 7px;
    background: var(--brass);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition:
      width var(--mid),
      height var(--mid),
      background var(--mid),
      opacity var(--fast);
  }
  .cursor.hovering {
    width: 36px; height: 36px;
    background: rgba(201, 169, 110, 0.15);
    border: 1px solid rgba(201, 169, 110, 0.5);
  }
  .cursor.hidden { opacity: 0; }
}

/* ── Header ────────────────────────────────────────────────────── */
/* Single-element nuclear option: header starts at physical y=0 and
   uses padding-top to push nav content below the Dynamic Island.
   max() ensures we cover the notch even if Safari evaluates env() as 0.
   Background applies to the full element including the notch zone. */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding-top: env(safe-area-inset-top, 0px);
  z-index: 99999;
  transition: background var(--slow), backdrop-filter var(--slow),
              border-color var(--slow);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: var(--ink);
  border-color: var(--brass-faint);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--s6) var(--s8);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  color: var(--white);
  text-decoration: none;
  transition: color var(--fast);
}
.wordmark:hover { color: var(--brass); }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s12);
}
.nav-links a {
  font-size: 0.67rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 242, 238, 0.55);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color var(--fast);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -1px;
  width: 0; height: 1px;
  background: var(--brass);
  transition: width var(--mid);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  min-width: 44px;
  min-height: 44px;
  padding: var(--s2);
  touch-action: manipulation;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1px;
  background: var(--parchment);
  transition: transform var(--mid), opacity var(--mid);
  pointer-events: none;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  border-top: 1px solid transparent;
  pointer-events: none;
  background: var(--ink);
  transition:
    max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1),
    opacity    0.32s ease-out,
    border-color 0.32s ease-out;
}
.mobile-menu.open {
  max-height: 220px;
  opacity: 1;
  border-color: var(--brass-faint);
  pointer-events: auto;
}
/* inner wrapper holds the padding so max-height:0 truly collapses to 0px */
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  padding: var(--s3) var(--s8) var(--s6);
}
.mobile-menu a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 242, 238, 0.55);
  text-decoration: none;
  transition: color var(--fast);
  touch-action: manipulation;
}
.mobile-menu a:hover { color: var(--white); }

/* ── Hero ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -12% -4%;
  background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&q=85&w=2400');
  background-size: cover;
  background-position: center 30%;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    112deg,
    rgba(14, 13, 12, 0.90) 0%,
    rgba(14, 13, 12, 0.68) 50%,
    rgba(14, 13, 12, 0.30) 100%
  );
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  mix-blend-mode: luminosity;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: calc(var(--s32) + 80px) var(--s8) var(--s16);
}

.hero-eyebrow {
  font-size: 0.63rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: var(--s6);
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.9s ease-out 0.5s forwards;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7.5vw, 7.5rem);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--white);
  margin-bottom: var(--s8);
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 1.1s ease-out 0.7s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--brass-lt);
  font-weight: 300;
}

.hero-subtitle {
  font-size: clamp(0.88rem, 1.4vw, 1.05rem);
  font-weight: 300;
  line-height: 1.85;
  color: rgba(245, 242, 238, 0.52);
  max-width: 44ch;
  margin-bottom: var(--s12);
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 1s ease-out 0.95s forwards;
}

.hero-rule {
  width: 52px; height: 1px;
  background: var(--brass-dim);
  opacity: 0;
  animation: fadeIn 1s ease-out 1.2s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: var(--s8); right: var(--s8);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s3);
  opacity: 0;
  animation: fadeIn 1s ease-out 1.6s forwards;
}
.hero-scroll span {
  font-size: 0.57rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245, 242, 238, 0.3);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, var(--brass-dim), transparent);
  animation: scrollPulse 2.4s ease-in-out 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50%       { opacity: 0.4; }
}

/* ── Marquee Strip ─────────────────────────────────────────────── */
.marquee-strip {
  background: var(--ink-90);
  border-top: 1px solid var(--brass-faint);
  border-bottom: 1px solid var(--brass-faint);
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: var(--s6);
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee-track span {
  font-size: 0.61rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 242, 238, 0.35);
  white-space: nowrap;
}
.marquee-sep {
  color: var(--brass-dim) !important;
  letter-spacing: 0 !important;
  font-size: 0.7rem !important;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-strip:hover .marquee-track {
  animation-play-state: paused;
}

/* ── Section Shared ────────────────────────────────────────────── */
.section-tag {
  font-size: 0.63rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: var(--s6);
}
.section-tag.light { color: var(--brass-lt); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.07;
  letter-spacing: -0.01em;
  margin-bottom: var(--s8);
}

.section-rule {
  width: 44px; height: 1px;
  background: var(--brass);
  margin-bottom: var(--s8);
}

.section-body {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
  max-width: 52ch;
  color: rgba(245, 242, 238, 0.55);
}

.section-vert-label {
  position: absolute;
  left: var(--s4); top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
  font-size: 0.57rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.15);
  white-space: nowrap;
  pointer-events: none;
}

/* ── Philosophy ────────────────────────────────────────────────── */
.philosophy {
  position: relative;
  background: var(--ink-90);
  padding: var(--s32) 0 var(--s24);
}

/* Pull quote */
.philosophy-quote-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--s8) var(--s16) calc(var(--s8) + 28px);
  border-bottom: 1px solid var(--brass-faint);
  margin-bottom: var(--s16);
}
.philosophy-quote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: rgba(245, 242, 238, 0.55);
  letter-spacing: 0.01em;
}
.philosophy-quote em {
  font-style: normal;
  color: var(--brass-lt);
}

.philosophy-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--s8) 0 calc(var(--s8) + 28px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: center;
}

.philosophy-image-col { position: relative; }
.philosophy-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  background-image: url('https://images.unsplash.com/photo-1483366774565-c783b9f70e2c?auto=format&fit=crop&q=80&w=900');
  background-size: cover;
  background-position: center;
  filter: grayscale(20%) contrast(1.06) brightness(0.9);
  transition: filter var(--slow);
}
.philosophy-image-col:hover .philosophy-image {
  filter: grayscale(0%) contrast(1.04) brightness(0.95);
}
.philosophy-image-border {
  position: absolute;
  inset: var(--s4) calc(-1 * var(--s4)) calc(-1 * var(--s4)) var(--s4);
  border: 1px solid rgba(201, 169, 110, 0.16);
  pointer-events: none;
}

.philosophy-text-col { padding-left: var(--s8); }
.philosophy-text-col .section-title { color: var(--parchment); }

/* ── Metrics Strip ─────────────────────────────────────────────── */
.metrics-strip {
  background: var(--ink);
  border-top: 1px solid var(--brass-faint);
  border-bottom: 1px solid var(--brass-faint);
}
.metrics-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--s16) var(--s8);
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
}
.metric {
  text-align: center;
  padding: var(--s6) var(--s8);
}
.metric-value {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: var(--s2);
  letter-spacing: 0.02em;
  transition: color var(--mid);
}
.metric:hover .metric-value { color: var(--brass-lt); }
.metric-label {
  font-size: 0.61rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-40);
}
.metric-div {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, transparent, rgba(201, 169, 110, 0.2), transparent);
}

/* ── Approach ──────────────────────────────────────────────────── */
.approach {
  position: relative;
  background: var(--parchment);
  color: var(--ink);
  padding: var(--s32) 0;
}
.approach .section-vert-label { color: rgba(14, 13, 12, 0.05); }

.approach-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 calc(var(--s8) + 28px);
}
.approach-header { margin-bottom: var(--s16); }
.approach .section-tag  { color: var(--ink-60); }
.approach .section-title { color: var(--ink); }
.approach .section-rule  { background: var(--ink-80); }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(14, 13, 12, 0.1);
}

.pillar {
  padding: var(--s12) var(--s8) var(--s12) 0;
  border-right: 1px solid rgba(14, 13, 12, 0.1);
  transition: background var(--mid);
  position: relative;
  overflow: hidden;
}
.pillar::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--brass);
  transition: width var(--slow);
}
.pillar:hover::before { width: 100%; }
.pillar:first-child { padding-left: 0; }
.pillar:last-child  { border-right: none; padding-right: 0; }
.pillar:not(:first-child) { padding-left: var(--s8); }
.pillar:hover { background: rgba(14, 13, 12, 0.02); }
.pillar:hover .pillar-number { color: rgba(14, 13, 12, 0.14); }

.pillar-number {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(14, 13, 12, 0.06);
  line-height: 1;
  margin-bottom: var(--s3);
  letter-spacing: -0.02em;
  transition: color var(--slow);
}

.pillar-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--s3);
  line-height: 1.2;
}

.pillar-rule {
  width: 28px; height: 1px;
  background: var(--brass);
  margin-bottom: var(--s4);
}

.pillar-body {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-60);
  max-width: 34ch;
}

/* ── Contact ───────────────────────────────────────────────────── */
.contact {
  background: var(--ink);
  padding: var(--s32) var(--s8) var(--s24);
  text-align: center;
}

/* Decorative separator */
.contact-deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s4);
  margin-bottom: var(--s16);
}
.contact-deco-line {
  width: 80px; height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 169, 110, 0.3));
}
.contact-deco-line:last-child {
  background: linear-gradient(to left, transparent, rgba(201, 169, 110, 0.3));
}
.contact-deco-diamond {
  width: 5px; height: 5px;
  background: var(--brass-dim);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.contact-inner {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 3.4rem);
  font-weight: 300;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: var(--s6);
}
.contact-rule {
  width: 44px; height: 1px;
  background: var(--brass-dim);
  margin-bottom: var(--s8);
}
.contact-address {
  font-style: normal;
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 2.1;
  color: rgba(245, 242, 238, 0.38);
  margin-bottom: var(--s8);
}
.contact-email {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--brass-lt);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(221, 194, 143, 0.3);
  transition: color var(--fast), border-color var(--fast);
}
.contact-email:hover {
  color: var(--white);
  border-color: rgba(245, 242, 238, 0.35);
}

/* ── Footer ────────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink-90);
  border-top: 1px solid rgba(201, 169, 110, 0.07);
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--s8) var(--s8);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: var(--s8);
}
.footer-brand { }
.footer-wordmark {
  display: block;
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(245, 242, 238, 0.3);
}
.footer-sub {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 242, 238, 0.15);
}
.footer-address {
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(245, 242, 238, 0.2);
  text-align: center;
}
.footer-right { text-align: right; }
.footer-email {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(201, 169, 110, 0.45);
  text-decoration: none;
  margin-bottom: var(--s2);
  transition: color var(--fast);
}
.footer-email:hover { color: var(--brass); }
.footer-copy {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: rgba(245, 242, 238, 0.13);
  text-transform: uppercase;
}

/* ── Scroll Reveal ─────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.13s; }
.reveal-delay-2 { transition-delay: 0.26s; }
.reveal-delay-3 { transition-delay: 0.39s; }

/* ── Keyframes ─────────────────────────────────────────────────── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* ── Reduced Motion ────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero-title, .hero-eyebrow, .hero-subtitle,
  .hero-rule, .hero-scroll { opacity: 1; transform: none; animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg { transition: none; }
  .marquee-track { animation: none; }
  .loader-bar { transition: none; }
}

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .approach-inner { padding: 0 var(--s8); }
  .philosophy-inner { padding: 0 var(--s8); }
  .philosophy-quote-wrap { padding: 0 var(--s8) var(--s16); }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .section-vert-label { display: none; }

  .philosophy-inner {
    grid-template-columns: 1fr;
    padding: 0 var(--s6);
    gap: var(--s8);
  }
  .philosophy-quote-wrap { padding: 0 var(--s6) var(--s12); margin-bottom: var(--s12); }
  .philosophy-image { aspect-ratio: 16 / 9; }
  .philosophy-text-col { padding-left: 0; }
  .philosophy-image-border { display: none; }

  .approach-inner { padding: 0 var(--s6); }

  .metrics-inner {
    grid-template-columns: 1fr;
    gap: var(--s8);
    padding: var(--s12) var(--s6);
  }
  .metric-div { width: 48px; height: 1px; margin: 0 auto;
    background: linear-gradient(to right, transparent, rgba(201, 169, 110, 0.2), transparent);
  }

  .pillars { grid-template-columns: 1fr; }
  .pillar {
    border-right: none;
    border-bottom: 1px solid rgba(14, 13, 12, 0.1);
    padding: var(--s8) 0;
  }
  .pillar:last-child { border-bottom: none; }
  .pillar:not(:first-child) { padding-left: 0; }

  .site-header { padding-top: max(env(safe-area-inset-top, 0px), 47px); }
  .hero-content { padding: calc(var(--s24) + max(env(safe-area-inset-top, 0px), 47px) + 44px) var(--s6) var(--s12); }
  .hero-scroll { display: none; }
  .header-inner { height: 44px; padding: 0 var(--s6); }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--s4);
    padding: var(--s8) var(--s6);
    text-align: center;
  }
  .footer-right { text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { letter-spacing: -0.02em; }
  .hero-subtitle br { display: none; }
  .contact { padding: var(--s24) var(--s6) var(--s16); }
  .philosophy { padding: var(--s24) 0 var(--s16); }
  .approach  { padding: var(--s24) 0; }
}

/* ── Focus ─────────────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}
