/* =============================================
   HONEY'S BRIDAL STUDIO — index.css
   UI UX Pro Max: Liquid Glass · Premium Black + Gold
   Stack: Vanilla HTML/CSS · Mobile-First
   ============================================= */

/* ---------- DESIGN TOKENS ---------- */
:root {
    /* UI UX Pro Max Palette: Premium Black + Gold */
    --bg: #FAFAF9;
    --bg-alt: #F5F3EF;
    --dark: #1C1917;
    --dark-2: #44403C;
    --gold: #CA8A04;
    --gold-light: #D97706;
    --text: #0C0A09;
    --text-muted: #78716C;
    --white: #FFFFFF;

    /* Liquid Glass */
    --glass: rgba(255, 255, 255, 0.6);
    --glass-dark: rgba(28, 25, 23, 0.85);
    --glass-border: rgba(202, 138, 4, 0.15);

    /* Typography */
    --font-serif: 'Playfair Display', 'Cormorant Garamond', serif;
    --font-sans: 'Inter', system-ui, sans-serif;

    /* Spacing */
    --container: 1280px;
    --gap-section: clamp(5rem, 10vw, 9rem);
    --gap-sm: 1.5rem;
    --gap-md: 2.5rem;
    --gap-lg: 4rem;

    /* Animation (Pro Max fluid 400-600ms) */
    --ease: cubic-bezier(0.25, 1, 0.5, 1);
    --dur-fast: 0.3s;
    --dur-mid: 0.6s;
    --dur-slow: 0.9s;
    --dur-xslow: 1.4s;

    /* Shadows */
    --shadow-sm: 0 2px 12px rgba(12, 10, 9, 0.06);
    --shadow-md: 0 8px 30px rgba(12, 10, 9, 0.10);
    --shadow-lg: 0 20px 60px rgba(12, 10, 9, 0.14);
    --shadow-gold: 0 8px 32px rgba(202, 138, 4, 0.18);

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-xl: 40px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
}

/* ---------- LAYOUT ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2.5rem;
    }
}

@media (min-width: 1280px) {
    .container {
        padding: 0 3rem;
    }
}

.section-gap {
    padding: var(--gap-section) 0;
}

.text-center {
    text-align: center;
}

/* ---------- TYPOGRAPHY ---------- */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--dark);
}

.section-title em {
    font-style: italic;
    color: var(--dark-2);
}

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

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-xl);
    transition: all var(--dur-mid) var(--ease);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--dark);
    color: var(--white);
    border: 1px solid var(--dark);
}

.btn-primary:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 1px solid var(--dark);
}

.btn-outline:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ---------- SCROLL REVEAL ---------- */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
    transition-delay: var(--delay, 0s);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.revealed {
    opacity: 1 !important;
    transform: translate(0) !important;
}

@media (prefers-reduced-motion: reduce) {

    .reveal-up,
    .reveal-left,
    .reveal-right {
        transition: none;
        opacity: 1;
        transform: none;
    }
}

/* ==============================================
   LOADER
   ============================================== */
.loader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity var(--dur-slow) var(--ease);
}

.loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-inner {
    text-align: center;
}

.loader-studio {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-style: italic;
    color: var(--white);
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.loader-bar {
    width: 200px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 auto;
    overflow: hidden;
}

.loader-bar span {
    display: block;
    height: 100%;
    background: var(--gold);
    animation: loaderFill 1.5s var(--ease) forwards;
}

@keyframes loaderFill {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* ==============================================
   NAV
   ============================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background var(--dur-mid) var(--ease), padding var(--dur-mid) var(--ease), box-shadow var(--dur-mid);
}

.nav.scrolled {
    background: var(--glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 1rem 2rem;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--glass-border);
}

.nav-logo a {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.nav-logo .logo-script {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 400;
    color: var(--white);
    transition: color var(--dur-fast);
    line-height: 1.1;
}

.nav.scrolled .logo-script {
    color: var(--dark);
}

.nav-logo .logo-sub {
    font-family: var(--font-sans);
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--dur-fast);
}

.nav.scrolled .logo-sub {
    color: var(--text-muted);
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
    transition: color var(--dur-fast), border-color var(--dur-fast);
}

.nav-link:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.nav.scrolled .nav-link {
    color: var(--dark);
}

.nav.scrolled .nav-link:hover {
    color: var(--gold);
}

.nav-cta {
    background: var(--dark);
    color: var(--white) !important;
    border: none;
    padding: 0.65rem 1.4rem;
    border-radius: var(--radius-xl);
    border-bottom: none !important;
    transition: background var(--dur-fast), box-shadow var(--dur-fast) !important;
}

.nav-cta:hover {
    background: var(--gold) !important;
    box-shadow: var(--shadow-gold);
}

.nav.scrolled .nav-cta {
    background: var(--dark);
    color: var(--white) !important;
}

/* Burger */
.burger {
    width: 32px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.burger span {
    display: block;
    height: 1.5px;
    width: 100%;
    background: var(--white);
    transition: all var(--dur-fast);
}

.nav.scrolled .burger span {
    background: var(--dark);
}

@media (min-width: 768px) {
    .burger {
        display: none;
    }
}

/* ---------- MOBILE MENU ---------- */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--glass-dark);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-close {
    align-self: flex-end;
    color: var(--white);
    padding: 0.5rem;
}

.mobile-menu-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-link {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-style: italic;
    color: var(--white);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color var(--dur-fast), padding-left var(--dur-fast);
}

.mobile-link:hover {
    color: var(--gold);
    padding-left: 1rem;
}

.mobile-menu-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
}

.mobile-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
    width: fit-content;
}

/* ==============================================
   HERO
   ============================================== */
.hero {
    position: relative;
    height: 100svh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    transform: scale(1.05);
    transition: transform 8s ease-out;
}

.hero-bg.loaded {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(12, 10, 9, 0.88) 0%,
            rgba(12, 10, 9, 0.5) 40%,
            rgba(12, 10, 9, 0.1) 80%,
            transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 1.5rem 4rem;
    width: 100%;
    max-width: 820px;
}

@media (min-width: 768px) {
    .hero-content {
        padding: 0 3rem 5rem;
    }
}

.hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 8vw, 6rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 1.25rem;
}

.hero-title em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2.5vw, 1.15rem);
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2rem;
    max-width: 480px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    right: 1.5rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
}

@media (min-width: 768px) {
    .hero-scroll-hint {
        right: 3rem;
    }
}

.hero-scroll-hint span {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: var(--gold);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(200%);
    }
}

.hero-badge {
    position: absolute;
    top: 2rem;
    right: 1.5rem;
    z-index: 2;
    background: var(--glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dark);
}

@media (min-width: 768px) {
    .hero-badge {
        top: 5.5rem;
        right: 3rem;
    }
}

.badge-icon {
    color: var(--gold);
}

/* ==============================================
   MARQUEE STRIP
   ============================================== */
.marquee-strip {
    background: var(--dark);
    overflow: hidden;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.marquee-track {
    display: flex;
    gap: 2.5rem;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.marquee-track span:nth-child(even) {
    color: var(--gold);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .marquee-track {
        animation: none;
    }
}

/* ==============================================
   ABOUT
   ============================================== */
.about {
    background: var(--bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gap-lg);
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.about-image-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1rem;
    background: var(--dark);
    color: var(--white);
    padding: 1.2rem 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.about-image-badge span {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
}

.about-image-badge p {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.25rem;
}

.about-text {
    padding-bottom: 1.5rem;
}

.about-body {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(12, 10, 9, 0.1);
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-num {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--dark);
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ==============================================
   SERVICES
   ============================================== */
.services {
    background: var(--bg-alt);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 500px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--dur-mid) var(--ease), box-shadow var(--dur-mid) var(--ease);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

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

.service-img img {
    width: 100%;
    height: 100%;
    transition: transform 0.7s var(--ease);
}

.service-card:hover .service-img img {
    transform: scale(1.06);
}

.service-info {
    padding: 1.5rem;
}

.service-num {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.service-info h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.service-info p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ==============================================
   CELEBRITY
   ============================================== */
.celebrity {
    background: var(--dark);
}

.celebrity-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gap-lg);
    align-items: center;
}

@media (min-width: 768px) {
    .celebrity-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 5rem;
    }
}

.celebrity-images {
    position: relative;
    max-width: 360px;
}

.celeb-img-main {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.celeb-img-secondary {
    position: absolute;
    width: 45%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius-sm);
    bottom: -2rem;
    right: -2rem;
    border: 4px solid var(--dark);
    box-shadow: var(--shadow-md);
}

.celebrity .section-eyebrow {
    color: var(--gold);
}

.celebrity .section-title {
    color: var(--white);
}

.celebrity .section-title em {
    color: rgba(255, 255, 255, 0.65);
}

.stars {
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.celebrity-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.05rem, 2.5vw, 1.3rem);
    font-style: italic;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    border-left: 2px solid var(--gold);
    padding-left: 1.5rem;
}

.celeb-subtitle {
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ==============================================
   PORTFOLIO
   ============================================== */
.portfolio {
    background: var(--bg);
}

.portfolio-masonry {
    columns: 2;
    column-gap: 1rem;
    padding: 0 1.5rem;
    max-width: var(--container);
    margin: 0 auto;
}

@media (min-width: 600px) {
    .portfolio-masonry {
        columns: 3;
        column-gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .portfolio-masonry {
        columns: 4;
        column-gap: 1.5rem;
        padding: 0 3rem;
    }
}

.portfolio-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

@media (min-width: 600px) {
    .portfolio-item {
        margin-bottom: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .portfolio-item {
        margin-bottom: 1.5rem;
    }
}

.portfolio-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s var(--ease), filter 0.5s;
    filter: brightness(0.95);
}

.portfolio-item:hover img {
    transform: scale(1.04);
    filter: brightness(1.0);
}

/* ==============================================
   TESTIMONIALS
   ============================================== */
.testimonials {
    background: var(--bg-alt);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 600px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.review-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(12, 10, 9, 0.06);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform var(--dur-mid) var(--ease), box-shadow var(--dur-mid);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.review-card .stars {
    font-size: 1rem;
    letter-spacing: 0.1em;
    margin: 0;
}

.review-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.75;
    flex: 1;
    font-style: italic;
}

.reviewer {
    border-top: 1px solid rgba(12, 10, 9, 0.06);
    padding-top: 1rem;
}

.reviewer-name {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark);
}

.reviewer-look {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 0.2rem;
}

/* ==============================================
   CONTACT
   ============================================== */
.contact {
    background: var(--dark);
}

.contact-grid {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2.5rem 0;
    text-align: left;
}

@media (min-width: 600px) {
    .contact-details {
        grid-template-columns: repeat(3, 1fr);
        align-items: start;
    }
}

.contact .section-eyebrow {
    color: var(--gold);
}

.contact .section-title {
    color: var(--white);
}

.contact .section-title em {
    color: rgba(255, 255, 255, 0.6);
}

.contact-body {
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.05rem;
    margin: 1.5rem 0 2rem;
    line-height: 1.8;
}


.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item svg {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item strong {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.3rem;
}

.contact-item p,
.contact-item a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.contact-item a:hover {
    color: var(--gold);
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.contact .btn-primary {
    background: var(--gold);
    border-color: var(--gold);
}

.contact .btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}

.contact .btn-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.contact .btn-outline:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

.contact-visual {
    position: relative;
}

.contact-visual img {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.contact-visual-tag {
    position: absolute;
    bottom: -1rem;
    left: 1rem;
    background: var(--glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    color: var(--dark);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.6rem 1rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.contact-visual-tag span {
    color: var(--gold);
}

/* ==============================================
   FOOTER
   ============================================== */
.footer {
    background: #0C0A09;
    padding: 5rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@media (min-width: 600px) {
    .footer-top {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 2rem;
    }
}

.footer-brand .logo-script {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-style: italic;
    color: var(--white);
    display: block;
    line-height: 1;
}

.footer-brand .logo-sub {
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1rem;
    display: block;
}

.footer-brand p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.8;
    max-width: 280px;
}

.footer-links-col h4 {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1.5rem;
}

.footer-links-col a {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.75rem;
    transition: color var(--dur-fast);
}

.footer-links-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding: 1.5rem 0;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-wordmark {
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-serif);
    font-size: clamp(5rem, 20vw, 14rem);
    font-weight: 700;
    font-style: italic;
    color: rgba(255, 255, 255, 0.025);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.02em;
}

/* ==============================================
   FLOATING WHATSAPP
   ============================================== */
.wa-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 500;
    width: 54px;
    height: 54px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    color: var(--white);
    transition: transform var(--dur-fast), box-shadow var(--dur-fast);
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

/* ==============================================
   UTILITY
   ============================================== */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--dark-2);
    border-radius: 10px;
}

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