/* ================================================
   KO STUDIO — Premium Car Wrapping Theme
   Dark automotive aesthetic with gold accents
   ================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --black:        #0a0a0a;
    --dark:         #111111;
    --dark-card:    #181818;
    --dark-border:  #2a2a2a;
    --dark-hover:   #1f1f1f;
    --white:        #ffffff;
    --gray-light:   #f0f0f0;
    --gray:         #b0b0b0;
    --gray-dark:    #707070;
    --gold:         #c8a84b;
    --gold-light:   #e8c96a;
    --gold-dim:     rgba(200,168,75,0.15);
    --red:          #e63946;
    --red-dim:      rgba(230,57,70,0.15);
    --green:        #52b788;
    --blue:         #4895ef;
    --font-display: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
    --font-body:    'Noto Sans JP', sans-serif;
    --radius:       12px;
    --radius-sm:    8px;
    --radius-lg:    20px;
    --shadow:       0 4px 24px rgba(0,0,0,0.5);
    --shadow-lg:    0 8px 48px rgba(0,0,0,0.6);
    --transition:   all 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* --- Container --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ================================================
   HEADER / NAVBAR
   ================================================ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    isolation: isolate;
    background: #000000;
    box-shadow: 0 2px 24px rgba(0,0,0,0.8);
    transition: var(--transition);
}
.header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #000000;
    z-index: -1;
    pointer-events: none;
}

.navbar { padding: 0; }
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.nav-logo .logo-link { display: block; }
.nav-logo h1 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: #ffffff;
    line-height: 1;
    text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}
.nav-logo h1 .highlight { color: var(--gold); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-link {
    display: inline-block;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.03em;
    transition: var(--transition);
    position: relative;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 18px; right: 18px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-link--highlight {
    background: var(--gold-dim);
    border: 1px solid rgba(200,168,75,0.3);
    color: var(--gold-light);
}
.nav-link--highlight:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}
.nav-link--highlight::after { display: none; }

.nav-logo a { text-decoration: none; color: inherit; }

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    cursor: pointer;
    background: none;
    border: none;
}
.bar {
    width: 100%;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: var(--transition);
    box-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.hamburger.active .bar:nth-child(1) { transform: translateY(7px) rotate(-45deg); }
.hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(3) { transform: translateY(-7px) rotate(45deg); }

/* ================================================
   BUTTONS
   ================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: var(--font-body);
}
.btn-primary {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 4px 16px rgba(200,168,75,0.3);
}
.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200,168,75,0.4);
}
.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.5);
}

/* ================================================
   ABOUT PAGE — HERO
   ================================================ */
.about-hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 24px 80px;
}
.about-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200,168,75,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(200,168,75,0.06) 0%, transparent 60%),
        linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
}
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><rect width="60" height="60" fill="none"/><line x1="0" y1="60" x2="60" y2="0" stroke="rgba(200,168,75,0.04)" stroke-width="1"/></svg>');
}
.about-hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
}
.about-hero-tag {
    display: inline-block;
    padding: 6px 20px;
    background: var(--gold-dim);
    border: 1px solid rgba(200,168,75,0.3);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 24px;
    text-transform: uppercase;
}
.about-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 24px;
    text-shadow: 0 2px 40px rgba(200,168,75,0.2);
}
.about-hero-sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* ================================================
   TABLE OF CONTENTS
   ================================================ */
.toc-section {
    padding: 0 0 60px;
    background: var(--black);
}
.toc-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.toc-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 28px;
    background: rgba(200,168,75,0.08);
    border-bottom: 1px solid var(--dark-border);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--gold);
}
.toc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.toc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 24px;
    border-right: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}
.toc-item:hover {
    background: var(--gold-dim);
    color: var(--gold-light);
}
.toc-item span:first-child {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--gold);
    opacity: 0.7;
    min-width: 28px;
}

/* ================================================
   GUIDE SECTIONS (shared)
   ================================================ */
.guide-section {
    padding: 80px 0;
    background: var(--black);
    border-top: 1px solid var(--dark-border);
}
.guide-section--alt {
    background: var(--dark);
}

.guide-header {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 48px;
}
.guide-num {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 900;
    color: var(--gold);
    opacity: 0.5;
    letter-spacing: 0.1em;
}
.guide-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--white);
    position: relative;
}
.guide-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin-top: 12px;
    border-radius: 2px;
}

.guide-lead {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-bottom: 28px;
    padding-left: 20px;
    border-left: 3px solid var(--gold);
}
.guide-body {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.9;
    max-width: 860px;
}
.guide-body p { margin-bottom: 16px; }

.text-accent { color: var(--gold); font-weight: 600; }

/* ================================================
   INFO CALLOUT
   ================================================ */
.info-callout {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: var(--gold-dim);
    border: 1px solid rgba(200,168,75,0.2);
    border-radius: var(--radius);
    margin-top: 32px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
}
.info-callout i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.info-callout--accent {
    background: rgba(72,149,239,0.08);
    border-color: rgba(72,149,239,0.2);
}
.info-callout--accent i { color: var(--blue); }

/* ================================================
   MERIT CARDS
   ================================================ */
.merit-intro {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 40px;
}
.merit-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.merit-card {
    display: flex;
    gap: 28px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}
.merit-card:hover {
    border-color: rgba(200,168,75,0.25);
    background: #1c1c1c;
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.merit-card--danger:hover {
    border-color: rgba(230,57,70,0.3);
}
.merit-card-icon {
    width: 64px;
    height: 64px;
    background: var(--gold-dim);
    border: 1px solid rgba(200,168,75,0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.6rem;
    color: var(--gold);
}
.merit-card--danger .merit-card-icon {
    background: var(--red-dim);
    border-color: rgba(230,57,70,0.2);
    color: var(--red);
}
.merit-card-body { flex: 1; }
.merit-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}
.merit-card-body p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 12px;
}

/* ================================================
   DURABILITY SECTION
   ================================================ */
.durability-hero {
    text-align: center;
    padding: 48px 0 40px;
}
.durability-number {
    font-family: var(--font-display);
    font-size: clamp(5rem, 15vw, 10rem);
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 60px rgba(200,168,75,0.3);
}
.durability-number span {
    font-size: 0.3em;
    vertical-align: super;
    opacity: 0.7;
}
.durability-note {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.15em;
    margin-top: 8px;
    text-transform: uppercase;
}
.durability-factors {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 28px;
    margin: 32px 0;
}
.durability-factors h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}
.durability-factors h4 i { color: var(--red); }
.durability-factors ul { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 12px; }
.durability-factors li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(230,57,70,0.06);
    border: 1px solid rgba(230,57,70,0.12);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
}
.durability-factors li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ================================================
   COST SECTION
   ================================================ */
.cost-intro {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 48px;
}
.cost-block {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}
.cost-block::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
}
.cost-block--diy::before {
    background: linear-gradient(90deg, var(--blue), transparent);
}
.cost-block-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}
.cost-block-icon {
    width: 52px;
    height: 52px;
    background: var(--gold-dim);
    border: 1px solid rgba(200,168,75,0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--gold);
    flex-shrink: 0;
}
.cost-block--diy .cost-block-icon {
    background: rgba(72,149,239,0.12);
    border-color: rgba(72,149,239,0.2);
    color: var(--blue);
}
.cost-block-header h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}
.cost-block-header p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

.cost-elements {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}
.cost-element {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}
.cost-element .num {
    font-family: var(--font-display);
    font-weight: 900;
    color: var(--gold);
    min-width: 24px;
    font-size: 1rem;
}
.cost-block--diy .cost-element .num { color: var(--blue); }

.cost-tables { display: flex; flex-direction: column; gap: 32px; }
.cost-sub-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}
.cost-sub-title i { font-size: 1rem; }
.table-wrapper { overflow-x: auto; }
.cost-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.cost-table th {
    padding: 12px 18px;
    background: rgba(200,168,75,0.08);
    border: 1px solid rgba(200,168,75,0.15);
    text-align: left;
    font-weight: 600;
    color: var(--gold);
    white-space: nowrap;
}
.cost-block--diy .cost-table th {
    background: rgba(72,149,239,0.08);
    border-color: rgba(72,149,239,0.15);
    color: var(--blue);
}
.cost-table td {
    padding: 12px 18px;
    border: 1px solid var(--dark-border);
    color: rgba(255,255,255,0.7);
}
.cost-table tr:hover td { background: rgba(255,255,255,0.03); }
.cost-table td:last-child {
    font-weight: 600;
    color: var(--gold);
}

.diy-warning {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(72,149,239,0.08);
    border: 1px solid rgba(72,149,239,0.2);
    border-radius: var(--radius);
    margin-top: 32px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}
.diy-warning i { color: var(--blue); font-size: 1.2rem; margin-top: 2px; flex-shrink: 0; }
.diy-warning strong { color: var(--blue); }

/* ================================================
   SHOP SELECTION
   ================================================ */
.shop-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.shop-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.shop-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0;
    transition: var(--transition);
}
.shop-card:hover {
    border-color: rgba(200,168,75,0.2);
    background: #1c1c1c;
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.shop-card:hover::before { opacity: 1; }
.shop-card-num {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(200,168,75,0.06);
    line-height: 1;
}
.shop-card-icon {
    width: 56px;
    height: 56px;
    background: var(--gold-dim);
    border: 1px solid rgba(200,168,75,0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 20px;
}
.shop-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}
.shop-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
}

/* ================================================
   MAINTENANCE
   ================================================ */
.maint-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.maint-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}
.maint-card:hover {
    border-color: rgba(200,168,75,0.2);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.maint-icon {
    width: 56px;
    height: 56px;
    background: var(--gold-dim);
    border: 1px solid rgba(200,168,75,0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 20px;
}
.maint-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
}
.maint-card > p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 16px;
}
.maint-card ul { display: flex; flex-direction: column; gap: 10px; }
.maint-card li {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}
.maint-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* ================================================
   FAQ
   ================================================ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item.open {
    border-color: rgba(200,168,75,0.25);
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 22px 28px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    user-select: none;
}
.faq-question:hover { background: rgba(255,255,255,0.03); }
.faq-question i {
    color: var(--gold);
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer p {
    padding: 0 28px 22px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.85;
}
.faq-answer p:first-child { padding-top: 4px; }
.faq-answer strong { color: var(--white); font-weight: 600; }
.faq-answer br + strong { display: block; margin-top: 12px; }

/* ================================================
   ABOUT CTA SECTION
   ================================================ */
.about-cta {
    position: relative;
    padding: 120px 24px;
    text-align: center;
    overflow: hidden;
}
.about-cta-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 70% at 50% 50%, rgba(200,168,75,0.08) 0%, transparent 70%),
        linear-gradient(180deg, var(--dark) 0%, var(--black) 100%);
}
.about-cta-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><rect width="60" height="60" fill="none"/><line x1="0" y1="60" x2="60" y2="0" stroke="rgba(200,168,75,0.04)" stroke-width="1"/></svg>');
}
.about-cta-content { position: relative; z-index: 2; }
.about-cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 20px;
}
.about-cta-content h2 span { color: var(--gold); }
.about-cta-content p {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}
.about-cta-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--gold);
    color: var(--black);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(200,168,75,0.3);
}
.btn-cta-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(200,168,75,0.4);
}
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
}
.btn-cta-secondary:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-3px);
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    background: #060606;
    border-top: 1px solid var(--dark-border);
    padding: 56px 0 0;
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-section h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 16px;
}
.footer-section > p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    margin-bottom: 20px;
}
.social-links { display: flex; gap: 12px; }
.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(200,168,75,0.08);
    border: 1px solid rgba(200,168,75,0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.95rem;
    transition: var(--transition);
}
.social-links a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}
.footer-section h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.footer-section ul { display: flex; flex-direction: column; gap: 10px; }
.footer-section ul li a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}
.footer-section ul li a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid var(--dark-border);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
}
.footer-address { text-align: right; }

/* ================================================
   INDEX PAGE — HERO
   ================================================ */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}
.hero-overlay-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000000;
}
.hero-background {
    position: absolute;
    inset: 0;
    top: 72px;
    width: 100%;
    height: calc(100% - 72px);
    object-fit: cover;
    object-position: center;
    z-index: 1;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(
            180deg,
            #000000 0%,
            rgba(0,0,0,0.85) 15%,
            rgba(0,0,0,0.55) 40%,
            rgba(0,0,0,0.25) 100%
        );
    display: flex;
    align-items: center;
}
.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 90px;
    background: #000000;
    z-index: 0;
}
.hero-overlay .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 24px;
}
.hero-title .highlight {
    color: var(--gold);
    display: block;
    text-shadow: 0 2px 30px rgba(200,168,75,0.3);
}
.hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    max-width: 560px;
    margin-bottom: 40px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* ================================================
   INDEX — STORY SECTION
   ================================================ */
.professional-story {
    padding: 80px 0;
    background: var(--dark);
    border-top: 1px solid var(--dark-border);
}
.professional-story > .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 48px;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--gold);
    margin-top: 10px;
    border-radius: 2px;
}
.story-section {
    display: flex;
    min-height: 40vh;
    align-items: center;
    max-height: 420px;
    margin-bottom: 48px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
}
.story-image {
    flex: 0 0 45%;
    overflow: hidden;
    max-height: 420px;
}
.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}
.story-section:hover .story-image img { transform: scale(1.04); }
.story-content {
    flex: 1;
    padding: 40px 48px;
}
.story-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.3;
}
.story-content h3 {
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 500;
}
.story-content p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.85;
    margin-bottom: 12px;
}

/* ================================================
   INDEX — GALLERY SHOWCASE
   ================================================ */
.additional-gallery {
    padding: 80px 0;
    background: var(--black);
    border-top: 1px solid var(--dark-border);
}
.gallery-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}
.gallery-subtitle::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--gold);
    margin-top: 10px;
    border-radius: 2px;
}
.gallery-showcase {
    display: flex;
    align-items: center;
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    box-shadow: var(--shadow);
}
.gallery-showcase-content {
    flex: 1;
    padding: 48px;
}
.gallery-description {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.85;
    margin-bottom: 32px;
}
.gallery-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--gold);
    color: var(--black);
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(200,168,75,0.25);
}
.gallery-more-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200,168,75,0.35);
}
.gallery-showcase-image {
    flex: 0 0 50%;
    height: 420px;
    overflow: hidden;
}
.gallery-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}
.gallery-showcase:hover .gallery-showcase-image img { transform: scale(1.04); }

/* ================================================
   INDEX — SERVICES
   ================================================ */
.services-showcase {
    background: var(--dark);
    border-top: 1px solid var(--dark-border);
    padding: 0;
}
.service-hero {
    display: flex;
    min-height: 70vh;
    align-items: center;
}
.service-visual {
    flex: 0 0 50%;
    overflow: hidden;
}
.service-visual .service-image {
    width: 100%;
    height: 100%;
    min-height: 70vh;
    object-fit: cover;
    object-position: center;
}
.service-content {
    flex: 1;
    padding: 64px 56px;
    background: linear-gradient(135deg, rgba(200,168,75,0.06) 0%, transparent 60%);
}
.service-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}
.service-content p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.85;
    margin-bottom: 16px;
}
.service-highlights {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}
.highlight { text-align: left; }
.highlight .number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    display: block;
}
.highlight .label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-top: 6px;
    display: block;
}

/* ================================================
   PAGE HEADER (gallery / contact)
   ================================================ */
.page-header {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, rgba(200,168,75,0.06) 0%, var(--black) 100%);
    text-align: center;
    border-bottom: 1px solid var(--dark-border);
}
.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
}
.page-header p {
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ================================================
   GALLERY GRID
   ================================================ */
.gallery-grid-section {
    padding: 80px 0;
    background: var(--black);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.gallery-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}
.gallery-card:hover {
    border-color: rgba(200,168,75,0.3);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.gallery-card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}
.gallery-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-card:hover .gallery-card-image img { transform: scale(1.08); }
.gallery-card-info { padding: 20px 24px; }
.gallery-card-info h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}
.gallery-card-info .car-model {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 500;
}

/* ================================================
   CONTACT FORM
   ================================================ */
.contact { padding: 80px 0; background: var(--dark); border-top: 1px solid var(--dark-border); }
.contact .section-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 40px;
    display: block;
    text-align: center;
}
.contact .section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--gold);
    margin: 12px auto 0;
    border-radius: 2px;
}
.contact-content { display: flex; justify-content: center; }
.contact-form {
    max-width: 640px;
    width: 100%;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 40px;
}
.form-group { margin-bottom: 24px; }
.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    margin-bottom: 8px;
    letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--white);
    transition: var(--transition);
    font-family: var(--font-body);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group select option { background: var(--dark); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(200,168,75,0.5);
    background: rgba(200,168,75,0.04);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.contact-form .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 1rem;
}

/* ================================================
   COMPANY INFO SECTION
   ================================================ */
.company-info-section {
    padding: 80px 0;
    background: var(--black);
    border-top: 1px solid var(--dark-border);
}
.company-info-section .section-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 48px;
}
.company-info-section .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 16px auto 0;
    border-radius: 2px;
}
.company-info-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}
.company-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.info-item i {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-dim);
    color: var(--gold);
    border-radius: var(--radius-sm);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.info-item h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 4px;
}
.info-item p {
    font-size: 1rem;
    color: var(--white);
    line-height: 1.6;
}
.info-item a {
    color: var(--gold);
}
.info-item a:hover {
    color: var(--gold-light);
}
.company-map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.company-map iframe {
    width: 100%;
    height: 450px;
    display: block;
}

@media (max-width: 992px) {
    .company-info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .company-map iframe {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .company-info-section {
        padding: 60px 0;
    }
    .company-details {
        gap: 20px;
    }
    .info-item i {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .company-map iframe {
        height: 300px;
    }
}

/* ================================================
   SCROLL TO TOP
   ================================================ */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(200,168,75,0.35);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.scroll-to-top.visible { opacity: 1; visibility: visible; }
.scroll-to-top:hover { transform: translateY(-3px); background: var(--gold-light); }

/* ================================================
   NOTIFICATION
   ================================================ */
.notification {
    position: fixed;
    top: 90px;
    right: 24px;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(calc(100% + 24px));
    transition: transform 0.3s ease;
    max-width: 360px;
}
.notification.show { transform: translateX(0); }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
    .toc-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-content > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0; right: 0;
        flex-direction: column;
        background: rgba(10,10,10,0.97);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--dark-border);
        padding: 24px;
        gap: 8px;
        transform: translateY(-120%);
        opacity: 0;
        transition: all 0.35s ease;
        pointer-events: none;
    }
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav-item { width: 100%; }
    .nav-link { width: 100%; text-align: center; padding: 12px 16px; }
    .nav-link--highlight { display: inline-flex; }

    .toc-grid { grid-template-columns: repeat(2, 1fr); }
    .toc-item { padding: 14px 16px; font-size: 0.8rem; }

    .merit-card { flex-direction: column; }
    .merit-card-icon { width: 52px; height: 52px; font-size: 1.3rem; }

    .shop-cards { grid-template-columns: 1fr; }
    .maint-grid { grid-template-columns: 1fr; }
    .story-section { flex-direction: column; max-height: none; }
    .story-image { flex: none; width: 100%; height: 280px; max-height: none; }
    .gallery-showcase { flex-direction: column; }
    .gallery-showcase-image { flex: none; width: 100%; height: 280px; }
    .service-hero { flex-direction: column; }
    .service-visual { flex: none; width: 100%; }
    .service-visual .service-image { min-height: 300px; }
    .service-content { padding: 40px 28px; }
    .cost-block { padding: 28px 20px; }

    .footer-content { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-address { text-align: center; }

    .about-cta-btns { flex-direction: column; align-items: center; }
    .about-cta-btns .btn-cta-primary,
    .about-cta-btns .btn-cta-secondary { width: 100%; max-width: 300px; justify-content: center; }

    .about-hero { min-height: 55vh; padding: 120px 24px 60px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .toc-grid { grid-template-columns: 1fr 1fr; }
    .toc-item { padding: 12px; font-size: 0.75rem; gap: 8px; }
    .contact-form { padding: 24px 20px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .service-highlights { flex-direction: column; gap: 20px; }
}
