/* ════════════════════════════════════════════════════════════
   MEHMET AKSOY — Wholesale Footwear · Istanbul
   Elegant 2010–2015 aesthetic
   ════════════════════════════════════════════════════════════ */

/* ── Reset ──────────────────────────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s ease; }
ul { list-style: none; }
button { font-family: inherit; background: none; border: none; cursor: pointer; }

/* ── Base ───────────────────────────────────────────────── */
:root {
    --ink:       #151515;
    --ink-2:     #1c1917;
    --graphite:  #3a3a3a;
    --grey:      #7a7a7a;
    --line:      #e6e2db;
    --line-soft: #f0ede6;
    --paper:     #faf7f2;
    --cream:     #f6f2eb;
    --gold:      #c9a55b;
    --gold-dk:   #a88645;
}

body {
    font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.75;
    color: var(--graphite);
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: #fff; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.25;
}

.section-title {
    font-size: 34px;
    margin-bottom: 20px;
}

.section-kicker {
    font-family: 'Open Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
    display: block;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 30px;
    position: relative;
}
.section-divider::before, .section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--line);
    transform: translateY(-50%);
}
.section-divider::before { right: 100%; margin-right: 12px; }
.section-divider::after  { left: 100%;  margin-left: 12px;  }
.section-divider.left { margin-left: 0; margin-right: auto; }
.section-divider.left::before { display: none; }

/* ── Container / Sections ───────────────────────────────── */
.container { max-width: 1170px; margin: 0 auto; padding: 0 20px; }

.section { padding: 90px 0; position: relative; }
.section-alt { background: var(--paper); }

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 13px 34px;
    font-family: 'Open Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    border: 2px solid var(--ink);
    transition: all .35s ease;
    cursor: pointer;
}
.btn-solid       { background: var(--ink); color: #fff; }
.btn-solid:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

.btn-outline       { background: transparent; color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }

.btn-outline-light       { background: transparent; color: #fff; border-color: rgba(255,255,255,.8); }
.btn-outline-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ── Preloader ──────────────────────────────────────────── */
.preloader {
    position: fixed; inset: 0;
    background: var(--ink);
    z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    transition: opacity .5s ease, visibility .5s ease;
}
.preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo {
    height: 30px;
    width: auto;
    margin: 0 auto 24px;
    display: block;
    opacity: 0;
    animation: fadeIn .8s .1s forwards;
}
@keyframes fadeIn { to { opacity: 1; } }
.preloader-spinner { display: flex; gap: 8px; justify-content: center; }
.preloader-spinner span {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--gold);
    animation: bounce 1.4s ease-in-out infinite both;
}
.preloader-spinner span:nth-child(1) { animation-delay: -.32s; }
.preloader-spinner span:nth-child(2) { animation-delay: -.16s; }
@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40%           { transform: scale(1); }
}

/* ── Page transition ────────────────────────────────────── */
.page-fade {
    position: fixed; inset: 0;
    background: #fff;
    z-index: 8000;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease, visibility .4s ease;
}
.page-fade.active { opacity: 1; visibility: visible; }

/* ── Header ─────────────────────────────────────────────── */
.site-header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: linear-gradient(180deg, rgba(15,15,15,.55), rgba(15,15,15,0));
    transition: background .4s ease, padding .4s ease, box-shadow .4s ease;
}
.site-header.scrolled {
    padding: 20px 0;
    background: var(--ink);
    box-shadow: 0 1px 12px rgba(0,0,0,.25);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Skip link (a11y) */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--ink);
    color: #fff;
    padding: 10px 16px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 10000;
}
.skip-link:focus { left: 12px; top: 12px; }

/* Brand logo — 30px height as requested */
.brand { display: flex; align-items: center; }
.brand-logo {
    height: 30px;
    width: auto;
    display: block;
    transition: height .35s ease;
}
.site-header.scrolled .brand-logo { height: 28px; }

/* Main nav — always over dark background so text stays light */
.main-nav ul { display: flex; gap: 32px; }
.main-nav a {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    padding: 8px 0;
    position: relative;
    white-space: nowrap;
}
.main-nav a::after {
    content: '';
    position: absolute;
    left: 50%; right: 50%; bottom: 0;
    height: 2px;
    background: var(--gold);
    transition: left .35s ease, right .35s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold); }
.main-nav a:hover::after, .main-nav a.active::after { left: 0; right: 0; }

.header-right { display: flex; align-items: center; gap: 22px; }
.lang-switch {
    display: flex; align-items: center; gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #fff;
}
.lang-switch button {
    color: inherit;
    opacity: .6;
    padding: 4px;
    transition: opacity .3s ease, color .3s ease;
}
.lang-switch button.active { opacity: 1; color: var(--gold); }
.lang-switch button:hover  { opacity: 1; }
.lang-sep { opacity: .5; }

.burger { display: none; flex-direction: column; gap: 4px; padding: 6px; z-index: 900; }
.burger span {
    width: 24px; height: 2px;
    background: #fff;
    transition: transform .35s ease, opacity .3s ease;
}

/* Mobile menu (side drawer) */
.mobile-menu-backdrop {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
    z-index: 1039;
}
.mobile-menu-backdrop.open { opacity: 1; visibility: visible; }

.mobile-menu {
    position: fixed;
    top: 0; right: 0;
    width: 340px; max-width: 90%;
    height: 100vh;
    background: var(--ink);
    z-index: 1050;
    padding: 30px 40px 40px;
    transform: translateX(100%);
    transition: transform .5s ease;
    box-shadow: -4px 0 30px rgba(0,0,0,.35);
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-close {
    align-self: flex-end;
    width: 40px; height: 40px;
    position: relative;
    padding: 0;
    color: #fff;
    transition: color .3s ease, transform .35s ease;
}
.mobile-close:hover { color: var(--gold); transform: rotate(90deg); }
.mobile-close span {
    position: absolute;
    top: 50%; left: 50%;
    width: 24px;
    height: 2px;
    background: currentColor;
    display: block;
}
.mobile-close span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.mobile-close span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }

.mobile-menu-brand {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-menu-brand img { height: 34px; margin: 0 auto; }

.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav a {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #fff;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: color .3s ease, padding-left .3s ease;
}
.mobile-menu nav a:hover, .mobile-menu nav a.active { color: var(--gold); padding-left: 6px; }

.mobile-menu-lang {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 20px;
    font-size: 12px;
    letter-spacing: 3px;
    color: rgba(255,255,255,.55);
}
.mobile-menu-lang button {
    color: rgba(255,255,255,.55);
    padding: 6px 8px;
    transition: color .3s ease;
}
.mobile-menu-lang button.active { color: var(--gold); }
.mobile-menu-lang button:hover  { color: #fff; }

/* ── Hero Slider ────────────────────────────────────────── */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 620px;
    overflow: hidden;
}
.hero-slide {
    height: 100vh !important;
    min-height: 620px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: rgba(15, 12, 8, .55);
}

.hero-caption {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    z-index: 10;
    pointer-events: none;
}
.hero-caption-inner { pointer-events: auto; max-width: 800px; }
.hero-caption .btn { pointer-events: auto; }

.hero-kicker {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 25px;
}
.hero-title {
    font-size: 62px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.15;
}
.hero-divider {
    width: 80px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 30px;
}
.hero-sub {
    font-size: 17px;
    font-weight: 300;
    color: rgba(255,255,255,.9);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* Slick overrides for hero */
.hero-slider .slick-dots {
    bottom: 30px;
    z-index: 20;
}
.hero-slider .slick-dots li button:before {
    color: #fff;
    opacity: .5;
    font-size: 10px;
}
.hero-slider .slick-dots li.slick-active button:before {
    color: var(--gold);
    opacity: 1;
}

/* Scroll indicator */
.scroll-down {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    pointer-events: auto;
    display: block;
    opacity: .8;
    transition: opacity .3s ease;
}
.scroll-down:hover { opacity: 1; }
.sd-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid #fff;
    border-radius: 14px;
    display: block;
    position: relative;
}
.sd-wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 3px;
    height: 8px;
    background: #fff;
    margin-left: -1.5px;
    border-radius: 2px;
    animation: sdWheel 1.6s ease-in-out infinite;
}
@keyframes sdWheel {
    0%   { opacity: 0; transform: translateY(0); }
    30%  { opacity: 1; }
    100% { opacity: 0; transform: translateY(16px); }
}

/* ── Intro ──────────────────────────────────────────────── */
.intro-block {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}
.intro-block .section-divider { margin: 0 auto 30px; }
.intro-text {
    font-size: 16px;
    line-height: 1.85;
    color: var(--graphite);
    margin-bottom: 30px;
}

/* ── Features ───────────────────────────────────────────── */
.features-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.feature {
    text-align: center;
    padding: 20px;
}
.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    color: var(--gold);
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    padding: 16px;
    transition: transform .4s ease, border-color .4s ease, color .4s ease;
}
.feature-icon svg { width: 100%; height: 100%; }
.feature:hover .feature-icon {
    transform: translateY(-4px);
    border-color: var(--gold);
    color: var(--gold-dk);
}
.feature-num {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 16px;
    line-height: 1;
}
.feature-title {
    font-size: 22px;
    margin-bottom: 14px;
}
.feature-text {
    font-size: 14px;
    color: var(--grey);
    max-width: 300px;
    margin: 0 auto;
}

/* ── Parallax Quote ─────────────────────────────────────── */
.parallax-quote {
    position: relative;
    padding: 130px 0;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-align: center;
}
.parallax-overlay {
    position: absolute; inset: 0;
    background: rgba(15, 12, 8, .72);
}
.parallax-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}
.quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 90px;
    color: var(--gold);
    line-height: .5;
    margin-bottom: 20px;
}
.parallax-quote blockquote p {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-style: italic;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 24px;
}
.parallax-quote cite {
    font-family: 'Open Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    font-style: normal;
}

/* ── CTA ────────────────────────────────────────────────── */
.section-cta { background: var(--cream); text-align: center; }
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-inner p {
    font-size: 16px;
    margin-bottom: 30px;
    color: var(--grey);
}

/* ── Page hero (inner pages) ────────────────────────────── */
.page-hero {
    position: relative;
    padding: 200px 0 100px;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}
.page-hero-overlay {
    position: absolute; inset: 0;
    background: rgba(15, 12, 8, .62);
}
.page-hero > .container { position: relative; z-index: 2; }
.page-hero-title {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
}
.page-hero .hero-divider { margin: 0 auto 25px; }
.page-hero-sub {
    font-size: 16px;
    color: rgba(255,255,255,.85);
    max-width: 600px;
    margin: 0 auto;
}

/* ── Story grid (About) ─────────────────────────────────── */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.story-body p {
    margin-bottom: 18px;
    color: var(--graphite);
    font-size: 15px;
    line-height: 1.85;
}

/* ── About slider (Slick) ───────────────────────────────── */
.story-slider {
    position: relative;
    background: var(--paper);
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
    overflow: hidden;
}
.story-slider .as-slide { outline: none; }
.story-slider .as-slide img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
}
/* slick arrows */
.story-slider .slick-arrow {
    z-index: 10;
    width: 46px;
    height: 46px;
    background: rgba(15, 15, 15, .55);
    color: #fff;
    border-radius: 50%;
    display: grid !important;
    place-items: center;
    transition: background .3s ease, color .3s ease;
}
.story-slider .slick-arrow:hover { background: var(--gold); color: var(--ink); }
.story-slider .slick-prev { left: 14px; }
.story-slider .slick-next { right: 14px; }
.story-slider .slick-prev:before,
.story-slider .slick-next:before {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    line-height: 1;
    color: inherit;
    opacity: 1;
    content: '‹';
}
.story-slider .slick-next:before { content: '›'; }
.story-slider .slick-dots {
    bottom: 14px;
    text-align: center;
}
.story-slider .slick-dots li button:before {
    color: #fff;
    opacity: .55;
    font-size: 9px;
    text-shadow: 0 1px 3px rgba(0,0,0,.6);
}
.story-slider .slick-dots li.slick-active button:before {
    color: var(--gold);
    opacity: 1;
}

/* ── Contact cards ──────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.contact-card {
    text-align: center;
    padding: 40px 25px;
    background: #fff;
    border: 1px solid var(--line);
    transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}
.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
    border-color: var(--gold);
}
.cc-icon {
    width: 60px; height: 60px;
    margin: 0 auto 20px;
    color: var(--gold);
}
.cc-icon svg { width: 100%; height: 100%; }
.contact-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}
.contact-card p, .contact-card a {
    font-size: 14px;
    color: var(--grey);
    line-height: 1.7;
}
.contact-card a:hover { color: var(--gold); }

/* ── Map ────────────────────────────────────────────────── */
.map-frame {
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
    background: #fff;
    padding: 8px;
}
.map-frame iframe { display: block; filter: grayscale(.2); }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
    background: var(--ink-2);
    color: rgba(255,255,255,.65);
    padding-top: 70px;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.4fr;
    gap: 50px;
    padding-bottom: 50px;
}
.footer-logo {
    height: 40px;
    width: auto;
    display: block;
    margin-bottom: 20px;
}
.footer-brand p { font-size: 14px; line-height: 1.8; max-width: 320px; }

.footer-col h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
}
.footer-col p { font-size: 14px; line-height: 1.8; }

.footer-nav li, .footer-contact li { margin-bottom: 12px; font-size: 14px; }
.footer-nav a { transition: color .3s, padding-left .3s; }
.footer-nav a:hover { color: var(--gold); padding-left: 6px; }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}
.footer-contact a:hover { color: var(--gold); }
.ic {
    width: 16px; height: 16px;
    margin-top: 3px;
    flex-shrink: 0;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: .8;
}
.ic-phone { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a55b' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E"); }
.ic-mail  { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a55b' stroke-width='2'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3E%3Cpolyline points='22,6 12,13 2,6'/%3E%3C/svg%3E"); }
.ic-pin   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a55b' stroke-width='2'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E"); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 22px 0;
    font-size: 12px;
    letter-spacing: 1px;
    color: rgba(255,255,255,.55);
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Developer credit — circular avatar on the right */
.dev-credit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 5px 5px 5px 10px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 40px;
    color: rgba(255,255,255,.78);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: border-color .3s ease, color .3s ease, background .3s ease;
    order: 2;
}
.dev-credit:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 165, 91, .06);
}
.dev-logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px rgba(255,255,255,.15);
    order: 2;
}
.dev-logo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 50%;
}
.dev-label { line-height: 1; order: 1; }

/* ── Back to top ────────────────────────────────────────── */
.back-to-top {
    position: fixed;
    right: 24px; bottom: 24px;
    width: 44px; height: 44px;
    background: var(--ink);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease, background .3s ease;
    z-index: 900;
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold); }

/* ── Image fallback ─────────────────────────────────────── */
img.img-fallback { background: linear-gradient(140deg, #E8DFCE, #D9C9A8); }

/* ── WOW / Animate.css fade-in defaults ─────────────────── */
.wow { visibility: hidden; }

/* ── Responsive ─────────────────────────────────────────── */

/* Tablet & small laptop */
@media (max-width: 1100px) {
    .container { padding: 0 24px; }
    .main-nav ul { gap: 24px; }
    .footer-inner { grid-template-columns: 1.4fr 1fr 1.4fr; }
}

@media (max-width: 991px) {
    .main-nav { display: none; }
    .lang-switch { display: none; }
    .burger { display: flex; }
    .hero-title { font-size: 46px; }
    .page-hero-title { font-size: 40px; }
    .features-row { grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .story-grid { grid-template-columns: 1fr; gap: 40px; }
    .story-slider { max-width: 560px; margin: 0 auto; }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-bottom-inner { justify-content: center; text-align: center; flex-direction: column; }
    .parallax-quote { background-attachment: scroll; }
    .section { padding: 70px 0; }
    .container { padding: 0 20px; }
}

/* Small tablet */
@media (max-width: 760px) {
    body { font-size: 15px; }
    .section-title { font-size: 28px; }
    .hero-title { font-size: 40px; }
    .hero-sub { font-size: 15px; }
    .page-hero { padding: 160px 0 80px; }
    .page-hero-title { font-size: 34px; }
    .features-row { grid-template-columns: 1fr; gap: 34px; }
    .feature { max-width: 400px; margin: 0 auto; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-card { max-width: 420px; margin: 0 auto; }
    .footer-inner { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .footer-brand p { margin: 0 auto; }
    .footer-brand .footer-logo { margin-left: auto; margin-right: auto; }
    .footer-contact li { justify-content: center; }
    .parallax-quote { padding: 80px 0; }
    .parallax-quote blockquote p { font-size: 21px; }
    .scroll-down { display: none; }
    .hero-slider { min-height: 540px; }
    .hero-slide { min-height: 540px; }
    .section { padding: 60px 0; }
    .story-slider .slick-arrow { width: 40px; height: 40px; }
}

/* Phone */
@media (max-width: 480px) {
    .container { padding: 0 18px; }
    .hero-title { font-size: 32px; }
    .hero-kicker { font-size: 11px; letter-spacing: 4px; }
    .section-title { font-size: 24px; }
    .page-hero-title { font-size: 28px; }
    .page-hero { padding: 140px 0 60px; }
    .btn { padding: 12px 26px; font-size: 10.5px; }
    .cta-inner p, .intro-text { font-size: 15px; }
    .feature-icon { width: 68px; height: 68px; padding: 13px; }
    .contact-card { padding: 32px 18px; }
    .parallax-quote blockquote p { font-size: 18px; }
    .parallax-quote { padding: 60px 0; }
    .back-to-top { right: 14px; bottom: 14px; width: 40px; height: 40px; }
    .dev-credit { padding: 4px 14px 4px 4px; font-size: 11px; letter-spacing: 1.4px; }
    .dev-logo-wrap { width: 30px; height: 30px; }
    .footer-bottom-inner { gap: 14px; font-size: 11px; }
    .story-slider .slick-arrow { width: 36px; height: 36px; }
    .story-slider .slick-prev { left: 8px; }
    .story-slider .slick-next { right: 8px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
    .parallax-quote { background-attachment: scroll !important; }
}
