/* ============================================================
   Frostline Service Co · Fridge & Freezer Repair
   Cool kitchen · off-white + frost blue + soft mint
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
    /* Off-whites + paper */
    --paper: #f6f8fa;
    --paper-2: #eef2f6;
    --bone: #fcfdff;
    --shell: #ffffff;
    --ice: #e8eff6;
    --rule: #d6dce4;

    /* Frost blue accent */
    --frost: #4c7fbf;
    --frost-deep: #2d5c97;
    --frost-soft: #7da3ce;
    --frost-pale: #c8d8ea;
    --frost-mist: #e5edf6;
    --frost-glow: #f0f6fc;

    /* Soft mint accent (secondary) */
    --mint: #84c9a8;
    --mint-deep: #4ea888;
    --mint-soft: #b3dbc5;
    --mint-pale: #d9eee5;
    --mint-mist: #ecf6f1;

    /* Ink + neutrals */
    --ink: #0f1a2c;
    --ink-soft: #1f2b40;
    --graphite: #344158;
    --slate: #5a6679;
    --stone: #7a8497;
    --silver: #a8b0bf;
    --silver-soft: #c5cbd6;

    /* Status colors */
    --warn: #d97706;
    --warn-pale: #fed7aa;
    --good: var(--mint-deep);
    --good-pale: var(--mint-pale);

    --line: rgba(15, 26, 44, 0.1);
    --line-soft: rgba(15, 26, 44, 0.04);
    --line-strong: rgba(15, 26, 44, 0.22);

    --shadow-sm: 0 1px 2px rgba(45, 92, 151, 0.05);
    --shadow: 0 8px 24px rgba(45, 92, 151, 0.08);
    --shadow-lg: 0 24px 48px rgba(45, 92, 151, 0.14);

    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, monospace;

    --max: 1300px;
    --r: 8px;
    --r-md: 12px;
    --r-lg: 20px;
    --r-pill: 100px;
    --t: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: -0.02em;
    color: var(--ink);
}

a { color: inherit; text-decoration: none; transition: var(--t); }
a:focus-visible { outline: 2px solid var(--frost); outline-offset: 3px; border-radius: 4px; }
img, svg { max-width: 100%; display: block; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

/* ============================================================
   HEADER — clean, rounded
   ============================================================ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(246, 248, 250, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}
.header-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
}
/* Brand mark: snowflake circle in frost gradient */
.brand-mark {
    width: 38px; height: 38px;
    flex: none;
    background: linear-gradient(135deg, var(--frost) 0%, var(--frost-deep) 100%);
    position: relative;
    display: grid;
    place-items: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(45, 92, 151, 0.22);
}
.brand-mark svg { color: var(--shell); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text .name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: -0.015em;
    color: var(--ink);
}
.brand-text .tag {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--frost-deep);
    letter-spacing: 0.06em;
    font-weight: 500;
    margin-top: 4px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
}
.nav-link {
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ink-soft);
    padding: 8px 16px;
    transition: var(--t);
    position: relative;
    border-radius: var(--r-pill);
}
.nav-link:hover { color: var(--frost-deep); background: var(--frost-mist); }
.nav-link.active {
    color: var(--frost-deep);
    background: var(--frost-mist);
    font-weight: 600;
}
.nav-cta {
    background: var(--frost) !important;
    color: var(--shell) !important;
    padding: 11px 20px !important;
    font-weight: 600 !important;
    margin-left: 10px;
    font-size: 12.5px !important;
    border-radius: var(--r-pill);
    box-shadow: 0 4px 12px rgba(45, 92, 151, 0.2);
}
.nav-cta:hover { background: var(--frost-deep) !important; transform: translateY(-1px); }
.burger {
    display: none;
    background: var(--frost-mist);
    border: 1px solid var(--line);
    color: var(--ink);
    width: 40px; height: 40px;
    border-radius: var(--r);
    font-size: 16px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

/* ============================================================
   SHARED — Buttons
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    padding: 14px 24px;
    cursor: pointer;
    border: 0;
    transition: var(--t);
    border-radius: var(--r-pill);
    letter-spacing: 0;
}
.btn-primary {
    background: var(--frost);
    color: var(--shell);
    box-shadow: 0 6px 16px rgba(45, 92, 151, 0.22);
}
.btn-primary:hover {
    background: var(--frost-deep);
    color: var(--shell);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(45, 92, 151, 0.3);
}
.btn-mint {
    background: var(--mint-deep);
    color: var(--shell);
}
.btn-mint:hover { background: var(--frost-deep); transform: translateY(-2px); }
.btn-ghost {
    background: var(--shell);
    color: var(--frost-deep);
    border: 1.5px solid var(--frost-pale);
}
.btn-ghost:hover {
    background: var(--frost);
    color: var(--shell);
    border-color: var(--frost);
}
.btn .ar { transition: transform 0.3s ease; }
.btn:hover .ar { transform: translateX(3px); }

.btn-link {
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--frost-deep);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 3px;
    border-bottom: 1.5px solid var(--frost);
    transition: var(--t);
}
.btn-link:hover {
    color: var(--ink);
    border-color: var(--ink);
    gap: 14px;
}

/* ============================================================
   SHARED — Section base + heads
   ============================================================ */
.section { padding: 110px 0; position: relative; }
.section-bone { background: var(--bone); }
.section-paper { background: var(--paper); }
.section-mist { background: var(--frost-mist); }

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--frost-deep);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 22px;
    background: var(--frost-mist);
    padding: 7px 14px;
    border-radius: var(--r-pill);
}
.section-tag::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--frost);
    border-radius: 50%;
}

.section-head { max-width: 900px; margin-bottom: 60px; }
.section-head h2 {
    font-size: clamp(40px, 5.6vw, 78px);
    line-height: 1;
    margin-bottom: 22px;
    letter-spacing: -0.025em;
    font-weight: 400;
}
.section-head h2 em {
    font-style: italic;
    color: var(--frost-deep);
    font-weight: 400;
}
.section-head h2 .mint {
    color: var(--mint-deep);
    font-style: italic;
}
.section-head .lead {
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.7;
    max-width: 680px;
}
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .section-tag { justify-content: center; }
.section-head.center .lead { margin-left: auto; margin-right: auto; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
}
/* Subtle frost dot grid */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, var(--frost-pale) 1px, transparent 1.5px);
    background-size: 28px 28px;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, var(--ink) 0%, transparent 70%);
    -webkit-mask-image: linear-gradient(to bottom, var(--ink) 0%, transparent 70%);
    opacity: 0.45;
}
.hero .wrap { position: relative; z-index: 1; }

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--frost-deep);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 28px;
    padding: 7px 14px;
    background: var(--shell);
    border-radius: var(--r-pill);
    border: 1px solid var(--frost-pale);
    box-shadow: var(--shadow-sm);
}
.hero-eyebrow .dot {
    width: 8px; height: 8px;
    background: var(--mint-deep);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--mint-pale);
    animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero h1 {
    font-size: clamp(56px, 8vw, 112px);
    line-height: 0.94;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 28px;
    font-weight: 400;
}
.hero h1 em {
    font-style: italic;
    color: var(--frost-deep);
    font-weight: 400;
}
.hero h1 .mint {
    color: var(--mint-deep);
    font-style: italic;
}

.hero .lead {
    font-size: 18px;
    color: var(--ink-soft);
    line-height: 1.65;
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

/* Hero stats — soft rounded card row */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 48px;
    background: var(--shell);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 4px;
    box-shadow: var(--shadow-sm);
}
.hero-stat {
    padding: 16px 18px;
    border-right: 1px solid var(--line-soft);
}
.hero-stat:last-child { border-right: 0; }
.hero-stat .v {
    font-family: var(--font-display);
    font-size: 36px;
    line-height: 1;
    color: var(--ink);
    letter-spacing: -0.022em;
    font-weight: 400;
}
.hero-stat .v em {
    font-style: italic;
    color: var(--frost-deep);
}
.hero-stat .v .unit {
    font-family: var(--font-mono);
    font-size: 0.34em;
    color: var(--frost-deep);
    margin-left: 4px;
    font-weight: 600;
    text-transform: uppercase;
}
.hero-stat .l {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--slate);
    letter-spacing: 0.06em;
    margin-top: 6px;
    text-transform: uppercase;
}

/* Hero image — soft rounded, mint accent corner */
.hero-image {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--ice);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
}
.hero-image img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.hero-image-placeholder {
    width: 100%; height: 100%;
    background:
        linear-gradient(180deg, var(--frost-mist) 0%, var(--ice) 60%, var(--frost-pale) 100%);
    display: grid;
    place-items: center;
    color: var(--frost-deep);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 22px;
    text-align: center;
    padding: 32px;
    position: relative;
    overflow: hidden;
}
/* Snowflakes background pattern */
.hero-image-placeholder::before {
    content: '❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄';
    position: absolute;
    inset: 0;
    color: var(--frost-pale);
    font-size: 28px;
    line-height: 1.8;
    text-align: justify;
    letter-spacing: 0.3em;
    padding: 12px;
    opacity: 0.5;
}
.hero-image-placeholder::after {
    content: '';
    position: absolute;
    inset: 24px;
    border: 1.5px dashed var(--frost-soft);
    border-radius: var(--r-md);
}
.hero-image-placeholder .ph-text {
    position: relative;
    z-index: 1;
    background: var(--shell);
    padding: 18px 26px;
    border-radius: var(--r);
    box-shadow: var(--shadow);
    color: var(--ink);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 20px;
}
.hero-image-placeholder .ph-text span {
    display: block;
    font-family: var(--font-mono);
    font-style: normal;
    font-size: 10px;
    color: var(--frost-deep);
    margin-top: 6px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* Floating badges */
.hero-tag {
    position: absolute;
    top: 22px; left: 22px;
    background: var(--shell);
    color: var(--ink);
    padding: 9px 14px;
    border-radius: var(--r-pill);
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
    box-shadow: var(--shadow);
}
.hero-tag .dot {
    width: 8px; height: 8px;
    background: var(--mint-deep);
    border-radius: 50%;
    animation: pulse-dot 2.4s ease-in-out infinite;
}

.hero-rating {
    position: absolute;
    bottom: 22px; right: 22px;
    background: var(--shell);
    padding: 14px 18px;
    border-radius: var(--r-md);
    z-index: 2;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 12px;
}
.hero-rating .stars {
    color: var(--mint-deep);
    font-size: 16px;
    letter-spacing: 2px;
}
.hero-rating .text {
    font-family: var(--font-mono);
}
.hero-rating .v {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    color: var(--ink);
    line-height: 1;
}
.hero-rating .l {
    font-size: 10px;
    color: var(--slate);
    letter-spacing: 0.04em;
    margin-top: 3px;
    text-transform: uppercase;
}

/* ============================================================
   SERVICE FLOW — signature element (4-step horizontal timeline)
   ============================================================ */
.service-flow {
    background: var(--shell);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 50px 50px;
    box-shadow: var(--shadow);
}
.flow-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}
.flow-head h3 {
    font-size: 32px;
    line-height: 1;
    color: var(--ink);
    font-weight: 400;
    letter-spacing: -0.018em;
    max-width: 540px;
}
.flow-head h3 em { font-style: italic; color: var(--frost-deep); }
.flow-head .meta {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--slate);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.flow-head .meta strong { color: var(--frost-deep); }

.flow-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}
/* Connecting dotted line */
.flow-steps::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: repeating-linear-gradient(to right,
        var(--frost-pale) 0,
        var(--frost-pale) 5px,
        transparent 5px,
        transparent 10px);
    z-index: 0;
}
.flow-step {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 12px;
}
.flow-step .marker {
    width: 44px;
    height: 44px;
    background: var(--shell);
    border: 2px solid var(--frost);
    border-radius: 50%;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    color: var(--frost-deep);
    position: relative;
}
.flow-step.done .marker {
    background: var(--frost);
    color: var(--shell);
}
.flow-step .time {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--frost-deep);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 6px;
}
.flow-step .name {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--ink);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 8px;
    letter-spacing: -0.012em;
}
.flow-step .name em { color: var(--frost-deep); font-style: italic; }
.flow-step .desc {
    font-size: 13px;
    color: var(--slate);
    line-height: 1.55;
}

/* ============================================================
   SERVICES (3-card with mint icon)
   ============================================================ */
.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.svc-card {
    background: var(--shell);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 36px 30px;
    transition: var(--t);
    position: relative;
    overflow: hidden;
}
.svc-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--frost-pale);
}
.svc-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 60px; height: 4px;
    background: var(--mint);
    border-radius: 0 0 4px 0;
}
.svc-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--frost-deep);
    margin-bottom: 22px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.svc-icon {
    width: 56px; height: 56px;
    background: var(--mint-mist);
    color: var(--mint-deep);
    border-radius: var(--r);
    display: grid;
    place-items: center;
    margin-bottom: 22px;
}
.svc-card h3 {
    font-size: 28px;
    line-height: 1.1;
    margin-bottom: 12px;
    color: var(--ink);
    font-weight: 400;
    letter-spacing: -0.02em;
}
.svc-card h3 em { font-style: italic; color: var(--frost-deep); }
.svc-card p {
    color: var(--ink-soft);
    font-size: 14.5px;
    line-height: 1.7;
}
.svc-card .price-from {
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--slate);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.svc-card .price-from .v {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--frost-deep);
    font-weight: 400;
    letter-spacing: -0.015em;
    font-style: italic;
}

/* ============================================================
   COMMON FAULTS — checklist signature
   ============================================================ */
.faults-block {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}
.faults-text h3 {
    font-size: 36px;
    line-height: 1.05;
    color: var(--ink);
    font-weight: 400;
    letter-spacing: -0.022em;
    margin-bottom: 18px;
}
.faults-text h3 em { font-style: italic; color: var(--frost-deep); }
.faults-text p {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.fault-list {
    background: var(--shell);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    overflow: hidden;
}
.fault-row {
    display: grid;
    grid-template-columns: 36px 1fr 90px;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid var(--line-soft);
    gap: 16px;
    transition: background 0.2s ease;
}
.fault-row:last-child { border-bottom: 0; }
.fault-row:hover { background: var(--frost-glow); }
.fault-row .icon {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--mint-mist);
    color: var(--mint-deep);
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 700;
}
.fault-row .text {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--ink);
    font-weight: 500;
    line-height: 1.4;
}
.fault-row .text small {
    display: block;
    color: var(--slate);
    font-weight: 400;
    font-size: 12.5px;
    margin-top: 2px;
}
.fault-row .freq {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--frost-deep);
    text-align: right;
    background: var(--frost-mist);
    padding: 5px 9px;
    border-radius: var(--r);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
}

/* ============================================================
   PRICING / CATALOGUE listing
   ============================================================ */
.fleet-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 36px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}
.filter-group {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.filter-chip {
    background: var(--shell);
    border: 1px solid var(--line);
    color: var(--ink-soft);
    padding: 8px 16px;
    border-radius: var(--r-pill);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--t);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.filter-chip:hover { border-color: var(--frost); color: var(--frost-deep); }
.filter-chip.active {
    background: var(--frost);
    color: var(--shell);
    border-color: var(--frost);
}
.filter-count {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--slate);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.filter-count strong {
    color: var(--frost-deep);
    font-weight: 700;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.svc-listing {
    background: var(--shell);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: var(--t);
    display: flex;
    flex-direction: column;
}
.svc-listing:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--frost-pale);
}
.svc-listing-photo {
    aspect-ratio: 4 / 3;
    background: var(--ice);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}
.svc-listing-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.svc-listing:hover .svc-listing-photo img { transform: scale(1.04); }
.svc-listing-photo-ph {
    width: 100%; height: 100%;
    background:
        linear-gradient(180deg, var(--frost-mist) 0%, var(--ice) 50%, var(--frost-pale) 100%);
    position: relative;
}
.svc-listing-photo-ph::before {
    content: '❄';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: var(--shell);
    font-size: 48px;
    opacity: 0.6;
}
.svc-listing-photo-ph::after {
    content: '';
    position: absolute;
    inset: 16px;
    border: 1.5px dashed var(--frost-soft);
    border-radius: var(--r);
}
.svc-listing-photo-ph .ph-label {
    position: absolute;
    bottom: 10px; left: 10px;
    color: var(--frost-deep);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    z-index: 1;
    background: var(--shell);
    padding: 4px 8px;
    border-radius: 4px;
}

.svc-category {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--shell);
    color: var(--ink);
    padding: 5px 12px;
    border-radius: var(--r-pill);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    z-index: 1;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
}
.svc-category.cool { background: var(--frost-mist); color: var(--frost-deep); }
.svc-category.freeze { background: var(--shell); color: var(--ink); }
.svc-category.commercial { background: var(--mint-mist); color: var(--mint-deep); }

.svc-time {
    position: absolute;
    top: 12px; right: 12px;
    background: rgba(15, 26, 44, 0.86);
    color: var(--shell);
    padding: 4px 10px;
    border-radius: var(--r-pill);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    z-index: 1;
    letter-spacing: 0.04em;
}

.svc-listing-body {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.svc-sku {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--frost-deep);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
}
.svc-listing h3 {
    font-size: 24px;
    line-height: 1.1;
    color: var(--ink);
    font-weight: 400;
    letter-spacing: -0.018em;
}
.svc-listing h3 em { font-style: italic; color: var(--frost-deep); }
.svc-listing p.desc {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.6;
}
.svc-includes {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
    padding-top: 14px;
    border-top: 1px solid var(--line-soft);
}
.svc-includes .tag {
    background: var(--frost-glow);
    color: var(--frost-deep);
    padding: 4px 10px;
    border-radius: var(--r-pill);
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.svc-foot {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}
.svc-foot .period {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--slate);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.svc-foot .period strong { color: var(--ink); }
.svc-price {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    font-style: italic;
    color: var(--frost-deep);
    letter-spacing: -0.022em;
    line-height: 1;
}
.svc-price .cur {
    font-size: 0.5em;
    color: var(--slate);
    margin-right: 3px;
    vertical-align: top;
    font-family: var(--font-mono);
    font-style: normal;
}

/* ============================================================
   SERVICE DETAIL PAGE
   ============================================================ */
.detail-hero {
    padding: 150px 0 70px;
}
.detail-hero-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 26px;
    margin-bottom: 44px;
    border-bottom: 1px solid var(--line);
    flex-wrap: wrap;
    gap: 20px;
}
.detail-hero-top .make {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--slate);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.detail-hero-top .make strong { color: var(--frost-deep); }
.detail-hero-top h1 {
    font-size: clamp(52px, 7vw, 100px);
    line-height: 0.95;
    letter-spacing: -0.028em;
    font-weight: 400;
    margin-top: 14px;
}
.detail-hero-top h1 em { font-style: italic; color: var(--frost-deep); }
.detail-hero-top .right-block { text-align: right; }
.detail-hero-top .duration {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1;
    color: var(--mint-deep);
    font-weight: 400;
    letter-spacing: -0.02em;
}
.detail-hero-top .warranty {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--mint-deep);
    background: var(--mint-pale);
    padding: 5px 12px;
    border-radius: var(--r-pill);
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.detail-hero-top .warranty .dot {
    width: 7px; height: 7px;
    background: var(--mint-deep);
    border-radius: 50%;
}

.detail-gallery {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 18px;
}
.detail-gallery-main {
    aspect-ratio: 16 / 11;
    background: var(--ice);
    overflow: hidden;
    border-radius: var(--r-md);
}
.detail-gallery-main img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.detail-gallery-main .svc-listing-photo-ph { width: 100%; height: 100%; }
.detail-gallery-side {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.detail-gallery-side > div {
    aspect-ratio: 4 / 3;
    background: var(--ice);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: var(--r-md);
    transition: var(--t);
    position: relative;
}
.detail-gallery-side > div:hover { border-color: var(--frost); }
.detail-gallery-side > div img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.detail-gallery-side .svc-listing-photo-ph { width: 100%; height: 100%; }

.detail-info-block {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: start;
}
.detail-info-text .desc {
    font-size: 22px;
    color: var(--ink);
    line-height: 1.45;
    margin-bottom: 26px;
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: -0.015em;
    font-style: italic;
}
.detail-info-text .desc em { color: var(--frost-deep); }
.detail-info-text p {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 16px;
}
.detail-info-text p:last-child { margin-bottom: 0; }
.detail-info-text strong { color: var(--ink); font-weight: 600; }

.detail-booking-card {
    background: var(--shell);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 34px 30px;
    position: relative;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--mint);
}
.detail-booking-card .label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--frost-deep);
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.detail-booking-card .price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}
.detail-booking-card .price-base {
    font-family: var(--font-display);
    font-size: 52px;
    color: var(--frost-deep);
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.028em;
    line-height: 1;
}
.detail-booking-card .price-base .cur {
    font-size: 0.4em;
    color: var(--slate);
    margin-right: 4px;
    vertical-align: top;
    font-family: var(--font-mono);
    font-style: normal;
}
.detail-booking-card .price-detail {
    text-align: right;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.detail-booking-card .price-detail strong {
    display: block;
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--ink);
    margin-top: 4px;
    font-style: italic;
}
.detail-booking-card ul {
    list-style: none;
    margin-bottom: 22px;
}
.detail-booking-card ul li {
    padding: 8px 0 8px 26px;
    position: relative;
    font-size: 13.5px;
    color: var(--ink-soft);
    line-height: 1.55;
}
.detail-booking-card ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 11px;
    width: 14px; height: 14px;
    background: var(--mint-mist);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3.5 7l2.5 2.5L10.5 4.5' stroke='%234ea888' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}
.detail-booking-card .btn { width: 100%; justify-content: center; }

/* SPECS — what we replace */
.detail-parts-block {
    margin-top: 72px;
    padding-top: 50px;
    border-top: 1px solid var(--line);
}
.detail-parts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 30px;
}
.part-cell {
    background: var(--shell);
    border: 1px solid var(--line);
    padding: 22px 22px;
    border-radius: var(--r-md);
    transition: var(--t);
}
.part-cell:hover { border-color: var(--frost-pale); transform: translateY(-2px); }
.part-cell .label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--frost-deep);
    letter-spacing: 0.06em;
    margin-bottom: 10px;
    background: var(--frost-mist);
    padding: 3px 8px;
    border-radius: var(--r);
    display: inline-block;
    text-transform: uppercase;
}
.part-cell .v {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--ink);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.015em;
}
.part-cell .v .mono-small {
    font-family: var(--font-mono);
    font-size: 0.6em;
    color: var(--slate);
    margin-left: 4px;
    font-weight: 500;
    text-transform: uppercase;
}

/* Process steps */
.process-block {
    margin-top: 72px;
    padding-top: 50px;
    border-top: 1px solid var(--line);
}
.process-list {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.process-step {
    background: var(--shell);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 22px 24px;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 16px;
    align-items: start;
    transition: var(--t);
}
.process-step:hover { border-color: var(--frost-pale); }
.process-step .num {
    width: 36px; height: 36px;
    background: var(--frost-mist);
    color: var(--frost-deep);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
}
.process-step h4 {
    font-size: 17px;
    color: var(--ink);
    font-weight: 400;
    margin-bottom: 4px;
    letter-spacing: -0.012em;
}
.process-step p {
    font-size: 13.5px;
    color: var(--slate);
    line-height: 1.6;
}

/* ============================================================
   ABOUT — story + crew + facts
   ============================================================ */
.about-hero {
    padding: 150px 0 80px;
    border-bottom: 1px solid var(--line);
}
.about-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: end;
}
.about-hero h1 {
    font-size: clamp(50px, 7vw, 96px);
    line-height: 0.95;
    margin-bottom: 28px;
    font-weight: 400;
    letter-spacing: -0.028em;
}
.about-hero h1 em { font-style: italic; color: var(--frost-deep); }
.about-hero .lead {
    font-size: 18px;
    color: var(--ink-soft);
    line-height: 1.65;
    margin-bottom: 32px;
    max-width: 540px;
}
.about-hero-image {
    aspect-ratio: 4 / 5;
    background: var(--ice);
    overflow: hidden;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
}
.about-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.about-hero-image .svc-listing-photo-ph { width: 100%; height: 100%; }

/* Logbook story */
.logbook {
    max-width: 840px;
    margin: 0 auto;
}
.logbook h2 { margin-bottom: 50px; text-align: center; }
.log-row {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 36px;
    padding: 26px 0;
    border-bottom: 1px solid var(--line);
    align-items: start;
}
.log-row:last-child { border-bottom: 0; }
.log-row .year {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 36px;
    color: var(--frost-deep);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.02em;
}
.log-row .text p {
    color: var(--ink-soft);
    font-size: 15.5px;
    line-height: 1.75;
    margin-bottom: 12px;
}
.log-row .text p:last-child { margin-bottom: 0; }
.log-row .text p strong { color: var(--ink); font-weight: 600; }

/* Facts band */
.facts-band {
    background: linear-gradient(135deg, var(--frost-deep) 0%, var(--frost) 100%);
    color: var(--shell);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.facts-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1.5px);
    background-size: 28px 28px;
    pointer-events: none;
}
.facts-band .wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
}
.fact {
    padding: 0 32px;
    border-right: 1px solid rgba(255,255,255,0.18);
}
.fact:first-child { padding-left: 0; }
.fact:last-child { border-right: 0; padding-right: 0; }
.fact .v {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 58px;
    line-height: 1;
    color: var(--shell);
    font-weight: 400;
    letter-spacing: -0.028em;
    margin-bottom: 10px;
}
.fact .v em { color: var(--mint-soft); font-style: italic; font-size: 0.65em; }
.fact .l {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--frost-pale);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Crew */
.crew-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.crew-card {
    background: var(--shell);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: var(--t);
}
.crew-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--frost-pale); }
.crew-photo {
    aspect-ratio: 4 / 5;
    background: var(--ice);
    overflow: hidden;
}
.crew-photo img { width: 100%; height: 100%; object-fit: cover; }
.crew-photo .svc-listing-photo-ph { width: 100%; height: 100%; }
.crew-info {
    padding: 22px 24px 24px;
}
.crew-role {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--frost-deep);
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.crew-name {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--ink);
    font-weight: 400;
    letter-spacing: -0.018em;
    margin-bottom: 12px;
}
.crew-name em { color: var(--frost-deep); font-style: italic; }
.crew-bio {
    font-size: 13.5px;
    color: var(--ink-soft);
    line-height: 1.7;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-page {
    padding: 150px 0 100px;
}
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: start;
}
.contact-side h1 {
    font-size: clamp(48px, 6.4vw, 86px);
    line-height: 0.96;
    margin-bottom: 24px;
    letter-spacing: -0.028em;
    font-weight: 400;
}
.contact-side h1 em { font-style: italic; color: var(--frost-deep); }
.contact-side .lead {
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.65;
    margin-bottom: 36px;
    max-width: 480px;
}
.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.contact-card {
    background: var(--shell);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 22px;
    transition: var(--t);
}
.contact-card:hover { border-color: var(--frost-pale); box-shadow: var(--shadow-sm); }
.contact-card .label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--frost-deep);
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.contact-card .value {
    color: var(--ink);
    font-size: 14px;
    line-height: 1.55;
}
.contact-card .value a:hover { color: var(--frost-deep); }
.contact-card .value .phone {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 26px;
    color: var(--frost-deep);
    font-weight: 400;
    letter-spacing: -0.018em;
}

.contact-form-wrap {
    background: var(--shell);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 40px;
    position: relative;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--frost);
}
.contact-form h3 {
    font-size: 28px;
    color: var(--ink);
    margin-bottom: 28px;
    font-weight: 400;
    letter-spacing: -0.018em;
}
.contact-form h3 em { color: var(--frost-deep); font-style: italic; }
.form-row { margin-bottom: 16px; }
.form-row-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.form-row label {
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--frost-deep);
    letter-spacing: 0.1em;
    margin-bottom: 7px;
    font-weight: 600;
    text-transform: uppercase;
}
.form-row input,
.form-row textarea,
.form-row select {
    width: 100%;
    padding: 12px 14px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--r);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--t);
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
    outline: 0;
    border-color: var(--frost);
    background: var(--shell);
    box-shadow: 0 0 0 3px var(--frost-mist);
}
.form-row select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%234c7fbf' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}
.form-row textarea { resize: vertical; min-height: 100px; }
.form-row input::placeholder,
.form-row textarea::placeholder { color: var(--silver-soft); }
.contact-form .btn { width: 100%; justify-content: center; margin-top: 4px; }

.form-success {
    display: none;
    text-align: center;
    padding: 30px 20px;
}
.form-success.show { display: block; }
.form-success .check {
    width: 64px; height: 64px;
    background: var(--mint-deep);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 22px;
    color: var(--shell);
    font-size: 30px;
}
.form-success h3 {
    color: var(--ink);
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 400;
}
.form-success p {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.65;
}
.contact-form.hidden { display: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--paper-2);
    padding: 70px 0 34px;
    border-top: 1px solid var(--line);
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 26px;
}
.footer-brand p {
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.7;
    max-width: 340px;
    margin-top: 16px;
}
.footer-col h5 {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--frost-deep);
    letter-spacing: 0.12em;
    margin-bottom: 18px;
    font-weight: 600;
    text-transform: uppercase;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col li a, .footer-col li {
    color: var(--ink-soft);
    font-size: 14px;
}
.footer-col li a:hover { color: var(--frost-deep); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--slate);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.footer-bottom .sep { color: var(--frost); margin: 0 6px; }

/* ============================================================
   Cookie banner
   ============================================================ */
.cookie {
    position: fixed;
    bottom: 20px; left: 20px; right: 20px;
    max-width: 540px;
    margin: 0 auto;
    background: var(--shell);
    color: var(--ink);
    border-radius: var(--r-md);
    padding: 22px 26px;
    z-index: 100;
    display: none;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--mint);
}
.cookie.show { display: flex; }
.cookie p {
    flex: 1;
    min-width: 220px;
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--ink-soft);
}
.cookie a { color: var(--frost-deep); text-decoration: underline; }
.cookie button {
    padding: 9px 18px;
    border: 0;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--r-pill);
}
.cookie .accept { background: var(--frost); color: var(--shell); }
.cookie .decline {
    background: transparent;
    color: var(--slate);
    border: 1px solid var(--line);
}

/* ============================================================
   Animations
   ============================================================ */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
    .header-inner { padding: 14px 20px; }
    .brand-text .name { font-size: 18px; }
    .nav-links {
        position: fixed;
        top: 72px; left: 12px; right: 12px;
        background: var(--shell);
        border: 1px solid var(--line);
        border-radius: var(--r-md);
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        gap: 2px;
        display: none;
        box-shadow: var(--shadow);
    }
    .nav-links.open { display: flex; }
    .nav-link { padding: 12px 18px; border-radius: var(--r); }
    .nav-cta { margin-left: 0; margin-top: 6px; text-align: center; }
    .burger { display: flex; }

    .hero { padding: 120px 0 60px; }
    .hero-grid, .about-hero-grid, .contact-page-grid, .detail-info-block, .faults-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-image, .about-hero-image { max-height: 580px; aspect-ratio: 4 / 4.4; }
    .hero-stat .v { font-size: 28px; }
    .detail-hero-top { flex-direction: column; align-items: flex-start; }
    .detail-hero-top .right-block { text-align: left; }

    .services, .fleet-grid, .crew-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .detail-parts-grid { grid-template-columns: repeat(2, 1fr); }
    .detail-gallery { grid-template-columns: 1fr; }
    .process-list { grid-template-columns: 1fr; }
    .section { padding: 70px 0; }

    .service-flow { padding: 30px 26px; }
    .flow-steps { grid-template-columns: 1fr; gap: 24px; }
    .flow-steps::before { display: none; }
    .flow-step { display: flex; align-items: flex-start; gap: 18px; text-align: left; padding: 0; }
    .flow-step .marker { margin: 0; flex: none; }
    .flow-step > div { flex: 1; }

    .facts-band .wrap { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
    .fact { padding: 0 16px !important; }
    .fact:nth-child(2) { border-right: 0; }
    .fact:nth-child(3) { padding-left: 0 !important; }
    .fact .v { font-size: 44px; }

    .contact-form-wrap { padding: 28px; }
    .contact-cards { grid-template-columns: 1fr; }
    .form-row-pair { grid-template-columns: 1fr; }
    .log-row { grid-template-columns: 1fr; gap: 12px; }
}
@media (max-width: 540px) {
    .wrap { padding: 0 18px; }
    .hero h1 { font-size: 46px; }
    .detail-parts-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .facts-band .wrap { grid-template-columns: 1fr; }
    .fact { border-right: 0 !important; }
}
