:root {
    --espresso: #544339;
    --cocoa: #8A6C5F;
    --sand: #BFA38A;
    --oatmeal: #E0D9CF;
    --glow: #F5E9D3;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    background: var(--glow);
    color: var(--espresso);
    overflow-x: hidden;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 60px;
    background: transparent;
    transition: background 0.4s, padding 0.4s;
}

nav.scrolled {
    background: rgba(244, 233, 211, 0.96);
    backdrop-filter: blur(8px);
    padding: 14px 60px;
    box-shadow: 0 1px 20px rgba(84, 67, 57, 0.08);
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 6px;
    color: var(--glow);
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.4s;
}

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

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--glow);
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.2s, color 0.4s;
}

nav.scrolled .nav-links a {
    color: var(--espresso);
}

.nav-links a:hover {
    opacity: 1;
}

.nav-cta {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--glow);
    color: var(--glow);
    padding: 10px 22px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s, border-color 0.4s;
}

nav.scrolled .nav-cta {
    border-color: var(--espresso);
    color: var(--espresso);
}

.nav-cta:hover {
    background: var(--espresso);
    color: var(--glow);
    border-color: var(--espresso);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-hamburger span {
    width: 24px;
    height: 1px;
    background: var(--glow);
    transition: background 0.4s;
}

nav.scrolled .nav-hamburger span {
    background: var(--espresso);
}

/* HERO */
#hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f?w=1600&q=80') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(84, 67, 57, 0.65) 0%, rgba(84, 67, 57, 0.40) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-eyebrow {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 24px;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 8vw, 100px);
    font-weight: 300;
    color: var(--glow);
    line-height: 1.05;
    letter-spacing: 2px;
    margin-bottom: 28px;
}

.hero-title em {
    font-style: italic;
}

.hero-subtitle {
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--oatmeal);
    margin-bottom: 48px;
    font-weight: 300;
}

.hero-cta {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border: 1px solid var(--sand);
    color: var(--glow);
    padding: 16px 40px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.hero-cta:hover {
    background: var(--sand);
    color: var(--espresso);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-scroll span {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--oatmeal);
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--sand), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(1)
    }

    50% {
        opacity: 1;
        transform: scaleY(1.15)
    }
}

/* SECTION COMMONS */
section {
    padding: 110px 60px;
}

.section-eyebrow {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--cocoa);
    margin-bottom: 18px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--espresso);
}

.section-title em {
    font-style: italic;
}

.divider {
    width: 48px;
    height: 1px;
    background: var(--sand);
    margin: 28px 0;
}

.section-body {
    font-size: 14px;
    line-height: 1.85;
    color: var(--cocoa);
    font-weight: 300;
    max-width: 540px;
}

/* PHILOSOPHY */
#philosophy {
    background: var(--glow);
    display: flex;
    align-items: center;
    gap: 80px;
}

.philosophy-text {
    flex: 1;
}

.philosophy-image {
    flex: 1;
    position: relative;
}

.philosophy-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
}

.philosophy-tag {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--espresso);
    color: var(--glow);
    padding: 28px 32px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    font-weight: 300;
    max-width: 220px;
    line-height: 1.5;
}

/* SERVICES */
#services {
    background: var(--espresso);
}

#services .section-eyebrow {
    color: var(--sand);
}

#services .section-title {
    color: var(--glow);
}

#services .divider {
    background: var(--cocoa);
}

#services .section-body {
    color: var(--oatmeal);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 64px;
}

.service-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
    filter: brightness(0.75);
}

.service-card:hover img {
    transform: scale(1.05);
    filter: brightness(0.6);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(84, 67, 57, 0.82) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px 28px;
}

.service-card-tag {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 8px;
}

.service-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 300;
    color: var(--glow);
    line-height: 1.1;
}

.service-card-desc {
    font-size: 12px;
    color: var(--oatmeal);
    line-height: 1.7;
    margin-top: 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.4s;
    opacity: 0;
}

.service-card:hover .service-card-desc {
    max-height: 80px;
    opacity: 1;
}

.services-row2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin-top: 2px;
}

/* SIGNATURE */
#signature {
    background: var(--oatmeal);
}

.signature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.sig-card {
    background: var(--glow);
    padding: 48px 36px;
    border-top: 2px solid var(--sand);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sig-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(84, 67, 57, 0.12);
}

.sig-card-label {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cocoa);
    margin-bottom: 16px;
}

.sig-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 300;
    color: var(--espresso);
    line-height: 1.2;
    margin-bottom: 20px;
}

.sig-card-desc {
    font-size: 13px;
    color: var(--cocoa);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 32px;
}

.sig-card-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
    color: var(--espresso);
}

.sig-card-price span {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    color: var(--cocoa);
    display: block;
    margin-top: 4px;
}

.sig-card-cta {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--espresso);
    border-bottom: 1px solid var(--sand);
    padding-bottom: 3px;
    text-decoration: none;
    margin-top: 24px;
    transition: color 0.2s, border-color 0.2s;
}

.sig-card-cta:hover {
    color: var(--cocoa);
    border-color: var(--cocoa);
}

/* PRIVILEGE */
#privilege {
    background: url('https://images.unsplash.com/photo-1493894473891-10fc1e5dbd22?w=1600&q=80') center/cover no-repeat;
    position: relative;
}

.privilege-overlay {
    position: absolute;
    inset: 0;
    background: rgba(84, 67, 57, 0.88);
}

.privilege-inner {
    position: relative;
    z-index: 2;
}

#privilege .section-eyebrow {
    color: var(--sand);
}

#privilege .section-title {
    color: var(--glow);
}

#privilege .divider {
    background: var(--cocoa);
}

#privilege .section-body {
    color: var(--oatmeal);
}

.privilege-tiers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 64px;
}

.tier-card {
    border: 1px solid rgba(191, 163, 138, 0.35);
    padding: 40px 28px;
    text-align: center;
    transition: border-color 0.3s, background 0.3s;
}

.tier-card:hover {
    border-color: var(--sand);
    background: rgba(245, 233, 211, 0.06);
}

.tier-invest {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 300;
    color: var(--glow);
}

.tier-invest small {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: 1px;
    display: block;
    color: var(--sand);
    margin-bottom: 8px;
}

.tier-divider {
    width: 30px;
    height: 1px;
    background: var(--cocoa);
    margin: 20px auto;
}

.tier-worth {
    font-size: 13px;
    color: var(--oatmeal);
    margin-bottom: 8px;
}

.tier-saving {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--sand);
    font-style: italic;
}

/* BRIDAL */
#bridal {
    background: var(--glow);
    display: flex;
    align-items: stretch;
    gap: 0;
    padding: 0;
}

.bridal-image {
    flex: 1;
    min-height: 640px;
}

.bridal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bridal-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 80px;
}

.bridal-packages {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bridal-pkg {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid rgba(191, 163, 138, 0.3);
}

.bridal-pkg-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--espresso);
}

.bridal-pkg-price {
    font-size: 13px;
    color: var(--cocoa);
    letter-spacing: 1px;
}

.bridal-cta {
    display: inline-block;
    margin-top: 48px;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    background: var(--espresso);
    color: var(--glow);
    padding: 16px 40px;
    text-decoration: none;
    transition: background 0.3s;
}

.bridal-cta:hover {
    background: var(--cocoa);
}

/* FOOTER */
footer {
    background: var(--espresso);
    padding: 72px 60px 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-brand .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 300;
    color: var(--glow);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 12px;
    color: var(--sand);
    line-height: 1.8;
    font-weight: 300;
    max-width: 260px;
}

.footer-col h4 {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 24px;
}

.footer-col a,
.footer-col p {
    display: block;
    font-size: 12px;
    color: rgba(224, 217, 207, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    line-height: 1.6;
    transition: color 0.2s;
}

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

.footer-qr {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.qr-box {
    width: 88px;
    height: 88px;
    border: 1px solid rgba(191, 163, 138, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 233, 211, 0.05);
}

.qr-box svg {
    width: 52px;
    height: 52px;
    opacity: 0.45;
}

.footer-qr p {
    font-size: 11px;
    color: rgba(224, 217, 207, 0.5);
    line-height: 1.6;
    max-width: 160px;
}

.footer-bottom {
    grid-column: 1/-1;
    border-top: 1px solid rgba(191, 163, 138, 0.15);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 11px;
    color: rgba(224, 217, 207, 0.4);
}

/* WHATSAPP FAB */
.whatsapp-fab {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 200;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-fab svg {
    width: 28px;
    height: 28px;
    fill: white;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    section {
        padding: 80px 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-row2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .signature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .privilege-tiers {
        grid-template-columns: repeat(2, 1fr);
    }

    footer {
        grid-template-columns: 1fr 1fr;
    }

    #philosophy {
        flex-direction: column;
        gap: 48px;
    }

    .philosophy-image img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 18px 24px;
    }

    nav.scrolled {
        padding: 12px 24px;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    section {
        padding: 72px 24px;
    }

    .hero-title {
        font-size: clamp(40px, 12vw, 72px);
    }

    .services-grid,
    .services-row2 {
        grid-template-columns: 1fr;
    }

    .signature-grid {
        grid-template-columns: 1fr;
    }

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

    #bridal {
        flex-direction: column;
    }

    .bridal-content {
        padding: 60px 24px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ANIMATIONS */
.fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}