/* =========================================================
       MS RELIABLE REPAIRS
       Single-file responsive website
       ========================================================= */


    :root {
      --navy: #274c5e;
      --navy-dark: #193744;
      --blue-soft: #e9f2f5;
      --blue-light: #d8e8ed;
      --sage: #7d9787;
      --sage-light: #edf3ef;
      --cream: #f8f6f1;
      --white: #ffffff;
      --charcoal: #243238;
      --muted: #68777d;
      --border: #dce4e5;
      --accent: #c58b55;
      --accent-dark: #a96f3c;
      --shadow: 0 18px 50px rgba(30, 55, 65, 0.10);
      --shadow-soft: 0 8px 25px rgba(30, 55, 65, 0.08);
      --radius: 20px;
      --radius-small: 12px;
      --max-width: 1160px;
      --transition: 220ms ease;
    }


    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }


    html {
      scroll-behavior: smooth;
    }


    body {
      min-height: 100vh;
      background: var(--cream);
      color: var(--charcoal);
      font-family: "DM Sans", sans-serif;
      line-height: 1.65;
      overflow-x: hidden;
    }


    button,
    a {
      font: inherit;
    }


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


    button {
      border: 0;
      cursor: pointer;
    }


    ::selection {
      background: var(--blue-light);
      color: var(--navy-dark);
    }


    /* =========================================================
       GLOBAL
       ========================================================= */


    .container {
      width: min(calc(100% - 40px), var(--max-width));
      margin-inline: auto;
    }


    .page {
      display: block;
      min-height: 60vh;
      animation: pageIn 0.35s ease both;
    }


    @keyframes pageIn {
      from {
        opacity: 0;
        transform: translateY(8px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }


    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 15px;
      color: var(--sage);
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }


    .eyebrow::before {
      content: "";
      width: 28px;
      height: 2px;
      background: var(--accent);
      border-radius: 2px;
    }


    .section {
      padding: 92px 0;
    }


    .section-heading {
      max-width: 680px;
      margin-bottom: 48px;
    }


    .section-heading h2 {
      color: var(--navy-dark);
      font-family: "Manrope", sans-serif;
      font-size: clamp(2rem, 4vw, 3.25rem);
      line-height: 1.12;
      letter-spacing: -0.04em;
      margin-bottom: 17px;
    }


    .section-heading p {
      color: var(--muted);
      font-size: 1.05rem;
    }


    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 50px;
      padding: 13px 22px;
      border-radius: 999px;
      font-weight: 700;
      transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition),
        color var(--transition);
    }


    .btn:hover {
      transform: translateY(-2px);
    }


    .btn-primary {
      background: var(--accent);
      color: var(--white);
      box-shadow: 0 10px 25px rgba(197, 139, 85, 0.25);
    }


    .btn-primary:hover {
      background: var(--accent-dark);
      box-shadow: 0 14px 30px rgba(197, 139, 85, 0.32);
    }


    .btn-light {
      background: var(--white);
      color: var(--navy);
      box-shadow: var(--shadow-soft);
    }


    .btn-light:hover {
      background: var(--blue-soft);
    }


    .btn-outline {
      color: var(--navy);
      border: 1px solid var(--border);
      background: transparent;
    }


    .btn-outline:hover {
      background: var(--white);
      box-shadow: var(--shadow-soft);
    }


    .icon-box {
      display: grid;
      width: 52px;
      height: 52px;
      place-items: center;
      flex: 0 0 52px;
      border-radius: 15px;
      background: var(--blue-soft);
      color: var(--navy);
    }


    .icon-box svg {
      display: block;
      width: 26px;
      height: 26px;
      flex: 0 0 auto;
    }


    /* =========================================================
       HEADER / NAVIGATION
       ========================================================= */


    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      border-bottom: 1px solid rgba(220, 228, 229, 0.8);
      background: rgba(248, 246, 241, 0.94);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
    }


    .nav {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 25px;
    }


    .brand {
      display: inline-flex;
      align-items: center;
      min-width: max-content;
    }


    .brand-logo {
      display: block;
      width: 205px;
      height: auto;
      max-height: 68px;
      object-fit: contain;
      object-position: center;
    }


    .brand-mark {
      display: grid;
      width: 42px;
      height: 42px;
      place-items: center;
      border-radius: 13px;
      background: var(--navy);
      color: var(--white);
      box-shadow: 0 7px 18px rgba(39, 76, 94, 0.18);
    }


    .brand-mark svg {
      width: 23px;
      height: 23px;
    }


    .brand-name {
      color: var(--navy-dark);
      font-family: "Manrope", sans-serif;
      font-size: 1rem;
      font-weight: 800;
      letter-spacing: -0.025em;
    }


    .brand-subtitle {
      display: block;
      margin-top: -3px;
      color: var(--muted);
      font-size: 0.64rem;
      font-weight: 700;
      letter-spacing: 0.11em;
      text-transform: uppercase;
    }


    .nav-links {
      display: flex;
      align-items: center;
      gap: 5px;
      list-style: none;
    }


    .nav-link {
      position: relative;
      padding: 9px 14px;
      border-radius: 999px;
      color: var(--muted);
      font-size: 0.92rem;
      font-weight: 700;
      transition: color var(--transition), background var(--transition);
    }


    .nav-link:hover {
      color: var(--navy);
      background: var(--blue-soft);
    }


    .nav-link.active {
      color: var(--navy);
      background: var(--blue-light);
    }


    .nav-call {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 10px 16px;
      border-radius: 999px;
      background: var(--navy);
      color: var(--white);
      font-size: 0.86rem;
      font-weight: 700;
      transition: transform var(--transition), background var(--transition);
    }


    .nav-call:hover {
      background: var(--navy-dark);
      transform: translateY(-2px);
    }


    .nav-call svg {
      width: 16px;
      height: 16px;
    }


    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: var(--blue-soft);
      color: var(--navy);
    }


    .menu-toggle svg {
      width: 22px;
      height: 22px;
    }


    /* =========================================================
       HOME HERO
       ========================================================= */


    .hero {
      position: relative;
      min-height: min(720px, calc(100vh - 76px));
      display: flex;
      align-items: center;
      isolation: isolate;
      background:
        linear-gradient(90deg, rgba(19, 48, 60, 0.93) 0%, rgba(19, 48, 60, 0.78) 48%, rgba(19, 48, 60, 0.36) 100%),
        url("https://images.unsplash.com/photo-1504148455328-c376907d081c?w=1600&fit=crop") center/cover no-repeat;
      overflow: hidden;
    }


    .hero::after {
      content: "";
      position: absolute;
      z-index: -1;
      right: -100px;
      bottom: -160px;
      width: 430px;
      height: 430px;
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 50%;
      box-shadow:
        0 0 0 45px rgba(255,255,255,0.025),
        0 0 0 90px rgba(255,255,255,0.02);
    }


    .hero-content {
      max-width: 720px;
      padding: 90px 0;
      color: var(--white);
      animation: heroIn 0.7s ease both;
    }


    @keyframes heroIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }


    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 22px;
      padding: 8px 13px;
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 999px;
      background: rgba(255,255,255,0.09);
      backdrop-filter: blur(5px);
      color: #e7f1f2;
      font-size: 0.77rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }


    .hero-kicker span {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #b9d1bf;
      box-shadow: 0 0 0 5px rgba(185, 209, 191, 0.12);
    }


    .hero h1 {
      max-width: 800px;
      font-family: "Manrope", sans-serif;
      font-size: clamp(2.65rem, 6vw, 5.25rem);
      line-height: 1.01;
      letter-spacing: -0.055em;
      margin-bottom: 23px;
    }


    .hero h1 em {
      color: #dcb58e;
      font-style: normal;
    }


    .hero-description {
      max-width: 610px;
      color: rgba(255,255,255,0.82);
      font-size: clamp(1rem, 2vw, 1.18rem);
      margin-bottom: 32px;
    }


    .hero-actions {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }


    .hero .btn-outline {
      color: var(--white);
      border-color: rgba(255,255,255,0.3);
      background: rgba(255,255,255,0.06);
    }


    .hero .btn-outline:hover {
      background: rgba(255,255,255,0.13);
    }


    .hero-note {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 30px;
      color: rgba(255,255,255,0.72);
      font-size: 0.88rem;
    }


    .hero-note svg {
      width: 18px;
      color: #c4d6ca;
    }


    /* =========================================================
       HOME FEATURE STRIP
       ========================================================= */


    .trust-strip {
      position: relative;
      z-index: 2;
      margin-top: -42px;
    }


    .trust-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: var(--shadow);
      overflow: hidden;
    }


    .trust-item {
      display: flex;
      align-items: center;
      gap: 15px;
      padding: 25px 28px;
      border-right: 1px solid var(--border);
    }


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


    .trust-item strong {
      display: block;
      color: var(--navy-dark);
      font-family: "Manrope", sans-serif;
      font-size: 0.98rem;
    }


    .trust-item span {
      display: block;
      margin-top: 2px;
      color: var(--muted);
      font-size: 0.82rem;
    }


    /* =========================================================
       HOME INTRO
       ========================================================= */


    .intro-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 75px;
      align-items: center;
    }


    .intro-statement {
      color: var(--navy-dark);
      font-family: "Manrope", sans-serif;
      font-size: clamp(1.7rem, 3vw, 2.65rem);
      line-height: 1.2;
      letter-spacing: -0.04em;
    }


    .intro-statement span {
      color: var(--accent);
    }


    .intro-copy p {
      margin-bottom: 18px;
      color: var(--muted);
      font-size: 1.02rem;
    }


    .check-list {
      display: grid;
      gap: 12px;
      margin: 25px 0 28px;
      list-style: none;
    }


    .check-list li {
      display: flex;
      align-items: flex-start;
      gap: 11px;
      color: var(--charcoal);
      font-weight: 600;
    }


    .check-list svg {
      flex: 0 0 20px;
      width: 20px;
      margin-top: 3px;
      color: var(--sage);
    }


    /* =========================================================
       SERVICE PREVIEW
       ========================================================= */


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


    .service-preview-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 17px;
    }


    .mini-card {
      padding: 27px;
      border: 1px solid rgba(39, 76, 94, 0.08);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: 0 6px 20px rgba(39, 76, 94, 0.05);
      transition: transform var(--transition), box-shadow var(--transition);
    }


    .mini-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow);
    }


    .mini-card h3 {
      margin: 20px 0 7px;
      color: var(--navy-dark);
      font-family: "Manrope", sans-serif;
      font-size: 1.15rem;
    }


    .mini-card p {
      color: var(--muted);
      font-size: 0.91rem;
    }


    .view-all {
      margin-top: 32px;
      text-align: center;
    }


    /* =========================================================
       ABOUT PAGE
       ========================================================= */


    .page-hero {
      padding: 76px 0 68px;
      background: linear-gradient(135deg, var(--navy-dark), var(--navy));
      color: var(--white);
    }


    .page-hero h1 {
      max-width: 780px;
      font-family: "Manrope", sans-serif;
      font-size: clamp(2.5rem, 5vw, 4rem);
      line-height: 1.08;
      letter-spacing: -0.05em;
    }


    .page-hero p {
      max-width: 650px;
      margin-top: 18px;
      color: rgba(255,255,255,0.76);
      font-size: 1.05rem;
    }


    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
    }


    .about-card {
      padding: 34px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: var(--shadow-soft);
    }


    .about-card.large {
      grid-row: span 2;
      background: var(--navy);
      color: var(--white);
      border-color: transparent;
    }


    .about-card.large h2 {
      color: var(--white);
      font-family: "Manrope", sans-serif;
      font-size: 2rem;
      line-height: 1.15;
      margin: 24px 0 15px;
    }


    .about-card.large p {
      color: rgba(255,255,255,0.76);
    }


    .quote-mark {
      display: grid;
      width: 58px;
      height: 58px;
      place-items: center;
      border-radius: 17px;
      background: rgba(255,255,255,0.1);
      color: #dfbb96;
      font-family: Georgia, serif;
      font-size: 2.2rem;
    }


    .about-card h3 {
      color: var(--navy-dark);
      font-family: "Manrope", sans-serif;
      margin: 17px 0 7px;
    }


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


    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 48px;
    }


    .value-card {
      padding: 28px;
      border-radius: var(--radius);
      background: var(--sage-light);
    }


    .value-card h3 {
      margin: 16px 0 7px;
      color: var(--navy-dark);
      font-family: "Manrope", sans-serif;
    }


    .value-card p {
      color: var(--muted);
      font-size: 0.91rem;
    }


    /* =========================================================
       SERVICES PAGE
       ========================================================= */


    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }


    .service-card {
      position: relative;
      min-height: 245px;
      padding: 29px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: var(--white);
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      transition: transform var(--transition), box-shadow var(--transition);
    }


    .service-card::after {
      content: "";
      position: absolute;
      right: -45px;
      bottom: -60px;
      width: 150px;
      height: 150px;
      border-radius: 50%;
      background: var(--blue-soft);
      transition: transform 0.35s ease;
    }


    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow);
    }


    .service-card:hover::after {
      transform: scale(1.25);
    }


    .service-number {
      position: absolute;
      top: 25px;
      right: 27px;
      color: #dce5e7;
      font-family: "Manrope", sans-serif;
      font-size: 2rem;
      font-weight: 800;
    }


    .service-card h3 {
      position: relative;
      z-index: 1;
      margin: 20px 0 9px;
      color: var(--navy-dark);
      font-family: "Manrope", sans-serif;
      font-size: 1.25rem;
    }


    .service-card p {
      position: relative;
      z-index: 1;
      max-width: 280px;
      color: var(--muted);
      font-size: 0.92rem;
    }


    .service-icon {
      position: relative;
      z-index: 2;
      display: grid;
      width: 53px;
      height: 53px;
      place-items: center;
      border-radius: 16px;
      background: var(--blue-soft);
      color: var(--navy);
    }


    .service-icon svg {
      width: 27px;
      height: 27px;
    }


    .service-bottom {
      margin-top: 65px;
      padding: 38px;
      border-radius: var(--radius);
      background: linear-gradient(135deg, var(--sage-light), var(--blue-soft));
      text-align: center;
    }


    .service-bottom h2 {
      color: var(--navy-dark);
      font-family: "Manrope", sans-serif;
      font-size: clamp(1.7rem, 3vw, 2.35rem);
      letter-spacing: -0.035em;
    }


    .service-bottom p {
      max-width: 650px;
      margin: 10px auto 22px;
      color: var(--muted);
    }


    /* =========================================================
       CONTACT PAGE
       ========================================================= */


    .contact-layout {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 22px;
    }


    .contact-main {
      padding: 42px;
      border-radius: var(--radius);
      background: var(--navy);
      color: var(--white);
      box-shadow: var(--shadow);
    }


    .contact-main h2 {
      max-width: 500px;
      font-family: "Manrope", sans-serif;
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.12;
      letter-spacing: -0.045em;
      margin-bottom: 14px;
    }


    .contact-main > p {
      max-width: 540px;
      color: rgba(255,255,255,0.72);
      margin-bottom: 30px;
    }


    .contact-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 11px;
      margin-bottom: 36px;
    }


    .contact-details {
      display: grid;
      gap: 15px;
      padding-top: 25px;
      border-top: 1px solid rgba(255,255,255,0.14);
    }


    .contact-detail {
      display: flex;
      gap: 13px;
      align-items: flex-start;
    }


    .contact-detail-icon {
      display: grid;
      width: 38px;
      height: 38px;
      flex: 0 0 38px;
      place-items: center;
      border-radius: 11px;
      background: rgba(255,255,255,0.09);
      color: #d9bd9d;
    }


    .contact-detail-icon svg {
      width: 18px;
      height: 18px;
    }


    .contact-detail strong {
      display: block;
      color: var(--white);
      font-size: 0.88rem;
    }


    .contact-detail span,
    .contact-detail a {
      color: rgba(255,255,255,0.7);
      font-size: 0.88rem;
    }


    .contact-detail a:hover {
      color: var(--white);
      text-decoration: underline;
    }


    .contact-side {
      display: grid;
      gap: 18px;
    }


    .area-card,
    .hours-card {
      padding: 32px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: var(--shadow-soft);
    }


    .area-card h3,
    .hours-card h3 {
      margin: 18px 0 8px;
      color: var(--navy-dark);
      font-family: "Manrope", sans-serif;
      font-size: 1.25rem;
    }


    .area-card p,
    .hours-card p {
      color: var(--muted);
      font-size: 0.94rem;
    }


    .area-highlight {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 18px;
      padding: 9px 12px;
      border-radius: 999px;
      background: var(--sage-light);
      color: var(--navy);
      font-size: 0.78rem;
      font-weight: 800;
    }


    /* =========================================================
       FOOTER
       ========================================================= */


    footer {
      margin-top: 0;
      background: #172f3a;
      color: var(--white);
    }


    .footer-main {
      display: grid;
      grid-template-columns: 1.4fr 0.8fr 1fr;
      gap: 50px;
      padding: 58px 0 45px;
    }


    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      margin-bottom: 17px;
    }


    .footer-brand .brand-mark {
      background: rgba(255,255,255,0.1);
    }


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


    .footer-brand .brand-subtitle {
      color: rgba(255,255,255,0.52);
    }


    .footer-description {
      max-width: 390px;
      color: rgba(255,255,255,0.62);
      font-size: 0.9rem;
    }


    .footer h3 {
      margin-bottom: 16px;
      font-family: "Manrope", sans-serif;
      font-size: 0.93rem;
    }


    .footer-links {
      display: grid;
      gap: 9px;
      list-style: none;
    }


    .footer-links button {
      padding: 0;
      background: none;
      color: rgba(255,255,255,0.62);
      text-align: left;
      transition: color var(--transition);
    }


    .footer-links button:hover {
      color: var(--white);
    }


    .footer-contact {
      display: grid;
      gap: 10px;
      list-style: none;
    }


    .footer-contact a {
      color: rgba(255,255,255,0.68);
      font-size: 0.9rem;
      transition: color var(--transition);
    }


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


    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      padding: 19px 0;
      border-top: 1px solid rgba(255,255,255,0.1);
      color: rgba(255,255,255,0.48);
      font-size: 0.77rem;
    }


    /* =========================================================
       RESPONSIVE
       ========================================================= */


    @media (max-width: 980px) {
      .nav-call {
        display: none;
      }


      .intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }


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


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


      .about-card.large {
        grid-row: auto;
      }


      .values-grid {
        grid-template-columns: repeat(3, 1fr);
      }


      .contact-layout {
        grid-template-columns: 1fr;
      }


      .footer-main {
        grid-template-columns: 1fr 1fr;
      }


      .footer-brand-column {
        grid-column: 1 / -1;
      }
    }


    @media (max-width: 760px) {
      .container {
        width: min(calc(100% - 28px), var(--max-width));
      }


      .nav {
        min-height: 68px;
      }


      .menu-toggle {
        display: grid;
        place-items: center;
      }


      .nav-links {
        position: absolute;
        top: calc(100% + 1px);
        left: 14px;
        right: 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
        padding: 10px;
        border: 1px solid var(--border);
        border-radius: 17px;
        background: rgba(255,255,255,0.98);
        box-shadow: var(--shadow);
      }


      .nav-links.open {
        display: flex;
        animation: menuIn 0.2s ease both;
      }


      @keyframes menuIn {
        from {
          opacity: 0;
          transform: translateY(-6px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }


      .nav-link {
        display: block;
        width: 100%;
        padding: 12px 14px;
      }


      .hero {
        min-height: 650px;
        background-position: 62% center;
        background-image:
          linear-gradient(90deg, rgba(19, 48, 60, 0.93) 0%, rgba(19, 48, 60, 0.78) 100%),
          url("https://images.unsplash.com/photo-1504148455328-c376907d081c?w=1200&fit=crop");
      }


      .hero-content {
        padding: 70px 0;
      }


      .hero h1 {
        font-size: clamp(2.5rem, 12vw, 4rem);
      }


      .trust-strip {
        margin-top: -25px;
      }


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


      .trust-item {
        border-right: 0;
        border-bottom: 1px solid var(--border);
      }


      .trust-item:last-child {
        border-bottom: 0;
      }


      .section {
        padding: 70px 0;
      }


      .service-preview-grid,
      .services-grid,
      .values-grid {
        grid-template-columns: 1fr;
      }


      .page-hero {
        padding: 58px 0;
      }


      .contact-main {
        padding: 30px;
      }


      .area-card,
      .hours-card {
        padding: 28px;
      }


      .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 45px 0 35px;
      }


      .footer-brand-column {
        grid-column: auto;
      }


      .footer-bottom {
        flex-direction: column;
        gap: 5px;
      }
    }


    @media (max-width: 480px) {
      .brand-name {
        font-size: 0.91rem;
      }


      .brand-subtitle {
        font-size: 0.56rem;
      }


      .brand-logo {
        width: 168px;
        max-height: 62px;
      }


      .hero-actions {
        align-items: stretch;
        flex-direction: column;
      }


      .hero-actions .btn {
        width: 100%;
      }


      .contact-actions {
        flex-direction: column;
      }


      .contact-actions .btn {
        width: 100%;
      }


      .service-card {
        min-height: 225px;
      }
    }


    /* Accessibility */
    .skip-link {
      position: fixed;
      top: 8px;
      left: 8px;
      z-index: 2000;
      padding: 9px 14px;
      border-radius: 8px;
      background: var(--navy);
      color: var(--white);
      transform: translateY(-150%);
      transition: transform var(--transition);
    }


    .skip-link:focus {
      transform: translateY(0);
    }


    button:focus-visible,
    a:focus-visible {
      outline: 3px solid rgba(197, 139, 85, 0.55);
      outline-offset: 3px;
    }


    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
      }
    }
