*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --sand:      #F5F1EA;
  --olive:     #3F4A3C;
  --clay:      #C46A3C;
  --soft-sand: #E8D8C3;
  --charcoal:  #2B2B2B;
  --gold:      #B89B5E;
  --off-white: #FAF8F4;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;
  --max-w: 1160px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--sand);
  color: var(--charcoal);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

html, body {
  width: 100%;
  max-width: 100%;
}

::selection { background: var(--clay); color: var(--sand); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ─── REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}
nav.scrolled {
  background: rgba(245, 241, 234, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(43,43,43,0.06);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.nav-links a:hover { opacity: 1; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  justify-self: end;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  nav {
    padding: 1rem 1.1rem;
    grid-template-columns: 1fr auto;
    gap: 1rem;
  }
  .nav-logo {
    font-size: 1.05rem;
  }
  .nav-links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(300px, 84vw);
    background: var(--sand);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 4.5rem 1.75rem 2.5rem;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.08);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1rem; opacity: 1; }
  .nav-hamburger { display: flex; z-index: 101; }
}

/* ─── HERO ─── */
#hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: end;
}

/* Botanical parallax layers */
.botanical-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  will-change: transform;
}
.botanical-layer svg {
  position: absolute;
  overflow: visible;
}
/* Layer depths */
.b-far   { z-index: 1; opacity: 0.08; }  /* furthest — barely visible, moves least */
.b-mid   { z-index: 1; opacity: 0.12; }  /* mid depth */
.b-close { z-index: 1; opacity: 0.18; }  /* closest — more visible, moves most */

/* Parallax background — extends beyond bounds so it can shift */
.hero-bg {
  position: absolute;
  top: -20%; left: -5%; right: -5%; bottom: -20%;
  background: var(--off-white);
  will-change: transform;
  z-index: 0;
}
@keyframes gradientShift {
  0%   { background-position: 0% 60%; }
  50%  { background-position: 100% 40%; }
  100% { background-position: 0% 60%; }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 8rem 2.5rem 4rem;
  display: grid;
  grid-template-columns: clamp(140px, 18vw, 220px) 1fr;
  gap: 2.5rem;
  align-items: end;
}

.hero-name {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}
.hero-name em {
  font-style: italic;
  color: var(--clay);
}

.hero-tagline {
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  font-weight: 300;
  color: var(--charcoal);
  opacity: 0.65;
  max-width: 44ch;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--charcoal);
  color: var(--sand);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid var(--charcoal);
  cursor: pointer;
  transition: background 0.35s ease, border-color 0.35s ease;
}
.btn-light:hover {
  background: var(--clay);
  border-color: var(--clay);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--charcoal);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid rgba(43,43,43,0.35);
  cursor: pointer;
  transition: border-color 0.35s ease;
}
.btn-ghost:hover { border-color: var(--charcoal); }

/* Contained portrait photo rectangle */
.hero-photo-rect {
  width: clamp(140px, 18vw, 220px);
  height: clamp(190px, 24vw, 300px);
  overflow: hidden;
  position: relative;
  box-shadow: 0 28px 70px rgba(43,43,43,0.18);
  flex-shrink: 0;
}
.hero-photo-rect::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 260 360'%3E%3Cg fill='none' stroke='%233F4A3C' stroke-width='1.1' stroke-opacity='0.28' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M130 360C129 300 125 240 116 184C107 128 90 72 58 8'/%3E%3Cpath d='M130 360C132 302 138 246 148 192C158 136 176 76 202 10'/%3E%3Cpath d='M126 210C109 194 104 170 110 150C116 130 131 134 140 148C149 162 148 188 126 210Z'/%3E%3Cpath d='M146 176C132 162 128 142 133 126C138 110 150 114 157 125C164 136 164 156 146 176Z'/%3E%3Cpath d='M104 246C89 232 85 212 90 196C95 180 108 184 115 195C122 206 122 226 104 246Z'/%3E%3Cpath d='M159 120C146 106 143 88 148 74C153 60 165 63 171 73C177 83 176 102 159 120Z'/%3E%3Cpath d='M183 92C172 80 169 64 173 52C177 40 188 42 193 51C198 60 197 76 183 92Z'/%3E%3Cpath d='M71 104C58 92 55 74 60 60C65 46 77 49 83 59C89 69 88 88 71 104Z'/%3E%3Cpath d='M94 136C80 124 76 106 81 92C86 78 99 81 105 91C111 101 110 120 94 136Z'/%3E%3Cpath d='M57 176C45 165 41 149 45 137C49 125 60 127 65 136C70 145 69 160 57 176Z'/%3E%3Cpath d='M190 244C176 231 172 213 177 199C182 185 195 188 201 198C207 208 206 227 190 244Z'/%3E%3Cpath d='M213 198C200 186 196 169 201 155C206 141 218 144 224 154C230 164 229 183 213 198Z'/%3E%3Cpath d='M163 272C151 260 147 244 151 232C155 220 166 222 171 231C176 240 175 255 163 272Z'/%3E%3C/g%3E%3C/svg%3E") center top / 100% 72% no-repeat;
  opacity: 0.82;
  z-index: 0;
  transform: translateY(-2%);
  pointer-events: none;
}
.hero-photo-rect img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  will-change: transform;
  z-index: 1;
  background: transparent;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(43,43,43,0.4);
  animation: scrollPulse 2.5s ease-in-out infinite;
}
.hero-scroll span {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: currentColor;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: translateY(0); }
  50% { opacity: 0.7; transform: translateY(5px); }
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: end;
    padding-bottom: 5rem;
  }
  .hero-photo-rect {
    width: clamp(120px, 40vw, 200px);
    height: clamp(160px, 54vw, 270px);
    order: -1;
  }
}

@media (max-width: 768px) {
  #hero {
    min-height: 100svh;
    align-items: center;
  }
  .hero-content {
    padding: 6.5rem 1.1rem 4.25rem;
    gap: 1.25rem;
  }
  .hero-name {
    font-size: clamp(2.8rem, 16vw, 4.8rem);
    margin-bottom: 1rem;
  }
  .hero-tagline {
    max-width: 34ch;
    font-size: 0.98rem;
    margin-bottom: 1.25rem;
  }
  .hero-photo-rect {
    width: clamp(126px, 42vw, 180px);
    height: clamp(170px, 58vw, 240px);
  }
  .hero-scroll {
    right: 1rem;
    bottom: 1.25rem;
    opacity: 0.55;
  }
}

@media (max-width: 540px) {
  .hero-scroll {
    display: none;
  }
  .b-close {
    display: none;
  }
  .b-mid svg {
    transform: scale(0.82);
    transform-origin: center;
  }
  .hero-photo-rect::before {
    opacity: 0.8;
    background-size: 100% 68%;
  }
}

/* ─── INTRO ─── */
#intro {
  background: var(--off-white);
  padding: clamp(5rem, 10vw, 8rem) 2.5rem;
}
.intro-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: center;
}
.intro-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.4;
  display: block;
  margin-bottom: 1.5rem;
}
.intro-heading {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.intro-heading em {
  font-style: italic;
  color: var(--clay);
}
.intro-divider {
  width: 40px;
  height: 1.5px;
  background: var(--gold);
  margin: 2rem 0;
}
.intro-body {
  font-size: clamp(1rem, 1.7vw, 1.1rem);
  line-height: 1.85;
  opacity: 0.72;
}
.intro-body p + p { margin-top: 1.25rem; }

.intro-values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2.5rem;
}
.intro-values span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(43,43,43,0.15);
  color: var(--charcoal);
  opacity: 0.65;
}

@media (max-width: 900px) {
  .intro-inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  #intro,
  #work,
  #sprint,
  #contact {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }
  .intro-heading {
    font-size: clamp(2rem, 10vw, 3rem);
  }
  .intro-body {
    font-size: 0.98rem;
  }
  .intro-values {
    gap: 0.5rem;
  }
  .intro-values span {
    font-size: 0.68rem;
    padding: 0.38rem 0.85rem;
  }
}

/* ─── WORK ─── */
#work {
  background: var(--sand);
  padding: clamp(5rem, 10vw, 8rem) 2.5rem;
}
.work-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.work-header {
  margin-bottom: 4rem;
}
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.4;
  display: block;
  margin-bottom: 1.25rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--clay); }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.project-card {
  background: var(--off-white);
  padding: 3rem 2.8rem;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
  cursor: pointer;
}
.project-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--clay);
  transition: width 0.45s ease;
}
.project-card:hover { background: var(--charcoal); }
.project-card:hover::after { width: 100%; }
.project-card:hover .project-num { color: rgba(245,241,234,0.2); }
.project-card:hover .project-name { color: var(--sand); }
.project-card:hover .project-desc { color: rgba(245,241,234,0.55); }
.project-card:hover .project-tag { background: rgba(245,241,234,0.07); color: rgba(245,241,234,0.45); }
.project-card:hover .project-arrow { opacity: 1; color: var(--gold); }

.project-num {
  font-family: var(--serif);
  font-size: 0.82rem;
  color: rgba(43,43,43,0.22);
  margin-bottom: 1.25rem;
  transition: color 0.4s ease;
}
.project-name {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1rem;
  transition: color 0.4s ease;
}
.project-desc {
  font-size: 0.9rem;
  line-height: 1.72;
  opacity: 0.6;
  margin-bottom: 2rem;
  max-width: 42ch;
  transition: color 0.4s ease;
}
.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 2rem;
}
.project-tag {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.8rem;
  background: rgba(43,43,43,0.06);
  color: rgba(43,43,43,0.5);
  transition: all 0.4s ease;
}
.project-arrow {
  font-size: 1.1rem;
  opacity: 0.18;
  transition: opacity 0.4s ease, color 0.4s ease;
}

@media (max-width: 768px) {
  .projects-grid { grid-template-columns: 1fr; }
  .project-card {
    padding: 2rem 1.4rem;
  }
  .project-desc {
    max-width: none;
  }
}

/* ─── SPRINT ─── */
#sprint {
  background: var(--olive);
  color: var(--sand);
  padding: clamp(5rem, 10vw, 9rem) 2.5rem;
  position: relative;
  overflow: hidden;
}

/* subtle grain texture */
#sprint::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  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.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.sprint-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.sprint-quote {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4.5vw, 3.6rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--soft-sand);
  max-width: 22ch;
  margin-bottom: 5rem;
}

.sprint-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.sprint-left .sprint-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.4;
  display: block;
  margin-bottom: 1.5rem;
  color: var(--sand);
}

.sprint-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.sprint-title em { font-style: italic; color: var(--gold); }

.sprint-divider {
  width: 40px;
  height: 1.5px;
  background: var(--gold);
  margin-bottom: 2rem;
  opacity: 0.6;
}

.sprint-body {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.85;
  opacity: 0.65;
}
.sprint-body p + p { margin-top: 1.2rem; }

.sprint-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
  padding: 0.9rem 2.2rem;
  background: transparent;
  color: var(--sand);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid rgba(245,241,234,0.4);
  cursor: pointer;
  transition: border-color 0.35s ease, background 0.35s ease;
}
.sprint-cta:hover {
  border-color: var(--gold);
  background: rgba(184,155,94,0.1);
}

.sprint-deliverables {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sprint-item {
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(245,241,234,0.08);
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1.25rem;
  align-items: start;
  transition: padding-left 0.35s ease;
}
.sprint-item:first-child { border-top: 1px solid rgba(245,241,234,0.08); }
.sprint-item:hover { padding-left: 0.5rem; }

.sprint-item-num {
  font-family: var(--serif);
  font-size: 0.85rem;
  color: var(--gold);
  opacity: 0.6;
  padding-top: 0.1rem;
}

.sprint-item-name {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 0.4rem;
}

.sprint-item-desc {
  font-size: 0.85rem;
  opacity: 0.5;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .sprint-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .sprint-quote { margin-bottom: 3.5rem; }
}

@media (max-width: 768px) {
  .sprint-quote {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
    max-width: none;
    margin-bottom: 2.5rem;
  }
  .sprint-grid {
    gap: 2.5rem;
  }
  .sprint-item {
    grid-template-columns: 1.6rem 1fr;
    gap: 0.9rem;
    padding: 1.35rem 0;
  }
  .sprint-item-desc {
    font-size: 0.9rem;
  }
  .sprint-cta {
    width: 100%;
    justify-content: center;
  }
}

/* ─── CONTACT ─── */
#contact {
  background: var(--charcoal);
  color: var(--sand);
  padding: clamp(5rem, 10vw, 9rem) 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* warm radial glow */
#contact::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(196,106,60,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.contact-inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}
.contact-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.4;
  display: block;
  margin-bottom: 1.5rem;
}
.contact-heading {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.contact-heading em { font-style: italic; color: var(--gold); }
.contact-body {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  opacity: 0.6;
  line-height: 1.75;
  margin-bottom: 3rem;
}
.contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.5rem;
  background: var(--clay);
  color: var(--sand);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.35s ease;
}
.contact-cta:hover { background: var(--gold); }
.contact-cta--ghost {
  background: transparent;
  color: inherit;
  border: 1px solid currentColor;
  opacity: 0.6;
  text-transform: none;
  letter-spacing: 0.04em;
}
.contact-cta--ghost:hover {
  background: transparent;
  opacity: 1;
  border-color: var(--gold);
  color: var(--gold);
}
.contact-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .contact-body {
    font-size: 0.98rem;
  }
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .contact-cta {
    width: 100%;
    justify-content: center;
  }
  .contact-links {
    gap: 1rem 1.25rem;
    margin-top: 2.5rem;
  }
  .contact-link {
    text-align: center;
  }
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 3.5rem;
  flex-wrap: wrap;
}
.contact-link {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}
.contact-link:hover { opacity: 0.9; }

/* ─── FOOTER ─── */
footer {
  background: #1e1e1e;
  color: var(--sand);
  padding: 2rem 2.5rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 300;
  opacity: 0.5;
}
.footer-copy {
  font-size: 0.72rem;
  opacity: 0.25;
  letter-spacing: 0.06em;
}

@media (max-width: 768px) {
  footer {
    padding: 1.5rem 1.1rem;
  }
  .footer-inner {
    align-items: flex-start;
  }
}

/* ─── ACCESSIBILITY ─── */
:focus-visible { outline: 2px solid var(--clay); outline-offset: 3px; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
