/* ============================================
   C2HNS — Shared Stylesheet
   ============================================ */

:root {
  --paper:        #F5F1E8;
  --paper-warm:   #EDE6D6;
  --paper-deep:   #E8DFC9;
  --ink:          #0F1419;
  --ink-soft:     #2A2E36;
  --ink-mid:      #4A4E56;
  --muted:        #6B6862;
  --muted-light:  #9A9690;
  --accent:       #B84A1F;
  --accent-deep:  #8E3614;
  --accent-soft:  #D67A4F;
  --line:         rgba(15, 20, 25, 0.12);
  --line-soft:    rgba(15, 20, 25, 0.06);
  --display:      'Fraunces', Georgia, serif;
  --body:         'Geist', -apple-system, system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 80% 50% at 80% -10%, rgba(184, 74, 31, 0.06), transparent 60%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(184, 74, 31, 0.04), transparent 60%);
}

::selection { background: var(--accent); color: var(--paper); }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.wrap-narrow {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 640px) {
  .wrap, .wrap-narrow { padding: 0 22px; }
}

/* ---------- Navigation ---------- */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(245, 241, 232, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.3s, border-color 0.3s;
}

nav.site-nav.scrolled {
  background: rgba(245, 241, 232, 0.95);
  border-bottom-color: var(--line);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.logo-dot { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover { color: var(--accent); }

.nav-links a.active {
  color: var(--ink);
  font-weight: 500;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
}

.nav-cta {
  background: var(--ink) !important;
  color: var(--paper) !important;
  padding: 10px 18px;
  border-radius: 2px;
  font-size: 13px !important;
  letter-spacing: 0.02em;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--accent) !important; }
.nav-cta.active::after { display: none !important; }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--ink);
  z-index: 101;
}

.nav-toggle svg { width: 24px; height: 24px; display: block; }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 99;
  padding: 100px 32px 40px;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu.open { transform: translateY(0); }

.mobile-menu a {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.mobile-menu a.active { color: var(--accent); font-style: italic; }

.mobile-menu .mobile-cta {
  margin-top: 32px;
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  font-family: var(--body);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 18px;
  border-radius: 2px;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
}

/* ---------- Section helpers ---------- */
section { padding: 120px 0; position: relative; }

@media (max-width: 768px) {
  section { padding: 80px 0; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
  font-weight: 500;
}

.eyebrow .num {
  color: var(--accent);
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0;
  text-transform: none;
}

.section-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 5.5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  max-width: 18ch;
}

.section-title em { font-style: italic; color: var(--accent); }

.section-intro {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
  margin-bottom: 72px;
}

/* ---------- Page Hero (subpages) ---------- */
.page-hero {
  padding: 180px 0 100px;
  border-bottom: 1px solid var(--line);
}

.page-hero-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
  font-weight: 500;
}

.page-hero-meta::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.page-hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 32px;
  max-width: 18ch;
}

.page-hero h1 em { font-style: italic; color: var(--accent); font-weight: 400; }

.page-hero-lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
}

@media (max-width: 768px) {
  .page-hero { padding: 130px 0 70px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.btn-accent {
  background: var(--accent);
  color: var(--paper);
}

.btn-accent:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn-arrow::after { content: '→'; font-size: 16px; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--ink);
  color: rgba(245, 241, 232, 0.6);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

footer.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 100% 0%, rgba(184, 74, 31, 0.08), transparent 60%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  position: relative;
}

.footer-brand .logo { color: var(--paper); font-size: 26px; margin-bottom: 18px; }
.footer-brand p { font-size: 14px; line-height: 1.6; max-width: 28ch; }

.footer-col h4 {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.5);
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent-soft); }

.footer-address { font-size: 14px; line-height: 1.7; color: var(--paper); }
.footer-address a { color: var(--accent-soft); }

.footer-bottom {
  border-top: 1px solid rgba(245, 241, 232, 0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Cards ---------- */
.card {
  border: 1px solid var(--line);
  padding: 32px;
  background: var(--paper);
  transition: all 0.3s;
}

.card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

/* ============================================
   HOME PAGE
   ============================================ */
.hero-home {
  padding: 200px 0 140px;
  position: relative;
}

.hero-home h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(48px, 8.5vw, 116px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin-bottom: 40px;
  max-width: 16ch;
}

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

.hero-sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 64px;
  align-items: start;
}

.hero-lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 48ch;
}

.hero-stats { border-top: 1px solid var(--line); padding-top: 28px; }

.hero-stats dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 24px;
}

.hero-stats dt {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.hero-stats dd {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .hero-home { padding: 140px 0 90px; }
  .hero-sub { grid-template-columns: 1fr; gap: 48px; margin-top: 48px; }
}

/* Marquee */
.marquee-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  overflow: hidden;
  background: var(--paper-warm);
}

.marquee-track {
  display: flex;
  gap: 80px;
  animation: scroll 40s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 80px;
}

.marquee-item::after {
  content: '✦';
  color: var(--accent);
  font-style: normal;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Services preview */
.services-preview {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-warm) 100%);
}

.services-list { display: flex; flex-direction: column; }

.service-row {
  border-top: 1px solid var(--line);
  padding: 36px 0;
  display: grid;
  grid-template-columns: 80px 1fr 2.2fr auto;
  gap: 40px;
  align-items: start;
  transition: padding 0.4s ease;
}

.service-row:last-child { border-bottom: 1px solid var(--line); }

.service-row:hover { padding-left: 16px; padding-right: 16px; background: var(--paper-deep); }
.service-row:hover .service-arrow { color: var(--accent); transform: translateX(6px); }
.service-row:hover .service-title { color: var(--accent); }

.service-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--muted);
  padding-top: 6px;
}

.service-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  transition: color 0.3s;
}

.service-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.service-arrow {
  font-family: var(--display);
  font-size: 24px;
  color: var(--muted);
  transition: transform 0.3s, color 0.3s;
  padding-top: 4px;
}

@media (max-width: 900px) {
  .service-row {
    grid-template-columns: 40px 1fr;
    gap: 16px 20px;
    padding: 32px 0;
  }
  .service-arrow { display: none; }
  .service-title { font-size: 22px; grid-column: 2; }
  .service-desc { grid-column: 2; }
}

/* Featured insight */
.featured-insight {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  padding: 80px;
  background: var(--paper-warm);
  border: 1px solid var(--line);
}

.featured-insight-meta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  font-weight: 500;
}

.featured-insight h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.featured-insight p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

@media (max-width: 900px) {
  .featured-insight { grid-template-columns: 1fr; gap: 32px; padding: 40px; }
}

/* CTA Band */
.cta-band {
  background: var(--ink);
  color: var(--paper);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 0%, rgba(184, 74, 31, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 70% 100%, rgba(184, 74, 31, 0.12), transparent 60%);
  pointer-events: none;
}

.cta-band .wrap-narrow { position: relative; }

.cta-band h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.cta-band h2 em { font-style: italic; color: var(--accent-soft); }

.cta-band p {
  font-size: 18px;
  color: rgba(245, 241, 232, 0.75);
  max-width: 52ch;
  margin: 0 auto 40px;
}

.cta-band .btn-accent { font-size: 14px; padding: 18px 36px; }

/* ============================================
   SERVICES PAGE
   ============================================ */
.service-detail {
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
}

.service-detail:last-of-type { border-bottom: none; }

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.service-detail-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  display: block;
}

.service-detail h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.service-detail-content p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 22px;
}

.service-detail-content ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.service-detail-content ul li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-soft);
}

.service-detail-content ul li::before {
  content: '✦';
  color: var(--accent);
  font-size: 11px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .service-detail { padding: 70px 0; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .service-detail-content ul { grid-template-columns: 1fr; gap: 10px; }
}

/* Engagement model */
.engagement-section { background: var(--paper-warm); border-top: 1px solid var(--line); }

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.engagement-step {
  border-top: 1px solid var(--ink);
  padding-top: 24px;
}

.engagement-step-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}

.engagement-step h4 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}

.engagement-step p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .engagement-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .engagement-grid { grid-template-columns: 1fr; }
}

/* ============================================
   INDUSTRIES PAGE
   ============================================ */
.industries-section { padding: 80px 0 120px; }

.industry-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 30px;
}

.industry-filter {
  background: transparent;
  border: 1px solid var(--line);
  padding: 10px 20px;
  font-family: var(--body);
  font-size: 13px;
  color: var(--ink-soft);
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.2s;
}

.industry-filter:hover { border-color: var(--ink); }

.industry-filter.active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}

.industry-card {
  padding: 48px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition: background 0.3s;
  cursor: pointer;
}

.industry-card:nth-child(2n) { border-right: none; }
.industry-card:nth-last-child(-n+2) { border-bottom: none; }

.industry-card:hover { background: var(--paper-warm); }
.industry-card:hover .industry-arrow { transform: translateX(4px); color: var(--accent); }

.industry-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.industry-tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

.industry-arrow {
  font-family: var(--display);
  font-size: 20px;
  color: var(--muted);
  transition: all 0.3s;
}

.industry-card h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 30px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 18px;
}

.industry-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.industry-card.hidden { display: none; }

@media (max-width: 768px) {
  .industries-grid { grid-template-columns: 1fr; }
  .industry-card { border-right: none !important; padding: 36px 28px; }
  .industry-card:not(:last-child) { border-bottom: 1px solid var(--line) !important; }
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.story-section .about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
}

.story-text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 22px;
}

.story-text p:first-of-type::first-letter {
  font-family: var(--display);
  font-size: 64px;
  font-weight: 500;
  float: left;
  line-height: 0.85;
  margin: 6px 12px 0 0;
  color: var(--accent);
}

.principles { display: flex; flex-direction: column; gap: 0; }

.principle {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: baseline;
}

.principle:last-child { border-bottom: 1px solid var(--line); }

.principle-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.principle h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}

.principle p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
}

@media (max-width: 900px) {
  .story-section .about-grid { grid-template-columns: 1fr; gap: 60px; }
}

/* Global presence */
.presence-section {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.presence-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(184, 74, 31, 0.15), transparent 60%);
  pointer-events: none;
}

.presence-section .wrap { position: relative; }
.presence-section .eyebrow { color: rgba(245, 241, 232, 0.55); }
.presence-section .section-title { color: var(--paper); }
.presence-section .section-intro { color: rgba(245, 241, 232, 0.7); }

.regions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid rgba(245, 241, 232, 0.15);
  border-bottom: 1px solid rgba(245, 241, 232, 0.15);
}

.region {
  padding: 40px 28px;
  border-right: 1px solid rgba(245, 241, 232, 0.15);
  text-align: left;
}

.region:last-child { border-right: none; }

.region-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}

.region-detail {
  font-size: 13px;
  color: rgba(245, 241, 232, 0.6);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .regions-grid { grid-template-columns: 1fr 1fr; }
  .region:nth-child(2n) { border-right: none; }
  .region:nth-child(-n+2) { border-bottom: 1px solid rgba(245, 241, 232, 0.15); }
}

@media (max-width: 500px) {
  .regions-grid { grid-template-columns: 1fr; }
  .region { border-right: none !important; border-bottom: 1px solid rgba(245, 241, 232, 0.15); }
  .region:last-child { border-bottom: none; }
}

/* ============================================
   INSIGHTS PAGE
   ============================================ */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.insight-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: all 0.3s;
  cursor: pointer;
}

.insight-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.insight-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.insight-tag { color: var(--accent); font-weight: 500; }
.insight-date { color: var(--muted); }

.insight-card h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  flex: 1;
}

.insight-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.insight-card-link {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-top: 8px;
}

.insight-card.hidden { display: none; }

@media (max-width: 900px) {
  .insights-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .insights-grid { grid-template-columns: 1fr; }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  background: var(--ink);
  color: var(--paper);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(184, 74, 31, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(184, 74, 31, 0.12), transparent 60%);
  pointer-events: none;
}

.contact-section .wrap { position: relative; }
.contact-section .eyebrow { color: rgba(245, 241, 232, 0.55); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 100px;
  align-items: start;
}

.contact-section .section-title { color: var(--paper); margin-bottom: 36px; }

.contact-info { font-size: 15px; line-height: 1.7; }

.contact-block {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(245, 241, 232, 0.12);
}

.contact-block:last-child { border-bottom: none; }

.contact-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.5);
  margin-bottom: 12px;
}

.contact-value { color: var(--paper); font-size: 16px; line-height: 1.55; }
.contact-value a { color: var(--accent-soft); border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.contact-value a:hover { border-bottom-color: var(--accent-soft); }

/* Form */
.form { display: flex; flex-direction: column; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 8px; }

.field label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.55);
}

.field input,
.field textarea,
.field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(245, 241, 232, 0.25);
  color: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  padding: 8px 0 12px;
  transition: border-color 0.2s;
  outline: none;
  border-radius: 0;
}

.field input::placeholder,
.field textarea::placeholder { color: rgba(245, 241, 232, 0.35); }

.field input:focus,
.field textarea:focus,
.field select:focus { border-bottom-color: var(--accent-soft); }

.field textarea { resize: vertical; min-height: 110px; font-family: var(--body); }

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3e%3cpath d='M1 1l5 5 5-5' stroke='%23F5F1E8' stroke-width='1.2' fill='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 24px;
  cursor: pointer;
}

.field select option { background: var(--ink); color: var(--paper); }

.submit-btn {
  align-self: flex-start;
  margin-top: 18px;
  background: var(--accent);
  color: var(--paper);
  border: none;
  padding: 18px 38px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border-radius: 2px;
}

.submit-btn:hover { background: var(--accent-deep); transform: translateY(-1px); }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.form-status {
  font-size: 14px;
  margin-top: 4px;
  min-height: 20px;
}

.form-status.success { color: #8FCB9B; }
.form-status.error { color: #E48472; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .form-row { grid-template-columns: 1fr; }
}

/* FAQ Accordion */
.faq-section { background: var(--paper-warm); }

.faq-list { display: flex; flex-direction: column; }

.faq-item {
  border-top: 1px solid var(--line);
  cursor: pointer;
}

.faq-item:last-child { border-bottom: 1px solid var(--line); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--ink);
  transition: color 0.2s;
}

.faq-item:hover .faq-question { color: var(--accent); }

.faq-toggle {
  font-family: var(--display);
  font-size: 24px;
  color: var(--accent);
  transition: transform 0.3s;
}

.faq-item.open .faq-toggle { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer-inner {
  padding: 0 0 28px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 70ch;
}

.faq-item.open .faq-answer { max-height: 500px; }

@media (max-width: 600px) {
  .faq-question { font-size: 18px; }
}
