:root {
    --navy: #20166b;
    --navy-2: #090d2d;
    --ink: #111827;
    --muted: #5d6678;
    --paper: #f7f9fc;
    --white: #ffffff;
    --line: #dfe5ee;
    --red: #cf2637;
    --red-dark: #a71928;
    --teal: #0aa6a6;
    --gold: #f4b84a;
    --shadow: 0 22px 70px rgba(10, 15, 35, 0.16);
    --radius: 8px;
    --container: min(1160px, calc(100vw - 40px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

body.nav-is-open {
    overflow: hidden;
}

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

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

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

.container {
    width: var(--container);
    margin: 0 auto;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 200;
    padding: 10px 14px;
    color: var(--white);
    background: var(--navy);
    transform: translateY(-150%);
}

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

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

.t-lang-zh {
    display: none;
}

body.is-zh .t-lang-en {
    display: none;
}

body.is-zh .t-lang-zh {
    display: inline;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(223, 229, 238, 0.88);
    transition: box-shadow 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled {
    box-shadow: 0 10px 36px rgba(10, 15, 35, 0.12);
}

.top-strip {
    color: var(--white);
    background: linear-gradient(90deg, var(--navy-2), var(--navy));
}

.top-strip__inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-size: 0.9rem;
}

.top-strip__phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-strip__phone strong {
    color: var(--gold);
}

.main-nav__inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    width: 190px;
    flex: 0 0 auto;
}

.brand img {
    width: 100%;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.site-nav a {
    position: relative;
    padding: 12px 13px;
    color: #20263a;
    font-weight: 750;
    font-size: 0.93rem;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 7px;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.language-toggle {
    display: inline-grid;
    grid-template-columns: 1fr 1fr;
    padding: 3px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #eef2f7;
}

.language-toggle button {
    min-width: 48px;
    border: 0;
    border-radius: 999px;
    padding: 7px 10px;
    color: var(--muted);
    background: transparent;
    font-weight: 800;
    font-size: 0.78rem;
    cursor: pointer;
}

.language-toggle button.is-active {
    color: var(--white);
    background: var(--navy);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 18px;
    border-radius: 999px;
    color: var(--white);
    background: var(--red);
    font-weight: 850;
    box-shadow: 0 12px 28px rgba(207, 38, 55, 0.28);
}

.nav-cta:hover,
.nav-cta:focus-visible {
    background: var(--red-dark);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
}

.nav-toggle span:not(.screen-reader-text) {
    display: block;
    width: 19px;
    height: 2px;
    margin: 4px auto;
    background: var(--ink);
    transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: var(--white);
    background: var(--navy-2);
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image:
        linear-gradient(90deg, rgba(8, 12, 40, 0.94) 0%, rgba(20, 18, 74, 0.84) 42%, rgba(17, 24, 39, 0.22) 100%),
        url("../images/hero-shop.jpg");
    background-position: center;
    background-size: cover;
    transform: scale(1.02);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto -12% -26% 46%;
    z-index: -1;
    height: 340px;
    background: linear-gradient(90deg, rgba(207, 38, 55, 0.42), rgba(10, 166, 166, 0.22));
    filter: blur(60px);
}

.hero__grid {
    min-height: min(720px, calc(100svh - 126px));
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: center;
    gap: 52px;
    padding: 88px 0 74px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--red);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: var(--gold);
}

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

h1 {
    max-width: 760px;
    margin-bottom: 22px;
    font-size: clamp(2.45rem, 6vw, 5rem);
    line-height: 0.95;
    font-weight: 920;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: 0;
}

h3 {
    font-size: 1.22rem;
    line-height: 1.18;
    font-weight: 880;
}

.hero__text {
    max-width: 680px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1rem, 1.5vw, 1.22rem);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 870;
    line-height: 1;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn--primary {
    color: var(--white);
    background: var(--red);
    box-shadow: 0 18px 36px rgba(207, 38, 55, 0.28);
}

.btn--primary:hover,
.btn--primary:focus-visible {
    background: var(--red-dark);
}

.btn--secondary {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.09);
}

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

.btn--wide {
    width: 100%;
}

.hero-panel {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--radius);
    background: rgba(10, 14, 45, 0.72);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.hero-panel__status {
    display: grid;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-panel__status::before {
    content: "";
    width: 54px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--red), var(--gold));
}

.hero-panel__kicker {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.74rem;
    font-weight: 880;
    text-transform: uppercase;
}

.hero-panel__status strong {
    display: block;
    color: var(--white);
    font-size: 1.14rem;
    line-height: 1.18;
}

.hero-panel ul {
    display: grid;
    gap: 12px;
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
}

.hero-panel li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-panel a {
    color: var(--gold);
    font-weight: 850;
    white-space: nowrap;
}

.hero-panel p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.93rem;
}

.trust-strip {
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
}

.trust-item {
    min-height: 124px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
    background: var(--white);
}

.trust-item strong {
    color: var(--navy);
    font-size: 1.6rem;
    line-height: 1;
}

.trust-item span {
    color: var(--muted);
    font-weight: 720;
}

.section {
    padding: 96px 0;
}

.section-split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: start;
}

.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.about-card p,
.sales-band__copy p,
.faq-intro p,
.contact-copy p {
    color: var(--muted);
    font-size: 1.05rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    color: var(--red);
    font-weight: 860;
}

.text-link::after {
    content: "";
    width: 34px;
    height: 2px;
    margin-left: 10px;
    background: currentColor;
    transition: width 180ms ease;
}

.text-link:hover::after {
    width: 54px;
}

.services {
    background: var(--white);
}

.section-heading {
    max-width: 800px;
    margin-bottom: 42px;
}

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

.service-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 10px 30px rgba(10, 15, 35, 0.06);
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(207, 38, 55, 0.32);
    box-shadow: 0 20px 48px rgba(10, 15, 35, 0.12);
}

.service-card img {
    width: 100%;
    aspect-ratio: 1.34;
    object-fit: cover;
    background: #dce2eb;
}

.service-card__body {
    padding: 22px;
}

.service-card__body p {
    margin-bottom: 8px;
    color: var(--teal);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.service-card__body h3 {
    min-height: 58px;
    margin-bottom: 12px;
}

.service-card__body div {
    color: var(--muted);
}

.sales-band {
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(32, 22, 107, 0.98), rgba(9, 13, 45, 0.98)),
        var(--navy);
}

.sales-band__grid {
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    gap: 58px;
    align-items: center;
    padding: 88px 0;
}

.sales-band__image {
    position: relative;
}

.sales-band__image::after {
    content: "";
    position: absolute;
    inset: 18px -18px -18px 18px;
    border: 1px solid rgba(244, 184, 74, 0.48);
    border-radius: var(--radius);
}

.sales-band__image img {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 0.9;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.sales-band .eyebrow {
    color: var(--gold);
}

.sales-band__copy p {
    color: rgba(255, 255, 255, 0.78);
}

.process {
    background: var(--paper);
}

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

.process-card {
    min-height: 270px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.process-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 28px;
    border-radius: 50%;
    color: var(--white);
    background: var(--navy);
    font-weight: 880;
}

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

.locations {
    background: var(--white);
}

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

.location-card {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    transition: transform 180ms ease, border-color 180ms ease;
}

.location-card:hover {
    transform: translateY(-3px);
    border-color: rgba(10, 166, 166, 0.42);
}

.location-card h3 {
    margin-bottom: 10px;
}

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

.location-phone {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--red);
    font-weight: 880;
}

.location-directions {
    display: inline-flex;
    align-items: center;
    margin-bottom: 22px;
    color: var(--navy);
    font-weight: 840;
}

.location-directions::after {
    content: "";
    width: 24px;
    height: 2px;
    margin-left: 8px;
    background: currentColor;
    transition: width 180ms ease;
}

.location-directions:hover::after {
    width: 38px;
}

.location-card dl {
    display: grid;
    gap: 9px;
    margin: 0;
}

.location-card dl div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 9px;
    border-top: 1px solid var(--line);
}

.location-card dt {
    color: var(--muted);
}

.location-card dd {
    margin: 0;
    font-weight: 800;
}

.map-showcase {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 24px;
    margin-top: 24px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(135deg, #ffffff, #f6f8fb);
    box-shadow: 0 18px 50px rgba(10, 15, 35, 0.08);
}

.map-showcase__meta {
    align-self: center;
}

.map-showcase__meta h3 {
    margin-bottom: 22px;
    font-size: 1.55rem;
}

.map-location-actions {
    display: grid;
    gap: 10px;
}

.map-location-actions button {
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0 14px;
    color: var(--ink);
    background: var(--white);
    text-align: left;
    font-weight: 840;
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.map-location-actions button:hover,
.map-location-actions button:focus-visible {
    transform: translateX(4px);
    color: var(--navy);
    border-color: rgba(207, 38, 55, 0.34);
    box-shadow: 0 10px 24px rgba(10, 15, 35, 0.08);
}

.map-shell {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    border-radius: var(--radius);
    background: #dfe7ef;
}

.tunnex-map {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.map-fallback {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--muted);
    font-weight: 840;
}

.map-info-window {
    display: grid;
    gap: 4px;
    max-width: 230px;
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}

.map-info-window strong {
    color: var(--navy);
    font-size: 0.98rem;
}

.map-info-window span {
    color: var(--muted);
}

.map-info-window a {
    margin-top: 4px;
    color: var(--red);
    font-weight: 850;
}

.about {
    background: linear-gradient(180deg, var(--paper), #ffffff);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 48px;
    align-items: center;
}

.about-card {
    padding: 42px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 14px 48px rgba(10, 15, 35, 0.08);
}

.about-proof {
    position: relative;
}

.about-proof img {
    width: 100%;
    aspect-ratio: 0.86;
    object-fit: cover;
    border-radius: var(--radius);
}

.about-proof div {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    padding: 18px;
    color: var(--white);
    border-radius: var(--radius);
    background: rgba(9, 13, 45, 0.82);
    backdrop-filter: blur(12px);
}

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

.about-proof strong {
    margin-bottom: 4px;
}

.faq {
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 54px;
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: 150px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    overflow: hidden;
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 19px 20px;
    cursor: pointer;
    color: var(--ink);
    font-weight: 840;
    list-style: none;
}

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

.faq-item summary::after {
    content: "+";
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 50%;
    color: var(--white);
    background: var(--navy);
    font-weight: 800;
}

.faq-item[open] summary::after {
    content: "-";
    background: var(--red);
}

.faq-item p {
    margin: 0;
    padding: 0 20px 20px;
    color: var(--muted);
}

.contact-section {
    padding: 96px 0;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(9, 13, 45, 0.98), rgba(32, 22, 107, 0.96)),
        var(--navy-2);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 54px;
    align-items: start;
}

.contact-section .eyebrow {
    color: var(--gold);
}

.contact-copy p {
    color: rgba(255, 255, 255, 0.76);
}

.contact-quick {
    display: grid;
    gap: 10px;
    margin-top: 26px;
}

.contact-quick a {
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    font-weight: 800;
    transition: transform 180ms ease, background 180ms ease;
}

.contact-quick a:hover {
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.11);
}

.lead-form {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.lead-form label {
    display: grid;
    gap: 7px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 780;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    padding: 11px 13px;
    color: var(--white);
    background: rgba(7, 12, 36, 0.54);
    outline: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.lead-form textarea {
    resize: vertical;
}

.lead-form select option {
    color: var(--ink);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(244, 184, 74, 0.18);
    background: rgba(7, 12, 36, 0.74);
}

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

.form-notice {
    margin-bottom: 18px;
    padding: 12px 14px;
    border-radius: var(--radius);
    font-weight: 800;
}

.form-notice--success {
    color: #073d33;
    background: #bdf5e7;
}

.form-notice--error {
    color: #5b0a16;
    background: #ffd8de;
}

.site-footer {
    color: rgba(255, 255, 255, 0.78);
    background: #070a22;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 32px;
    padding: 54px 0;
}

.footer-logo {
    width: 176px;
    margin-bottom: 18px;
    filter: brightness(0) invert(1);
}

.site-footer h2 {
    margin-bottom: 10px;
    color: var(--white);
    font-size: 1rem;
}

.site-footer p {
    margin-bottom: 8px;
}

.site-footer a {
    color: var(--gold);
    font-weight: 820;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom__inner {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-size: 0.92rem;
}

.page-shell {
    padding: 90px 0;
}

.content-page {
    max-width: 820px;
    padding: 42px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 14px 48px rgba(10, 15, 35, 0.08);
}

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

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1080px) {
    .site-nav {
        gap: 0;
    }

    .site-nav a {
        padding-inline: 9px;
    }

    .brand {
        width: 168px;
    }

    .hero__grid,
    .section-split,
    .sales-band__grid,
    .about-grid,
    .faq-grid,
    .contact-grid,
    .map-showcase {
        grid-template-columns: 1fr;
    }

    .hero__grid {
        gap: 28px;
        min-height: auto;
    }

    .hero-panel {
        max-width: 520px;
    }

    .faq-intro {
        position: static;
    }

    .map-showcase__meta {
        align-self: start;
    }

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

@media (max-width: 880px) {
    :root {
        --container: min(100vw - 28px, 720px);
    }

    .top-strip__inner {
        min-height: 38px;
        justify-content: center;
        text-align: center;
    }

    .top-strip__hours {
        display: none;
    }

    .main-nav__inner {
        min-height: 70px;
    }

    .site-nav {
        position: fixed;
        top: 108px;
        right: 14px;
        left: 14px;
        display: grid;
        gap: 2px;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: var(--white);
        box-shadow: var(--shadow);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: transform 180ms ease, opacity 180ms ease;
    }

    body.nav-is-open .site-nav {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .site-nav a {
        padding: 13px 12px;
        border-radius: 8px;
    }

    .site-nav a:hover {
        background: var(--paper);
    }

    .site-nav a::after {
        display: none;
    }

    .nav-toggle {
        display: inline-block;
    }

    body.nav-is-open .nav-toggle span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    body.nav-is-open .nav-toggle span:nth-child(2) {
        opacity: 0;
    }

    body.nav-is-open .nav-toggle span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .nav-cta {
        display: none;
    }

    .hero__grid {
        padding: 62px 0 54px;
    }

    .hero__media {
        background-position: 58% center;
    }

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

    .section,
    .contact-section {
        padding: 72px 0;
    }

    .sales-band__grid {
        padding: 72px 0;
    }

    .map-shell {
        min-height: 360px;
    }
}

@media (max-width: 640px) {
    .brand {
        width: 138px;
    }

    .language-toggle button {
        min-width: 42px;
        padding-inline: 8px;
    }

    .hero__grid {
        padding: 48px 0 42px;
    }

    h1 {
        font-size: 2.55rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero__actions,
    .form-row {
        grid-template-columns: 1fr;
    }

    .hero__actions,
    .hero-panel li,
    .footer-bottom__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .hero-panel,
    .about-card,
    .lead-form,
    .content-page,
    .map-showcase {
        padding: 22px;
    }

    .map-shell {
        min-height: 320px;
    }

    .map-showcase__meta h3 {
        font-size: 1.28rem;
    }

    .trust-strip__grid,
    .services-grid,
    .process-grid,
    .location-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .trust-item {
        min-height: 104px;
    }

    .service-card__body h3 {
        min-height: 0;
    }

    .sales-band__image img,
    .about-proof img {
        aspect-ratio: 1.05;
    }

    .footer-bottom__inner {
        padding: 16px 0;
    }
}
