/* ==========================================================================
   digitalArizona — daytime Arizona: big sky, desert warmth
   Brand: gold #F2A41C (sun gradient #FFE08A → #FFC23D → #F7991E),
          green #2F9249. Dark text on warm light backgrounds.
   ========================================================================== */

:root {
  --cream: #faf6ed;
  --paper: #ffffff;
  --sand: #f4ead3;
  --ink: #25313d;
  --ink-soft: #51606e;
  --gold: #f2a41c;
  --gold-bright: #ffc23d;
  --gold-soft: #ffe08a;
  --gold-deep: #f7991e;
  --amber: #b06d0a;          /* gold dark enough for text on light bg */
  --green: #2f9249;
  --green-deep: #1d5c30;
  --sky-hi: #3f93cf;
  --sky-lo: #bfe2f5;
  --line: rgba(47, 146, 73, 0.16);
  --line-gold: rgba(242, 164, 28, 0.28);
  --font-head: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --font-poem: "Lora", Georgia, serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  overflow-x: hidden;
}

::selection { background: var(--gold-bright); color: var(--ink); }

img { max-width: 100%; }

/* ===== Reveal-on-scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0.9rem 2rem;
  z-index: 100;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
/* No backdrop-filter here: it would create a containing block that traps
   the fixed-position mobile menu inside the nav bar. */
.nav.scrolled {
  background: rgba(250, 246, 237, 0.97);
  box-shadow: 0 2px 18px rgba(37, 49, 61, 0.12);
  padding: 0.55rem 2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
}
.nav-links a:hover { color: var(--gold-bright); }
.nav-links a.nav-cta {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-bright), var(--gold-deep));
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
}
.nav-links a.nav-cta:hover { filter: brightness(1.07); color: var(--ink); }
.nav.scrolled .nav-links a { color: var(--ink-soft); }
.nav.scrolled .nav-links a:hover { color: var(--green-deep); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: rgba(240, 236, 228, 0.9);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav.scrolled .nav-toggle span { background: var(--ink); }

/* ===== Hero — editorial dark ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background:
    radial-gradient(ellipse 130% 58% at 50% 110%, rgba(179, 99, 20, 0.40) 0%, rgba(102, 54, 10, 0.14) 44%, transparent 66%),
    radial-gradient(ellipse 50% 32% at 88% 10%, rgba(255, 194, 61, 0.055) 0%, transparent 55%),
    linear-gradient(168deg, #0b1e0e 0%, #122917 35%, #173220 65%, #1d5c30 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at center, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.hero-logo {
  height: 80px;
  width: auto;
  display: block;
  margin-bottom: 1.6rem;
  opacity: 0.95;
}
.hero-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 4rem 2rem 0;
  position: relative;
  z-index: 2;
  min-width: 0;
}
.headshot-ring {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 2px solid rgba(242, 164, 28, 0.55);
  box-shadow:
    0 0 0 10px rgba(242, 164, 28, 0.08),
    0 30px 60px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  flex-shrink: 0;
}
.headshot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

/* ===== Inline role icon — swaps per typed role, rides the end of the line ===== */
.role-inline {
  position: relative;
  display: inline-block;
  width: 1.35em;
  height: 1.35em;
  margin-left: 0.45em;
  vertical-align: -0.3em;
}
.role-layer {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(0.5) rotate(-10deg);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.role-layer.is-active {
  opacity: 1;
  transform: none;
}
.role-layer svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 2rem 5rem clamp(2.5rem, 8vw, 8rem);
  max-width: 700px;
  text-align: left;
}
.hero-kicker {
  color: var(--gold-bright);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  opacity: 0.85;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 8vw, 5.4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #ede8e0;
}
.hero-title::before {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  border-radius: 2px;
  margin-bottom: 1.2rem;
}
.hero-sub {
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 3vw, 1.65rem);
  margin-top: 1.1rem;
  color: rgba(237, 232, 224, 0.78);
  min-height: 2.2em;
}
.typed { color: var(--gold-bright); font-weight: 600; }
.cursor {
  color: var(--gold-bright);
  animation: blink 0.9s steps(1) infinite;
  font-weight: 400;
}
@keyframes blink { 50% { opacity: 0; } }
.hero-tag {
  margin-top: 1.5rem;
  color: rgba(237, 232, 224, 0.6);
  font-size: 1.06rem;
}
.hero-tag em { color: var(--gold-bright); font-family: var(--font-poem); }

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 2.2rem;
}

/* Hero stat strip — promoted up from the AI section for instant credibility.
   Slim inline numbers on the dark hero, not the boxed cards used on light bg. */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 1.5rem 2.2rem;
  margin-top: 2.8rem;
  justify-content: start;
}
.hero-stat { display: flex; flex-direction: column; gap: 0.15rem; }
.hero-stats .stat-num {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
  background: none;
  -webkit-text-fill-color: var(--gold-bright);
  color: var(--gold-bright);
}
.hero-stats .stat-label {
  color: rgba(237, 232, 224, 0.68);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}

.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-bright), var(--gold-deep));
  box-shadow: 0 6px 24px rgba(247, 153, 30, 0.45);
}
.btn-gold:hover { box-shadow: 0 10px 32px rgba(247, 153, 30, 0.55); filter: brightness(1.05); }
.btn-ghost {
  color: #ede8e0;
  border: 2px solid rgba(237, 232, 224, 0.4);
  background: rgba(255, 255, 255, 0.07);
}
.btn-ghost:hover { border-color: var(--gold-bright); color: var(--gold-bright); background: rgba(242, 164, 28, 0.08); }
.btn-lg { font-size: 1.15rem; padding: 1rem 2.4rem; }

.scroll-hint {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 26px; height: 42px;
  border: 2px solid rgba(240, 236, 228, 0.3);
  border-radius: 14px;
}
.scroll-hint span {
  position: absolute;
  top: 7px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  border-radius: 2px;
  background: var(--gold-bright);
  animation: drop 1.8s ease-in-out infinite;
}
@keyframes drop {
  0%   { transform: translateY(0); opacity: 1; }
  70%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ===== Sections ===== */
.section { padding: 6.5rem 0; }
.section-alt {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section-kicker {
  color: var(--green);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 5vw, 2.9rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 2.6rem;
  color: #1b2a38;
}
.section-title::after {
  content: "";
  display: block;
  width: 72px; height: 4px;
  margin-top: 0.9rem;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--green));
}

/* ===== AI section ===== */
.ai-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.ai-copy p { margin-bottom: 1.1rem; color: var(--ink-soft); }
.ai-copy .lead {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.45;
}
.ai-copy strong { color: var(--amber); font-weight: 600; }
.ai-copy em { color: var(--ink); }

/* Terminal stays dark — terminals are supposed to be. */
.terminal {
  background: #11202c;
  border: 1px solid rgba(27, 42, 56, 0.5);
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(37, 49, 61, 0.3);
  overflow: hidden;
  font-size: 0.92rem;
  position: sticky;
  top: 96px;
}
.terminal-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #1a2c3b;
  padding: 0.6rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot-r { background: #ff5f57; } .dot-y { background: #febc2e; } .dot-g { background: #28c840; }
.terminal-title {
  margin-left: 8px;
  color: #8fa3b3;
  font-family: Consolas, Menlo, monospace;
  font-size: 0.78rem;
}
.terminal-body {
  font-family: Consolas, Menlo, monospace;
  padding: 1.1rem 1.2rem 1.4rem;
  min-height: 285px;
  line-height: 1.85;
  color: #b9c8d4;
  white-space: pre-wrap;
  word-break: break-word;
}
.terminal-body .t-prompt { color: #4cc471; }
.terminal-body .t-cmd    { color: #f1f5f8; }
.terminal-body .t-ok     { color: #4cc471; }
.terminal-body .t-gold   { color: var(--gold-bright); }
.terminal-body .t-dim    { color: #64798a; }
.terminal-body .t-caret {
  display: inline-block;
  width: 8px; height: 1.05em;
  vertical-align: text-bottom;
  background: var(--gold-bright);
  animation: blink 0.9s steps(1) infinite;
}

/* ===== Stats ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 3.5rem;
}
.stat {
  text-align: center;
  padding: 1.6rem 1rem;
  border: 1px solid var(--line-gold);
  border-radius: 14px;
  background: var(--paper);
  box-shadow: 0 4px 18px rgba(37, 49, 61, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(37, 49, 61, 0.12); }
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-deep), var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label { color: var(--ink-soft); font-size: 0.9rem; }

/* ===== Cards ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.9rem 1.7rem;
  box-shadow: 0 4px 18px rgba(37, 49, 61, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--green));
  opacity: 0;
  transition: opacity 0.35s ease;
}
.card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 40px rgba(37, 49, 61, 0.16);
}
.card:hover::before { opacity: 1; }
.card-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.card h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  margin-bottom: 0.2rem;
  color: #1b2a38;
}
.card-sub {
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
}
.card p:not(.card-sub) { color: var(--ink-soft); font-size: 0.96rem; }
.card strong { color: var(--amber); font-weight: 600; }
.card-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.1rem;
}
.card-tags li {
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--green-deep);
  border: 1px solid rgba(47, 146, 73, 0.35);
  background: rgba(47, 146, 73, 0.07);
  padding: 0.18rem 0.65rem;
  border-radius: 999px;
}

/* ===== Timeline ===== */
.timeline {
  position: relative;
  margin-left: 0.4rem;
  padding-left: 2.2rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0; top: 6px; bottom: 6px;
  width: 3px;
  background: linear-gradient(180deg, var(--green), var(--gold), var(--gold-deep));
  border-radius: 2px;
}
.tl-item { position: relative; padding-bottom: 2.6rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: "";
  position: absolute;
  left: -2.2rem;
  top: 8px;
  width: 13px; height: 13px;
  margin-left: -5px;
  border-radius: 50%;
  background: var(--cream);
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(242, 164, 28, 0.18);
}
.tl-now::before {
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(242, 164, 28, 0.45); }
  50%      { box-shadow: 0 0 0 10px rgba(242, 164, 28, 0); }
}
.tl-date {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}
.tl-item h3 {
  font-family: var(--font-head);
  font-size: 1.18rem;
  margin: 0.25rem 0 0.4rem;
  color: #1b2a38;
}
.tl-item p { color: var(--ink-soft); font-size: 0.97rem; max-width: 760px; }
.tl-now h3 { color: var(--amber); }

/* ===== Skills ===== */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.skill-group {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.6rem 1.7rem;
  box-shadow: 0 4px 18px rgba(37, 49, 61, 0.05);
}
.skill-group h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--amber);
  margin-bottom: 1rem;
}
.chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.chips li {
  font-size: 0.88rem;
  color: var(--ink);
  background: rgba(47, 146, 73, 0.07);
  border: 1px solid rgba(47, 146, 73, 0.28);
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.chips li:hover {
  border-color: var(--gold);
  background: rgba(242, 164, 28, 0.12);
  transform: translateY(-2px);
}
.skills-note {
  margin-top: 2.2rem;
  color: var(--ink-soft);
  font-style: italic;
  text-align: center;
}

/* ===== Beyond the Code ===== */
.beyond-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.beyond-copy {
  font-family: var(--font-poem);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink);
  line-height: 1.7;
}
.beyond-books {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.mini-book {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  box-shadow: 0 3px 14px rgba(37, 49, 61, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mini-book:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(37, 49, 61, 0.13);
}
.mini-cover {
  flex: 0 0 42px;
  height: 60px;
  border-radius: 3px 5px 5px 3px;
  box-shadow: -2px 0 0 rgba(0, 0, 0, 0.25) inset, 0 4px 10px rgba(37, 49, 61, 0.25);
}
.mini-cover-grace { background: linear-gradient(160deg, #1d5c30, #2f9249 55%, #1a4427); }
.mini-cover-hack  { background: linear-gradient(160deg, #4a3208, #b06d0a 60%, #2a2118); }
.mini-info { display: flex; flex-direction: column; line-height: 1.35; }
.mini-info strong { font-family: var(--font-head); font-size: 0.98rem; color: #1b2a38; }
.mini-info span { font-size: 0.82rem; color: var(--ink-soft); }
.mini-book:hover .mini-info strong { color: var(--green-deep); }
.beyond-more {
  margin-top: 0.2rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px dotted var(--ink-soft);
  align-self: flex-start;
}
.beyond-more:hover { color: var(--amber); border-color: var(--amber); }

/* ===== Contact ===== */
.section-contact {
  background:
    radial-gradient(ellipse 70% 60% at 50% 115%,
      rgba(255, 194, 61, 0.45), rgba(255, 224, 138, 0.18) 50%, transparent 75%),
    var(--sand);
  border-top: 1px solid var(--line);
  text-align: center;
}
.contact-inner .section-title::after { margin-left: auto; margin-right: auto; }
.contact-lead {
  color: var(--ink-soft);
  max-width: 560px;
  margin: -1rem auto 2.4rem;
}
.contact-actions { margin-bottom: 2.4rem; }
.contact-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.2rem;
}
.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease, transform 0.25s ease;
}
.contact-links a:hover { color: var(--green-deep); transform: translateY(-2px); }

/* ===== Footer — dark green, reversed logo per brand guide ===== */
.footer {
  text-align: center;
  padding: 3.2rem 1.5rem 2.6rem;
  background: var(--green-deep);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}
.footer img { height: 44px; width: auto; margin-bottom: 1.1rem; }
.footer-tag { margin-top: 0.4rem; font-style: italic; opacity: 0.7; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .ai-grid { grid-template-columns: 1fr; }
  .terminal { position: static; }
  .cards { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .skills-grid { grid-template-columns: 1fr; }
  .beyond-grid { grid-template-columns: 1fr; }
  .hero { flex-direction: column; align-items: center; }
  .hero-visual { order: -1; padding: 4.5rem 0 0; }
  .headshot-ring { width: 160px; height: 160px; }
  .hero-content { text-align: center; padding: 1.5rem 1.5rem 4rem; }
  .hero-logo { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { grid-template-columns: repeat(2, auto); justify-content: center; gap: 1.6rem 2.6rem; }
  .hero-stat { align-items: center; }
  .hero-title::before { margin-left: auto; margin-right: auto; }
}

@media (max-width: 760px) {
  .nav { padding: 0.8rem 1.2rem; }
  .nav-toggle { display: flex; z-index: 110; }
  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: rgba(250, 246, 237, 0.98);
    transform: translateY(-100%);
    transition: transform 0.4s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 1.25rem; color: var(--ink); }
  .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); }
  .section { padding: 4.5rem 0; }
  .hero-visual { padding: 5rem 0 0; }
  .headshot-ring { width: 130px; height: 130px; }
  .hero-content { text-align: center; padding: 1.5rem 1.5rem 3rem; }
  .hero-actions { justify-content: center; }
  .hero-title::before { margin-left: auto; margin-right: auto; }
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
