:root {
  --ink: #121519;
  --ink-soft: #1b2026;
  --paper: #f8f7f3;
  --white: #ffffff;
  --steel: #aeb7bf;
  --steel-dark: #68747e;
  --line: #dfe3e5;
  --navy: #263a4b;
  --navy-light: #dce5eb;
  --champagne: #c6aa7f;
  --champagne-soft: #eadfce;
  --text: #2f353a;
  --muted: #687078;
  --shadow: 0 24px 70px rgba(21, 26, 31, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
}

h1,
h2 {
  font-family: "Playfair Display", serif;
}

h2 {
  font-size: clamp(2.25rem, 4.5vw, 4.4rem);
  letter-spacing: -0.035em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  background: var(--white);
  color: var(--ink);
  padding: 0.8rem 1rem;
  border-radius: 8px;
  z-index: 9999;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 2rem), 860px);
}

.section {
  padding: 7rem 0;
}

.section-dark {
  color: var(--white);
  background: var(--ink);
}

.section-soft {
  background: #eef0ef;
}

.eyebrow {
  margin-bottom: 1.2rem;
  color: var(--champagne);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--navy);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 247, 243, 0.92);
  border-bottom: 1px solid rgba(104, 116, 126, 0.16);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 0.26rem;
  color: var(--steel-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 0.93rem;
  font-weight: 600;
}

.primary-nav a:not(.nav-cta) {
  position: relative;
}

.primary-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 0.8rem 1.2rem;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(18, 21, 25, 1) 15%, rgba(24, 31, 38, 0.98) 60%, rgba(32, 49, 61, 0.95) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.2;
}

.orb-one {
  width: 420px;
  height: 420px;
  right: -140px;
  top: 70px;
  background: var(--champagne);
}

.orb-two {
  width: 250px;
  height: 250px;
  left: 25%;
  bottom: -100px;
  background: #6d8798;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.22fr 0.78fr;
  gap: 5rem;
  align-items: center;
  padding: 7rem 0;
}

.hero h1 {
  max-width: 800px;
  margin-bottom: 1.5rem;
  font-size: clamp(4rem, 8vw, 7.4rem);
  letter-spacing: -0.06em;
}

.hero h1 span {
  color: var(--champagne-soft);
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 2rem;
  color: #d7dde1;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ink);
  background: var(--champagne-soft);
}

.button-primary:hover {
  background: var(--white);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.button-ghost:hover {
  background: rgba(255,255,255,.08);
}

.button-full {
  width: 100%;
  border: 0;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  padding: 0;
  margin: 2.25rem 0 0;
  color: #c3cbd0;
  list-style: none;
  font-size: 0.92rem;
}

.trust-row li::before {
  content: "✦";
  margin-right: 0.55rem;
  color: var(--champagne);
}

.hero-card {
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 100px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0.6rem 1.2rem;
  color: #d8dee2;
  font-size: 0.83rem;
  letter-spacing: 0.04em;
}

.spark {
  color: var(--champagne);
}

.service-preview {
  display: grid;
  gap: 0.75rem;
}

.service-preview > div {
  position: relative;
  padding: 1.5rem 1.4rem 1.4rem 4.2rem;
  background: rgba(10, 12, 15, 0.54);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
}

.preview-number {
  position: absolute;
  left: 1.4rem;
  top: 1.55rem;
  color: var(--champagne);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service-preview h2 {
  margin-bottom: 0.5rem;
  font-family: "DM Sans", sans-serif;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.service-preview p {
  margin-bottom: 0;
  color: #aeb8bf;
  font-size: 0.9rem;
}

.proof-strip {
  position: relative;
  z-index: 3;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid > div {
  padding: 1.65rem 1.25rem;
  border-right: 1px solid var(--line);
}

.proof-grid > div:last-child {
  border-right: 0;
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  margin-bottom: 0.2rem;
  color: var(--ink);
}

.proof-grid span {
  color: var(--muted);
  font-size: 0.84rem;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 3rem;
}

.section-heading.compact {
  max-width: 680px;
}

.section-heading p:last-child {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.05rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  min-height: 510px;
  display: flex;
  flex-direction: column;
  padding: 2.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 50px rgba(18, 21, 25, 0.05);
}

.service-card.featured {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.card-kicker {
  align-self: flex-start;
  margin-bottom: 4.2rem;
  padding: 0.35rem 0.7rem;
  color: var(--navy);
  background: var(--navy-light);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.featured .card-kicker {
  color: var(--ink);
  background: var(--champagne-soft);
}

.service-card h3 {
  margin-bottom: 1rem;
  color: var(--ink);
  font-size: 1.75rem;
}

.featured h3 {
  color: var(--white);
}

.service-card p {
  color: var(--muted);
}

.featured p,
.featured li {
  color: #dbe1e5;
}

.service-card ul {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  margin: 1.2rem 0 2rem;
  list-style: none;
}

.service-card li::before {
  content: "✓";
  margin-right: 0.65rem;
  color: var(--champagne);
  font-weight: 700;
}

.service-card > a {
  margin-top: auto;
  color: var(--ink);
  font-weight: 700;
}

.featured > a {
  color: var(--champagne-soft);
}

.service-card > a span,
.text-link span {
  display: inline-block;
  margin-left: 0.25rem;
  transition: transform 180ms ease;
}

.service-card > a:hover span,
.text-link:hover span {
  transform: translateX(4px);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 6rem;
  align-items: center;
}

.visual-frame {
  min-height: 520px;
  position: relative;
  display: grid;
  place-items: center;
  padding: 3rem;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.visual-frame::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(198,170,127,.45);
  border-radius: 50%;
}

.visual-frame::after {
  content: "";
  position: absolute;
  inset: 25px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: calc(var(--radius-lg) - 10px);
}

.line-art-building {
  position: relative;
  z-index: 2;
  width: 220px;
  height: 250px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: end;
}

.line-art-building span {
  height: 78%;
  border: 1px solid rgba(255,255,255,.58);
  border-bottom: 0;
}

.line-art-building span:nth-child(2) { height: 100%; }
.line-art-building span:nth-child(3) { height: 90%; }
.line-art-building span:nth-child(4) { height: 68%; }

.visual-frame p {
  position: absolute;
  z-index: 3;
  bottom: 2.5rem;
  width: 70%;
  margin: 0;
  color: #ced5d9;
  text-align: center;
}

.commercial-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin: 2rem 0;
}

.check-grid span {
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.check-grid span::before {
  content: "✦";
  margin-right: 0.6rem;
  color: var(--champagne);
}

.text-link {
  color: var(--ink);
  font-weight: 700;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.audience-item {
  min-height: 260px;
  padding: 2rem;
  border-right: 1px solid var(--line);
}

.audience-item:last-child {
  border-right: 0;
}

.audience-item > span {
  color: var(--champagne);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.audience-item h3 {
  margin-top: 4rem;
  color: var(--ink);
  font-size: 1.45rem;
}

.audience-item p {
  color: var(--muted);
}

.why-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 6rem;
}

.why-copy {
  position: sticky;
  top: 130px;
  align-self: start;
}

.why-copy p:last-child {
  color: #b9c1c6;
}

.why-list {
  border-top: 1px solid rgba(255,255,255,.14);
}

.why-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 1.2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.why-list article > span {
  color: var(--champagne);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.why-list h3 {
  margin-bottom: 0.5rem;
  font-size: 1.35rem;
}

.why-list p {
  margin-bottom: 0;
  color: #b9c1c6;
}

.testimonial-section {
  background: var(--champagne-soft);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.testimonial-card {
  position: relative;
  padding: 3.4rem 2rem 2rem;
  margin: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.quote-mark {
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  color: var(--champagne-soft);
  font-family: "Playfair Display", serif;
  font-size: 5.5rem;
  line-height: 1;
}

blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.08rem, 1.5vw, 1.25rem);
  line-height: 1.5;
}

.testimonial-card figcaption {
  margin-top: 1.5rem;
  color: var(--steel-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.areas-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 6rem;
  align-items: start;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #cfd4d6;
}

.area-list span {
  padding: 1.2rem 0;
  color: var(--ink);
  border-bottom: 1px solid #cfd4d6;
  font-weight: 600;
}

.area-list span:nth-child(odd) {
  padding-right: 1rem;
}

.area-list span:nth-child(even) {
  padding-left: 1rem;
  border-left: 1px solid #cfd4d6;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 1.6rem 3rem 1.6rem 0;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  color: var(--navy);
  font-size: 1.6rem;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  max-width: 760px;
  padding-bottom: 1.5rem;
  color: var(--muted);
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 5rem;
  align-items: start;
}

.quote-copy {
  position: sticky;
  top: 130px;
}

.quote-copy > p:not(.eyebrow) {
  color: #b9c1c6;
}

.direct-contact {
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
}

.direct-contact a {
  display: grid;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.direct-contact span {
  color: #9da8ae;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.direct-contact strong {
  margin-top: 0.2rem;
  color: var(--white);
  overflow-wrap: anywhere;
}

.quote-form {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  color: var(--text);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 35px 90px rgba(0,0,0,.22);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.quote-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  color: var(--text);
  background: #f7f8f8;
  border: 1px solid #d9dfe2;
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.quote-form input,
.quote-form select {
  min-height: 48px;
  padding: 0 0.85rem;
}

.quote-form textarea {
  padding: 0.85rem;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(38,58,75,.12);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.site-footer {
  padding: 4rem 0 1.2rem;
  color: #d8dde0;
  background: #0d0f12;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1.2fr 0.6fr;
  gap: 3rem;
}

.footer-brand .brand-copy strong {
  color: var(--white);
}

.footer-grid > div:first-child > p {
  margin-top: 1.4rem;
  color: #9ca5ab;
}

.footer-grid h2 {
  margin-bottom: 1rem;
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.footer-grid a,
.footer-grid span {
  color: #aeb7bc;
  font-size: 0.9rem;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.2rem;
  color: #747d83;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 0.78rem;
}

.mobile-actions {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-one { transition-delay: 100ms; }
.delay-two { transition-delay: 200ms; }
.delay-three { transition-delay: 300ms; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .section { padding: 5.5rem 0; }

  .menu-toggle { display: block; }

  .primary-nav {
    position: fixed;
    inset: 82px 0 auto;
    min-height: calc(100vh - 82px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    background: var(--paper);
    transform: translateX(100%);
    transition: transform 220ms ease;
  }

  .primary-nav.is-open { transform: translateX(0); }

  .primary-nav a {
    padding: 1rem;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    margin-top: 1rem;
    text-align: center;
    border-radius: 12px;
  }

  .hero-grid,
  .split-grid,
  .why-grid,
  .areas-grid,
  .quote-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid { padding: 5.5rem 0; }

  .hero-card { max-width: 680px; }

  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid > div:nth-child(2) { border-right: 0; }
  .proof-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

  .cards-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-card.featured { transform: none; }
  .card-kicker { margin-bottom: 2rem; }

  .commercial-visual { order: 2; }

  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-item:nth-child(2) { border-right: 0; }
  .audience-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

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

  .testimonial-card {
    max-width: 760px;
    margin-inline: auto;
  }

  .why-copy,
  .quote-copy { position: static; }

  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  body { padding-bottom: 64px; }

  .container { width: min(calc(100% - 1.25rem), var(--container)); }
  .section { padding: 4.5rem 0; }

  .nav-wrap { min-height: 72px; }
  .primary-nav { inset: 72px 0 auto; min-height: calc(100vh - 72px); }

  .brand-copy strong { font-size: 1rem; }
  .brand-copy small { font-size: 0.6rem; }

  .hero h1 { font-size: clamp(3.4rem, 17vw, 5rem); }
  .hero-grid { padding: 4.5rem 0; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }

  .trust-row { display: grid; }

  .proof-grid,
  .audience-grid,
  .area-list,
  .field-row,
  .check-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid > div,
  .proof-grid > div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .audience-item,
  .audience-item:nth-child(2) {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .audience-item h3 { margin-top: 2.8rem; }

  .visual-frame { min-height: 420px; }

  .testimonial-card { padding: 3.5rem 1.4rem 2rem; }
  .quote-mark { left: 1rem; }

  .area-list span,
  .area-list span:nth-child(odd),
  .area-list span:nth-child(even) {
    padding: 1rem 0;
    border-left: 0;
  }

  .quote-form { padding: 1.2rem; }

  .footer-bottom { flex-direction: column; }

  .mobile-actions {
    position: fixed;
    z-index: 1200;
    inset: auto 0 0;
    height: 64px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: rgba(13,15,18,.97);
    border-top: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
  }

  .mobile-actions a {
    display: grid;
    place-items: center;
    color: var(--white);
    border-right: 1px solid rgba(255,255,255,.12);
    font-weight: 700;
  }

  .mobile-actions a:last-child {
    color: var(--ink);
    background: var(--champagne-soft);
    border-right: 0;
  }
}

/* Final Ivory & Steel logo */
.brand-logo {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  object-fit: contain;
}

.footer-brand .brand-logo {
  width: 70px;
  height: 70px;
  flex-basis: 70px;
}

@media (max-width: 540px) {
  .brand-logo {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  .brand-copy strong {
    font-size: 1.02rem;
  }
}
