/* ═══════════════════════════════════════════════
   Margaliti Collection — Cheese Bar & More
   Light cream, warm, editorial. Gold meets stone.
   ═══════════════════════════════════════════════ */

/* ── Tokens ── */
:root {
    --bg: #FAF6EF;
    --surface: #FFFFFF;
    --surface-2: #F5EFE2;
    --border: rgba(160, 120, 50, 0.14);
    --border-2: rgba(160, 120, 50, 0.28);

    --gold: #A87828;
    --gold-light: #C99A3A;
    --gold-dim: rgba(168, 120, 40, 0.1);
    --ink: #1C1507;
    --ink-dim: rgba(28, 21, 7, 0.65);
    --muted: rgba(28, 21, 7, 0.42);

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;

    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ── Ambient Background ── */
.ambient-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.18;
    animation: drift 18s ease-in-out infinite alternate;
}

.orb-1 {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, #E8B84B, transparent 70%);
    top: -120px;
    left: -160px;
    animation-delay: 0s;
    animation-duration: 20s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #C9963D, transparent 70%);
    bottom: 10%;
    right: -100px;
    animation-delay: -7s;
    animation-duration: 24s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #D4AA70, transparent 70%);
    top: 45%;
    left: 40%;
    animation-delay: -13s;
    animation-duration: 16s;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, 40px) scale(1.05);
    }

    100% {
        transform: translate(-20px, 20px) scale(0.97);
    }
}

/* ── Language Toggle ── */
.lang-btn {
    position: fixed;
    top: 18px;
    right: 20px;
    z-index: 1000;
    background: var(--surface);
    border: 1px solid var(--border-2);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.lang-btn:hover {
    background: var(--gold-dim);
    border-color: var(--gold);
    transform: scale(1.08);
}

/* ── Container ── */
.container {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

/* ── Hero ── */
.hero {
    text-align: center;
    padding: 100px 0 64px;
}

.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    padding: 6px 18px;
    border: 1px solid var(--border-2);
    border-radius: 50px;
    background: var(--gold-dim);
}

.hero-title {
    font-family: var(--font-display);
    line-height: 1;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.title-main {
    font-size: clamp(4rem, 14vw, 7.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 55%, #7A5510 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.title-sub {
    font-size: clamp(1.4rem, 5vw, 2.6rem);
    font-weight: 400;
    font-style: italic;
    color: var(--ink-dim);
    letter-spacing: 0.06em;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 18px 0 20px;
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 3vw, 1.5rem);
    font-style: italic;
    color: var(--ink-dim);
    max-width: 480px;
    margin: 0 auto 36px;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #fff;
    box-shadow: 0 4px 24px rgba(168, 120, 40, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(168, 120, 40, 0.45);
    filter: brightness(1.08);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--border-2);
}

.btn-ghost:hover {
    background: var(--gold-dim);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* ── Highlights ── */
.highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 16px 0 72px;
}

.highlight-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.highlight-card:hover {
    border-color: var(--border-2);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1), 0 0 0 1px var(--border-2);
}

.highlight-photo {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.highlight-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.highlight-card:hover .highlight-photo img {
    transform: scale(1.05);
}

.highlight-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gold);
    margin: 16px 16px 6px;
}

.highlight-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.55;
    padding: 0 16px 20px;
}

/* ── Section Headers ── */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 10px;
    line-height: 1.1;
}

.section-sub {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 36px;
    font-style: italic;
    font-family: var(--font-display);
    font-size: 1.05rem;
}

/* ── Popular Picks ── */
.picks {
    margin-bottom: 72px;
}

.picks-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pick-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 22px 14px 14px;
    transition: var(--transition);
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pick-card:hover {
    background: var(--surface-2);
    border-color: var(--gold);
    transform: translateX(4px);
    box-shadow: -4px 0 0 0 var(--gold), 0 8px 24px rgba(0, 0, 0, 0.08);
}

.pick-card--featured {
    border-color: rgba(168, 120, 40, 0.35);
    background: linear-gradient(135deg, var(--surface), rgba(168, 120, 40, 0.04));
}

.pick-card--featured:hover {
    border-color: var(--gold-light);
    box-shadow: -4px 0 0 0 var(--gold-light), 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Photo thumbnail replacing emoji */
.pick-photo {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.pick-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.pick-card:hover .pick-photo img {
    transform: scale(1.08);
}

.pick-body {
    flex: 1;
}

.pick-body h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 3px;
}

.pick-note {
    font-size: 12.5px;
    color: var(--muted);
    font-style: italic;
    font-family: var(--font-display);
}

.pick-arrow {
    font-size: 1.1rem;
    color: var(--gold);
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(-6px);
    transition: var(--transition);
}

.pick-card:hover .pick-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ── Order Online ── */
.order {
    margin-bottom: 72px;
}

.order-grid {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.order-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 24px 16px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    text-align: center;
}

.order-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}

.order-icon {
    font-size: 1.9rem;
}

.order-text {
    line-height: 1.3;
}


.order-btn--wolt {
    background: linear-gradient(135deg, #00A8BB 0%, #008FA0 100%);
    border-color: transparent;
    color: #fff;
    min-width: 200px;
}

.order-btn--wolt:hover {
    background: linear-gradient(135deg, #00BACE, #00A8BB);
    box-shadow: 0 12px 36px rgba(0, 168, 187, 0.3);
}

/* ── Location ── */
.location {
    margin-bottom: 72px;
}

.location-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.location-photo {
    width: 200px;
    min-height: 160px;
    flex-shrink: 0;
    overflow: hidden;
}

.location-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.location-card:hover .location-photo img {
    transform: scale(1.05);
}

.location-info {
    flex: 1;
    min-width: 180px;
    padding: 28px 24px;
}

.location-info h2 {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 6px;
}

.location-address {
    color: var(--ink-dim);
    font-size: 15px;
    margin-bottom: 10px;
}

.location-link {
    color: var(--gold);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: var(--transition);
    display: inline-block;
}

.location-link:hover {
    color: var(--gold-light);
    transform: translateX(3px);
}

.location-divider {
    width: 1px;
    height: 64px;
    background: var(--border);
    flex-shrink: 0;
}

.location-contact {
    min-width: 140px;
    padding: 28px 24px;
}

.contact-label {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
}

.contact-phone {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold);
    transition: var(--transition);
    display: block;
}

.contact-phone:hover {
    color: var(--gold-light);
}

/* ── Footer ── */
.footer {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.social-links {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-dim);
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.social-btn:hover {
    background: var(--surface-2);
    border-color: var(--gold);
    color: var(--ink);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.social-icon {
    font-size: 1.1rem;
}

.footer-copy {
    font-size: 13px;
    color: var(--muted);
}

.footer-nuri {
    color: var(--gold);
    font-weight: 600;
    margin-left: 4px;
    transition: var(--transition);
}

.footer-nuri:hover {
    color: var(--gold-light);
}

/* ── Responsive ── */
@media (max-width: 600px) {
    .hero {
        padding: 80px 0 48px;
    }

    .highlights {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 56px;
    }

    .order-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .location-card {
        flex-direction: column;
    }

    .location-photo {
        width: 100%;
        height: 200px;
    }

    .location-divider {
        width: calc(100% - 48px);
        height: 1px;
        margin: 0 24px;
    }

    .location-contact {
        padding-top: 0;
    }
}

@media (max-width: 420px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}