@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,700&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --greige:      #f2ede8;
  --greige-mid:  #e8e1d9;
  --greige-dark: #c8bfb4;
  --ink:         #1a1714;
  --ink-soft:    #4a4540;
  --ink-muted:   #8a837c;
  --pink:        #d4006b;
  --pink-dark:   #b3005a;
  --pink-light:  #f0407e;
  --white:       #faf8f5;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV standard */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 4rem;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--greige-mid);
}
.nav-logo { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--ink); text-decoration: none; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--pink); }

/* NAV transparent (index only) */
nav.transparent { background: transparent; border-bottom-color: transparent; transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease; }
nav.transparent .nav-logo { color: var(--white); transition: color 0.4s ease; }
nav.transparent .nav-links a { color: rgba(255,255,255,0.8); transition: color 0.4s ease; }
nav.transparent.scrolled { background: rgba(250, 248, 245, 0.95); backdrop-filter: blur(12px); padding: 1rem 4rem; border-bottom: 1px solid var(--greige-mid); }
nav.transparent.scrolled .nav-logo { color: var(--ink); }
nav.transparent.scrolled .nav-links a { color: var(--ink-soft); }
.nav-links a:hover { color: var(--pink) !important; }

/* Hamburger */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 0.5rem; background: none; border: none; z-index: 201; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); transition: all 0.3s ease; }
nav.transparent .nav-hamburger span { background: var(--white); }
nav.transparent.scrolled .nav-hamburger span { background: var(--ink); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Footer */
footer { background: var(--ink); border-top: 1px solid rgba(255,255,255,0.07); padding: 2rem 4rem; display: flex; justify-content: space-between; align-items: center; }
footer p { font-size: 0.75rem; color: var(--ink-muted); letter-spacing: 0.05em; }

/* Shared */
.section-label { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--pink); margin-bottom: 1rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.15; color: var(--ink); margin-bottom: 3rem; }
.btn { display: inline-block; padding: 0.85rem 2rem; background: var(--pink); color: var(--white); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; white-space: nowrap; transition: background 0.2s ease, transform 0.2s ease; flex-shrink: 0; }
.btn:hover { background: var(--pink-dark); transform: scale(1.02); }

/* Animations */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── INDEX ── */
.hero { position: relative; height: 100vh; min-height: 600px; display: flex; align-items: center; overflow: hidden; background: #1a1714; }
.hero-content { position: relative; z-index: 2; padding: 0 4rem; max-width: 900px; }
.hero-eyebrow { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(250,248,245,0.85); margin-bottom: 1.5rem; opacity: 0; animation: fadeUp 0.8s ease 0.3s forwards; }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(3.5rem, 8vw, 7rem); font-weight: 700; line-height: 1.05; color: var(--white); letter-spacing: -0.01em; margin-bottom: 2rem; opacity: 0; animation: fadeUp 0.8s ease 0.5s forwards; }
.hero-title em { font-style: italic; color: var(--greige-dark); }
.hero-subtitle { font-size: 1.05rem; font-weight: 300; color: rgba(250,248,245,0.72); max-width: 520px; line-height: 1.75; opacity: 0; animation: fadeUp 0.8s ease 0.7s forwards; }
.hero-cta { display: inline-block; margin-top: 2.5rem; padding: 0.85rem 2rem; background: var(--pink); color: var(--white); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; transition: background 0.2s ease, transform 0.2s ease; opacity: 0; animation: fadeUp 0.8s ease 0.9s forwards; }
.hero-cta:hover { background: var(--pink-dark); transform: scale(1.02); }
.hero-scroll { position: absolute; bottom: 2.5rem; left: 4rem; z-index: 2; display: flex; align-items: center; gap: 0.75rem; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.35); opacity: 0; animation: fadeIn 1s ease 1.4s forwards; }
.hero-scroll::before { content: ''; display: block; width: 40px; height: 1px; background: rgba(255,255,255,0.25); }
.services { background: var(--greige); padding: 7rem 4rem; }
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--greige-dark); }
.service-item { padding: 3rem 2.5rem 3rem 0; border-right: 1px solid var(--greige-dark); }
.service-item:last-child { border-right: none; padding-right: 0; }
.service-item:not(:first-child) { padding-left: 2.5rem; }
.service-number { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: var(--greige-dark); line-height: 1; margin-bottom: 1.25rem; }
.service-name { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); margin-bottom: 1rem; }
.service-desc { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.7; font-weight: 300; }
.work { background: var(--white); padding: 7rem 4rem; }
.work-inner { max-width: 1200px; margin: 0 auto; }
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--greige-mid); }
.case-study { background: var(--white); padding: 3rem; display: flex; flex-direction: column; gap: 1.25rem; text-decoration: none; color: inherit; opacity: 0; transform: translateY(28px); transition: opacity 0.55s ease, transform 0.55s ease, background 0.25s ease; }
.case-study.visible { opacity: 1; transform: translateY(0); }
.case-study:hover { background: var(--greige); }
.case-study:hover .cs-arrow { transform: translate(4px, -4px); }
.cs-image { width: calc(100% + 6rem); height: 220px; overflow: hidden; margin: -3rem -3rem 0 -3rem; }
.cs-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.case-study:hover .cs-image img { transform: scale(1.04); }
.cs-index { font-family: 'Playfair Display', serif; font-size: 0.95rem; color: var(--greige-dark); font-weight: 700; }
.cs-card-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; line-height: 1.2; color: var(--ink); }
.cs-desc { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.75; font-weight: 300; flex: 1; }
.cs-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cs-tag { font-size: 0.67rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); border: 1px solid var(--greige-dark); padding: 0.3rem 0.75rem; }
.cs-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 1rem; border-top: 1px solid var(--greige-mid); }
.cs-cta { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pink); }
.cs-arrow { font-size: 1.1rem; color: var(--pink); transition: transform 0.2s ease; }
.contact { background: var(--ink); color: var(--white); text-align: center; padding: 8rem 4rem; }
.contact .section-label { color: var(--pink-light); }
.contact .section-title { color: var(--white); max-width: 600px; margin: 1rem auto 2.5rem; }
.contact-btn { display: block; width: fit-content; margin: 0 auto 2.5rem; padding: 0.85rem 2.5rem; background: var(--pink); color: var(--white); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; transition: background 0.2s ease, transform 0.2s ease; }
.contact-btn:hover { background: var(--pink-dark); transform: scale(1.02); }
.contact-links { display: flex; justify-content: center; gap: 2rem; }
.contact-link { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-muted); text-decoration: none; transition: color 0.2s; }
.contact-link:hover { color: var(--pink); }

/* ── PAGE HEADER (about, playground) ── */
.page-header { padding: 10rem 4rem 5rem; background: var(--greige); border-bottom: 1px solid var(--greige-mid); }
.page-header-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; }
.page-eyebrow { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--pink); margin-bottom: 1rem; }
.page-title { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 700; line-height: 1.05; color: var(--ink); }
.page-title em { font-style: italic; color: var(--ink-muted); }
.page-title--sm {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}
.page-intro { font-size: 1.05rem; color: var(--ink-soft); line-height: 1.8; font-weight: 300; }
.page-intro p + p { margin-top: 1.25rem; }
.page-intro s { color: var(--greige-dark); }

/* ── ABOUT ── */
.content { max-width: 1200px; margin: 0 auto; padding: 6rem 4rem; }
.bio-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 6rem; padding-bottom: 6rem; border-bottom: 1px solid var(--greige-mid); margin-bottom: 6rem; }
.bio-label { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--pink); padding-top: 0.4rem; }
.bio-text { font-size: 1rem; color: var(--ink-soft); line-height: 1.85; font-weight: 300; }
.bio-text p + p { margin-top: 1.5rem; }
.community-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 6rem; padding-bottom: 6rem; border-bottom: 1px solid var(--greige-mid); margin-bottom: 6rem; }
.community-items { display: flex; flex-direction: column; gap: 2.5rem; }
.community-role { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pink); margin-bottom: 0.4rem; }
.community-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--ink); margin-bottom: 0.6rem; line-height: 1.3; }
.community-desc { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.75; font-weight: 300; }
.testimonials-header { margin-bottom: 3rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--greige-mid); }
.testimonial { background: var(--white); padding: 3rem; display: flex; flex-direction: column; gap: 1.5rem; opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.testimonial.visible { opacity: 1; transform: translateY(0); }
.testimonial-quote { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-style: italic; font-weight: 700; color: var(--ink); line-height: 1.65; flex: 1; }
.testimonial-quote::before { content: '\201C'; font-size: 3rem; line-height: 0; vertical-align: -0.6rem; color: var(--pink); margin-right: 0.1rem; font-style: normal; }
.testimonial-quote::after { content: '\201D'; font-size: 3rem; line-height: 0; vertical-align: -0.6rem; color: var(--pink); margin-left: 0.1rem; font-style: normal; }
.testimonial-author { border-top: 1px solid var(--greige-mid); padding-top: 1.25rem; }
.testimonial-name { font-size: 0.82rem; font-weight: 500; color: var(--ink); margin-bottom: 0.2rem; }
.testimonial-role { font-size: 0.75rem; color: var(--ink-muted); letter-spacing: 0.04em; }
.about-cta { margin-top: 6rem; padding: 5rem 4rem; background: var(--greige); display: flex; justify-content: space-between; align-items: center; gap: 2rem; }
.about-cta-text { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; color: var(--ink); line-height: 1.2; }
.about-cta-text em { font-style: italic; color: var(--ink-muted); }

/* ── PLAYGROUND ── */
.projects { max-width: 800px; margin: 0 auto; padding: 6rem 4rem; }
.project { padding-bottom: 6rem; border-bottom: 1px solid var(--greige-mid); margin-bottom: 6rem; opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.project:last-child { border-bottom: none; margin-bottom: 0; }
.project.visible { opacity: 1; transform: translateY(0); }
.project-header { display: flex; align-items: baseline; gap: 1.5rem; margin-bottom: 0.75rem; }
.project-number { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--greige-dark); }
.project-title { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; color: var(--ink); line-height: 1.2; }
.project-status { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 2rem; }
.project-status::before { content: ''; display: block; width: 7px; height: 7px; border-radius: 50%; background: var(--greige-dark); flex-shrink: 0; }
.project-status.live { color: #2d7a4f; }
.project-status.live::before { background: #2d7a4f; }
.project-status.in-progress { color: #a05c00; }
.project-status.in-progress::before { background: #a05c00; }
.project-desc { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.8; font-weight: 300; max-width: 680px; }
.project-desc + .project-desc { margin-top: 1rem; }
.project-img-full { margin: 2.5rem 0; }
.project-img-full img { width: 100%; height: auto; display: block; }
.project-img-side { display: grid; grid-template-columns: 2fr 2fr; gap: 3rem; align-items: start; margin: 2.5rem 0; }
.project-img-side img { width: 100%; height: auto; display: block; }
.project-img-constrained { margin: 2.5rem 0; max-width: 360px; }
.project-img-constrained img { width: 100%; height: auto; display: block; }
.project-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pink); text-decoration: none; margin-top: 1.5rem; transition: gap 0.2s ease; }
.project-link:hover { gap: 0.75rem; }
.project-link span { font-size: 1rem; }

/* ── CASE STUDY SHARED ── */
.cs-hero { padding: 10rem 4rem 0; background: var(--ink); color: var(--white); }
.cs-hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; padding-bottom: 4rem; }
.hero-image { max-width: 1200px; margin: 0 auto; }
.hero-image-placeholder { width: 100%; height: 480px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; }
.hero-image-placeholder span { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.25); }
.cs-back { display: block; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-muted); text-decoration: none; margin-bottom: 2rem; transition: color 0.2s; }
.cs-back:hover { color: var(--pink-light); }
.cs-eyebrow { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--pink-light); margin-bottom: 1rem; }
.cs-title { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; line-height: 1.1; color: var(--white); margin-bottom: 1.5rem; }
.cs-subtitle { font-size: 1.05rem; font-weight: 300; color: rgba(250,248,245,0.7); line-height: 1.8; }
.at-a-glance { background: var(--greige); border-bottom: 1px solid var(--greige-mid); }
.at-a-glance-inner { max-width: 1200px; margin: 0 auto; padding: 4rem; display: grid; grid-template-columns: repeat(3, 1fr); }
.glance-item { padding: 0 2rem 0 0; border-right: 1px solid var(--greige-dark); }
.glance-item:last-child { border-right: none; padding-right: 0; }
.glance-item:not(:first-child) { padding-left: 2rem; }
.glance-label { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 0.6rem; }
.glance-value { font-size: 0.95rem; color: var(--ink-soft); font-weight: 300; line-height: 1.6; }
.glance-value a { color: var(--pink); text-decoration: none; }
.glance-value a:hover { text-decoration: underline; }
.cs-content { max-width: 800px; margin: 0 auto; padding: 6rem 4rem; }
.cs-section { margin-bottom: 6rem; }
.cs-section-label { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--pink); margin-bottom: 1rem; }
.cs-section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; line-height: 1.15; color: var(--ink); margin-bottom: 1.5rem; }
.cs-body { font-size: 1rem; color: var(--ink-soft); line-height: 1.85; font-weight: 300; }
.cs-body p + p { margin-top: 1.25rem; }
.cs-footnote { font-size: 0.82rem; color: var(--ink-muted); border-top: 1px solid var(--greige-mid); padding-top: 1rem; margin-top: 1.5rem; font-style: italic; line-height: 1.6; }
.cs-subsection { margin-bottom: 4rem; }
.cs-subsection-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--ink); margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--greige-mid); }
.pain-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--greige-mid); margin: 2rem 0; }
.pain-points--2col {
  grid-template-columns: repeat(2, 1fr);
}
.pain-point { background: var(--white); padding: 2rem; }
.pain-point-title { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); margin-bottom: 0.75rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--pink); display: inline-block; }
.pain-point-desc { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.75; font-weight: 300; }
.cs-quote { background: var(--greige); border-left: 3px solid var(--pink); padding: 3rem 3.5rem; margin: 4rem 0; }
.cs-quote-stat { font-family: 'Playfair Display', serif; font-size: 5rem; font-weight: 700; color: var(--pink); line-height: 1; margin-bottom: 1rem; }
.cs-quote-text { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-style: italic; font-weight: 700; color: var(--ink); line-height: 1.6; }
.cs-pullquote-cite { font-size: 0.78rem; font-weight: 500; color: var(--ink-muted); letter-spacing: 0.05em; margin-top: 1rem; display: block; }
.cs-pullquote-block { background: var(--greige); border-left: 3px solid var(--pink); padding: 2.5rem 3rem; margin: 3rem 0; }
.cs-pullquote-text { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-style: italic; font-weight: 700; color: var(--ink); line-height: 1.65; margin-bottom: 1rem; }
.cs-pullquote-text::before { content: '\201C'; font-size: 3rem; line-height: 0; vertical-align: -0.6rem; color: var(--pink); margin-right: 0.1rem; font-style: normal; }
.cs-pullquote-text::after { content: '\201D'; font-size: 3rem; line-height: 0; vertical-align: -0.6rem; color: var(--pink); margin-left: 0.1rem; font-style: normal; }
.cs-stat-block { background: var(--greige); border-left: 3px solid var(--pink); padding: 3rem 3.5rem; margin: 3rem 0; }
.cs-stat { font-family: 'Playfair Display', serif; font-size: 4.5rem; font-weight: 700; color: var(--pink); line-height: 1; margin-bottom: 0.75rem; }
.cs-stat-text { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-style: italic; font-weight: 700; color: var(--ink); line-height: 1.6; margin-bottom: 1.5rem; }
.cs-pullquote { font-size: 0.95rem; color: var(--ink-soft); font-weight: 300; font-style: italic; line-height: 1.75; padding-top: 1.5rem; border-top: 1px solid var(--greige-dark); }
.cs-pullquote cite { display: block; margin-top: 0.75rem; font-size: 0.78rem; font-style: normal; font-weight: 500; color: var(--ink-muted); letter-spacing: 0.05em; }
.stats-block { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--greige-mid); margin: 3rem 0; }
.stat-item { background: var(--white); padding: 2.5rem 2rem; display: flex; flex-direction: column; gap: 0.5rem; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700; color: var(--pink); line-height: 1; }
.stat-label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); }
.stat-desc { font-size: 0.82rem; color: var(--ink-muted); line-height: 1.6; font-weight: 300; }
.cs-img-stack { display: flex; flex-direction: column; gap: 3rem; margin-top: 2.5rem; }
.cs-img-block { background: var(--greige); padding: 2rem; }
.cs-img-block img, .cs-img-block video { width: 100%; height: auto; display: block; box-shadow: 0 4px 24px rgba(26,23,20,0.08); }
.cs-img-block .img-caption { margin-top: 1rem; }
.img-placeholder { width: 100%; background: var(--greige-mid); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; color: var(--greige-dark); }
.img-placeholder span { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; text-align: center; padding: 0 1rem; }
.img-placeholder--tall { height: 400px; }
.img-placeholder--medium { height: 300px; }
.img-placeholder--short { height: 220px; }
.img-caption { font-size: 0.78rem; color: var(--ink-muted); font-style: italic; margin-top: 0.75rem; line-height: 1.5; }
.img-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--greige-mid); margin: 2rem 0; }
.img-grid-2 > div { background: var(--white); }
.img-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--greige-mid); margin: 2rem 0; }
.img-grid-3 > div { background: var(--white); }
.img-grid-item { padding: 1rem; }
.img-grid-item .img-caption { margin-top: 0.5rem; }
.cs-outcome { background: var(--ink); color: var(--white); padding: 5rem 4rem; margin: 4rem -4rem -6rem; }
.cs-outcome-inner { max-width: 800px; margin: 0 auto; }
.cs-outcome .cs-section-label { color: var(--pink-light); }
.cs-outcome-label { color: var(--pink-light); margin-bottom: 1rem; font-size: 0.68rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; }
.cs-outcome-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 1.5rem; }
.cs-outcome-body { font-size: 1rem; color: rgba(250,248,245,0.72); line-height: 1.85; font-weight: 300; margin-bottom: 2rem; }
.cs-outcome-body p + p { margin-top: 1rem; }
.cs-outcome-link { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 2rem; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pink); text-decoration: none; transition: gap 0.2s; }
.cs-outcome-link:hover { gap: 0.75rem; }
.outcome-points { display: flex; flex-direction: column; gap: 2px; background: rgba(255,255,255,0.06); margin: 2rem 0 3rem; }
.outcome-point { background: rgba(255,255,255,0.03); padding: 2rem 2.5rem; border-left: 3px solid var(--pink-light); }
.outcome-point-title { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pink-light); margin-bottom: 0.5rem; }
.outcome-point-desc { font-size: 0.95rem; color: rgba(250,248,245,0.72); line-height: 1.75; font-weight: 300; }
.outcome-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: rgba(255,255,255,0.06); margin: 3rem 0; }
.outcome-stat-item { background: rgba(255,255,255,0.03); padding: 2rem 1.5rem; }
.outcome-stat-number { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: var(--pink-light); line-height: 1; margin-bottom: 0.5rem; }
.outcome-stat-label { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(250,248,245,0.6); margin-bottom: 0.4rem; }
.outcome-stat-desc { font-size: 0.8rem; color: rgba(250,248,245,0.4); line-height: 1.5; font-weight: 300; }
.cs-closing-quote { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 3rem; margin-top: 3rem; }
.cs-closing-quote-text { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-style: italic; font-weight: 700; color: rgba(250,248,245,0.85); line-height: 1.7; margin-bottom: 1rem; }
.cs-closing-quote-text::before { content: '\201C'; font-size: 3rem; line-height: 0; vertical-align: -0.6rem; color: var(--pink-light); margin-right: 0.1rem; font-style: normal; }
.cs-closing-quote-text::after { content: '\201D'; font-size: 3rem; line-height: 0; vertical-align: -0.6rem; color: var(--pink-light); margin-left: 0.1rem; font-style: normal; }
.cs-closing-quote-cite { font-size: 0.78rem; font-weight: 500; color: var(--ink-muted); letter-spacing: 0.05em; }
.cs-next { background: var(--greige); padding: 4rem; display: flex; justify-content: space-between; align-items: center; gap: 2rem; text-decoration: none; color: inherit; transition: background 0.2s; }
.cs-next:hover { background: var(--greige-mid); }
.cs-next-label { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 0.5rem; }
.cs-next-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--ink); }
.cs-next-arrow { font-size: 2rem; color: var(--pink); }

/* Page-specific components */
.design-carousel { background: var(--greige); padding: 3rem 4rem; margin: 2rem -4rem; }
.design-carousel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--greige-mid); }
.design-carousel-item { background: var(--white); padding: 1rem; }
.design-carousel-caption { font-size: 0.78rem; color: var(--ink-muted); font-style: italic; margin-top: 1.5rem; text-align: center; line-height: 1.5; }
.decision-list { display: flex; flex-direction: column; gap: 2px; background: var(--greige-mid); margin: 2rem 0; }
.decision-item { background: var(--white); padding: 2.5rem; display: grid; grid-template-columns: auto 1fr; gap: 2rem; align-items: start; }
.decision-number { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--greige-dark); line-height: 1; }
.decision-title { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); margin-bottom: 0.75rem; }
.decision-desc { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.8; font-weight: 300; }
.questions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--greige-mid); margin: 2rem 0; }
.question-item { background: var(--greige); padding: 2rem; }
.question-q { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; font-style: italic; color: var(--ink); margin-bottom: 1rem; line-height: 1.4; }
.question-a { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.7; font-weight: 300; }
.question-a::before { content: '→ '; color: var(--pink); font-weight: 500; }
.future-phases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--greige-mid); margin: 2rem 0; }
.future-phase { background: var(--white); padding: 0; }
.future-phase-img { width: 100%; height: 180px; background: var(--greige-mid); display: flex; align-items: center; justify-content: center; }
.future-phase-img span { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--greige-dark); text-align: center; padding: 0 1rem; }
.future-phase-body { padding: 1.5rem; }
.future-phase-title { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); margin-bottom: 0.6rem; }
.future-phase-desc { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.7; font-weight: 300; }
.hero-carousel { max-width: 1200px; margin: 0 auto; }
.hero-carousel-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.08); }
.carousel-placeholder { background: rgba(255,255,255,0.04); height: 280px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; padding: 1rem; }
.carousel-placeholder span { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); text-align: center; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1.25rem 2rem; }
  nav.transparent { background: rgba(250,248,245,0.97); }
  nav.transparent .nav-logo { color: var(--ink) !important; }
  nav.transparent .nav-hamburger span { background: var(--ink) !important; }
  .nav-hamburger { display: flex; }
  .nav-links { display: none !important; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: var(--white); flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem; z-index: 200; overflow: hidden; }
  .nav-links.open { display: flex !important; }
  .nav-links a { font-size: 1.2rem !important; color: var(--ink) !important; letter-spacing: 0.1em; }
  .hero-content { padding: 0 2rem; }
  .hero-scroll { left: 2rem; }
  .hero-image img, .hero-image video { height: 280px; object-fit: cover; }
  .services { padding: 5rem 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-item { border-right: none; border-bottom: 1px solid var(--greige-dark); padding: 2.5rem 0; }
  .service-item:not(:first-child) { padding-left: 0; }
  .work { padding: 5rem 2rem; }
  .work-grid { grid-template-columns: 1fr; }
  .contact { padding: 5rem 2rem; }
  .page-header { padding: 8rem 2rem 4rem; }
  .page-header-inner { grid-template-columns: 1fr; gap: 2rem; }
  .content { padding: 4rem 2rem; }
  .bio-grid, .community-grid { grid-template-columns: 1fr; gap: 2rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-cta { flex-direction: column; align-items: flex-start; padding: 3rem 2rem; }
  .projects { padding: 4rem 2rem; }
  .project-img-side { grid-template-columns: 1fr; }
  .project-img-constrained { max-width: 100%; }
  .cs-hero { padding: 8rem 2rem 4rem; }
  .cs-hero-inner { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 3rem; }
  .at-a-glance-inner { grid-template-columns: 1fr; gap: 0; padding: 2rem; }
  .glance-item { border-right: none; padding: 0 0 1.5rem; border-bottom: 1px solid var(--greige-dark); }
  .glance-item:last-child { border-bottom: none; padding-bottom: 0; }
  .glance-item:not(:first-child) { padding-left: 0; }
  .cs-content { padding: 4rem 2rem; }
  .pain-points, .questions-grid, .future-phases { grid-template-columns: 1fr; }
  .img-grid-2, .img-grid-3 { grid-template-columns: 1fr !important; }
  .hero-carousel-inner { grid-template-columns: 1fr; }
  .decision-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .design-carousel { margin: 2rem -2rem; padding: 2rem; }
  .design-carousel-grid { grid-template-columns: 1fr; }
  .stats-block { grid-template-columns: repeat(2, 1fr); }
  .outcome-stats { grid-template-columns: repeat(2, 1fr); }
  .cs-outcome { margin: 4rem -2rem -4rem; padding: 4rem 2rem; }
  .cs-next { padding: 3rem 2rem; flex-direction: column; align-items: flex-start; }
  footer { padding: 1.5rem 2rem; flex-direction: column; gap: 0.5rem; text-align: center; }
}