/* =========================================================
   AY Architecture — Enterprise & AI Transformation
   Design language: editorial, confident, refined-minimal
   Typography: Fraunces (display) + Inter Tight (body)
   Palette: deep graphite + ivory + signal amber
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600;9..144,700&family=Inter+Tight:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --ink: #0e0f12;
  --ink-soft: #16181d;
  --ink-line: #232630;
  --ivory: #f3efe6;
  --ivory-soft: #e8e3d6;
  --ivory-dim: #a8a394;
  --amber: #e8b14a;
  --amber-deep: #c98e2a;
  --signal: #d15a3a;
  --rule: rgba(243, 239, 230, 0.12);
  --rule-strong: rgba(243, 239, 230, 0.28);

  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Inter Tight', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  --max-w: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 80% 50% at 80% -10%, rgba(232, 177, 74, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 40% at 10% 100%, rgba(209, 90, 58, 0.05), transparent 60%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== Grain overlay for atmosphere ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

/* ===== Navigation ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 15, 18, 0.78);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}
.nav-brand {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.nav-brand .brand-mark {
  width: 28px;
  height: 28px;
  border: 1px solid var(--amber);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--amber);
  letter-spacing: 0;
}
.nav-brand .brand-dot { color: var(--amber); }
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
  font-size: 0.92rem;
  font-weight: 400;
}
.nav-links a {
  color: var(--ivory-dim);
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--ivory);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--amber);
}
.nav-cta {
  padding: 0.6rem 1.1rem;
  border: 1px solid var(--rule-strong);
  border-radius: 2px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  color: var(--ivory) !important;
}
.nav-cta:hover {
  background: var(--ivory);
  color: var(--ink) !important;
  border-color: var(--ivory);
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ivory);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== Hero ===== */
.hero {
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 7rem);
  position: relative;
  overflow: hidden;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ivory-dim);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 2rem;
}
.hero-meta .dot {
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--amber);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  max-width: 20ch;
  font-variation-settings: "opsz" 144;
}
.hero h1 em {
  font-style: italic;
  color: var(--amber);
  font-weight: 400;
}
.hero h1 .underline-word {
  position: relative;
  display: inline-block;
}
.hero h1 .underline-word::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0.08em;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  animation: drawLine 1.2s 0.6s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}
@keyframes drawLine {
  to { transform: scaleX(1); }
}
.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--ivory-soft);
  max-width: 58ch;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.8rem;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  font-family: var(--font-body);
}
.btn-primary {
  background: var(--amber);
  color: var(--ink);
}
.btn-primary:hover {
  background: var(--ivory);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px rgba(232, 177, 74, 0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border-color: var(--rule-strong);
}
.btn-ghost:hover {
  border-color: var(--ivory);
  background: rgba(243, 239, 230, 0.05);
}
.btn .arrow {
  transition: transform 0.25s ease;
}
.btn:hover .arrow { transform: translateX(4px); }

/* Hero stats strip */
.hero-stats {
  margin-top: clamp(4rem, 7vw, 6rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.hero-stat {
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--rule);
}
.hero-stat:last-child { border-right: none; }
.hero-stat .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}
.hero-stat .num .unit {
  font-size: 0.6em;
  color: var(--amber);
}
.hero-stat .label {
  font-size: 0.78rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ivory-dim);
}

/* ===== Section scaffolding ===== */
.section {
  padding: clamp(4rem, 9vw, 7.5rem) 0;
  position: relative;
}
.section-alt {
  background: var(--ink-soft);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--amber);
  margin-bottom: 1.3rem;
}
.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--amber);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin-bottom: 1.5rem;
  font-variation-settings: "opsz" 144;
}
.section-title em { color: var(--amber); font-style: italic; }
.section-lede {
  font-size: 1.1rem;
  color: var(--ivory-soft);
  max-width: 62ch;
  margin-bottom: 3rem;
  line-height: 1.6;
}

/* ===== Pillars (services) ===== */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
}
.pillar {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--rule);
  position: relative;
  transition: background 0.3s ease;
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: rgba(232, 177, 74, 0.03); }
.pillar-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--amber);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.pillar-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--amber);
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  color: var(--amber);
}
.pillar h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.45rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.8rem;
  line-height: 1.2;
}
.pillar p {
  color: var(--ivory-dim);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ===== Outcomes ===== */
.outcomes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.outcomes-col {
  padding: 2.5rem 0;
}
.outcome-item {
  padding: 1.8rem 0;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: baseline;
}
.outcome-item:last-child { border-bottom: 1px solid var(--rule); }
.outcome-metric {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--amber);
  letter-spacing: -0.02em;
}
.outcome-text h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}
.outcome-text p {
  color: var(--ivory-dim);
  font-size: 0.92rem;
}

/* ===== Industries marquee ===== */
.industries {
  padding: 3rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  background: var(--ink);
}
.marquee {
  display: flex;
  gap: 4rem;
  animation: scroll 40s linear infinite;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ivory-dim);
  letter-spacing: -0.02em;
}
.marquee span {
  display: inline-flex;
  align-items: center;
  gap: 4rem;
}
.marquee span::after {
  content: '✦';
  color: var(--amber);
  font-size: 1.1rem;
  font-style: normal;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== CTA strip ===== */
.cta-strip {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(232, 177, 74, 0.1), transparent 70%);
  pointer-events: none;
}
.cta-strip h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin: 0 auto 2rem;
}
.cta-strip h2 em { color: var(--amber); font-style: italic; }

/* ===== Footer ===== */
.footer {
  padding: 4rem 0 2rem;
  background: var(--ink-soft);
  border-top: 1px solid var(--rule);
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer h5 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.footer ul { list-style: none; }
.footer ul li {
  margin-bottom: 0.7rem;
  color: var(--ivory-dim);
}
.footer ul a:hover { color: var(--ivory); }
.footer-brand-tag {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  max-width: 28ch;
  line-height: 1.3;
}
.footer-brand-tag em { color: var(--amber); font-style: italic; }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--ivory-dim);
  font-family: var(--font-mono);
}

/* ===== Page header (interior pages) ===== */
.page-header {
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--rule);
}
.page-header h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.03em;
  max-width: 18ch;
  margin-bottom: 1.8rem;
  font-variation-settings: "opsz" 144;
}
.page-header h1 em { color: var(--amber); font-style: italic; }
.page-header p {
  font-size: 1.15rem;
  color: var(--ivory-soft);
  max-width: 62ch;
  line-height: 1.6;
}

/* ===== About page ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.about-portrait {
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(180deg, rgba(232, 177, 74, 0.1), transparent 60%),
    var(--ink-soft);
  border: 1px solid var(--rule-strong);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.about-portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 23px, rgba(232, 177, 74, 0.04) 23px 24px),
    repeating-linear-gradient(90deg, transparent 0 23px, rgba(232, 177, 74, 0.04) 23px 24px);
}
.portrait-initials {
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 10rem);
  font-weight: 300;
  color: var(--ivory);
  letter-spacing: -0.06em;
  line-height: 1;
  position: relative;
  z-index: 2;
  font-style: italic;
}
.portrait-tag {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  display: flex;
  justify-content: space-between;
  z-index: 2;
}
.about-body h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.about-body h2 em { color: var(--amber); font-style: italic; }
.about-body p {
  color: var(--ivory-soft);
  margin-bottom: 1.2rem;
  font-size: 1.02rem;
  line-height: 1.7;
}
.about-body p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 3.8rem;
  float: left;
  line-height: 0.9;
  padding: 0.3rem 0.7rem 0 0;
  color: var(--amber);
  font-weight: 400;
}

.credentials {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.cred-item {
  padding: 1.2rem 0;
}
.cred-item .cred-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 0.5rem;
}
.cred-item .cred-value {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ivory);
  letter-spacing: -0.01em;
}

/* ===== Timeline ===== */
.timeline {
  position: relative;
  padding-left: 2.5rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--rule-strong);
}
.timeline-item {
  position: relative;
  padding: 1.5rem 0 2.5rem;
  border-bottom: 1px solid var(--rule);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 2rem;
  width: 13px;
  height: 13px;
  border: 1px solid var(--amber);
  background: var(--ink);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.timeline-item:hover::before {
  background: var(--amber);
  box-shadow: 0 0 0 6px rgba(232, 177, 74, 0.15);
}
.timeline-date {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 0.5rem;
}
.timeline-role {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
  letter-spacing: -0.01em;
}
.timeline-company {
  color: var(--ivory-dim);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.timeline-desc {
  color: var(--ivory-soft);
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 65ch;
}
.timeline-tags {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--rule-strong);
  color: var(--ivory-dim);
  border-radius: 2px;
}

/* ===== Services page ===== */
.service-block {
  padding: 3rem 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}
.service-block:last-child { border-bottom: none; }
.service-block .sb-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--amber);
  line-height: 0.9;
  font-style: italic;
}
.service-block h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.service-block p {
  color: var(--ivory-soft);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  max-width: 62ch;
}
.service-block ul {
  list-style: none;
  margin-top: 1rem;
}
.service-block ul li {
  padding: 0.6rem 0;
  color: var(--ivory-soft);
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
}
.service-block ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--amber);
}

/* ===== Case studies ===== */
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.case-card {
  border: 1px solid var(--rule);
  padding: 2.5rem;
  background: var(--ink-soft);
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}
.case-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 177, 74, 0.08) 0%, transparent 40%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.case-card:hover {
  border-color: var(--amber);
  transform: translateY(-2px);
}
.case-card:hover::before { opacity: 1; }
.case-client {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--amber);
  margin-bottom: 1rem;
  position: relative;
}
.case-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  line-height: 1.2;
  position: relative;
}
.case-card p {
  color: var(--ivory-soft);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  position: relative;
}
.case-card .case-stats {
  display: flex;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  position: relative;
}
.case-card .case-stat {
  flex: 1;
}
.case-card .case-stat .value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--amber);
  letter-spacing: -0.01em;
}
.case-card .case-stat .lbl {
  font-size: 0.78rem;
  color: var(--ivory-dim);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
}

/* ===== Contact form ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.contact-info p {
  color: var(--ivory-soft);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.contact-list {
  list-style: none;
  margin-top: 2rem;
}
.contact-list li {
  padding: 1.3rem 0;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.5rem;
  align-items: center;
}
.contact-list li:last-child { border-bottom: 1px solid var(--rule); }
.contact-list .label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
}
.contact-list .value {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ivory);
}
.contact-list .value a:hover { color: var(--amber); }

form { display: grid; gap: 1.5rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 0.6rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--ink-soft);
  border: 1px solid var(--rule-strong);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: 2px;
  transition: border 0.2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--amber);
}
.field textarea {
  resize: vertical;
  min-height: 140px;
  font-family: var(--font-body);
}
.form-note {
  font-size: 0.85rem;
  color: var(--ivory-dim);
  font-family: var(--font-mono);
}

/* ===== Decorative block quote ===== */
.pullquote {
  padding: 4rem 0;
  text-align: center;
  position: relative;
}
.pullquote::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 8rem;
  font-style: italic;
  color: var(--amber);
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.4;
  line-height: 1;
}
.pullquote p {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
  max-width: 28ch;
  margin: 2rem auto 1.5rem;
  font-style: italic;
  color: var(--ivory);
}
.pullquote cite {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ivory-dim);
}

/* ===== Fade-in animation on load ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.fade-in.d1 { animation-delay: 0.15s; }
.fade-in.d2 { animation-delay: 0.3s; }
.fade-in.d3 { animation-delay: 0.45s; }
.fade-in.d4 { animation-delay: 0.6s; }
@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--ink);
    padding: 1.5rem var(--gutter);
    gap: 1.2rem;
    border-bottom: 1px solid var(--rule);
  }

  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat:nth-child(2) { border-right: none; }
  .hero-stat:nth-child(1), .hero-stat:nth-child(2) { border-bottom: 1px solid var(--rule); }

  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--rule); }
  .pillar:last-child { border-bottom: none; }

  .outcomes { grid-template-columns: 1fr; }

  .about-grid,
  .service-block,
  .case-grid,
  .contact-grid,
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .footer-bottom { flex-direction: column; gap: 1rem; }

  .form-row { grid-template-columns: 1fr; }

  .outcome-item { grid-template-columns: 60px 1fr; gap: 1rem; }
}

@media (max-width: 560px) {
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stat { border-right: none; border-bottom: 1px solid var(--rule); }
  .hero-stat:last-child { border-bottom: none; }
}
