/* =====================================================
   PINNACLE STRATEGIC ADVISORY
   Premium consulting site. Editorial layout. Navy + gold.
   ===================================================== */

/* Brand tokens - confirmed by Matthew, May 4 2026 */
:root {
  --navy-900: #0a1f3d;       /* primary brand navy - confirmed */
  --navy-800: #102a52;
  --navy-700: #1c3b6e;
  --gold-500: #c9a961;       /* accent gold - confirmed */
  --gold-400: #d4b878;
  --gold-300: #e0c993;
  --cream: #ffffff;           /* white background - confirmed */
  --cream-dark: #f7f5f0;      /* warm near-white for zoned sections */
  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --ink-mute: #7a7a7a;
  --rule: #e6e2d8;
  --max-width: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4rem, 9vw, 8rem);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--navy-900);
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); line-height: 1.1; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.875rem); line-height: 1.2; }
h4 { font-size: 1.125rem; font-family: 'DM Sans', sans-serif; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink); }

p { margin-bottom: 1.25rem; color: var(--ink-soft); max-width: 65ch; }

a { color: var(--navy-800); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--gold-500); }

/* Layout helpers */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { padding: var(--section-y) 0; }

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 1.5rem;
  display: inline-block;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold-500);
  vertical-align: middle;
  margin-right: 0.75rem;
}

/* =====================================================
   HEADER / NAV
   ===================================================== */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
header.site-header.scrolled { border-bottom-color: var(--rule); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem var(--gutter);
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--navy-900);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-variation-settings: 'opsz' 144, 'SOFT' 0;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.brand-mark {
  width: 32px;
  height: 22px;
  flex-shrink: 0;
  display: block;
}
.brand-mark img,
.brand-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
}
.nav-links a.active { color: var(--navy-900); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold-500);
}

.nav-cta {
  background: var(--navy-900);
  color: var(--cream) !important;
  padding: 0.7rem 1.4rem;
  border-radius: 2px;
  font-weight: 500;
  transition: background 0.2s ease;
}
.nav-cta:hover { background: var(--navy-700); color: var(--cream) !important; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  position: relative;
}
.menu-toggle span {
  display: block;
  position: absolute;
  height: 1.5px;
  width: 22px;
  background: var(--navy-900);
  left: 5px;
  transition: 0.25s ease;
}
.menu-toggle span:nth-child(1) { top: 10px; }
.menu-toggle span:nth-child(2) { top: 16px; }
.menu-toggle span:nth-child(3) { top: 22px; }
.menu-toggle.open span:nth-child(1) { top: 16px; transform: rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { top: 16px; transform: rotate(-45deg); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  padding: clamp(4rem, 10vw, 9rem) 0 clamp(3rem, 7vw, 6rem);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(201, 169, 97, 0.08), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: end;
  position: relative;
}

.hero-headline {
  font-size: clamp(2.5rem, 6.5vw, 5.25rem);
  line-height: 1.02;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold-500);
  font-weight: 400;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 56ch;
  margin-bottom: 2.5rem;
  line-height: 1.55;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.75rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
  border-radius: 2px;
  text-decoration: none;
}
.btn-primary {
  background: var(--navy-900);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--gold-500);
  color: var(--navy-900);
  transform: translateY(-1px);
}
.btn-primary .arrow { transition: transform 0.25s ease; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-secondary {
  background: transparent;
  color: var(--navy-900);
  border: 1px solid var(--navy-900);
}
.btn-secondary:hover {
  background: var(--navy-900);
  color: var(--cream);
}

.btn-gold {
  background: var(--gold-500);
  color: var(--navy-900);
}
.btn-gold:hover {
  background: var(--gold-400);
}

/* =====================================================
   PRINCIPLES STRIP (replaces metrics trust bar)
   ===================================================== */
.trust-bar {
  background: var(--navy-900);
  color: var(--cream);
  padding: 3.25rem 0;
  position: relative;
}
.trust-bar::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(201, 169, 97, 0.06), transparent 65%);
  pointer-events: none;
}
.principles-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  position: relative;
}
.principle-stat {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-right: 1.5rem;
  border-right: 1px solid rgba(201, 169, 97, 0.22);
}
.principle-stat:last-child { border-right: none; padding-right: 0; }
.principle-tag {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold-500);
  line-height: 1;
  flex-shrink: 0;
  font-weight: 400;
  padding-top: 0.1rem;
}
.principle-line {
  font-size: 0.9rem;
  color: rgba(248, 245, 238, 0.8);
  line-height: 1.5;
}
.principle-line strong {
  color: var(--cream);
  display: block;
  font-weight: 600;
  margin-bottom: 0.2rem;
  letter-spacing: 0.01em;
}

/* =====================================================
   PROBLEM SECTION
   ===================================================== */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.problem-list {
  list-style: none;
  display: grid;
  gap: 2rem;
}
.problem-item {
  padding-left: 3rem;
  position: relative;
  border-left: 1px solid var(--rule);
  padding-bottom: 1.5rem;
}
.problem-item .num {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  color: var(--gold-500);
  line-height: 1;
  margin-bottom: 0.75rem;
  display: block;
  font-style: italic;
}
.problem-item h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--navy-900);
}

/* =====================================================
   SERVICES OVERVIEW
   ===================================================== */
.services-section {
  background: var(--cream-dark);
  position: relative;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  border-top: 1px solid var(--rule);
}
.service-card {
  padding: 3rem 2rem;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--cream);
  transition: background 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.service-card:last-child { border-right: none; }
.service-card:hover { background: var(--cream-dark); }

.service-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold-500);
  margin-bottom: 2rem;
  letter-spacing: 0.04em;
}
.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.6rem;
}
.service-card p {
  flex-grow: 1;
  margin-bottom: 1.5rem;
  font-size: 0.96rem;
}
.service-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy-900);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid var(--gold-500);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: gap 0.25s ease;
}
.service-link:hover { gap: 0.8rem; color: var(--navy-900); }

/* =====================================================
   METHOD (4 STEPS)
   ===================================================== */
.method-section { background: var(--navy-900); color: var(--cream); }
.method-section h2 { color: var(--cream); }
.method-section h2 em { color: var(--gold-500); font-style: italic; }
.method-section p { color: rgba(248, 245, 238, 0.8); }
.method-section .eyebrow { color: var(--gold-500); }

.method-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 4rem;
  position: relative;
}
.method-steps::before {
  content: '';
  position: absolute;
  top: 1.25rem;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(201, 169, 97, 0.3);
}
.method-step {
  padding-right: 2rem;
  position: relative;
}
.method-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--gold-500);
  background: var(--navy-900);
  color: var(--gold-500);
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.method-step h3 {
  color: var(--cream);
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}
.method-step p {
  font-size: 0.92rem;
  color: rgba(248, 245, 238, 0.7);
  margin: 0;
}

/* =====================================================
   PROOF
   ===================================================== */
.proof-section {
  position: relative;
}
.proof-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  line-height: 1.3;
  color: var(--navy-900);
  font-weight: 400;
  margin-bottom: 2rem;
  font-style: italic;
  letter-spacing: -0.01em;
}
.proof-quote::before {
  content: '\201C';
  font-size: 4rem;
  line-height: 0;
  vertical-align: -0.4em;
  color: var(--gold-500);
  margin-right: 0.5rem;
  font-style: normal;
}
.proof-attribution {
  font-size: 0.9rem;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

/* =====================================================
   CTA BLOCK
   ===================================================== */
.cta-block {
  background: var(--navy-900);
  color: var(--cream);
  padding: clamp(4rem, 8vw, 6rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before, .cta-block::after {
  content: '';
  position: absolute;
  width: 1px;
  background: var(--gold-500);
  opacity: 0.3;
}
.cta-block::before { top: 2rem; left: 2rem; height: calc(100% - 4rem); }
.cta-block::after { top: 2rem; right: 2rem; height: calc(100% - 4rem); }

.cta-block h2 {
  color: var(--cream);
  margin-bottom: 2rem;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}
.cta-block h2 em { color: var(--gold-500); font-style: italic; }

/* =====================================================
   FOOTER
   ===================================================== */
footer.site-footer {
  background: var(--navy-900);
  color: rgba(248, 245, 238, 0.8);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(201, 169, 97, 0.2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.footer-brand-full {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--gold-500);
  margin-bottom: 1rem;
  display: block;
}
.footer-tag {
  font-size: 0.92rem;
  max-width: 32ch;
  line-height: 1.5;
}
.footer-col h4 {
  color: var(--gold-500);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
  color: rgba(248, 245, 238, 0.7);
  font-size: 0.92rem;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--gold-500); }

.footer-bottom {
  border-top: 1px solid rgba(248, 245, 238, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(248, 245, 238, 0.5);
}

/* =====================================================
   INNER PAGES (Services / About / Process / Contact)
   ===================================================== */
.page-hero {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 5vw, 4rem);
  border-bottom: 1px solid var(--rule);
}
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  max-width: 22ch;
}
.page-hero .lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 60ch;
  line-height: 1.55;
}

/* Service detail blocks */
.service-block {
  padding: var(--section-y) 0;
  border-bottom: 1px solid var(--rule);
}
.service-block:last-child { border-bottom: none; }
.service-block-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}
.service-block-meta {
  position: sticky;
  top: 5rem;
}
.service-block-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 4rem;
  color: var(--gold-500);
  line-height: 1;
  margin-bottom: 1rem;
  font-weight: 300;
}
.service-block-tag {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}
.service-block h2 { margin-bottom: 1.5rem; }
.service-block-features {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}
.service-block-features li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--ink-soft);
}
.service-block-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.7rem;
  height: 1px;
  background: var(--gold-500);
}

/* =====================================================
   SAMPLES SECTION (What a Snapshot leaves behind)
   ===================================================== */
.samples-section {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: var(--cream-dark);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.samples-intro {
  max-width: 60ch;
  margin-bottom: 3.5rem;
}
.samples-intro h2 { margin-bottom: 1.25rem; }
.samples-intro p { color: var(--ink-soft); line-height: 1.65; }
.samples-intro p strong {
  color: var(--navy-900);
  font-weight: 600;
}
.samples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.sample-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--rule);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.sample-card:hover {
  border-color: var(--gold-500);
  transform: translateY(-2px);
}
.sample-thumb-link {
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
}
.sample-thumb {
  position: relative;
  aspect-ratio: 850 / 1100;
  overflow: hidden;
}
.sample-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}
.sample-card:hover .sample-thumb img {
  transform: scale(1.02);
}
.sample-hover-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.85rem 1.25rem;
  background: rgba(10, 31, 61, 0.92);
  color: var(--cream);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.sample-card:hover .sample-hover-label,
.sample-thumb-link:focus .sample-hover-label {
  opacity: 1;
  transform: translateY(0);
}
.sample-meta {
  padding: 1.75rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.sample-tag {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 600;
  margin-bottom: 0.85rem;
}
.sample-meta h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  line-height: 1.25;
  font-weight: 500;
  color: var(--navy-900);
  margin-bottom: 0.85rem;
  letter-spacing: -0.005em;
}
.sample-meta p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.sample-meta .service-link {
  align-self: flex-start;
  margin-top: auto;
  font-size: 0.88rem;
}
.samples-disclaimer {
  max-width: 70ch;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}
.samples-disclaimer p {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--ink-mute);
  font-style: italic;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.principles {
  list-style: none;
  display: grid;
  gap: 2.5rem;
  margin-top: 3rem;
}
.principle {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--rule);
}
.principle:last-child { border-bottom: none; padding-bottom: 0; }
.principle-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 2rem;
  color: var(--gold-500);
  line-height: 1;
  font-weight: 300;
}
.principle h3 { margin-bottom: 0.5rem; font-size: 1.3rem; }

.principal-card {
  background: var(--cream-dark);
  padding: 3rem;
  border-left: 2px solid var(--gold-500);
}
.principal-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--navy-900);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  color: var(--gold-500);
}
.principal-name {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  color: var(--navy-900);
  margin-bottom: 0.25rem;
}
.principal-title {
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

/* Process page */
.process-step {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding: 4rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.process-step:last-child { border-bottom: none; }
.process-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(4rem, 7vw, 6rem);
  color: var(--gold-500);
  line-height: 0.9;
  font-weight: 300;
}
.process-duration {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
  margin-bottom: 1rem;
}
.process-deliverables {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}
.process-deliverables h4 {
  margin-bottom: 1rem;
  color: var(--navy-900);
}
.process-deliverables ul {
  list-style: none;
  display: grid;
  gap: 0.6rem;
}
.process-deliverables li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.process-deliverables li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--gold-500);
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info { padding: 1rem 0; }
.contact-info h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.contact-info-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--rule);
}
.contact-info-item:first-child { padding-top: 0; }
.contact-info-item p {
  font-size: 1.1rem;
  color: var(--navy-900);
  margin: 0;
}
.contact-info-item a { color: var(--navy-900); }
.contact-info-item a:hover { color: var(--gold-500); }

.calendly-placeholder {
  background: var(--cream-dark);
  border: 1px dashed var(--gold-500);
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 2px;
}
.calendly-placeholder h3 {
  font-family: 'Fraunces', serif;
  margin-bottom: 1rem;
}

/* Form */
.contact-form {
  display: grid;
  gap: 1.25rem;
}
.contact-form label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
  margin-bottom: 0.4rem;
  display: block;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--rule);
  background: var(--cream);
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  border-radius: 2px;
  transition: border-color 0.2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold-500);
}
.contact-form textarea { min-height: 140px; resize: vertical; }

/* =====================================================
   ANIMATIONS
   ===================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 960px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--cream);
    padding: 2rem var(--gutter);
    gap: 1.5rem;
    border-bottom: 1px solid var(--rule);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    align-items: flex-start;
  }
  .nav-links.open { transform: translateY(0); }
  .menu-toggle { display: block; }

  .principles-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .principle-stat:nth-child(2) { border-right: none; padding-right: 0; }

  .problem-grid,
  .about-grid,
  .contact-grid,
  .service-block-grid,
  .process-step {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .service-block-meta { position: static; }

  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    border-right: none;
    border-bottom: 1px solid var(--rule);
  }

  .method-steps {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 1.5rem;
  }
  .method-steps::before { display: none; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .samples-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .samples-grid .sample-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 32rem;
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .principles-strip-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .principle-stat { border-right: none !important; padding-right: 0; }
  .method-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .samples-grid { grid-template-columns: 1fr; gap: 2rem; }
  .samples-grid .sample-card:nth-child(3) { max-width: 100%; }
}
