@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&family=Great+Vibes&display=swap');

:root {
    --bg-dark: #050404;
    --bg-light: #111010;
    --gold-100: #F3E5AB;
    --gold-300: #E8CA72;
    --gold-500: #D4AF37;
    --gold-700: #B5952F;
    --gold-900: #8A7224;
    --floral-700: #4A0E17;
    --floral-500: #6B2232;
    
    --font-sans: 'Lato', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-script: 'Great Vibes', cursive;
}

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

html {
    scroll-behavior: smooth;
    /* Prevent font inflation on iOS */
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--gold-100);
    overflow-x: hidden;
    line-height: 1.6;
    /* Prevent horizontal scroll on mobile */
    max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
}

.font-script {
    font-family: var(--font-script);
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.1); }
    50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.3); }
}

@keyframes slowPan {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.animate-fade-up {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* Dynamic Background */
.ambient-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, var(--bg-light) 0%, var(--bg-dark) 100%);
    overflow: hidden;
}

.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
    animation: float 10s ease-in-out infinite;
    mix-blend-mode: screen;
}

.orb-1 {
    top: -10%; left: -10%;
    width: 50vw; height: 50vw;
    background: var(--floral-700);
    animation-delay: 0s;
}

.orb-2 {
    bottom: -20%; right: -10%;
    width: 60vw; height: 60vw;
    background: var(--gold-900);
    animation-delay: -5s;
    opacity: 0.2;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(5, 4, 4, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    min-height: 64px;
}

.brand-container {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.brand-title {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.brand-title span {
    color: var(--gold-500);
    font-weight: 400;
}

.brand-subtitle {
    font-size: 1.5rem;
    color: var(--gold-300);
    margin-left: 2rem;
    margin-top: -0.2rem;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.nav-links a {
    color: var(--gold-100);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: color 0.3s ease;
    margin-left: 2rem;
}

.nav-links a:hover {
    color: var(--gold-500);
}

/* Premium Button */
.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-900) 100%);
    color: var(--bg-dark);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-premium:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

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

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    min-height: 100dvh; /* dynamic viewport on mobile */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 1.5rem 2rem; /* top pad = navbar height */
    position: relative;
}

.hero-inner {
    max-width: 1000px;
    width: 100%;
    z-index: 10;
    position: relative;
    padding: 4rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 2rem;
    background: rgba(17, 16, 16, 0.4);
    backdrop-filter: blur(10px);
}

.hero-inner::before {
    content: '';
    position: absolute;
    inset: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 1.5rem;
    pointer-events: none;
}

.hero-eyebrow {
    color: var(--gold-500);
    font-size: 0.85rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    display: block;
}

.hero-title {
    font-size: clamp(2.8rem, 10vw, 6rem); /* fluid: never overflows on any screen */
    line-height: 1;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 700;
    background: linear-gradient(to right, var(--gold-100), var(--gold-500), var(--gold-100));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: slowPan 5s linear infinite;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 5vw, 2.5rem);
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-300);
    margin-bottom: 2rem;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(243, 229, 171, 0.8);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 3rem;
}

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

.stat-number {
    font-size: 3rem;
    font-family: var(--font-serif);
    color: var(--gold-500);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(243, 229, 171, 0.6);
}

/* About Section */
.about {
    padding: 10rem 2rem;
    display: flex;
    justify-content: center;
    background: linear-gradient(to bottom, transparent, var(--bg-dark));
    position: relative;
    z-index: 10;
}

.about-grid {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    aspect-ratio: 4/5;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 50px rgba(5,4,4,0.5);
    pointer-events: none;
}

.about-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--gold-100);
}

.about-content h2 span {
    color: var(--gold-500);
    font-style: italic;
}

.about-content .subtitle {
    font-family: var(--font-script);
    font-size: 2.5rem;
    color: var(--gold-300);
    margin-bottom: 2rem;
}

.about-content p {
    font-size: 1.1rem;
    color: rgba(243, 229, 171, 0.7);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

/* Contact Section */
.contact {
    padding: 8rem 2rem;
    background: var(--bg-dark);
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info h2 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: var(--gold-100);
}

.contact-info h2 span {
    color: var(--gold-500);
    font-style: italic;
}

.contact-info .subtitle {
    font-family: var(--font-script);
    font-size: 2.5rem;
    color: var(--gold-300);
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item .label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(243, 229, 171, 0.5);
}

.contact-item .value {
    font-size: 1.5rem;
    color: var(--gold-500);
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: var(--font-serif);
}

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

.contact-map {
    height: 400px;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Footer */
.footer {
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding: 4rem 2rem;
    text-align: center;
    background: var(--bg-dark);
    position: relative;
    z-index: 10;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--gold-100);
    margin-bottom: 1rem;
}

.footer-text {
    color: rgba(243, 229, 171, 0.5);
    font-size: 0.9rem;
}

/* =====================
   TABLET (≤992px)
   ===================== */
@media (max-width: 992px) {
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-inner {
        padding: 3rem 2rem;
    }
}

/* =====================
   MOBILE (≤768px)
   ===================== */
@media (max-width: 768px) {
    /* Navbar */
    .navbar {
        padding: 0.9rem 1.2rem;
        min-height: 60px;
    }

    .brand-title {
        font-size: 1.15rem;
        letter-spacing: 0.1em;
    }

    .brand-subtitle {
        font-size: 1.1rem;
        margin-left: 0.8rem;
        margin-top: -0.1rem;
    }

    .nav-links {
        gap: 0;
    }

    .nav-links a[href="#about"] {
        display: none;
    }

    .nav-links a.btn-outline {
        margin-left: 0;
        font-size: 0.7rem;
        padding: 0.45rem 1rem;
        letter-spacing: 0.1em;
    }

    /* Hero */
    .hero {
        padding: 70px 1rem 2rem;
        align-items: flex-start;
        padding-top: 80px;
    }

    .hero-inner {
        padding: 1.8rem 1.2rem;
        border-radius: 1.2rem;
        margin-top: 0.5rem;
    }

    .hero-inner::before {
        inset: 10px;
        border-radius: 1rem;
    }

    .hero-eyebrow {
        font-size: 0.7rem;
        letter-spacing: 0.25em;
        margin-bottom: 1.2rem;
    }

    /* hero-title uses clamp() — no override needed */

    .hero-subtitle {
        letter-spacing: 0.15em;
        margin-bottom: 1rem;
    }

    .hero-desc {
        font-size: 0.9rem;
        margin-bottom: 1.8rem;
        line-height: 1.7;
    }

    .btn-premium {
        padding: 0.9rem 2rem;
        font-size: 0.8rem;
        letter-spacing: 0.15em;
        gap: 0.6rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
        margin-top: 2rem;
        padding-top: 1.8rem;
    }

    .stat-item {
        flex: 1 1 calc(33% - 1rem);
        min-width: 70px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.7rem;
        letter-spacing: 0.1em;
    }

    /* About */
    .about {
        padding: 5rem 1.2rem;
    }

    .about-content h2 {
        font-size: 2.2rem;
    }

    .about-content .subtitle {
        font-size: 1.9rem;
        margin-bottom: 1.5rem;
    }

    .about-content p {
        font-size: 1rem;
    }

    /* Contact */
    .contact {
        padding: 5rem 1.2rem;
    }

    .contact-info h2 {
        font-size: 2.2rem;
    }

    .contact-info .subtitle {
        font-size: 1.9rem;
        margin-bottom: 2rem;
    }

    .contact-item .value {
        font-size: 1.2rem;
        word-break: break-all;
    }

    .contact-map {
        height: 260px;
    }

    /* Footer */
    .footer {
        padding: 2.5rem 1.2rem;
    }

    .footer-logo {
        font-size: 1.6rem;
    }
}

/* =====================
   SMALL PHONES (≤400px)
   ===================== */
@media (max-width: 400px) {
    .brand-title {
        font-size: 1rem;
    }

    .brand-subtitle {
        font-size: 1rem;
        margin-left: 0.5rem;
    }

    .hero-inner {
        padding: 1.5rem 1rem;
    }

    .stat-item {
        flex: 1 1 calc(33% - 0.5rem);
    }

    .stat-number {
        font-size: 1.7rem;
    }

    .contact-item .value {
        font-size: 1.05rem;
    }
}
