/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
    --black: #0e0e0e;
    --black-soft: #1a1a1a;
    --gold: #c9a96a;
    --gold-light: #e3cd9b;
    --gold-dark: #a68847;
    --cream: #f7f3ed;
    --cream-deep: #ede5d6;
    --nude: #d9c4b1;
    --white: #ffffff;
    --gray: #6b6b6b;
    --gray-light: #cfcfcf;
    --shadow: 0 20px 60px rgba(14, 14, 14, 0.12);
    --shadow-soft: 0 8px 30px rgba(14, 14, 14, 0.08);
    --radius: 14px;
    --radius-lg: 22px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Montserrat', system-ui, sans-serif;
    color: var(--black);
    background: var(--cream);
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.6rem; }
em { font-style: italic; color: var(--gold); font-weight: 600; }

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.section { padding: 110px 0; }

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold-dark);
    margin-bottom: 18px;
}

.section-head {
    max-width: 700px;
    margin-bottom: 60px;
}
.section-head.center { margin: 0 auto 60px; text-align: center; }
.section-head p {
    color: var(--gray);
    font-size: 1.05rem;
    margin-top: 18px;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all var(--transition);
    cursor: pointer;
    border: 1.5px solid transparent;
    white-space: nowrap;
}
.btn-primary {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}
.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(201, 169, 106, 0.45);
}
.btn-ghost {
    background: transparent;
    border-color: var(--black);
    color: var(--black);
}
.btn-ghost:hover {
    background: var(--black);
    color: var(--cream);
}
.btn-lg { padding: 18px 36px; font-size: 0.95rem; }
.btn-block { width: 100%; }
.btn-nav { padding: 11px 22px; font-size: 0.78rem; }

/* ============ HEADER ============ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 18px 0;
    transition: all var(--transition);
    background: rgba(247, 243, 237, 0);
    backdrop-filter: blur(0);
}
.header.scrolled {
    background: rgba(247, 243, 237, 0.92);
    backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 rgba(14, 14, 14, 0.06);
    padding: 12px 0;
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: inline-flex;
    align-items: center;
}
.logo-img {
    height: 70px;
    width: auto;
    display: block;
    transition: height var(--transition);
}
.header.scrolled .logo-img { height: 56px; }
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; }
.footer-logo {
    height: 110px;
    margin-left: -16px;
    margin-bottom: -8px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--cream);
    position: relative;
    transition: color var(--transition);
}
.header.scrolled .nav a { color: var(--black); }
.nav a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width var(--transition);
}
.nav a:not(.btn):hover::after { width: 100%; }
.nav a:not(.btn):hover { color: var(--gold-light); }
.header.scrolled .nav a:not(.btn):hover { color: var(--gold-dark); }

.nav-item--has-dropdown {
    position: relative;
}
.nav-link-with-caret {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--cream);
    position: relative;
    transition: color var(--transition);
}
.header.scrolled .nav-link-with-caret { color: var(--black); }
.nav-link-with-caret::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width var(--transition);
}
.nav-item--has-dropdown:hover .nav-link-with-caret,
.nav-item--has-dropdown.open .nav-link-with-caret {
    color: var(--gold-light);
}
.header.scrolled .nav-item--has-dropdown:hover .nav-link-with-caret,
.header.scrolled .nav-item--has-dropdown.open .nav-link-with-caret {
    color: var(--gold-dark);
}
.nav-item--has-dropdown:hover .nav-link-with-caret::after,
.nav-item--has-dropdown.open .nav-link-with-caret::after {
    width: 100%;
}
.nav-caret {
    width: 12px;
    height: 12px;
    transition: transform var(--transition);
}
.nav-item--has-dropdown:hover .nav-caret,
.nav-item--has-dropdown.open .nav-caret {
    transform: rotate(180deg);
}
.nav-dropdown-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
}
.nav-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 220px;
    background: var(--cream);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 10px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 50;
}
.nav-item--has-dropdown:hover .nav-dropdown,
.nav-item--has-dropdown:focus-within .nav-dropdown,
.nav-item--has-dropdown.open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
    display: block;
    padding: 10px 14px;
    font-size: 0.92rem;
    color: var(--black);
    border-radius: 6px;
    transition: background var(--transition), color var(--transition);
}
.nav-dropdown a::after { display: none; }
.nav-dropdown a:hover {
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-dark);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}
.menu-toggle span {
    width: 26px;
    height: 2px;
    background: var(--cream);
    transition: all var(--transition);
}
.header.scrolled .menu-toggle span { background: var(--black); }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0e0e0e 100%);
    color: var(--cream);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 30%, rgba(201, 169, 106, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 80%, rgba(217, 196, 177, 0.10) 0%, transparent 50%);
    pointer-events: none;
}
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--gold) 0%, transparent 70%);
    opacity: 0.18;
    filter: blur(40px);
}
.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 70px;
    align-items: center;
}
.hero-content {
    position: relative;
    max-width: 680px;
}
.hero-image {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(201, 169, 106, 0.25);
}
.hero-img-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}
.hero-image-frame {
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(247, 243, 237, 0.25);
    border-radius: calc(var(--radius-lg) - 8px);
    pointer-events: none;
    z-index: 2;
}
.hero-image-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle at 30% 30%, rgba(201, 169, 106, 0.4), transparent 60%);
    pointer-events: none;
    mix-blend-mode: overlay;
    z-index: 1;
}
.hero .eyebrow { color: var(--gold-light); }
.hero h1 {
    color: var(--cream);
    margin-bottom: 24px;
}
.h1-kicker {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--gold-light);
    margin-bottom: 18px;
}
.hero-sub {
    font-size: 1.18rem;
    color: rgba(247, 243, 237, 0.78);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.65;
}
.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 70px;
}
.hero .btn-primary {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}
.hero .btn-primary:hover {
    background: var(--cream);
    border-color: var(--cream);
}
.hero .btn-ghost {
    border-color: rgba(247, 243, 237, 0.4);
    color: var(--cream);
}
.hero .btn-ghost:hover {
    background: var(--cream);
    color: var(--black);
    border-color: var(--cream);
}

.hero-meta {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    padding-top: 36px;
    border-top: 1px solid rgba(247, 243, 237, 0.15);
}
.hero-meta div { display: flex; flex-direction: column; }
.hero-meta strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    color: var(--gold-light);
    font-weight: 600;
}
.hero-meta span {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(247, 243, 237, 0.6);
    margin-top: 2px;
}

/* ============ BENEFITS ============ */
.benefits {
    background: var(--white);
    padding: 36px 0;
    border-bottom: 1px solid var(--cream-deep);
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}
.benefit {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 500;
}
.benefit span {
    color: var(--gold);
    font-size: 1.4rem;
}
.benefit p { font-size: 0.95rem; }

/* ============ SERVICES ============ */
.services { background: var(--cream); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 44px 36px;
    position: relative;
    transition: all var(--transition);
    border: 1px solid transparent;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: var(--gold-light);
}
.service-card--featured {
    background: var(--black);
    color: var(--cream);
    transform: translateY(-12px);
}
.service-card--featured:hover {
    border-color: var(--gold);
    transform: translateY(-18px);
}
.badge {
    position: absolute;
    top: 22px;
    right: 22px;
    background: var(--gold);
    color: var(--black);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 6px 14px;
    border-radius: 999px;
}
.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--cream-deep);
    color: var(--gold-dark);
    display: grid;
    place-items: center;
    margin-bottom: 24px;
}
.service-card--featured .service-icon {
    background: rgba(201, 169, 106, 0.15);
    color: var(--gold);
}
.service-icon svg { width: 36px; height: 36px; }
.service-card h3 { margin-bottom: 14px; }
.service-card > p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 22px;
    line-height: 1.65;
}
.service-card--featured > p { color: rgba(247, 243, 237, 0.75); }
.service-card ul {
    margin-bottom: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--cream-deep);
}
.service-card--featured ul { border-color: rgba(247, 243, 237, 0.12); }
.service-card li {
    padding: 8px 0 8px 22px;
    font-size: 0.9rem;
    position: relative;
}
.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}
.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--black);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    transition: gap var(--transition), color var(--transition);
}
.service-card--featured .service-cta { color: var(--gold); }
.service-cta:hover { gap: 14px; color: var(--gold-dark); }

.services-cta {
    margin-top: 60px;
    text-align: center;
    padding: 48px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px dashed var(--gold-light);
}
.services-cta p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 22px;
    color: var(--black);
}

/* ============ ABOUT ============ */
.about { background: var(--white); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas:
        "image header"
        "image body";
    gap: 0 70px;
    align-items: start;
}
.about-header { grid-area: header; margin-bottom: 24px; }
.about-image { grid-area: image; }
.about-body { grid-area: body; }
.about-header .eyebrow { margin-bottom: 18px; }
.about-image {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.about-img-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}
.about-image-frame {
    position: absolute;
    inset: 18px;
    border: 1.5px solid rgba(247, 243, 237, 0.5);
    border-radius: calc(var(--radius-lg) - 8px);
    pointer-events: none;
    z-index: 2;
}
.about-image-tag {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--cream);
    color: var(--black);
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    z-index: 2;
}
.about-content h2 { margin-bottom: 24px; }
.about-content p {
    color: var(--gray);
    margin-bottom: 18px;
    font-size: 1.02rem;
    line-height: 1.75;
}
.about-content strong { color: var(--black); }
.about-pullquote {
    margin: 30px 0;
    padding: 24px 28px;
    border-left: 3px solid var(--gold);
    background: linear-gradient(90deg, rgba(201, 169, 106, 0.08), transparent);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    line-height: 1.45;
    color: var(--black);
    font-style: italic;
    font-weight: 500;
}
.about-pullquote em {
    color: var(--gold-dark);
    font-weight: 600;
}
.about-content .btn { margin-top: 20px; }

/* ============ INSTAGRAM SECTION ============ */
.ig-section {
    background: var(--white);
    padding: 80px 0;
    position: relative;
}
.ig-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0e0e0e 100%);
    color: var(--cream);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.ig-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 106, 0.25), transparent 65%);
    filter: blur(30px);
}
.ig-avatar {
    position: relative;
    width: 180px;
    height: 180px;
    flex-shrink: 0;
}
.ig-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 4px solid var(--black);
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
}
.ig-avatar-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: conic-gradient(from 45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888, #f09433);
    z-index: 1;
}
.ig-avatar-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    display: grid;
    place-items: center;
    z-index: 3;
    border: 3px solid var(--black);
}
.ig-avatar-badge svg { width: 22px; height: 22px; }
.ig-content { position: relative; z-index: 2; }
.ig-content .eyebrow { color: var(--gold-light); }
.ig-content h2 {
    color: var(--cream);
    margin-bottom: 14px;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}
.ig-content h2 em { color: var(--gold-light); }
.ig-content > p {
    color: rgba(247, 243, 237, 0.75);
    margin-bottom: 22px;
    max-width: 540px;
    font-size: 1rem;
}
.ig-pillars {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.ig-pillars span {
    padding: 8px 16px;
    background: rgba(201, 169, 106, 0.12);
    border: 1px solid rgba(201, 169, 106, 0.3);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold-light);
}
.ig-btn {
    background: linear-gradient(135deg, #f09433 0%, #dc2743 50%, #bc1888 100%) !important;
    border-color: transparent !important;
    color: white !important;
}
.ig-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 39, 67, 0.4);
}

@media (max-width: 760px) {
    .ig-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 50px 30px;
        gap: 30px;
    }
    .ig-avatar { margin: 0 auto; width: 140px; height: 140px; }
    .ig-pillars { justify-content: center; }
    .ig-content > p { margin-left: auto; margin-right: auto; }
}

/* ============ GALLERY ============ */
.gallery { background: var(--cream); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.gallery-item {
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    aspect-ratio: 3 / 4;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
    filter: saturate(0.98);
    display: block;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.06);
    filter: saturate(1.1);
}
.gallery-cta {
    margin-top: 40px;
    text-align: center;
}

/* ============ TESTIMONIALS ============ */
.testimonials { background: var(--white); }
.google-rating {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
    padding: 10px 22px;
    background: var(--cream);
    border-radius: 999px;
}
.google-stars {
    color: #fbbc04;
    font-size: 1.15rem;
    letter-spacing: 0.05em;
}
.google-score {
    font-size: 0.9rem;
    color: var(--gray);
}
.google-score strong {
    color: var(--black);
    font-size: 1.05rem;
    margin-right: 4px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
@media (max-width: 760px) {
    .testimonials-grid { grid-template-columns: 1fr; }
}
.testimonial {
    background: var(--white);
    padding: 28px 26px;
    border-radius: var(--radius);
    position: relative;
    border: 1px solid var(--cream-deep);
    box-shadow: var(--shadow-soft);
    transition: all var(--transition);
}
.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--gold-light);
}
.testimonial-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 1.05rem;
    flex-shrink: 0;
}
.testimonial-head > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.testimonial-head strong {
    font-size: 0.95rem;
    color: var(--black);
}
.testimonial-head span {
    font-size: 0.78rem;
    color: var(--gray);
    margin-top: 2px;
}
.google-mark {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--cream-deep);
    display: grid;
    place-items: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    background: linear-gradient(135deg, #4285f4 0%, #ea4335 33%, #fbbc04 66%, #34a853 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.testimonial .stars {
    color: #fbbc04;
    font-size: 1rem;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}
.testimonial p {
    font-size: 0.97rem;
    line-height: 1.6;
    color: var(--black);
}
.testimonials-cta {
    margin-top: 50px;
    text-align: center;
}

/* ============ FAQ ============ */
.faq { background: var(--white); }
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.faq-item {
    background: var(--cream);
    border: 1px solid var(--cream-deep);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}
.faq-item[open] {
    border-color: var(--gold-light);
    box-shadow: var(--shadow-soft);
}
.faq-item summary {
    padding: 22px 26px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--black);
    transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-dark); }
.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--black);
    display: grid;
    place-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    transition: transform var(--transition), background var(--transition);
}
.faq-item[open] .faq-icon {
    transform: rotate(45deg);
    background: var(--gold-dark);
    color: var(--cream);
}
.faq-answer {
    padding: 0 26px 24px;
    color: var(--gray);
    font-size: 0.97rem;
    line-height: 1.7;
}
.faq-answer p { margin-top: 4px; }
.faq-answer a {
    color: var(--gold-dark);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.faq-answer a:hover { color: var(--gold); }
.faq-answer strong { color: var(--black); }
.faq-cta {
    margin-top: 50px;
    text-align: center;
}
.faq-cta p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    margin-bottom: 18px;
    color: var(--black);
}

@media (max-width: 560px) {
    .faq-item summary {
        padding: 18px 20px;
        font-size: 1.1rem;
    }
    .faq-answer { padding: 0 20px 20px; }
}

/* ============ CONTACT ============ */
.contact {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-soft) 100%);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}
.contact::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 106, 0.18), transparent 65%);
    filter: blur(40px);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    position: relative;
}
.contact-info h2 { color: var(--cream); margin-bottom: 18px; }
.contact-info > p {
    color: rgba(247, 243, 237, 0.75);
    margin-bottom: 36px;
    font-size: 1.02rem;
}
.contact-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: rgba(247, 243, 237, 0.04);
    border: 1px solid rgba(247, 243, 237, 0.08);
    border-radius: var(--radius);
    transition: all var(--transition);
}
.contact-item:not(.contact-item--static):hover {
    background: rgba(201, 169, 106, 0.1);
    border-color: var(--gold);
    transform: translateX(6px);
}
.contact-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--gold);
    color: var(--black);
    display: grid;
    place-items: center;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-item div { display: flex; flex-direction: column; }
.contact-item strong { font-size: 0.98rem; color: var(--cream); margin-bottom: 2px; }
.contact-item span { font-size: 0.82rem; color: rgba(247, 243, 237, 0.6); }

/* Horarios — schedule list */
.contact-item--schedule { align-items: flex-start; }
.contact-item--schedule .contact-icon { margin-top: 4px; }
.schedule-list {
    list-style: none;
    margin: 8px 0 6px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.schedule-list li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.85rem;
    color: rgba(247, 243, 237, 0.85);
    border-bottom: 1px dashed rgba(247, 243, 237, 0.08);
    padding-bottom: 4px;
}
.schedule-list li:last-child { border-bottom: 0; }
.schedule-list li span:first-child {
    color: var(--gold-light);
    font-weight: 500;
}
.contact-cta {
    margin-top: 8px;
    color: var(--gold) !important;
    font-size: 0.78rem !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-form-wrap {
    background: var(--cream);
    color: var(--black);
    padding: 44px 38px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.contact-form h3 {
    font-size: 1.7rem;
    margin-bottom: 4px;
}
.form-sub {
    color: var(--gray);
    margin-bottom: 26px;
    font-size: 0.92rem;
}
.contact-form label {
    display: block;
    margin-bottom: 16px;
}
.contact-form span {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 8px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--cream-deep);
    border-radius: 10px;
    background: var(--white);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--black);
    transition: border-color var(--transition);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}
.contact-form textarea { resize: vertical; }
.contact-form .btn { margin-top: 8px; }

/* ============ FOOTER ============ */
.footer {
    background: var(--black);
    color: rgba(247, 243, 237, 0.7);
    padding: 70px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
}
.footer .logo-text { color: var(--cream); }
.footer-grid > div > p {
    margin-top: 18px;
    font-size: 0.92rem;
    max-width: 320px;
}
.footer h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 20px;
}
.footer ul li {
    padding: 6px 0;
    font-size: 0.92rem;
}
.footer ul a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid rgba(247, 243, 237, 0.08);
    padding: 24px 0;
    text-align: center;
    font-size: 0.82rem;
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 99;
    transition: all var(--transition);
    animation: pulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    animation: none;
}
.whatsapp-float svg { width: 30px; height: 30px; }

@keyframes pulse {
    0%, 100% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4), 0 0 0 16px rgba(37, 211, 102, 0); }
}

/* ============ ANIMATIONS ============ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
    .section { padding: 80px 0; }

    /* HERO en móvil: foto como fondo, texto encima con overlay oscuro */
    .hero {
        min-height: 95vh;
        padding: 0;
        position: relative;
    }
    .hero .container {
        width: 100%;
        max-width: none;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: 95vh;
        display: flex;
        flex-direction: column;
        /* Texto arriba (rellena el hueco bajo el menú).
           La imagen queda visible debajo, sin solapamiento con la cara. */
        justify-content: flex-start;
        padding: 90px 5% 40px;
    }
    .hero-image {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100vw;
        max-width: 100vw;
        height: 100%;
        aspect-ratio: auto;
        margin: 0;
        order: 0;
        border-radius: 0;
        border: none;
        box-shadow: none;
        z-index: 0;
    }
    .hero-img-bg {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Cara desplazada un poco abajo para que quede en la mitad
           inferior del hero, sin pisarse con el bloque de texto de arriba. */
        object-position: center 70%;
    }
    .hero-image-frame { display: none; }
    .hero-image-glow { display: none; }
    .hero-image::after {
        content: '';
        position: absolute;
        inset: 0;
        /* Gradiente trabajado para legibilidad:
           - parte alta oscura para que el texto se lea
           - zona media despejada donde aparece la cara de Rafaela
           - parte baja un poco oscura para fade al siguiente bloque */
        background: linear-gradient(
            180deg,
            rgba(14, 14, 14, 0.92) 0%,
            rgba(14, 14, 14, 0.72) 20%,
            rgba(14, 14, 14, 0.18) 50%,
            rgba(14, 14, 14, 0.45) 90%,
            rgba(14, 14, 14, 0.85) 100%
        );
        z-index: 1;
        pointer-events: none;
    }
    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 100%;
    }

    .menu-toggle { display: flex; }
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        height: 100dvh;
        background: var(--cream);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 22px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 40px rgba(0,0,0,0.1);
        padding: 100px 32px 40px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .nav.open { right: 0; }
    .nav a {
        font-size: 1.15rem;
        text-align: center;
        color: var(--black);
    }
    .nav a:not(.btn):hover { color: var(--gold-dark); }
    .header.scrolled .nav a { color: var(--black); }
    .nav .btn-nav {
        margin-top: 6px;
        color: var(--black);
    }

    .nav-item--has-dropdown {
        width: 100%;
        text-align: center;
    }
    .nav-link-with-caret {
        font-size: 1.15rem;
        color: var(--black);
        justify-content: center;
        width: 100%;
    }
    .header.scrolled .nav-link-with-caret { color: var(--black); }
    .nav-dropdown-toggle {
        display: inline-block;
        position: absolute;
        right: 24px;
        top: 50%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
    }
    .nav-item--has-dropdown {
        position: relative;
        padding: 4px 0;
    }
    .nav-dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        background: transparent;
        border: 0;
        box-shadow: none;
        padding: 0;
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, margin-top 0.3s ease;
    }
    .nav-item--has-dropdown.open .nav-dropdown {
        max-height: 200px;
        margin-top: 12px;
    }
    .nav-item--has-dropdown:hover .nav-dropdown {
        /* En mobile no abrimos por hover */
        max-height: 0;
        margin-top: 0;
    }
    .nav-item--has-dropdown.open:hover .nav-dropdown {
        max-height: 200px;
        margin-top: 12px;
    }
    .nav-dropdown a {
        font-size: 1rem;
        padding: 10px 14px;
    }
    .nav-caret {
        transition: transform 0.25s ease;
    }
    .nav-item--has-dropdown.open .nav-caret {
        transform: rotate(180deg);
    }

    .about-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        grid-template-areas:
            "header"
            "image"
            "body";
        gap: 24px;
    }
    .about-header { margin-bottom: 0; }
    .about-image {
        max-width: 460px;
        margin: 8px auto 8px;
        aspect-ratio: auto;
        height: auto;
    }
    .about-img-bg {
        position: static;
        width: 100%;
        height: auto;
        display: block;
    }
    .about-image-frame { inset: 12px; }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-item:nth-child(3) { grid-column: span 2; aspect-ratio: 16 / 9; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .hero-meta { gap: 30px; }
    .hero-meta strong { font-size: 1.5rem; }
}

@media (max-width: 560px) {
    .section { padding: 64px 0; }
    .hero { padding: 120px 0 60px; }
    .hero-image { max-width: 320px; }
    .logo-img { height: 54px; }
    .header.scrolled .logo-img { height: 46px; }
    .footer-logo { height: 90px; }
    .hero-ctas { flex-direction: column; align-items: stretch; }
    .hero-ctas .btn { width: 100%; }

    .service-card,
    .contact-form-wrap { padding: 32px 24px; }
    .service-card--featured { transform: none; }
    .service-card--featured:hover { transform: translateY(-8px); }

    .services-cta { padding: 32px 24px; }
    .services-cta p { font-size: 1.2rem; }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item:nth-child(3) { grid-column: auto; aspect-ratio: 3 / 4; }

    .whatsapp-float {
        width: 54px; height: 54px;
        bottom: 18px; right: 18px;
    }
    .whatsapp-float svg { width: 26px; height: 26px; }
}
