/* ==========================================================================
   Curated Seed — global styles
   ========================================================================== */

:root {
  --cream: #FBFBEE;
  --cream-soft: #F6F4E4;
  --blue: #DCE6F1;
  --blue-deep: #C8D6E5;
  --yellow: #F5C97C;
  --yellow-deep: #E8B964;
  --ink: #0F1419;
  --ink-soft: #2A2F36;
  --muted: #6B7280;
  --rule: rgba(15, 20, 25, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.serif {
  font-family: 'Fraunces', Georgia, serif;
  font-optical-sizing: auto;
  letter-spacing: -0.015em;
}

/* Layout */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 32px;
}

section {
  padding: 120px 0;
  border-top: 1px solid var(--rule);
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .container, .container-narrow { padding: 0 24px; }
}

/* Nav */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 32px;
  background: rgba(251, 251, 238, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
nav.scrolled { border-bottom-color: var(--rule); }

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 4px;
  text-decoration: none;
  color: var(--ink);
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.02em;
}
.nav-logo .seed-dot {
  width: 12px;
  height: 12px;
  display: inline-block;
  margin-left: 2px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--yellow-deep); }

@media (max-width: 640px) {
  .nav-links { display: none; }
  nav { padding: 18px 24px; }
}

/* Hero */
.hero {
  padding: 180px 0 140px;
  border-top: none;
  position: relative;
  overflow: hidden;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 36px;
  font-weight: 500;
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(48px, 8vw, 116px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--ink);
  max-width: 14ch;
  margin-bottom: 48px;
}
.hero h1 .seed-inline {
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  vertical-align: baseline;
  transform: translateY(-0.04em);
}

.hero-sub {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 52ch;
  font-weight: 400;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 100px;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-meta-item {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-meta-item strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 17px;
  color: var(--ink);
  text-transform: none;
  letter-spacing: -0.01em;
  font-weight: 500;
  margin-top: 6px;
}

/* Section headers */
.section-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 56px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--ink);
}

/* Approach */
.approach {
  background: var(--blue);
  border-top: none;
}
.approach .section-label { color: rgba(15, 20, 25, 0.55); }
.approach .section-label::before { background: var(--ink); }
.approach .approach-body p { color: var(--ink-soft); }
.approach .principles {
  border-top-color: rgba(15, 20, 25, 0.18);
}
.approach .principle p { color: rgba(15, 20, 25, 0.65); }

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 80px;
}
@media (max-width: 900px) {
  .approach-grid { grid-template-columns: 1fr; gap: 40px; }
}

.approach-grid h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.approach-body p {
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
}
@media (max-width: 640px) {
  .principles { grid-template-columns: 1fr; }
}
.principle-num {
  font-family: 'Fraunces', serif;
  font-size: 14px;
  color: var(--yellow-deep);
  font-weight: 500;
  margin-bottom: 12px;
  font-style: italic;
}
.principle h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}
.principle p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.55;
}

/* Founder */
.founder {
  background: var(--cream-soft);
}
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .founder-grid { grid-template-columns: 1fr; gap: 40px; }
}
.founder-name {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.founder-alias {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--muted);
  margin-top: 18px;
  letter-spacing: -0.005em;
}
.founder-role {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow-deep);
  font-weight: 500;
}
.founder-body p {
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.founder-body p:last-child { margin-bottom: 0; }
.founder-signoff {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
}

/* Process */
.process-intro {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 80px;
  margin-bottom: 80px;
}
@media (max-width: 900px) {
  .process-intro { grid-template-columns: 1fr; gap: 32px; margin-bottom: 56px; }
}
.process-intro h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.process-intro p {
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  padding-top: 56px;
}
@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr; gap: 56px; padding-top: 40px; }
}
.process-step {
  padding: 0 32px;
  border-left: 1px solid var(--rule);
}
.process-step:first-child { border-left: none; padding-left: 0; }
@media (max-width: 768px) {
  .process-step { border-left: none; padding: 0; padding-top: 32px; border-top: 1px solid var(--rule); }
  .process-step:first-child { padding-top: 0; border-top: none; }
}
.process-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--yellow-deep);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.process-step h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.015em;
  margin-bottom: 20px;
  line-height: 1.1;
}
.process-step p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* Testimonials */
.testimonials {
  background: var(--blue);
  border-top: none;
}
.testimonials .section-label { color: rgba(15, 20, 25, 0.55); }
.testimonials .section-label::before { background: var(--ink); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  margin-top: 24px;
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; gap: 64px; }
}
.testimonial {
  display: flex;
  flex-direction: column;
}
.testimonial-mark {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 72px;
  line-height: 0.4;
  color: var(--yellow-deep);
  margin-bottom: 28px;
  height: 24px;
}
.testimonial blockquote {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.4;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 32px 0;
  flex-grow: 1;
}
.testimonial-attr {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(15, 20, 25, 0.18);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(15, 20, 25, 0.6);
  font-weight: 500;
}
.testimonial-attr strong {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-style: normal;
  display: block;
  font-size: 17px;
  color: var(--ink);
  text-transform: none;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

/* Services */
.services {
  background: var(--cream-soft);
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: 24px;
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
}
.service {
  background: var(--cream-soft);
  padding: 48px 36px;
  transition: background 0.3s;
}
@media (max-width: 900px) {
  .service { padding: 56px 32px; }
}
.service:hover { background: var(--cream); }
.service-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--yellow-deep);
  font-size: 14px;
  margin-bottom: 20px;
}
.service h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(24px, 2.4vw, 32px);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.1;
}
.service p {
  color: var(--ink-soft);
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.6;
}
.service ul {
  list-style: none;
  border-top: 1px solid var(--rule);
  padding-top: 20px;
}
.service li {
  font-size: 14px;
  color: var(--muted);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.service li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--yellow);
  border-radius: 50%;
}

/* Selected Work — Featured */
.work-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: var(--ink);
  color: var(--cream);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 24px;
  margin-bottom: 24px;
  min-height: 440px;
  position: relative;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.work-featured:hover { transform: translateY(-4px); }
@media (max-width: 900px) {
  .work-featured { grid-template-columns: 1fr; min-height: 0; }
}
.work-featured-content {
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}
@media (max-width: 640px) {
  .work-featured-content { padding: 40px 32px; }
}
.work-featured-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--yellow);
}
.work-featured-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
}
.work-featured h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 24px 0;
  color: var(--cream);
}
.work-featured-desc {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.55;
  color: rgba(251, 251, 238, 0.7);
  max-width: 42ch;
}
.work-featured-meta {
  display: flex;
  gap: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(251, 251, 238, 0.12);
  flex-wrap: wrap;
}
.work-featured-meta-item {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(251, 251, 238, 0.5);
  font-weight: 500;
}
.work-featured-meta-item strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--cream);
  text-transform: none;
  letter-spacing: -0.005em;
  margin-top: 6px;
}
.work-featured-visual {
  background: linear-gradient(135deg, #1A2B3D 0%, #0F1419 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.work-featured-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(245, 201, 124, 0.15) 0%, transparent 60%);
}
.work-featured-mark {
  width: 60%;
  max-width: 280px;
  color: var(--yellow);
  opacity: 0.9;
  position: relative;
  z-index: 1;
  transform: rotate(-8deg);
}
.work-featured-tag {
  position: absolute;
  top: 32px;
  right: 32px;
  z-index: 2;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 14px;
  color: rgba(251, 251, 238, 0.6);
}

/* Selected Work — Grid */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}
@media (max-width: 900px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .work-grid { grid-template-columns: 1fr; }
}

.work-tile {
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  text-decoration: none;
}
.work-tile:hover { transform: translateY(-4px); }

.work-tile.tile-blue { background: var(--blue); color: var(--ink); }
.work-tile.tile-yellow { background: var(--yellow); color: var(--ink); }
.work-tile.tile-cream { background: var(--cream-soft); color: var(--ink); border: 1px solid var(--rule); }
.work-tile.tile-ink { background: var(--ink); color: var(--cream); }
.work-tile.tile-blue-ink { background: var(--blue-deep); color: var(--ink); }

.tile-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
  font-weight: 500;
}
.tile-meta-tag {
  display: block;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 12px;
  text-transform: none;
  letter-spacing: -0.005em;
  margin-top: 6px;
  opacity: 0.85;
}

/* ==========================================================================
   Approach CTA + Process side panel
   ========================================================================== */

.approach-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: transparent;
  border: 1px solid rgba(15, 20, 25, 0.28);
  border-radius: 100px;
  padding: 14px 24px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  color: var(--ink);
  cursor: pointer;
  margin-top: 56px;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease,
    transform 0.4s cubic-bezier(0.2, 0.65, 0.2, 1);
}
.approach-cta:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
  transform: translateX(3px);
}
.approach-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.4s cubic-bezier(0.2, 0.65, 0.2, 1);
}
.approach-cta:hover svg { transform: translateX(4px); }

/* Backdrop */
.process-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 20, 25, 0);
  z-index: 199;
  pointer-events: none;
  transition: background 0.5s ease, backdrop-filter 0.5s ease;
  -webkit-backdrop-filter: blur(0);
  backdrop-filter: blur(0);
}
.process-backdrop.open {
  background: rgba(15, 20, 25, 0.45);
  pointer-events: auto;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

/* Panel */
.process-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 560px;
  height: 100vh;
  background: var(--cream);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.55s cubic-bezier(0.2, 0.65, 0.2, 1), box-shadow 0.55s ease;
  overflow-y: auto;
  padding: 88px 64px 64px;
  box-shadow: -20px 0 60px rgba(15, 20, 25, 0);
  -webkit-overflow-scrolling: touch;
}
.process-panel.open {
  transform: translateX(0);
  box-shadow: -20px 0 60px rgba(15, 20, 25, 0.18);
}
@media (max-width: 640px) {
  .process-panel { padding: 88px 32px 56px; }
}

.process-panel-close {
  position: absolute;
  top: 28px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(15, 20, 25, 0.25);
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.4s cubic-bezier(0.2, 0.65, 0.2, 1);
  z-index: 2;
}
.process-panel-close:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
  transform: rotate(90deg);
}
.process-panel-close svg { width: 16px; height: 16px; }

.process-panel-content .section-label {
  margin-bottom: 32px;
}
.process-panel-content h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  color: var(--ink);
}
.process-panel-intro {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--rule);
}
.process-panel-steps {
  display: flex;
  flex-direction: column;
  gap: 44px;
}
.process-panel-step .process-num {
  margin-bottom: 12px;
}
.process-panel-step h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  line-height: 1.1;
  color: var(--ink);
}
.process-panel-step p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* Body when panel is open: prevent scroll */
body.panel-open { overflow: hidden; }

/* ==========================================================================
   Victoria S Podiatry case study
   ========================================================================== */

:root {
  --vp-navy: #1B2542;
  --vp-navy-deep: #131A30;
  --vp-cream: #F1EBDA;
  --vp-cream-deep: #E5DDC6;
  --vp-mauve: #D5D1DE;
  --vp-sage: #BDD2C8;
  --vp-blue-grey: #C7CCDB;
}

/* Hero visual — navy block with stylised lockup */
.vp-hero-visual {
  background: var(--vp-cream);
  padding: 96px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 460px;
}
@media (max-width: 768px) {
  .vp-hero-visual { padding: 56px 24px; min-height: 320px; }
}
.vp-hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 40% at 20% 30%, rgba(189, 210, 200, 0.25) 0%, transparent 55%),
    radial-gradient(ellipse 50% 35% at 80% 65%, rgba(213, 209, 222, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse 45% 30% at 60% 20%, rgba(199, 204, 219, 0.25) 0%, transparent 55%);
  pointer-events: none;
}
.vp-lockup {
  text-align: center;
  color: var(--vp-navy);
  position: relative;
  z-index: 1;
}
.vp-lockup-dots {
  display: inline-flex;
  gap: 5px;
  margin-bottom: 4px;
  justify-content: center;
}
.vp-lockup-dots span {
  width: 7px;
  height: 7px;
  background: var(--vp-navy);
  border-radius: 50%;
}
.vp-lockup-script {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: -4px;
  transform: translateX(-12px);
}
.vp-lockup-bold {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 58px);
  letter-spacing: 0.06em;
  line-height: 1;
  margin-top: 4px;
}
.vp-lockup-tagline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(13px, 1.1vw, 15px);
  margin-top: 14px;
  opacity: 0.7;
  letter-spacing: 0.01em;
}

/* Palette */
.vp-palette {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 24px;
}
@media (max-width: 640px) {
  .vp-palette { grid-template-columns: repeat(3, 1fr); }
}
.vp-swatch {
  aspect-ratio: 1;
  border-radius: 4px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
}
.vp-swatch-name {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 16px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.vp-sw-navy { background: var(--vp-navy); color: var(--vp-cream); }
.vp-sw-cream { background: var(--vp-cream); color: var(--vp-navy); border: 1px solid rgba(27, 37, 66, 0.15); }
.vp-sw-sage { background: var(--vp-sage); color: var(--vp-navy); }
.vp-sw-mauve { background: var(--vp-mauve); color: var(--vp-navy); }
.vp-sw-blue { background: var(--vp-blue-grey); color: var(--vp-navy); }

/* Packaging mockups */
.vp-packaging {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 56px 0;
}
.vp-packaging.vp-packaging-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}
.cs-feature-image.vp-feature {
  margin-top: 56px;
}
.cs-feature-image.vp-feature figcaption {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(27, 37, 66, 0.55);
}
@media (max-width: 768px) {
  .vp-packaging { grid-template-columns: 1fr; }
}
.vp-box {
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  padding: 56px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(27, 37, 66, 0.08);
}
.vp-box-cream { background: var(--vp-cream); color: var(--vp-navy); }
.vp-box-navy { background: var(--vp-navy); color: var(--vp-cream); }
.vp-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 50% 30% at 25% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 25% at 70% 70%, rgba(255, 255, 255, 0.06) 0%, transparent 55%);
  pointer-events: none;
}
.vp-box-cream::before {
  background-image:
    radial-gradient(ellipse 50% 30% at 25% 30%, rgba(189, 210, 200, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 40% 25% at 70% 70%, rgba(213, 209, 222, 0.25) 0%, transparent 55%);
}
.vp-box-label {
  text-align: center;
  position: relative;
  z-index: 1;
}
.vp-box-label .vp-lockup-script { font-size: clamp(24px, 2.8vw, 36px); transform: translateX(-8px); }
.vp-box-label .vp-lockup-bold { font-size: clamp(22px, 2.8vw, 36px); letter-spacing: 0.05em; }
.vp-box-label .vp-lockup-tagline { font-size: 11px; opacity: 0.75; }

/* Stationery grid */
.vp-stationery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}
@media (max-width: 900px) {
  .vp-stationery { grid-template-columns: repeat(2, 1fr); }
}
.vp-item {
  aspect-ratio: 1;
  border-radius: 4px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.vp-tp-cream { background: var(--vp-cream); color: var(--vp-navy); border: 1px solid rgba(27, 37, 66, 0.12); }
.vp-tp-navy { background: var(--vp-navy); color: var(--vp-cream); }
.vp-tp-sage { background: var(--vp-sage); color: var(--vp-navy); }
.vp-tp-mauve { background: var(--vp-mauve); color: var(--vp-navy); }
.vp-tp-blue { background: var(--vp-blue-grey); color: var(--vp-navy); }
.vp-item-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.6;
}
.vp-item-name {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.vp-item-mini-dots {
  display: inline-flex;
  gap: 3px;
}
.vp-item-mini-dots span {
  width: 4px;
  height: 4px;
  background: currentColor;
  border-radius: 50%;
  opacity: 0.6;
}

/* "What's next" sub-card */
.vp-next {
  background: var(--vp-navy);
  color: var(--vp-cream);
  border-radius: 4px;
  padding: 56px 48px;
  margin-top: 56px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 768px) {
  .vp-next { grid-template-columns: 1fr; gap: 24px; padding: 40px 32px; }
}
.vp-next-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--vp-sage);
  margin-bottom: 12px;
}
.vp-next-headline {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.vp-next-tag {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 14px;
  color: rgba(241, 235, 218, 0.55);
  white-space: nowrap;
}

.tile-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 14ch;
}

.tile-desc {
  margin-top: 14px;
  font-size: 13.5px;
  line-height: 1.5;
  opacity: 0.75;
  max-width: 28ch;
}

.tile-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  padding: 4px 10px;
  border-radius: 100px;
  opacity: 0.6;
  font-weight: 500;
  align-self: flex-start;
}

.tile-seed {
  position: absolute;
  width: 40%;
  bottom: -10%;
  right: -8%;
  opacity: 0.85;
}
.work-tile.tile-cream .tile-seed { opacity: 1; }

.work-note {
  margin-top: 56px;
  font-size: 15px;
  color: var(--muted);
  max-width: 56ch;
  line-height: 1.6;
  font-style: italic;
  font-family: 'Fraunces', serif;
}

/* Contact */
.contact {
  background: var(--ink);
  color: var(--cream);
}
.contact .section-label { color: rgba(251, 251, 238, 0.5); }
.contact .section-label::before { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
}

.contact h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}
.contact-intro {
  color: rgba(251, 251, 238, 0.7);
  font-size: 18px;
  line-height: 1.55;
  margin-bottom: 40px;
  max-width: 42ch;
}
.contact-direct {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 16px;
  color: rgba(251, 251, 238, 0.5);
}
.contact-direct a {
  color: var(--yellow);
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 201, 124, 0.3);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}
.contact-direct a:hover { border-bottom-color: var(--yellow); }

/* Form */
form { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(251, 251, 238, 0.5);
  font-weight: 500;
}
.field input,
.field textarea,
.field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(251, 251, 238, 0.2);
  color: var(--cream);
  padding: 12px 0;
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.2s;
  outline: none;
  border-radius: 0;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-bottom-color: var(--yellow);
}
.field textarea {
  resize: vertical;
  min-height: 80px;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3e%3cpath fill='none' stroke='%23FBFBEE' stroke-width='1.5' d='M1 1l5 5 5-5'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 24px;
}
.field select option { background: var(--ink); color: var(--cream); }

button[type="submit"] {
  margin-top: 16px;
  align-self: flex-start;
  background: var(--yellow);
  color: var(--ink);
  border: none;
  padding: 16px 32px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
button[type="submit"]:hover {
  background: var(--yellow-deep);
  transform: translateY(-1px);
}

/* Footer */
footer {
  background: var(--ink);
  color: rgba(251, 251, 238, 0.5);
  padding: 40px 0;
  border-top: 1px solid rgba(251, 251, 238, 0.08);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}
.footer-grid a { color: var(--yellow); text-decoration: none; }

/* Hero seed decoration */
.hero-seed-bg {
  position: absolute;
  right: -80px;
  top: 60%;
  width: 380px;
  opacity: 0.5;
  transform: rotate(-15deg);
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 900px) {
  .hero-seed-bg { width: 220px; right: -60px; top: 70%; opacity: 0.35; }
}

/* ==========================================================================
   Case Study pages
   ========================================================================== */

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.back-link:hover { color: var(--yellow-deep); }
.back-link::before {
  content: '←';
  font-size: 16px;
  line-height: 1;
}

.cs-hero {
  padding: 160px 0 80px;
  border-top: none;
}
@media (max-width: 768px) {
  .cs-hero { padding: 120px 0 56px; }
}
.cs-hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow-deep);
  font-weight: 500;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cs-hero-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--yellow-deep);
}
.cs-hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(54px, 9vw, 130px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 32px;
  max-width: 14ch;
}
.cs-hero-sub {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.35;
  color: var(--ink-soft);
  max-width: 38ch;
  letter-spacing: -0.015em;
}

.cs-meta-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 96px;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
}
@media (max-width: 768px) {
  .cs-meta-bar { grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 56px; }
}
.cs-meta-item {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.cs-meta-item strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
  text-transform: none;
  letter-spacing: -0.005em;
  margin-top: 8px;
}

.cs-image-hero {
  padding: 0;
  border-top: none;
}
.cs-image-hero img,
.cs-image-hero .cs-placeholder {
  width: 100%;
  height: auto;
  display: block;
}

.cs-placeholder {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 18px;
  position: relative;
  overflow: hidden;
}
.cs-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(245, 201, 124, 0.2) 0%, transparent 50%);
}

.cs-section {
  padding: 96px 0;
}
@media (max-width: 768px) {
  .cs-section { padding: 64px 0; }
}
.cs-section.cs-section-soft { background: var(--cream-soft); }
.cs-section.cs-section-blue { background: var(--blue); }
.cs-section.cs-section-ink { background: var(--ink); color: var(--cream); }

.cs-twocol {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .cs-twocol { grid-template-columns: 1fr; gap: 32px; }
}
.cs-section-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.cs-section-ink .cs-section-label { color: rgba(251, 251, 238, 0.5); }
.cs-h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-top: 12px;
}
.cs-prose p {
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.cs-prose p:last-child { margin-bottom: 0; }
.cs-section-ink .cs-prose p { color: rgba(251, 251, 238, 0.75); }

.cs-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 96px 0;
}
@media (max-width: 768px) {
  .cs-image-grid { grid-template-columns: 1fr; gap: 16px; margin: 56px 0; }
}
.cs-image-grid img,
.cs-image-grid .cs-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  display: block;
}

.cs-feature-image {
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cs-feature-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}
.cs-feature-image figcaption {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(15, 20, 25, 0.55);
}

/* Naming feature */
.cs-naming-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(15, 20, 25, 0.18);
  border: 1px solid rgba(15, 20, 25, 0.18);
  margin-top: 56px;
}
@media (max-width: 640px) {
  .cs-naming-grid { grid-template-columns: 1fr; }
}
.cs-naming-item {
  background: var(--blue);
  padding: 40px 32px;
}
.cs-naming-name {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing: -0.02em;
  line-height: 1.0;
  color: var(--ink);
  margin-bottom: 12px;
}
.cs-naming-product {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(15, 20, 25, 0.55);
  font-weight: 500;
  margin-bottom: 16px;
}
.cs-naming-note {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* Pull quote */
.cs-pullquote {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 22ch;
  margin: 0 auto;
  text-align: center;
  padding: 96px 0;
  position: relative;
}
.cs-pullquote::before {
  content: '"';
  display: block;
  font-size: 96px;
  line-height: 0.5;
  color: var(--yellow-deep);
  margin-bottom: 32px;
  font-weight: 500;
}
.cs-pullquote-attr {
  display: block;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 32px;
  font-weight: 500;
}

/* Outcomes */
.cs-outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
@media (max-width: 768px) {
  .cs-outcomes { grid-template-columns: 1fr; }
}
.cs-outcome {
  border-top: 1px solid rgba(251, 251, 238, 0.18);
  padding-top: 24px;
}
.cs-outcome-num {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(40px, 4.5vw, 60px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--yellow);
  margin-bottom: 12px;
}
.cs-outcome-label {
  font-size: 13px;
  color: rgba(251, 251, 238, 0.7);
  line-height: 1.5;
}

/* Next project nav */
.cs-next {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
}
@media (max-width: 640px) {
  .cs-next { grid-template-columns: 1fr; }
}
.cs-next-link {
  display: block;
  padding: 72px 32px;
  text-decoration: none;
  color: var(--ink);
  border-right: 1px solid var(--rule);
  transition: background 0.2s;
}
.cs-next-link:last-child { border-right: none; }
.cs-next-link:hover { background: var(--cream-soft); }
@media (max-width: 640px) {
  .cs-next-link { border-right: none; border-bottom: 1px solid var(--rule); padding: 56px 24px; }
  .cs-next-link:last-child { border-bottom: none; }
}
.cs-next-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 16px;
}
.cs-next-name {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.cs-next-link.next { text-align: right; }

/* Case study anchor sidebar — fixed left rail, scrolls with the page */
.cs-anchors {
  position: fixed;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 0;
}
@media (max-width: 1180px) {
  .cs-anchors { display: none; }
}
.cs-anchors a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  text-decoration: none;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.5s ease;
}
.cs-anchors a::before {
  content: '';
  width: 16px;
  height: 1px;
  background: currentColor;
  transition:
    width 0.45s cubic-bezier(0.2, 0.65, 0.2, 1),
    background 0.3s ease;
}
.cs-anchors a:hover { color: var(--ink); }
.cs-anchors a:hover::before { width: 22px; }
.cs-anchors a.active {
  color: var(--ink);
  font-weight: 600;
}
.cs-anchors a.active::before {
  width: 40px;
  background: var(--yellow-deep);
  height: 1.5px;
}

/* When a dark section is behind the sidebar, swap to a light palette */
.cs-anchors.on-dark a { color: rgba(251, 251, 238, 0.55); }
.cs-anchors.on-dark a:hover { color: var(--cream); }
.cs-anchors.on-dark a.active { color: var(--cream); }
.cs-anchors.on-dark a.active::before { background: var(--yellow); }

/* Anchored sections get scroll-margin so they're not hidden behind the fixed nav */
.cs-section[id],
section[id="brief"],
section[id="approach"],
section[id="deliverables"],
section[id="outcome"] {
  scroll-margin-top: 96px;
}

/* Skin Fusion — color-coded label placeholders & system grid */
.sf-labels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 96px 0;
}
.sf-labels.sf-labels-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}
@media (max-width: 900px) {
  .sf-labels { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .sf-labels { grid-template-columns: 1fr; }
}
.sf-label {
  aspect-ratio: 3 / 4;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  font-family: 'Fraunces', serif;
}
.sf-label-co { background: #C8D5B9; color: #1A2238; }
.sf-label-mg { background: #D5DFE9; color: #1A2238; }
.sf-label-fe { background: #E3C5B5; color: #1A2238; }
.sf-label-zn { background: #F2D9A6; color: #1A2238; }

.sf-badge {
  width: 56px;
  height: 56px;
  border: 1.5px solid currentColor;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 2px;
  font-family: 'Fraunces', serif;
}
.sf-badge-nums {
  font-size: 7px;
  letter-spacing: 0.05em;
  opacity: 0.8;
  margin-bottom: 2px;
  font-family: 'Inter', sans-serif;
}
.sf-badge-symbol {
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
}
.sf-badge-name {
  font-family: 'Inter', sans-serif;
  font-size: 7px;
  letter-spacing: 0.05em;
  margin-top: 2px;
  opacity: 0.85;
}

.sf-label-name {
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-align: center;
}
.sf-label-name span {
  display: block;
  font-style: italic;
  font-weight: 400;
}
.sf-label-info {
  font-family: 'Inter', sans-serif;
  border-top: 1px solid currentColor;
  padding-top: 12px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  font-weight: 500;
}
.sf-label-info strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 13px;
  text-transform: none;
  letter-spacing: -0.005em;
  opacity: 1;
  margin-top: 4px;
}

/* Skin Fusion bottle row */
.sf-bottles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: var(--cream-soft);
  padding: 80px 40px;
  border-radius: 4px;
  margin: 0;
}
@media (max-width: 768px) {
  .sf-bottles { grid-template-columns: 1fr; padding: 56px 24px; }
}
.sf-bottle {
  aspect-ratio: 3 / 4;
  border-radius: 12px 12px 4px 4px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 32px;
  box-shadow: 0 20px 40px rgba(15, 20, 25, 0.08), inset 0 0 60px rgba(255, 255, 255, 0.1);
}
.sf-bottle-co { background: linear-gradient(180deg, #6B8470 0%, #4A6151 100%); }
.sf-bottle-mg { background: linear-gradient(180deg, #5B7EA3 0%, #3F5C7E 100%); }
.sf-bottle-fe { background: linear-gradient(180deg, #8E5A45 0%, #6B4030 100%); }
.sf-bottle::before {
  content: '';
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 32px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 4px 4px 0 0;
}
.sf-bottle-label {
  background: rgba(255, 255, 255, 0.92);
  padding: 16px 12px;
  width: 75%;
  border-radius: 2px;
  text-align: center;
  font-family: 'Fraunces', serif;
  color: #1A2238;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
}
.sf-bottle-label small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.6;
  margin-top: 6px;
}

/* Skin Fusion swatches */
.sf-swatches {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}
@media (max-width: 640px) {
  .sf-swatches { grid-template-columns: repeat(2, 1fr); }
}
.sf-swatch {
  aspect-ratio: 1;
  border-radius: 4px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(26, 34, 56, 0.7);
}
.sf-swatch-co { background: #C8D5B9; }
.sf-swatch-mg { background: #D5DFE9; }
.sf-swatch-fe { background: #E3C5B5; }
.sf-swatch-zn { background: #F2D9A6; }
.sf-swatch strong {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: none;
  color: #1A2238;
}
.sf-swatch-meta {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

/* Lifeblood / enterprise case study */
:root {
  --lb-red: #C8102E;
  --lb-red-soft: rgba(200, 16, 46, 0.08);
}

.lb-confidential {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--cream-soft);
  padding: 8px 14px;
  border-radius: 100px;
  font-weight: 500;
  margin-bottom: 32px;
}
.lb-confidential::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--lb-red);
  border-radius: 50%;
}

.lb-rule {
  border: none;
  border-top: 2px solid var(--lb-red);
  width: 48px;
  margin: 0 0 32px 0;
}

/* Stakeholder constellation */
.lb-stakeholders {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
@media (max-width: 768px) {
  .lb-stakeholders { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 480px) {
  .lb-stakeholders { grid-template-columns: 1fr; }
}
.lb-stakeholder {
  padding: 24px;
  border: 1px solid var(--rule);
  background: var(--cream);
  border-radius: 4px;
  transition: border-color 0.2s, transform 0.2s;
}
.lb-stakeholder:hover { border-color: var(--lb-red); transform: translateY(-2px); }
.lb-stakeholder-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 12px;
  color: var(--lb-red);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.lb-stakeholder-name {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.2;
}
.lb-stakeholder-role {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* Process timeline */
.lb-process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 56px 0 0;
  border-top: 1px solid var(--rule);
  padding-top: 40px;
}
@media (max-width: 900px) {
  .lb-process { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; padding-top: 32px; }
}
@media (max-width: 480px) {
  .lb-process { grid-template-columns: 1fr; }
}
.lb-process-step {
  position: relative;
  padding: 0 20px 0 0;
}
.lb-process-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: 4px;
  top: 18px;
  color: var(--lb-red);
  font-size: 14px;
  opacity: 0.7;
}
@media (max-width: 900px) {
  .lb-process-step::after { display: none; }
}
.lb-process-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 12px;
  color: var(--lb-red);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.lb-process-name {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.2;
}
.lb-process-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* Before / After comparison */
.lb-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 56px 0;
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 640px) {
  .lb-compare { grid-template-columns: 1fr; }
}
.lb-compare-side {
  padding: 40px 32px;
}
.lb-compare-side.before {
  background: var(--cream-soft);
  border-right: 1px solid var(--rule);
}
@media (max-width: 640px) {
  .lb-compare-side.before { border-right: none; border-bottom: 1px solid var(--rule); }
}
.lb-compare-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 16px;
}
.lb-compare-side.before .lb-compare-label { color: var(--muted); }
.lb-compare-side.after .lb-compare-label { color: var(--lb-red); }
.lb-compare-text {
  font-family: 'Fraunces', serif;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.4;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.lb-compare-text em {
  font-style: italic;
  color: var(--muted);
}

/* Discipline bar */
.lb-disciplines {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  padding: 32px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
@media (max-width: 640px) {
  .lb-disciplines { grid-template-columns: 1fr 1fr; gap: 20px; }
}
.lb-discipline-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 8px;
}
.lb-discipline-name {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* Feel Good case study */
:root {
  --fg-green: #1B3328;
  --fg-green-soft: #2A4D3D;
  --fg-cream: #F3EDDB;
  --fg-cream-deep: #E8E0C8;
  --fg-orange: #E89B5B;
  --fg-orange-deep: #C97D3F;
  --fg-sage: #B3C5B0;
  --fg-sky: #B9CDD8;
  --fg-rust: #8E5A45;
  --fg-mustard: #DCB45E;
}

/* Feel Good hero visual — cream with pattern + balloon */
.fg-hero-visual {
  background: var(--fg-cream);
  padding: 96px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  min-height: 480px;
}
@media (max-width: 768px) {
  .fg-hero-visual { padding: 64px 24px; min-height: 360px; }
}
.fg-hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><path d='M 10 40 Q 25 10 40 40 T 70 40' stroke='%231B3328' stroke-width='4' fill='none' stroke-linecap='round' opacity='0.12'/><path d='M 10 70 Q 25 50 40 70 T 70 70' stroke='%231B3328' stroke-width='4' fill='none' stroke-linecap='round' opacity='0.12'/></svg>");
  background-size: 80px 80px;
  pointer-events: none;
  opacity: 0.85;
}
.fg-balloon {
  width: 220px;
  height: auto;
  color: var(--fg-orange);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 8px 24px rgba(27, 51, 40, 0.15));
}
@media (max-width: 768px) {
  .fg-balloon { width: 140px; }
}

/* Feel Good color palette */
.fg-palette {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 24px;
}
@media (max-width: 640px) {
  .fg-palette { grid-template-columns: repeat(3, 1fr); }
}
.fg-swatch {
  aspect-ratio: 1;
  border-radius: 4px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
}
.fg-swatch-name {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 16px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.fg-sw-green { background: var(--fg-green); color: var(--fg-cream); }
.fg-sw-cream { background: var(--fg-cream); color: var(--fg-green); border: 1px solid rgba(27, 51, 40, 0.15); }
.fg-sw-orange { background: var(--fg-orange); color: var(--fg-green); }
.fg-sw-sage { background: var(--fg-sage); color: var(--fg-green); }
.fg-sw-rust { background: var(--fg-rust); color: var(--fg-cream); }

/* Feel ___ campaign system */
.fg-campaigns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 56px 0;
}
.fg-campaigns.fg-campaigns-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

/* Feel Good logo treatment grid */
.fg-logo-treatment {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.fg-logo-treatment img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}
@media (max-width: 760px) {
  .fg-logo-treatment { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .fg-campaigns { grid-template-columns: 1fr; }
}
.fg-campaign {
  aspect-ratio: 3 / 4;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 4px;
  color: var(--fg-cream);
  position: relative;
  overflow: hidden;
}
.fg-campaign::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><path d='M 10 40 Q 25 10 40 40 T 70 40' stroke='%23F3EDDB' stroke-width='4' fill='none' stroke-linecap='round' opacity='0.15'/><path d='M 10 70 Q 25 50 40 70 T 70 70' stroke='%23F3EDDB' stroke-width='4' fill='none' stroke-linecap='round' opacity='0.15'/></svg>");
  background-size: 80px 80px;
  pointer-events: none;
}
.fg-campaign > * { position: relative; z-index: 1; }
.fg-c-1 { background: linear-gradient(180deg, var(--fg-rust) 0%, #6B4030 100%); }
.fg-c-2 { background: linear-gradient(180deg, var(--fg-green) 0%, #0F2118 100%); }
.fg-c-3 { background: linear-gradient(180deg, var(--fg-mustard) 0%, #B6913D 100%); color: var(--fg-green); }

.fg-c-eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.65;
}
.fg-c-word {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.025em;
  line-height: 0.95;
}
.fg-c-word span {
  display: block;
  font-style: normal;
  font-size: 0.45em;
  margin-top: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.7;
}

/* Touchpoints grid */
.fg-touchpoints {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.fg-touchpoints.fg-touchpoints-photo figure {
  margin: 0;
  background: var(--fg-cream);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.fg-touchpoints.fg-touchpoints-photo img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.fg-touchpoints.fg-touchpoints-photo figcaption {
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--fg-green);
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.3;
}
.fg-touchpoints.fg-touchpoints-photo figcaption span {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(27, 51, 40, 0.55);
}
@media (max-width: 900px) {
  .fg-touchpoints { grid-template-columns: repeat(2, 1fr); }
}
.fg-touchpoint {
  aspect-ratio: 1;
  border-radius: 4px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.fg-tp-green { background: var(--fg-green); color: var(--fg-cream); }
.fg-tp-cream { background: var(--fg-cream); color: var(--fg-green); border: 1px solid rgba(27, 51, 40, 0.12); }
.fg-tp-orange { background: var(--fg-orange); color: var(--fg-green); }
.fg-tp-sage { background: var(--fg-sage); color: var(--fg-green); }
.fg-tp-rust { background: var(--fg-rust); color: var(--fg-cream); }
.fg-tp-sky { background: var(--fg-sky); color: var(--fg-green); }
.fg-tp-mustard { background: var(--fg-mustard); color: var(--fg-green); }
.fg-tp-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.6;
}
.fg-tp-name {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.fg-tp-mini-balloon {
  width: 28px;
  height: auto;
  opacity: 0.7;
}

/* Curator card */
.fg-curator {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  margin-top: 56px;
  border: 1px solid rgba(27, 51, 40, 0.12);
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 640px) {
  .fg-curator { grid-template-columns: 1fr; }
}
.fg-curator-side {
  background: var(--fg-green);
  color: var(--fg-cream);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  position: relative;
  overflow: hidden;
}
.fg-curator-side::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><path d='M 10 40 Q 25 10 40 40 T 70 40' stroke='%23F3EDDB' stroke-width='4' fill='none' stroke-linecap='round' opacity='0.1'/></svg>");
  background-size: 80px 80px;
  pointer-events: none;
}
.fg-curator-side > * { position: relative; z-index: 1; }
.fg-curator-name {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.fg-curator-role {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 14px;
  opacity: 0.8;
  margin-top: 8px;
}
.fg-curator-meta {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.6;
  font-weight: 500;
}
.fg-curator-body {
  background: var(--fg-cream);
  padding: 48px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
  color: var(--fg-green);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
}

/* ==========================================================================
   Animations — progressive enhancement
   Only kicks in when .has-anim class is on <html> (set by inline head script).
   Respects prefers-reduced-motion.
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  .has-anim .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .has-anim .reveal-stagger > * { transition: none !important; }
}

/* Base reveal */
.has-anim .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.9s cubic-bezier(0.2, 0.65, 0.2, 1),
    transform 0.9s cubic-bezier(0.2, 0.65, 0.2, 1);
  will-change: opacity, transform;
}
.has-anim .reveal.in-view {
  opacity: 1;
  transform: none;
}

/* Gentler rise for big serif headings */
.has-anim .reveal-soft {
  transform: translateY(12px);
}

/* Subtle scale for special elements */
.has-anim .reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition:
    opacity 0.9s cubic-bezier(0.2, 0.65, 0.2, 1),
    transform 1s cubic-bezier(0.2, 0.65, 0.2, 1);
}
.has-anim .reveal-scale.in-view {
  opacity: 1;
  transform: scale(1);
}

/* Section label: the horizontal line draws in */
.has-anim .section-label::before,
.has-anim .cs-hero-eyebrow::before {
  width: 0;
  transition: width 0.7s cubic-bezier(0.2, 0.65, 0.2, 1) 0.25s;
}
.has-anim .section-label.in-view::before,
.has-anim .cs-hero-eyebrow.in-view::before {
  width: 24px;
}

/* Hero seed mark — gentle scale-rotate after the heading lands.
   Entrance uses keyframe animation so hover transitions can run cleanly afterward. */
.has-anim .hero h1 .seed-inline {
  display: inline-block;
  opacity: 0;
  transform: scale(0) rotate(-25deg);
  transition: transform 0.7s cubic-bezier(0.34, 1.45, 0.64, 1);
  transform-origin: center center;
}
.has-anim .hero h1.in-view .seed-inline {
  animation: heroSeedIn 1.1s cubic-bezier(0.34, 1.45, 0.64, 1) 1.1s forwards;
}
@keyframes heroSeedIn {
  0%   { opacity: 0; transform: scale(0) rotate(-25deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}

/* Hover — same energy as the work tile seed marks.
   Triggered by hovering anywhere on the h1 so the interaction area is generous. */
.hero h1:hover .seed-inline {
  transform: rotate(-18deg) scale(1.18) translateY(-6%);
}

/* Hero background seed — gentle parallax-ish drift.
   No transition-delay so hero hover effect responds immediately. */
.has-anim .hero-seed-bg {
  opacity: 0;
  transform: rotate(-15deg) translateX(40px);
  transition:
    opacity 1.4s ease,
    transform 1.6s cubic-bezier(0.2, 0.65, 0.2, 1);
}
.has-anim .hero-seed-bg.in-view {
  opacity: 0.5;
  transform: rotate(-15deg) translateX(0);
}
@media (max-width: 900px) {
  .has-anim .hero-seed-bg.in-view { opacity: 0.35; }
}

/* Hover refinements ====================================================== */

/* Section-label line gently widens on its own once revealed */
.section-label::before,
.cs-hero-eyebrow::before {
  transition: width 0.6s ease;
}

/* Work tile seed mark rotates subtly on hover */
.work-tile .tile-seed,
.work-featured .work-featured-mark {
  transition: transform 0.6s cubic-bezier(0.2, 0.65, 0.2, 1);
}
.work-tile:hover .tile-seed {
  transform: rotate(-8deg) translateY(-4%);
}
.work-featured:hover .work-featured-mark {
  transform: rotate(-18deg) translateY(-6%) scale(1.06);
}

/* Featured project: arrow nudges on hover */
.work-featured .work-featured-tag {
  transition: transform 0.4s cubic-bezier(0.2, 0.65, 0.2, 1);
}
.work-featured:hover .work-featured-tag {
  transform: translateX(4px);
}

/* Nav logo seed: subtle spin on hover */
.nav-logo .seed-dot {
  transition: transform 0.6s cubic-bezier(0.34, 1.45, 0.64, 1);
}
.nav-logo:hover .seed-dot {
  transform: rotate(20deg);
}

/* Next/prev nav: hover arrow */
.cs-next-link .cs-next-label {
  transition: transform 0.4s cubic-bezier(0.2, 0.65, 0.2, 1), color 0.2s;
}
.cs-next-link:hover .cs-next-label {
  color: var(--yellow-deep);
}
.cs-next-link:hover { color: var(--ink); }
.cs-next-link.next:hover .cs-next-label { transform: translateX(4px); }
.cs-next-link:not(.next):hover .cs-next-label { transform: translateX(-4px); }

/* Stakeholder cards gentle scale-in on hover (already had border swap) */
.lb-stakeholder { will-change: transform; }

/* Form fields: subtle border-bottom thickness pulse on focus */
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-bottom-width: 2px;
}

/* Submit button arrow */
button[type="submit"] {
  position: relative;
  overflow: hidden;
}
button[type="submit"]::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.4) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.8s cubic-bezier(0.2, 0.65, 0.2, 1);
}
button[type="submit"]:hover::after {
  transform: translateX(100%);
}

/* Smooth scroll for in-page anchors is already on html */

/* Back-link hover */
.back-link {
  transition: color 0.2s, transform 0.3s cubic-bezier(0.2, 0.65, 0.2, 1);
}
.back-link:hover { transform: translateX(-3px); }

/* ==========================================================================
   Additional hover interactions
   ========================================================================== */

/* --- Process steps --- */
.process-step {
  transition: transform 0.5s cubic-bezier(0.2, 0.65, 0.2, 1);
  cursor: default;
}
.process-step:hover { transform: translateY(-4px); }
.process-step .process-num,
.process-step h3 {
  transition: transform 0.5s cubic-bezier(0.34, 1.45, 0.64, 1), color 0.3s ease;
}
.process-step:hover .process-num {
  transform: translateX(4px);
  color: var(--ink);
}
.process-step:hover h3 { color: var(--yellow-deep); }
.process-step::after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: var(--yellow-deep);
  margin-top: 16px;
  transition: width 0.6s cubic-bezier(0.2, 0.65, 0.2, 1);
}
.process-step:hover::after { width: 36px; }

/* --- Hero blue seed bg: triggered by hovering anywhere on the hero --- */
.hero-seed-bg {
  transition:
    transform 1.4s cubic-bezier(0.2, 0.65, 0.2, 1),
    opacity 0.9s ease;
}
.hero:hover .hero-seed-bg {
  transform: rotate(-22deg) translateX(-32px) scale(1.06);
  opacity: 0.6;
}

/* --- Open Slot tile: stronger hover behaviour --- */
.work-tile.tile-open {
  background: var(--cream-soft);
  transition:
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    background 0.5s ease,
    border-color 0.3s ease;
}
.work-tile.tile-open:hover {
  transform: translateY(-6px);
  background: linear-gradient(180deg, var(--cream-soft) 0%, #F3E9C4 100%);
  border-color: var(--yellow-deep);
}
.work-tile.tile-open .tile-tag {
  color: var(--yellow-deep);
  border-color: var(--yellow-deep);
  opacity: 1;
  background: transparent;
  transition:
    transform 0.4s cubic-bezier(0.34, 1.45, 0.64, 1),
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}
.work-tile.tile-open:hover .tile-tag {
  background: var(--yellow-deep);
  border-color: var(--yellow-deep);
  color: var(--cream);
  transform: translateX(4px);
}
.work-tile.tile-open .tile-title a {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.34, 1.45, 0.64, 1);
}
.work-tile.tile-open:hover .tile-title a {
  transform: translateX(6px);
}

/* ==========================================================================
   Testimonials — single-slide slider
   ========================================================================== */

.ts-slider {
  position: relative;
  margin-top: 24px;
  padding: 0 72px;
}
@media (max-width: 768px) {
  .ts-slider { padding: 0 48px; }
}
@media (max-width: 480px) {
  .ts-slider { padding: 0 8px; }
}

.ts-track-wrap {
  overflow: hidden;
  position: relative;
}
.ts-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.2, 0.65, 0.2, 1);
}
.ts-slide {
  flex: 0 0 100%;
  padding: 24px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (max-width: 768px) {
  .ts-slide { padding: 16px 16px; }
}

.ts-slide .testimonial-mark {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 120px;
  line-height: 0.4;
  height: 56px;
  color: var(--yellow-deep);
  margin-bottom: 32px;
  transition: transform 0.6s cubic-bezier(0.34, 1.45, 0.64, 1), color 0.4s ease;
  cursor: default;
  display: inline-block;
  transform-origin: center;
}
.ts-slide:hover .testimonial-mark {
  transform: rotate(-15deg) scale(1.25) translateY(8px);
  color: var(--ink);
}

.ts-slide blockquote {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 36px);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 28ch;
  margin: 0 auto 40px;
}

.ts-slide .testimonial-attr {
  padding-top: 24px;
  border-top: 1px solid rgba(15, 20, 25, 0.18);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(15, 20, 25, 0.6);
  font-weight: 500;
  max-width: 40ch;
}
.ts-slide .testimonial-attr strong {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-style: normal;
  display: block;
  font-size: 18px;
  color: var(--ink);
  text-transform: none;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

/* Slider arrows */
.ts-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(15, 20, 25, 0.28);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 18px;
  z-index: 2;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.4s cubic-bezier(0.2, 0.65, 0.2, 1), color 0.3s ease;
  padding: 0;
}
.ts-arrow:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}
.ts-prev { left: 0; }
.ts-next { right: 0; }
.ts-prev:hover { transform: translateY(-50%) translateX(-3px); }
.ts-next:hover { transform: translateY(-50%) translateX(3px); }
@media (max-width: 480px) {
  .ts-arrow { width: 38px; height: 38px; font-size: 15px; }
}

.ts-arrow svg { width: 16px; height: 16px; }

/* Dots */
.ts-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
}
.ts-dot {
  width: 32px;
  height: 2px;
  background: rgba(15, 20, 25, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, width 0.4s cubic-bezier(0.2, 0.65, 0.2, 1);
}
.ts-dot:hover { background: rgba(15, 20, 25, 0.45); }
.ts-dot.active {
  background: var(--ink);
  width: 48px;
}

/* Counter */
.ts-counter {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 14px;
  color: rgba(15, 20, 25, 0.55);
  text-align: center;
  margin-top: 24px;
  letter-spacing: 0.02em;
}
.ts-counter strong {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 500;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.08em;
}

/* ==========================================================================
   ÉKO MELBOURNE — Case Study 05
   A cultural platform for the African diaspora in Melbourne.
   Identity, editorial, event design, pitch deck, creative direction.
   ========================================================================== */
:root {
  --eko-green: #021806;
  --eko-green-soft: #0A2412;
  --eko-cream: #F0E9DD;
  --eko-cream-deep: #E4DCCB;
  --eko-charcoal: #2A2A29;
  --eko-yellow: #FDC300;
  --eko-yellow-soft: rgba(253, 195, 0, 0.18);
  --eko-off: #F8F8F8;
}

/* Page surface */
body.eko-page { background: var(--eko-cream); color: var(--eko-charcoal); }
body.eko-page .cs-hero { background: var(--eko-cream); }
body.eko-page .cs-hero-eyebrow { color: var(--eko-charcoal); }
body.eko-page .cs-hero h1 { color: var(--eko-green); }
body.eko-page .cs-hero-sub { color: rgba(42, 42, 41, 0.72); }
body.eko-page .cs-meta-item strong { color: var(--eko-green); }
body.eko-page .cs-section { background: var(--eko-cream); }
body.eko-page .cs-section-soft { background: var(--eko-cream-deep); }
body.eko-page .cs-section-ink { background: var(--eko-green); color: var(--eko-cream); }
body.eko-page .cs-section-label { color: rgba(42, 42, 41, 0.55); }
body.eko-page .cs-section-ink .cs-section-label { color: rgba(240, 233, 221, 0.6); }
body.eko-page .cs-h2 { color: var(--eko-green); }
body.eko-page .cs-section-ink .cs-h2 { color: var(--eko-cream); }
body.eko-page .cs-prose p { color: rgba(42, 42, 41, 0.82); }
body.eko-page .cs-section-ink .cs-prose p { color: rgba(240, 233, 221, 0.82); }

/* ÉKO wordmark — display lockup */
.eko-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 80px 32px;
  text-align: center;
}
.eko-wordmark {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(96px, 18vw, 220px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--eko-green);
  font-feature-settings: 'ss01', 'ss02';
  display: inline-flex;
  align-items: baseline;
}
.eko-wordmark .acc { position: relative; }
.eko-wordmark .acc::before {
  content: "´";
  position: absolute;
  top: -0.05em;
  left: 0.06em;
  font-size: 0.55em;
  color: var(--eko-green);
}
.eko-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(11px, 1.2vw, 14px);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--eko-charcoal);
}

/* Hero stage with brand colours */
.eko-hero-stage {
  background: var(--eko-cream);
  padding: 0 32px;
  margin: 0 0 40px;
}
.eko-hero-stage .container-narrow { padding: 0; }
.eko-hero-visual {
  background: var(--eko-cream);
  border: 1px solid rgba(42, 42, 41, 0.12);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.eko-hero-visual::before {
  content: "";
  position: absolute;
  top: 18px; left: 18px; right: 18px; bottom: 18px;
  border: 1px solid rgba(42, 42, 41, 0.08);
  pointer-events: none;
}
.eko-hero-visual .eko-issue-tag {
  position: absolute;
  top: 28px; left: 28px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(42, 42, 41, 0.6);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.eko-hero-visual .eko-issue-headline {
  position: absolute;
  bottom: 36px; right: 36px;
  max-width: 60%;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 1.8vw, 22px);
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--eko-green);
  text-align: right;
}
.eko-hero-visual .eko-issue-headline span { background: var(--eko-yellow); padding: 2px 8px; display: inline-block; }

/* Palette */
.eko-palette {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 48px;
}
.eko-swatch {
  aspect-ratio: 1 / 1.15;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
}
.eko-swatch-name {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.eko-sw-green { background: var(--eko-green); color: var(--eko-cream); }
.eko-sw-charcoal { background: var(--eko-charcoal); color: var(--eko-cream); }
.eko-sw-cream { background: var(--eko-cream-deep); color: var(--eko-green); border: 1px solid rgba(42, 42, 41, 0.1); }
.eko-sw-yellow { background: var(--eko-yellow); color: var(--eko-green); }
.eko-sw-off { background: var(--eko-off); color: var(--eko-green); border: 1px solid rgba(42, 42, 41, 0.1); }
@media (max-width: 760px) {
  .eko-palette { grid-template-columns: repeat(2, 1fr); }
}

/* Logo variations grid */
.eko-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.eko-logo-grid.eko-logo-grid-photo {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.eko-logo-grid.eko-logo-grid-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}
@media (max-width: 760px) {
  .eko-logo-grid.eko-logo-grid-photo { grid-template-columns: 1fr; }
}
.eko-logo-card {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  padding: 24px;
  position: relative;
}
.eko-logo-card .eko-wordmark { font-size: clamp(40px, 8vw, 72px); }
.eko-logo-card .eko-sub { font-size: 9px; letter-spacing: 0.35em; margin-top: 10px; }
.eko-logo-card .eko-mini-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.eko-lg-green { background: var(--eko-green); }
.eko-lg-green .eko-wordmark, .eko-lg-green .eko-sub { color: var(--eko-cream); }
.eko-lg-green .eko-wordmark .acc::before { color: var(--eko-cream); }
.eko-lg-cream { background: var(--eko-cream-deep); border: 1px solid rgba(42, 42, 41, 0.1); }
.eko-lg-cream .eko-wordmark, .eko-lg-cream .eko-sub { color: var(--eko-green); }
.eko-lg-cream .eko-wordmark .acc::before { color: var(--eko-green); }
.eko-lg-yellow { background: var(--eko-yellow); }
.eko-lg-yellow .eko-wordmark, .eko-lg-yellow .eko-sub { color: var(--eko-green); }
.eko-lg-yellow .eko-wordmark .acc::before { color: var(--eko-green); }
.eko-lg-charcoal { background: var(--eko-charcoal); }
.eko-lg-charcoal .eko-wordmark, .eko-lg-charcoal .eko-sub { color: var(--eko-yellow); }
.eko-lg-charcoal .eko-wordmark .acc::before { color: var(--eko-yellow); }
.eko-lg-off { background: var(--eko-off); border: 1px solid rgba(42, 42, 41, 0.1); }
.eko-lg-off .eko-wordmark, .eko-lg-off .eko-sub { color: var(--eko-charcoal); }
.eko-lg-off .eko-wordmark .acc::before { color: var(--eko-charcoal); }
.eko-lg-green-yellow { background: var(--eko-green); }
.eko-lg-green-yellow .eko-wordmark { color: var(--eko-yellow); }
.eko-lg-green-yellow .eko-wordmark .acc::before { color: var(--eko-yellow); }
.eko-lg-green-yellow .eko-sub { color: var(--eko-cream); }
@media (max-width: 760px) {
  .eko-logo-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Editorial — magazine spreads */
.eko-magazine {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.eko-magazine.eko-magazine-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
  box-shadow: 0 2px 18px rgba(2, 24, 6, 0.08);
}
.eko-mag-page {
  aspect-ratio: 3 / 4;
  background: var(--eko-off);
  border: 1px solid rgba(42, 42, 41, 0.12);
  padding: 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  border-radius: 2px;
}
.eko-mag-runner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--eko-charcoal);
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--eko-charcoal);
}
.eko-mag-runner-tag {
  background: var(--eko-charcoal);
  color: var(--eko-cream);
  padding: 2px 8px;
}
.eko-mag-section {
  display: inline-block;
  align-self: flex-start;
  background: var(--eko-yellow);
  padding: 4px 10px;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--eko-charcoal);
}
.eko-mag-headline {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--eko-charcoal);
}
.eko-mag-headline.bold {
  font-style: normal;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.eko-mag-deck {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  line-height: 1.4;
  color: rgba(42, 42, 41, 0.7);
  column-count: 2;
  column-gap: 12px;
  margin-top: 6px;
}
.eko-mag-rule {
  flex: 1;
  background: repeating-linear-gradient(
    to bottom,
    rgba(42, 42, 41, 0.18) 0,
    rgba(42, 42, 41, 0.18) 1px,
    transparent 1px,
    transparent 5px
  );
  margin-top: 4px;
  min-height: 30px;
}
.eko-mag-page.cover {
  background: linear-gradient(180deg, #BFBFBF 0%, #8E8E8E 100%);
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
}
.eko-mag-page.cover .eko-mini-lockup { margin-top: -10px; }
.eko-mag-page.cover .eko-mini-lockup .eko-wordmark { color: var(--eko-green); font-size: clamp(40px, 7vw, 76px); }
.eko-mag-page.cover .eko-mini-lockup .eko-wordmark .acc::before { color: var(--eko-green); }
.eko-mag-page.cover .eko-mini-lockup .eko-sub { color: var(--eko-charcoal); margin-top: 6px; }
.eko-mag-cover-banner {
  margin-top: auto;
  align-self: flex-end;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(14px, 1.8vw, 20px);
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--eko-green);
  text-align: right;
}
.eko-mag-cover-banner span { background: var(--eko-yellow); padding: 1px 4px; display: inline-block; }
.eko-mag-cover-date {
  position: absolute;
  bottom: 22px; left: 28px;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--eko-charcoal);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
@media (max-width: 760px) {
  .eko-magazine { grid-template-columns: 1fr; }
}

/* Event bag */
.eko-bag-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.eko-bag {
  aspect-ratio: 3 / 4;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 28px;
  border-radius: 2px;
  overflow: hidden;
}
.eko-bag::before, .eko-bag::after {
  content: "";
  position: absolute;
  top: 0;
  width: 12px;
  height: 38px;
  border: 3px solid currentColor;
  border-radius: 0 0 14px 14px;
  border-top: 0;
  transform: translateY(-1px);
}
.eko-bag::before { left: 28%; }
.eko-bag::after { right: 28%; }
.eko-bag.bag-green { background: var(--eko-green); color: var(--eko-cream); }
.eko-bag.bag-yellow { background: var(--eko-yellow); color: var(--eko-green); }
.eko-bag.bag-charcoal { background: var(--eko-charcoal); color: var(--eko-yellow); }
.eko-bag .eko-mini-lockup { transform: translateY(8px); text-align: center; }
.eko-bag .eko-wordmark { font-size: clamp(46px, 7vw, 78px); color: inherit; }
.eko-bag .eko-wordmark .acc::before { color: inherit; }
.eko-bag .eko-sub { color: inherit; opacity: 0.85; margin-top: 8px; }
.eko-bag-label {
  position: absolute;
  bottom: 18px; left: 22px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
}
@media (max-width: 760px) {
  .eko-bag-grid { grid-template-columns: 1fr; }
}
.eko-bag-single {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.eko-bag-single .eko-bag {
  width: min(360px, 100%);
}

/* Pitch deck */
.eko-deck {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.eko-slide {
  aspect-ratio: 16 / 10;
  border-radius: 2px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(42, 42, 41, 0.08);
}
.eko-slide-num {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.55;
}
.eko-slide-headline {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.eko-slide-tag {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
}
.eko-slide.s-cover { background: var(--eko-green); color: var(--eko-cream); align-items: center; justify-content: center; }
.eko-slide.s-cover .eko-mini-lockup { text-align: center; }
.eko-slide.s-cover .eko-wordmark { color: var(--eko-yellow); font-size: clamp(40px, 5vw, 60px); }
.eko-slide.s-cover .eko-wordmark .acc::before { color: var(--eko-yellow); }
.eko-slide.s-cover .eko-sub { color: var(--eko-cream); margin-top: 6px; }
.eko-slide.s-vision { background: var(--eko-cream-deep); color: var(--eko-green); }
.eko-slide.s-market { background: var(--eko-charcoal); color: var(--eko-cream); }
.eko-slide.s-market .eko-pct { font-family: 'Fraunces', serif; font-size: clamp(38px, 5vw, 56px); font-weight: 600; color: var(--eko-yellow); letter-spacing: -0.02em; }
.eko-slide.s-product { background: var(--eko-yellow); color: var(--eko-green); }
.eko-slide.s-traction { background: var(--eko-off); color: var(--eko-green); }
.eko-slide.s-ask { background: var(--eko-green); color: var(--eko-cream); }
.eko-slide.s-ask .eko-ask-amt { font-family: 'Fraunces', serif; font-size: clamp(34px, 4vw, 48px); color: var(--eko-yellow); font-weight: 600; }
@media (max-width: 760px) {
  .eko-deck { grid-template-columns: 1fr 1fr; }
}

/* Campaign photoshoot mood */
.eko-shoot {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
  margin-top: 48px;
}
.eko-shoot-frame {
  aspect-ratio: 4 / 5;
  background: linear-gradient(180deg, #C8C7C2 0%, #6F6E69 100%);
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.eko-shoot-frame.alt {
  background: linear-gradient(180deg, #A19F98 0%, #4A4A45 100%);
}
.eko-shoot-frame.tall { aspect-ratio: 4 / 5; }
.eko-shoot-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}
.eko-shoot-stack .eko-shoot-frame { aspect-ratio: auto; }
.eko-shoot-frame .eko-shoot-cap {
  background: var(--eko-yellow);
  color: var(--eko-charcoal);
  padding: 6px 12px;
  margin: 0 0 20px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eko-shoot-frame .eko-shoot-overlay {
  position: absolute;
  top: 24px; left: 24px;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1;
  color: var(--eko-cream);
  letter-spacing: -0.02em;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
  max-width: 60%;
}
@media (max-width: 760px) {
  .eko-shoot { grid-template-columns: 1fr; }
}
.eko-shoot.eko-shoot-photo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}
.eko-shoot.eko-shoot-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}
@media (max-width: 760px) {
  .eko-shoot.eko-shoot-photo { grid-template-columns: 1fr; }
}

/* Event flyer (front + back) */
.eko-flyer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.eko-flyer figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.eko-flyer img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
  box-shadow: 0 2px 18px rgba(2, 24, 6, 0.08);
}
.eko-flyer figcaption {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(42, 42, 41, 0.55);
}
@media (max-width: 760px) {
  .eko-flyer { grid-template-columns: 1fr; }
}

/* Scope grid (deliverables breakdown) */
.eko-scope {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(240, 233, 221, 0.18);
  margin-top: 48px;
  border: 1px solid rgba(240, 233, 221, 0.18);
}
.eko-scope-item {
  background: var(--eko-green);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.eko-scope-num {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--eko-yellow);
}
.eko-scope-title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--eko-cream);
  line-height: 1.15;
}
.eko-scope-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(240, 233, 221, 0.75);
}
@media (max-width: 760px) {
  .eko-scope { grid-template-columns: 1fr; }
}

/* Homepage tile (Eko) */
.work-tile.tile-eko {
  background: var(--eko-green);
  color: var(--eko-cream);
}
.work-tile.tile-eko .tile-meta { color: rgba(240, 233, 221, 0.6); }
.work-tile.tile-eko .tile-tag {
  background: transparent;
  color: var(--eko-cream);
  border-color: var(--eko-cream);
  opacity: 1;
}
.work-tile.tile-eko .tile-desc { color: rgba(240, 233, 221, 0.78); }
.work-tile.tile-eko .tile-seed { color: rgba(253, 195, 0, 0.18); }




