/* ==========================================================================
   360 Thought Leadership Consulting - threesixtytlc.com
   Thought-leadership, positioning, executive coaching for senior leaders
   --------------------------------------------------------------------------
   Palette: Deep teal + mustard + cream (bold scholarly)
   Visual language: hairline rules, Roman numerals, EB Garamond + Public Sans
   ========================================================================== */

:root {
  --ink:           #1A1F22;
  --ink-soft:      #4E5A60;
  --teal:          #0E3C44;
  --teal-deep:     #082930;
  --teal-soft:     #1F5762;
  --mustard:       #C99936;
  --mustard-deep:  #8E6B1F;
  --mustard-soft:  #E6C883;
  --paper:         #F3EDDD;
  --paper-warm:    #E5D9B7;
  --rule:          #C7B98E;
  --rule-soft:     #D9CFA8;
  --white:         #FFFFFF;

  --font-display:  'EB Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:     'Public Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --container: 1180px;
  --container-narrow: 880px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: underline; text-decoration-color: var(--mustard); text-underline-offset: 3px; transition: color .2s ease; }
a:hover { color: var(--teal-deep); text-decoration-color: var(--mustard-deep); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--teal-deep);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 .55em;
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(2.6rem, 5.4vw, 4.1rem); font-weight: 600; }
h2 { font-size: clamp(1.95rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.36rem; font-weight: 600; }
h4 { font-size: 1.08rem; }
p  { margin: 0 0 1.05em; color: var(--ink-soft); }
em, .italic { font-style: italic; }

.container {
  width: 100%;
  max-width: var(--container);
  padding: 0 26px;
  margin: 0 auto;
}
.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  padding: 0 26px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mustard-deep);
  margin-bottom: 1.2rem;
  position: relative;
  padding-left: 28px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 1px;
  background: var(--mustard);
}
.eyebrow.on-dark { color: var(--mustard-soft); }
.eyebrow.on-dark::before { background: var(--mustard-soft); }

.section-title {
  max-width: 760px;
  margin: 0 auto 3.4rem;
  text-align: left;
}
.section-title.centered { text-align: center; }
.section-title.centered .eyebrow { padding-left: 28px; }
.section-title h2 { margin-bottom: .7rem; }
.section-title p {
  font-size: 1.08rem;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-style: italic;
  line-height: 1.55;
}

/* Hairline rule */
.rule {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--rule);
  border: 0;
  margin: 0;
}
.rule-short {
  display: inline-block;
  width: 60px;
  height: 1px;
  background: var(--mustard);
  border: 0;
  margin: 0 0 1.4rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .25s ease;
  cursor: pointer;
  text-align: center;
  border: 1px solid transparent;
  text-decoration: none;
}
.btn-primary {
  background: var(--teal-deep);
  color: var(--paper);
  border-color: var(--teal-deep);
}
.btn-primary:hover {
  background: var(--mustard);
  border-color: var(--mustard);
  color: var(--teal-deep);
}
.btn-outline {
  background: transparent;
  color: var(--teal-deep);
  border-color: var(--teal-deep);
}
.btn-outline:hover { background: var(--teal-deep); color: var(--paper); }
.btn-outline.on-dark { color: var(--paper); border-color: rgba(243,237,221,0.5); }
.btn-outline.on-dark:hover { background: var(--mustard); border-color: var(--mustard); color: var(--teal-deep); }
.btn-large { padding: 17px 36px; font-size: 0.95rem; }

/* Topbar */
.topbar {
  background: var(--teal-deep);
  color: var(--paper);
  font-size: 0.84rem;
  border-bottom: 1px solid rgba(201,153,54,0.18);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 26px;
  gap: 24px;
}
.topbar-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.03em;
  font-family: var(--font-display);
  font-style: italic;
}
.topbar-tagline svg { width: 15px; height: 15px; color: var(--mustard-soft); }
.topbar-meta {
  display: inline-flex;
  align-items: center;
  gap: 22px;
}
.topbar-meta span,
.topbar-meta a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--paper);
}
.topbar-meta a { text-decoration: none; }
.topbar-meta a:hover { color: var(--mustard-soft); }
.topbar-meta svg { width: 13px; height: 13px; color: var(--mustard-soft); }

/* Nav */
.nav {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 26px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--teal-deep);
  text-decoration: none;
}
.brand-mark {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-deep);
  color: var(--mustard-soft);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  border-radius: 2px;
  border: 1px solid var(--mustard);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.18; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--teal-deep);
  letter-spacing: -0.005em;
}
.brand-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 2px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  color: var(--teal-deep);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.94rem;
  padding: 6px 2px;
  position: relative;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-menu a.active,
.nav-menu a:hover { color: var(--mustard-deep); }
.nav-menu a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--mustard);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--teal-deep);
}
.hamburger svg { width: 22px; height: 22px; }

/* Mobile drawer */
.scrim {
  position: fixed;
  inset: 0;
  background: rgba(8,41,48,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 90;
}
.scrim.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(320px, 86vw);
  background: var(--paper);
  padding: 32px 28px;
  transform: translateX(110%);
  transition: transform .3s ease;
  z-index: 100;
  display: flex;
  flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer-close {
  align-self: flex-end;
  color: var(--teal-deep);
  margin-bottom: 14px;
}
.drawer-close svg { width: 22px; height: 22px; }
.drawer ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.drawer ul a {
  display: block;
  padding: 14px 6px;
  color: var(--teal-deep);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
}
.drawer-cta { width: 100%; margin-bottom: 28px; }
.drawer-meta {
  margin-top: auto;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
  font-family: var(--font-display);
  font-style: italic;
}
.drawer-meta strong {
  font-style: normal;
  color: var(--teal-deep);
  font-weight: 600;
}

/* Hero */
.hero {
  position: relative;
  background: var(--paper);
  color: var(--ink);
  padding: 110px 0 100px;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.hero::before {
  content: "";
  position: absolute;
  top: 50px;
  right: 0;
  width: 1px;
  height: calc(100% - 100px);
  background: var(--rule);
}
.hero-mark {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(8rem, 22vw, 18rem);
  color: var(--mustard-soft);
  opacity: 0.35;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.hero-inner { position: relative; z-index: 2; max-width: 760px; }
.hero .eyebrow { margin-bottom: 1.6rem; }
.hero h1 {
  color: var(--teal-deep);
  margin-bottom: 1rem;
  font-weight: 500;
}
.hero h1 .accent { color: var(--mustard-deep); font-style: italic; }
.hero-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.1vw, 1.55rem);
  color: var(--teal-soft);
  margin: 0 0 1.6rem;
  line-height: 1.4;
}
.hero-lead {
  color: var(--ink-soft);
  font-size: 1.12rem;
  line-height: 1.7;
  margin-bottom: 2.2rem;
  max-width: 620px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 0;
}

/* Trust strip */
.trust {
  background: var(--paper);
  padding: 48px 0;
  border-bottom: 1px solid var(--rule);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-item {
  padding: 0 28px;
  border-left: 1px solid var(--rule);
  text-align: center;
}
.trust-item:first-child { border-left: 0; }
.trust-item .label {
  display: block;
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--teal-deep);
  font-weight: 600;
  margin-bottom: 4px;
}
.trust-item .desc {
  display: block;
  font-size: 0.86rem;
  color: var(--ink-soft);
  font-style: italic;
  font-family: var(--font-display);
}

/* Sections */
.section-paper { background: var(--paper); padding: 100px 0; }
.section-warm { background: var(--paper-warm); padding: 100px 0; }
.section-cream { background: #FAF6E8; padding: 100px 0; }
.section-dark {
  background: var(--teal-deep);
  color: var(--paper);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: "";
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(230,200,131,0.18);
  pointer-events: none;
}
.section-dark h2,
.section-dark h3 { color: var(--paper); }
.section-dark p { color: rgba(243,237,221,0.82); }

/* Services list - hairline rows with Roman numeral keys */
.services-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule);
}
.service-row {
  display: grid;
  grid-template-columns: 120px 1fr 1.6fr;
  gap: 40px;
  padding: 44px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.service-row .roman {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.6rem;
  color: var(--mustard);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.service-row h3 {
  margin: 0;
  font-size: 1.55rem;
  color: var(--teal-deep);
  font-weight: 600;
}
.service-row .body p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.7;
}
.service-row .body p:last-child { margin-bottom: 0; }
.service-row .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--mustard-deep);
}
.service-row .tags li::after {
  content: "·";
  margin-left: 16px;
  color: var(--rule);
}
.service-row .tags li:last-child::after { content: ""; margin: 0; }

/* Pull quote */
.pullquote {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  padding: 12px 0;
}
.pullquote .quote-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 4rem;
  color: var(--mustard);
  line-height: 0.6;
  display: block;
  margin-bottom: 14px;
}
.pullquote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.4;
  color: var(--teal-deep);
  margin: 0 0 1.4rem;
  font-weight: 500;
  font-style: italic;
}
.section-dark .pullquote blockquote { color: var(--paper); }
.pullquote cite {
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mustard-deep);
  font-weight: 600;
}
.section-dark .pullquote cite { color: var(--mustard-soft); }

/* Formats - three columns */
.formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  background: var(--paper);
}
.format {
  padding: 36px 32px;
  border-right: 1px solid var(--rule);
  background: var(--paper);
}
.format:last-child { border-right: 0; }
.format .duration {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.96rem;
  color: var(--mustard-deep);
  font-weight: 500;
  margin-bottom: 10px;
}
.format h3 {
  margin-bottom: 12px;
  font-size: 1.32rem;
  color: var(--teal-deep);
}
.format p {
  margin: 0;
  font-size: 0.96rem;
  color: var(--ink-soft);
}

/* Process - 4 steps with Roman numerals */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.process-step {
  padding: 36px 26px 36px 28px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
  position: relative;
}
.process-step:last-child { border-right: 0; }
.process-step .roman-key {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--mustard);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  display: block;
}
.process-step h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  color: var(--teal-deep);
}
.process-step p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* Who we work with - 3 cards */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.who-card {
  padding: 40px 32px;
  border-right: 1px solid var(--rule);
}
.who-card:last-child { border-right: 0; }
.who-card .roman-tiny {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--mustard-deep);
  margin-bottom: 14px;
  display: block;
  letter-spacing: 0.08em;
}
.who-card h3 {
  margin-bottom: 14px;
  font-size: 1.28rem;
  color: var(--teal-deep);
}
.who-card p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* FAQ */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--rule);
}
.faq {
  border-bottom: 1px solid var(--rule);
  background: transparent;
}
.faq summary {
  padding: 26px 50px 26px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.22rem;
  color: var(--teal-deep);
  cursor: pointer;
  list-style: none;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--mustard-deep);
  transition: transform .2s ease;
  font-weight: 400;
  line-height: 1;
}
.faq[open] summary::after { content: "-"; font-size: 1.4rem; }
.faq-body {
  padding: 0 0 26px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 720px;
}
.faq-body p { margin: 0; }

/* CTA banner */
.cta-banner {
  background: var(--teal-deep);
  color: var(--paper);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(230,200,131,0.2);
  pointer-events: none;
}
.cta-banner h2 {
  color: var(--paper);
  max-width: 780px;
  margin: 0 auto 1rem;
  font-weight: 500;
}
.cta-banner .sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--mustard-soft);
  margin-bottom: 1.8rem;
}
.cta-banner p {
  color: rgba(243,237,221,0.82);
  max-width: 640px;
  margin: 0 auto 2rem;
  font-size: 1.04rem;
}
.cta-banner .hero-actions { justify-content: center; margin: 0; }

/* Contact wrap */
.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1.2rem; }
.contact-info p { font-size: 1.04rem; margin-bottom: 1.4rem; }
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
}
.contact-row:last-child { border-bottom: 0; }
.contact-row svg { width: 20px; height: 20px; color: var(--mustard-deep); flex-shrink: 0; margin-top: 4px; }
.contact-row strong {
  display: block;
  color: var(--teal-deep);
  font-weight: 600;
  margin-bottom: 2px;
  font-family: var(--font-display);
  font-size: 1.05rem;
}
.contact-row span { color: var(--ink-soft); font-size: 0.96rem; }
.form-card {
  background: var(--paper);
  padding: 28px;
  border: 1px solid var(--rule);
}
.form-card iframe {
  width: 100%;
  border: 0;
  min-height: 770px;
  display: block;
}

/* Page hero */
.page-hero {
  background: var(--paper);
  color: var(--ink);
  padding: 90px 0 80px;
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.page-hero .eyebrow { margin-bottom: 1.4rem; }
.page-hero h1 {
  color: var(--teal-deep);
  margin-bottom: 1rem;
  font-weight: 500;
  max-width: 880px;
}
.page-hero h1 .accent { color: var(--mustard-deep); font-style: italic; }
.page-hero .lede {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--teal-soft);
  max-width: 780px;
  font-size: 1.4rem;
  line-height: 1.5;
  margin: 0;
}

/* Prose */
.prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.06rem;
  line-height: 1.78;
}
.prose h2 {
  margin-top: 2.6rem;
  font-size: 1.85rem;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  margin-top: 2rem;
  font-size: 1.32rem;
  color: var(--teal-deep);
}
.prose p { color: var(--ink-soft); }
.prose ul {
  color: var(--ink-soft);
  padding-left: 0;
  margin-bottom: 1.6rem;
  list-style: none;
}
.prose ul li {
  margin-bottom: 0.7rem;
  padding-left: 22px;
  position: relative;
}
.prose ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--mustard);
  font-weight: 600;
}
.prose .lead-para {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.32rem;
  color: var(--teal-soft);
  line-height: 1.55;
  margin-bottom: 2rem;
}

/* Engagement timeline (services page) */
.timeline {
  border-top: 1px solid var(--rule);
}
.timeline-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.timeline-weeks {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--mustard-deep);
  font-weight: 600;
}
.timeline-row h3 {
  font-size: 1.28rem;
  color: var(--teal-deep);
  margin-bottom: 8px;
}
.timeline-row p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
}

/* Specializations */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 1rem;
}
.spec-card {
  padding: 30px 28px;
  border: 1px solid var(--rule);
  background: var(--paper);
}
.spec-card h3 {
  font-size: 1.18rem;
  color: var(--teal-deep);
  margin-bottom: 12px;
}
.spec-card p {
  font-size: 0.96rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.7;
}
.spec-card .roman-tiny {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--mustard);
  font-size: 1.05rem;
  display: block;
  margin-bottom: 10px;
  letter-spacing: 0.08em;
}

/* Footer */
.footer {
  background: var(--teal-deep);
  color: rgba(243,237,221,0.78);
  padding: 76px 0 32px;
  border-top: 4px solid var(--mustard);
}
.footer h4 {
  color: var(--paper);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer .brand { margin-bottom: 18px; }
.footer .brand .brand-name,
.footer .brand .brand-sub { color: var(--paper); }
.footer .brand .brand-sub { color: var(--mustard-soft); }
.footer .brand .brand-mark { background: var(--paper); color: var(--teal-deep); border-color: var(--mustard); }
.footer p { color: rgba(243,237,221,0.72); font-size: 0.96rem; margin: 14px 0; font-family: var(--font-display); font-style: italic; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  color: rgba(243,237,221,0.78);
  font-size: 0.92rem;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.footer ul a:hover { color: var(--mustard-soft); }
.footer-meta {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(243,237,221,0.72);
  font-family: var(--font-sans);
  font-style: normal;
}
.footer-meta-row svg { width: 15px; height: 15px; color: var(--mustard-soft); }
.footer-bottom {
  border-top: 1px solid rgba(230,200,131,0.18);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(243,237,221,0.55);
  font-family: var(--font-display);
  font-style: italic;
}

/* Responsive */
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 36px; }
  .service-row { grid-template-columns: 70px 1fr; gap: 24px; }
  .service-row .body { grid-column: 1 / -1; padding-top: 8px; }
  .service-row h3 { font-size: 1.32rem; }
  .formats-grid { grid-template-columns: 1fr; }
  .format { border-right: 0; border-bottom: 1px solid var(--rule); }
  .format:last-child { border-bottom: 0; }
  .process { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2) { border-right: 0; }
  .who-grid { grid-template-columns: 1fr; }
  .who-card { border-right: 0; border-bottom: 1px solid var(--rule); }
  .who-card:last-child { border-bottom: 0; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 28px 0; }
  .trust-item:nth-child(3) { border-left: 0; }
  .spec-grid { grid-template-columns: 1fr; }
  .timeline-row { grid-template-columns: 1fr; gap: 8px; }
}
@media (max-width: 780px) {
  .topbar-tagline { display: none; }
  .topbar-inner { justify-content: center; }
  .nav-menu { display: none; }
  .hamburger { display: inline-flex; }
  .nav-cta .btn { display: none; }
  .hero { padding: 80px 0 80px; }
  .hero-mark { display: none; }
  .section-paper, .section-warm, .section-cream, .section-dark { padding: 76px 0; }
  .section-dark::before { inset: 16px; }
  .cta-banner::before { inset: 16px; }
  .page-hero { padding: 70px 0 60px; }
  .page-hero .lede { font-size: 1.2rem; }
  .process { grid-template-columns: 1fr; }
  .process-step { border-right: 0; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .trust-grid { grid-template-columns: 1fr; gap: 24px; }
  .trust-item { border-left: 0; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1; }
  .service-row { grid-template-columns: 56px 1fr; gap: 18px; padding: 32px 0; }
  .service-row .roman { font-size: 2rem; }
}
