:root {
    --text: #202020;
    --muted: #707070;
    --line: #e5e5e5;
    --soft: #f6f6f6;
    --dark: #111;
    --accent: #b08a45;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--text);
    background: #fff;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
    letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid var(--line);
}
.header-inner {
    width: min(1180px, calc(100% - 32px));
    min-height: 96px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 112px;
    gap: 14px;
    align-items: center;
}
.brand { display: inline-flex; align-items: center; color: var(--dark); }
.brand-logo {
    display: block;
    width: 158px;
    height: auto;
}
.brand-race {
    display: grid;
    gap: 3px;
    width: 176px;
    transform: skewX(-7deg);
}
.race-number {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 7px;
    height: 27px;
}
.race-number i {
    display: block;
    height: 15px;
    background: currentColor;
    clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}
.race-number i:last-child {
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}
.race-number b {
    display: block;
    font-family: Impact, "Arial Black", sans-serif;
    font-size: 40px;
    line-height: .76;
    letter-spacing: 0;
}
.race-word {
    display: block;
    font-family: Impact, "Arial Black", sans-serif;
    font-size: 34px;
    line-height: .82;
    letter-spacing: 1px;
    transform: scaleX(1.16);
    transform-origin: left center;
}
.site-nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 28px;
    font-size: 12px;
    font-weight: 700;
}
.site-nav a:hover { color: var(--accent); }
.header-tools {
    display: grid;
    grid-template-columns: repeat(3, 34px);
    gap: 10px;
}
.icon-btn {
    display: grid;
    place-items: center;
    height: 34px;
    border: 0;
    position: relative;
    background: transparent;
}
.icon-btn:hover {
    opacity: .72;
}
.icon-btn img {
    display: block;
    width: 25px;
    height: 25px;
    object-fit: contain;
}
.menu-button {
    display: grid;
    grid-template-columns: 1fr 18px;
    align-items: center;
    gap: 10px;
    height: 54px;
    border: 1px solid var(--dark);
    background: var(--dark);
    color: #fff;
    padding: 0 16px;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
}
.menu-button i,
.menu-button i::before,
.menu-button i::after {
    display: block;
    height: 2px;
    background: #fff;
    content: "";
}
.menu-button i {
    position: relative;
}
.menu-button i::before,
.menu-button i::after {
    position: absolute;
    left: 0;
    width: 18px;
}
.menu-button i::before { top: -6px; }
.menu-button i::after { top: 6px; }
.drawer-nav {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    z-index: 30;
    border-top: 1px solid var(--line);
    background: #111;
    color: #fff;
    box-shadow: 0 18px 42px rgba(0,0,0,.18);
}
.drawer-nav.is-open { display: block; }
.drawer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 22px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,.18);
}
.drawer-inner a {
    min-height: 54px;
    display: flex;
    align-items: center;
    padding: 0 18px;
    background: #161616;
    font-size: 13px;
    font-weight: 800;
}
.drawer-inner a:hover { background: var(--accent); }

.hero {
    width: 100%;
    margin: 0;
}
.hero-slider {
    position: relative;
    overflow: hidden;
    background: #050505;
}
.hero-track {
    position: relative;
    width: 100%;
    height: 500px;
}
.hero-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transition: opacity 900ms ease;
}
.hero-slide.is-active {
    opacity: 1;
    z-index: 1;
}
.hero-slide img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    image-rendering: auto;
    transform: translateZ(0);
}
.hero-arrow {
    position: absolute;
    z-index: 4;
    top: 50%;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255,255,255,.5);
    background: rgba(0,0,0,.42);
    transform: translateY(-50%);
    cursor: pointer;
}
.hero-arrow::before {
    content: "";
    position: absolute;
    inset: 17px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
}
.hero-prev { left: 28px; }
.hero-next { right: 28px; }
.hero-prev::before { transform: rotate(-45deg); }
.hero-next::before { transform: rotate(135deg); }
.hero-arrow:hover {
    background: rgba(0,0,0,.72);
    border-color: #fff;
}
.hero-dots {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 24px;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}
.hero-dots button {
    width: 34px;
    height: 3px;
    border: 0;
    padding: 0;
    background: rgba(255,255,255,.38);
    cursor: pointer;
}
.hero-dots button.is-active {
    background: var(--accent);
}
.pickup-links {
    width: min(900px, calc(100% - 32px));
    margin: 34px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.pickup-links a,
.detail-link,
.contact-actions a {
    display: grid;
    place-items: center;
    min-height: 48px;
    border: 1px solid var(--dark);
    background: var(--dark);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}
.pickup-links a:hover,
.detail-link:hover,
.contact-actions a:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.section {
    width: min(1040px, calc(100% - 32px));
    margin: 0 auto;
    padding: clamp(70px, 10vw, 118px) 0;
}
.section-title {
    text-align: center;
    margin-bottom: 36px;
}
.section-title h2 {
    margin: 0;
    font-size: clamp(36px, 6vw, 74px);
    line-height: 1;
    font-weight: 900;
}
.section-title span {
    display: inline-block;
    margin-top: 10px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
}
.section-grid {
    display: grid;
    grid-template-columns: minmax(320px, .95fr) minmax(0, 1fr);
    gap: clamp(34px, 6vw, 70px);
    align-items: center;
}
.about-image {
    margin: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
h3 {
    margin: 0 0 20px;
    font-size: clamp(22px, 3vw, 34px);
}
.body-copy,
.lead {
    color: var(--muted);
    font-size: 15px;
    line-height: 2;
}
.detail-link {
    width: 190px;
    margin-top: 28px;
}
.price { border-top: 1px solid var(--line); }
.price .lead { text-align: center; margin: -10px auto 34px; max-width: 680px; }
.price-list { border-top: 1px solid var(--line); }
.price-row {
    display: grid;
    grid-template-columns: 1fr 170px;
    gap: 24px;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid var(--line);
}
.price-row h3 { margin: 0 0 8px; font-size: 23px; }
.price-row p { margin: 0; color: var(--muted); line-height: 1.7; }
.price-row strong {
    text-align: right;
    font-size: 22px;
    color: var(--accent);
}
.size-guide {
    border-top: 1px solid var(--line);
}
.size-guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.size-guide-grid article {
    position: relative;
    overflow: hidden;
    min-height: 238px;
    padding: clamp(24px, 4vw, 34px);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 18px 44px rgba(0,0,0,.06);
}
.size-guide-grid article::after {
    content: "";
    position: absolute;
    right: -22px;
    top: -22px;
    width: 94px;
    height: 94px;
    border: 1px solid rgba(183,138,54,.35);
    transform: rotate(45deg);
}
.size-guide-grid span {
    display: flex;
    align-items: flex-end;
    gap: 9px;
    margin-bottom: 20px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0;
}
.size-guide-grid span em {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    background: var(--dark);
    color: #fff;
    font-style: normal;
    font-size: 38px;
    line-height: 1;
    font-family: Impact, "Arial Black", sans-serif;
    box-shadow: inset 0 -5px 0 var(--accent);
}
.size-guide-grid h3 {
    margin: 0 0 16px;
    font-size: clamp(20px, 2.6vw, 26px);
}
.size-guide-grid p {
    margin: 0 0 12px;
    color: var(--text);
    font-weight: 800;
}
.size-guide-grid b {
    color: var(--muted);
    line-height: 1.8;
}
.size-guide-note {
    margin-top: 24px;
    padding: 22px 26px;
    background: #111;
    color: rgba(255,255,255,.78);
}
.size-guide-note p {
    margin: 0 0 8px;
    line-height: 1.8;
}
.size-guide-note p:last-child {
    margin-bottom: 0;
}

.access {
    width: 100%;
    background: var(--soft);
    padding-left: 0;
    padding-right: 0;
}
.access .section-title {
    width: min(1040px, calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
}
.access-panel {
    background: transparent;
    border: 0;
    padding: 0;
}
.access-map-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
}
.access-info {
    width: min(1040px, calc(100% - 32px));
    margin: 0 auto;
    padding: clamp(18px, 4vw, 34px) 0 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: center;
    background: transparent;
    border: 0;
    text-align: center;
}
.access-shop-main {
    padding-right: 0;
    border-right: 0;
}
.access-shop-name {
    padding: 0;
    border: 0;
    font-size: clamp(24px, 3.6vw, 36px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: .08em;
}
.access-shop-tel {
    display: inline-block;
    margin-top: 12px;
    color: var(--accent);
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 900;
    letter-spacing: .06em;
}
.access-shop-tel:hover {
    color: #111;
}
.access-simple-grid {
    display: grid;
    grid-template-columns: 1.4fr .9fr .9fr;
    gap: 1px;
    background: var(--line);
    text-align: left;
}
.access-simple-grid p {
    margin: 0;
    padding: 18px 20px;
    background: #fff;
    color: var(--text);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.75;
}
.access-simple-grid span {
    display: block;
    margin-bottom: 8px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
}
.access dl { margin: 0; }
.access dl div {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 22px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}
.access dl div:last-child { border-bottom: 0; }
.access dt {
    font-size: 14px;
    color: var(--accent);
    font-weight: 900;
    line-height: 1.8;
}
.access dd {
    margin: 0;
    color: var(--text);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.85;
}
.access dd span {
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}
.access-map {
    width: 100%;
    min-height: 0;
    height: 430px;
    aspect-ratio: auto;
    background: #ddd;
    overflow: hidden;
}
.access-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 430px;
    border: 0;
    filter: grayscale(.08) contrast(1.02);
}
.map-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    min-height: 48px;
    padding: 0 22px;
    background: #111;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
}
.map-link:hover { background: var(--accent); color: #111; }
.space .lead { text-align: center; margin: -8px auto 30px; }
.space-slider {
    width: min(1080px, calc(100% - 32px));
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background: transparent;
}
.space-track {
    display: flex;
    gap: 18px;
    align-items: stretch;
    width: 100%;
    transition: transform .45s ease;
    will-change: transform;
}
.space-slide {
    flex: 0 0 calc((100% - 36px) / 3);
    margin: 0;
    aspect-ratio: 1279 / 1706;
    background: #111;
    overflow: hidden;
}
.space-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.space-arrow {
    position: absolute;
    top: 46%;
    z-index: 2;
    width: 54px;
    height: 54px;
    border: 0;
    background: rgba(255,255,255,.94);
    cursor: pointer;
    transform: translateY(-50%);
}
.space-arrow::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-top: 2px solid #111;
    border-left: 2px solid #111;
}
.space-prev { left: 18px; }
.space-next { right: 18px; }
.space-prev::before { transform: rotate(-45deg); }
.space-next::before { transform: rotate(135deg); }
.space-dots {
    position: static;
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
    transform: none;
}
.space-dots button {
    width: 34px;
    height: 4px;
    border: 0;
    background: #d6d6d6;
    cursor: pointer;
}
.space-dots button.is-active {
    background: var(--accent);
}
.contact {
    padding: clamp(70px, 10vw, 118px) 16px;
    background: #191919;
    color: #fff;
}
.contact-inner {
    width: min(760px, 100%);
    margin: 0 auto;
    text-align: center;
}
.contact p {
    color: rgba(255,255,255,.72);
    line-height: 2;
}
.contact-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}
.contact-actions a {
    width: 150px;
    background: #fff;
    border-color: #fff;
    color: #111;
}
.site-footer {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 42px 0 30px;
    display: grid;
    grid-template-columns: 220px 1fr auto;
    gap: 28px;
    align-items: start;
    color: var(--muted);
    font-size: 13px;
    border-top: 1px solid var(--line);
}
.footer-brand {
    color: var(--text);
    font-family: Impact, "Arial Black", sans-serif;
    font-size: 28px;
    line-height: 1;
    letter-spacing: 1px;
}
.footer-info {
    margin: 0;
    display: grid;
    gap: 9px;
}
.footer-info div {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 14px;
}
.footer-info dt {
    color: var(--text);
    font-weight: 800;
}
.footer-info dd {
    margin: 0;
}
.site-footer small {
    white-space: nowrap;
}

.page {
    background: #fff;
}
.page-hero {
    width: min(1040px, calc(100% - 32px));
    margin: 0 auto;
    padding: clamp(62px, 10vw, 120px) 0 46px;
    text-align: center;
    border-bottom: 1px solid var(--line);
}
.page-hero h1 {
    margin: 0;
    font-size: clamp(44px, 8vw, 96px);
    line-height: 1;
    font-weight: 900;
}
.page-hero p {
    margin: 12px 0 0;
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
}
.page-block {
    width: min(1040px, calc(100% - 32px));
    margin: 0 auto;
    padding: clamp(54px, 8vw, 92px) 0;
}
.two-col {
    display: grid;
    grid-template-columns: minmax(320px, .9fr) minmax(0, 1fr);
    gap: clamp(32px, 6vw, 70px);
    align-items: center;
}
.two-col figure {
    margin: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.two-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.feature-grid article {
    border: 1px solid var(--line);
    padding: 28px;
    background: #fff;
}
.feature-grid b {
    color: var(--accent);
    font-size: 13px;
}
.feature-grid h3 {
    margin-top: 12px;
}
.feature-grid p {
    color: var(--muted);
    line-height: 1.9;
}
.page-price {
    margin-top: 34px;
}
.contact-page {
    text-align: center;
}
.contact-page p {
    color: var(--muted);
    line-height: 2;
}
.menu-page {
    background: #f7f7f7;
}
.menu-hero {
    background: #fff;
}
.menu-lead,
.size-guide,
.price-menu-block,
.menu-notice {
    width: min(1040px, calc(100% - 32px));
    margin: 0 auto;
}
.menu-lead {
    padding: 54px 0 34px;
    text-align: center;
}
.menu-lead h2,
.size-guide h2,
.menu-notice h2 {
    margin: 0 0 16px;
    font-size: clamp(24px, 4vw, 38px);
}
.menu-lead p,
.menu-notice p {
    margin: 0;
    color: var(--muted);
    line-height: 2;
}
.size-guide {
    padding: 28px 0 64px;
}
.size-guide h2 {
    text-align: center;
}
.size-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border: 1px solid var(--line);
    background: #fff;
}
.size-grid article {
    min-height: 86px;
    display: grid;
    place-items: center;
    gap: 4px;
    border-right: 1px solid var(--line);
}
.size-grid article:last-child {
    border-right: 0;
}
.size-grid b {
    font-size: 22px;
}
.size-grid span {
    color: var(--muted);
    font-size: 12px;
}
.price-menu-block {
    padding-bottom: 46px;
}
.price-heading {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 18px;
    align-items: center;
    padding: 22px 26px;
    background: #111;
    color: #fff;
}
.price-heading span {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,.5);
    color: var(--accent);
    font-weight: 900;
}
.price-heading h2 {
    margin: 0;
    font-size: clamp(24px, 4vw, 40px);
}
.price-heading p {
    margin: 6px 0 0;
    color: rgba(255,255,255,.62);
    font-size: 12px;
    font-weight: 800;
}
.menu-card {
    padding: clamp(22px, 4vw, 38px);
    background: #fff;
    border: 1px solid var(--line);
    border-top: 0;
}
.menu-card-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: baseline;
    margin-bottom: 20px;
}
.menu-card-head h3 {
    margin: 0;
}
.menu-card-head p {
    margin: 0;
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
}
.price-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    border: 1px solid var(--line);
}
.price-table th,
.price-table td {
    padding: 18px 10px;
    border-right: 1px solid var(--line);
    text-align: center;
}
.price-table th:last-child,
.price-table td:last-child {
    border-right: 0;
}
.price-table th {
    background: #f0f0f0;
    font-size: 13px;
}
.price-table td {
    font-weight: 800;
}
.note {
    margin: 18px 0 0;
    color: var(--muted);
    line-height: 1.9;
}
.menu-notice {
    padding: 18px 0 92px;
}
.about-hero {
    background: #fff;
}
.page:has(.about-hero) {
    background: #f6f6f6;
}
.story-intro,
.story-section,
.method-section,
.service-scope,
.story-final {
    width: min(1040px, calc(100% - 32px));
    margin: 0 auto;
}
.story-intro {
    padding: clamp(54px, 8vw, 90px) 0 36px;
    text-align: center;
}
.story-intro p {
    margin: 0 0 16px;
    color: var(--accent);
    font-weight: 800;
}
.story-intro h2 {
    margin: 0;
    font-size: clamp(28px, 5vw, 54px);
    line-height: 1.35;
}
.story-visual,
.story-image-grid {
    width: min(1040px, calc(100% - 32px));
    margin: 0 auto;
}
.story-visual-wide {
    padding-bottom: clamp(42px, 7vw, 76px);
}
.story-visual img,
.story-image-grid img,
.method-layout img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.story-visual-wide img {
    aspect-ratio: 1942 / 809;
}
.story-section {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: clamp(24px, 5vw, 64px);
    padding: clamp(34px, 5vw, 58px);
    border: 1px solid var(--line);
    background: #fff;
}
.story-section + .story-quote,
.story-section + .story-image-grid {
    margin-top: clamp(36px, 6vw, 64px);
}
.story-number {
    color: var(--accent);
    font-family: Impact, "Arial Black", sans-serif;
    font-size: clamp(46px, 8vw, 82px);
    line-height: 1;
}
.story-body h2,
.service-scope h2 {
    margin: 0 0 22px;
    font-size: clamp(26px, 4vw, 42px);
}
.story-body p,
.method-section p,
.service-scope p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 15px;
    line-height: 2.15;
}
.story-quote {
    padding: clamp(54px, 8vw, 90px) 16px;
    background: #111;
    color: #fff;
    text-align: center;
}
.story-quote p {
    margin: 0;
    font-size: clamp(25px, 5vw, 52px);
    line-height: 1.45;
    font-weight: 900;
}
.method-section {
    padding: clamp(44px, 7vw, 74px);
    background: #fff;
    border: 1px solid var(--line);
}
.story-image-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 18px;
    padding: 0 0 clamp(52px, 8vw, 92px);
}
.story-image-grid-first {
    padding-bottom: clamp(42px, 7vw, 76px);
}
.story-image-grid figure {
    margin: 0;
    overflow: hidden;
}
.story-image-grid figure:first-child {
    grid-row: span 2;
    aspect-ratio: 4 / 5;
}
.story-image-grid figure:nth-child(2),
.story-image-grid figure:nth-child(3) {
    aspect-ratio: 4 / 3;
}
.story-image-grid figure:nth-child(2) img {
    object-position: center center;
}
.story-image-grid figure:nth-child(3) img {
    object-position: center center;
}
.method-layout {
    display: grid;
    grid-template-columns: 1fr minmax(280px, .85fr);
    gap: clamp(28px, 5vw, 58px);
    align-items: center;
}
.method-layout figure {
    margin: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.brand-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    margin-top: 34px;
    background: var(--line);
    border: 1px solid var(--line);
}
.brand-list article {
    padding: 24px;
    background: #fff;
}
.brand-list span {
    display: block;
    margin-bottom: 9px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
}
.brand-list b {
    font-size: 18px;
    line-height: 1.6;
}
.service-scope {
    padding: clamp(42px, 7vw, 70px);
    border: 1px solid var(--line);
    background: #fff;
}
.story-final {
    padding: clamp(62px, 10vw, 110px) 16px;
    text-align: center;
    background: #fff;
    border-top: 1px solid var(--line);
}
.story-final p {
    margin: 0 0 28px;
    color: var(--muted);
    line-height: 2;
}
.story-final h2 {
    margin: 0;
    font-size: clamp(26px, 5vw, 52px);
    line-height: 1.35;
}
.notice-page {
    background: #f7f7f7;
}
.notice-hero {
    background: #fff;
}
.notice-lead,
.notice-card,
.notice-final {
    width: min(980px, calc(100% - 32px));
    margin: 0 auto;
}
.notice-lead {
    padding: clamp(52px, 8vw, 86px) 0 32px;
    text-align: center;
}
.notice-lead p {
    margin: 0 0 26px;
    color: var(--muted);
    font-size: clamp(17px, 3vw, 24px);
    line-height: 2;
    font-weight: 700;
}
.notice-lead h2 {
    margin: 0;
    font-size: clamp(24px, 4vw, 40px);
}
.notice-card {
    position: relative;
    margin-bottom: 28px;
    padding: clamp(28px, 5vw, 52px);
    background: #fff;
    border: 1px solid var(--line);
}
.notice-card > span {
    display: inline-grid;
    place-items: center;
    width: 50px;
    height: 50px;
    margin-bottom: 18px;
    background: #111;
    color: var(--accent);
    font-family: Impact, "Arial Black", sans-serif;
    font-size: 24px;
}
.notice-card h2 {
    margin: 0 0 24px;
    font-size: clamp(25px, 4vw, 42px);
}
.notice-card h3 {
    margin: 28px 0 14px;
    color: #a83030;
    font-size: 18px;
}
.notice-card p,
.notice-card li,
.notice-final p {
    color: var(--muted);
    font-size: 15px;
    line-height: 2;
}
.notice-card ul {
    margin: 22px 0;
    padding: 22px 28px;
    background: #f7f7f7;
    border-left: 4px solid var(--accent);
}
.notice-card li {
    margin: 6px 0;
}
.notice-card blockquote,
.notice-final blockquote {
    margin: 26px 0;
    padding: 24px 28px;
    background: #111;
    color: #fff;
    font-size: clamp(20px, 3vw, 30px);
    line-height: 1.55;
    font-weight: 900;
}
.warning-card {
    border-color: rgba(168,48,48,.28);
}
.warning-card > span {
    background: #a83030;
    color: #fff;
}
.notice-final {
    padding: clamp(54px, 8vw, 90px) 0;
    text-align: center;
}
.notice-final h2 {
    margin: 0 0 22px;
    font-size: clamp(28px, 5vw, 50px);
}
.bike-detail-page {
    background: #f6f6f6;
}
.bike-lead,
.bike-service {
    width: min(1080px, calc(100% - 32px));
    margin: 0 auto;
}
.bike-lead {
    padding: clamp(48px, 7vw, 80px) 0 34px;
    text-align: center;
}
.bike-lead h2 {
    margin: 0 0 18px;
    font-size: clamp(26px, 5vw, 48px);
}
.bike-lead p {
    margin: 0 auto;
    max-width: 760px;
    color: var(--muted);
    line-height: 2;
}
.bike-service {
    margin-bottom: 54px;
    background: #fff;
    border: 1px solid var(--line);
}
.bike-work-gallery {
    width: min(1080px, calc(100% - 32px));
    margin: 0 auto 54px;
}
.bike-work-grid {
    display: grid;
    grid-template-columns: minmax(150px, .55fr) 1fr 1fr;
    gap: 12px;
}
.bike-work-grid figure {
    margin: 0;
    overflow: hidden;
    background: #111;
    border: 1px solid var(--line);
    aspect-ratio: 3 / 4;
}
.bike-work-grid figure.is-small {
    aspect-ratio: 3 / 4;
}
.bike-work-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.content-gallery {
    width: min(1080px, calc(100% - 32px));
    margin: 0 auto 54px;
}
.content-slider-window {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    background: transparent;
}
.content-slider-track {
    display: flex;
    gap: 12px;
    transition: transform .45s ease;
    will-change: transform;
}
.content-slide {
    flex: 0 0 calc((100% - 24px) / 3);
    margin: 0;
    height: 560px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: transparent;
}
.content-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.content-gallery--bike .content-slide img {
    object-fit: contain;
}
.content-gallery--bike .content-slide {
    height: 680px;
}
.content-gallery--exterior .content-slide {
    height: 600px;
}
.content-gallery--product .content-slider-window {
    border: 0;
    background: transparent;
}
.content-gallery--product .content-slide {
    padding: 22px;
    background: #fff;
    border: 1px solid var(--line);
}
.content-gallery--product .content-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.content-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 52px;
    height: 52px;
    border: 0;
    background: rgba(255,255,255,.94);
    cursor: pointer;
    transform: translateY(-50%);
}
.content-arrow::before {
    content: "";
    position: absolute;
    inset: 17px;
    border-top: 2px solid #111;
    border-left: 2px solid #111;
}
.content-prev {
    left: 16px;
}
.content-next {
    right: 16px;
}
.content-prev::before {
    transform: rotate(-45deg);
}
.content-next::before {
    transform: rotate(135deg);
}
.reveal-item {
    opacity: 0;
    transform: translateY(34px);
    clip-path: inset(0 0 14% 0);
    transition: opacity .72s ease, transform .72s ease, clip-path .72s ease;
    will-change: opacity, transform, clip-path;
}
.reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0);
}
.product-gallery-section {
    width: min(1080px, calc(100% - 32px));
    margin: 0 auto 54px;
}
.product-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.product-gallery-grid figure {
    margin: 0;
    min-height: 330px;
    padding: 18px;
    display: grid;
    place-items: center;
    background: #fff;
    border: 1px solid var(--line);
    overflow: hidden;
}
.product-gallery-grid img {
    width: 100%;
    height: 100%;
    max-height: 390px;
    object-fit: contain;
}
.exterior-gallery .product-gallery-grid figure {
    padding: 0;
    background: #111;
}
.exterior-gallery .product-gallery-grid img {
    max-height: 420px;
}
.bike-service-head {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 18px;
    align-items: center;
    padding: clamp(22px, 4vw, 34px);
    background: #111;
    color: #fff;
}
.bike-index {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255,255,255,.42);
    color: var(--accent);
    font-family: Impact, "Arial Black", sans-serif;
    font-size: 24px;
}
.bike-service-head h2 {
    margin: 0;
    font-size: clamp(26px, 5vw, 46px);
}
.bike-service-head p {
    margin: 6px 0 0;
    color: rgba(255,255,255,.62);
    font-size: 12px;
    font-weight: 800;
}
.bike-price-hero {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 18px;
    align-items: center;
    padding: 26px clamp(22px, 4vw, 36px);
    border-bottom: 1px solid var(--line);
}
.bike-time {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px clamp(22px, 4vw, 36px);
    border-bottom: 1px solid var(--line);
    font-weight: 900;
}
.partial-price {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 8px 18px;
    align-items: baseline;
    padding: 22px clamp(22px, 4vw, 36px);
    border-bottom: 1px solid var(--line);
    background: #fafafa;
}
.partial-price b {
    color: var(--text);
}
.partial-price strong {
    color: var(--accent);
    font-size: 22px;
}
.partial-price small {
    grid-column: 2;
    color: var(--muted);
}
.coating-plan-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--line);
    border-bottom: 1px solid var(--line);
}
.coating-plan-grid > article {
    background: #fff;
}
.coating-plan-grid h3 {
    margin: 0;
    padding: 26px clamp(22px, 4vw, 34px);
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
    font-size: 22px;
    line-height: 1.45;
}
.coating-plan-grid .bike-price-cards {
    border-bottom: 0;
}
.coating-plan-grid .bike-price-cards div {
    padding: 22px;
    background: #fff;
}
.coating-plan-grid h4 {
    margin: 0 0 12px;
    font-size: 15px;
}
.plan-features {
    margin: 0;
    padding: 24px clamp(22px, 4vw, 34px) 28px 3em;
    color: var(--muted);
    line-height: 1.85;
}
.product-placeholders {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
    border-top: 1px solid var(--line);
}
.product-placeholders.single {
    grid-template-columns: 1fr;
}
.product-placeholders article {
    min-height: 230px;
    padding: clamp(22px, 4vw, 34px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        linear-gradient(135deg, rgba(195,153,69,.2), rgba(0,0,0,.05)),
        repeating-linear-gradient(45deg, #f6f6f6 0, #f6f6f6 12px, #ececec 12px, #ececec 24px);
}
.product-placeholders span {
    width: max-content;
    margin-bottom: 34px;
    padding: 8px 12px;
    background: #111;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
}
.product-placeholders h3 {
    margin: 0 0 8px;
    font-size: 22px;
}
.product-placeholders p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}
.glass-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
    border-top: 1px solid var(--line);
}
.glass-menu-grid article {
    padding: clamp(22px, 4vw, 34px);
    background: #fff;
}
.glass-menu-grid article.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(280px, .9fr) 1fr;
    gap: 24px;
    align-items: start;
    background: linear-gradient(135deg, #111, #2a2a2a);
    color: #fff;
}
.glass-card-head {
    display: grid;
    gap: 10px;
}
.glass-card-head h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.45;
}
.glass-card-head strong {
    color: var(--accent);
    font-size: clamp(30px, 5vw, 46px);
    line-height: 1;
}
.glass-card-head span {
    color: var(--muted);
    font-weight: 800;
}
.glass-menu-grid article.featured .glass-card-head span,
.glass-menu-grid article.featured p,
.glass-menu-grid article.featured li {
    color: rgba(255,255,255,.78);
}
.glass-menu-grid ul {
    margin: 22px 0 0;
    padding-left: 1.25em;
}
.glass-menu-grid li {
    margin: 8px 0;
    color: var(--muted);
    line-height: 1.75;
}
.glass-menu-grid p {
    margin: 22px 0 0;
    color: var(--muted);
    line-height: 1.8;
}
.wrapping-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border-top: 1px solid var(--line);
}
.wrapping-plan-grid article {
    background: #fff;
}
.wrapping-visual {
    min-height: 190px;
    display: flex;
    align-items: flex-end;
    padding: 22px;
    background: #111;
    position: relative;
    overflow: hidden;
}
.wrapping-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255,255,255,.18), transparent 42%),
        repeating-linear-gradient(115deg, transparent 0 18px, rgba(255,255,255,.08) 18px 20px);
}
.wrapping-visual.ppf { background: linear-gradient(135deg, #1f2528, #0b0d0f); }
.wrapping-visual.color { background: linear-gradient(135deg, #111, #6a1010 45%, #c39945); }
.wrapping-visual.design { background: linear-gradient(135deg, #0d0d0d, #323232 52%, #111); }
.wrapping-visual span {
    position: relative;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
}
.wrapping-body {
    padding: clamp(22px, 4vw, 34px);
}
.wrapping-label {
    margin: 0 0 14px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
}
.wrapping-body h3 {
    margin: 0 0 18px;
    font-size: 24px;
    line-height: 1.4;
}
.wrapping-body strong {
    display: block;
    margin-bottom: 12px;
    color: var(--accent);
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1;
}
.wrapping-body span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    font-weight: 800;
}
.wrapping-body p:last-child {
    margin: 0;
    color: var(--muted);
    line-height: 1.9;
}
.sub-list-title {
    margin-top: 28px !important;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}
.single-menu-wrap {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 80px;
    display: grid;
    gap: 28px;
}
.single-category {
    border: 1px solid var(--line);
    background: #fff;
}
.single-category-head {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: clamp(22px, 4vw, 34px);
    border-bottom: 1px solid var(--line);
    background: #111;
    color: #fff;
}
.single-category-head h2 {
    margin: 0;
    font-size: clamp(24px, 4vw, 36px);
}
.single-category-head p {
    margin: 5px 0 0;
    color: rgba(255,255,255,.62);
    font-weight: 800;
    letter-spacing: .08em;
}
.single-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
}
.single-menu-grid article {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: start;
    padding: clamp(22px, 4vw, 32px);
    background: #fff;
}
.single-menu-grid article:last-child:nth-child(odd) {
    grid-column: 1 / -1;
}
.single-menu-grid h3 {
    margin: 0 0 10px;
    font-size: 21px;
    line-height: 1.45;
}
.single-menu-grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}
.single-menu-grid strong {
    min-width: 142px;
    color: var(--accent);
    font-size: clamp(24px, 4vw, 34px);
    line-height: 1.1;
    text-align: right;
}
.campaign-pricing {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 34px;
    border: 1px solid var(--line);
    background: #fff;
}
.campaign-price-head {
    padding: clamp(28px, 5vw, 48px);
    background: #111;
    color: #fff;
}
.campaign-price-head span {
    color: var(--accent);
    font-weight: 900;
    letter-spacing: .1em;
}
.campaign-price-head h2 {
    margin: 10px 0;
    font-size: clamp(34px, 6vw, 58px);
}
.campaign-price-head p {
    margin: 0;
    color: rgba(255,255,255,.72);
}
.campaign-price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
}
.campaign-price-grid article {
    padding: clamp(24px, 4vw, 38px);
    background: #fff;
}
.campaign-price-grid article.featured {
    background: linear-gradient(180deg, #fff7e6, #fff);
}
.campaign-price-grid h3 {
    margin: 0 0 18px;
    font-size: 24px;
}
.campaign-price-grid strong {
    display: block;
    color: var(--accent);
    font-size: clamp(40px, 7vw, 68px);
    line-height: 1;
}
.campaign-price-grid p,
.campaign-note {
    color: var(--muted);
}
.campaign-price-grid p {
    margin: 18px 0 0;
}
.campaign-note {
    margin: 0;
    padding: 20px clamp(22px, 4vw, 34px);
    border-top: 1px solid var(--line);
    line-height: 1.8;
}
.bike-grid.three,
.campaign-style-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
}
.campaign-style-grid {
    grid-template-columns: repeat(2, 1fr);
}
.campaign-style-grid article {
    padding: clamp(24px, 4vw, 36px);
    background: #fff;
}
.campaign-style-grid h3 {
    margin: 0 0 18px;
    font-size: 24px;
}
.campaign-style-grid ul {
    margin: 0;
    padding-left: 1.25em;
    color: var(--muted);
    line-height: 1.9;
}
.campaign-style-grid .avoid h3 {
    color: #777;
}
.campaign-style-grid .provide h3 {
    color: var(--accent);
}
.bike-time small {
    color: var(--muted);
    font-weight: 500;
}
.bike-price-hero strong {
    color: var(--accent);
    font-size: clamp(34px, 6vw, 62px);
    line-height: 1;
}
.bike-price-hero small {
    color: var(--muted);
    font-weight: 800;
}
.bike-subtitle {
    margin: 0;
    padding: 20px clamp(22px, 4vw, 36px);
    color: var(--muted);
    border-bottom: 1px solid var(--line);
}
.bike-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
}
.bike-grid.compact {
    border-top: 1px solid var(--line);
}
.bike-grid article,
.bike-note,
.bike-alert {
    background: #fff;
    padding: clamp(22px, 4vw, 34px);
}
.bike-grid h3,
.bike-note h3 {
    margin: 0 0 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
}
.bike-grid ul {
    margin: 0;
    padding-left: 1.25em;
}
.bike-grid li {
    margin: 8px 0;
    color: var(--muted);
    line-height: 1.75;
}
.bike-note {
    border-top: 1px solid var(--line);
}
.bike-note p,
.bike-alert p,
.bike-price-cards p {
    margin: 0;
    color: var(--muted);
    line-height: 2;
}
.bike-alert {
    border-top: 1px solid var(--line);
    background: #111;
    color: #fff;
}
.bike-alert b {
    display: block;
    margin-bottom: 10px;
    color: var(--accent);
}
.bike-alert p {
    color: rgba(255,255,255,.78);
}
.bike-price-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
    border-bottom: 1px solid var(--line);
}
.bike-price-cards.three {
    grid-template-columns: repeat(3, 1fr);
}
.bike-price-cards article {
    padding: clamp(22px, 4vw, 34px);
    background: #fff;
}
.bike-price-cards h3 {
    margin: 0 0 18px;
    font-size: 21px;
    line-height: 1.45;
}
.bike-price-cards strong {
    display: block;
    margin-bottom: 12px;
    color: var(--accent);
    font-size: clamp(30px, 5vw, 48px);
    line-height: 1;
}
.bike-price-cards span,
.bike-price-hero div {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
}
.mini-icon {
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--accent);
    color: #111;
}
.mini-icon::before {
    font-size: 14px;
    line-height: 1;
}
.mini-icon.clock::before { content: "⏱"; }
.mini-icon.wash::before { content: "✦"; }
.mini-icon.star::before { content: "★"; }
.mini-icon.polish::before { content: "◆"; }
.mini-icon.shield::before { content: "✓"; }
.mini-icon.wrap::before { content: "▣"; }
.mini-icon.design::before { content: "✎"; }

@media (max-width: 860px) {
    .header-inner {
        width: min(100% - 20px, 1180px);
        min-height: 76px;
        grid-template-columns: 1fr auto 78px;
        gap: 8px;
    }
    .brand-logo { width: 122px; }
    .brand-race { width: 132px; gap: 2px; }
    .race-number { height: 22px; gap: 5px; }
    .race-number i { height: 12px; }
    .race-number b { font-size: 31px; }
    .race-word { font-size: 25px; }
    .primary-nav { display: none; }
    .header-tools {
        display: grid;
        grid-template-columns: repeat(3, 28px);
        gap: 3px;
    }
    .icon-btn { width: 28px; height: 34px; }
    .icon-btn img { width: 21px; height: 21px; }
    .menu-button {
        height: 44px;
        padding: 0 9px;
        grid-template-columns: 1fr 14px;
        gap: 6px;
        font-size: 10px;
    }
    .drawer-inner { grid-template-columns: 1fr; padding: 14px 0; }
    .hero-track {
        aspect-ratio: 1942 / 809;
        height: auto;
        min-height: 0;
        max-height: none;
    }
    .hero-slide img {
        height: 100%;
        width: 100%;
        max-width: 100%;
        object-fit: contain;
        object-position: center center;
    }
    .hero-arrow {
        display: none;
    }
    .hero-dots { bottom: 14px; }
    .hero-dots button { width: 26px; }
    .pickup-links { display: none; }
    .section-grid { grid-template-columns: 1fr; }
    .size-guide-grid { grid-template-columns: 1fr; }
    .price-row { grid-template-columns: 1fr; }
    .price-row strong { text-align: left; }
    .access dl div { grid-template-columns: 1fr; gap: 8px; }
    .access-info { grid-template-columns: 1fr; }
    .access-simple-grid { grid-template-columns: 1fr; }
    .access-shop-main {
        padding: 0 0 18px;
        border-right: 0;
        border-bottom: 2px solid #111;
    }
    .access-shop-name { border: 0; }
    .access-map,
    .access-map iframe {
        height: 330px;
        min-height: 330px;
    }
    .space-track {
        gap: 0;
    }
    .space-slide { flex-basis: 100%; }
    .space-arrow {
        width: 42px;
        height: 42px;
    }
    .space-arrow::before { inset: 14px; }
    .space-prev { left: 12px; }
    .space-next { right: 12px; }
    .site-footer { grid-template-columns: 1fr; gap: 18px; }
    .site-footer small { white-space: normal; }
    .two-col,
    .feature-grid { grid-template-columns: 1fr; }
    .size-grid { grid-template-columns: repeat(2, 1fr); }
    .size-grid article:nth-child(2n) { border-right: 0; }
    .size-grid article { border-bottom: 1px solid var(--line); }
    .price-heading { grid-template-columns: 1fr; }
    .menu-card-head { display: grid; }
    .price-table {
        min-width: 620px;
    }
    .menu-card {
        overflow-x: auto;
    }
    .story-section { grid-template-columns: 1fr; }
    .story-image-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding-bottom: 34px;
    }
    .story-image-grid figure:first-child,
    .story-image-grid figure:nth-child(2),
    .story-image-grid figure:nth-child(3) {
        grid-row: auto;
        aspect-ratio: 1 / 1;
    }
    .method-layout { grid-template-columns: 1fr; }
    .brand-list { grid-template-columns: 1fr; }
    .bike-service-head,
    .bike-price-hero,
    .partial-price,
    .bike-grid,
    .coating-plan-grid,
    .product-placeholders,
    .glass-menu-grid,
    .glass-menu-grid article.featured,
    .wrapping-plan-grid,
    .single-menu-grid,
    .single-menu-grid article,
    .campaign-price-grid,
    .bike-grid.three,
    .campaign-style-grid,
    .bike-price-cards,
    .bike-price-cards.three { grid-template-columns: 1fr; }
    .glass-menu-grid article.featured { grid-column: auto; }
    .single-menu-grid strong { text-align: left; }
    .partial-price small { grid-column: auto; }
    .coating-plan-grid h3 { min-height: 0; }
    .bike-time { display: grid; }
    .bike-work-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .bike-work-grid figure,
    .bike-work-grid figure.is-small {
        aspect-ratio: 4 / 5;
    }
    .content-gallery {
        width: min(100% - 56px, 430px);
        margin-bottom: 34px;
    }
    .content-slide {
        flex-basis: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
    }
    .content-gallery--bike .content-slide {
        height: auto;
        aspect-ratio: 3 / 4;
    }
    .content-gallery--exterior .content-slide,
    .content-gallery--product .content-slide {
        height: auto;
        aspect-ratio: 5 / 4;
    }
    .content-gallery--bike .content-slide img,
    .content-gallery--exterior .content-slide img {
        object-fit: contain;
    }
    .content-gallery--product .content-slide {
        padding: 14px;
    }
    .content-arrow {
        width: 38px;
        height: 38px;
    }
    .content-arrow::before {
        inset: 13px;
    }
    .content-prev {
        left: 8px;
    }
    .content-next {
        right: 8px;
    }
    .product-gallery-section {
        width: min(100% - 28px, 520px);
        margin-bottom: 34px;
    }
    .product-gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .product-gallery-grid figure {
        min-height: 0;
        aspect-ratio: 4 / 3;
        padding: 14px;
    }
    .product-gallery-grid img {
        max-height: 100%;
    }
    .exterior-gallery {
        width: min(100% - 56px, 420px);
    }
    .exterior-gallery .product-gallery-grid figure {
        aspect-ratio: 4 / 3;
    }
}

@media (prefers-reduced-motion: reduce) {
    .content-slider-track,
    .hero-slide,
    .reveal-item {
        transition: none !important;
    }
    .reveal-item {
        opacity: 1;
        transform: none;
        clip-path: inset(0);
    }
}

@media (min-width: 861px) and (max-width: 1180px) {
    .hero-track {
        aspect-ratio: 1942 / 809;
        height: auto;
        min-height: 0;
    }
    .hero-slide img {
        height: 100%;
    }
}
