/* ==========================================================================
   GEZGEN MOTORS — Premium Dark Theme
   Marka rengi: #043c93 | Arka plan: #121214
   ========================================================================== */

:root {
    --brand: #043c93;
    --brand-light: #0a56c9;
    --brand-glow: rgba(10, 86, 201, 0.45);
    --bg: #121214;
    --bg-alt: #0b0b0d;
    --surface: rgba(255, 255, 255, 0.04);
    --surface-hover: rgba(255, 255, 255, 0.07);
    --border: rgba(255, 255, 255, 0.09);
    --text: #f2f3f5;
    --text-muted: #9a9ca3;
    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.3s cubic-bezier(0.25, 0.8, 0.35, 1);
}

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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
    font-family: var(--font-head);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.container {
    width: min(1200px, 92%);
    margin-inline: auto;
}

/* Erişilebilir gizli başlık (SEO H1) */
.visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    margin: -1px; padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

.text-gradient {
    background: linear-gradient(100deg, #3d7fe0 0%, #6ea8ff 55%, #a8c8ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.link-accent { color: #6ea8ff; font-weight: 600; }
.link-accent:hover { text-decoration: underline; }

/* ===== Glassmorphism ===== */
.glass {
    background: var(--surface);
    border: 1px solid var(--border);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: var(--radius);
}

/* ===== Butonlar ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-light), var(--brand));
    color: #fff;
    box-shadow: 0 4px 20px var(--brand-glow);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--brand-glow);
    filter: brightness(1.15);
}

.btn-ghost {
    background: var(--surface);
    border-color: var(--border);
    color: var(--text);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.btn-ghost:hover {
    border-color: var(--brand-light);
    color: #6ea8ff;
    transform: translateY(-2px);
}

.btn-lg { padding: 0.95rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.8rem; }
.btn-block { width: 100%; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(11, 11, 13, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    padding: 0.6rem 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-shrink: 0;
}

.brand-logo {
    height: 72px;
    width: auto;
    filter: drop-shadow(0 0 12px rgba(10, 86, 201, 0.35));
    transition: var(--transition);
}
.site-header.scrolled .brand-logo { height: 56px; }

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.main-nav ul {
    display: flex;
    gap: 1.8rem;
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 0.3rem 0;
    transition: color var(--transition);
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 0; bottom: -2px;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--brand-light), #6ea8ff);
    border-radius: 2px;
    transition: width var(--transition);
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
}
.hamburger span {
    width: 26px; height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 0 5rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../img/showroom-genis.jpg') center 30% / cover no-repeat;
    transform: scale(1.05);
    animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    from { transform: scale(1.05); }
    to   { transform: scale(1.14); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 110%, rgba(4, 60, 147, 0.35), transparent 60%),
        linear-gradient(180deg, rgba(11, 11, 13, 0.75) 0%, rgba(11, 11, 13, 0.55) 45%, var(--bg) 100%);
}

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #9fbfef;
    background: var(--surface);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.55rem 1.2rem;
    border-radius: 100px;
    margin-bottom: 1.6rem;
}

.hero-title {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: clamp(2.3rem, 6vw, 4.4rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 1.2rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #c9cbd1;
    max-width: 560px;
    margin: 0 auto 2.4rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    background: var(--surface);
    border: 1px solid var(--border);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: var(--radius);
    padding: 1.1rem 2.2rem;
}
.stat { text-align: center; }
.stat strong {
    display: block;
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: #6ea8ff;
}
.stat span { font-size: 0.78rem; color: var(--text-muted); }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-muted);
    z-index: 2;
    animation: bounce 2.2s infinite;
}
.hero-scroll:hover { color: #6ea8ff; }
@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50%      { transform: translate(-50%, 8px); }
}

/* ==========================================================================
   BÖLÜMLER (ortak)
   ========================================================================== */
.section { padding: 6rem 0; scroll-margin-top: 120px; }
#araba-sat-form { scroll-margin-top: 120px; }
.section-alt {
    background:
        radial-gradient(ellipse at 80% 0%, rgba(4, 60, 147, 0.12), transparent 55%),
        var(--bg-alt);
}

.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3.5rem;
}
.section-eyebrow {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #6ea8ff;
    margin-bottom: 0.8rem;
}
.section-head h2, .about-content h2 {
    font-size: clamp(1.7rem, 4vw, 2.6rem);
    margin-bottom: 1rem;
}
.section-head p { color: var(--text-muted); }
.section-cta { text-align: center; margin-top: 3rem; }

/* ==========================================================================
   GÜNCEL STOK / SAHİBİNDEN VİTRİNİ
   ========================================================================== */
.stock-panel {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2.5rem;
    align-items: center;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}
.stock-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 85% 20%, rgba(4, 60, 147, 0.22), transparent 55%);
    pointer-events: none;
}

.stock-content { position: relative; }
.stock-content h3 {
    font-size: clamp(1.3rem, 3vw, 1.7rem);
    margin-bottom: 0.8rem;
}
.stock-content > p {
    color: var(--text-muted);
    margin-bottom: 1.6rem;
}

.stock-features {
    display: grid;
    gap: 0.8rem;
    margin-bottom: 2rem;
}
.stock-features li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.92rem;
    color: var(--text);
}
.stock-features svg { color: #6ea8ff; flex-shrink: 0; }

.stock-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.stock-logo {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
}
.stock-logo a {
    display: block;
    background: #fff;
    border-radius: var(--radius);
    padding: 1.6rem 2rem;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45), 0 0 35px rgba(255, 220, 0, 0.08);
    transition: var(--transition);
    max-width: 340px;
    width: 100%;
}
.stock-logo a:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.55), 0 0 45px rgba(255, 220, 0, 0.15);
}
.stock-logo img { width: 100%; height: auto; }
.stock-logo span {
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ===== WhatsApp ===== */
.btn-whatsapp {
    background: linear-gradient(135deg, #2ebd5f, #1ea952);
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
    filter: brightness(1.1);
}

.whatsapp-float {
    position: fixed;
    right: 1.4rem;
    bottom: 1.4rem;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2ebd5f, #1ea952);
    color: #fff;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.45), 0 0 22px rgba(37, 211, 102, 0.35);
    transition: var(--transition);
}
.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.5), 0 0 32px rgba(37, 211, 102, 0.5);
}
.whatsapp-float::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid rgba(46, 189, 95, 0.45);
    animation: waPulse 2.2s ease-out infinite;
}
@keyframes waPulse {
    0%   { transform: scale(0.9); opacity: 1; }
    100% { transform: scale(1.35); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
    .whatsapp-float::after { animation: none; display: none; }
}

/* ==========================================================================
   HAKKIMIZDA
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
    align-items: center;
}

.about-media {
    position: relative;
    border-radius: var(--radius);
}
.about-media img {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
    position: relative;
    z-index: 1;
}
.about-media-glow {
    position: absolute;
    inset: -10%;
    background: radial-gradient(ellipse at center, rgba(4, 60, 147, 0.35), transparent 65%);
    filter: blur(30px);
    z-index: 0;
}

.about-content > p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.about-features { display: grid; gap: 1rem; }
.about-features li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.1rem 1.3rem;
    transition: var(--transition);
    transition-delay: 0s !important;
}
.about-features li:hover {
    border-color: rgba(110, 168, 255, 0.35);
    background: var(--surface-hover);
    transform: translateX(6px);
}
.about-features svg { color: #6ea8ff; flex-shrink: 0; margin-top: 3px; }
.about-features strong {
    display: block;
    font-family: var(--font-head);
    font-size: 0.95rem;
    margin-bottom: 2px;
}
.about-features span { font-size: 0.85rem; color: var(--text-muted); }

/* ==========================================================================
   INSTAGRAM
   ========================================================================== */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    justify-items: center;
}

.instagram-fallback {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 2.5rem;
}
.instagram-fallback svg { color: #6ea8ff; margin: 0 auto 1.2rem; }
.instagram-fallback h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.instagram-fallback p { color: var(--text-muted); margin-bottom: 1.6rem; }

/* ==========================================================================
   İLETİŞİM & HARİTA
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 2rem;
    align-items: stretch;
}

.contact-panel { padding: 2rem; }

.contact-form { display: grid; gap: 1.1rem; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
}
.form-group { display: grid; gap: 0.4rem; }
.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.03em;
}
.form-group input,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    transition: var(--transition);
    resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #5c5e66; }
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-light);
    box-shadow: 0 0 0 3px rgba(10, 86, 201, 0.25);
    background: rgba(255, 255, 255, 0.07);
}

.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; }

.form-alert {
    padding: 0.85rem 1.1rem;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    margin-bottom: 1.2rem;
}
.form-alert-success {
    background: rgba(34, 170, 90, 0.12);
    border: 1px solid rgba(34, 170, 90, 0.4);
    color: #7be0a8;
}
.form-alert-error {
    background: rgba(210, 60, 60, 0.12);
    border: 1px solid rgba(210, 60, 60, 0.4);
    color: #f0958f;
}

.contact-info {
    margin-top: 1.8rem;
    padding-top: 1.6rem;
    border-top: 1px solid var(--border);
    display: grid;
    gap: 0.9rem;
}
.contact-info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.contact-info-item svg { color: #6ea8ff; flex-shrink: 0; }
.contact-info-item a:hover { color: #6ea8ff; }

.map-panel {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.5), 0 0 40px rgba(4, 60, 147, 0.15);
    min-height: 450px;
}
.map-panel iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    display: block;
    filter: saturate(0.85) contrast(1.05);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    padding: 4rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo { height: 84px; width: auto; margin-bottom: 1rem; }
.footer-brand p {
    font-size: 0.88rem;
    color: var(--text-muted);
    max-width: 340px;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #9fbfef;
    margin-bottom: 1.1rem;
}
.footer-col ul { display: grid; gap: 0.55rem; }
.footer-col li, .footer-col a {
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: color var(--transition);
}
.footer-col a:hover { color: #6ea8ff; }

.footer-social {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.3rem;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--text-muted);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.55rem 0.7rem;
    transition: var(--transition);
}
.footer-social a:hover {
    color: #fff;
    border-color: var(--brand-light);
    box-shadow: 0 0 20px rgba(4, 60, 147, 0.35);
}
.footer-shop-link { font-size: 0.82rem; font-weight: 600; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    font-size: 0.8rem;
    color: #5c5e66;
}

/* ==========================================================================
   SCROLL REVEAL ANİMASYONU
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.8, 0.35, 1);
    transition-delay: var(--delay, 0s);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .hero-bg { animation: none; }
    html { scroll-behavior: auto; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* Tablet */
@media (max-width: 1024px) {
    .stock-panel {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.4rem;
        text-align: center;
    }
    .stock-features { justify-items: center; }
    .stock-cta { justify-content: center; }
    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-media { max-width: 480px; margin-inline: auto; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobil */
@media (max-width: 768px) {
    .section { padding: 4rem 0; scroll-margin-top: 100px; }
    #araba-sat-form { scroll-margin-top: 100px; }

    /* Mobil menü */
    .hamburger { display: flex; }
    .main-nav {
        position: fixed;
        inset: 0;
        flex-direction: column;
        justify-content: center;
        gap: 2.2rem;
        background: rgba(11, 11, 13, 0.96);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    .main-nav.open { opacity: 1; visibility: visible; }
    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1.8rem;
    }
    .nav-link { font-size: 1.25rem; }
    .btn-nav { font-size: 1rem; padding: 0.9rem 1.8rem; }

    .brand-logo { height: 56px; }
    .site-header.scrolled .brand-logo { height: 48px; }

    .hero { padding: 7rem 0 5rem; }
    .hero-cta .btn { width: 100%; max-width: 340px; }
    .hero-stats {
        display: flex;
        width: 100%;
        max-width: 340px;
        margin-inline: auto; /* Blok haline gelince yatayda ortala */
        flex-direction: column;
        gap: 1.2rem;
        padding: 1.4rem 2rem;
    }
    .stat-divider { width: 60px; height: 1px; }
    .hero-scroll { display: none; } /* Mobilde WhatsApp butonuyla çakışmasın */

    .stock-panel { padding: 1.8rem 1.4rem; }
    .stock-cta .btn { width: 100%; }
    .stock-logo a { padding: 1.2rem 1.5rem; max-width: 300px; }

    .form-row { grid-template-columns: 1fr; }
    /* iOS'ta odaklanınca otomatik yakınlaşmayı önlemek için 16px */
    .form-group input,
    .form-group textarea { font-size: 1rem; }
    .contact-panel { padding: 1.5rem 1.2rem; }

    .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
    .footer-bottom { justify-content: center; text-align: center; }
    .footer-social { flex-wrap: wrap; }
    .map-panel, .map-panel iframe { min-height: 340px; }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        right: 1rem;
        bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    }
    .whatsapp-float svg { width: 25px; height: 25px; }
}

/* Küçük telefonlar */
@media (max-width: 420px) {
    .container { width: 94%; }
    .section { padding: 3.4rem 0; scroll-margin-top: 90px; }
    #araba-sat-form { scroll-margin-top: 90px; }

    .brand-logo { height: 52px; }
    .site-header.scrolled .brand-logo { height: 46px; }

    .hero-eyebrow {
        font-size: 0.68rem;
        letter-spacing: 0.14em;
        padding: 0.5rem 0.9rem;
    }
    .hero-title { font-size: 2.05rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-stats { padding: 1.2rem 1.4rem; }

    .section-head { margin-bottom: 2.4rem; }
    .instagram-fallback { padding: 2.2rem 1.4rem; }
    .map-panel, .map-panel iframe { min-height: 300px; }
}
