/* Anaka Galerie Fashion v2 — elegant gallery */

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

:root {
    --primary: #c9a227;
    --primary-dark: #8b7355;
    --secondary: #1a1a2e;
    --dark: #1a1a2e;
    --text: #2c2c2c;
    --muted: #7a756c;
    --page-bg: #faf8f5;
    --light-bg: #f5efe3;
    --alt-bg: #f3f1ec;
    --white: #fff;
    --line: rgba(26, 26, 46, 0.08);
    --shadow: 0 10px 40px rgba(26, 26, 46, 0.08);
    --shadow-lg: 0 24px 60px rgba(26, 26, 46, 0.14);
    --radius: 20px;
    --radius-sm: 12px;
    --transition: 0.35s cubic-bezier(.22, 1, .36, 1);
    --font-body: 'Outfit', system-ui, sans-serif;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --whatsapp: #25d366;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--page-bg);
    line-height: 1.7;
    direction: ltr;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 22px; }
.container.narrow { max-width: 780px; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; }

.screen-reader-text {
    border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
    height: 1px; margin: -1px; overflow: hidden; padding: 0;
    position: absolute; width: 1px; word-wrap: normal !important;
}
.skip-link:focus {
    clip: auto !important; clip-path: none; display: block;
    height: auto; left: 10px; top: 10px; width: auto; z-index: 100000;
    background: var(--dark); color: #fff; padding: 10px 16px; border-radius: 8px;
}

/* ===== Top bar ===== */
.top-bar {
    background: var(--dark);
    color: rgba(255,255,255,.88);
    font-size: 0.8rem;
    letter-spacing: 0.04em;
}
.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 9px 22px;
    flex-wrap: wrap;
}
.top-bar-social {
    display: flex;
    gap: 14px;
}
.top-bar-social a {
    color: rgba(255,255,255,.75);
    font-weight: 500;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.top-bar-social a:hover { color: var(--primary); }

/* ===== Header ===== */
.site-header {
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
    gap: 20px;
    position: relative;
}
.site-title-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(201, 162, 39, 0.35);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 0.02em;
}
.logo-tagline {
    font-size: 0.72rem;
    color: var(--muted);
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.logo img, .custom-logo { max-height: 52px; width: auto; }
.custom-logo-link { display: inline-flex; align-items: center; }

.main-nav .nav-list,
.main-nav ul {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}
.main-nav a {
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--text);
    position: relative;
    padding: 6px 0;
    letter-spacing: 0.02em;
}
.main-nav a:hover,
.main-nav a.active,
.main-nav .current-menu-item > a { color: var(--primary-dark); }
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1.5px;
    background: var(--primary);
    transition: var(--transition);
}
.main-nav a:hover::after,
.main-nav a.active::after,
.main-nav .current-menu-item > a::after { width: 100%; }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}
.menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== Header search ===== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.header-search {
    position: relative;
    display: flex;
    align-items: center;
}
.search-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(26, 26, 46, 0.04);
}
.search-toggle:hover,
.search-toggle[aria-expanded="true"] {
    background: var(--dark);
    border-color: var(--dark);
    color: #fff;
    box-shadow: 0 6px 18px rgba(26, 26, 46, 0.18);
}
.header-search-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: min(360px, calc(100vw - 40px));
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 10px;
    box-shadow: var(--shadow-lg);
    z-index: 1200;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
}
.header-search-panel.is-open,
.header-search-panel:not([hidden]) {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.header-search-panel[hidden] {
    display: block !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.header-search-form {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bg, #faf8f5);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 4px 4px 4px 16px;
}
.header-search-field {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    outline: none;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text);
    padding: 10px 0;
}
.header-search-field::placeholder {
    color: var(--muted);
}
.header-search-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    cursor: pointer;
    flex-shrink: 0;
    transition: var(--transition);
}
.header-search-submit:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 16px rgba(201, 162, 39, 0.35);
}

/* Inline header search on large screens */
@media (min-width: 992px) {
    .header-search {
        min-width: 240px;
    }
    .search-toggle {
        display: none;
    }
    .header-search-panel {
        position: static;
        width: 260px;
        padding: 0;
        border: none;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
    }
    .header-search-panel[hidden] {
        display: block !important;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .header-search-form {
        background: #fff;
        box-shadow: 0 2px 12px rgba(26, 26, 46, 0.05);
    }
}

/* ===== Buttons ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 14px 30px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(201, 162, 39, 0.28);
    letter-spacing: 0.02em;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(201, 162, 39, 0.38);
    color: #fff;
}
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    border-radius: 999px;
    border: 1.5px solid rgba(255,255,255,0.45);
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    backdrop-filter: blur(6px);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
    color: #fff;
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--primary);
    color: var(--primary-dark);
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 600;
    background: transparent;
}
.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}
.btn-wa { background: var(--whatsapp); box-shadow: 0 10px 28px rgba(37, 211, 102, 0.3); }
.btn-wa:hover { filter: brightness(1.05); box-shadow: 0 14px 34px rgba(37, 211, 102, 0.4); }

/* ===== Eyebrow / titles ===== */
.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary-dark);
    margin-bottom: 12px;
}
.eyebrow.center { display: block; text-align: center; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: 0.01em;
}
.section-title.left { text-align: left; }
.section-subtitle {
    color: var(--muted);
    font-size: 1.02rem;
    max-width: 560px;
    margin: 0 auto;
    font-weight: 300;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    min-height: 88vh;
    display: flex;
    align-items: center;
    padding: 80px 0 70px;
    background: var(--dark);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(26,26,46,.94) 0%, rgba(26,26,46,.78) 48%, rgba(139,115,85,.55) 100%),
        var(--hero-image, linear-gradient(135deg, #1a1a2e, #3d2f1f));
    background-size: cover;
    background-position: center;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(201,162,39,.25), transparent 40%),
        radial-gradient(circle at 10% 80%, rgba(255,255,255,.06), transparent 35%);
}
.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}
.hero .eyebrow { color: var(--primary); }
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 600;
    line-height: 1.12;
    margin-bottom: 18px;
    letter-spacing: 0.01em;
}
.hero-lead {
    font-size: 1.08rem;
    opacity: 0.9;
    max-width: 520px;
    margin-bottom: 28px;
    font-weight: 300;
    line-height: 1.75;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
}
.hero-stats {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stats .stat {
    display: flex;
    flex-direction: column;
    min-width: 80px;
}
.hero-stats strong {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
}
.hero-stats span {
    font-size: 0.8rem;
    opacity: 0.75;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: 4px;
}
.hero-visual { display: flex; justify-content: center; position: relative; }
.hero-frame {
    width: min(340px, 100%);
    aspect-ratio: 4/5;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 28px;
    padding: 14px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}
.hero-frame-inner {
    height: 100%;
    border-radius: 20px;
    background:
        linear-gradient(160deg, rgba(201,162,39,.35), transparent 50%),
        linear-gradient(340deg, #2a2438, #1a1a2e);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    padding: 24px;
}
.hero-frame-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
}
.hero-frame-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
}
.hero-float {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.5;
}
.hero-float.f1 {
    width: 120px; height: 120px;
    background: var(--primary);
    top: -20px; right: 10%;
    animation: floaty 7s ease-in-out infinite;
}
.hero-float.f2 {
    width: 80px; height: 80px;
    background: #fff;
    bottom: 10%; left: 8%;
    opacity: 0.15;
    animation: floaty 9s ease-in-out infinite reverse;
}
@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}

/* ===== Features ===== */
.features-section {
    padding: 90px 0;
    background: var(--white);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.feature-card {
    background: var(--page-bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    opacity: 0;
    transition: var(--transition);
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    background: #fff;
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
    font-size: 1.8rem;
    display: inline-flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    border-radius: 16px;
    margin-bottom: 18px;
}
.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}
.feature-card p {
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.65;
    font-weight: 300;
}

/* ===== About ===== */
.about-section {
    padding: 90px 0;
    background: var(--alt-bg);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.about-media {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    min-height: 420px;
    box-shadow: var(--shadow-lg);
}
.about-media img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}
.about-placeholder {
    min-height: 420px;
    background: linear-gradient(145deg, #2c2438, #1a1a2e 60%, #3d2f1f);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    font-size: 3.5rem;
}
.about-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255,255,255,0.95);
    color: var(--dark);
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: var(--shadow);
}
.about-text {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 28px;
    font-weight: 300;
}

/* ===== Filters ===== */
.filter-bar {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 74px;
    z-index: 900;
}
.filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}
.filter-btn {
    background: transparent;
    border: 1px solid var(--line);
    padding: 10px 20px;
    border-radius: 999px;
    font-family: inherit;
    font-weight: 500;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text);
    display: inline-block;
}
.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary-dark);
}
.filter-btn.active {
    background: var(--dark);
    color: #fff;
    border-color: var(--dark);
}

/* ===== Gallery ===== */
.gallery-section {
    padding: 80px 0 100px;
    background: var(--page-bg);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.look-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(26,26,46,0.05);
    border: 1px solid var(--line);
    transition: var(--transition);
    cursor: pointer;
    outline: none;
}
.look-card:hover,
.look-card:focus-visible {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.look-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: linear-gradient(145deg, #efe8dc, #e8e0d4);
}
.look-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(.22,1,.36,1);
}
.look-card:hover .look-img { transform: scale(1.07); }
.look-overlay-hint {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to top, rgba(26,26,46,.55), rgba(26,26,46,.1));
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.82rem;
    opacity: 0;
    transition: var(--transition);
}
.look-card:hover .look-overlay-hint { opacity: 1; }
.look-info { padding: 18px 18px 22px; }
.look-cat {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-dark);
    margin-bottom: 8px;
}
.look-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1.3;
}
.look-excerpt {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.5;
    font-weight: 300;
}
.gallery-more { text-align: center; margin-top: 44px; }
.empty-state {
    text-align: center;
    color: var(--muted);
    padding: 48px 20px;
    font-size: 1.05rem;
}
.empty-state a {
    display: inline-block;
    margin-top: 12px;
    color: var(--primary-dark);
    font-weight: 600;
}

/* ===== CTA ===== */
.cta-section {
    padding: 20px 0 90px;
    background: var(--page-bg);
}
.cta-box {
    background: linear-gradient(120deg, var(--dark) 0%, #2a2438 55%, #3d2f1f 100%);
    border-radius: 28px;
    padding: 48px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    color: #fff;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(201,162,39,0.15);
    top: -80px;
    right: -40px;
}
.cta-content { position: relative; z-index: 1; max-width: 560px; }
.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 600;
    margin-bottom: 10px;
}
.cta-content p {
    opacity: 0.85;
    font-weight: 300;
    font-size: 1.02rem;
}
.cta-box .btn-primary { position: relative; z-index: 1; }

/* ===== Contact ===== */
.contact-section {
    padding: 90px 0;
    background: var(--white);
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.contact-card {
    background: var(--page-bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.contact-card::after {
    content: '';
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    background: #fff;
}
.contact-card:hover::after { transform: scaleX(1); }
.contact-card.whatsapp::after { background: var(--whatsapp); }
.contact-card.tiktok::after { background: #111; }
.contact-card.snapchat::after { background: #e6c200; }
.contact-card.instagram::after { background: #e1306c; }
.contact-icon { font-size: 1.8rem; display: block; margin-bottom: 12px; }
.contact-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--dark);
}
.contact-card p { font-size: 0.88rem; color: var(--muted); font-weight: 300; }

/* ===== Modal ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 14, 20, 0.72);
    backdrop-filter: blur(6px);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.modal-overlay.show { opacity: 1; }
.look-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.96);
    width: min(980px, 94vw);
    max-height: 90vh;
    background: #fff;
    border-radius: 24px;
    z-index: 2001;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.look-modal.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(26,26,46,0.65);
    color: #fff;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition);
}
.modal-close:hover { background: var(--primary); }
.look-body {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    max-height: 90vh;
}
.look-body .detail-img {
    width: 100%;
    height: 100%;
    min-height: 440px;
    max-height: 90vh;
    object-fit: cover;
    background: #efe8dc;
}
.look-body .detail-info {
    padding: 40px 36px;
    overflow-y: auto;
    max-height: 90vh;
}
.look-body h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark);
    margin: 8px 0 14px;
    line-height: 1.25;
}
.look-body .detail-cat {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.look-body .detail-desc {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 28px;
    white-space: pre-wrap;
    font-weight: 300;
}
.detail-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: var(--whatsapp);
    color: #fff !important;
    padding: 15px 20px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.detail-contact-btn:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
}

/* ===== Single look ===== */
.single-look-wrap { padding: 48px 0 90px; }
.single-look-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: start;
}
.single-look-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #efe8dc;
}
.single-look-img img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}
.single-look-info h1 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--dark);
    margin: 10px 0 18px;
    line-height: 1.2;
}
.look-desc { margin-bottom: 28px; line-height: 1.85; color: var(--muted); font-weight: 300; }
.look-desc p { margin-bottom: 1em; }
.related-looks {
    margin-top: 70px;
    padding-top: 50px;
    border-top: 1px solid var(--line);
}
.wa-note { color: var(--muted); font-size: 0.9rem; }

/* ===== Page hero / content ===== */
.page-hero {
    background: linear-gradient(120deg, var(--dark), #2a2438 60%, #3d2f1f);
    color: #fff;
    text-align: center;
    padding: 64px 20px 52px;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(201,162,39,0.12);
    top: -100px; right: -60px;
}
.page-hero .page-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
    position: relative;
    z-index: 1;
}
.page-hero .section-subtitle {
    color: rgba(255,255,255,.85);
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}
.breadcrumb {
    font-size: 0.88rem;
    margin-bottom: 16px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}
.breadcrumb a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.breadcrumb span { margin: 0 6px; opacity: 0.65; }
.breadcrumb.dark { color: var(--muted); opacity: 1; margin-bottom: 24px; }
.breadcrumb.dark a { color: var(--primary-dark); }

.page-content-wrap { padding: 48px 0 90px; }
.entry-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    padding: 32px;
    margin-bottom: 28px;
}
.entry-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 16px;
}
.entry-title a:hover { color: var(--primary-dark); }
.entry-content { line-height: 1.85; font-weight: 300; }
.entry-content p { margin-bottom: 1em; }
.read-more { color: var(--primary-dark); font-weight: 600; }

.pagination-wrap { margin-top: 44px; text-align: center; }
.pagination-wrap .nav-links,
.pagination-wrap .page-numbers {
    display: inline-flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}
.pagination-wrap a,
.pagination-wrap span.page-numbers {
    display: inline-block;
    padding: 9px 15px;
    border-radius: 10px;
    border: 1px solid var(--line);
    font-weight: 500;
    color: var(--text);
    background: #fff;
}
.pagination-wrap a:hover,
.pagination-wrap .current {
    background: var(--dark);
    color: #fff;
    border-color: var(--dark);
}

.error-code {
    font-family: var(--font-display);
    font-size: 5.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}

.toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark);
    color: #fff;
    padding: 14px 24px;
    border-radius: 14px;
    z-index: 3000;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    max-width: 90vw;
}
.toast.error { background: #8b1e1e; }

/* ===== Footer ===== */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.82);
    padding: 64px 0 0;
    position: relative;
    overflow: hidden;
}
.footer-ornament {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,162,39,0.12), transparent 65%);
    top: -120px;
    right: -80px;
    pointer-events: none;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    position: relative;
    z-index: 1;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.footer-logo .logo-name {
    color: #fff;
    font-size: 1.4rem;
}
.footer-col h3 {
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
}
.footer-col p {
    font-size: 0.94rem;
    line-height: 1.75;
    opacity: 0.8;
    font-weight: 300;
}
.footer-col a {
    display: block;
    margin-bottom: 10px;
    font-size: 0.92rem;
    opacity: 0.8;
}
.footer-col a:hover { opacity: 1; color: var(--primary); }
.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.social-pill {
    display: inline-flex !important;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.15);
    font-size: 0.82rem !important;
    margin-bottom: 0 !important;
    font-weight: 500;
}
.social-pill:hover {
    border-color: var(--primary);
    color: var(--primary) !important;
}
.footer-hint { font-size: 0.88rem; opacity: 0.7; }
.footer-nav-list { list-style: none; padding: 0; margin: 18px 0 0; }
.footer-nav-list li { margin-bottom: 8px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    padding: 20px;
    font-size: 0.85rem;
    opacity: 0.65;
    position: relative;
    z-index: 1;
}

.search-form {
    display: flex;
    gap: 10px;
    max-width: 520px;
    margin: 0 auto;
    align-items: center;
}
.search-form .search-field {
    flex: 1;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 14px 20px;
    font-family: inherit;
    font-size: 1rem;
    background: #fff;
    color: var(--text);
    outline: none;
    transition: var(--transition);
}
.search-form .search-field:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.15);
}
.search-form .search-submit {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 14px 24px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}
.search-form .search-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(201, 162, 39, 0.3);
}
.page-content-wrap .search-form {
    margin: 0 0 28px;
}
.search-section-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--dark);
    margin: 8px 0 20px;
}
.page-subtitle {
    margin-top: 8px;
    color: rgba(255,255,255,0.78);
    font-weight: 300;
}

/* Mobile nav */
.main-nav.open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(250,248,245,0.98);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-lg);
    padding: 18px 22px 26px;
    border-top: 1px solid var(--line);
}
.main-nav.open .nav-list,
.main-nav.open ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

/* Responsive */
@media (max-width: 1100px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; gap: 36px; }
    .hero-visual { display: none; }
    .hero { min-height: auto; padding: 70px 0 60px; }
    .about-grid { grid-template-columns: 1fr; gap: 36px; }
    .look-body { grid-template-columns: 1fr; }
    .look-body .detail-img { min-height: 280px; max-height: 340px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .single-look-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .main-nav { display: none; }
    .main-nav.open { display: block; }
    .menu-toggle { display: flex; }
    .header-search-panel {
        position: fixed;
        top: auto;
        left: 16px;
        right: 16px;
        width: auto;
        margin-top: 8px;
    }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .features-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr; }
    .filter-bar { top: 68px; }
    .cta-box { padding: 36px 24px; text-align: center; justify-content: center; }
    .cta-content { text-align: center; }
    .top-bar-inner { justify-content: center; text-align: center; }
    .search-form { flex-direction: column; align-items: stretch; }
}
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.2rem; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .btn-primary, .btn-ghost { width: 100%; }
}
