/* KARTEL BOATS — model landing pages. Reuses tokens/header/buttons from main.css. */

.boat-main { padding-top: 0; }

/* ===== Breadcrumb ===== */
.boat-breadcrumb {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    font-family: 'Courier New', Courier, monospace;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    margin: 24px 0 0;
}
.boat-breadcrumb a { color: inherit; text-decoration: none; }
.boat-breadcrumb a:hover { color: var(--accent); }
.boat-breadcrumb span[aria-current] { color: rgba(255, 255, 255, .85); }

/* ===== Hero ===== */
.boat-hero {
    position: relative;
    margin-top: 16px;
    min-height: 62vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border: 1px solid #1f1f1f;
}
.boat-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.boat-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.55) 60%, rgba(0,0,0,.92) 100%);
    z-index: 1;
}
.boat-hero-inner { position: relative; z-index: 2; padding: 40px; max-width: 820px; }
.boat-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.boat-badge {
    font-family: 'Courier New', Courier, monospace;
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 5px 10px;
    border: 1px solid rgba(255,255,255,.25);
    color: rgba(255,255,255,.85);
}
.boat-badge--accent { background: var(--accent); color: #000; border-color: var(--accent); font-weight: 700; }
.boat-hero h1 { font-size: clamp(34px, 6vw, 60px); margin-bottom: 16px; }
.boat-hero-lead { font-size: clamp(15px, 2vw, 19px); line-height: 1.6; color: rgba(255,255,255,.82); max-width: 680px; margin-bottom: 28px; font-weight: 300; }
.boat-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== Sections ===== */
.boat-section { padding: 64px 0; border-bottom: 1px solid #111; }
.boat-section-label {
    font-family: 'Courier New', Courier, monospace;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 16px;
}
.boat-section h2 { font-size: clamp(24px, 3.4vw, 34px); margin-bottom: 20px; }
.boat-prose p { color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.75; max-width: 760px; margin-bottom: 16px; font-weight: 300; }
.boat-prose strong { color: #fff; font-weight: 600; }
.boat-prose h1 { font-size: clamp(30px, 6vw, 52px); margin-bottom: 20px; overflow-wrap: anywhere; }

/* ===== Spec list ===== */
.boat-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0 48px;
    margin-top: 8px;
}
.boat-spec-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #1c1c1c;
}
.boat-spec-row dt { color: rgba(255,255,255,.5); font-size: 13px; text-transform: uppercase; letter-spacing: .04em; min-width: 0; overflow-wrap: anywhere; }
.boat-spec-row dd { color: #fff; font-size: 15px; text-align: right; font-weight: 500; min-width: 0; overflow-wrap: anywhere; }

/* ===== Gallery ===== */
.boat-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
    margin-top: 8px;
}
.boat-gallery img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    border: 1px solid #1f1f1f;
}

/* ===== CTA band ===== */
.boat-cta { background: var(--bg-card); padding: 56px 0; border-bottom: 1px solid #111; }
.boat-cta h2 { margin-bottom: 12px; }
.boat-cta p { color: rgba(255,255,255,.7); margin-bottom: 24px; }
.boat-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.boat-cta-phone { color: #fff; text-decoration: none; font-weight: 600; letter-spacing: .02em; }
.boat-cta-phone:hover { color: var(--accent); }

/* ===== Other model ===== */
.boat-other-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.7);
    text-decoration: none;
    font-family: 'Courier New', Courier, monospace;
    font-size: 13px;
    letter-spacing: .06em;
}
.boat-other-link:hover { color: var(--accent); }

/* ===== Footer ===== */
.boat-footer { padding: 40px 20px; text-align: center; }
.boat-footer-nav {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    font-family: 'Courier New', Courier, monospace;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.boat-footer-nav a { color: rgba(255,255,255,.55); text-decoration: none; }
.boat-footer-nav a:hover { color: var(--accent); }
.boat-footer-copy { font-family: 'Courier New', Courier, monospace; font-size: 11px; color: rgba(255,255,255,.35); letter-spacing: .08em; }

@media (max-width: 768px) {
    .boat-hero-inner { padding: 24px 20px; }
    .boat-hero { min-height: 70vh; }
    .boat-section { padding: 48px 0; }
    .boat-spec-row { flex-direction: column; gap: 2px; }
    .boat-spec-row dd { font-size: 14px; text-align: left; }
}

/* ===== Catalog hub (model cards) ===== */
.boat-catalog {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 18px;
    margin-top: 8px;
}
.cat-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--bg-card);
    border: 1px solid #1f1f1f;
    overflow: hidden;
    transition: border-color .2s, transform .2s;
}
.cat-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.cat-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; }
.cat-card-body { padding: 16px 18px; }
.cat-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.cat-card h3 { font-size: 18px; margin: 0 0 8px; }
.cat-card p { color: rgba(255, 255, 255, .7); font-size: 14px; line-height: 1.55; margin: 0; }
.cat-card-more { display: inline-block; margin-top: 12px; font-family: var(--mono); font-size: 12px; letter-spacing: .06em; color: var(--accent); }

/* ===== FAQ (FAQPage) ===== */
.boat-faq { margin-top: 8px; max-width: 820px; }
.boat-faq details { border-bottom: 1px solid #1c1c1c; padding: 16px 0; }
.boat-faq summary { cursor: pointer; font-weight: 600; font-size: 16px; list-style: none; }
.boat-faq summary::-webkit-details-marker { display: none; }
.boat-faq summary::before { content: "+ "; color: var(--accent); }
.boat-faq details[open] summary::before { content: "– "; }
.boat-faq p { color: rgba(255, 255, 255, .72); line-height: 1.7; margin: 12px 0 0; font-weight: 300; max-width: none; }
