 :root {
      --maroon: #a71930;
      --maroon-dark: #861326;
      --maroon-soft: #f9ebee;
      --navy: #123b66;
      --navy-dark: #082846;
      --navy-soft: #edf5fb;
      --gold: #d6a33c;
      --gold-light: #f2d89c;
      --ink: #243343;
      --muted: #667483;
      --line: #dfe7ed;
      --white: #ffffff;
      --cream: #fbfaf7;
      --shadow: 0 22px 60px rgba(9, 45, 80, .12);
      --shadow-small: 0 12px 32px rgba(9, 45, 80, .09);
      --radius: 24px;
      --container: 1240px;

      /* Supporting aliases derived from the approved brand palette. */
      --navy-deep: var(--navy-dark);
      --cream-2: var(--navy-soft);
      --red: var(--maroon);
      --success: #14815f;
      --shadow-sm: var(--shadow-small);
      --shadow-lg: var(--shadow);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--ink);
      background: var(--white);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    body.menu-open {
      overflow: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    button,
    a {
      -webkit-tap-highlight-color: transparent;
    }

    img,
    svg {
      display: block;
    }

    .container {
      width: min(calc(100% - 40px), var(--container));
      margin-inline: auto;
    }

    .icon {
      width: 21px;
      height: 21px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .skip-link {
      position: fixed;
      left: 12px;
      top: -60px;
      z-index: 999;
      padding: 10px 14px;
      border-radius: 8px;
      color: var(--white);
      background: var(--navy);
    }

    .skip-link:focus {
      top: 12px;
    }

    .topbar {
      color: rgba(255, 255, 255, .92);
      background: var(--navy-deep);
      font-size: 12px;
    }

    .topbar-inner {
      min-height: 38px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .topbar-group {
      display: flex;
      align-items: center;
      gap: 22px;
    }

    .topbar a,
    .topbar span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .topbar .icon {
      width: 15px;
      height: 15px;
      color: var(--gold-light);
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, .96);
      border-bottom: 1px solid rgba(18, 59, 102, .08);
      backdrop-filter: blur(14px);
    }

    .navbar {
      min-height: 86px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 225px;
    }

    .brand-mark {
      width: 51px;
      height: 51px;
      flex: 0 0 auto;
    }

    .brand-copy {
      line-height: 1.1;
    }

    .brand-copy strong {
      display: block;
      color: var(--navy);
      font-family: Georgia, "Times New Roman", serif;
      font-size: 19px;
      letter-spacing: -.3px;
    }

    .brand-copy span {
      display: block;
      margin-top: 5px;
      color: var(--maroon);
      font-size: 9px;
      font-weight: 800;
      letter-spacing: 1.8px;
      text-transform: uppercase;
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 30px;
      margin-left: auto;
    }

    .desktop-nav a {
      position: relative;
      color: #263850;
      font-size: 14px;
      font-weight: 700;
    }

    .desktop-nav a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 100%;
      bottom: -9px;
      height: 2px;
      background: var(--maroon);
      transition: right .25s ease;
    }

    .desktop-nav a:hover::after,
    .desktop-nav a.active::after {
      right: 0;
    }

    .desktop-nav a.active {
      color: var(--maroon);
    }

    .nav-cta,
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      border: 0;
      border-radius: 12px;
      cursor: pointer;
      font-weight: 800;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .nav-cta {
      min-height: 46px;
      padding: 0 20px;
      color: var(--white);
      background: var(--maroon);
      box-shadow: 0 9px 24px rgba(167, 25, 48, .22);
      font-size: 13px;
    }

    .nav-cta:hover,
    .btn:hover {
      transform: translateY(-2px);
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      padding: 0;
      border: 1px solid #e1e6ed;
      border-radius: 11px;
      color: var(--navy);
      background: var(--white);
      place-items: center;
    }

    .menu-toggle span,
    .menu-toggle::before,
    .menu-toggle::after {
      content: "";
      display: block;
      width: 20px;
      height: 2px;
      border-radius: 2px;
      background: currentColor;
      transition: .25s ease;
    }

    .menu-toggle span {
      margin: 5px 0;
    }

    .menu-toggle.open span {
      opacity: 0;
    }

    .menu-toggle.open::before {
      transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.open::after {
      transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-menu {
      display: none;
      position: fixed;
      inset: 86px 0 auto;
      z-index: 99;
      padding: 22px 20px 28px;
      background: var(--white);
      border-top: 1px solid var(--line);
      box-shadow: 0 25px 45px rgba(3, 23, 54, .15);
    }

    .mobile-menu.open {
      display: grid;
    }

    .mobile-menu a {
      padding: 13px 4px;
      border-bottom: 1px solid #edf0f4;
      font-size: 15px;
      font-weight: 750;
    }

    .mobile-menu .nav-cta {
      margin-top: 18px;
      border: 0;
    }

    .hero {
      position: relative;
      isolation: isolate;
      overflow: hidden;
      color: var(--white);
      background: radial-gradient(circle at 79% 12%, rgba(214, 163, 60, .18), transparent 27%), linear-gradient(116deg, var(--navy-dark), var(--navy) 63%, #174d80);
    }

    .hero::before {
      content: "";
      position: absolute;
      z-index: -1;
      width: 520px;
      height: 520px;
      right: -140px;
      top: -240px;
      border: 1px solid rgba(255, 255, 255, .15);
      border-radius: 50%;
      box-shadow: 0 0 0 70px rgba(255, 255, 255, .025), 0 0 0 150px rgba(255, 255, 255, .02);
    }

    .hero::after {
      content: "";
      position: absolute;
      z-index: -1;
      width: 320px;
      height: 320px;
      left: -110px;
      bottom: -220px;
      border-radius: 50%;
      background: rgba(212, 163, 59, .12);
      filter: blur(1px);
    }

    .hero-grid {
      min-height: 470px;
      display: grid;
      grid-template-columns: 1.12fr .88fr;
      align-items: center;
      gap: 70px;
      padding-block: 75px;
    }

    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 24px;
      color: rgba(255, 255, 255, .7);
      font-size: 12px;
      font-weight: 750;
    }

    .breadcrumb b {
      color: var(--gold-light);
      font-weight: 750;
    }

    .hero-label,
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--maroon);
      font-size: 11px;
      font-weight: 850;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .hero-label {
      color: var(--gold-light);
    }

    .hero-label::before,
    .section-label::before {
      content: "";
      width: 31px;
      height: 1px;
      background: currentColor;
    }

    .hero h1 {
      max-width: 730px;
      margin: 18px 0 20px;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(46px, 5vw, 72px);
      font-weight: 500;
      line-height: 1.04;
      letter-spacing: -2px;
    }

    .hero h1 em {
      color: var(--gold-light);
      font-style: normal;
    }

    .hero-copy>p {
      max-width: 660px;
      margin: 0;
      color: rgba(255, 255, 255, .78);
      font-size: 17px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 30px;
    }

    .btn {
      min-height: 50px;
      padding: 0 22px;
      font-size: 13px;
    }

    .btn-primary {
      color: var(--white);
      background: var(--maroon);
      box-shadow: 0 12px 28px rgba(167, 25, 48, .27);
    }

    .btn-primary:hover {
      background: var(--maroon-dark);
    }

    .btn-light {
      color: var(--navy);
      background: var(--white);
    }

    .btn-outline-light {
      color: var(--white);
      background: transparent;
      border: 1px solid rgba(255, 255, 255, .36);
    }

    .btn-outline {
      color: var(--navy);
      background: var(--white);
      border: 1px solid #d7dfe9;
    }

    .btn .icon {
      width: 18px;
      height: 18px;
    }

    .hero-note {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 20px;
      color: rgba(255, 255, 255, .66);
      font-size: 12px;
    }

    .hero-note .icon {
      width: 17px;
      height: 17px;
      color: var(--gold-light);
    }

    .hero-contact-panel {
      position: relative;
      padding: 29px;
      border: 1px solid rgba(255, 255, 255, .2);
      border-radius: 26px;
      background: rgba(255, 255, 255, .1);
      box-shadow: 0 24px 70px rgba(0, 0, 0, .16);
      backdrop-filter: blur(12px);
    }

    .hero-contact-panel::before {
      content: "";
      position: absolute;
      top: -1px;
      left: 32px;
      right: 32px;
      height: 3px;
      border-radius: 0 0 5px 5px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

    .panel-title {
      margin: 0 0 18px;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 26px;
      font-weight: 500;
    }

    .quick-list {
      display: grid;
      gap: 12px;
    }

    .quick-row {
      display: grid;
      grid-template-columns: 44px 1fr auto;
      align-items: center;
      gap: 13px;
      padding: 13px;
      border-radius: 15px;
      background: rgba(255, 255, 255, .09);
      transition: background .2s ease;
    }

    .quick-row:hover {
      background: rgba(255, 255, 255, .15);
    }

    .quick-icon {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 12px;
      color: var(--gold-light);
      background: rgba(255, 255, 255, .1);
    }

    .quick-row small {
      display: block;
      color: rgba(255, 255, 255, .58);
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 1.2px;
      text-transform: uppercase;
    }

    .quick-row strong {
      display: block;
      margin-top: 2px;
      color: var(--white);
      font-size: 13px;
    }

    .quick-row>.icon {
      width: 17px;
      height: 17px;
      color: rgba(255, 255, 255, .45);
    }

    .hours-mini {
      margin-top: 16px;
      padding: 16px 18px;
      border-radius: 15px;
      color: rgba(255, 255, 255, .8);
      background: rgba(3, 23, 54, .28);
    }

    .hours-mini strong {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 7px;
      color: var(--gold-light);
      font-size: 12px;
    }

    .hours-mini p {
      margin: 3px 0;
      display: flex;
      justify-content: space-between;
      gap: 16px;
      font-size: 11px;
    }

    .contact-cards-wrap {
      position: relative;
      z-index: 5;
      margin-top: -42px;
    }

    .contact-cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border: 1px solid rgba(18, 59, 102, .08);
      border-radius: 20px;
      background: var(--white);
      box-shadow: var(--shadow-lg);
      overflow: hidden;
    }

    .contact-card {
      position: relative;
      min-height: 160px;
      padding: 27px 24px;
      border-right: 1px solid var(--line);
      transition: background .22s ease, transform .22s ease;
    }

    .contact-card::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 3px;
      background: linear-gradient(90deg, var(--maroon), var(--gold));
      opacity: 0;
      transition: opacity .22s ease;
    }

    .contact-card:hover {
      background: linear-gradient(180deg, var(--white), var(--cream));
      transform: translateY(-2px);
    }

    .contact-card:hover::before {
      opacity: 1;
    }

    .contact-card:last-child {
      border-right: 0;
    }

    .contact-card-icon {
      width: 43px;
      height: 43px;
      display: grid;
      place-items: center;
      margin-bottom: 16px;
      border-radius: 12px;
      color: var(--maroon);
      background: var(--maroon-soft);
    }

    .contact-card:nth-child(2) .contact-card-icon {
      color: var(--success);
      background: #eaf7f2;
    }

    .contact-card:nth-child(3) .contact-card-icon {
      color: var(--navy);
      background: var(--navy-soft);
    }

    .contact-card:nth-child(4) .contact-card-icon {
      color: #a66e0b;
      background: #fff7e5;
    }

    .contact-card h3 {
      margin: 0 0 4px;
      color: var(--navy);
      font-size: 14px;
    }

    .contact-card p,
    .contact-card a {
      margin: 0;
      color: var(--muted);
      font-size: 12px;
    }

    .contact-card a {
      color: var(--maroon);
      font-weight: 800;
    }

    .section {
      padding: 100px 0;
    }

    .section-soft {
      background: var(--cream);
    }

    .section-head {
      max-width: 710px;
      margin-bottom: 44px;
    }

    .section-head.center {
      margin-inline: auto;
      text-align: center;
    }

    .section-head.center .section-label {
      justify-content: center;
    }

    .section-head.center .section-label::after {
      content: "";
      width: 31px;
      height: 1px;
      background: currentColor;
    }

    .section-title {
      margin: 12px 0 12px;
      color: var(--navy);
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(34px, 4vw, 51px);
      font-weight: 500;
      line-height: 1.12;
      letter-spacing: -1.3px;
    }

    .section-title span {
      color: var(--maroon);
    }

    .section-copy {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
    }

    .contact-layout {
      display: grid;
      grid-template-columns: .78fr 1.22fr;
      align-items: stretch;
      gap: 28px;
    }

    .info-panel {
      position: relative;
      isolation: isolate;
      overflow: hidden;
      padding: 42px;
      color: var(--white);
      border-radius: var(--radius);
      background: linear-gradient(145deg, var(--navy-deep), var(--navy));
      box-shadow: var(--shadow-lg);
    }

    .info-panel::after {
      content: "";
      position: absolute;
      z-index: -1;
      width: 260px;
      height: 260px;
      right: -130px;
      bottom: -110px;
      border: 45px solid rgba(255, 255, 255, .04);
      border-radius: 50%;
    }

    .info-panel .section-label {
      color: var(--gold-light);
    }

    .info-panel h2 {
      margin: 15px 0 12px;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 38px;
      font-weight: 500;
      line-height: 1.12;
    }

    .info-panel>p {
      margin: 0;
      color: rgba(255, 255, 255, .7);
      font-size: 14px;
    }

    .info-details {
      display: grid;
      gap: 20px;
      margin-top: 34px;
    }

    .info-detail {
      display: grid;
      grid-template-columns: 45px 1fr;
      gap: 13px;
    }

    .info-detail-icon {
      width: 45px;
      height: 45px;
      display: grid;
      place-items: center;
      border-radius: 13px;
      color: var(--gold-light);
      background: rgba(255, 255, 255, .09);
    }

    .info-detail small {
      display: block;
      margin-bottom: 2px;
      color: rgba(255, 255, 255, .5);
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 1.1px;
      text-transform: uppercase;
    }

    .info-detail strong,
    .info-detail a {
      display: block;
      color: var(--white);
      font-size: 13px;
      font-weight: 700;
    }

    .hours-card {
      margin-top: 32px;
      padding: 20px;
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: 17px;
      background: rgba(255, 255, 255, .06);
    }

    .hours-card h3 {
      display: flex;
      align-items: center;
      gap: 9px;
      margin: 0 0 13px;
      color: var(--gold-light);
      font-size: 13px;
    }

    .hours-line {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      padding: 7px 0;
      color: rgba(255, 255, 255, .74);
      border-bottom: 1px dashed rgba(255, 255, 255, .12);
      font-size: 12px;
    }

    .hours-line:last-child {
      border-bottom: 0;
    }

    .support-note {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-top: 21px;
      color: rgba(255, 255, 255, .58);
      font-size: 11px;
    }

    .support-note .icon {
      flex: 0 0 auto;
      width: 17px;
      height: 17px;
      margin-top: 1px;
      color: var(--gold-light);
    }

    .form-panel {
      position: relative;
      overflow: hidden;
      padding: 42px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: var(--shadow-sm);
    }

    .form-panel::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 4px;
      background: linear-gradient(90deg, var(--maroon), var(--gold), var(--navy));
    }

    .form-heading {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 28px;
    }

    .form-heading h2 {
      margin: 0 0 5px;
      color: var(--navy);
      font-family: Georgia, "Times New Roman", serif;
      font-size: 32px;
      font-weight: 500;
    }

    .form-heading p {
      margin: 0;
      color: var(--muted);
      font-size: 12px;
    }

    .secure-chip {
      flex: 0 0 auto;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 7px 10px;
      border-radius: 50px;
      color: var(--success);
      background: #ecf8f3;
      font-size: 9px;
      font-weight: 850;
      letter-spacing: .7px;
      text-transform: uppercase;
    }

    .secure-chip .icon {
      width: 13px;
      height: 13px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 19px;
    }

    .field {
      display: grid;
      gap: 7px;
    }

    .field.full {
      grid-column: 1 / -1;
    }

    .field label {
      color: #31435a;
      font-size: 11px;
      font-weight: 800;
    }

    .field label span {
      color: var(--maroon);
    }

    .control {
      width: 100%;
      height: 49px;
      padding: 0 15px;
      color: var(--ink);
      border: 1px solid var(--line);
      border-radius: 11px;
      outline: none;
      background: color-mix(in srgb, var(--navy-soft) 48%, var(--white));
      font-size: 13px;
      transition: border .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .control:focus {
      border-color: var(--navy);
      background: var(--white);
      box-shadow: 0 0 0 4px rgba(18, 59, 102, .09);
    }

    textarea.control {
      height: 110px;
      padding-top: 13px;
      resize: vertical;
    }

    .consent {
      grid-column: 1 / -1;
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: var(--muted);
      font-size: 10px;
    }

    .consent input {
      flex: 0 0 auto;
      width: 16px;
      height: 16px;
      margin: 1px 0 0;
      accent-color: var(--maroon);
    }

    .form-actions {
      grid-column: 1 / -1;
      display: flex;
      align-items: center;
      gap: 16px;
      margin-top: 3px;
    }

    .form-actions .btn {
      min-width: 190px;
    }

    .form-note {
      color: var(--muted);
      font-size: 10px;
    }

    .form-status {
      display: none;
      grid-column: 1 / -1;
      align-items: flex-start;
      gap: 9px;
      padding: 12px 14px;
      border-radius: 10px;
      color: var(--success);
      background: #ecf8f3;
      font-size: 11px;
      font-weight: 700;
    }

    .form-status.show {
      display: flex;
    }

    .form-status .icon {
      width: 17px;
      height: 17px;
      flex: 0 0 auto;
    }

    .form-status.success {
      color: var(--success);
      background: #ecf8f3;
    }

    .form-status.error {
      color: #b50d2b;
      background: #fdecec;
    }

    .form-status.info {
      color: #06264b;
      background: #eaf0f8;
    }

    .field {
      position: relative;
    }

    .field.has-error .control {
      border-color: #b50d2b !important;
      box-shadow: 0 0 0 2px rgba(181, 13, 43, 0.12) inset;
    }

    .field .field-error {
      display: none;
      margin-top: 6px;
      color: #b50d2b;
      font-size: 11px;
      font-weight: 600;
      line-height: 1.3;
    }

    .field.has-error .field-error {
      display: block;
    }

    .form-actions .btn.is-loading {
      pointer-events: none;
      opacity: 0.75;
    }

    .form-actions .btn.is-loading .icon {
      animation: spin 0.9s linear infinite;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    .branches-section {
      position: relative;
      overflow: hidden;
    }

    .branches-section::before {
      content: "";
      position: absolute;
      width: 230px;
      height: 230px;
      left: -130px;
      top: 100px;
      border: 1px solid rgba(167, 25, 48, .08);
      border-radius: 50%;
      box-shadow: 0 0 0 40px rgba(167, 25, 48, .025);
    }

    .branch-tabs {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
      margin: -16px 0 36px;
    }

    .branch-tab {
      min-height: 42px;
      padding: 0 17px;
      border: 1px solid #dfe5ec;
      border-radius: 50px;
      color: var(--navy);
      background: var(--white);
      cursor: pointer;
      font-size: 11px;
      font-weight: 800;
    }

    .branch-tab.active {
      color: var(--white);
      border-color: var(--maroon);
      background: var(--maroon);
      box-shadow: 0 9px 22px rgba(167, 25, 48, .2);
    }

    .branch-maps {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
    }

    .branch-card {
      position: relative;
      overflow: hidden;
      border: 1px solid #e1e6ed;
      border-radius: 20px;
      background: var(--white);
      box-shadow: var(--shadow-sm);
      transition: transform .25s ease, box-shadow .25s ease;
    }

    .branch-card:hover,
    .branch-card.focused {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
    }

    .branch-card.focused {
      border-color: rgba(167, 25, 48, .38);
    }

    .map-wrap {
      position: relative;
      height: 255px;
      overflow: hidden;
      background: #e8eef3;
    }

    .map-wrap iframe {
      width: 100%;
      height: 100%;
      border: 0;
      filter: saturate(.75) contrast(.94);
    }

    .branch-type {
      position: absolute;
      z-index: 2;
      top: 14px;
      left: 14px;
      padding: 7px 11px;
      border-radius: 50px;
      color: var(--white);
      background: var(--navy);
      box-shadow: 0 6px 18px rgba(3, 23, 54, .2);
      font-size: 9px;
      font-weight: 850;
      letter-spacing: .8px;
      text-transform: uppercase;
    }

    .branch-type.clinic {
      background: var(--maroon);
    }

    .branch-body {
      padding: 24px;
    }

    .branch-heading {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
    }

    .branch-number {
      width: 31px;
      height: 31px;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      border-radius: 9px;
      color: var(--maroon);
      background: var(--maroon-soft);
      font-size: 10px;
      font-weight: 900;
    }

    .branch-body h3 {
      margin: 0;
      color: var(--navy);
      font-family: Georgia, "Times New Roman", serif;
      font-size: 22px;
      font-weight: 600;
      line-height: 1.2;
    }

    .branch-address {
      min-height: 62px;
      display: flex;
      align-items: flex-start;
      gap: 8px;
      margin: 15px 0;
      color: var(--muted);
      font-size: 11px;
    }

    .branch-address .icon {
      width: 17px;
      height: 17px;
      flex: 0 0 auto;
      margin-top: 1px;
      color: var(--maroon);
    }

    .branch-meta {
      display: flex;
      align-items: center;
      gap: 8px;
      padding-top: 14px;
      border-top: 1px solid #edf0f3;
      color: #506176;
      font-size: 10px;
    }

    .branch-meta .icon {
      width: 15px;
      height: 15px;
      color: var(--gold);
    }

    .branch-actions {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 9px;
      margin-top: 18px;
    }

    .branch-actions .btn {
      min-height: 42px;
      padding: 0 10px;
      font-size: 10px;
    }

    .branch-actions .btn-primary {
      box-shadow: none;
    }

    .branch-disclaimer {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      gap: 8px;
      margin: 26px auto 0;
      max-width: 720px;
      color: var(--muted);
      text-align: center;
      font-size: 10px;
    }

    .branch-disclaimer .icon {
      flex: 0 0 auto;
      width: 16px;
      height: 16px;
      margin-top: 1px;
      color: var(--gold);
    }

    .support-strip {
      padding: 0 0 100px;
      background: var(--cream);
    }

    .support-box {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 30px;
      padding: 34px 40px;
      border-radius: 22px;
      color: var(--white);
      background: radial-gradient(circle at 92% 20%, rgba(242, 216, 156, .18), transparent 25%), linear-gradient(105deg, var(--maroon-dark), var(--maroon) 68%, #bd2942);
      box-shadow: 0 20px 50px rgba(134, 19, 38, .2);
    }

    .support-box small {
      display: block;
      margin-bottom: 5px;
      color: var(--gold-light);
      font-size: 10px;
      font-weight: 850;
      letter-spacing: 1.6px;
      text-transform: uppercase;
    }

    .support-box h2 {
      margin: 0 0 5px;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 28px;
      font-weight: 500;
    }

    .support-box p {
      margin: 0;
      color: rgba(255, 255, 255, .72);
      font-size: 12px;
    }

    .support-actions {
      display: flex;
      gap: 10px;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: .75fr 1.25fr;
      gap: 70px;
      align-items: start;
    }

    .faq-aside {
      position: sticky;
      top: 130px;
    }

    .faq-aside .section-title {
      font-size: 43px;
    }

    .faq-aside .btn {
      margin-top: 24px;
    }

    .faq-list {
      display: grid;
      gap: 12px;
    }

    .faq-item {
      border: 1px solid #e1e6ed;
      border-radius: 15px;
      background: var(--white);
      overflow: hidden;
    }

    .faq-button {
      width: 100%;
      min-height: 66px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 18px 21px;
      border: 0;
      color: var(--navy);
      background: transparent;
      cursor: pointer;
      text-align: left;
      font-size: 13px;
      font-weight: 800;
    }

    .faq-plus {
      width: 28px;
      height: 28px;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      border-radius: 50%;
      color: var(--maroon);
      background: var(--maroon-soft);
      font-size: 18px;
      transition: transform .2s ease;
    }

    .faq-item.open .faq-plus {
      transform: rotate(45deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height .3s ease;
    }

    .faq-answer p {
      margin: 0;
      padding: 0 21px 20px;
      color: var(--muted);
      font-size: 12px;
    }

    .footer-cta {
      position: relative;
      z-index: 2;
      transform: translateY(50%);
    }

    .footer-cta-inner {
      min-height: 112px;
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 30px;
      padding: 25px 38px;
      border-radius: 19px;
      color: var(--white);
      background: linear-gradient(100deg, var(--maroon-dark), var(--maroon));
      box-shadow: 0 20px 45px rgba(134, 19, 38, .23);
    }

    .footer-cta h2 {
      margin: 0 0 4px;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 27px;
      font-weight: 500;
    }

    .footer-cta p {
      margin: 0;
      color: rgba(255, 255, 255, .7);
      font-size: 11px;
    }

    .site-footer {
      padding: 105px 0 24px;
      color: rgba(255, 255, 255, .7);
      background: var(--navy-deep);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .75fr .9fr 1.1fr;
      gap: 45px;
      padding-bottom: 45px;
    }

    .footer-brand .brand-copy strong {
      color: var(--white);
    }

    .footer-brand p {
      max-width: 320px;
      margin: 18px 0;
      font-size: 12px;
    }

    .footer-social {
      display: flex;
      gap: 9px;
    }

    .footer-social a {
      width: 35px;
      height: 35px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255, 255, 255, .14);
      border-radius: 9px;
      color: var(--gold-light);
    }

    .footer-column h3 {
      margin: 4px 0 18px;
      color: var(--white);
      font-size: 13px;
    }

    .footer-links {
      display: grid;
      gap: 10px;
      font-size: 11px;
    }

    .footer-links a:hover {
      color: var(--gold-light);
    }

    .footer-contact {
      display: grid;
      gap: 12px;
      font-size: 11px;
    }

    .footer-contact a,
    .footer-contact span {
      display: grid;
      grid-template-columns: 18px 1fr;
      gap: 9px;
      align-items: start;
    }

    .footer-contact .icon {
      width: 16px;
      height: 16px;
      margin-top: 1px;
      color: var(--gold-light);
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding-top: 22px;
      border-top: 1px solid rgba(212, 163, 59, .24);
      font-size: 9px;
    }

    .footer-legal {
      display: flex;
      gap: 18px;
    }

    .mobile-actions {
      display: none;
    }

    /* ── Success Modal ── */
    body.modal-open {
      overflow: hidden;
    }

    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: rgba(8, 28, 52, .55);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      align-items: center;
      justify-content: center;
      padding: 24px;
    }

    .modal-overlay.show {
      display: flex;
      animation: modalFadeIn .3s ease;
    }

    @keyframes modalFadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    .modal-card {
      position: relative;
      width: 100%;
      max-width: 440px;
      padding: 44px 36px 36px;
      border-radius: 26px;
      background: var(--white);
      box-shadow: 0 32px 80px rgba(3, 20, 50, .22), 0 0 0 1px rgba(18, 59, 102, .06);
      text-align: center;
      animation: modalScaleIn .35s cubic-bezier(.175, .885, .32, 1.275);
    }

    @keyframes modalScaleIn {
      from { opacity: 0; transform: scale(.88) translateY(18px); }
      to   { opacity: 1; transform: scale(1) translateY(0); }
    }

    .modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border: 1px solid var(--line);
      border-radius: 50%;
      color: var(--muted);
      background: var(--white);
      cursor: pointer;
      font-size: 20px;
      line-height: 1;
      transition: color .2s, border-color .2s;
    }

    .modal-close:hover {
      color: var(--maroon);
      border-color: var(--maroon);
    }

    .modal-icon-wrap {
      width: 80px;
      height: 80px;
      margin: 0 auto 22px;
    }

    .modal-icon {
      width: 80px;
      height: 80px;
    }

    .modal-check {
      stroke-dasharray: 70;
      stroke-dashoffset: 70;
      animation: drawCheck .6s ease .25s forwards;
    }

    @keyframes drawCheck {
      to { stroke-dashoffset: 0; }
    }

    .modal-card h3 {
      margin: 0 0 6px;
      color: var(--navy);
      font-family: Georgia, "Times New Roman", serif;
      font-size: 24px;
      font-weight: 600;
    }

    .modal-subtitle {
      margin: 0 0 24px;
      color: var(--muted);
      font-size: 13px;
    }

    .modal-details {
      display: grid;
      gap: 0;
      border: 1px solid var(--line);
      border-radius: 16px;
      overflow: hidden;
      margin-bottom: 18px;
    }

    .modal-detail-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 16px 20px;
      background: color-mix(in srgb, var(--navy-soft) 38%, var(--white));
    }

    .modal-detail-row + .modal-detail-row {
      border-top: 1px solid var(--line);
    }

    .modal-detail-row.token-row {
      background: linear-gradient(135deg, #ecf8f3, #f5fef9);
    }

    .modal-detail-label {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
    }

    .modal-detail-label .icon {
      width: 17px;
      height: 17px;
      color: var(--navy);
    }

    .modal-detail-value {
      color: var(--ink);
      font-size: 14px;
      font-weight: 800;
      text-align: right;
    }

    .modal-token {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 5px 14px;
      border-radius: 50px;
      color: var(--success);
      background: rgba(20, 129, 95, .12);
      font-size: 16px;
      font-weight: 900;
      letter-spacing: 1px;
    }

    .modal-note {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      margin: 0 0 22px;
      color: var(--muted);
      font-size: 11px;
    }

    .modal-note .icon {
      width: 15px;
      height: 15px;
      flex: 0 0 auto;
      color: var(--gold);
    }

    .modal-done {
      width: 100%;
      min-height: 48px;
      font-size: 14px;
      border-radius: 14px;
    }

    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity .65s ease, transform .65s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    @media (max-width: 1080px) {
      .desktop-nav {
        gap: 18px;
      }

      .hero-grid {
        gap: 35px;
      }

      .contact-cards {
        grid-template-columns: repeat(2, 1fr);
      }

      .contact-card:nth-child(2) {
        border-right: 0;
      }

      .contact-card:nth-child(-n+2) {
        border-bottom: 1px solid #e9edf2;
      }

      .contact-layout {
        grid-template-columns: .9fr 1.1fr;
      }

      .info-panel,
      .form-panel {
        padding: 32px;
      }

      .branch-maps {
        grid-template-columns: repeat(2, 1fr);
      }

      .branch-card:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 11px);
        margin-inline: auto;
      }

      .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
      }

      .footer-grid .footer-column:last-child {
        grid-column: 2 / -1;
      }
    }

    @media (max-width: 880px) {
      .topbar {
        display: none;
      }

      .navbar {
        min-height: 74px;
      }

      .desktop-nav,
      .navbar>.nav-cta {
        display: none;
      }

      .menu-toggle {
        display: grid;
      }

      .mobile-menu {
        inset-block-start: 74px;
      }

      .hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-block: 70px 95px;
      }

      .hero-contact-panel {
        max-width: 610px;
      }

      .contact-layout {
        grid-template-columns: 1fr;
      }

      .info-panel {
        order: 2;
      }

      .faq-grid {
        grid-template-columns: 1fr;
        gap: 35px;
      }

      .faq-aside {
        position: static;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .footer-grid .footer-column:last-child {
        grid-column: auto;
      }
    }

    @media (max-width: 660px) {
      body {
        padding-bottom: 64px;
      }

      .modal-overlay {
        padding: 16px;
      }

      .modal-card {
        padding: 36px 22px 28px;
        border-radius: 22px;
      }

      .modal-card h3 {
        font-size: 20px;
      }

      .modal-detail-row {
        padding: 13px 16px;
      }

      .modal-token {
        font-size: 14px;
        padding: 4px 12px;
      }

      .container {
        width: min(calc(100% - 28px), var(--container));
      }

      .brand {
        min-width: 0;
        gap: 9px;
      }

      .brand-mark {
        width: 43px;
        height: 43px;
      }

      .brand-copy strong {
        font-size: 16px;
      }

      .brand-copy span {
        font-size: 7px;
        letter-spacing: 1.3px;
      }

      .hero-grid {
        gap: 35px;
        padding-block: 50px 78px;
      }

      .breadcrumb {
        margin-bottom: 20px;
      }

      .hero h1 {
        margin-top: 14px;
        font-size: 42px;
        letter-spacing: -1.3px;
      }

      .hero-copy>p {
        font-size: 14px;
      }

      .hero-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
      }

      .hero-actions .btn {
        padding: 0 12px;
      }

      .hero-contact-panel {
        padding: 22px 18px;
        border-radius: 20px;
      }

      .quick-row {
        grid-template-columns: 40px 1fr auto;
        padding: 11px;
      }

      .quick-icon {
        width: 40px;
        height: 40px;
      }

      .contact-cards-wrap {
        margin-top: -32px;
      }

      .contact-cards {
        grid-template-columns: 1fr 1fr;
        border-radius: 16px;
      }

      .contact-card {
        min-height: 142px;
        padding: 20px 16px;
      }

      .contact-card-icon {
        width: 38px;
        height: 38px;
        margin-bottom: 12px;
      }

      .contact-card h3 {
        font-size: 12px;
      }

      .contact-card p,
      .contact-card a {
        font-size: 10px;
        overflow-wrap: anywhere;
      }

      .section {
        padding: 72px 0;
      }

      .section-head {
        margin-bottom: 32px;
      }

      .section-title {
        font-size: 35px;
      }

      .info-panel,
      .form-panel {
        padding: 27px 20px;
        border-radius: 19px;
      }

      .info-panel h2 {
        font-size: 32px;
      }

      .form-heading {
        display: block;
      }

      .secure-chip {
        margin-top: 12px;
      }

      .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
      }

      .field.full,
      .consent,
      .form-actions,
      .form-status {
        grid-column: auto;
      }

      .form-actions {
        align-items: stretch;
        flex-direction: column;
      }

      .form-actions .btn {
        width: 100%;
      }

      .branch-tabs {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 5px;
        scrollbar-width: none;
      }

      .branch-tabs::-webkit-scrollbar {
        display: none;
      }

      .branch-tab {
        flex: 0 0 auto;
      }

      .branch-maps {
        grid-template-columns: 1fr;
      }

      .branch-card:last-child {
        grid-column: auto;
        width: 100%;
      }

      .map-wrap {
        height: 230px;
      }

      .support-strip {
        padding-bottom: 72px;
      }

      .support-box {
        grid-template-columns: 1fr;
        padding: 28px 22px;
      }

      .support-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
      }

      .support-actions .btn {
        padding: 0 11px;
      }

      .faq-aside .section-title {
        font-size: 35px;
      }

      .footer-cta {
        transform: translateY(34%);
      }

      .footer-cta-inner {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 27px 22px;
      }

      .footer-cta .btn {
        width: 100%;
      }

      .site-footer {
        padding-top: 105px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .footer-grid .footer-column:last-child {
        grid-column: auto;
      }

      .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
      }

      .mobile-actions {
        position: fixed;
        z-index: 110;
        left: 0;
        right: 0;
        bottom: 0;
        height: 64px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        padding-bottom: env(safe-area-inset-bottom);
        color: var(--white);
        background: var(--navy-deep);
        box-shadow: 0 -6px 22px rgba(3, 23, 54, .18);
      }

      .mobile-actions a {
        display: grid;
        place-items: center;
        align-content: center;
        gap: 3px;
        border-right: 1px solid rgba(255, 255, 255, .12);
        font-size: 8px;
        font-weight: 800;
      }

      .mobile-actions a:last-child {
        border-right: 0;
        background: var(--maroon);
      }

      .mobile-actions .icon {
        width: 19px;
        height: 19px;
      }
    }

    @media (max-width: 390px) {
      .hero h1 {
        font-size: 37px;
      }

      .hero-actions {
        grid-template-columns: 1fr;
      }

      .contact-card {
        padding-inline: 12px;
      }

      .support-actions {
        grid-template-columns: 1fr;
      }

      .branch-actions {
        grid-template-columns: 1fr;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
      }

      .reveal {
        opacity: 1;
        transform: none;
      }
    }