/* =========================================================
   FELECEIA WILSON — Brand Stylesheet
   Aesthetic: Editorial, warm, confident. Serif display + clean sans body.
   Palette: Cream, ink, terracotta accent, deep forest secondary.
   ========================================================= */

:root {
  /* ---------- Color ---------- */
  --cream:        #F4EFE6;        /* page background */
  --cream-deep:   #ECE4D4;        /* section alt */
  --ink:          #1A1A1A;        /* primary text */
  --ink-soft:     #3A3A3A;        /* body text */
  --ink-muted:    #6B6660;        /* meta text */
  --line:         #1A1A1A1A;      /* hairlines */
  --line-strong:  #1A1A1A33;
  --terracotta:   #C2552D;        /* accent */
  --terracotta-deep: #9E3F1C;
  --forest:       #2B3A2E;        /* secondary deep tone */
  --paper:        #FAF7F1;        /* card surface */
  --blush:        #ecc6b6;        /* soft hero pink, matches portrait wall */
  --blush-deep:   #e8bbaa;        /* richer pink at portrait side */

  /* ---------- Type ---------- */
  --display: 'Fraunces', 'Times New Roman', serif;
  --body:    'Inter Tight', system-ui, sans-serif;

  /* ---------- Spacing & motion ---------- */
  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(5rem, 10vw, 9rem);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* =========================================================
   RESET + BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "ss02";
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

/* Subtle paper grain across the site */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.08 0 0 0 0 0.06 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  position: relative;
  z-index: 2;
}

/* =========================================================
   TYPOGRAPHY UTILITIES
   ========================================================= */
.eyebrow {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.section-num {
  display: inline-block;
  font-family: var(--body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.section-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.05;
  color: var(--ink);
  margin: 0;
  max-width: 22ch;
  letter-spacing: -0.02em;
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta);
}

.section-head {
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.section-head--center { text-align: center; }
.section-head--center .section-title { margin-left: auto; margin-right: auto; }
.section-head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}
.section-head--split .section-title { margin-bottom: 0; max-width: 44ch; }
.section-head__link {
  flex-shrink: 0;
  font-family: var(--body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  transition: gap .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  white-space: nowrap;
}
.section-head__link:hover {
  gap: 0.8rem;
  color: var(--terracotta);
  border-color: var(--terracotta);
}
@media (max-width: 720px) {
  .section-head--split { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  transition: all .35s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink);
  color: var(--cream);
}
.btn--primary:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  transform: translateY(-2px);
}
.btn--lg {
  padding: 1.15rem 2rem;
  font-size: 1rem;
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--display);
  color: var(--ink);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.nav__logo-mark {
  width: 32px; height: 32px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 50%;
  display: grid; place-items: center;
  font-style: italic;
  font-weight: 500;
  font-size: 1rem;
}
.nav__logo-text { font-weight: 500; }

.nav__links {
  display: flex;
  gap: 2.4rem;
}
.nav__links a {
  font-size: 0.92rem;
  color: var(--ink-soft);
  position: relative;
  padding: 0.3rem 0;
  transition: color .25s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__toggle {
  display: none;
  background: none; border: none;
  width: 34px; height: 34px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: transform .3s var(--ease);
}
.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 1rem var(--gutter) 2rem;
  border-top: 1px solid var(--line);
  background: var(--cream);
}
.nav__mobile a {
  font-family: var(--display);
  font-size: 1.6rem;
  padding: 0.6rem 0;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.nav.open .nav__mobile { display: flex; }
.nav.open .nav__toggle span:first-child { transform: translateY(3.25px) rotate(45deg); }
.nav.open .nav__toggle span:last-child { transform: translateY(-3.25px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   SELECTED WORK
   ========================================================= */
.work {
  padding: var(--section-y) 0;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2vw, 1.75rem);
}
.work-card {
  display: block;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4 / 3.4;
  overflow: hidden;
  border-radius: 2px;
  background: var(--ink);
  color: var(--cream);
}
/* keep the modifier class harmless if it remains in markup */
.work-card--lg { grid-column: auto; }

.work-card__image {
  position: absolute;
  inset: 0;
  margin: 0;
  border-radius: 2px;
  overflow: hidden;
}
.work-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.work-card:hover .work-card__image img {
  transform: scale(1.06);
}
/* dark gradient so overlaid text is always readable */
.work-card__image::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(17,17,17,0.05) 0%,
    rgba(17,17,17,0.15) 40%,
    rgba(17,17,17,0.68) 72%,
    rgba(17,17,17,0.92) 100%);
  pointer-events: none;
}

.work-card__body {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.25rem, 2vw, 1.75rem);
}

.work-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
  font-family: var(--body);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.work-card__num { color: var(--terracotta-light, #d98b6a); font-weight: 600; }
.work-card__tag { color: rgba(244,239,230,0.72); }

.work-card__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 0 0 0.6rem;
}

.work-card__desc {
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(244,239,230,0.86);
  margin: 0 0 1rem;
  max-width: 42ch;
}

.work-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--cream);
  position: relative;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(244,239,230,0.5);
  transition: gap .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.work-card:hover .work-card__cta {
  gap: 0.7rem;
  color: var(--terracotta-light, #d98b6a);
  border-color: var(--terracotta-light, #d98b6a);
}

/* =========================================================
   SERVICES
   ========================================================= */
.services {
  padding: var(--section-y) 0;
  background: var(--cream-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.services__row {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.service {
  text-align: center;
  padding: 0 clamp(0.85rem, 1.6vw, 1.6rem);
  border-left: 1px solid var(--line);
  transition: transform .4s var(--ease);
}
.service:first-child { border-left: none; }
.service:hover { transform: translateY(-4px); }

.service__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.4rem;
  color: var(--ink);
}
.service__icon svg { width: 100%; height: 100%; }
.service:hover .service__icon { color: var(--terracotta); }

.service h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 0.85rem;
}
.service p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* =========================================================
   ABOUT TEASER
   ========================================================= */
.about-teaser {
  padding: var(--section-y) 0;
}
.about-teaser__inner {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.about-teaser__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 3px;
  background: var(--cream-deep);
}
.about-teaser__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-teaser__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 1.5rem;
}
.about-teaser__title em {
  font-style: italic;
  color: var(--terracotta);
}
.about-teaser__copy .section-num {
  display: block;
  margin-bottom: 1.25rem;
}
.about-teaser__copy p {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 0 1.5rem;
}
.about-teaser__pull-inline {
  font-family: var(--display) !important;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem) !important;
  line-height: 1.3;
  color: var(--ink) !important;
  border-left: 2px solid var(--terracotta);
  padding-left: 1.5rem;
  margin: 0 0 2rem !important;
}
.about-teaser__pull-inline em {
  color: var(--terracotta);
  font-style: italic;
}

/* =========================================================
   PRESS / SPEAKING
   ========================================================= */
.press {
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  background: var(--cream);
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.press .section-head {
  margin-bottom: clamp(2rem, 3.5vw, 3rem);
}
.press .section-num { color: var(--terracotta); }
.press .section-title { color: var(--ink); }
.press .section-title em { color: var(--terracotta); }

.press__marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
  /* soft fade on both edges so logos appear/disappear gracefully */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.press__track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: clamp(3rem, 6vw, 6rem);
  animation: press-scroll 38s linear infinite;
  will-change: transform;
}
.press__marquee:hover .press__track {
  animation-play-state: paused;
}
.press__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.press__item img {
  height: 34px;
  width: auto;
  object-fit: contain;
  opacity: 0.78;
  transition: opacity .3s var(--ease);
}
.press__item:hover img { opacity: 1; }
.press__item--text {
  font-family: var(--display);
  font-size: 1.45rem;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--ink);
  opacity: 0.82;
  white-space: nowrap;
}
@keyframes press-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Featured logos strip (Speaking + Press page) ---------- */
.featured-logos {
  padding: 4rem 0 2rem;
  border-bottom: 1px solid var(--line);
}
.featured-logos__label {
  display: block;
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--ink-muted);
}
.featured-logos__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  flex-wrap: wrap;
}
.featured-logo {
  height: 36px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  opacity: 0.72;
  transition: opacity .3s var(--ease);
  flex-shrink: 0;
}
.featured-logo:hover { opacity: 1; }

.press__cta {
  text-align: center;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--cream-deep);
  padding: var(--section-y) 0 2.5rem;
  border-top: 1px solid var(--line);
}
.footer__cta {
  text-align: center;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  margin-bottom: 4rem;
  border-bottom: 1px solid var(--line);
}
.footer__cta .eyebrow {
  display: block;
  margin-bottom: 1.5rem;
}
.footer__cta h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 2.5rem;
  max-width: 14ch;
  margin-left: auto;
  margin-right: auto;
}
.footer__cta h2 em {
  font-style: italic;
  color: var(--terracotta);
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.footer__col a { color: var(--ink); }
.footer__col a:hover { color: var(--terracotta); }
.footer__col p { margin: 0; color: var(--ink); }
.footer__social { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.4rem; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* =========================================================
   INNER PAGES — shared
   ========================================================= */
.page-hero {
  padding: clamp(4rem, 7vw, 6rem) 0 clamp(3rem, 5vw, 4.5rem);
  border-bottom: 1px solid var(--line);
}
.page-hero__eyebrow {
  display: block;
  margin-bottom: 2rem;
}
.page-hero h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0 0 1.5rem;
  max-width: 16ch;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--terracotta);
}
.page-hero__lede {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.4;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0;
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.about-body {
  padding: var(--section-y) 0;
}
.about-body__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(3rem, 6vw, 6rem);
}
.about-body__sticky {
  position: sticky;
  top: 100px;
  align-self: start;
}
.about-body__portrait {
  aspect-ratio: 4/5;
  background: var(--cream-deep);
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.about-body__portrait img {
  width: 100%; height: 100%; object-fit: cover;
}
.about-body__caption {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--ink-muted);
}
.about-body__copy p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
  max-width: 56ch;
}
.about-body__copy p.lede {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 2.5rem;
}
.about-body__copy h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 3rem 0 1.25rem;
}
.about-body__copy h2 em { color: var(--terracotta); font-style: italic; }
.about-body__pull {
  border-left: 2px solid var(--terracotta);
  padding: 0.5rem 0 0.5rem 1.75rem;
  margin: 2.5rem 0;
}
.about-body__pull p {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
}

/* =========================================================
   SPEAKING + PRESS PAGE
   ========================================================= */
.speaking-grid {
  padding: var(--section-y) 0;
}
.speaking-list {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
}
.speaking-item {
  display: grid;
  grid-template-columns: 100px 2fr 1fr 80px;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  transition: padding .4s var(--ease);
}
.speaking-item:hover { padding-left: 1rem; }
.speaking-item__year {
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--terracotta);
  font-weight: 500;
}
.speaking-item__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
  line-height: 1.2;
}
.speaking-item__org {
  color: var(--ink-muted);
  font-size: 0.95rem;
}
.speaking-item__arrow {
  text-align: right;
  color: var(--ink);
  font-size: 1.2rem;
  transition: transform .3s var(--ease);
}
.speaking-item:hover .speaking-item__arrow { transform: translateX(8px); color: var(--terracotta); }

.press-section {
  padding: var(--section-y) 0;
  background: var(--cream-deep);
  border-top: 1px solid var(--line);
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact {
  padding: var(--section-y) 0;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact__field label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
.contact__field input,
.contact__field textarea,
.contact__field select {
  border: none;
  border-bottom: 1px solid var(--line-strong);
  background: transparent;
  font-family: var(--body);
  font-size: 1.05rem;
  color: var(--ink);
  padding: 0.5rem 0 0.75rem;
  outline: none;
  transition: border-color .3s var(--ease);
}
.contact__field input:focus,
.contact__field textarea:focus,
.contact__field select:focus {
  border-color: var(--terracotta);
}
.contact__field textarea {
  resize: vertical;
  min-height: 120px;
}
.contact__submit {
  align-self: flex-start;
  margin-top: 1rem;
}

.contact__aside {
  background: var(--cream-deep);
  padding: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.contact__aside h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 1.25rem;
}
.contact__aside p {
  font-size: 1rem;
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
}
.contact__detail {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
}
.contact__detail span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.contact__detail a, .contact__detail p {
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--ink);
  margin: 0;
}
.contact__detail a:hover { color: var(--terracotta); }

/* =========================================================
   CASE STUDY PAGE
   ========================================================= */
.case {
  padding: clamp(3rem, 5vw, 5rem) 0 var(--section-y);
}
.case__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--ink-muted);
  margin-bottom: 3rem;
  transition: color .3s var(--ease), gap .3s var(--ease);
}
.case__back:hover { color: var(--terracotta); gap: 0.8rem; }

.case__head {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}
.case__title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0.5rem 0 1.5rem;
}
.case__title em { font-style: italic; color: var(--terracotta); }
.case__lede {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.4;
  color: var(--ink-soft);
  margin: 0;
  max-width: 50ch;
}

.case__sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.case__sidebar-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.case__sidebar-block:last-child { border-bottom: none; }
.case__sidebar-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
.case__sidebar-value {
  font-family: var(--display);
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.4;
}
.case__sidebar-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.case__sidebar-list li {
  font-size: 0.95rem;
  color: var(--ink-soft);
  position: relative;
  padding-left: 1.2rem;
}
.case__sidebar-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--terracotta);
}

.case__hero-image {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--cream-deep);
  overflow: hidden;
  margin-bottom: clamp(3rem, 5vw, 5rem);
  border-radius: 2px;
}
.case__hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.case__body {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
}
.case__body p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
}
.case__body h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 3rem 0 1.25rem;
}
.case__body h2 em { font-style: italic; color: var(--terracotta); }
.case__pull {
  border-left: 2px solid var(--terracotta);
  padding: 0.5rem 0 0.5rem 1.75rem;
  margin: 2.5rem 0;
}
.case__pull p {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
}

.case__media {
  margin: 3rem 0;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.case__video {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  overflow: hidden;
  border-radius: 2px;
}
.case__video iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.case__media-caption {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--ink-muted);
  margin-top: 1rem;
  text-align: center;
}

.case__next {
  margin-top: var(--section-y);
  padding-top: 3rem;
  border-top: 1px solid var(--line);
  text-align: center;
}
.case__next-eyebrow {
  display: block;
  margin-bottom: 1rem;
}
.case__next a {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  display: inline-block;
  transition: color .3s var(--ease);
}
.case__next a:hover { color: var(--terracotta); }
.case__next a em { font-style: italic; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }

  .work-grid { grid-template-columns: repeat(2, 1fr); }

  .services__row { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 0; }
  .service { border-left: none; }
  .service:nth-child(odd) { border-left: none; }

  .about-teaser__inner { grid-template-columns: 1fr; }
  .about-teaser__media { max-width: 420px; aspect-ratio: 3 / 3.4; }
  .about-body__inner { grid-template-columns: 1fr; }
  .about-body__sticky { position: static; }
  .about-body__portrait { max-width: 380px; }

  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: column; gap: 0.8rem; text-align: center; }

  .case__head { grid-template-columns: 1fr; }
  .speaking-item {
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto;
    gap: 0.4rem 1.5rem;
  }
  .speaking-item__org { grid-column: 2; }
  .speaking-item__arrow { display: none; }

  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .work-grid { grid-template-columns: 1fr; }
  .services__row { grid-template-columns: 1fr; }
  .footer__cta h2 { font-size: 2.2rem; }
  .footer__grid { grid-template-columns: 1fr; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  /* Stop the press marquee and let logos sit naturally, centered */
  .press__track {
    animation: none !important;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(1.5rem, 4vw, 3rem) clamp(2rem, 5vw, 4rem);
  }
  .press__marquee {
    -webkit-mask-image: none;
            mask-image: none;
  }
  /* Hide the duplicate set when static so logos aren't shown twice */
  .press__track .press__item[aria-hidden="true"] { display: none; }
}
/* ============================================================
   FELECEIA WILSON — HERO STYLES
   Append to public/feleceia.css (or replace your old hero rules).
   Namespaced .fw-hero* so it won't collide with existing classes.

   Design tokens used:
     cream  #F4EFE6   ink #1A1A1A   terracotta #C2552D
     display: Fraunces   body: Inter Tight
   ============================================================ */

.fw-hero {
  position: relative;
  width: 100%;
  /* pink background image fills the whole hero */
  background-image: url("/images/feleceia-hero-bg.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* --- eyebrow row: sits on top, full width, never covered by portrait --- */
.fw-hero__eyebrow {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem clamp(1.25rem, 4vw, 3.5rem);
  font-family: "Inter Tight", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b5b52;
}

/* --- stage: positioning context for text + portrait --- */
.fw-hero__stage {
  position: relative;
  /* tall enough to show the full seated portrait */
  min-height: clamp(560px, 78vh, 820px);
}

/* --- portrait: transparent PNG anchored to the BOTTOM-RIGHT.
       width-based sizing => the WHOLE portrait shows, never cropped.
       z-index below text so headline can sit over the empty pink if needed. --- */
.fw-hero__portrait {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 100%;
  width: auto;
  max-width: 60%;
  object-fit: contain;
  object-position: bottom right;
  pointer-events: none;
  user-select: none;
}

/* --- text block: lives in the open pink space on the left --- */
.fw-hero__text {
  position: relative;
  z-index: 2;
  max-width: 46%;
  padding: clamp(1rem, 3vw, 3rem) 0 clamp(2rem, 5vw, 4rem)
           clamp(1.25rem, 4vw, 3.5rem);
}

.fw-hero__kicker {
  font-family: "Inter Tight", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C2552D;
  margin: 0 0 1rem;
}

.fw-hero__headline {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 5.2vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: #1A1A1A;
  margin: 0 0 1.5rem;
}
.fw-hero__headline em {
  font-style: italic;
  color: #C2552D;
}

.fw-hero__sub {
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.6;
  color: #4a3f39;
  max-width: 30rem;
  margin: 0 0 2rem;
}

/* --- buttons --- */
.fw-hero__cta { display: flex; gap: 0.85rem; flex-wrap: wrap; }
.fw-btn {
  font-family: "Inter Tight", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 1.5rem;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.fw-btn:hover { transform: translateY(-1px); }
.fw-btn--solid { background: #1A1A1A; color: #F4EFE6; }
.fw-btn--ghost { background: transparent; color: #1A1A1A; border: 1px solid #1A1A1A; }

/* ============================================================
   MOBILE: stack — text on top, full portrait band below.
   Portrait goes full-width and uncropped so she stays whole.
   ============================================================ */
@media (max-width: 820px) {
  .fw-hero__stage { min-height: auto; }
  .fw-hero__text {
    max-width: 100%;
    padding-right: clamp(1.25rem, 4vw, 3.5rem);
  }
  .fw-hero__portrait {
    position: relative;
    height: auto;
    width: 100%;
    max-width: 100%;
    display: block;
    margin-top: -1rem; /* slight overlap so it reads as one composition */
  }
}
/* ============================================================
   FELECEIA WILSON — SOCIAL LINKS STYLES (icons + labels)
   Append to public/feleceia.css. Namespaced .fw-social*.
   Uses !important on color to override any inherited footer color
   that was washing the icons out.

   ink #1A1A1A  ->  terracotta #C2552D on hover
   ============================================================ */

.fw-social {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.fw-social__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #1A1A1A !important;   /* force dark ink on light footer */
  text-decoration: none;
  font-family: "Inter Tight", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 1 !important;       /* defeat any inherited faded opacity */
  transition: color 0.18s ease, transform 0.18s ease;
}

.fw-social__link:hover,
.fw-social__link:focus-visible {
  color: #C2552D !important;
  transform: translateY(-1px);
  outline: none;
}

.fw-social__icon { display: block; flex-shrink: 0; }
.fw-social__label { line-height: 1; }

/* DARK footer only: add `fw-social--on-dark` to the wrapper.
   Your footer in the screenshot is LIGHT/cream, so do NOT use this there. */
.fw-social--on-dark .fw-social__link { color: #F4EFE6 !important; }
.fw-social--on-dark .fw-social__link:hover,
.fw-social--on-dark .fw-social__link:focus-visible { color: #C2552D !important; }
