:root {
  --ink: #30333a;
  --muted: #606875;
  --paper: #f8fafc;
  --surface: #ffffff;
  --line: rgba(48, 51, 58, 0.14);
  --brand-blue: #3f62a3;
  --brand-blue-dark: #263f78;
  --brand-blue-soft: #eef3fb;
  --brand-gold: #e4c900;
  --brand-gold-dark: #bba300;
  --charcoal: #46474c;
  --green: var(--brand-blue);
  --green-dark: var(--brand-blue-dark);
  --rose: var(--brand-gold-dark);
  --gold: var(--brand-gold);
  --blue: var(--charcoal);
  --shadow: 0 24px 70px rgba(38, 63, 120, 0.16);
  --radius: 8px;
  --content: min(1160px, calc(100vw - 36px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 86px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

body.is-locked {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 16px max(22px, calc((100vw - 1180px) / 2));
  color: #fff;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    padding 180ms ease;
}

.site-header.is-scrolled {
  padding-block: 10px;
  color: var(--ink);
  background: rgba(247, 245, 239, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 34px rgba(23, 33, 31, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
}

.brand-logo-wrap {
  display: inline-flex;
  width: 132px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 28px rgba(22, 34, 68, 0.14);
}

.brand-logo {
  width: 116px;
  height: 36px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand span:last-child {
  min-width: 0;
}

.brand strong {
  font-size: 0.9rem;
  line-height: 1.1;
}

.brand small {
  color: currentColor;
  font-size: 0.72rem;
  opacity: 0.72;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 26px);
  font-size: 0.9rem;
}

.nav-links a {
  position: relative;
  padding-block: 8px;
  opacity: 0.86;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.nav-links a:hover::after {
  opacity: 0.8;
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: currentColor;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle b {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-cta,
.primary-action,
.secondary-action,
.hospital-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  font-weight: 700;
}

.header-cta {
  min-width: 96px;
  border: 1px solid currentColor;
  padding: 8px 18px;
  font-size: 0.88rem;
}

.hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  color: #fff;
  background: #17211f;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("https://s-aicmscdn.vietnamhoinhap.vn/vnhn-media/25/11/28/pgs-ts-bs_69291159be2dc.jpg");
  background-position: center 18%;
  background-size: cover;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(24, 38, 78, 0.92), rgba(38, 63, 120, 0.66) 43%, rgba(38, 63, 120, 0.18)),
    linear-gradient(0deg, rgba(23, 25, 32, 0.58), rgba(23, 25, 32, 0));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: var(--content);
  min-height: 88vh;
  flex-direction: column;
  justify-content: flex-end;
  padding: 140px 0 58px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 880px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 8vw, 7.8rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.95;
}

.hero-logo {
  width: min(260px, 76vw);
  height: auto;
  padding: 10px 14px;
  margin-bottom: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.hero-lede {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-action,
.secondary-action {
  padding: 11px 22px;
}

.primary-action {
  background: var(--brand-gold);
  color: #1f2536;
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #fff;
}

.hero-facts {
  display: grid;
  max-width: 840px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  margin: 48px 0 0;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-facts div {
  padding: 18px;
  background: rgba(23, 38, 78, 0.46);
  backdrop-filter: blur(16px);
}

.hero-facts dt {
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1;
}

.hero-facts dd {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
}

.intro-band {
  background: var(--green);
  color: #fff;
}

.intro-note {
  display: grid;
  width: var(--content);
  grid-template-columns: 210px 1fr;
  gap: 26px;
  padding: 24px 0;
  margin: 0 auto;
}

.intro-note span {
  color: #ffe0a3;
  font-weight: 800;
}

.intro-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.section {
  width: var(--content);
  padding: clamp(70px, 9vw, 118px) 0;
  margin: 0 auto;
}

.section-heading {
  max-width: 810px;
  margin-bottom: 36px;
}

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

.section-heading h2,
.hospital-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4.1rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.03;
}

.section-heading p:not(.eyebrow) {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
}

.profile-copy {
  color: #283431;
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
}

.profile-copy p {
  margin: 0 0 20px;
}

.profile-card,
.case-card,
.credential-grid article,
.safety-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 44px rgba(23, 33, 31, 0.07);
}

.profile-card {
  overflow: hidden;
}

.profile-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.profile-card dl {
  padding: 22px;
  margin: 0;
}

.profile-card div {
  padding-block: 15px;
  border-bottom: 1px solid var(--line);
}

.profile-card div:first-child {
  padding-top: 0;
}

.profile-card div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.profile-card dt {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.profile-card dd {
  margin: 5px 0 0;
  color: var(--ink);
}

.credentials-section {
  border-top: 1px solid var(--line);
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.credential-grid article {
  min-height: 260px;
  padding: 22px;
}

.credential-grid span,
.case-copy span {
  display: inline-flex;
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.credential-grid h3,
.case-copy h3,
.safety-grid h3 {
  margin: 12px 0 8px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.credential-grid p,
.case-copy p,
.safety-grid p {
  margin: 0;
  color: var(--muted);
}

.timeline-section {
  border-top: 1px solid var(--line);
}

.timeline {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 28px;
  padding: 0 0 34px;
}

.timeline li::before {
  position: absolute;
  top: 8px;
  bottom: 0;
  left: 150px;
  width: 1px;
  background: var(--line);
  content: "";
}

.timeline li::after {
  position: absolute;
  top: 7px;
  left: 144px;
  width: 13px;
  height: 13px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 1px var(--green);
  content: "";
}

.timeline li:last-child {
  padding-bottom: 0;
}

.timeline li:last-child::before {
  display: none;
}

.timeline time {
  color: var(--green);
  font-weight: 900;
}

.timeline h3 {
  margin: 0;
  font-size: 1.22rem;
}

.timeline p {
  max-width: 760px;
  margin: 8px 0 0;
  color: var(--muted);
}

.hospital-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
  background: var(--green-dark);
  color: #fff;
}

.hospital-image {
  min-height: 540px;
}

.hospital-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hospital-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 7vw, 86px);
}

.hospital-copy p:not(.eyebrow) {
  max-width: 660px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.04rem;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.service-pills span {
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
}

.hospital-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hospital-contact a {
  min-width: 150px;
  padding: 11px 18px;
  background: #fff;
  color: var(--green-dark);
}

.hospital-contact a + a {
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: transparent;
  color: #fff;
}

.official-section {
  border-top: 1px solid var(--line);
}

.official-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.official-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(63, 98, 163, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(228, 201, 0, 0.09), rgba(255, 255, 255, 0) 42%),
    var(--surface);
  box-shadow: 0 14px 44px rgba(38, 63, 120, 0.07);
}

.official-grid h3 {
  margin: 0 0 10px;
  color: var(--brand-blue-dark);
  font-size: 1.18rem;
  line-height: 1.25;
}

.official-grid p {
  margin: 0;
  color: var(--muted);
}

.gallery-section {
  border-top: 1px solid var(--line);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-bar button {
  min-height: 40px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.filter-bar button.is-active {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 255px), 1fr));
  gap: 16px;
}

.case-card {
  display: grid;
  overflow: hidden;
}

.case-card.is-hidden {
  display: none;
}

.image-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #dfe6e1;
  cursor: zoom-in;
}

.image-button img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #fff;
  object-fit: contain;
  transition: transform 220ms ease;
}

.image-button:hover img {
  transform: scale(1.035);
}

.case-copy {
  padding: 18px;
}

.case-copy a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--green);
  font-weight: 800;
}

.safety-section {
  width: 100%;
  padding-inline: max(18px, calc((100vw - 1160px) / 2));
  background: var(--brand-blue-soft);
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.safety-grid article {
  padding: 24px;
}

.safety-note {
  background: var(--blue) !important;
  color: #fff;
}

.safety-note p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 92px;
}

.contact-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.04;
}

.contact-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
}

.consult-form {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(63, 98, 163, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(228, 201, 0, 0.12), rgba(255, 255, 255, 0) 38%),
    var(--surface);
  box-shadow: 0 20px 62px rgba(38, 63, 120, 0.11);
}

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

.form-field {
  display: grid;
  gap: 7px;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--brand-blue-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(48, 51, 58, 0.18);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.form-field textarea {
  min-height: 136px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(63, 98, 163, 0.12);
}

.form-field.is-invalid input,
.form-field.is-invalid select,
.form-field.is-invalid textarea {
  border-color: #c73f4b;
  box-shadow: 0 0 0 4px rgba(199, 63, 75, 0.1);
}

.field-error {
  min-height: 18px;
  color: #b12d3a;
  font-size: 0.8rem;
  font-weight: 700;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 22px;
}

.form-submit {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  background: var(--brand-blue);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
}

.form-submit:hover {
  background: var(--brand-blue-dark);
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-status {
  margin: 0;
  color: var(--brand-blue-dark);
  font-weight: 800;
}

.source-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.source-list a {
  min-height: 58px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--brand-blue-dark);
  font-weight: 750;
}

.source-list a:hover {
  border-color: rgba(14, 95, 86, 0.5);
  color: var(--green);
}

.site-footer {
  padding: 34px max(18px, calc((100vw - 1160px) / 2));
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
}

.site-footer p {
  max-width: 1000px;
  margin: 0;
  font-size: 0.95rem;
}

.lightbox {
  position: fixed;
  z-index: 40;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(8, 16, 15, 0.88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1050px, calc(100vw - 56px));
  max-height: calc(100vh - 96px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 12px;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header.is-menu-open .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 14px;
    left: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding: 10px;
    border: 1px solid rgba(63, 98, 163, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
    box-shadow: 0 18px 44px rgba(38, 63, 120, 0.18);
  }

  .site-header.is-menu-open .nav-links a {
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 6px;
    background: var(--brand-blue-soft);
    color: var(--brand-blue-dark);
    font-weight: 800;
  }

  .site-header.is-menu-open .nav-links a::after {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .hero-media {
    background-position: 58% 20%;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(24, 38, 78, 0.94), rgba(38, 63, 120, 0.5)),
      linear-gradient(0deg, rgba(23, 25, 32, 0.62), rgba(23, 25, 32, 0));
  }

  .hero-facts,
  .credential-grid,
  .gallery-grid,
  .official-grid,
  .safety-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-grid,
  .hospital-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }

  .hospital-image {
    min-height: 390px;
  }
}

@media (max-width: 700px) {
  :root {
    --content: min(100vw - 28px, 1160px);
  }

  .site-header {
    padding-inline: 14px;
  }

  .site-header.is-scrolled {
    padding-block: 8px;
  }

  .brand-logo-wrap {
    width: 92px;
    height: 34px;
  }

  .brand-logo {
    width: 78px;
    height: 24px;
  }

  .brand strong {
    font-size: 0.8rem;
  }

  .brand small,
  .header-cta {
    font-size: 0.72rem;
  }

  .header-cta {
    min-width: 76px;
    min-height: 38px;
    padding: 7px 12px;
  }

  .hero,
  .hero-content {
    min-height: 86vh;
  }

  .hero-content {
    padding: 116px 0 34px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 14vw, 4.6rem);
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 30px;
  }

  .hero-facts div {
    padding: 14px;
  }

  .intro-note {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0;
  }

  .section {
    padding: 62px 0;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .credential-grid,
  .gallery-grid,
  .official-grid,
  .safety-grid,
  .form-grid,
  .source-list {
    grid-template-columns: 1fr;
  }

  .consult-form {
    padding: 18px;
  }

  .form-actions,
  .form-submit {
    width: 100%;
  }

  .credential-grid article {
    min-height: 0;
  }

  .timeline li {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 20px;
  }

  .timeline li::before {
    left: 88px;
  }

  .timeline li::after {
    left: 82px;
  }

  .hospital-image {
    min-height: 280px;
  }

  .hospital-copy {
    padding: 42px 18px;
  }

  .hospital-contact a {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .site-header {
    gap: 8px;
  }

  .brand {
    gap: 8px;
  }

  .brand-logo-wrap {
    width: 78px;
    height: 30px;
  }

  .brand-logo {
    width: 66px;
    height: 22px;
  }

  .brand strong {
    font-size: 0.74rem;
  }

  .brand small {
    display: none;
  }

  .header-cta {
    min-width: 58px;
    padding-inline: 9px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .site-header.is-menu-open .nav-links {
    grid-template-columns: 1fr;
  }
}
