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

:root {
  --ink:      #1e1c1a;
  --warm:     #f5f0e8;
  --clay:     #c4714a;
  --clay-lt:  #e8906a;
  --slate:    #3d4a52;
  --slate-lt: #5a6b75;
  --sand:     #ddd4c0;
  --sand-lt:  #ede8dc;
  --cream:    #faf7f2;
  --gold:     #b89a6a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 4rem;
  background: rgba(250,247,242,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(180,165,140,0.25);
  animation: fadeDown 0.8s ease both;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.logo-icon {
  width: 15px;
  height: 18px;
  flex-shrink: 0;
}
.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.logo-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
  margin-top: 0.15rem;
}
.site-nav ul { list-style: none; display: flex; gap: 2.5rem; }
.site-nav ul a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.25s;
}
.site-nav ul a:hover { color: var(--clay); }
.nav-cta {
  background: var(--clay);
  color: #fff !important;
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
  transition: background 0.25s !important;
}
.nav-cta:hover { background: var(--clay-lt) !important; color: #fff !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 10rem 4rem 6rem 4rem;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1.8rem;
  animation: fadeUp 1s 0.3s ease both;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 2rem; height: 1px;
  background: var(--clay);
  vertical-align: middle;
  margin-right: 0.8rem;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 2rem;
  animation: fadeUp 1s 0.5s ease both;
}
.hero h1 em {
  font-style: italic;
  color: var(--clay);
}
.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--slate);
  max-width: 28rem;
  margin-bottom: 3rem;
  animation: fadeUp 1s 0.7s ease both;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp 1s 0.9s ease both;
}
.btn-primary {
  background: var(--clay);
  color: #fff;
  padding: 1rem 2.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none; cursor: pointer;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--clay-lt); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--slate);
  padding: 1rem 2.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--sand);
  border-radius: 2px;
  transition: border-color 0.25s, color 0.25s;
}
.btn-ghost:hover { border-color: var(--clay); color: var(--clay); }

.hero-right {
  position: relative;
  background: var(--slate);
  overflow: hidden;
}
.hero-right::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(196,113,74,0.3) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(184,154,106,0.2) 0%, transparent 50%);
}
.hero-geo {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.compass {
  width: 340px; height: 340px;
  position: relative;
  animation: slowSpin 40s linear infinite;
}
.compass svg { width: 100%; height: 100%; }
.hero-stat-strip {
  position: absolute;
  bottom: 3rem; left: 3rem; right: 3rem;
  display: flex; gap: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 2rem;
  animation: fadeUp 1s 1.1s ease both;
}
.stat { flex: 1; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ── INTRO BAND ── */
.intro-band {
  background: var(--sand-lt);
  padding: 5rem 4rem;
  display: flex;
  align-items: center;
  gap: 6rem;
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}
.intro-band blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
  flex: 2;
  border-left: 3px solid var(--clay);
  padding-left: 2rem;
}
.intro-text { flex: 1; color: var(--slate); font-weight: 300; font-size: 0.95rem; }

/* ── SERVICES ── */
.services {
  padding: 8rem 4rem;
  background: var(--cream);
}
.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.section-label::before {
  content: '';
  width: 2rem; height: 1px;
  background: var(--clay);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 4rem;
  max-width: 34rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--sand);
}
.service-card {
  background: var(--cream);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { background: var(--sand-lt); }
.service-card:hover::after { transform: scaleX(1); }
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 1.5rem;
  display: block;
}
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.service-card p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--slate-lt);
  line-height: 1.7;
  margin-bottom: 1.8rem;
}
.service-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
  text-decoration: none;
  display: flex; align-items: center; gap: 0.5rem;
  transition: gap 0.25s;
}
.service-link:hover { gap: 0.9rem; }
.service-link::after { content: '→'; }

/* ── APPROACH ── */
.approach {
  background: var(--slate);
  padding: 8rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.approach::before {
  content: '';
  position: absolute;
  top: -10rem; right: -10rem;
  width: 40rem; height: 40rem;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(196,113,74,0.15), transparent 65%);
  pointer-events: none;
}
.approach .section-label { color: rgba(196,113,74,0.9); }
.approach .section-label::before { background: rgba(196,113,74,0.9); }
.approach .section-title { color: #fff; margin-bottom: 2rem; }
.approach-body { color: rgba(255,255,255,0.6); font-weight: 300; font-size: 0.95rem; line-height: 1.8; }
.pillars { display: flex; flex-direction: column; gap: 1.5px; }
.pillar {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1.8rem 2rem;
  display: flex; align-items: flex-start; gap: 1.5rem;
  transition: background 0.3s;
}
.pillar:hover { background: rgba(255,255,255,0.08); }
.pillar-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: rgba(196,113,74,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--clay-lt);
  font-size: 1rem;
}
.pillar h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.3rem;
}
.pillar p { font-size: 0.85rem; color: rgba(255,255,255,0.5); font-weight: 300; }

/* ── CONTACT ── */
.contact {
  padding: 8rem 4rem;
  background: var(--warm);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: start;
}
.contact-left .section-title { margin-bottom: 1.5rem; }
.contact-sub { color: var(--slate); font-weight: 300; font-size: 0.95rem; margin-bottom: 3rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.9rem; color: var(--slate);
}
.contact-item-icon {
  width: 2rem; height: 2rem;
  background: var(--sand);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: #fff;
  border: 1px solid var(--sand);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s;
  appearance: none;
  resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--clay); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--sand); }
.submit-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.privacy-note { font-size: 0.75rem; color: var(--slate-lt); font-weight: 300; }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.4);
  padding: 3rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 1rem;
}
footer .logo { color: rgba(255,255,255,0.7); }
footer .logo .logo-name { color: rgba(255,255,255,0.85); font-size: 1.2rem; }
footer .logo .logo-sub { color: var(--clay); }
footer .logo .logo-icon polygon:first-child { fill: var(--clay); }
footer .logo .logo-icon polygon:last-child { fill: rgba(255,255,255,0.25); }
footer a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--clay); }
footer nav ul { list-style: none; display: flex; gap: 1.5rem; }
footer nav ul a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}

/* ── CASE STUDIES LIST PAGE ── */
.page-hero {
  padding: 12rem 4rem 6rem;
  background: var(--cream);
  border-bottom: 1px solid var(--sand);
}
.page-hero .section-label { margin-bottom: 1.5rem; }
.page-hero h1.section-title { margin-bottom: 1rem; }
.page-hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--slate);
  max-width: 38rem;
}
.case-studies-grid {
  padding: 5rem 4rem 8rem;
  background: var(--cream);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2px;
  background-color: var(--sand);
}
.case-study-card {
  background: var(--cream);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
}
.case-study-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.case-study-card:hover { background: var(--sand-lt); }
.case-study-card:hover::after { transform: scaleX(1); }
.case-study-card-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1.2rem;
}
.case-study-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.case-study-card p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--slate-lt);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 2rem;
}
.case-study-card .read-more {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
  text-decoration: none;
  display: flex; align-items: center; gap: 0.5rem;
  transition: gap 0.25s;
  margin-top: auto;
}
.case-study-card .read-more:hover { gap: 0.9rem; }
.case-study-card .read-more::after { content: '→'; }

/* ── CASE STUDIES PREVIEW (HOME PAGE) ── */
.case-studies-preview {
  padding: 8rem 4rem;
  background: var(--sand-lt);
}
.case-studies-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2px;
  background: var(--sand);
  margin-bottom: 3rem;
}
.case-studies-preview .view-all {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
  text-decoration: none;
  transition: gap 0.25s;
}
.case-studies-preview .view-all:hover { gap: 0.9rem; }
.case-studies-preview .view-all::after { content: '→'; }

/* ── CASE STUDY DETAIL PAGE ── */
.case-study-header {
  padding: 12rem 4rem 5rem;
  background: var(--slate);
  position: relative;
  overflow: hidden;
}
.case-study-header::before {
  content: '';
  position: absolute;
  top: -10rem; right: -10rem;
  width: 40rem; height: 40rem;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(196,113,74,0.15), transparent 65%);
  pointer-events: none;
}
.case-study-header .section-label { color: rgba(196,113,74,0.9); }
.case-study-header .section-label::before { background: rgba(196,113,74,0.9); }
.case-study-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.15;
  max-width: 44rem;
  margin-bottom: 1.5rem;
}
.case-study-header .lead {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 38rem;
  line-height: 1.7;
}
.case-study-body {
  padding: 6rem 4rem;
  background: var(--cream);
  max-width: 52rem;
}
.case-study-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--ink);
  margin: 3rem 0 1.2rem;
  line-height: 1.2;
}
.case-study-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  margin: 2.5rem 0 1rem;
}
.case-study-body p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.case-study-body ul,
.case-study-body ol {
  margin: 0 0 1.5rem 1.5rem;
  color: var(--slate);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
}
.case-study-body li { margin-bottom: 0.4rem; }
.case-study-body strong { font-weight: 500; color: var(--ink); }
.case-study-body blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--ink);
  border-left: 3px solid var(--clay);
  padding-left: 1.5rem;
  margin: 2.5rem 0;
  line-height: 1.5;
}
.case-study-back {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-lt);
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 0.25s, gap 0.25s;
}
.case-study-back::before { content: '←'; }
.case-study-back:hover { color: var(--clay); gap: 0.8rem; }

/* ── BLOG LIST PAGE ── */
.blog-grid {
  padding: 5rem 4rem 8rem;
  background: var(--cream);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2px;
  background-color: var(--sand);
}
.blog-empty {
  padding: 3rem 4rem 8rem;
  background: var(--cream);
  color: var(--slate-lt);
  font-weight: 300;
  font-size: 1rem;
}
.blog-card {
  background: var(--cream);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
}
.blog-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.blog-card:hover { background: var(--sand-lt); }
.blog-card:hover::after { transform: scaleX(1); }
.blog-card-date {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1.2rem;
}
.blog-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.blog-card p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--slate-lt);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 2rem;
}
.blog-card .read-more {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
  text-decoration: none;
  display: flex; align-items: center; gap: 0.5rem;
  transition: gap 0.25s;
  margin-top: auto;
}
.blog-card .read-more:hover { gap: 0.9rem; }
.blog-card .read-more::after { content: '→'; }

/* ── BLOG PREVIEW (HOME PAGE) ── */
.blog-preview {
  padding: 8rem 4rem;
  background: var(--sand-lt);
}
.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2px;
  background: var(--sand);
  margin-bottom: 3rem;
}
.blog-preview .view-all {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
  text-decoration: none;
  transition: gap 0.25s;
}
.blog-preview .view-all:hover { gap: 0.9rem; }
.blog-preview .view-all::after { content: '→'; }

/* ── BLOG POST DETAIL PAGE ── */
.blog-post-header {
  padding: 12rem 4rem 5rem;
  background: var(--slate);
  position: relative;
  overflow: hidden;
}
.blog-post-header::before {
  content: '';
  position: absolute;
  top: -10rem; right: -10rem;
  width: 40rem; height: 40rem;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(196,113,74,0.15), transparent 65%);
  pointer-events: none;
}
.blog-post-header .section-label { color: rgba(196,113,74,0.9); }
.blog-post-header .section-label::before { background: rgba(196,113,74,0.9); }
.blog-post-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.15;
  max-width: 44rem;
  margin-bottom: 1.5rem;
}
.blog-post-header .blog-post-meta {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.blog-post-header .lead {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 38rem;
  line-height: 1.7;
}
.blog-post-body {
  padding: 6rem 4rem;
  background: var(--cream);
  max-width: 52rem;
}
.blog-post-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--ink);
  margin: 3rem 0 1.2rem;
  line-height: 1.2;
}
.blog-post-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  margin: 2.5rem 0 1rem;
}
.blog-post-body p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.blog-post-body ul,
.blog-post-body ol {
  margin: 0 0 1.5rem 1.5rem;
  color: var(--slate);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
}
.blog-post-body li { margin-bottom: 0.4rem; }
.blog-post-body strong { font-weight: 500; color: var(--ink); }
.blog-post-body blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--ink);
  border-left: 3px solid var(--clay);
  padding-left: 1.5rem;
  margin: 2.5rem 0;
  line-height: 1.5;
}
.blog-post-back {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-lt);
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 0.25s, gap 0.25s;
}
.blog-post-back::before { content: '←'; }
.blog-post-back:hover { color: var(--clay); gap: 0.8rem; }

/* ── ANIMATIONS ── */
@keyframes fadeDown { from { opacity:0; transform: translateY(-16px); } to { opacity:1; transform: none; } }
@keyframes fadeUp   { from { opacity:0; transform: translateY(24px); } to { opacity:1; transform: none; } }
@keyframes slowSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

@media (max-width: 900px) {
  .site-nav { padding: 1.2rem 2rem; }
  .site-nav ul { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 8rem 2rem 4rem; }
  .hero-right { min-height: 50vw; }
  .hero-stat-strip { bottom: 1.5rem; left: 1.5rem; right: 1.5rem; }
  .intro-band { flex-direction: column; padding: 4rem 2rem; gap: 2rem; }
  .services { padding: 5rem 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .approach { grid-template-columns: 1fr; padding: 5rem 2rem; gap: 4rem; }
  .contact { grid-template-columns: 1fr; padding: 5rem 2rem; gap: 4rem; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; align-items: flex-start; padding: 2.5rem 2rem; }
  .page-hero { padding: 9rem 2rem 4rem; }
  .case-studies-grid { padding: 3rem 2rem 5rem; grid-template-columns: 1fr; }
  .case-studies-preview { padding: 5rem 2rem; }
  .case-study-header { padding: 9rem 2rem 4rem; }
  .case-study-body { padding: 4rem 2rem; }
  .blog-grid { padding: 3rem 2rem 5rem; grid-template-columns: 1fr; }
  .blog-empty { padding: 3rem 2rem 5rem; }
  .blog-preview { padding: 5rem 2rem; }
  .blog-post-header { padding: 9rem 2rem 4rem; }
  .blog-post-body { padding: 4rem 2rem; }
}
