@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #F94735;
    --secondary: #0f313a;
    --body: #575a7b;
    --light: #f1f7ff;
    --line: #e4e4e4;
    --white: #ffffff;
    --radius: 0;
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.3px;
    color: var(--body);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--secondary);
    margin: 0 0 1rem;
    line-height: 1.12;
}

h2 { font-size: 2.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p { margin: 0 0 1.1rem; }

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--secondary); }

img { max-width: 100%; display: block; }

/* ── layout helpers ───────────────────────────────────────────── */
.ft-section { padding: 120px 5vw; }
.ft-section.alt { background: var(--light); }
.ft-inner { max-width: 1240px; margin: 0 auto; }

.ft-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}
.ft-label::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--primary);
    vertical-align: middle;
    margin-right: 10px;
}

.ft-lead { font-size: 1.0625rem; max-width: 62ch; }

/* ── buttons ──────────────────────────────────────────────────── */
.btn-primary,
.btn-ghost,
.btn-submit,
.mob-cta,
.btn-cta {
    display: inline-block;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 13px 34px;
    border-radius: var(--radius);
    border: 2px solid var(--primary);
    background: var(--primary);
    color: var(--white);
    cursor: pointer;
    transition: background .25s ease, color .25s ease, transform .25s ease;
}
.btn-primary:hover,
.btn-submit:hover,
.btn-cta:hover,
.mob-cta:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

.btn-ghost {
    background: transparent;
    border-color: rgba(255,255,255,.55);
    color: var(--white);
}
.btn-ghost:hover { background: var(--white); border-color: var(--white); color: var(--secondary); }

.btn-submit { border-radius: 4px; margin-top: 1rem; }

.btn-link {
    display: inline-block;
    background: transparent;
    border: 0;
    padding: 0;
    font: inherit;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    color: var(--secondary);
    cursor: pointer;
}
.btn-link:hover { color: var(--primary); }

/* ── header ───────────────────────────────────────────────────── */
/* Fixed (not sticky): the engine wraps each block in its own div, and a sticky
   element only sticks within that short wrapper — so it must be fixed to the
   viewport. A spacer below reserves its height so the next block isn't hidden. */
.ft-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 16px 5vw;
    background: var(--secondary);
    border-bottom: 1px solid rgba(255,255,255,.12);
    transition: padding .25s ease, box-shadow .25s ease;
}
.ft-header-spacer { height: 74px; }
/* Scroll: invert to a light bar (like franctransport.com) — white background,
   dark logo + dark text. */
.ft-header.scrolled {
    padding: 10px 5vw;
    background: #fff;
    border-bottom-color: rgba(15,49,58,.10);
    box-shadow: 0 6px 24px rgba(15,49,58,.12);
}

.ft-logo { display: inline-flex; align-items: center; }
.ft-logo img { height: 42px; width: auto; object-fit: contain; }
.ft-logo-dark { display: none; }
.ft-header.scrolled .ft-logo-light { display: none; }
.ft-header.scrolled .ft-logo-dark { display: inline-block; }

/* dark-on-light nav + controls when scrolled */
.ft-header.scrolled .ft-nav > li > a { color: var(--secondary); }
.ft-header.scrolled .ft-nav > li > a:hover,
.ft-header.scrolled .ft-nav > li > a.active { color: var(--primary); }
.ft-header.scrolled .ft-lang__opt { border-color: rgba(15,49,58,.2); color: var(--secondary); }
.ft-header.scrolled .ft-lang__opt:hover { border-color: var(--primary); color: var(--primary); }
.ft-header.scrolled .ft-lang__opt.is-current { background: var(--primary); border-color: var(--primary); color: #fff; }
.ft-header.scrolled .nav-hamburger { border-color: rgba(15,49,58,.25); }
.ft-header.scrolled .nav-hamburger span { background: var(--secondary); }

.ft-nav {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    list-style: none;
    margin: 0 0 0 auto;
    padding: 0;
}
.ft-nav a {
    color: rgba(255,255,255,.85);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: .3px;
    transition: color .2s ease;
}
.ft-nav a:hover, .ft-nav a.active { color: var(--primary); }
.ft-nav li { position: relative; }

/* ── dropdown (snippet-root parents: Služby / Provozovny) ─────────── */
.ft-nav .ft-parent { display: inline-flex; align-items: center; gap: .3rem; }
.ft-caret { font-size: .7em; line-height: 1; transition: transform .2s ease; }
.ft-has-children:hover .ft-caret { transform: rotate(180deg); }
.ft-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    margin: 0;
    padding: 8px;
    list-style: none;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(15,49,58,.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    z-index: 70;
}
.ft-has-children:hover > .ft-dropdown,
.ft-has-children:focus-within > .ft-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(6px);
}
.ft-dropdown li { position: static; }
.ft-dropdown a {
    display: block;
    padding: 9px 14px;
    border-radius: 8px;
    color: var(--secondary);
    font-size: .9rem;
    font-weight: 600;
    white-space: nowrap;
}
.ft-dropdown a:hover { background: var(--secondary); color: #fff; }

/* ── language selector ───────────────────────────────────────────── */
.ft-lang { display: flex; align-items: center; gap: .25rem; }
.ft-lang__opt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    padding: 5px 9px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.22);
    color: rgba(255,255,255,.82);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .5px;
    line-height: 1;
    transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.ft-lang__opt:hover { color: #fff; border-color: var(--primary); }
.ft-lang__opt.is-current { background: var(--primary); border-color: var(--primary); color: #fff; }
.ft-lang__flag { width: 20px; height: 14px; object-fit: cover; border-radius: 2px; display: block; }

.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0 10px;
    background: transparent;
    border: 1px solid rgba(255,255,255,.25);
    cursor: pointer;
}
.nav-hamburger span { display: block; height: 2px; background: #fff; }

.mobile-menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 86vw);
    background: var(--secondary);
    padding: 96px 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    transform: translateX(105%);
    transition: transform .3s ease;
    z-index: 55;
    overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { color: #fff; font-weight: 600; font-size: 1.05rem; }
.mobile-menu a:hover { color: var(--primary); }
.mobile-menu .ft-mob-child { padding-left: 18px; font-size: .95rem; opacity: .8; font-weight: 500; }
.ft-mob-lang { display: flex; gap: .5rem; margin: .4rem 0; }
.ft-mob-lang a {
    min-width: 40px; text-align: center; padding: 6px 10px; border-radius: 999px;
    border: 1px solid rgba(255,255,255,.25); font-size: .82rem; font-weight: 700;
}
.ft-mob-lang a.is-current { background: var(--primary); border-color: var(--primary); }
.mobile-menu .mob-cta { text-align: center; margin-top: .5rem; }

/* ── hero ─────────────────────────────────────────────────────── */
.ft-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    padding: 140px 5vw;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.ft-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--secondary) 12%, rgba(15,49,58,.72) 48%, rgba(15,49,58,.15) 100%);
}
.ft-hero-content { position: relative; z-index: 2; max-width: 900px; }
.ft-hero .ft-label { color: #fff; }
.ft-hero .ft-label::before { background: var(--primary); }
.ft-hero h1 {
    color: #fff;
    font-size: clamp(2.5rem, 6vw, 4.75rem);
    letter-spacing: -2px;
    line-height: 1.02;
    margin-bottom: 1.5rem;
}
.ft-hero h1 span { display: block; }
.ft-hero h1 .outline {
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #fff;
}
.ft-hero p {
    color: rgba(255,255,255,.9);
    font-size: 1.1875rem;
    max-width: 52ch;
    margin-bottom: 2.25rem;
}
.ft-hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ── announcement / warning ───────────────────────────────────── */
.ft-warning { padding: 72px 5vw; background: var(--secondary); }
.ft-warning .ft-inner {
    border-left: 5px solid var(--primary);
    background: rgba(255,255,255,.04);
    padding: 40px 44px;
}
.ft-warning h2 { color: #fff; font-size: 1.75rem; }
.ft-warning .warn-body { color: rgba(255,255,255,.82); white-space: pre-line; }
.ft-warning .warn-icon { font-size: 2rem; line-height: 1; margin-bottom: .75rem; }

/* ── about ────────────────────────────────────────────────────── */
.ft-about .ft-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-media { position: relative; padding-bottom: 90px; }
.about-media img { width: 100%; height: auto; object-fit: cover; }
.about-media .img-2 {
    position: absolute;
    right: -10%;
    bottom: 0;
    width: 55%;
    border: 10px solid #fff;
    box-shadow: 0 20px 50px rgba(15,49,58,.18);
}

/* ── services grid ────────────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: 3rem;
}
.svc-card {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--secondary);
    min-height: 340px;
}
.svc-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    transition: transform .5s ease;
    opacity: .82;
}
.svc-card:hover img { transform: scale(1.06); }
.svc-card-body {
    position: absolute;
    inset: auto 0 0 0;
    padding: 28px;
    background: linear-gradient(0deg, rgba(15,49,58,.94) 25%, transparent 100%);
}
.svc-card-body h3 { color: #fff; margin: 0 0 .35rem; font-size: 1.25rem; }
.svc-card-body p { color: rgba(255,255,255,.75); font-size: .9375rem; margin: 0; }
.svc-card-arrow {
    display: inline-block;
    margin-top: .9rem;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: .8125rem;
}
.services-cta { margin-top: 3rem; text-align: center; }
.svc-empty { grid-column: 1 / -1; color: var(--body); }

/* ── why us (split) ───────────────────────────────────────────── */
.ft-why { display: grid; grid-template-columns: 1fr 1fr; padding: 0; }
.ft-why .why-media { min-height: 640px; }
.ft-why .why-media img { width: 100%; height: 100%; min-height: 640px; object-fit: cover; }
.ft-why .why-content { padding: 110px 6vw; align-self: center; }
.reason-list { list-style: none; margin: 2rem 0 2.5rem; padding: 0; display: grid; gap: 1.1rem; }
.reason-list li { display: flex; gap: 1rem; align-items: flex-start; }
.reason-ic {
    flex: none;
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(249,71,53,.12);
    color: var(--primary);
    border-radius: 50%;
}
.reason-ic svg { width: 18px; height: 18px; }
.reason-tx { font-weight: 600; color: var(--secondary); }

/* ── HVO band ─────────────────────────────────────────────────── */
.ft-hvo {
    position: relative;
    padding: 140px 5vw;
    background-size: cover;
    background-position: center;
}
.ft-hvo::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(90deg, var(--secondary) 8%, rgba(15,49,58,.82) 60%, rgba(15,49,58,.55) 100%);
}
.ft-hvo .ft-inner { position: relative; z-index: 2; max-width: 780px; }
.ft-hvo h2 { color: #fff; }
.ft-hvo p { color: rgba(255,255,255,.85); }

/* ── timeline ─────────────────────────────────────────────────── */
.timeline { position: relative; margin-top: 4rem; }
.timeline::before {
    content: "";
    position: absolute;
    left: 50%; top: 0; bottom: 0;
    width: 2px;
    background: var(--line);
    transform: translateX(-50%);
}
.tl-item {
    position: relative;
    width: 50%;
    padding: 0 3rem 3rem 0;
}
.tl-item:nth-child(even) { margin-left: 50%; padding: 0 0 3rem 3rem; text-align: left; }
.tl-item:nth-child(odd) { text-align: right; }
.tl-item::after {
    content: "";
    position: absolute;
    top: 8px;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--primary);
}
.tl-item:nth-child(odd)::after { right: -8px; }
.tl-item:nth-child(even)::after { left: -8px; }
.tl-year {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -1px;
}
.tl-title { font-size: 1.2rem; font-weight: 800; color: var(--secondary); margin: .5rem 0; }
.tl-text { font-size: .9375rem; }

/* ── career accordion ─────────────────────────────────────────── */
.ft-career .ft-inner { display: grid; grid-template-columns: 1fr 1.15fr; gap: 5rem; align-items: start; }
.career-perks { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; gap: .9rem; }
.career-perks li { padding-left: 1.75rem; position: relative; font-weight: 600; color: var(--secondary); }
.career-perks li::before {
    content: "";
    position: absolute; left: 0; top: .62em;
    width: 9px; height: 9px;
    background: var(--primary);
}
.jobs { display: grid; gap: 1rem; }
.job {
    background: #fff;
    border: 1px solid var(--line);
    padding: 0;
}
.job summary {
    cursor: pointer;
    list-style: none;
    padding: 22px 26px;
    font-weight: 800;
    color: var(--secondary);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}
.job summary::-webkit-details-marker { display: none; }
.job summary::after { content: "+"; color: var(--primary); font-size: 1.4rem; line-height: 1; }
.job[open] summary::after { content: "–"; }
.job-body { padding: 0 26px 24px; font-size: .9375rem; }

/* ── contact ──────────────────────────────────────────────────── */
.ft-contact .ft-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: start; }
.contact-details { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; gap: 1.25rem; }
.contact-details li { display: flex; gap: 1rem; align-items: flex-start; }
.c-ico {
    flex: none;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(249,71,53,.1);
    color: var(--primary);
    display: flex; align-items: center; justify-content: center;
}
.c-ico svg { width: 18px; height: 18px; }
.c-lbl { display: block; font-size: .75rem; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 800; color: var(--secondary); }
.c-val { font-weight: 600; }
.contact-card {
    background: #fff;
    padding: 44px;
    box-shadow: 0 24px 60px rgba(15,49,58,.12);
    border-top: 4px solid var(--primary);
}
.ft-map { margin-top: 4rem; }
.ft-map iframe { width: 100%; height: 460px; border: 0; display: block; filter: grayscale(.25); }

/* form tag classes — engine DOM: .form-rows-wrap = row (flex, inline-styled),
   .form-row = one cell (label above input). Do NOT flex the cell's children. */
.rsvp-form .form-rows-wrap { margin-bottom: 1.1rem; }
.rsvp-form .form-row { display: flex; flex-direction: column; }
.rsvp-form .form-lbl { display: block; font-size: .8125rem; font-weight: 700; color: var(--secondary); margin-bottom: .4rem; }
.rsvp-form .form-inp,
.rsvp-form .form-sel,
.rsvp-form .form-ta {
    width: 100%;
    font-family: inherit;
    font-size: .9375rem;
    padding: 13px 15px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: #fff;
    color: var(--secondary);
}
.rsvp-form .form-ta { min-height: 140px; resize: vertical; }
.rsvp-form .form-inp:focus,
.rsvp-form .form-ta:focus { outline: none; border-color: var(--primary); }
.wb-form-req { color: var(--primary); }

/* ── page-title banner (root/detail pages) ────────────────────── */
.ft-banner {
    position: relative;
    padding: 160px 5vw 90px;
    background-size: cover;
    background-position: center;
    background-color: var(--secondary);
}
.ft-banner::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(90deg, var(--secondary) 5%, rgba(15,49,58,.7) 55%, rgba(15,49,58,.25) 100%);
}
.ft-banner .ft-inner { position: relative; z-index: 2; }
.ft-banner h1 { color: #fff; font-size: clamp(2.25rem, 5vw, 4rem); margin: 0; }
.ft-crumb { color: rgba(255,255,255,.7); font-size: .875rem; margin-top: .75rem; }
.ft-crumb a { color: rgba(255,255,255,.7); }
.ft-crumb a:hover { color: var(--primary); }

/* ── detail layout (sidebar + article) ────────────────────────── */
.ft-detail .ft-inner { display: grid; grid-template-columns: 320px 1fr; gap: 4rem; align-items: start; }
.side-card { background: var(--light); padding: 32px; }
.side-card h4 { text-transform: uppercase; letter-spacing: 1px; font-size: .9375rem; margin-bottom: 1.25rem; }
.side-nav { list-style: none; margin: 0; padding: 0; display: grid; gap: .35rem; }
.side-nav a {
    display: block;
    padding: 12px 16px;
    background: #fff;
    color: var(--secondary);
    font-weight: 600;
    font-size: .9375rem;
    border-left: 3px solid transparent;
    transition: all .2s ease;
}
.side-nav a:hover { border-left-color: var(--primary); color: var(--primary); }
.side-nav a.is-active { background: var(--primary); color: #fff; border-left-color: var(--secondary); }

.article-body { font-size: 1.0625rem; }
.article-body h2, .article-body h3, .article-body h4 { margin-top: 2rem; }
.article-body ul { padding-left: 1.1rem; }
.points-list { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; gap: .8rem; }
.points-list li { position: relative; padding-left: 1.75rem; font-weight: 600; color: var(--secondary); }
.points-list li::before {
    content: "";
    position: absolute; left: 0; top: .62em;
    width: 9px; height: 9px;
    background: var(--primary);
}

/* ── branch (provozovny) cards ────────────────────────────────── */
.branch-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.branch-card { position: relative; display: block; overflow: hidden; background: var(--secondary); }
.branch-card img { width: 100%; height: 420px; object-fit: cover; opacity: .85; transition: transform .5s ease; }
.branch-card:hover img { transform: scale(1.05); }
.branch-card .svc-card-body h3 { font-size: 1.1rem; }
.branch-contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.branch-contact li { display: flex; gap: .9rem; align-items: flex-start; }
.branch-photo { margin-bottom: 2rem; }

/* ── footer ───────────────────────────────────────────────────── */
.ft-footer {
    background: var(--secondary);
    color: rgba(255,255,255,.72);
    padding: 96px 5vw 40px;
}
.ft-footer .ft-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.ft-footer h4 { color: #fff; text-transform: uppercase; letter-spacing: 1.5px; font-size: .875rem; margin-bottom: 1.5rem; }
.ft-footer img.foot-logo { height: 48px; width: auto; margin-bottom: 1.5rem; }
.foot-social { display: flex; gap: .75rem; list-style: none; padding: 0; margin: 1.5rem 0 0; }
.foot-social .btn-social {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.25);
    background: transparent;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    padding: 0;
}
.foot-social .btn-social:hover { background: var(--primary); border-color: var(--primary); }
.foot-contact { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.1rem; }
.foot-contact .c-lbl { color: rgba(255,255,255,.5); }
.foot-contact .c-val { color: #fff; }
.foot-contact .btn-link {
    background: transparent;
    border: 0;
    padding: 0;
    color: #fff;
    font: inherit;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
}
.foot-contact .btn-link:hover { color: var(--primary); }
.foot-bottom {
    max-width: 1240px;
    margin: 3.5rem auto 0;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255,255,255,.12);
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
    font-size: .875rem;
}
.foot-links { display: flex; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.foot-links a { color: rgba(255,255,255,.72); }
.foot-links a:hover { color: var(--primary); }

/* ── editor chrome ────────────────────────────────────────────── */
[data-list-root]:hover > .wb-list-edit { opacity: 1; }

/* ── reveal ───────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── responsive ───────────────────────────────────────────────── */
@media (max-width: 1199px) {
    .ft-section { padding: 90px 5vw; }
    h2 { font-size: 2.25rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .branch-grid { grid-template-columns: repeat(2, 1fr); }
    .ft-detail .ft-inner { grid-template-columns: 260px 1fr; gap: 2.5rem; }
}

@media (max-width: 991px) {
    .ft-nav { display: none; }
    .ft-header .btn-cta { display: none; }
    .nav-hamburger { display: flex; margin-left: auto; }
    .ft-why { grid-template-columns: 1fr; }
    .ft-why .why-media, .ft-why .why-media img { min-height: 380px; }
    .ft-why .why-content { padding: 70px 5vw; }
}

@media (max-width: 767px) {
    .ft-section { padding: 64px 20px; }
    h2 { font-size: 1.9rem; }
    .ft-hero { min-height: 78vh; padding: 120px 20px 80px; }
    .ft-hero::after { background: linear-gradient(0deg, var(--secondary) 10%, rgba(15,49,58,.75) 100%); }
    .ft-about .ft-inner,
    .ft-career .ft-inner,
    .ft-contact .ft-inner,
    .ft-detail .ft-inner,
    .ft-footer .ft-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-media { padding-bottom: 60px; }
    .about-media .img-2 { right: 0; width: 58%; border-width: 6px; }
    .services-grid, .branch-grid { grid-template-columns: 1fr; }
    .ft-warning .ft-inner { padding: 28px 22px; }
    .contact-card { padding: 28px 22px; }
    .ft-hvo { padding: 80px 20px; }
    .ft-banner { padding: 120px 20px 60px; }
    .timeline::before { left: 7px; }
    .tl-item,
    .tl-item:nth-child(even),
    .tl-item:nth-child(odd) {
        width: 100%;
        margin-left: 0;
        padding: 0 0 2.5rem 2.5rem;
        text-align: left;
    }
    .tl-item::after,
    .tl-item:nth-child(odd)::after,
    .tl-item:nth-child(even)::after { left: 0; right: auto; }
    .ft-map iframe { height: 320px; }
}
