/* ==========================================================================
   DrS Consulting Group - drsconsultinggroupandassociatesllc.com
   Management Consulting & Leadership Development
   --------------------------------------------------------------------------
   Palette: Plum + Ochre + Bone
   Typography: Playfair Display 800 (display) + Outfit (sans)
   Modern editorial aesthetic - bold, confident, premium
   ========================================================================== */

:root {
  --plum:          #2A1F3D;
  --plum-deep:     #160E22;
  --plum-soft:     #4A3A65;
  --ochre:         #D29135;
  --ochre-deep:    #A66E1C;
  --ochre-soft:    #E8C078;
  --bone:          #F4EFE7;
  --bone-warm:     #EAE2CF;
  --rule:          #D5C9AC;
  --rule-soft:     #E4DAC2;
  --ink:           #160E22;
  --ink-soft:      #5A4F6B;
  --white:         #FFFFFF;

  --radius: 0px;
  --radius-sm: 2px;
  --shadow-sm: 0 1px 2px rgba(22,14,34,0.05), 0 2px 8px rgba(22,14,34,0.03);
  --shadow-md: 0 6px 18px rgba(22,14,34,0.08);

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Outfit', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --container: 1200px;
  --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: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
}
img, svg { max-width: 100%; display: block; }
a {
  color: var(--ochre-deep);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, color .2s ease;
}
a:hover { color: var(--plum); border-bottom-color: var(--ochre); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--plum);
  font-weight: 800;
  line-height: 1.08;
  margin: 0 0 .55em;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.015em; }
h4 { font-size: 1rem; font-weight: 700; }
p  { margin: 0 0 1.1em; color: var(--ink-soft); }

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

/* Eyebrow */
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ochre-deep);
  margin-bottom: 1.4rem;
  position: relative;
  padding-left: 32px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 1px;
  background: var(--ochre);
}
.eyebrow.on-dark { color: var(--ochre-soft); }
.eyebrow.on-dark::before { background: var(--ochre-soft); }
.eyebrow.center { padding-left: 0; }
.eyebrow.center::before { display: none; }

.section-title {
  margin-bottom: 4rem;
  max-width: 760px;
}
.section-title.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-title.center .eyebrow { padding-left: 0; }
.section-title.center .eyebrow::before { display: none; }
.section-title h2 { margin-bottom: .8rem; }
.section-title p {
  font-size: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: 16px 32px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: all .25s ease;
  cursor: pointer;
  text-align: center;
  border: 1.5px solid transparent;
  text-transform: uppercase;
  position: relative;
}
.btn-primary {
  background: var(--plum-deep);
  color: var(--bone);
  border-color: var(--plum-deep);
}
.btn-primary:hover {
  background: var(--plum);
  border-color: var(--plum);
  color: var(--ochre-soft);
}
.btn-outline {
  background: transparent;
  color: var(--plum);
  border-color: var(--ochre);
}
.btn-outline:hover { background: var(--ochre); color: var(--plum-deep); border-color: var(--ochre); }
.btn-outline.on-dark { color: var(--bone); border-color: var(--ochre-soft); }
.btn-outline.on-dark:hover { background: var(--ochre); color: var(--plum-deep); border-color: var(--ochre); }
.btn-large { padding: 18px 38px; font-size: 1rem; }

/* Topbar */
.topbar {
  background: var(--plum-deep);
  color: var(--bone);
  font-size: 0.83rem;
  letter-spacing: 0.02em;
}
.topbar a { color: var(--bone); border-bottom: 0; }
.topbar a:hover { color: var(--ochre-soft); }
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 28px;
  gap: 24px;
}
.topbar-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(244,239,231,0.85);
}
.topbar-tagline svg { width: 16px; height: 16px; color: var(--ochre-soft); }
.topbar-meta {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}
.topbar-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(244,239,231,0.85);
}
.topbar-meta svg { width: 14px; height: 14px; color: var(--ochre-soft); }

/* Nav */
.nav {
  background: var(--bone);
  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: 22px 28px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--plum);
  border-bottom: 0;
}
.brand:hover { color: var(--plum); }
.brand-mark {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--plum-deep);
  color: var(--ochre);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.04em;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.18rem;
  color: var(--plum);
  letter-spacing: -0.015em;
}
.brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
  font-weight: 500;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  color: var(--plum);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 0;
  position: relative;
  border-bottom: 0;
}
.nav-menu a.active,
.nav-menu a:hover { color: var(--ochre-deep); }
.nav-menu a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--ochre);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--plum);
}
.hamburger svg { width: 24px; height: 24px; }

/* Mobile drawer */
.scrim {
  position: fixed;
  inset: 0;
  background: rgba(22,14,34,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(340px, 88vw);
  background: var(--bone);
  padding: 32px 30px;
  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(--plum);
  margin-bottom: 14px;
}
.drawer-close svg { width: 24px; height: 24px; }
.drawer ul {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: flex;
  flex-direction: column;
}
.drawer ul a {
  display: block;
  padding: 16px 4px;
  color: var(--plum);
  font-weight: 600;
  font-size: 1.05rem;
  font-family: var(--font-display);
  border-bottom: 1px solid var(--rule);
}
.drawer-cta { width: 100%; margin-bottom: 28px; }
.drawer-meta {
  margin-top: auto;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
.drawer-meta strong { color: var(--plum); font-family: var(--font-display); font-weight: 700; }

/* Hero */
.hero {
  position: relative;
  background: var(--bone);
  padding: 120px 0 130px;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 1px;
  background: var(--rule);
  opacity: 0.5;
  transform: translateX(-50%);
  pointer-events: none;
}
.hero-glyph {
  position: absolute;
  right: -80px;
  bottom: -120px;
  font-family: var(--font-display);
  font-size: 28rem;
  font-weight: 800;
  color: var(--ochre);
  opacity: 0.07;
  line-height: 0.8;
  pointer-events: none;
  letter-spacing: -0.06em;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
}
.hero h1 {
  color: var(--plum);
  margin-bottom: 1.4rem;
}
.hero h1 .accent {
  color: var(--ochre-deep);
  font-style: italic;
  font-weight: 800;
}
.hero-lead {
  color: var(--ink-soft);
  font-size: 1.25rem;
  line-height: 1.55;
  margin-bottom: 2.4rem;
  max-width: 720px;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 0;
}

/* Trust strip */
.trust {
  background: var(--plum-deep);
  color: var(--bone);
  padding: 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  padding: 38px 28px;
  border-right: 1px solid rgba(244,239,231,0.1);
  text-align: center;
}
.trust-item:last-child { border-right: 0; }
.trust-item .label {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ochre-soft);
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.trust-item .desc {
  display: block;
  font-size: 0.86rem;
  color: rgba(244,239,231,0.7);
  line-height: 1.4;
}

/* Sections */
.section-bone { background: var(--bone); padding: 110px 0; }
.section-bone-warm { background: var(--bone-warm); padding: 110px 0; }
.section-plum { background: var(--plum-deep); color: var(--bone); padding: 110px 0; }
.section-plum h2 { color: var(--bone); }
.section-plum h3 { color: var(--bone); }
.section-plum p { color: rgba(244,239,231,0.8); }
.section-plum .section-title p { color: rgba(244,239,231,0.78); }

/* Services - editorial 2-col blocks with ochre hairlines */
.services-list {
  margin-top: 1rem;
  border-top: 1px solid var(--ochre);
}
.service-row {
  display: grid;
  grid-template-columns: 100px 1fr 1.4fr;
  gap: 48px;
  padding: 44px 0;
  border-bottom: 1px solid var(--ochre);
  align-items: start;
}
.service-row .service-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--ochre);
  line-height: 1;
  letter-spacing: -0.03em;
  font-style: italic;
}
.service-row h3 {
  font-size: 1.7rem;
  margin: 0;
  letter-spacing: -0.02em;
}
.service-row .service-body p {
  margin: 0 0 1em;
  font-size: 1.02rem;
  line-height: 1.65;
}
.service-row .service-body p:last-child { margin-bottom: 0; }
.service-row .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.service-row .chips li {
  font-size: 0.78rem;
  background: transparent;
  color: var(--plum);
  padding: 5px 12px;
  border: 1px solid var(--rule);
  letter-spacing: 0.04em;
  font-weight: 500;
}

/* Formats grid */
.formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  background: var(--bone);
}
.format {
  padding: 44px 36px;
  border-right: 1px solid var(--rule);
  background: var(--bone);
}
.format:last-child { border-right: 0; }
.format .duration {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--ochre-deep);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.format h3 {
  margin-bottom: 14px;
  font-size: 1.5rem;
}
.format p { margin: 0; font-size: 0.98rem; color: var(--ink-soft); }

/* Process - big ochre numerals */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 2rem;
}
.process-step {
  position: relative;
  padding: 0 32px 0 0;
  border-right: 1px solid rgba(210,145,53,0.3);
}
.process-step:nth-child(n+2) { padding-left: 32px; }
.process-step:last-child { border-right: 0; }
.process-num {
  font-family: var(--font-display);
  font-size: 5.5rem;
  font-weight: 800;
  color: var(--ochre);
  line-height: 0.9;
  margin-bottom: 18px;
  letter-spacing: -0.04em;
  display: block;
}
.section-plum .process-num { color: var(--ochre); }
.process-step h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}
.process-step p {
  font-size: 0.96rem;
  margin: 0;
  line-height: 1.6;
}

/* Audiences (who we work with) - 3 card */
.audiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.audience-card {
  background: var(--bone);
  border: 1px solid var(--rule);
  padding: 38px 32px;
  position: relative;
  transition: border-color .25s ease, transform .25s ease;
}
.audience-card:hover {
  border-color: var(--ochre);
  transform: translateY(-3px);
}
.audience-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--ochre);
}
.audience-card h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}
.audience-card p {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.6;
}

/* Pull quote */
.pull-quote {
  max-width: 880px;
  margin: 0 auto;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.3;
  color: var(--bone);
  letter-spacing: -0.015em;
  position: relative;
  padding-left: 60px;
}
.pull-quote::before {
  content: "\201C";
  position: absolute;
  left: 0;
  top: -20px;
  font-size: 6rem;
  line-height: 1;
  color: var(--ochre);
  font-weight: 800;
}
.pull-quote cite {
  display: block;
  margin-top: 1.6rem;
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ochre-soft);
  font-weight: 600;
}

/* FAQ */
.faq-wrap {
  max-width: 880px;
  margin: 0 auto;
}
.faq {
  background: var(--bone);
  border-bottom: 1px solid var(--rule);
  margin-bottom: 0;
  overflow: hidden;
}
.faq:first-child { border-top: 1px solid var(--rule); }
.faq summary {
  padding: 28px 60px 28px 0;
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--plum);
  cursor: pointer;
  list-style: none;
  position: relative;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: var(--ochre);
  transition: transform .25s ease;
  font-weight: 400;
  font-family: var(--font-display);
  line-height: 1;
}
.faq[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-body {
  padding: 0 60px 30px 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
}
.faq-body p { margin: 0; }

/* CTA banner */
.cta-banner {
  background: var(--plum-deep);
  color: var(--bone);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border: 1px solid var(--ochre);
  opacity: 0.15;
  transform: rotate(45deg);
}
.cta-banner h2 {
  color: var(--bone);
  max-width: 820px;
  margin-bottom: 1rem;
}
.cta-banner h2 .accent { color: var(--ochre-soft); font-style: italic; }
.cta-banner p {
  color: rgba(244,239,231,0.82);
  max-width: 680px;
  margin: 0 0 2.4rem;
  font-size: 1.1rem;
}
.cta-banner .hero-actions { margin: 0; }
.cta-banner .container { position: relative; z-index: 2; }

/* Contact */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1.2rem; }
.contact-info > p { font-size: 1.06rem; margin-bottom: 2rem; }
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
}
.contact-row:last-child { border-bottom: 0; }
.contact-row svg {
  width: 22px;
  height: 22px;
  color: var(--ochre-deep);
  flex-shrink: 0;
  margin-top: 4px;
}
.contact-row strong {
  display: block;
  color: var(--plum);
  font-weight: 700;
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: 1.08rem;
}
.contact-row span {
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.55;
}
.form-card {
  background: var(--bone);
  padding: 36px;
  border: 1px solid var(--rule);
}
.form-card iframe {
  width: 100%;
  border: 0;
  min-height: 750px;
  display: block;
}

/* Page hero */
.page-hero {
  background: var(--bone);
  color: var(--plum);
  padding: 110px 0 100px;
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: 30%;
  right: -100px;
  width: 320px;
  height: 320px;
  border: 1px solid var(--ochre);
  opacity: 0.15;
  transform: rotate(45deg);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 820px; }
.page-hero h1 { color: var(--plum); margin-bottom: 1.2rem; }
.page-hero h1 .accent { color: var(--ochre-deep); font-style: italic; }
.page-hero p {
  color: var(--ink-soft);
  max-width: 720px;
  font-size: 1.18rem;
  line-height: 1.6;
}

/* Prose for About */
.prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.75;
}
.prose h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  margin-top: 2rem;
  margin-bottom: 0.6rem;
  font-size: 1.4rem;
}
.prose p { color: var(--ink-soft); }
.prose ul {
  color: var(--ink-soft);
  padding-left: 22px;
  margin-bottom: 1.4rem;
}
.prose ul li {
  margin-bottom: 0.7rem;
  padding-left: 4px;
}
.prose ul li::marker { color: var(--ochre); }
.prose strong { color: var(--plum); font-weight: 700; }

/* Specializations */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.spec-item {
  padding: 36px 32px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--bone);
}
.spec-item h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.spec-item h3::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--ochre);
  flex-shrink: 0;
}
.spec-item p { margin: 0; font-size: 0.96rem; }

/* Delivery rows */
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px;
}
.delivery-block h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.delivery-block p {
  font-size: 1rem;
  line-height: 1.7;
}
.delivery-block ul {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
}
.delivery-block ul li {
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid var(--rule);
  position: relative;
  color: var(--ink-soft);
  font-size: 0.97rem;
}
.delivery-block ul li:last-child { border-bottom: 0; }
.delivery-block ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 16px;
  height: 1px;
  background: var(--ochre);
}

/* Footer */
.footer {
  background: var(--plum-deep);
  color: rgba(244,239,231,0.7);
  padding: 80px 0 32px;
}
.footer h4 {
  color: var(--bone);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-family: var(--font-sans);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.footer .brand { margin-bottom: 22px; }
.footer .brand .brand-name { color: var(--bone); }
.footer .brand .brand-sub { color: rgba(244,239,231,0.6); }
.footer .brand .brand-mark { background: var(--ochre); color: var(--plum-deep); }
.footer p { color: rgba(244,239,231,0.7); font-size: 0.95rem; margin: 14px 0; line-height: 1.7; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: rgba(244,239,231,0.72); font-size: 0.92rem; border-bottom: 0; }
.footer ul a:hover { color: var(--ochre-soft); }
.footer-meta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(244,239,231,0.7);
}
.footer-meta-row svg { width: 16px; height: 16px; color: var(--ochre-soft); flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(244,239,231,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.82rem;
  color: rgba(244,239,231,0.5);
}

/* Responsive */
@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; }
  .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: repeat(2, 1fr); }
  .process-step { border-right: 0; padding: 0 0 0 0; margin-bottom: 32px; }
  .process-step:nth-child(odd) { padding-right: 24px; border-right: 1px solid rgba(210,145,53,0.3); }
  .process-step:nth-child(even) { padding-left: 24px; }
  .audiences-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 44px; }
  .delivery-grid { grid-template-columns: 1fr; gap: 40px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(odd) { border-right: 1px solid rgba(244,239,231,0.1); }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid rgba(244,239,231,0.1); }
  .service-row { grid-template-columns: 64px 1fr; gap: 24px; }
  .service-row .service-body { grid-column: 1 / -1; padding-top: 8px; }
}
@media (max-width: 780px) {
  body { font-size: 16px; }
  .topbar-tagline { display: none; }
  .topbar-meta { gap: 16px; font-size: 0.78rem; }
  .nav-menu { display: none; }
  .hamburger { display: inline-flex; }
  .nav-cta .btn { display: none; }
  .hero { padding: 80px 0 100px; }
  .hero-glyph { font-size: 18rem; right: -50px; bottom: -80px; }
  .section-bone, .section-bone-warm, .section-plum, .cta-banner { padding: 80px 0; }
  .page-hero { padding: 80px 0 70px; }
  .spec-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .service-row { padding: 32px 0; }
  .service-row .service-num { font-size: 1.8rem; }
  .service-row h3 { font-size: 1.4rem; }
  .form-card { padding: 24px; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0 !important; border-bottom: 1px solid rgba(244,239,231,0.1); }
  .trust-item:last-child { border-bottom: 0; }
  .process { grid-template-columns: 1fr; }
  .process-step { border-right: 0 !important; padding: 0 !important; }
  .hero-actions .btn { width: 100%; }
  .brand-sub { display: none; }
}
