:root {
    --bg: #f2f2f3;
    --surface: #ffffff;
    --surface-muted: #f7f7f8;
    --ink: #101012;
    --muted: #66666b;
    --line: #d8d8dc;
    --accent: #e10613;
    --accent-dark: #9f000b;
    --accent-soft: #fff0f1;
    --steel: #2c2c30;
    --black: #0b0b0d;
    --black-soft: #171719;
    --focus: #e10613;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.55;
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(11, 11, 13, 0.96);
    border-bottom: 1px solid #28282c;
}

.nav,
.section,
.page-hero {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

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

.brand {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0;
}

.brand img {
    width: 176px;
    height: 90px;
    display: block;
    border-radius: 3px;
    object-fit: contain;
    object-position: center;
}

.footer-logo img {
    width: 150px;
    height: 78px;
    display: block;
    border-radius: 3px;
    object-fit: contain;
    object-position: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-toggle {
    width: 44px;
    height: 44px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid #3a3a40;
    border-radius: 8px;
    background: var(--black-soft);
    cursor: pointer;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.nav-links a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 6px;
    color: #d7d7dc;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    border-color: rgba(225, 6, 19, 0.46);
    background: rgba(225, 6, 19, 0.92);
    color: #ffffff;
}

.hero {
    min-height: 560px;
    display: flex;
    align-items: center;
    padding: 72px max(32px, calc((100vw - 1120px) / 2)) 88px;
}

.hero-image {
    background:
        linear-gradient(90deg, rgba(11, 11, 13, 0.94), rgba(17, 17, 19, 0.78), rgba(159, 0, 11, 0.18)),
        url("hero-tuning-workshop.png") center / cover no-repeat;
    color: #ffffff;
}

.hero-content {
    max-width: 620px;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-image .eyebrow {
    color: #ff4d57;
}

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

h1 {
    margin-bottom: 18px;
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    line-height: 1;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 12px;
    font-size: 1.65rem;
    line-height: 1.2;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 8px;
    font-size: 1rem;
    letter-spacing: 0;
}

.hero p,
.page-hero p,
.section-heading p,
.contact-copy p,
.feature-card p,
.service-preview-card p,
.instagram-panel p,
.instagram-wide-panel p,
.service-row p,
.result-panel p {
    color: var(--muted);
}

.hero-image p {
    color: rgba(255, 255, 255, 0.86);
}

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

.info-strip {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 max(32px, calc((100vw - 1120px) / 2));
    background: linear-gradient(90deg, var(--black) 0%, var(--accent-dark) 46%, var(--accent) 100%);
    box-shadow: 0 18px 44px rgba(11, 11, 13, 0.18);
}

.info-strip-item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 88px;
    padding: 18px 28px;
    color: #ffffff;
    background: transparent;
}

.info-strip-item + .info-strip-item {
    border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.info-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
}

.info-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.info-strip strong {
    display: block;
    margin-bottom: 2px;
    color: #ffffff;
    font-size: 1rem;
}

.info-strip p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.stats-section {
    padding-top: 56px;
    padding-bottom: 22px;
}

.partner-strip {
    width: 100%;
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #ffffff;
}

.partner-strip-track {
    width: max-content;
    display: flex;
    padding: 18px 0;
    animation: partnerMarquee 38s linear infinite;
}

.partner-strip-group {
    display: flex;
    gap: 14px;
    padding-right: 14px;
}

.partner-strip:hover .partner-strip-track {
    animation-play-state: paused;
}

.partner-item {
    min-width: 180px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 900;
    text-transform: uppercase;
}

.partner-item img {
    max-width: 148px;
    max-height: 52px;
    display: block;
    object-fit: contain;
}

@keyframes partnerMarquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

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

.stat-card {
    min-height: 168px;
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 10px;
    padding: 30px;
    border: 1px solid var(--line);
    border-top: 3px solid var(--accent);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(11, 11, 13, 0.07);
}

.stat-card strong {
    color: var(--accent);
    font-size: clamp(2.25rem, 5vw, 3.7rem);
    line-height: 1;
    letter-spacing: 0;
}

.stat-card span {
    color: var(--ink);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.35;
}

.reveal,
.stat-card,
.feature-card,
.service-preview-card,
.instagram-panel,
.instagram-wide-panel,
.info-strip-item {
    opacity: 0;
    transform: translateY(18px) scale(0.99);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.info-strip-item:nth-child(2),
.feature-card:nth-child(2),
.service-preview-card:nth-child(2),
.stat-card:nth-child(2) {
    transition-delay: 0.1s;
}

.info-strip-item:nth-child(3),
.feature-card:nth-child(3),
.service-preview-card:nth-child(3),
.stat-card:nth-child(3) {
    transition-delay: 0.2s;
}

.service-preview-card:nth-child(4) {
    transition-delay: 0.05s;
}

.service-preview-card:nth-child(5) {
    transition-delay: 0.15s;
}

.service-preview-card:nth-child(6) {
    transition-delay: 0.25s;
}

.is-visible,
.stat-card.is-visible,
.is-visible .stat-card,
.feature-card.is-visible,
.service-preview-card.is-visible,
.instagram-panel.is-visible,
.instagram-wide-panel.is-visible,
.info-strip-item.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.button.primary {
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(225, 6, 19, 0.2);
}

.button.primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(225, 6, 19, 0.32);
}

.button.secondary {
    background: #ffffff;
    border-color: var(--line);
    color: var(--ink);
}

.button.secondary:hover {
    border-color: var(--accent);
    color: var(--accent-dark);
}

.section {
    padding: 64px 0;
}

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

.split-heading {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

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

.feature-card,
.panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(11, 11, 13, 0.06);
}

.feature-card {
    padding: 24px;
}

.instagram-wide-section {
    width: 100%;
    padding: 64px max(32px, calc((100vw - 1120px) / 2)) 72px;
    background:
        linear-gradient(180deg, rgba(11, 11, 13, 0.98), rgba(23, 23, 25, 0.98)),
        radial-gradient(circle at 82% 4%, rgba(225, 6, 19, 0.24), transparent 38%);
    color: #ffffff;
}

.instagram-wide-panel {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.instagram-wide-section .section-heading {
    margin-bottom: 24px;
}

.instagram-wide-section h2 {
    color: #ffffff;
}

.instagram-wide-section .section-heading p,
.instagram-wide-panel p {
    color: #c9c9cf;
}

.instagram-wide-section .eyebrow {
    color: #ff4d57;
}

.home-services-section {
    padding-top: 56px;
}

.home-services-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.75fr);
    gap: 20px;
    align-items: stretch;
}

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

.service-preview-card,
.instagram-panel {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: 0 12px 32px rgba(11, 11, 13, 0.06);
}

.service-preview-card {
    min-height: 176px;
    display: grid;
    align-content: start;
    gap: 8px;
    padding: 20px;
    transition: opacity 0.65s ease, transform 0.65s ease, box-shadow 0.22s ease;
}

.service-preview-card:hover {
    transform: translateY(-3px) scale(1);
    box-shadow: 0 20px 44px rgba(11, 11, 13, 0.11);
}

.service-preview-card span {
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 900;
}

.service-preview-card h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.service-preview-card p {
    margin-bottom: 4px;
}

.service-preview-card strong {
    width: fit-content;
    margin-top: auto;
    padding: 5px 10px;
    border: 1px solid rgba(225, 6, 19, 0.26);
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-dark);
    font-size: 0.82rem;
}

.instagram-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    background:
        linear-gradient(180deg, rgba(16, 16, 18, 0.97), rgba(23, 23, 25, 0.97)),
        radial-gradient(circle at 90% 8%, rgba(225, 6, 19, 0.22), transparent 36%);
    color: #ffffff;
}

.instagram-panel h2 {
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 1.45rem;
}

.instagram-panel p {
    color: #c9c9cf;
}

.instagram-frame {
    min-height: 360px;
    overflow: hidden;
    border: 1px solid #2f2f34;
    border-radius: 8px;
    background: var(--black);
}

.instagram-frame iframe {
    width: 100%;
    height: 360px;
    display: block;
    border: 0;
    background: #ffffff;
}

.instagram-frame-wide {
    min-height: 560px;
}

.instagram-frame-wide iframe {
    height: 560px;
}

.services-carousel-section {
    padding-top: 56px;
}

.carousel-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.carousel-control {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: var(--black);
    color: #ffffff;
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(159, 0, 11, 0.22);
    z-index: 2;
}

.carousel-control:hover {
    background: var(--accent);
    color: #ffffff;
    transform: translateY(-1px);
}

.carousel-shell {
    position: relative;
    padding: 0 58px;
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    transform: translateY(-50%) scale(1.04);
}

.services-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 32px) / 3);
    gap: 16px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 2px;
    scroll-snap-type: inline mandatory;
    padding: 2px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.services-carousel::-webkit-scrollbar {
    display: none;
}

.services-carousel .service-preview-card {
    scroll-snap-align: start;
}

.carousel-indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 26px;
    margin-top: 16px;
}

.carousel-indicators button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #c8c8cc;
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.carousel-indicators button.active {
    width: 28px;
    background: var(--accent);
}

.page-hero {
    padding: 64px 0 36px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 8px;
}

.legal-hero {
    padding-top: 76px;
}

.about-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.about-page-hero {
    padding: 104px 0 92px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(242, 242, 243, 0.96)),
        radial-gradient(circle at 86% 14%, rgba(225, 6, 19, 0.12), transparent 34%);
    border-bottom: 1px solid var(--line);
}

.about-hero-inner {
    max-width: 900px;
}

.about-hero-inner h1 {
    max-width: 860px;
    margin-bottom: 22px;
    font-size: clamp(2.35rem, 5.4vw, 4.45rem);
    line-height: 0.98;
}

.about-hero-inner p:not(.eyebrow) {
    max-width: 760px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: clamp(1.04rem, 2vw, 1.24rem);
    line-height: 1.65;
}

.about-method-section {
    padding: 84px 0;
    background:
        linear-gradient(135deg, #0b0b0d 0%, #171719 58%, #220407 100%),
        radial-gradient(circle at 88% 16%, rgba(225, 6, 19, 0.28), transparent 36%);
    color: #ffffff;
    border-top: 1px solid #2f2f34;
    border-bottom: 1px solid #2f2f34;
}

.about-method-grid {
    display: grid;
    grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
}

.about-method-heading {
    padding-left: 22px;
    border-left: 4px solid var(--accent);
}

.about-method-heading h2,
.about-cta-panel h2 {
    color: #ffffff;
}

.about-method-heading h2 {
    margin-bottom: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
}

.about-method-copy {
    display: grid;
    gap: 18px;
}

.about-method-copy p {
    max-width: 720px;
    margin-bottom: 0;
    color: #d7d7dc;
    font-size: 1.08rem;
    line-height: 1.75;
}

.about-process-section,
.about-trust-section,
.about-gallery-section,
.about-cta-section {
    padding: 86px 0;
}

.about-process-section {
    background: var(--bg);
}

.about-section-heading {
    max-width: 720px;
    margin-bottom: 32px;
}

.about-section-heading h2 {
    font-size: clamp(1.85rem, 3.4vw, 2.7rem);
    line-height: 1.08;
}

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

.about-process-card {
    min-height: 238px;
    display: grid;
    align-content: start;
    gap: 13px;
    padding: 28px;
    border: 1px solid rgba(16, 16, 18, 0.1);
    border-top: 3px solid rgba(225, 6, 19, 0.74);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(11, 11, 13, 0.06);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.about-process-card:hover {
    border-color: rgba(225, 6, 19, 0.42);
    box-shadow: 0 20px 42px rgba(11, 11, 13, 0.1);
    transform: translateY(-4px);
}

.about-process-card span {
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 900;
}

.about-process-card h3 {
    margin-bottom: 0;
    color: var(--ink);
    font-size: 1.22rem;
}

.about-process-card p {
    margin-bottom: 0;
    color: var(--muted);
}

.about-trust-section {
    background:
        linear-gradient(180deg, #ffffff, #f7f7f8);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.about-trust-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
    gap: 46px;
    align-items: center;
}

.about-trust-copy h2 {
    max-width: 620px;
    font-size: clamp(1.95rem, 3.6vw, 3rem);
    line-height: 1.08;
}

.about-trust-copy p:not(.eyebrow) {
    max-width: 700px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.75;
}

.about-benefit-grid {
    display: grid;
    gap: 12px;
}

.about-benefit-grid article {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 78px;
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(11, 11, 13, 0.05);
}

.about-benefit-grid span {
    width: 12px;
    height: 12px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(225, 6, 19, 0.1);
}

.about-benefit-grid strong {
    color: var(--ink);
    font-size: 1rem;
}

.about-gallery-section {
    background: var(--bg);
}

.about-gallery {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(250px, calc((100% - 60px) / 4));
    gap: 20px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scroll-padding-inline: 2px;
    padding: 4px 2px 16px;
    scrollbar-color: rgba(225, 6, 19, 0.72) rgba(16, 16, 18, 0.12);
    scrollbar-width: thin;
}

.about-gallery::-webkit-scrollbar {
    height: 8px;
}

.about-gallery::-webkit-scrollbar-track {
    border-radius: 999px;
    background: rgba(16, 16, 18, 0.1);
}

.about-gallery::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: var(--accent);
}

.about-gallery-item {
    position: relative;
    min-height: 320px;
    margin: 0;
    padding: 0;
    appearance: none;
    overflow: hidden;
    border: 1px solid rgba(16, 16, 18, 0.12);
    border-radius: 8px;
    background: var(--black);
    color: inherit;
    cursor: zoom-in;
    font: inherit;
    scroll-snap-align: start;
    text-align: left;
    box-shadow: 0 14px 32px rgba(11, 11, 13, 0.12);
}

.about-gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    display: block;
    object-fit: cover;
    transition: transform 180ms ease;
}

.about-gallery-item::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(180deg, transparent, rgba(11, 11, 13, 0.82));
    pointer-events: none;
}

.about-gallery-item:hover img,
.about-gallery-item:focus-visible img {
    transform: scale(1.03);
}

.about-gallery-item:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 3px;
}

.about-gallery-item.is-document {
    background: #f7f7f8;
}

.about-gallery-item.is-document img {
    padding: 14px;
    object-fit: contain;
}

.about-gallery-caption {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 1;
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(225, 6, 19, 0.92);
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 900;
}

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

.gallery-lightbox[hidden] {
    display: none;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) 64px;
    gap: 14px;
    align-items: center;
    padding: 24px;
    background: rgba(11, 11, 13, 0.94);
}

.gallery-lightbox-figure {
    grid-column: 2;
    max-height: calc(100vh - 48px);
    display: grid;
    gap: 12px;
    justify-items: center;
    margin: 0;
}

.gallery-lightbox-figure img {
    max-width: 100%;
    max-height: calc(100vh - 132px);
    display: block;
    border-radius: 8px;
    background: #ffffff;
    object-fit: contain;
}

.gallery-lightbox-figure figcaption {
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 900;
    text-align: center;
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(23, 23, 25, 0.86);
    color: #ffffff;
    cursor: pointer;
    font-weight: 900;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover {
    border-color: var(--accent);
    background: var(--accent);
}

.gallery-lightbox-close:focus-visible,
.gallery-lightbox-nav:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 3px;
}

.gallery-lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    font-size: 1.6rem;
    line-height: 1;
}

.gallery-lightbox-nav {
    width: 52px;
    height: 52px;
    font-size: 2.1rem;
    line-height: 1;
}

.gallery-lightbox-nav-prev {
    grid-column: 1;
    justify-self: end;
}

.gallery-lightbox-nav-next {
    grid-column: 3;
    justify-self: start;
}

.gallery-control {
    position: static;
    transform: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(225, 6, 19, 0.3);
    background: #ffffff;
    color: var(--accent);
    box-shadow: 0 10px 24px rgba(11, 11, 13, 0.08);
}

.gallery-control:hover {
    background: var(--accent);
    color: #ffffff;
    transform: translateY(-1px);
}

.about-cta-section {
    background: var(--bg);
    padding-top: 30px;
}

.about-cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    padding: 38px;
    border: 1px solid #2f2f34;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(11, 11, 13, 0.98), rgba(23, 23, 25, 0.98)),
        radial-gradient(circle at 92% 12%, rgba(225, 6, 19, 0.28), transparent 38%);
    color: #ffffff;
    box-shadow: 0 18px 44px rgba(11, 11, 13, 0.16);
}

.about-cta-panel h2 {
    margin-bottom: 10px;
    font-size: clamp(1.8rem, 3.4vw, 2.55rem);
}

.about-cta-panel p:not(.eyebrow) {
    max-width: 700px;
    margin-bottom: 0;
    color: #d7d7dc;
    font-size: 1.04rem;
}

.about-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.about-cta-actions .button {
    min-width: 132px;
}

.about-cta-actions .button.secondary {
    border-color: rgba(255, 255, 255, 0.28);
    background: transparent;
    color: #ffffff;
}

.about-cta-actions .button.secondary:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: #ffffff;
}

.about-panel,
.legal-panel,
.story-block {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: 0 12px 32px rgba(11, 11, 13, 0.06);
}

.about-panel {
    padding: 24px;
}

.about-panel.dark {
    background:
        linear-gradient(180deg, rgba(16, 16, 18, 0.97), rgba(23, 23, 25, 0.97)),
        radial-gradient(circle at 90% 10%, rgba(225, 6, 19, 0.22), transparent 38%);
    color: #ffffff;
}

.about-panel.dark h2 {
    color: #ffffff;
}

.about-panel.dark p {
    color: #c9c9cf;
}

.story-block {
    padding: 24px;
}

.legal-section {
    display: grid;
    gap: 14px;
}

.legal-panel {
    padding: 24px;
}

.legal-panel.notice {
    border-color: rgba(225, 6, 19, 0.28);
    background: var(--accent-soft);
}

.legal-panel a {
    color: var(--accent-dark);
    font-weight: 800;
}

.page-hero.compact {
    padding-bottom: 0;
}

.page-hero h1 {
    max-width: 780px;
    color: var(--ink);
    font-size: clamp(2rem, 5vw, 3.6rem);
}

.page-hero p {
    max-width: 720px;
}

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

.service-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}

.service-row > div {
    max-width: 820px;
}

.price-badge {
    min-width: 104px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border: 1px solid rgba(225, 6, 19, 0.3);
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-dark);
    font-weight: 800;
    white-space: nowrap;
}

.service-row a {
    color: var(--accent-dark);
    font-weight: 800;
    white-space: nowrap;
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    align-items: start;
    gap: 24px;
}

.calculator-section {
    display: grid;
    gap: 18px;
}

.panel {
    padding: 24px;
}

.calculator-form-panel {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.calculator-submit-row {
    display: flex;
    justify-content: flex-end;
    padding-top: 4px;
}

.calculator-submit-row .button {
    min-width: 220px;
}

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

.form-grid.single {
    grid-template-columns: 1fr;
}

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

label {
    display: inline-block;
    margin-bottom: 6px;
    color: var(--steel);
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 10px 12px;
    background: #ffffff;
    color: var(--ink);
    font: inherit;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
.button:focus,
a:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.checkbox-field {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 18px 0;
    color: var(--muted);
    font-weight: 600;
}

.checkbox-field input {
    width: 18px;
    min-width: 18px;
    height: 18px;
    min-height: 18px;
    margin-top: 3px;
}

.errorlist,
.form-errors {
    margin: 8px 0 0;
    padding: 10px 12px;
    border-radius: 6px;
    background: var(--accent-soft);
    color: var(--accent-dark);
    list-style-position: inside;
}

.messages {
    width: min(1120px, calc(100% - 32px));
    margin: 16px auto 0;
}

.message {
    margin: 0 0 8px;
    padding: 12px 14px;
    border-radius: 6px;
    background: #ffffff;
    color: var(--steel);
    border: 1px solid rgba(225, 6, 19, 0.24);
    border-left: 4px solid var(--accent);
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 20px 0;
}

.calculator-results {
    display: grid;
    gap: 16px;
}

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

.speedometer {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 20px;
    border: 1px solid #2f2f34;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(16, 16, 18, 0.98), rgba(26, 26, 30, 0.98)),
        radial-gradient(circle at 50% 80%, rgba(225, 6, 19, 0.16), transparent 44%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 18px 38px rgba(11, 11, 13, 0.16);
}

.stage-contact-card {
    display: grid;
    gap: 12px;
    border-color: rgba(225, 6, 19, 0.28);
    background:
        linear-gradient(180deg, rgba(16, 16, 18, 0.97), rgba(23, 23, 25, 0.97)),
        radial-gradient(circle at 90% 10%, rgba(225, 6, 19, 0.24), transparent 38%);
    color: #ffffff;
}

.stage-contact-card h2 {
    margin-bottom: 0;
    color: #ffffff;
}

.stage-contact-card p {
    max-width: 680px;
    margin-bottom: 0;
    color: #d7d7dc;
}

.stage-contact-card .eyebrow {
    color: #ff4d57;
}

.stage-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.stage-contact-actions .button {
    flex: 1 1 220px;
}

.speedometer::before {
    content: "";
    position: absolute;
    inset: -40% -20% auto;
    height: 70%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
    transform: translateX(-80%) rotate(8deg);
    opacity: 0;
}

.speedometer.is-animating::before {
    animation: speedometerSweep 1.2s ease-out;
}

.speedometer-dial {
    position: relative;
    width: min(300px, 100%);
    height: 160px;
    margin: 0 auto;
    overflow: hidden;
    z-index: 1;
}

/* Hidden — replaced by SVG injected via JS */
.speedometer-arc {
    display: none;
}

.speedometer-needle {
    position: absolute;
    left: 50%;
    bottom: 20px;
    width: 10px;
    height: 108px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ffffff 0%, #ff7a82 34%, var(--accent) 100%);
    clip-path: polygon(50% 0, 74% 82%, 54% 100%, 46% 100%, 26% 82%);
    transform: translateX(-50%) rotate(-110deg);
    transform-origin: 50% calc(100% - 8px);
    box-shadow: 0 0 16px rgba(225, 6, 19, 0.44);
    z-index: 5;
}

.speedometer-needle::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    width: 3px;
    height: 70px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    transform: translateX(-50%);
}

.speedometer-center {
    position: absolute;
    left: 50%;
    bottom: 12px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--accent);
    border: 5px solid #ffffff;
    transform: translateX(-50%);
    box-shadow: 0 0 14px rgba(225, 6, 19, 0.5), 0 3px 12px rgba(11, 11, 13, 0.4);
    z-index: 6;
}

.speedometer.is-ready .speedometer-center {
    animation: speedometerPulse 1.1s ease-out;
}

.speedometer-value {
    position: absolute;
    left: 50%;
    bottom: 44px;
    display: flex;
    align-items: baseline;
    gap: 6px;
    transform: translateX(-50%);
    z-index: 6;
    white-space: nowrap;
}

.speedometer-value span {
    color: #ffffff;
    font-size: 2.1rem;
    font-weight: 800;
    text-shadow: 0 0 16px rgba(225, 6, 19, 0.38);
}

.speedometer-value small {
    color: #c9c9cf;
    font-weight: 800;
}

.gauge-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.gauge-summary span {
    min-width: 0;
    padding: 10px 12px;
    border: 1px solid #34343a;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: #b8b8bd;
    font-size: 0.82rem;
    font-weight: 800;
    text-align: center;
}

.gauge-summary span:last-child {
    border-color: rgba(225, 6, 19, 0.22);
    background: rgba(225, 6, 19, 0.06);
}

.gauge-summary strong {
    display: block;
    margin-top: 2px;
    color: #ffffff;
    font-size: 1.12rem;
    line-height: 1.1;
}

.gauge-summary span:last-child strong {
    color: #ff4d57;
}

.speedometer-labels {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: #c9c9cf;
    font-size: 0.9rem;
    font-weight: 700;
}

@keyframes speedometerSweep {
    0% {
        opacity: 0;
        transform: translateX(-80%) rotate(8deg);
    }
    35% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(80%) rotate(8deg);
    }
}

@keyframes speedometerPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(225, 6, 19, 0.46), 0 3px 12px rgba(11, 11, 13, 0.4);
    }
    100% {
        box-shadow: 0 0 0 26px rgba(225, 6, 19, 0), 0 3px 12px rgba(11, 11, 13, 0.4);
    }
}

.metric-grid div {
    padding: 16px;
    border-radius: 8px;
    background: var(--surface-muted);
    border: 1px solid var(--line);
}

.metric-grid span {
    display: block;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 700;
}

.metric-grid strong {
    display: block;
    margin-top: 4px;
    color: var(--ink);
    font-size: 1.35rem;
}

.disclaimer {
    padding-top: 16px;
    border-top: 1px solid var(--line);
    font-size: 0.95rem;
}

.discount-dialog {
    width: min(560px, calc(100% - 32px));
    max-height: calc(100vh - 48px);
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--ink);
    box-shadow: 0 24px 80px rgba(11, 11, 13, 0.34);
}

.discount-dialog::backdrop {
    background: rgba(11, 11, 13, 0.68);
}

.discount-modal {
    position: relative;
    padding: 28px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #ffffff;
    color: var(--muted);
    font-weight: 800;
    cursor: pointer;
}

.modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.contact-hero {
    width: 100%;
    padding: 76px max(32px, calc((100vw - 1120px) / 2)) 82px;
    background:
        linear-gradient(90deg, rgba(11, 11, 13, 0.96), rgba(23, 23, 25, 0.9), rgba(159, 0, 11, 0.26)),
        url("hero-tuning-workshop.png") center / cover no-repeat;
    color: #ffffff;
}

.contact-hero-content {
    width: min(760px, 100%);
}

.contact-hero h1 {
    color: #ffffff;
}

.contact-hero p {
    max-width: 640px;
    color: rgba(255, 255, 255, 0.84);
}

.contact-hero .eyebrow {
    color: #ff4d57;
}

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

.contact-section {
    padding-bottom: 34px;
}

.contact-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.contact-info-panel,
.contact-form-panel,
.contact-map-panel,
.faq-item {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: 0 12px 32px rgba(11, 11, 13, 0.06);
}

.contact-info-panel {
    padding: 28px;
    background:
        linear-gradient(180deg, rgba(16, 16, 18, 0.97), rgba(23, 23, 25, 0.97)),
        radial-gradient(circle at 90% 10%, rgba(225, 6, 19, 0.22), transparent 38%);
    color: #ffffff;
}

.contact-info-panel h2 {
    color: #ffffff;
}

.contact-info-panel p {
    color: #c9c9cf;
}

.contact-methods {
    display: grid;
    gap: 10px;
    margin-top: 24px;
}

.contact-methods a {
    display: grid;
    gap: 2px;
    padding: 14px;
    border: 1px solid #303036;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    text-decoration: none;
}

.contact-methods a:hover {
    border-color: rgba(225, 6, 19, 0.8);
    background: rgba(225, 6, 19, 0.14);
}

.contact-methods span {
    color: #b8b8bd;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.contact-methods strong {
    color: #ffffff;
    font-size: 1.05rem;
}

.contact-form-panel {
    padding: 28px;
}

.contact-cta-panel {
    display: grid;
    align-content: center;
    gap: 14px;
    padding: 28px;
}

.contact-cta-panel p {
    color: var(--muted);
}

.contact-cta-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 8px;
}

.contact-icon-action {
    min-height: 132px;
    display: grid;
    place-items: center;
    gap: 10px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-muted);
    color: var(--ink);
    text-align: center;
    text-decoration: none;
    font-weight: 900;
}

.contact-icon-action:hover {
    border-color: var(--accent);
    color: var(--accent-dark);
    transform: translateY(-1px);
}

.contact-icon-action svg {
    width: 38px;
    height: 38px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.contact-icon-action[href*="instagram"] svg rect,
.contact-icon-action[href*="instagram"] svg circle {
    stroke-width: 1.7;
}

.contact-map-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    align-items: center;
    margin-top: 20px;
    padding: 20px;
}

.contact-map-panel iframe {
    width: 100%;
    min-height: 360px;
    border: 0;
    border-radius: 8px;
    background: var(--surface-muted);
}

.faq-section {
    padding-top: 34px;
}

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

.faq-item {
    padding: 0 20px;
    overflow: hidden;
}

.faq-item summary {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--ink);
    font-weight: 900;
    cursor: pointer;
}

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

.faq-item[open] summary::after {
    content: "-";
}

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

.contact-copy {
    padding: 8px 0;
}

.contact-location {
    margin: 24px 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
}

.contact-location p {
    margin-bottom: 14px;
}

.site-footer {
    padding: 46px 0 28px;
    background: var(--black);
    border-top: 1px solid #2f2f34;
    color: #ffffff;
}

.footer-grid {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.75fr 1fr;
    gap: 48px;
    align-items: start;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
}

.footer-brand strong {
    display: block;
}

.site-footer p {
    margin: 8px 0 0;
    color: #c9c9cf;
    line-height: 1.7;
}

.footer-links {
    display: grid;
    gap: 8px;
}

.footer-links h2,
.footer-cta h2,
.footer-newsletter label {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 800;
}

.footer-links a,
.site-footer a {
    color: #ff4d57;
    font-weight: 800;
    text-decoration: none;
}

.footer-links a {
    width: fit-content;
    padding: 4px 0;
    color: #d7d7dc;
    font-size: 0.96rem;
    font-weight: 700;
    letter-spacing: 0;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-cta {
    max-width: 360px;
    justify-self: end;
}

.footer-cta p {
    margin-bottom: 16px;
    line-height: 1.65;
}

.footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-cta .button {
    min-height: 42px;
    padding: 10px 16px;
}

.footer-cta .button.secondary {
    border-color: #3a3a40;
    background: var(--black-soft);
    color: #ffffff;
}

.footer-cta .button.secondary:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: #ffffff;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #3a3a40;
    border-radius: 50%;
    background: var(--black-soft);
    color: #ffffff;
}

.social-links a:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: #ffffff;
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.social-links a:first-child svg path {
    fill: currentColor;
    stroke: none;
}

.footer-newsletter p {
    margin-bottom: 12px;
}

.newsletter-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 34px auto 0;
    padding-top: 20px;
    border-top: 1px solid #2f2f34;
    color: #9f9fa6;
    font-size: 0.88rem;
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 1080px) {
    .services-carousel {
        grid-auto-columns: calc((100% - 16px) / 2);
    }

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

    .about-gallery {
        grid-auto-columns: minmax(260px, calc((100% - 20px) / 2));
    }

    .contact-layout,
    .contact-map-panel,
    .two-column {
        grid-template-columns: 1fr;
    }

    .result-panel {
        order: -1;
    }
}

@media (max-width: 820px) {
    .nav {
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 16px 0;
    }

    .nav-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding-top: 10px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        justify-content: center;
        background: var(--black-soft);
        border: 1px solid #2f2f34;
    }

    .hero {
        min-height: 520px;
        padding-top: 56px;
        padding-bottom: 64px;
    }

    .split-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .instagram-wide-section {
        padding: 52px 16px 56px;
    }

    .contact-hero {
        padding: 58px 16px 64px;
    }

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

    .contact-info-panel,
    .contact-form-panel,
    .contact-map-panel {
        padding: 20px;
    }

    .instagram-frame-wide,
    .instagram-frame-wide iframe {
        min-height: 460px;
        height: 460px;
    }

    .carousel-actions {
        justify-content: flex-start;
    }

    .services-carousel {
        grid-auto-columns: 100%;
    }

    .carousel-shell {
        padding: 0 46px;
    }

    .carousel-control {
        width: 40px;
        height: 40px;
        font-size: 1.45rem;
    }

    .calculator-submit-row {
        justify-content: stretch;
    }

    .calculator-submit-row .button {
        width: 100%;
        min-width: 0;
    }

    .feature-grid,
    .about-process-grid,
    .about-cta-panel,
    .home-services-layout,
    .service-preview-grid,
    .info-strip,
    .stats-grid,
    .two-column,
    .form-grid,
    .metric-grid,
    .performance-gauges,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .info-strip {
        padding: 0;
    }

    .info-strip-item {
        padding: 18px 24px;
    }

    .info-strip-item + .info-strip-item {
        border-top: 1px solid rgba(255, 255, 255, 0.22);
        border-left: 0;
    }

    .service-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .about-page-hero {
        padding: 72px 0 68px;
    }

    .about-method-section,
    .about-process-section,
    .about-trust-section,
    .about-gallery-section,
    .about-cta-section {
        padding: 64px 0;
    }

    .about-method-grid,
    .about-trust-grid {
        gap: 30px;
    }

    .about-cta-panel {
        padding: 28px;
    }

    .about-gallery {
        grid-auto-columns: minmax(260px, 78%);
    }

    .about-cta-actions {
        justify-content: flex-start;
    }

    .newsletter-row {
        grid-template-columns: 1fr;
    }

    .footer-cta {
        max-width: none;
        justify-self: stretch;
    }

    .footer-cta-actions .button {
        flex: 1 1 140px;
        justify-content: center;
    }
}

@media (max-width: 560px) {
    .brand img {
        width: 142px;
        height: 74px;
    }

    .nav {
        min-height: 84px;
    }

    .nav-links a {
        min-height: 44px;
        padding: 0 10px;
        font-size: 0.92rem;
    }

    .hero,
    .contact-hero {
        padding-left: 16px;
        padding-right: 16px;
    }

    .stats-grid,
    .metric-grid {
        gap: 10px;
    }

    .performance-gauges {
        gap: 12px;
    }

    .stat-card,
    .service-preview-card {
        padding: 18px;
    }

    .speedometer {
        padding: 16px;
    }

    .speedometer-dial {
        height: 146px;
    }

    .speedometer-value span {
        font-size: 1.75rem;
    }

    .stage-contact-actions .button {
        flex-basis: 100%;
    }

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

    .carousel-shell {
        padding: 0 42px;
    }

    .partner-item {
        min-width: 148px;
        height: 62px;
        font-size: 0.78rem;
    }

    .partner-item img {
        max-width: 124px;
        max-height: 44px;
    }

    .about-gallery {
        grid-auto-columns: 88%;
    }

    .about-gallery-item,
    .about-gallery-item img {
        min-height: 240px;
    }

    .about-container {
        width: min(100% - 32px, 1180px);
    }

    .about-hero-inner h1 {
        font-size: clamp(2.05rem, 12vw, 3rem);
    }

    .about-process-card,
    .about-cta-panel {
        padding: 22px;
    }

    .about-cta-actions .button {
        width: 100%;
    }

    .gallery-lightbox {
        grid-template-columns: 1fr;
        padding: 62px 14px 18px;
    }

    .gallery-lightbox-figure {
        grid-column: 1;
        max-height: calc(100vh - 80px);
    }

    .gallery-lightbox-figure img {
        max-height: calc(100vh - 152px);
    }

    .gallery-lightbox-close {
        top: 12px;
        right: 12px;
    }

    .gallery-lightbox-nav {
        position: absolute;
        top: 50%;
        width: 42px;
        height: 42px;
        font-size: 1.8rem;
        transform: translateY(-50%);
    }

    .gallery-lightbox-nav-prev {
        left: 10px;
        grid-column: auto;
        justify-self: auto;
    }

    .gallery-lightbox-nav-next {
        right: 10px;
        grid-column: auto;
        justify-self: auto;
    }

    .instagram-frame-wide,
    .instagram-frame-wide iframe {
        min-height: 380px;
        height: 380px;
    }
}
