/* ============================================================
   FONTS
   ============================================================ */
@font-face {
  font-family: 'Poppins';
  src: url('fonts/poppins-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonts/poppins-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonts/poppins-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lora';
  src: url('fonts/lora-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lora';
  src: url('fonts/lora-400i.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Colors */
  --bg: #1A1714;
  --surface: #2A2520;
  --card-fill: rgba(42, 37, 32, 0.85);
  --card-border: rgba(217, 119, 87, 0.15);
  --accent: #D97757;
  --accent-hover: #E8956A;
  --text-heading: #F5F0EB;
  --text-body: #B8AFA6;
  --text-subtle: #7A726A;

  /* Typography */
  --font-heading: 'Poppins', system-ui, -apple-system, sans-serif;
  --font-body: 'Lora', Georgia, 'Times New Roman', serif;
  --font-mono: ui-monospace, 'Cascadia Code', 'Source Code Pro', monospace;

  /* Sizing */
  --size-hero: clamp(2.5rem, 6vw, 5rem);
  --size-h2: clamp(1.75rem, 3.5vw, 2.75rem);
  --size-h3: clamp(1.15rem, 1.8vw, 1.4rem);
  --size-body: clamp(1rem, 1.2vw, 1.125rem);
  --size-small: clamp(0.8rem, 1vw, 0.875rem);
  --size-label: clamp(0.7rem, 0.9vw, 0.8rem);

  /* Spacing */
  --space-section: clamp(4rem, 8vh, 7rem);
  --space-lg: 3rem;
  --space-md: 1.5rem;
  --space-sm: 0.75rem;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 0.6s;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--size-body);
  line-height: 1.7;
  color: var(--text-body);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s var(--ease-out);
}
a:hover {
  color: var(--accent-hover);
}

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

/* ============================================================
   SKIP LINK
   ============================================================ */
.skip-link {
  position: fixed;
  top: -100%;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--size-small);
  border-radius: 0 0 8px 8px;
  transition: top 0.3s var(--ease-out);
}
.skip-link:focus {
  top: 0;
  outline: none;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.section {
  padding: var(--space-section) 0;
  position: relative;
}

.section--elevated {
  background-color: var(--surface);
}

/* ============================================================
   NOISE OVERLAY
   ============================================================ */
.noise-overlay {
  position: absolute;
  inset: 0;
  background-image: url('noise.png');
  background-repeat: repeat;
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.section__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--size-h2);
  color: var(--text-heading);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: var(--bg);
  padding-bottom: 6vh;
}

.hero__blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
  will-change: transform;
}

.hero__blob--1 {
  width: 500px;
  height: 500px;
  background: var(--accent);
  top: -10%;
  left: -5%;
  animation: blob1 20s ease-in-out infinite;
}

.hero__blob--2 {
  width: 400px;
  height: 400px;
  background: #C46A4E;
  bottom: -10%;
  right: -5%;
  animation: blob2 25s ease-in-out infinite;
}

.hero__blob--3 {
  width: 300px;
  height: 300px;
  background: #E8956A;
  top: 25%;
  right: 15%;
  left: auto;
  transform: none;
  animation: blob3 22s ease-in-out infinite;
}

@keyframes blob1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, 40px) scale(1.1); }
  66% { transform: translate(-30px, 60px) scale(0.95); }
}

@keyframes blob2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-50px, -30px) scale(1.15); }
  66% { transform: translate(40px, -50px) scale(0.9); }
}

@keyframes blob3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-30px, 40px) scale(1.2); }
  66% { transform: translate(20px, -30px) scale(0.85); }
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, transparent 0%, rgba(26, 23, 20, 0.4) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.hero__kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  opacity: 0.85;
  padding: 0.35em 0.9em;
  background: rgba(217, 119, 87, 0.08);
  border: none;
  border-radius: 100px;
  margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
}

.hero__name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.75rem, 6vw, 5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: clamp(0.625rem, 1.25vw, 1rem);
  background: linear-gradient(120deg, var(--text-heading) 0%, var(--text-heading) 50%, #E2A88C 75%, var(--accent-hover) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--text-heading);
}

.hero__tagline {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-style: italic;
  color: #C8BFB6;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}

.hero__scroll-cta {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--text-subtle);
  transition: color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  animation: bounce 2.5s ease-in-out infinite;
}
.hero__scroll-cta:hover {
  color: var(--accent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Hero entrance stagger */
.hero__kicker,
.hero__name,
.hero__tagline {
  opacity: 0;
  animation: heroFadeUp 0.55s var(--ease-out) forwards;
}

.hero__kicker  { animation-delay: 0.15s; }
.hero__name    { animation-delay: 0.35s; }
.hero__tagline { animation-delay: 0.55s; }

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   DOT NAVIGATION
   ============================================================ */
.dot-nav {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
}

.dot-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dot-nav__dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  position: relative;
}

.dot-nav__indicator {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-subtle);
  transition: background 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.dot-nav__dot.active .dot-nav__indicator,
.dot-nav__dot:hover .dot-nav__indicator {
  background: var(--accent);
  transform: scale(1.3);
}

/* Tooltip */
.dot-nav__dot::before {
  content: attr(data-tooltip);
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.35rem 0.75rem;
  background: var(--surface);
  color: var(--text-heading);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  border-radius: 6px;
  border: 1px solid var(--card-border);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out);
  margin-right: 0.5rem;
}

.dot-nav__dot:hover::before {
  opacity: 1;
}

/* ============================================================
   SCROLL TO TOP (mobile)
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--card-border);
  background: var(--card-fill);
  color: var(--text-heading);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.scroll-top:hover {
  border-color: var(--accent);
  background: var(--surface);
}

/* ============================================================
   WHY AMBASSADOR
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.why-card {
  background: var(--card-fill);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: transform 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 119, 87, 0.35);
}

.why-card__icon {
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.why-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--size-h3);
  color: var(--text-heading);
  margin-bottom: var(--space-sm);
}

.why-card__text {
  color: var(--text-body);
  line-height: 1.7;
}

.why-quote {
  border-left: 3px solid var(--accent);
  padding: var(--space-md) var(--space-md);
  margin-top: var(--space-md);
  background: var(--card-fill);
  border-radius: 0 12px 12px 0;
}
.why-quote p {
  font-style: italic;
  color: var(--text-heading);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.8;
}

/* ============================================================
   STATS GRID
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.stat {
  padding: var(--space-md);
}

.stat__number {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--accent);
  line-height: 1.2;
}

.stat__label {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--size-small);
  font-weight: 400;
  color: var(--text-subtle);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--card-border);
}

.timeline__item {
  position: relative;
  padding-bottom: var(--space-lg);
}
.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__dot {
  position: absolute;
  left: -2rem;
  top: 0.35rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid var(--accent);
  z-index: 1;
}

.timeline__content {
  padding-left: 0.5rem;
}

.timeline__date {
  font-family: var(--font-mono);
  font-size: var(--size-label);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.timeline__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--size-h3);
  color: var(--text-heading);
  margin: 0.25rem 0 0.5rem;
}

.timeline__text {
  color: var(--text-body);
  line-height: 1.7;
}

.timeline__photos {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.timeline__photos--single .timeline__photo {
  max-width: 420px;
}

.timeline__photos--pair .timeline__photo {
  flex: 1 1 0;
  min-width: 0;
  max-width: 280px;
}

.timeline__photo {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  background: var(--card-fill);
}

.timeline__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 2;
  display: block;
  transition: transform 0.5s var(--ease-out);
}

.timeline__photos--pair .timeline__photo img {
  aspect-ratio: 4 / 5;
}

.timeline__photo:hover img {
  transform: scale(1.04);
}

/* ============================================================
   PROJECTS SHOWCASE
   ============================================================ */
.projects-showcase {
  display: flex;
  flex-direction: column;
  gap: clamp(5rem, 10vh, 8rem);
}

.project-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.project-row--reversed {
  grid-template-columns: 0.8fr 1.2fr;
}
.project-row--reversed .project-row__phone {
  order: -1;
}

/* Text content */
.project-row__badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--size-label);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  padding: 0.3em 0.8em;
  background: rgba(217, 119, 87, 0.1);
  border-radius: 100px;
  margin-bottom: var(--space-sm);
}

.project-row__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--text-heading);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.project-row__desc {
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.project-row__insight {
  font-style: italic;
  color: var(--text-subtle);
  font-size: var(--size-small);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.project-row__link {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--size-small);
  color: var(--accent);
  transition: color 0.3s var(--ease-out);
}
.project-row__link:hover {
  color: var(--accent-hover);
}
.project-row__link:hover .project-row__arrow {
  transform: translateX(4px);
}

/* iPhone mockup */
.project-row__phone {
  display: flex;
  justify-content: center;
}

.project-row__device {
  width: clamp(220px, 22vw, 280px);
  padding: 12px 10px;
  background: #252220;
  border-radius: 44px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.project-row__device:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 28px 70px rgba(0, 0, 0, 0.55),
    0 12px 28px rgba(0, 0, 0, 0.35);
}

.project-row__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 32px;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-layout {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.about-photo {
  flex-shrink: 0;
}

.about-photo img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(217, 119, 87, 0.3);
}

.about-text p {
  margin-bottom: var(--space-md);
  line-height: 1.8;
}
.about-text p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   PLAN CARDS
   ============================================================ */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: var(--space-md);
  row-gap: 0;
}

.plan-card {
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
  row-gap: var(--space-sm);
  background: var(--card-fill);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  align-content: start;
  transition: transform 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
}
.plan-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 119, 87, 0.35);
}

/* Fallback for browsers without subgrid */
@supports not (grid-template-rows: subgrid) {
  .plan-card {
    display: flex;
    flex-direction: column;
  }
  .plan-card__title {
    min-height: 2.8em;
  }
  .plan-card__meta {
    min-height: 2.4em;
  }
}

.plan-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--size-h3);
  color: var(--text-heading);
}

.plan-card__meta {
  font-family: var(--font-mono);
  font-size: var(--size-label);
  color: var(--accent);
  letter-spacing: 0.05em;
}

.plan-card__text {
  color: var(--text-body);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .plan-grid {
    grid-template-columns: 1fr;
    row-gap: var(--space-md);
  }
  .plan-card {
    grid-row: auto;
    grid-template-rows: auto;
  }
}

/* ============================================================
   CLOSING
   ============================================================ */
.section--closing {
  text-align: center;
  padding-bottom: var(--space-md);
}

.closing__statement {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: var(--text-heading);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto var(--space-lg);
}

.closing__meta {
  max-width: 500px;
  margin: 0 auto;
}

.closing__build-note {
  font-family: var(--font-mono);
  font-size: var(--size-small);
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.closing__repo {
  font-size: var(--size-small);
  color: var(--text-subtle);
}
.closing__repo a {
  color: var(--text-subtle);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.closing__repo a:hover {
  color: var(--accent);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: var(--space-md) 0;
  text-align: center;
  font-size: var(--size-small);
  color: var(--text-subtle);
  border-top: 1px solid var(--card-border);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration) var(--ease-out),
              transform var(--duration) var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 768px) {
  .dot-nav {
    display: none;
  }

  .scroll-top {
    display: flex;
  }
  .scroll-top[hidden] {
    display: none;
  }

  .about-layout {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-photo img {
    width: 180px;
    height: 180px;
  }

  .hero__blob--1 {
    width: 300px;
    height: 300px;
  }
  .hero__blob--2 {
    width: 250px;
    height: 250px;
  }
  .hero__blob--3 {
    width: 200px;
    height: 200px;
  }

  /* Projects: stack to single column on mobile */
  .project-row {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .project-row--reversed {
    grid-template-columns: 1fr;
  }
  .project-row__phone {
    order: -1;
  }
  .project-row__device {
    max-width: 220px;
  }
  .project-row__text {
    text-align: center;
  }
  .project-row__badge {
    margin-left: auto;
    margin-right: auto;
  }
  .projects-showcase {
    gap: clamp(3rem, 6vh, 5rem);
  }

  .timeline__photos--pair {
    flex-direction: column;
  }
  .timeline__photos--pair .timeline__photo,
  .timeline__photos--single .timeline__photo {
    max-width: 100%;
  }
}

/* Small mobile */
@media (max-width: 375px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-quote {
    padding: var(--space-sm) var(--space-sm);
  }
}

/* Large desktop */
@media (min-width: 1440px) {
  .container {
    max-width: 1200px;
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero__kicker,
  .hero__name,
  .hero__tagline {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero__blob {
    animation: none;
  }

  .hero__scroll-cta {
    animation: none;
  }

  .project-row__device:hover {
    transform: none;
  }

  .timeline__photo:hover img {
    transform: none;
  }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  :root {
    --bg: #fff;
    --surface: #f5f5f5;
    --card-fill: #fff;
    --card-border: #ddd;
    --accent: #B85C3C;
    --text-heading: #111;
    --text-body: #333;
    --text-subtle: #666;
  }

  body {
    background: #fff;
    color: #333;
    font-size: 11pt;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
  }

  .hero__blobs,
  .noise-overlay,
  .dot-nav,
  .scroll-top,
  .hero__scroll-cta {
    display: none !important;
  }

  .hero__name {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: currentColor;
    color: var(--text-heading);
  }

  .hero__kicker {
    color: #333;
    background: none;
  }

  .hero__kicker,
  .hero__name,
  .hero__tagline {
    opacity: 1;
    animation: none;
  }

  .section {
    padding: 1.5rem 0;
    break-inside: avoid;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .project-row__phone {
    display: none;
  }

  .project-row {
    grid-template-columns: 1fr;
  }

  .why-card,
  .plan-card {
    border: 1px solid #ddd;
    break-inside: avoid;
  }

  .project-row {
    break-inside: avoid;
  }

  .timeline__photos {
    display: none;
  }

  a::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #666;
  }

  .dot-nav__dot::after,
  .hero__scroll-cta::after,
  .scroll-top::after,
  .skip-link::after {
    content: none;
  }
}
