/* ═══════════════════════════════════════════
   Kate Tallman MBA — Shared Stylesheet
   Desktop-first with mobile media queries
═══════════════════════════════════════════ */

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

:root {
  --sage: #4a6b5a;
  --sage-deep: #2b4a3a;
  --sage-light: #7aab90;
  --sage-pale: #b8d4c4;
  --sage-ghost: #e8f0eb;
  --cream: #faf8f3;
  --warm: #f2ede4;
  --ink: #1c2a24;
  --mid: #6b8070;
  --rule: rgba(74,107,90,0.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
}

/* ══════════════════════════════
   NAV — DESKTOP
══════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 72px;
  background: rgba(250,248,243,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--sage-deep);
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 44px;
  list-style: none;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--sage-deep); }

/* Hamburger button — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--sage-deep);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(8.25px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8.25px) rotate(-45deg); }

/* ══════════════════════════════
   PAGE WRAPPER
══════════════════════════════ */
.page-content { padding-top: 68px; }

/* ══════════════════════════════
   ANIMATIONS
══════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-1 { animation: fadeUp 0.55s ease both; }
.animate-2 { animation: fadeUp 0.55s 0.08s ease both; }
.animate-3 { animation: fadeUp 0.55s 0.16s ease both; }
.animate-4 { animation: fadeUp 0.55s 0.22s ease both; }
.animate-5 { animation: fadeUp 0.55s 0.30s ease both; }

/* ══════════════════════════════
   HOME — HERO
══════════════════════════════ */
.home-hero {
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: calc(100vh - 68px);
}

.hero-photo-col {
  position: relative;
  overflow: hidden;
  background: var(--warm);
}

.hero-photo-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-photo-col::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 240px;
  background: linear-gradient(to top, rgba(27,42,36,0.55), transparent);
}

.hero-text-col {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 60px;
  position: relative;
}

.hero-banner-strip {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sage-light) 0%, var(--sage-pale) 50%, var(--sage-light) 100%);
}

.hero-kicker {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-kicker::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--sage-pale);
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 3vw, 3.6rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--ink);
  margin-bottom: 24px;
}

.hero-h1 em { font-style: italic; color: var(--sage); }

.hero-p {
  font-size: 0.92rem;
  line-height: 1.82;
  color: var(--mid);
  max-width: 420px;
  margin-bottom: 20px;
}

.hero-deliverable-note {
  font-size: 0.84rem;
  line-height: 1.72;
  color: var(--sage-deep);
  max-width: 420px;
  margin-bottom: 40px;
  padding-left: 14px;
  border-left: 3px solid var(--sage-light);
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--sage-deep);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 0.73rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  transition: background 0.25s;
  align-self: flex-start;
  text-decoration: none;
}

.hero-btn:hover { background: var(--sage); }

/* ══════════════════════════════
   HOME — ABOUT STRIP
══════════════════════════════ */
.about-strip {
  background: var(--sage-deep);
  padding: 80px 72px;
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.about-divider { background: rgba(255,255,255,0.1); }

.about-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-pale);
  margin-bottom: 20px;
}

.about-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 400;
  font-style: italic;
  color: #fff;
  line-height: 1.5;
}

.about-body {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.88;
  margin-bottom: 24px;
}

.about-firms {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-light);
}

/* ══════════════════════════════
   HOME — SERVICE TILES
══════════════════════════════ */
.home-services {
  padding: 100px 72px;
  background: var(--warm);
}

.home-svc-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 60px;
}

.sec-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.sec-eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--sage);
}

.sec-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 2.4vw, 2.5rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
}

.sec-h2 em { font-style: italic; color: var(--sage); }

.see-all {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  text-decoration: none;
  transition: color 0.2s;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
}

.see-all:hover { color: var(--sage-deep); }

.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tile {
  background: var(--cream);
  padding: 48px 40px 40px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  display: block;
  color: inherit;
}

.tile:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(43,74,58,0.1); }

.tile-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--sage-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.tile:hover .tile-accent { transform: scaleX(1); }

.tile-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--sage-ghost);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}

.tile-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--sage-deep);
  margin-bottom: 14px;
  line-height: 1.3;
}

.tile-desc { font-size: 0.84rem; color: var(--mid); line-height: 1.72; margin-bottom: 20px; }
.tile-keep { font-size: 0.78rem; color: var(--sage); font-style: italic; line-height: 1.6; }

/* ══════════════════════════════
   SVG BACKGROUND PATTERN
══════════════════════════════ */
.svg-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='400' viewBox='0 0 600 400'%3E%3Ccircle cx='80' cy='60' r='80' fill='none' stroke='%23b8d4c4' stroke-width='1'/%3E%3Ccircle cx='80' cy='60' r='140' fill='none' stroke='%23b8d4c4' stroke-width='0.5'/%3E%3Ccircle cx='520' cy='340' r='100' fill='none' stroke='%23b8d4c4' stroke-width='1'/%3E%3Ccircle cx='520' cy='340' r='180' fill='none' stroke='%23b8d4c4' stroke-width='0.5'/%3E%3Ccircle cx='300' cy='200' r='60' fill='none' stroke='%23b8d4c4' stroke-width='0.75'/%3E%3Cline x1='80' y1='60' x2='300' y2='200' stroke='%23b8d4c4' stroke-width='0.5'/%3E%3Cline x1='300' y1='200' x2='520' y2='340' stroke='%23b8d4c4' stroke-width='0.5'/%3E%3Cline x1='80' y1='60' x2='520' y2='340' stroke='%23b8d4c4' stroke-width='0.3'/%3E%3Ccircle cx='80' cy='60' r='4' fill='%23b8d4c4'/%3E%3Ccircle cx='300' cy='200' r='4' fill='%23b8d4c4'/%3E%3Ccircle cx='520' cy='340' r='4' fill='%23b8d4c4'/%3E%3Ccircle cx='180' cy='300' r='3' fill='%23b8d4c4'/%3E%3Ccircle cx='420' cy='80' r='3' fill='%23b8d4c4'/%3E%3Cline x1='180' y1='300' x2='300' y2='200' stroke='%23b8d4c4' stroke-width='0.4'/%3E%3Cline x1='420' y1='80' x2='300' y2='200' stroke='%23b8d4c4' stroke-width='0.4'/%3E%3C/svg%3E");
  background-size: 600px 400px;
  background-position: right bottom;
  background-repeat: no-repeat;
  pointer-events: none;
}

/* ══════════════════════════════
   SERVICES PAGE
══════════════════════════════ */
.svc-hero {
  background: var(--sage-deep);
  padding: 100px 72px 80px;
  position: relative;
  overflow: hidden;
}

.svc-hero .sec-eyebrow { color: var(--sage-pale); }
.svc-hero .sec-eyebrow::before { background: var(--sage-pale); }

.svc-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  max-width: 680px;
  position: relative;
  margin-bottom: 28px;
}

.svc-hero h1 em { font-style: italic; color: var(--sage-pale); }

.svc-hero p {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.58);
  max-width: 560px;
  line-height: 1.82;
  position: relative;
}

.svc-block {
  padding: 80px 72px;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 88px;
  align-items: start;
}

.svc-block:nth-child(even) { background: var(--warm); }
.svc-block:last-of-type { border-bottom: none; }

.svc-num {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 400;
  color: var(--sage-ghost);
  line-height: 1;
  margin-bottom: 6px;
}

.svc-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.85rem;
  font-weight: 400;
  color: var(--sage-deep);
  line-height: 1.2;
  margin-bottom: 16px;
}

.svc-intro { font-size: 0.9rem; color: var(--mid); line-height: 1.8; }

.svc-ai-note {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--sage);
  font-style: italic;
  line-height: 1.65;
}

.svc-list { list-style: none; margin-bottom: 28px; }

.svc-list li {
  padding: 13px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 0.9rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 12px;
}

.svc-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sage-light);
  flex-shrink: 0;
}

.mini-case {
  background: var(--sage-deep);
  padding: 28px 32px;
  margin-bottom: 16px;
}

.mini-case-lbl {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-pale);
  margin-bottom: 10px;
  display: block;
}

.mini-case p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.68;
  font-style: italic;
}

.deliverables-note {
  padding: 18px 22px;
  background: var(--sage-ghost);
  border-left: 3px solid var(--sage-light);
  font-size: 0.83rem;
  color: var(--sage-deep);
  line-height: 1.65;
}

/* ══════════════════════════════
   CASE STUDIES — LIST
══════════════════════════════ */
.cases-hero {
  background: var(--ink);
  padding: 100px 72px 80px;
  position: relative;
  overflow: hidden;
}

.cases-hero .sec-eyebrow { color: var(--sage-pale); }
.cases-hero .sec-eyebrow::before { background: var(--sage-pale); }

.cases-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  max-width: 640px;
  position: relative;
  margin-bottom: 24px;
}

.cases-hero h1 em { font-style: italic; color: var(--sage-pale); }

.cases-hero p {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  line-height: 1.8;
  position: relative;
}

.cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--rule);
  padding: 2px;
}

.case-card {
  background: var(--cream);
  padding: 52px 48px;
  transition: background 0.25s;
  display: flex;
  flex-direction: column;
}

.case-card:hover { background: var(--warm); }

.case-tag {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
  display: block;
}

.case-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--sage-deep);
  line-height: 1.28;
  margin-bottom: 14px;
}

.case-body {
  font-size: 0.87rem;
  color: var(--mid);
  line-height: 1.78;
  margin-bottom: 20px;
  flex: 1;
}

.case-role-line {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--sage);
  margin-bottom: 24px;
  font-style: italic;
}

.read-more {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-deep);
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  transition: color 0.2s;
  display: inline-block;
}

.read-more:hover { color: var(--sage); }

/* ══════════════════════════════
   CASE / ARTICLE DETAIL PAGES
══════════════════════════════ */
.detail-hero {
  background: var(--sage-deep);
  padding: 80px 72px 60px;
  position: relative;
  overflow: hidden;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: var(--sage-pale);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  margin-bottom: 32px;
  padding: 0;
  transition: color 0.2s;
  font-family: 'Jost', sans-serif;
  text-decoration: none;
}

.back-btn:hover { color: #fff; }

.detail-tag {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-pale);
  margin-bottom: 16px;
  position: relative;
}

.detail-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  max-width: 720px;
  position: relative;
  margin-bottom: 28px;
}

.detail-meta {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
}

.detail-meta span { font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.detail-meta strong { color: rgba(255,255,255,0.8); font-weight: 400; }

.detail-body { padding: 64px 72px; }

.detail-summary {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--sage-deep);
  line-height: 1.6;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--rule);
  max-width: 780px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: start;
}

.detail-h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--sage-deep);
  margin-bottom: 14px;
  margin-top: 36px;
}

.detail-h3:first-child { margin-top: 0; }

.detail-p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.82;
  margin-bottom: 20px;
}

.detail-p:last-child { margin-bottom: 0; }

.detail-list { list-style: none; }

.detail-list li {
  padding: 11px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.72;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.detail-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sage-light);
  flex-shrink: 0;
  margin-top: 9px;
}

.deliverables-box {
  background: var(--sage-deep);
  padding: 32px;
  position: sticky;
  top: 88px;
  margin-bottom: 20px;
}

.deliverables-lbl {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-pale);
  margin-bottom: 20px;
  display: block;
}

.deliverables-list { list-style: none; }

.deliverables-list li {
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.83rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.deliverables-list li::before { content: '✓'; color: var(--sage-light); flex-shrink: 0; }

.dataroom-box {
  background: var(--sage-ghost);
  padding: 24px 28px;
  border-left: 3px solid var(--sage-light);
}

.dataroom-icon { font-size: 1.4rem; margin-bottom: 10px; }

.dataroom-box p {
  font-size: 0.82rem;
  color: var(--sage-deep);
  line-height: 1.65;
}

.detail-cta {
  margin-top: 48px;
  padding: 32px 36px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.detail-cta p {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.7);
}

.detail-cta a {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-pale);
  text-decoration: none;
  transition: color 0.2s;
}

.detail-cta a:hover { color: #fff; }

.outcome-p { color: var(--ink); font-size: 0.92rem; }

/* ══════════════════════════════
   ARTICLE HERO
══════════════════════════════ */
.article-hero {
  background: var(--sage-deep);
  padding: 80px 72px 60px;
  position: relative;
  overflow: hidden;
}

.article-hero .detail-tag { color: var(--sage-pale); }
.article-hero .detail-title { color: #fff; }

.article-hero .detail-summary {
  color: var(--sage-pale);
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Article body uses same detail-body grid */
.article-body {
  padding: 64px 72px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: start;
}

.article-list { list-style: none; padding: 0; margin: 0 0 20px 0; }

.article-list li {
  padding: 10px 0 10px 20px;
  border-bottom: 1px solid var(--rule);
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.72;
  position: relative;
}

.article-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--sage-light);
  font-size: 0.85rem;
}

/* ══════════════════════════════
   IDEAS PAGE
══════════════════════════════ */
.ideas-hero {
  padding: 100px 72px 60px;
  border-bottom: 1px solid var(--rule);
}

.ideas-hero p {
  font-size: 0.93rem;
  color: var(--mid);
  max-width: 480px;
  margin-top: 16px;
  line-height: 1.8;
}

.ideas-grid {
  padding: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px 88px;
}

.idea-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--rule);
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: grid;
}

.idea-featured:hover .idea-title { color: var(--sage); }

.idea-banner {
  background: var(--sage-deep);
  height: 280px;
  position: relative;
  overflow: hidden;
}

.idea-meta {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.idea-meta span { color: var(--mid); }

.idea-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--sage-deep);
  line-height: 1.25;
  margin-bottom: 14px;
  transition: color 0.2s;
}

.idea-item .idea-title { font-size: 1.3rem; }

.idea-item {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.idea-item:hover .idea-title { color: var(--sage); }

.idea-excerpt {
  font-size: 0.87rem;
  color: var(--mid);
  line-height: 1.78;
  margin-bottom: 22px;
}

.idea-read {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.idea-read:hover { color: var(--sage-deep); }
.idea-read::after { content: '→'; }

.idea-item-banner {
  height: 160px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 2px;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  background: var(--ink);
  padding: 52px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
}

.footer-contact {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  text-align: right;
  line-height: 1.9;
}

.footer-contact a { color: var(--sage-pale); text-decoration: none; }
.footer-contact a:hover { color: #fff; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE — TABLET (max-width: 960px)
══════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  nav { padding: 0 32px; }

  .home-hero { grid-template-columns: 1fr 1fr; }
  .hero-text-col { padding: 60px 40px; }

  .about-strip { padding: 60px 40px; gap: 40px; }
  .home-services { padding: 72px 40px; }
  .tiles { grid-template-columns: 1fr 1fr; }

  .svc-hero { padding: 80px 40px 60px; }
  .svc-block { padding: 60px 40px; gap: 48px; }

  .cases-hero { padding: 80px 40px 60px; }
  .detail-hero { padding: 60px 40px 48px; }
  .detail-body { padding: 48px 40px; }
  .article-body { padding: 48px 40px; }

  .ideas-hero { padding: 80px 40px 48px; }
  .ideas-grid { padding: 48px 40px; gap: 48px 56px; }
  .idea-featured { gap: 48px; }

  footer { padding: 40px; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (max-width: 768px)
══════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* --- Nav --- */
  nav {
    padding: 0 20px;
    height: 60px;
  }

  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 60px;
    left: 0; right: 0;
    background: rgba(250,248,243,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    padding: 8px 0 24px;
    border-bottom: 1px solid var(--rule);
    box-shadow: 0 8px 32px rgba(27,42,36,0.08);
  }

  .nav-links.open { display: flex; }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 16px 24px;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    border-bottom: 1px solid var(--rule);
  }

  .nav-links li:last-child a { border-bottom: none; }

  .page-content { padding-top: 60px; }

  /* --- Home Hero — Option B: circular portrait + headline row --- */
  .home-hero {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 0 16px;
    align-items: start;
    padding: 28px 24px 48px;
    min-height: auto;
  }

  /* Circular photo in col 1, spans rows 1–2 (kicker + headline) */
  .hero-photo-col {
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: center;
    width: 80px;
    height: 80px;
    min-height: unset;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--sage-light);
  }

  .hero-photo-col img {
    object-position: center 20%; /* keep face centred in circle */
  }

  /* Hide the bottom-fade overlay — irrelevant on a circle */
  .hero-photo-col::after { display: none; }

  /* display:contents dissolves the wrapper so its children
     participate directly in the parent grid */
  .hero-text-col { display: contents; }

  .hero-banner-strip { display: none; }

  .hero-kicker {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    font-size: 0.6rem;
    margin-bottom: 6px;
  }

  .hero-h1 {
    grid-column: 2;
    grid-row: 2;
    font-size: clamp(1.25rem, 5.5vw, 1.65rem);
    margin-bottom: 0;
    line-height: 1.2;
  }

  /* Body text + note + CTA span full width below the intro row */
  .hero-p {
    grid-column: 1 / -1;
    grid-row: 3;
    margin-top: 20px;
    max-width: 100%;
  }

  .hero-deliverable-note {
    grid-column: 1 / -1;
    grid-row: 4;
    max-width: 100%;
    margin-bottom: 28px;
  }

  .hero-btn {
    grid-column: 1 / -1;
    grid-row: 5;
    width: 100%;
    justify-content: center;
  }

  /* --- About Strip --- */
  .about-strip {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 24px;
  }

  .about-divider { display: none; }
  .about-quote { font-size: 1.2rem; }
  .about-body { font-size: 0.87rem; }

  /* --- Home Services --- */
  .home-services { padding: 56px 24px; }

  .home-svc-header {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    align-items: flex-start;
  }

  .tiles { grid-template-columns: 1fr; gap: 16px; }
  .tile { padding: 36px 28px 32px; }

  /* --- Services Page --- */
  .svc-hero { padding: 64px 24px 48px; }

  .svc-block {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 24px;
  }

  .svc-num { font-size: 3.5rem; }
  .svc-title { font-size: 1.5rem; }

  /* --- Case Studies List --- */
  .cases-hero { padding: 64px 24px 48px; }

  .cases-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .case-card { padding: 36px 24px; }
  .case-title { font-size: 1.25rem; }

  /* --- Case / Article Detail --- */
  .detail-hero { padding: 48px 24px 40px; }
  .detail-title { font-size: clamp(1.5rem, 5.5vw, 2.2rem); }
  .detail-meta { flex-direction: column; gap: 8px; }

  .detail-body { padding: 36px 24px; }

  .detail-summary { font-size: 1.05rem; margin-bottom: 36px; padding-bottom: 36px; }

  .detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Move sidebar below main on mobile */
  .detail-side { order: -1; }

  .deliverables-box { position: static; }

  .detail-cta {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  /* --- Article pages --- */
  .article-hero { padding: 48px 24px 40px; }

  .article-body {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 36px 24px;
  }

  .article-side { order: -1; }

  /* --- Ideas Page --- */
  .ideas-hero { padding: 64px 24px 40px; }

  .ideas-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 40px 24px;
  }

  .idea-featured {
    grid-column: 1;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .idea-banner { height: 200px; }
  .idea-title { font-size: 1.4rem; }
  .idea-item .idea-title { font-size: 1.15rem; }

  /* --- Footer --- */
  footer {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding: 40px 24px;
  }

  .footer-contact { text-align: left; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — SMALL PHONES (max-width: 420px)
══════════════════════════════════════════════════════ */
@media (max-width: 420px) {
  .hero-photo-col { width: 68px; height: 68px; min-height: unset; }
  .hero-h1 { font-size: 1.2rem; }
  .cases-hero h1, .svc-hero h1 { font-size: 1.9rem; }
  .detail-title { font-size: 1.4rem; }
  .about-quote { font-size: 1.1rem; }
}
