/* ─── TOKENS ─────────────────────────────────────────────────────────────── */
:root {
  --orange: #F26522;
  --orange-dim: rgba(242, 101, 34, 0.18);
  --orange-glow: rgba(242, 101, 34, 0.08);
  --orange-subtle: rgba(242, 101, 34, 0.12);

  --bg: #080807;
  --surface: rgba(255,255,255,0.032);
  --surface-hover: rgba(255,255,255,0.055);
  --glass-border: rgba(255,255,255,0.08);
  --glass-border-orange: rgba(242,101,34,0.4);
  --glass-sheen: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, transparent 50%);
  --glass-blur: blur(20px) saturate(160%);
  --glass-shadow: 0 8px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.07);
  --glass-shadow-hover: 0 16px 60px rgba(0,0,0,0.65), inset 0 1px 0 rgba(255,255,255,0.11);

  --text: #ece9e3;
  --text-muted: #7a766f;
  --text-faint: #383430;
  --text-inv: #080807;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Cabinet Grotesk', 'Helvetica Neue', sans-serif;

  --tx: clamp(0.75rem, 0.7rem + 0.2vw, 0.875rem);
  --ts: clamp(0.875rem, 0.82rem + 0.3vw, 1rem);
  --tb: clamp(1rem, 0.95rem + 0.2vw, 1.125rem);
  --tl: clamp(1.125rem, 1rem + 0.65vw, 1.5rem);
  --txl: clamp(1.5rem, 1.1rem + 1.3vw, 2.5rem);
  --t2xl: clamp(2rem, 1.2rem + 2.5vw, 3.75rem);
  --t3xl: clamp(2.8rem, 1rem + 5.5vw, 6.5rem);
  --thero: clamp(4rem, 1rem + 10vw, 9.5rem);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --fast: 160ms cubic-bezier(0.16,1,0.3,1);
  --mid: 320ms cubic-bezier(0.16,1,0.3,1);

  --r-sm: 0.375rem;
  --r-md: 0.75rem;
  --r-lg: 1.25rem;
  --r-xl: 2rem;
}

/* Light theme */
[data-theme='light'] {
  --bg: #f2efe9;
  --surface: rgba(255,255,255,0.55);
  --surface-hover: rgba(255,255,255,0.75);
  --glass-border: rgba(0,0,0,0.08);
  --glass-border-orange: rgba(242,101,34,0.5);
  --glass-sheen: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, transparent 50%);
  --glass-shadow: 0 8px 40px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
  --glass-shadow-hover: 0 16px 60px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,1);
  --text: #111010;
  --text-muted: #5a5650;
  --text-faint: #bbb7b1;
  --text-inv: #f2efe9;
  --orange-dim: rgba(242,101,34,0.12);
  --orange-glow: rgba(242,101,34,0.06);
}

/* ─── RESET ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}
body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--tb);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}
img, svg { display: block; max-width: 100%; }
h1,h2,h3,h4 { text-wrap: balance; line-height: 1.1; }
p { text-wrap: pretty; max-width: 68ch; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
::selection { background: rgba(242,101,34,0.2); }
:focus-visible { outline: 1.5px solid var(--orange); outline-offset: 3px; border-radius: var(--r-sm); }

/* ─── DIAGONAL LINE FIELD ────────────────────────────────────────────────────
   Single repeating SVG: thin 45° lines, very low opacity, feels like brushed metal */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cline x1='0' y1='40' x2='40' y2='0' stroke='rgba(255,255,255,0.045)' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 40px 40px;
}
[data-theme='light'] body::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cline x1='0' y1='40' x2='40' y2='0' stroke='rgba(0,0,0,0.055)' stroke-width='0.5'/%3E%3C/svg%3E");
}

/* ─── GLOW ORBS (section-anchored, via pseudo-elements on sections) ─────────── */
.hero::after,
.work::after,
.about::after,
.contact::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}

/* Hero: large orange orb top-left */
.hero::after {
  width: 700px; height: 500px;
  top: -100px; left: -200px;
  background: radial-gradient(ellipse, rgba(242,101,34,0.18) 0%, transparent 70%);
}

/* Work: orb bottom-right */
.work::after {
  width: 600px; height: 500px;
  bottom: -60px; right: -150px;
  background: radial-gradient(ellipse, rgba(242,101,34,0.12) 0%, transparent 70%);
}

/* About: orb center-left */
.about::after {
  width: 500px; height: 400px;
  top: 50%; left: -100px;
  transform: translateY(-50%);
  background: radial-gradient(ellipse, rgba(242,101,34,0.10) 0%, transparent 70%);
}

/* Contact: large centered orb */
.contact::after {
  width: 800px; height: 400px;
  bottom: -80px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(242,101,34,0.16) 0%, transparent 65%);
}

/* Sections that use pseudo-elements need position:relative */
.hero, .work, .about, .contact { position: relative; }
.hero::before { z-index: 0; }

/* ─── GLASS CARD MIXIN ────────────────────────────────────────────────────── */
.glass {
  background: var(--surface);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
}
/* Top-edge ice sheen */
.glass::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--glass-sheen);
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}
.glass > * { position: relative; z-index: 2; }

.glass:hover {
  background: var(--surface-hover);
  border-color: var(--glass-border-orange);
  box-shadow: var(--glass-shadow-hover);
  transform: translateY(-2px);
}
.glass:active { transform: translateY(0); }

/* ─── SCROLL ANIMATIONS ────────────────────────────────────────────────────── */
.glass-slide {
  opacity: 0;
  transform: translateY(36px);
  filter: blur(4px);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease),
    filter 0.65s var(--ease);
  will-change: transform, opacity;
}
.glass-slide.in-view { opacity: 1; transform: translateY(0); filter: blur(0); }
.glass-slide:nth-child(2) { transition-delay: 0.07s; }
.glass-slide:nth-child(3) { transition-delay: 0.14s; }
.glass-slide:nth-child(4) { transition-delay: 0.21s; }
.glass-slide:nth-child(5) { transition-delay: 0.28s; }

.reveal-up { opacity: 1; }
@supports (animation-timeline: scroll()) {
  .reveal-up {
    clip-path: inset(100% 0 0 0);
    animation: clip-reveal linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 70%;
  }
}
@keyframes clip-reveal { to { clip-path: inset(0 0 0 0); } }

.fade-in { opacity: 0; animation: fade-up 0.9s var(--ease) both; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.28s; }
.delay-3 { animation-delay: 0.42s; }
.delay-4 { animation-delay: 0.56s; }
@keyframes fade-up { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .glass-slide, .fade-in, .reveal-up { opacity: 1; transform: none; filter: none; animation: none; clip-path: none; transition: none; }
}

/* ─── NAV ──────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(8,8,7,0.75);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid var(--glass-border);
  transition: border-color var(--fast);
}
[data-theme='light'] .nav { background: rgba(242,239,233,0.8); }

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 1;
  transition: opacity var(--fast);
}
.logo:hover { opacity: 0.75; }

.logo-mark text { font-family: 'Playfair Display', Georgia, serif; }
[data-theme='light'] .logo-mark text:not(:first-child) { fill: #111010; }

.logo-text-stack { display: flex; flex-direction: column; gap: 2px; }
.logo-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--ts);
  letter-spacing: 0.01em;
  color: var(--text);
}
.logo-dot { color: var(--orange); }
.logo-tagline {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.07em;
  color: rgba(236,233,227,0.7);
  text-transform: lowercase;
  white-space: nowrap;
  line-height: 1;
}
[data-theme='light'] .logo-tagline { color: rgba(17,16,16,0.5); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-links a {
  font-size: var(--ts);
  color: var(--text-muted);
  letter-spacing: 0.02em;
  transition: color var(--fast);
}
.nav-links a:hover { color: var(--text); }

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  color: var(--text-muted);
  border-radius: var(--r-sm);
  transition: color var(--fast), background var(--fast);
}
.theme-toggle:hover { color: var(--orange); }

/* ─── HERO ─────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 6rem;
  overflow: hidden;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-label {
  font-size: var(--tx);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: var(--thero);
  font-weight: 800;
  line-height: 0.93;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 2rem;
}
.hero-headline em {
  font-style: italic;
  font-weight: 700;
  color: var(--orange);
  /* Subtle glow on the name */
  text-shadow: 0 0 80px rgba(242,101,34,0.35), 0 0 30px rgba(242,101,34,0.2);
}

.hero-sub {
  font-size: var(--tl);
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2.75rem;
  max-width: 52ch;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Vertical ambient rule */
.hero-rule {
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  opacity: 0.3;
  z-index: 1;
}
.rule-year, .rule-loc {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}
.rule-line { width: 1px; height: 100px; background: var(--glass-border); }

.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.3;
  animation: scroll-pulse 2.4s ease-in-out infinite;
}
.scroll-line { width: 1px; height: 52px; background: linear-gradient(to bottom, var(--text-muted), transparent); }
@keyframes scroll-pulse {
  0%,100% { opacity: 0.3; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.55; transform: translateX(-50%) translateY(7px); }
}

/* ─── BUTTONS ──────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.72em 1.7em;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--ts);
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--r-sm);
  box-shadow: 0 0 24px rgba(242,101,34,0.35);
  transition: background var(--fast), transform var(--fast), box-shadow var(--fast);
}
.btn-primary:hover {
  background: #ff7a35;
  transform: translateY(-1px);
  box-shadow: 0 0 40px rgba(242,101,34,0.55);
}
.btn-primary:active { transform: none; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.72em 1.7em;
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: var(--ts);
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--r-sm);
  backdrop-filter: blur(8px);
  transition: color var(--fast), border-color var(--fast), background var(--fast);
}
.btn-ghost:hover {
  color: var(--text);
  border-color: var(--glass-border-orange);
  background: rgba(242,101,34,0.06);
}

/* ─── SHARED SECTION ────────────────────────────────────────────────────────── */
.section-tag {
  display: block;
  font-size: var(--tx);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: var(--t3xl);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 3rem;
}
.section-title em { font-style: italic; color: var(--orange); }

/* ─── STATS BAR ─────────────────────────────────────────────────────────────── */
.stats-bar {
  position: relative;
  z-index: 1;
  padding: 2.25rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1rem;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; }
.stat-num {
  font-family: var(--font-display);
  font-size: var(--t2xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
}
.stat-label {
  font-size: var(--tx);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-faint);
  white-space: nowrap;
}
.stat-divider { width: 1px; height: 44px; background: var(--glass-border); }

/* ─── WORK ──────────────────────────────────────────────────────────────────── */
.work {
  padding: clamp(5rem, 10vw, 9rem) 2rem;
  overflow: hidden;
}
.section-header { max-width: 1100px; margin: 0 auto 3rem; }

.projects-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.project {
  grid-column: span 6;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition:
    background var(--fast),
    border-color var(--fast),
    box-shadow var(--mid),
    transform var(--mid);
}
.project--featured {
  grid-column: span 12;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.project--featured .project-meta { grid-column: 1 / -1; }

.project-meta { display: flex; align-items: center; justify-content: space-between; }
.project-tag {
  font-size: var(--tx);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}
.project-year { font-size: var(--tx); color: var(--text-faint); }

.project-title {
  font-family: var(--font-display);
  font-size: var(--txl);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.15;
}
.project-desc { font-size: var(--ts); color: var(--text-muted); line-height: 1.7; }

.project-outcome {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.9rem 1.1rem;
  background: rgba(242,101,34,0.07);
  border: 1px solid rgba(242,101,34,0.18);
  border-radius: var(--r-md);
}
.outcome-label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); }
.outcome-text { font-size: var(--tx); color: var(--text-muted); }

.project-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
}
.project-tag-row span {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-faint);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-sm);
  padding: 0.22em 0.65em;
}

/* ─── DISCIPLINE STRIP ───────────────────────────────────────────────────────── */
.disciplines {
  padding: 4rem 2rem;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: var(--surface);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
/* Glow behind the discipline strip */
.disciplines::after {
  content: '';
  position: absolute;
  width: 400px; height: 200px;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  background: radial-gradient(ellipse, rgba(242,101,34,0.1) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.disciplines-inner { max-width: 1100px; margin: 0 auto; }
.disc-label {
  font-size: var(--tx);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 1.5rem;
}
.disc-list { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.disc-item {
  font-family: var(--font-display);
  font-size: var(--t2xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
}
.disc-sep { font-size: var(--tl); color: var(--orange); opacity: 0.5; }

/* ─── ABOUT ──────────────────────────────────────────────────────────────────── */
.about {
  padding: clamp(5rem, 10vw, 9rem) 2rem;
  overflow: hidden;
}
.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.about-body { font-size: var(--ts); color: var(--text-muted); line-height: 1.8; margin-bottom: 1.25rem; }
.about-body:last-of-type { margin-bottom: 2rem; }

.about-right { display: flex; flex-direction: column; gap: 1rem; }
.about-stat-card {
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: background var(--fast), border-color var(--fast), box-shadow var(--mid), transform var(--mid);
}
.asc-num {
  font-family: var(--font-display);
  font-size: var(--t2xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--orange);
  line-height: 1;
  text-shadow: 0 0 30px rgba(242,101,34,0.3);
}
.asc-label { font-size: var(--ts); color: var(--text-muted); line-height: 1.4; }

/* ─── CONTACT ────────────────────────────────────────────────────────────────── */
.contact {
  padding: clamp(5rem, 10vw, 9rem) 2rem;
  border-top: 1px solid var(--glass-border);
  overflow: hidden;
}
.contact-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.contact-headline {
  font-family: var(--font-display);
  font-size: var(--t3xl);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.0;
  color: var(--text);
  margin-bottom: 2rem;
}
.contact-headline em {
  font-style: italic;
  color: var(--orange);
  text-shadow: 0 0 60px rgba(242,101,34,0.35);
}
.contact-email {
  display: inline-block;
  font-size: var(--tl);
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 0.4rem;
  transition: color var(--fast), border-color var(--fast);
}
.contact-email:hover { color: var(--orange); border-color: var(--orange); }
.contact-links { display: flex; justify-content: center; gap: 2rem; }
.contact-links a {
  font-size: var(--ts);
  color: var(--text-faint);
  letter-spacing: 0.05em;
  transition: color var(--fast);
}
.contact-links a:hover { color: var(--orange); }

/* ─── FOOTER ─────────────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--glass-border);
  padding: 1.5rem 2rem;
  position: relative;
  z-index: 1;
  background: var(--surface);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy, .footer-location { font-size: var(--tx); color: var(--text-faint); letter-spacing: 0.06em; }

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .project { grid-column: span 12; }
  .project--featured { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-inner { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .hero { padding: 7rem 1.25rem 5rem; }
  .hero-rule, .scroll-cue { display: none; }
  .nav-inner { padding: 0.75rem 1.25rem; }
  .nav-links a { display: none; }
  .stats-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 1rem; justify-items: center; }
  .stat-divider { display: none; }
  .disc-list { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .disc-sep { display: none; }
  .disc-item { font-size: var(--txl); }
  .hero-cta { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .work, .about, .contact { padding: 4rem 1.25rem; }
  .disciplines { padding: 3rem 1.25rem; }
}
@media (max-width: 440px) {
  .hero-headline { letter-spacing: -0.02em; }
  .section-title { font-size: clamp(2.2rem, 11vw, 3rem); }
  .contact-headline { font-size: clamp(2.2rem, 11vw, 3rem); }
}
