/* === Arielle Fuller : Speaker Site === */

:root {
  --cream: #F5EFE6;
  --cream-2: #EDE5D6;
  --ink: #1A1A1A;
  --ink-soft: #2B2826;
  --pop: #A42A04;                 /* rust red */
  --pop-deep: #7A1F03;
  --moss: oklch(0.55 0.13 145);   /* mossy green */
  --rule: rgba(26,26,26,0.18);
  --rule-strong: rgba(26,26,26,0.4);
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 36px;

  --serif: "Instrument Serif", "Times New Roman", serif;
  --sans: "Funnel Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--pop); color: var(--cream); }

a { color: inherit; }

.mono {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.serif { font-family: var(--serif); font-weight: 400; font-style: normal; }
.italic { font-style: italic; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* === Top bar === */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 32px;
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  background: var(--cream);
  z-index: 50;
  backdrop-filter: blur(6px);
}
.topbar .mark {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.topbar .mark .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--pop);
  display: inline-block;
}
.topbar nav {
  display: flex; gap: 28px;
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.topbar nav a { text-decoration: none; opacity: 0.75; transition: opacity .2s; }
.topbar nav a:hover { opacity: 1; }
.topbar {
  border-radius: 0 0 var(--r-md) var(--r-md);
}
.topbar .cta {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--cream);
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: transform .2s ease, background .2s;
}
.topbar .cta:hover { background: var(--pop-deep); transform: translateY(-1px); }

/* === Marquee === */
.marquee {
  border-bottom: 1px solid var(--rule);
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding: 12px 0;
  border-radius: var(--r-md);
  margin: 12px 16px 0;
}
.marquee-track {
  display: inline-flex;
  gap: 48px;
  white-space: nowrap;
  animation: scroll 38s linear infinite;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 48px; }
.marquee-track .star { color: var(--pop); }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* === Hero === */
.hero {
  padding: 60px 32px 80px;
  position: relative;
}
.hero-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero-feature {
  position: relative;
  align-self: stretch;
  display: flex;
}
.hero-feature-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  min-height: 520px;
  max-height: 720px;
  border-radius: var(--r-xl);
  background-size: cover;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.hero-eyebrow .pill {
  background: var(--ink); color: var(--cream);
  padding: 4px 10px; border-radius: 999px;
  flex-shrink: 0;
}
.hero-eyebrow .role {
  display: inline-flex; gap: 10px; align-items: center;
  line-height: 1.4;
}

.hero-headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 6.5vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0 0 32px;
}
.hero-headline .pop { color: var(--pop); font-style: italic; }
.hero-headline .underline {
  position: relative;
  display: inline-block;
}
.hero-headline .underline svg {
  position: absolute;
  left: 0; right: 0;
  bottom: -8px;
  width: 100%;
  height: 18px;
  pointer-events: none;
}

.hero-sub {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
  margin-top: 24px;
}
.hero-lede {
  font-family: var(--sans);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.35;
  max-width: 640px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.hero-lede em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--pop-deep); }

.hero-meta {
  border-left: 1px solid var(--rule-strong);
  padding-left: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hero-meta .label {
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.6;
}
.hero-meta .value {
  font-family: var(--sans); font-size: 18px; font-weight: 600;
}

/* Single-row "Available for" with chip list */
.hero-meta.single {
  display: block;
  border-left: 0;
  padding-left: 0;
}
.hero-meta.single .hero-meta-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-meta.single .label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.55;
}
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.offer-chip {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--rule-strong);
  background: var(--cream);
  color: var(--ink);
  white-space: nowrap;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.offer-chip:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  transform: translateY(-1px);
}
.offer-chip:nth-child(odd) {
  background: transparent;
}
.offer-chip:nth-child(odd):hover {
  background: var(--pop);
  color: var(--cream);
  border-color: var(--pop);
}

.hero-portrait {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.hero-portrait .photo {
  aspect-ratio: 9 / 16;
  background-size: cover;
  background-position: center top;
  min-height: 0;
  height: auto;
  border-radius: var(--r-lg);
}
.hero-portrait .photo.tall,
.hero-portrait .photo.short {
  aspect-ratio: 9 / 16;
  min-height: 0;
  border-radius: var(--r-lg);
}

/* === Photo === */
.photo {
  position: relative;
  background-color: var(--cream-2);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--rule);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  min-height: 320px;
  border-radius: var(--r-lg);
}
.photo.placeholder {
  background-image: repeating-linear-gradient(135deg, var(--cream-2) 0 14px, #E2D7C2 14px 15px);
}
.photo .photo-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--cream);
  padding: 6px 10px;
  border-radius: 4px;
  position: relative;
  z-index: 2;
}
.photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 40%);
  pointer-events: none;
}
.photo.no-tag::after { display: none; }
.photo.tall { min-height: 520px; }
.photo.short { min-height: 280px; }
.photo.tag-top { align-items: flex-start; }
.photo.tag-top::after { background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 40%); }
.photo.pop.placeholder {
  background-image: repeating-linear-gradient(135deg, var(--pop) 0 14px, #C13507 14px 15px);
}
.photo.dark.placeholder {
  background-image: repeating-linear-gradient(135deg, var(--ink) 0 14px, #2A2825 14px 15px);
  color: var(--cream);
}
.photo.dark.placeholder .photo-tag { background: var(--cream); color: var(--ink); }
.photo .photo-tag.light { background: var(--cream); color: var(--ink); }

/* === Section scaffolding === */
section { padding: 100px 32px; border-top: 1px solid var(--rule); }
section.tight { padding: 64px 32px; }
section.tight.pop { padding: 64px 32px; }
section.dark { background: var(--ink); color: var(--cream); border-top: none; border-radius: var(--r-xl); margin: 16px; padding: 100px 32px; }
section.soft { background: var(--ink-soft); color: var(--cream); border-top: none; border-radius: var(--r-xl); margin: 16px; padding: 100px 32px; }
section.soft .section-title .it { color: var(--pop); font-style: italic; }
section.soft .section-num .lab { opacity: 0.6; }
section.burgundy { background: var(--pop); color: var(--cream); border-top: none; border-radius: var(--r-xl); margin: 16px; padding: 100px 32px; }
section.burgundy .section-title .it { color: #FFE9D6; font-style: italic; }
section.burgundy .section-num .lab { opacity: 0.75; }
section.pop { background: var(--pop); color: var(--cream); border-top: none; border-radius: var(--r-xl); margin: 16px; padding: 100px 32px; }

.section-head {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  margin-bottom: 56px;
  align-items: baseline;
}
.section-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex; flex-direction: column; gap: 6px;
}
.section-num .n { font-size: 14px; font-weight: 700; }
.section-num .lab { opacity: 0.55; }
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 18ch;
}
.section-title .it { font-style: italic; color: var(--pop); }
section.dark .section-title .it { color: var(--pop); }
section.pop .section-title .it { color: var(--cream); text-decoration: underline; text-underline-offset: 8px; text-decoration-thickness: 3px; }

/* === Gallery strip === */
.gallery-section {
  padding: 60px 0;
  border-top: 1px solid var(--rule);
  background: var(--cream);
  overflow: hidden;
}
.gallery-strip {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.gallery-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: gallery-scroll 80s linear infinite;
}
.gallery-track:hover { animation-play-state: paused; }
.gallery-card {
  flex: 0 0 auto;
  width: 360px;
  height: 460px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
}
.gallery-card::after { border-radius: var(--r-lg); }
.gallery-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 45%);
  pointer-events: none;
}
.gallery-card .photo-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--cream);
  padding: 6px 10px;
  border-radius: 4px;
  position: relative;
  z-index: 2;
}
@keyframes gallery-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 700px) {
  .gallery-card { width: 240px; height: 320px; }
}

/* === About === */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-body p {
  font-size: 19px;
  line-height: 1.55;
  margin: 0 0 18px;
  max-width: 56ch;
}
.about-body p .accent { background: var(--pop); color: var(--cream); padding: 0 6px; }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--rule-strong);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.about-stats .stat {
  border-right: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
  padding: 28px 24px;
  background: var(--cream);
}
.about-stats .stat:nth-child(2n) { border-right: none; }
.about-stats .stat:nth-last-child(-n+2) { border-bottom: none; }
.about-stats .stat .num {
  font-family: var(--serif);
  font-size: 64px;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.about-stats .stat .num .pop { color: var(--pop); font-style: italic; }
.about-stats .stat .lab {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
}

/* === Topics === */
.topics-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule-strong);
}
.topic {
  border-bottom: 1px solid var(--rule-strong);
  padding: 36px 0;
  display: grid;
  grid-template-columns: 80px 1fr 1fr 60px;
  gap: 32px;
  align-items: start;
  cursor: default;
  transition: padding .25s ease, background .25s;
  position: relative;
}
.topic:hover { padding-left: 24px; }
.topic .num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 0;
  color: var(--pop-deep);
  padding-top: 12px;
  opacity: 0.85;
}
.topic h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0;
}
.topic h3 .it { font-style: italic; color: var(--pop-deep); }
.topic p {
  font-size: 17px;
  line-height: 1.45;
  margin: 0;
  max-width: 42ch;
  opacity: 0.85;
}
.topic .arrow {
  font-family: var(--serif);
  font-size: 32px;
  text-align: right;
  transition: transform .3s;
  color: var(--pop);
}
.topic:hover .arrow { transform: translateX(8px); }

/* === Project features (Pitch-A-Friend, Candor Club) === */
.projects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.projects > .project:nth-child(1) { grid-column: span 2; }
@media (max-width: 900px) {
  .projects > .project:nth-child(1) { grid-column: span 1; }
}
.project {
  background: var(--cream);
  border: 1px solid var(--rule-strong);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform .25s ease, box-shadow .25s;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.project:hover { transform: translateY(-4px); box-shadow: 14px 14px 0 var(--ink); }
.project.featured { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.project.featured:hover { box-shadow: 14px 14px 0 var(--pop); }

.project .tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.project .tag::before {
  content: ""; width: 8px; height: 8px;
  background: var(--pop); border-radius: 50%;
}
.project h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0;
}
.project h3 .it { font-style: italic; color: var(--pop); }
.project .desc {
  font-size: 17px;
  line-height: 1.5;
  max-width: 44ch;
}
.project .photo { min-height: 260px; margin: 0; border-radius: var(--r-lg); }
.project .link {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid currentColor;
  padding-bottom: 6px;
  width: fit-content;
  transition: gap .2s;
}
.project .link:hover { gap: 16px; }

/* === Projects carousel === */
.projects-carousel {
  margin-top: 0;
  position: relative;
}
.projects-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: max(32px, calc((100vw - 1280px) / 2 + 32px));
  scroll-padding-right: max(32px, calc((100vw - 1280px) / 2 + 32px));
  padding: 8px max(32px, calc((100vw - 1280px) / 2 + 32px)) 32px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.projects-track::-webkit-scrollbar { display: none; }

.proj-card {
  flex: 0 0 min(560px, 82vw);
  scroll-snap-align: start;
  background: var(--cream);
  border: 1px solid var(--rule-strong);
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s;
}
.proj-card:hover { transform: translateY(-4px); box-shadow: 12px 12px 0 var(--ink); }

.proj-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-2);
}

.proj-body {
  padding: 32px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}
.proj-body .tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.proj-body .tag::before {
  content: ""; width: 8px; height: 8px;
  background: var(--pop); border-radius: 50%;
}
.proj-body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 3.2vw, 52px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0;
}
.proj-body h3 .it { font-style: italic; color: var(--pop); }
.proj-body .desc {
  font-size: 17px;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}
.proj-body .link {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid currentColor;
  padding-bottom: 6px;
  width: fit-content;
  transition: gap .2s;
  margin-top: auto;
}
.proj-body .link:hover { gap: 16px; }

.projects-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 8px;
}
.proj-nav {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid var(--rule-strong);
  background: var(--cream);
  font-family: var(--serif);
  font-size: 24px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s, transform .2s;
}
.proj-nav:hover { background: var(--ink); color: var(--cream); transform: translateY(-1px); }
.proj-dots {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.proj-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--rule-strong);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.proj-dot.is-active { background: var(--ink); border-color: var(--ink); transform: scale(1.2); }
.proj-dot:hover { background: var(--pop); border-color: var(--pop); }

@media (max-width: 700px) {
  .proj-card { flex: 0 0 86vw; }
  .proj-body { padding: 24px 24px 28px; }
}

/* === Featured In · press grid === */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 16px;
  border-top: 1px solid rgba(245, 239, 230, 0.14);
  border-left: 1px solid rgba(245, 239, 230, 0.14);
}
.logo-tile {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 2.4 / 1;
  padding: 24px 36px;
  text-decoration: none;
  border-right: 1px solid rgba(245, 239, 230, 0.14);
  border-bottom: 1px solid rgba(245, 239, 230, 0.14);
  background: transparent;
  overflow: hidden;
  transition: background .35s ease;
}
.logo-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(245,239,230,0.06), transparent 70%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.logo-tile:hover::after { opacity: 1; }
.logo-tile img {
  max-width: 100%;
  max-height: 38px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.62;
  transition: opacity .35s ease, transform .4s ease;
}
.logo-tile:hover img {
  opacity: 1;
  transform: scale(1.04);
}
/* Optical balance — wider logos get a slight haircut, square logos a small bump */
.logo-tile.t-square img { max-height: 50px; }
.logo-tile.t-tall img   { max-height: 44px; }
.logo-tile.t-wide img   { max-height: 34px; }

@media (max-width: 900px) {
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-tile { aspect-ratio: 2.2 / 1; padding: 20px 24px; }
  .logo-tile img { max-height: 32px; }
  .logo-tile.t-square img { max-height: 48px; }
}
@media (max-width: 500px) {
  .logo-tile { padding: 16px 18px; }
}

/* === Quote === */
.quote-block {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  max-width: 22ch;
  margin: 0 auto;
  text-align: center;
}
.quote-block .pop { color: var(--cream); background: var(--ink); padding: 0 12px; }

/* === Why Arielle === */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-body {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.why-body .pop { color: var(--pop); font-style: italic; }
.why-tags {
  margin-top: 32px;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.why-tags .tag {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
}

/* === Contact === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-form {
  display: grid;
  gap: 20px;
}
.contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 8px;
  opacity: 0.7;
}
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  background: rgba(245,239,230,0.06);
  border: 1px solid rgba(245,239,230,0.18);
  border-radius: var(--r-md);
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 18px;
  color: inherit;
  outline: none;
  transition: border-color .2s, background .2s;
}
.contact-form textarea { border-radius: var(--r-md); }
.contact-form input::placeholder, .contact-form textarea::placeholder { opacity: 0.4; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--cream); background: rgba(245,239,230,0.1); }
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%); background-position: calc(100% - 14px) center, calc(100% - 8px) center; background-size: 6px 6px; background-repeat: no-repeat; padding-right: 28px; }

.submit-btn {
  background: var(--pop);
  color: var(--ink);
  border: none;
  padding: 18px 32px;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  border-radius: 999px;
  width: fit-content;
  transition: transform .2s, background .2s;
}
.submit-btn:hover { transform: translateY(-2px); background: var(--cream); }

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-aside .item {
  border-top: 1px solid rgba(245,239,230,0.25);
  padding-top: 18px;
}
.contact-aside .item .label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.6;
  margin-bottom: 6px;
}
.contact-aside .item .value {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.1;
}
.contact-aside .item .value a { text-decoration: none; }
.contact-aside .item .value a:hover { color: var(--pop); }

/* === Footer === */
.footer {
  padding: 60px 32px 36px;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  margin: 16px 16px 0;
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  border-top: 1px solid rgba(245,239,230,0.2);
  padding-top: 40px;
}
.footer h4 {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.6;
  margin: 0 0 14px;
  font-weight: 400;
}
.footer .big {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
}
.footer .big .it { font-style: italic; color: var(--pop); }
.footer .links { display: flex; flex-direction: column; gap: 8px; }
.footer .links a { text-decoration: none; opacity: 0.85; transition: opacity .2s; }
.footer .links a:hover { opacity: 1; color: var(--pop); }
.footer .colophon {
  max-width: 1280px;
  margin: 32px auto 0;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.55;
}

/* === Underline annotation === */
.scribble {
  position: relative;
  display: inline-block;
}
.scribble::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px; bottom: -6px;
  height: 8px;
  background: var(--pop);
  z-index: -1;
  transform: skew(-2deg);
}

/* === Responsive === */
@media (max-width: 900px) {
  .topbar nav { display: none; }
  .hero { padding: 32px 20px 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-feature { order: -1; }
  .hero-feature-photo { aspect-ratio: 4 / 5; min-height: 0; max-height: 460px; border-radius: var(--r-lg); }
  .hero-eyebrow { flex-direction: column; align-items: flex-start; gap: 10px; margin-bottom: 18px; }
  .hero-eyebrow .role { font-size: 11px; opacity: 0.75; }
  .hero-headline { font-size: clamp(40px, 11vw, 64px); margin-bottom: 24px; }
  .hero-sub { grid-template-columns: 1fr; gap: 24px; margin-top: 16px; }
  .hero-lede { font-size: 18px; }
  .hero-meta {
    grid-template-columns: 1fr;
    gap: 14px;
    border-left: none;
    border-top: 1px solid var(--rule-strong);
    padding-left: 0;
    padding-top: 20px;
  }
  .hero-meta .value { font-size: 16px; }
  .section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 36px; }
  .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .projects { grid-template-columns: 1fr; }
  .topic { grid-template-columns: 50px 1fr 40px; }
  .topic p { grid-column: 2 / 4; max-width: none; }
  .press-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer .colophon { flex-direction: column; gap: 8px; }
  section { padding: 60px 24px; }
}
