:root {
  --cream: #f7f4ee;
  --ivory: #fffdf8;
  --navy: #071e34;
  --navy-2: #162538;
  --gold: #b58a45;
  --gold-soft: #dac8aa;
  --line: #dfd2bf;
  --text: #2e2a25;
  --muted: #6a635b;
  --display: 'Cormorant Garamond', Georgia, serif;
  --body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container-max: 1540px;
  --container-pad: 64px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 8%, rgba(255,255,255,.65), transparent 35%),
    var(--cream);
  color: var(--navy);
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
.sos-container { width: min(calc(100% - (var(--container-pad) * 2)), var(--container-max)); margin-inline: auto; }
.skip-link { position: absolute; left: -999px; top: 12px; padding: 10px 14px; background: var(--navy); color: white; z-index: 100; }
.skip-link:focus { left: 12px; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247,244,238,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gold-soft);
}
.header-inner {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}
.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 255px;
  color: var(--navy);
  white-space: nowrap;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-soft);
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 28px;
  line-height: 1;
}
.brand-name {
  font-family: Georgia, 'Times New Roman', serif;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 17px;
  color: var(--navy);
}
.site-nav { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.menu-list { display: flex; align-items: center; gap: 30px; list-style: none; padding: 0; margin: 0; }
.menu-list a, .site-nav > a:not(.nav-cta) { font-size: 13.5px; font-weight: 600; color: var(--navy-2); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 24px;
  background: var(--navy);
  color: var(--ivory);
  border: 1px solid #06172a;
  border-radius: 2px;
  font-size: 13.5px;
  font-weight: 700;
  box-shadow: 0 9px 16px rgba(7,30,52,.10);
}
.nav-toggle { display: none; width: 42px; height: 42px; padding: 10px; background: transparent; border: 1px solid var(--line); }
.nav-toggle span:not(.screen-reader-text) { display: block; height: 1.5px; background: var(--navy); margin: 5px 0; }

/* Type */
.eyebrow {
  margin: 0 0 13px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 10.5px;
  font-weight: 800;
}
h1, h2, h3 { margin: 0; color: var(--navy); font-family: var(--display); font-weight: 600; letter-spacing: -.025em; }
h1 { font-size: clamp(48px, 4.9vw, 70px); line-height: .94; max-width: 500px; }
h2 { font-size: clamp(32px, 3vw, 43px); line-height: .98; }
h3 { font-size: 21px; line-height: 1.12; }
p { margin: 0; color: var(--muted); }

/* Hero */
.hero { border-bottom: 1px solid var(--line); }
.hero-grid {
  display: grid;
  grid-template-columns: 41% 59%;
  align-items: center;
  min-height: 370px;
  padding: 56px 0 44px;
}
.lede { max-width: 460px; margin-top: 20px; font-size: 15px; line-height: 1.72; }
.hero-actions { display: flex; gap: 18px; margin-top: 32px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 28px;
  border-radius: 2px;
  font-size: 13.5px;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button-dark { background: var(--navy); color: var(--ivory); border: 1px solid #06172a; box-shadow: 0 10px 18px rgba(7,30,52,.12); }
.button-outline { color: var(--gold); background: rgba(255,253,248,.35); border: 1px solid var(--gold-soft); min-width: 150px; }
.hero-visual { justify-self: end; width: min(100%, 560px); }
.hero-visual img { width: 100%; filter: drop-shadow(0 18px 22px rgba(7,30,52,.12)); }

/* Feature strip */
.feature-strip { border-bottom: 1px solid var(--line); background: rgba(255,253,248,.34); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.feature-grid article {
  min-height: 98px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 22px 46px;
  border-right: 1px solid var(--line);
}
.feature-grid article:first-child { padding-left: 72px; }
.feature-grid article:last-child { border-right: 0; }
.feature-grid img { width: 38px; height: 38px; color: var(--gold); flex: 0 0 auto; }
.feature-grid h2 { font-family: var(--body); font-size: 11px; line-height: 1.2; letter-spacing: .19em; text-transform: uppercase; font-weight: 800; }
.feature-grid p { margin-top: 6px; font-size: 12.8px; line-height: 1.45; max-width: 210px; }

/* Shared sections */
.section { border-bottom: 1px solid var(--line); }
.section-grid { display: grid; grid-template-columns: 245px 1fr; gap: 38px; align-items: start; }
.section-title { padding-top: 2px; }
.section-title h2 { max-width: 230px; }

/* Services */
.services { padding: 58px 0 58px; }
.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  min-height: 91px;
  padding: 21px 28px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,253,248,.17);
}
.service-list img { width: 31px; height: 31px; color: #5c6066; margin-top: 2px; }
.service-list h3 { font-size: 20px; }
.service-list p { margin-top: 6px; font-size: 12.7px; line-height: 1.48; max-width: 360px; }

/* Quality */
.quality { padding: 50px 0 46px; background: rgba(255,253,248,.23); }
.quality-columns { display: grid; grid-template-columns: repeat(3, 1fr); border-left: 1px solid var(--line); }
.quality-columns ul { list-style: none; margin: 0; padding: 0 35px; border-right: 1px solid var(--line); }
.quality-columns li { position: relative; padding-left: 28px; margin-bottom: 15px; color: var(--muted); font-size: 12.8px; line-height: 1.45; }
.quality-columns li:last-child { margin-bottom: 0; }
.quality-columns li::before { content: '✓'; position: absolute; left: 0; top: -1px; color: var(--gold); font-size: 14px; }

/* Workflow */
.workflow { padding: 52px 0 56px; }
.workflow-list { display: grid; grid-template-columns: repeat(4, 1fr); align-items: start; }
.workflow-list article { position: relative; text-align: center; padding: 0 22px; }
.workflow-list article:not(:last-child)::after { content: '→'; position: absolute; right: -10px; top: 61px; color: var(--gold); font-family: Georgia, serif; font-size: 19px; }
.workflow-list span { display: block; color: var(--gold); font-family: var(--display); font-size: 20px; line-height: 1; margin-bottom: 16px; }
.workflow-list img { width: 45px; height: 45px; margin: 0 auto 15px; color: #5c6066; }
.workflow-list h3 { font-size: 18px; }
.workflow-list p { max-width: 165px; margin: 9px auto 0; font-size: 12.3px; line-height: 1.45; }

/* Book types */
.book-types { padding: 50px 0 56px; background: rgba(255,253,248,.24); }
.book-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.book-grid article { min-height: 78px; display: grid; place-items: center; gap: 8px; padding: 14px 8px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; }
.book-grid img { width: 34px; height: 34px; color: var(--gold); }
.book-grid span { font-family: var(--display); font-size: 18px; line-height: 1; font-weight: 600; }

/* Deliverables */
.deliverables { padding: 44px 0 31px; }
.deliverable-area { padding-top: 4px; }
.format-badges { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 14px; }
.format-badges span { min-height: 61px; display: flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid var(--line); background: rgba(255,253,248,.36); border-radius: 3px; font-family: var(--display); color: var(--navy); font-size: 17px; font-weight: 600; }
.format-badges img { width: 29px; height: 29px; color: var(--gold); }
.deliverable-area p { margin-top: 18px; text-align: center; font-size: 12.5px; font-style: italic; }

/* Contact */
.contact-section { padding: 0 0 58px; }
.contact-card {
  display: grid;
  grid-template-columns: 1.05fr 1.05fr .75fr;
  align-items: center;
  gap: 34px;
  min-height: 110px;
  padding: 22px 34px;
  border: 1px solid var(--gold);
  border-radius: 5px;
  background: rgba(255,253,248,.46);
}
.contact-heading { display: grid; grid-template-columns: 70px 1fr; align-items: center; gap: 28px; padding-right: 26px; border-right: 1px solid var(--line); }
.contact-heading img { width: 62px; height: 62px; padding: 17px; border: 1px solid var(--gold-soft); border-radius: 50%; color: var(--gold); }
.contact-heading h2 { font-size: 35px; max-width: 250px; }
.contact-details { display: grid; gap: 8px; }
.contact-details a { display: flex; align-items: center; gap: 11px; color: var(--navy); font-size: 13px; font-weight: 500; }
.contact-details img { width: 20px; height: 20px; color: var(--gold); }
.contact-card .button { justify-self: end; min-width: 190px; }

/* Footer */
.site-footer { background: var(--navy); color: var(--ivory); }
.footer-inner { min-height: 76px; display: flex; align-items: center; gap: 34px; }
.footer-brand { color: var(--ivory); min-width: 260px; }
.footer-brand .brand-name { color: var(--ivory); font-size: 15px; }
.footer-inner p { margin: 0; padding-left: 34px; border-left: 1px solid rgba(181,138,69,.55); color: var(--gold-soft); font-size: 13px; }
.footer-inner span { color: var(--gold); margin: 0 10px; }

/* Default WP content */
.sos-default-page { padding: 80px 0; }
.sos-default-page h1 { max-width: none; margin-bottom: 24px; }
.entry-content { max-width: 760px; color: var(--text); }
.entry-content p { color: var(--muted); }

@media (min-width: 1500px) {
  :root { --container-pad: 80px; }
  .hero-grid { min-height: 440px; }
  .hero-visual { width: 660px; }
  h1 { font-size: 76px; }
}
@media (max-width: 1100px) {
  :root { --container-pad: 40px; }
  .header-inner { gap: 18px; }
  .brand { min-width: 230px; }
  .brand-name { font-size: 14px; letter-spacing: .16em; }
  .site-nav, .menu-list { gap: 18px; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .section-grid { grid-template-columns: 210px 1fr; gap: 30px; }
  .feature-grid article { padding-inline: 30px; }
  .feature-grid article:first-child { padding-left: 30px; }
}
@media (max-width: 860px) {
  :root { --container-pad: 24px; }
  .header-inner { height: 66px; }
  .brand { min-width: 0; }
  .brand-name { font-size: 13px; }
  .nav-toggle { display: block; }
  .site-nav { display: none; position: fixed; top: 76px; left: 24px; right: 24px; z-index: 60; background: var(--ivory); border: 1px solid var(--line); padding: 12px; box-shadow: 0 18px 50px rgba(7,30,52,.12); }
  .site-nav.is-open { display: block; }
  .menu-list { display: block; }
  .menu-list li a { display: block; padding: 12px; border-bottom: 1px solid var(--line); }
  .nav-cta { width: 100%; margin-top: 10px; }
  .hero-grid, .section-grid { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; padding: 42px 0; gap: 28px; }
  h1 { font-size: clamp(42px, 11vw, 56px); }
  .hero-visual { justify-self: start; width: min(100%, 520px); }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid article { border-right: 0; border-bottom: 1px solid var(--line); padding: 20px 0; }
  .feature-grid article:last-child { border-bottom: 0; }
  .services, .quality, .workflow, .book-types, .deliverables { padding: 44px 0; }
  .service-list { grid-template-columns: 1fr; }
  .quality-columns { grid-template-columns: 1fr; border-left: 0; gap: 12px; }
  .quality-columns ul { border-right: 0; padding: 0; }
  .workflow-list { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .workflow-list article:nth-child(2)::after { display: none; }
  .book-grid { grid-template-columns: repeat(2, 1fr); }
  .format-badges { grid-template-columns: repeat(2, 1fr); }
  .contact-card { grid-template-columns: 1fr; gap: 22px; }
  .contact-heading { border-right: 0; padding-right: 0; }
  .contact-card .button { justify-self: start; }
  .footer-inner { min-height: auto; flex-direction: column; align-items: flex-start; padding: 22px 0; gap: 16px; }
  .footer-inner p { border-left: 0; padding-left: 0; }
}
@media (max-width: 520px) {
  :root { --container-pad: 18px; }
  .brand-mark { width: 34px; height: 34px; font-size: 24px; }
  .brand-name { max-width: 178px; overflow: hidden; text-overflow: ellipsis; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .workflow-list { grid-template-columns: 1fr; }
  .workflow-list article:not(:last-child)::after { content: '↓'; right: auto; top: auto; bottom: -27px; left: 50%; transform: translateX(-50%); }
  .book-grid, .format-badges { grid-template-columns: 1fr; }
  .contact-heading { grid-template-columns: 54px 1fr; gap: 18px; }
  .contact-heading img { width: 52px; height: 52px; padding: 14px; }
  .contact-heading h2 { font-size: 30px; }
}
body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .site-header { top: 46px; } }
@media (max-width: 600px) { body.admin-bar .site-header { top: 0; } }

/* --- v3 refinements --- */
.feature-grid img,
.service-list img,
.workflow-list img,
.book-grid img,
.format-badges img,
.contact-details img,
.contact-heading img {
  color: var(--gold);
}
.service-list img,
.workflow-list img,
.book-grid img,
.format-badges img {
  opacity: .96;
}
.contact-section { padding: 0 0 72px; }
.contact-card {
  margin-top: 8px;
  gap: 42px;
  padding: 24px 36px;
}
.contact-heading {
  padding-right: 36px;
  border-right: 1px solid rgba(181,138,69,.55);
}
.contact-details {
  padding-left: 6px;
}
.contact-details a {
  font-size: 13.2px;
}
.contact-form-wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 38px;
  margin-top: 28px;
}
.form-title-block {
  padding-top: 6px;
}
.form-title-block h2 {
  max-width: 250px;
}
.form-title-block p:last-child {
  max-width: 245px;
}
.form-card {
  border: 1px solid var(--line);
  background: rgba(255,253,248,.42);
  border-radius: 5px;
  padding: 26px;
}
.form-notice {
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
}
.form-notice.success {
  color: #234d2f;
  background: #edf6ee;
  border: 1px solid #b9d6bf;
}
.form-notice.error {
  color: #8c3333;
  background: #fbefef;
  border: 1px solid #e1b8b8;
}
.contact-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px 20px;
}
.contact-form label {
  display: block;
}
.contact-form label span {
  display: block;
  margin-bottom: 7px;
  color: var(--navy-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.6);
  color: var(--text);
  font: inherit;
  font-size: 14px;
  line-height: 1.45;
  padding: 12px 14px;
  border-radius: 4px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(181,138,69,.12);
}
.contact-form .full { grid-column: 1 / -1; }
.form-actions {
  margin-top: 18px;
  display: flex;
  justify-content: flex-start;
}
.form-actions .button { min-width: 170px; }
@media (max-width: 860px) {
  .contact-form-wrap { grid-template-columns: 1fr; gap: 20px; }
  .contact-form .form-grid { grid-template-columns: 1fr; }
  .contact-heading { border-right: 0; padding-right: 0; }
  .contact-details { padding-left: 0; }
}


/* --- v4 final polish --- */

/* Header should behave like the approved UI mockup, not float across the page while scrolling. */
.site-header {
  position: relative;
  top: auto;
  z-index: 20;
  background: rgba(247,244,238,.96);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
}

/* Keep the design closer to the reference: refined icons, not black default SVGs. */
.feature-grid img,
.service-list img,
.workflow-list img,
.book-grid img,
.format-badges img,
.contact-details img,
.contact-heading img {
  opacity: 1;
  filter: none;
}

.service-list img,
.workflow-list img,
.book-grid img,
.format-badges img {
  width: 30px;
  height: 30px;
}

.feature-grid img {
  width: 34px;
  height: 34px;
}

/* Slightly stronger visual rhythm in the bottom sections. */
.deliverables {
  padding: 52px 0 36px;
}

.format-badges {
  gap: 16px;
}

.format-badges span {
  min-height: 64px;
  background: rgba(255,253,248,.52);
  border-color: rgba(181,138,69,.34);
}

/* Contact CTA: balanced columns and enough breathing room after the gold divider. */
.contact-section {
  padding: 0 0 54px;
}

.contact-card {
  margin-top: 0;
  grid-template-columns: 1.2fr 1fr .75fr;
  gap: 44px;
  min-height: 116px;
  padding: 24px 42px;
  border-color: var(--gold);
  background: rgba(255,253,248,.56);
}

.contact-heading {
  grid-template-columns: 72px 1fr;
  gap: 28px;
  padding-right: 42px;
  border-right: 1px solid rgba(181,138,69,.58);
}

.contact-heading h2 {
  font-size: 36px;
  line-height: .96;
}

.contact-heading img {
  width: 64px;
  height: 64px;
  padding: 17px;
  border-color: rgba(181,138,69,.38);
}

.contact-details {
  gap: 9px;
  padding-left: 2px;
}

.contact-details a {
  font-size: 13.5px;
  font-weight: 650;
}

.contact-details img {
  width: 19px;
  height: 19px;
}

/* Contact form: editorial, compact, and aligned with the theme instead of feeling like a generic plugin form. */
.contact-form-wrap {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 42px;
  margin-top: 34px;
  padding-bottom: 8px;
}

.form-title-block h2 {
  max-width: 270px;
  font-size: 34px;
  line-height: 1;
}

.form-title-block p:last-child {
  max-width: 270px;
  color: var(--muted);
}

.form-card {
  border: 1px solid rgba(181,138,69,.32);
  background: rgba(255,253,248,.56);
  border-radius: 5px;
  padding: 28px;
}

.contact-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px 22px;
}

.contact-form label span {
  color: var(--gold);
  font-size: 10.8px;
  letter-spacing: .18em;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  min-height: 46px;
  border-color: rgba(181,138,69,.32);
  background: rgba(255,253,248,.78);
  color: var(--navy);
}

.contact-form textarea {
  min-height: 128px;
}

.form-actions {
  margin-top: 20px;
}

/* Footer spacing closer to the approved reference. */
.site-footer {
  margin-top: 0;
}

.footer-inner {
  min-height: 78px;
}

/* Better jump target spacing now that header is no longer sticky. */
#contact-form {
  scroll-margin-top: 24px;
}

@media (max-width: 1100px) {
  .contact-card {
    grid-template-columns: 1.15fr 1fr .8fr;
    gap: 28px;
    padding: 22px 28px;
  }
  .contact-heading {
    gap: 22px;
    padding-right: 28px;
  }
  .contact-heading h2 {
    font-size: 32px;
  }
}

@media (max-width: 860px) {
  .site-header {
    position: relative;
  }
  .contact-card {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .contact-heading {
    border-right: 0;
    border-bottom: 1px solid rgba(181,138,69,.38);
    padding-right: 0;
    padding-bottom: 20px;
  }
  .contact-card .button {
    justify-self: start;
  }
  .contact-form-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-form .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .contact-card {
    padding: 20px;
  }
  .contact-heading {
    grid-template-columns: 54px 1fr;
    gap: 18px;
  }
  .contact-heading img {
    width: 52px;
    height: 52px;
    padding: 14px;
  }
  .contact-heading h2 {
    font-size: 30px;
  }
  .form-card {
    padding: 20px;
  }
}

/* --- v5 section-separation fix --- */
.deliverables {
  padding: 52px 0 52px;
}

/* Increase the visual separation between the Deliverables section and the gold-bordered CTA card. */
.contact-section {
  padding: 22px 0 54px;
}

.contact-card {
  margin-top: 0;
}

/* Slightly more room beneath the large deliverables heading so the lower divider never feels cramped. */
.deliverables .section-title h2 {
  margin-bottom: 6px;
}

@media (max-width: 860px) {
  .contact-section {
    padding-top: 18px;
  }
}



/* --- v6 hero image + approved S logo update --- */
.brand,
.footer-brand {
  align-items: center;
}

.brand-logo-wrap {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(181,138,69,.58);
  background: rgba(255,253,248,.45);
  flex: 0 0 auto;
}

.brand-logo-img {
  width: 24px;
  height: auto;
  display: block;
}

.footer-brand .brand-logo-wrap {
  border-color: rgba(181,138,69,.8);
  background: rgba(255,253,248,.04);
}

.footer-brand .brand-logo-img {
  width: 24px;
}

.brand-mark {
  display: none;
}

.hero-visual {
  width: min(100%, 700px);
}

.hero-visual img {
  width: 100%;
  filter: drop-shadow(0 22px 28px rgba(7,30,52,.12));
}

@media (min-width: 1500px) {
  .hero-visual {
    width: 760px;
  }
}

@media (max-width: 860px) {
  .brand-logo-wrap {
    width: 38px;
    height: 38px;
  }
  .brand-logo-img {
    width: 21px;
  }
  .hero-visual {
    width: min(100%, 560px);
  }
}


/* --- v7 hero image cleanup --- */
.hero-visual img {
  background: transparent;
}

/* The new hero asset is a cleaned transparent PNG without checkerboard background. */
