/* ============================================================
   The Eye Photography — Dark Luxury Theme
   Single stylesheet, mobile-first, fully responsive.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
    /* Surfaces */
    --bg: #141312;
    --bg-elev: #1c1a17;
    --bg-elev-2: #232019;
    --bg-overlay: rgba(10, 9, 8, 0.72);

    /* Text */
    --text: #f2efea;
    --text-muted: #b3a99c;
    --text-dim: #8a8175;

    /* Accent (gold) */
    --gold: #c9a24b;
    --gold-soft: #e2c88b;
    --gold-deep: #9c7c33;
    --gold-grad: linear-gradient(135deg, #e2c88b 0%, #c9a24b 55%, #a07f35 100%);

    /* Lines & shadows */
    --hairline: rgba(242, 239, 234, 0.10);
    --hairline-gold: rgba(201, 162, 75, 0.30);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.35);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.55);

    /* Type */
    --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    /* Layout */
    --container: 1200px;
    --radius: 14px;
    --radius-sm: 10px;
    --radius-lg: 22px;
    --header-h: 76px;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --t-fast: 0.2s var(--ease);
    --t: 0.35s var(--ease);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.7;
    font-size: 1rem;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* Accessible focus */
:focus-visible {
    outline: 2px solid var(--gold-soft);
    outline-offset: 3px;
    border-radius: 4px;
}

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

/* Skip link */
.skip-link {
    position: absolute;
    left: 16px;
    top: -60px;
    z-index: 1000;
    background: var(--gold);
    color: #1a1712;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    transition: top var(--t-fast);
}
.skip-link:focus { top: 16px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; letter-spacing: 0.01em; }

.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.9rem;
}
.eyebrow::before {
    content: "";
    display: inline-block;
    width: 26px;
    height: 1px;
    background: var(--gold);
    vertical-align: middle;
    margin-right: 12px;
    margin-bottom: 4px;
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.5rem); }

.section { padding-block: clamp(3.5rem, 9vw, 7rem); position: relative; }
.section--tint { background: linear-gradient(180deg, var(--bg) 0%, #100f0d 100%); }
.section-head { max-width: 640px; margin-bottom: clamp(2rem, 5vw, 3.25rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-title { font-size: clamp(2rem, 5.5vw, 3.25rem); color: var(--text); }
.section-sub { margin-top: 0.9rem; color: var(--text-muted); font-size: 1.05rem; }

.divider-gold { width: 64px; height: 2px; background: var(--gold-grad); border: none; margin: 1.25rem 0 0; }
.center .divider-gold { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 50px;
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-align: center;
    transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
    will-change: transform;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
    background: var(--gold-grad);
    color: #1a1712;
    box-shadow: 0 8px 22px rgba(201, 162, 75, 0.28);
}
.btn--primary:hover { box-shadow: 0 12px 30px rgba(201, 162, 75, 0.42); transform: translateY(-2px); }

.btn--ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(242, 239, 234, 0.45);
}
.btn--ghost:hover { background: var(--text); color: #1a1712; border-color: var(--text); transform: translateY(-2px); }

.btn--gold-outline {
    background: transparent;
    color: var(--gold-soft);
    border: 1px solid var(--hairline-gold);
}
.btn--gold-outline:hover { background: var(--gold); color: #1a1712; border-color: var(--gold); }

.btn--sm { min-height: 42px; padding: 0.55rem 1.25rem; font-size: 0.85rem; }
.btn--block { width: 100%; }

/* ============================================================
   Header / Navigation
   ============================================================ */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    height: var(--header-h);
    display: flex;
    align-items: center;
    background: rgba(20, 19, 18, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: background var(--t), border-color var(--t);
}
.site-header.scrolled {
    background: rgba(16, 15, 13, 0.92);
    border-bottom-color: var(--hairline);
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand img { height: 42px; width: auto; }
.brand-text { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; color: var(--text); letter-spacing: 0.02em; }
.brand-text span { color: var(--gold); }

.desktop-nav ul { display: flex; align-items: center; gap: 1.65rem; }
.desktop-nav a {
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    color: var(--text-muted);
    padding: 6px 2px;
    position: relative;
    transition: color var(--t-fast);
}
.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -2px;
    width: 0; height: 1.5px;
    background: var(--gold);
    transition: width var(--t);
}
.desktop-nav a:hover, .desktop-nav a.active { color: var(--text); }
.desktop-nav a:hover::after, .desktop-nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 0.75rem; }

.hamburger {
    display: none;
    width: 46px; height: 46px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 10px;
}
.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform var(--t), opacity var(--t-fast);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav panel */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(13, 12, 11, 0.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity var(--t), transform var(--t), visibility var(--t);
}
.mobile-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-nav a {
    font-family: var(--font-display);
    font-size: 1.9rem;
    color: var(--text);
    padding: 0.45rem 1rem;
}
.mobile-nav a.active { color: var(--gold); }
.mobile-nav .btn { margin-top: 1.25rem; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-h);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.hero__bg::after {
    content: "";
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(15,14,12,0.55) 0%, rgba(15,14,12,0.35) 35%, rgba(15,14,12,0.78) 100%),
        radial-gradient(120% 90% at 50% 40%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.5) 100%);
}
.hero__content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    padding: 2rem clamp(1.1rem, 4vw, 2rem);
}
.hero__eyebrow {
    font-size: 0.82rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold-soft);
    margin-bottom: 1.4rem;
}
.hero h1 {
    font-size: clamp(2.8rem, 9vw, 6rem);
    font-weight: 500;
    line-height: 1.02;
    margin-bottom: 1.1rem;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero__tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.15rem, 3vw, 1.6rem);
    color: var(--text);
    opacity: 0.92;
    margin-bottom: 0.8rem;
}
.hero__meta {
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2.2rem;
}
.hero__cta { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }

.scroll-cue {
    position: absolute;
    left: 50%; bottom: 26px;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: none;
    transition: opacity var(--t);
}
.scroll-cue svg { animation: bob 2s var(--ease) infinite; }
.scroll-cue.hidden { opacity: 0; pointer-events: none; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ============================================================
   Portfolio
   ============================================================ */
/* Uniform grid. The two photo groups each have a consistent aspect ratio,
   so tiles line up evenly with essentially no cropping. */
.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(0.5rem, 1.5vw, 1rem);
}
.portfolio-grid[hidden] { display: none; }
.portfolio-grid--wide { margin-top: clamp(0.5rem, 1.5vw, 1rem); }
.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    background: var(--bg-elev);
    aspect-ratio: 22 / 10;            /* ~2.2:1 — matches the main photo group */
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.portfolio-grid--wide .portfolio-item { aspect-ratio: 59 / 20; } /* ~2.95:1 — the wider group */
.portfolio-item.visible { opacity: 1; transform: none; }
.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease), filter var(--t);
}
.portfolio-more-wrap { text-align: center; margin-top: 1.75rem; }
.portfolio-item:hover img { transform: scale(1.06); }
.portfolio-overlay {
    position: absolute; inset: 0;
    display: flex; align-items: flex-end; justify-content: center;
    padding: 1rem;
    background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.7) 100%);
    opacity: 0;
    transition: opacity var(--t);
}
.portfolio-item:hover .portfolio-overlay,
.portfolio-item.show-overlay .portfolio-overlay { opacity: 1; }
.view-full-btn {
    background: rgba(20, 19, 18, 0.75);
    color: var(--text);
    border: 1px solid var(--hairline-gold);
    padding: 0.6rem 1.15rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    backdrop-filter: blur(4px);
    transition: background var(--t-fast), color var(--t-fast);
}
.view-full-btn:hover { background: var(--gold); color: #1a1712; }

/* ============================================================
   Packages
   ============================================================ */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.filter-chip {
    padding: 0.5rem 1.15rem;
    border-radius: 999px;
    border: 1px solid var(--hairline);
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: all var(--t-fast);
}
.filter-chip:hover { color: var(--text); border-color: var(--hairline-gold); }
.filter-chip.active { background: var(--gold-grad); color: #1a1712; border-color: transparent; }

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: clamp(1.1rem, 2.5vw, 1.75rem);
}
.package-card {
    background: var(--bg-elev);
    border: 1px solid var(--hairline);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--t), border-color var(--t), box-shadow var(--t);
    animation: fade-up 0.5s var(--ease) both;
}
.package-card:hover { transform: translateY(-5px); border-color: var(--hairline-gold); box-shadow: var(--shadow-md); }
.package-image { position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.package-image img { width: 100%; height: 100%; object-fit: cover; }
.package-category {
    position: absolute; top: 12px; left: 12px;
    background: rgba(20, 19, 18, 0.82);
    color: var(--gold-soft);
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}
.popular-badge {
    position: absolute; top: 12px; right: 12px;
    background: var(--gold-grad);
    color: #1a1712;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.package-content { padding: 1.4rem; display: flex; flex-direction: column; flex: 1; }
.package-name { font-size: 1.5rem; color: var(--text); margin-bottom: 0.3rem; }
.package-price { color: var(--gold-soft); font-weight: 600; font-size: 1.02rem; margin-bottom: 0.85rem; }
.package-desc { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 1rem; }
.package-features { margin-bottom: 1.25rem; }
.package-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.4rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.package-features li::before {
    content: "✓";
    position: absolute; left: 0;
    color: var(--gold);
    font-weight: 700;
}
.package-content .btn { margin-top: auto; }
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2.5rem 1rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ============================================================
   About / Team
   ============================================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.5rem, 3vw, 2.25rem);
}
.team-card {
    background: var(--bg-elev);
    border: 1px solid var(--hairline);
    border-radius: var(--radius);
    padding: 2rem 1.6rem;
    text-align: center;
    transition: transform var(--t), border-color var(--t);
}
.team-card:hover { transform: translateY(-4px); border-color: var(--hairline-gold); }
.team-photo {
    width: 130px; height: 130px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.25rem;
    border: 2px solid var(--hairline-gold);
    padding: 4px;
    background: var(--bg-elev-2);
}
.team-card h3 { font-size: 1.7rem; margin-bottom: 0.2rem; }
.team-role { color: var(--gold); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1rem; }
.team-card p { color: var(--text-muted); font-size: 0.94rem; margin-bottom: 1.25rem; }
.specialties { display: flex; flex-wrap: wrap; gap: 0.45rem; justify-content: center; }
.specialties span {
    font-size: 0.74rem;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    border: 1px solid var(--hairline);
    border-radius: 999px;
    padding: 0.3rem 0.75rem;
}
.team-social { display: flex; gap: 0.75rem; justify-content: center; margin-top: 1.1rem; }
.team-social a { color: var(--gold-soft); font-size: 0.85rem; border-bottom: 1px solid transparent; transition: border-color var(--t-fast); }
.team-social a:hover { border-color: var(--gold-soft); }

/* ============================================================
   Locations (carousel)
   ============================================================ */
.location-carousel { display: flex; align-items: center; gap: clamp(0.5rem, 2vw, 1.25rem); }
.carousel-arrow {
    flex: 0 0 auto;
    width: 52px; height: 52px;
    display: grid; place-items: center;
    border-radius: 50%;
    border: 1px solid var(--hairline-gold);
    color: var(--gold-soft);
    font-size: 1.2rem;
    background: var(--bg-elev);
    transition: all var(--t-fast);
}
.carousel-arrow:hover { background: var(--gold); color: #1a1712; border-color: var(--gold); }
.location-card {
    flex: 1;
    background: var(--bg-elev);
    border: 1px solid var(--hairline);
    border-radius: var(--radius);
    overflow: hidden;
    transition: opacity var(--t), transform var(--t);
}
.location-image-wrap { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.location-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.location-overlay {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(10, 9, 8, 0.35);
    opacity: 0;
    transition: opacity var(--t);
}
.location-card:hover .location-overlay { opacity: 1; }
.location-info { padding: 1.5rem; }
.location-info h3 { font-size: 1.9rem; margin-bottom: 0.5rem; }
.location-info p { color: var(--text-muted); margin-bottom: 0.9rem; }

.preview-dots { display: flex; gap: 0.55rem; justify-content: center; margin-top: 1.75rem; }
.preview-dot {
    width: 11px; height: 11px;
    border-radius: 50%;
    background: var(--hairline);
    border: 1px solid transparent;
    transition: all var(--t-fast);
}
.preview-dot.active { background: var(--gold); width: 28px; border-radius: 999px; }

/* ============================================================
   Dresses
   ============================================================ */
.select-field {
    appearance: none;
    -webkit-appearance: none;
    background: var(--bg-elev) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c9a24b' d='M6 8 0 0h12z'/%3E%3C/svg%3E") no-repeat right 1rem center;
    border: 1px solid var(--hairline-gold);
    color: var(--text);
    border-radius: 999px;
    padding: 0.7rem 2.6rem 0.7rem 1.25rem;
    min-height: 46px;
    cursor: pointer;
}
.select-field option { background: var(--bg-elev); color: var(--text); }

.dresses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(0.6rem, 2vw, 1.1rem);
    margin-top: 1.75rem;
}
.dress-card {
    background: var(--bg-elev);
    border: 1px solid var(--hairline);
    border-radius: var(--radius-sm);
    overflow: hidden;
    animation: fade-up 0.45s var(--ease) both;
}
.dress-image-container { position: relative; aspect-ratio: 3 / 4; overflow: hidden; }
.dress-image-container img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.dress-card:hover img { transform: scale(1.05); }
.dress-overlay {
    position: absolute; inset: 0;
    display: flex; align-items: flex-end; justify-content: center;
    padding: 1rem;
    background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.65) 100%);
    opacity: 0; transition: opacity var(--t);
}
.dress-card:hover .dress-overlay,
.dress-image-container.show-overlay .dress-overlay { opacity: 1; }
.dress-info { padding: 0.85rem 1rem; }
.dress-info h3 { font-size: 1.05rem; font-weight: 500; font-family: var(--font-body); color: var(--text); }
.dress-info .dress-color { font-size: 0.78rem; color: var(--gold-soft); letter-spacing: 0.05em; }

/* ============================================================
   Studio
   ============================================================ */
.studio-layout { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 4vw, 3rem); }
.studio-highlights { margin: 1.5rem 0; }
.studio-highlights li {
    position: relative; padding-left: 1.6rem; margin-bottom: 0.55rem; color: var(--text-muted);
}
.studio-highlights li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }
.studio-photo { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--hairline); }
.studio-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.studio-photo figcaption { padding: 0.8rem 1rem; color: var(--text-muted); font-size: 0.85rem; text-align: center; }

.swatch-block { margin-top: 2.5rem; }
.swatch-block h3 { font-size: 1.5rem; margin-bottom: 1.1rem; }
.swatch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.8rem;
}
.swatch-card {
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--hairline);
    cursor: pointer;
    transition: transform var(--t-fast), border-color var(--t-fast);
}
.swatch-card:hover { transform: translateY(-3px); border-color: var(--hairline-gold); }
.swatch-card .swatch-img { position: relative; aspect-ratio: 1; overflow: hidden; }
.swatch-card img { width: 100%; height: 100%; object-fit: cover; }
.swatch-card .swatch-label {
    padding: 0.55rem 0.7rem;
    font-size: 0.82rem;
    color: var(--text);
    background: var(--bg-elev);
    text-align: center;
}

/* ============================================================
   Testimonials
   ============================================================ */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.1rem, 2.5vw, 1.75rem);
}
.testimonial-card {
    background: var(--bg-elev);
    border: 1px solid var(--hairline);
    border-radius: var(--radius);
    padding: 2rem 1.6rem;
    position: relative;
}
.testimonial-card::before {
    content: "\201C";
    font-family: var(--font-display);
    font-size: 4.5rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.4;
    position: absolute;
    top: 0.6rem; left: 1.1rem;
}
.testimonial-stars { color: var(--gold); letter-spacing: 0.15em; margin-bottom: 0.9rem; }
.testimonial-card blockquote { font-size: 1.02rem; color: var(--text); font-style: italic; margin-bottom: 1.1rem; position: relative; z-index: 1; }
.testimonial-author { font-weight: 600; color: var(--gold-soft); font-size: 0.92rem; }
.testimonial-meta { color: var(--text-dim); font-size: 0.82rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 800px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.25rem 2.5rem 1.25rem 0;
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text);
    position: relative;
    transition: color var(--t-fast);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    position: absolute; right: 0; top: 50%;
    transform: translateY(-50%);
    font-size: 1.6rem;
    color: var(--gold);
    transition: transform var(--t);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item summary:hover { color: var(--gold-soft); }
.faq-answer { padding: 0 0 1.4rem; color: var(--text-muted); }

/* ============================================================
   Contact
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 4vw, 3.5rem); }
.form-group { margin-bottom: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label { display: block; font-size: 0.82rem; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 0.4rem; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    background: var(--bg-elev);
    border: 1px solid var(--hairline);
    border-radius: var(--radius-sm);
    color: var(--text);
    padding: 0.8rem 1rem;
    min-height: 50px;
    transition: border-color var(--t-fast), background var(--t-fast);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--bg-elev-2);
}
.form-group.error input, .form-group.error textarea { border-color: #d9776b; }
.error-text { display: block; color: #e89086; font-size: 0.8rem; margin-top: 0.35rem; }
.form-feedback { margin-top: 1rem; padding: 0.85rem 1rem; border-radius: var(--radius-sm); font-size: 0.92rem; }
.form-feedback.success { background: rgba(96, 160, 96, 0.15); border: 1px solid rgba(96, 160, 96, 0.4); color: #a8d8a8; }
.form-feedback.error { background: rgba(217, 119, 107, 0.12); border: 1px solid rgba(217, 119, 107, 0.4); color: #e89086; }
button.loading { opacity: 0.7; cursor: progress; }

.contact-info h3 { font-size: 1.6rem; margin-bottom: 1.4rem; }
.contact-methods { display: flex; flex-direction: column; gap: 0.5rem; }
.contact-method {
    display: flex; align-items: center; gap: 0.85rem;
    padding: 0.85rem 1rem;
    border: 1px solid var(--hairline);
    border-radius: var(--radius-sm);
    color: var(--text);
    transition: border-color var(--t-fast), background var(--t-fast), transform var(--t-fast);
}
.contact-method:hover { border-color: var(--hairline-gold); background: var(--bg-elev); transform: translateX(3px); }
.contact-method svg { flex: 0 0 auto; color: var(--gold); }
.contact-method span.label { display: block; font-size: 0.74rem; color: var(--text-dim); letter-spacing: 0.06em; text-transform: uppercase; }
.contact-method span.value { display: block; font-size: 0.95rem; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
    background: #100f0d;
    border-top: 1px solid var(--hairline);
    padding-top: clamp(3rem, 6vw, 4.5rem);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
}
.footer-brand img { height: 46px; margin-bottom: 1rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.92rem; max-width: 320px; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col a { color: var(--text-muted); font-size: 0.92rem; transition: color var(--t-fast); }
.footer-col a:hover { color: var(--text); }
.footer-social { display: flex; gap: 0.6rem; margin-top: 0.4rem; }
.footer-social a {
    width: 42px; height: 42px;
    display: grid; place-items: center;
    border: 1px solid var(--hairline);
    border-radius: 50%;
    color: var(--text);
    transition: all var(--t-fast);
}
.footer-social a:hover { background: var(--gold); color: #1a1712; border-color: var(--gold); }
.footer-bottom {
    border-top: 1px solid var(--hairline);
    padding: 1.5rem 0;
    display: flex; flex-wrap: wrap; gap: 0.5rem;
    justify-content: space-between; align-items: center;
    color: var(--text-dim);
    font-size: 0.84rem;
}

/* ============================================================
   Floating WhatsApp
   ============================================================ */
.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    bottom: calc(18px + env(safe-area-inset-bottom));
    z-index: 90;
    width: 58px; height: 58px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
    transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5); }
.whatsapp-float svg { width: 30px; height: 30px; }

/* ============================================================
   Modals & Lightboxes
   ============================================================ */
.modal {
    position: fixed; inset: 0;
    z-index: 300;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background: var(--bg-overlay);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity var(--t);
}
.modal.show { opacity: 1; }
.modal-content {
    background: var(--bg-elev);
    border: 1px solid var(--hairline-gold);
    border-radius: var(--radius);
    width: 100%;
    max-width: 620px;
    max-height: 90vh;
    overflow-y: auto;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    position: relative;
    transform: translateY(20px);
    transition: transform var(--t);
}
.modal.show .modal-content { transform: translateY(0); }
.modal-content.wide { max-width: 760px; }
.close-button {
    position: absolute; top: 12px; right: 12px;
    width: 42px; height: 42px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: var(--bg-elev-2);
    color: var(--text);
    font-size: 1.4rem;
    line-height: 1;
    z-index: 2;
    transition: background var(--t-fast), color var(--t-fast);
}
.close-button:hover { background: var(--gold); color: #1a1712; }
.modal-content h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); margin-bottom: 1rem; padding-right: 2.5rem; }
.modal-image-wrap { border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 1.1rem; position: relative; }
.modal-image-wrap img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: opacity var(--t-fast); }
.image-slider { position: relative; }
.image-slider .slider-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: rgba(20,19,18,0.7);
    color: var(--text);
    font-size: 1.1rem;
    backdrop-filter: blur(4px);
}
.image-slider .prev-image { left: 10px; }
.image-slider .next-image { right: 10px; }
.modal-price { color: var(--gold-soft); font-size: 1.2rem; font-weight: 600; margin-bottom: 1rem; }
.modal-content h3 { font-size: 1.2rem; margin: 1.2rem 0 0.6rem; color: var(--gold-soft); }
.modal-content ul.tips-list li, .modal-details li {
    position: relative; padding-left: 1.5rem; margin-bottom: 0.5rem; color: var(--text-muted);
}
.modal-content ul.tips-list li::before, .modal-details li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }
.location-pricing-list li::before { content: "•"; }
.modal-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 0.6rem; }
.modal-gallery img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 8px; }
.modal-actions { margin-top: 1.6rem; }

/* Generic image lightbox (portfolio / dress / studio) */
.lightbox {
    position: fixed; inset: 0;
    z-index: 400;
    display: flex; align-items: center; justify-content: center;
    padding: 1.5rem;
    background: rgba(8, 7, 6, 0.92);
    opacity: 0;
    transition: opacity var(--t);
}
.lightbox.show { opacity: 1; }
.lightbox-content { position: relative; max-width: 92vw; max-height: 88vh; }
.lightbox-content img {
    max-width: 92vw; max-height: 88vh;
    width: auto; height: auto;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
}
.lightbox .close-lightbox {
    position: absolute; top: -14px; right: -14px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--gold);
    color: #1a1712;
    font-size: 1.4rem;
    display: grid; place-items: center;
    box-shadow: var(--shadow-md);
}
.lightbox-caption { text-align: center; color: var(--text-muted); margin-top: 0.8rem; font-size: 0.9rem; }
.lightbox-loading {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 0.8rem; color: var(--text-muted); font-size: 0.85rem;
}
.spinner {
    width: 38px; height: 38px;
    border: 3px solid var(--hairline);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes fade-up { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

body.no-scroll { overflow: hidden; }

/* ============================================================
   Responsive
   ============================================================ */
@media (min-width: 700px) {
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 600px) {
    .dresses-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
    .studio-layout { grid-template-columns: 1.05fr 0.95fr; align-items: start; }
    .contact-layout { grid-template-columns: 1.1fr 0.9fr; }
}
@media (min-width: 900px) {
    .dresses-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1100px) {
    .dresses-grid { grid-template-columns: repeat(5, 1fr); }
}

/* Mobile nav switch */
@media (max-width: 899px) {
    .desktop-nav { display: none; }
    .header-actions .btn--book { display: none; }
    .hamburger { display: flex; }
}

@media (max-width: 480px) {
    :root { --header-h: 66px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero__cta { flex-direction: column; }
    .hero__cta .btn { width: 100%; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
    .portfolio-item { opacity: 1; transform: none; }
}

/* Print */
@media print {
    .site-header, .whatsapp-float, .scroll-cue, .hero__cta, .mobile-nav { display: none !important; }
}

/* ---------- Preferred date (day / month / year selects) ---------- */
.date-select-row {
    display: flex;
    gap: 0.5rem;
}
.date-select-row .select-field {
    width: auto;
    flex: 1 1 0;
    min-width: 0;
}

