/* =========================================================
   MASLAK TAKI — Minimal Luxury
   ========================================================= */

:root {
    --bg: #0e0d0b;
    --line: rgba(245, 239, 228, 0.12);
    --gold: #c9a566;
    --ivory: #f5efe4;
    --text: #a49d90;
    --font-display: "Playfair Display", Georgia, serif;
    --font-body: "Manrope", -apple-system, sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --container: 1080px;
}

* { 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.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

.container {
    width: min(var(--container), 100% - 3rem);
    margin-inline: auto;
}

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

/* ---------- Reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

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

/* ---------- Button ---------- */
.btn {
    display: inline-block;
    padding: 0.85rem 2.1rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ivory);
    background: transparent;
    border: none;
    box-shadow: inset 0 0 0 0.5px rgba(201, 165, 102, 0.45);
    cursor: pointer;
    transition: box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
    text-align: center;
}
.btn:hover {
    box-shadow: inset 0 0 0 0.5px rgba(201, 165, 102, 0.65);
    background: rgba(201, 165, 102, 0.08);
    color: var(--ivory);
}

.btn-block { width: 100%; }

/* =========================================================
   Header
   ========================================================= */
.header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    border-bottom: 1px solid transparent;
    transition: background 0.4s ease, border-color 0.4s ease;
}

.header.scrolled {
    background: rgba(14, 13, 11, 0.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: var(--line);
}

.header-inner {
    width: min(var(--container), 100% - 3rem);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo {
    display: inline-flex;
    align-items: center;
}

.logo-img {
    height: 46px;
    width: auto;
    display: block;
}

.nav-list { display: flex; gap: 2.6rem; }

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text);
    transition: color 0.3s ease;
}
.nav-link:hover { color: var(--ivory); }

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 110;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--ivory);
    margin-inline: auto;
    transition: transform 0.35s var(--ease);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(4.25px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { transform: translateY(-4.25px) rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
    position: relative;
    min-height: 92svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 110px 1.5rem 70px;
}

.hero-media { position: absolute; inset: 0; z-index: -1; }

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.6) brightness(0.85);
}

.hero-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(14, 13, 11, 0.72) 0%, rgba(14, 13, 11, 0.5) 50%, var(--bg) 100%);
}

.hero-content { max-width: 720px; }

.hero-kicker {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 4.2vw, 3.2rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--ivory);
    margin-bottom: 1.2rem;
}
.hero-title-line {
    display: block;
}
.hero-title-line + .hero-title-line {
    margin-top: 0.12em;
}

@media (max-width: 420px) {
    .hero-title {
        font-size: 1.55rem;
    }
}
.hero-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
}

.hero-sub {
    font-size: 1.02rem;
    font-weight: 300;
    max-width: 480px;
    margin: 0 auto 2.4rem;
}

/* =========================================================
   Sections (shared)
   ========================================================= */
.section {
    padding: clamp(4rem, 8vw, 6.5rem) 0;
    border-top: 1px solid var(--line);
}

.section-tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--ivory);
}
.section-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
}

.section-header { margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }

.section-desc {
    max-width: 520px;
    margin-top: 1.2rem;
    font-size: 0.98rem;
}

/* =========================================================
   About
   ========================================================= */
.about { border-top: none; }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}

.about-lead {
    font-size: 1.08rem;
    color: var(--ivory);
    font-weight: 300;
    margin-bottom: 1.2rem;
}

/* =========================================================
   Brands
   ========================================================= */
.brand-list { border-top: 1px solid var(--line); }

.brand-row {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    align-items: baseline;
    gap: 1.5rem;
    padding: 1.9rem 0;
    border-bottom: 1px solid var(--line);
}

.brand-name {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.6vw, 1.8rem);
    font-weight: 500;
    color: var(--ivory);
    transition: color 0.3s ease;
}
.brand-row:hover .brand-name { color: var(--gold); }

.brand-desc { font-size: 0.95rem; }

/* =========================================================
   Stores
   ========================================================= */
.stores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.store-card {
    border: 1px solid var(--line);
    padding: 2rem 1.8rem;
    transition: border-color 0.3s ease, transform 0.8s var(--ease), opacity 0.8s var(--ease);
}
.store-card:hover { border-color: var(--gold); }

.store-brand {
    display: block;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.store-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--ivory);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.store-location { font-size: 0.9rem; margin-bottom: 0.2rem; }

.store-phone {
    font-size: 0.9rem;
    color: var(--ivory);
    transition: color 0.3s ease;
}
.store-phone:hover { color: var(--gold); }

/* =========================================================
   Contact
   ========================================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: start;
}

.contact-lead { margin: 1.4rem 0 2.4rem; max-width: 400px; }

.contact-list { display: grid; gap: 1.4rem; }

.contact-list span {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.2rem;
}

.contact-list a,
.contact-list p {
    font-size: 1rem;
    color: var(--ivory);
    transition: color 0.3s ease;
}
.contact-list a:hover { color: var(--gold); }

/* Form */
.contact-form { display: grid; gap: 1rem; }

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: transparent;
    border: 1px solid var(--line);
    color: var(--ivory);
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 0.95rem 1.1rem;
    transition: border-color 0.3s ease;
    resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text); opacity: 0.7; }
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-status {
    font-size: 0.88rem;
    color: var(--gold);
    text-align: center;
    min-height: 1.2em;
    margin: 0;
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
    border-top: 1px solid var(--line);
    padding: 2.2rem 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.footer-inner p { font-size: 0.82rem; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
    .stores-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
    .menu-toggle { display: flex; }

    .nav {
        position: fixed;
        inset: 0;
        z-index: 105;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(14, 13, 11, 0.97);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }
    .nav.active { opacity: 1; visibility: visible; }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 1.8rem;
    }
    .nav-link {
        font-family: var(--font-display);
        font-size: 1.4rem;
        text-transform: none;
        letter-spacing: 0.04em;
        color: var(--ivory);
    }

    .header-inner { height: 68px; }

    .about-grid,
    .contact-grid { grid-template-columns: 1fr; }

    .brand-row { grid-template-columns: 1fr; gap: 0.4rem; padding: 1.5rem 0; }
}

@media (max-width: 640px) {
    .stores-grid { grid-template-columns: 1fr; }

    .footer-inner { justify-content: center; text-align: center; }
}
