@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;
    -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;
    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;
    display: flex; align-items: center; justify-content: center; text-align: center;
    padding: 80px 1.5rem 2rem; 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); line-height: 1.05;
    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); }

/* ═══════════════════════════════════
   Services Section (NEW — SEO-driven)
   ═══════════════════════════════════ */
.services {
    padding: 8rem 2rem;
    position: relative; z-index: 10;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}
.services-inner {
    max-width: 1200px; margin: 0 auto; text-align: center;
}
.services-heading {
    font-size: 3.5rem; color: var(--gold-100); margin-bottom: 1rem;
}
.services-heading span { color: var(--gold-500); font-style: italic; }
.services-sub {
    color: rgba(243,229,171,0.7); font-size: 1.1rem; font-weight: 300;
    max-width: 600px; margin: 0 auto 4rem;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.service-card {
    background: rgba(17,16,16,0.5);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 1rem; padding: 2.5rem 1.5rem;
    text-align: left;
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.service-card:hover {
    border-color: rgba(212,175,55,0.4);
    transform: translateY(-4px);
}
.service-icon {
    color: var(--gold-500); font-size: 1.5rem;
    margin-bottom: 1.2rem;
}
.service-card h3 {
    font-size: 1.3rem; color: var(--gold-100);
    margin-bottom: 0.75rem;
}
.service-card p {
    font-size: 0.95rem; color: rgba(243,229,171,0.65);
    font-weight: 300; line-height: 1.7;
}

/* 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; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===================== MOBILE ≤768px ===================== */
@media (max-width: 768px) {
    .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"], .nav-links a[href="#services"] { display: none; }
    .nav-links a.btn-outline { margin-left: 0; font-size: 0.7rem; padding: 0.45rem 1rem; letter-spacing: 0.1em; }

    .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-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; }

    .services { padding: 5rem 1.2rem; }
    .services-heading { font-size: 2.2rem; }
    .services-grid { grid-template-columns: 1fr; gap: 1rem; }
    .service-card { padding: 1.8rem 1.3rem; }

    .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 { 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 { 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; }
}

/* ═══════════════════════════════════
   Membership Banner
   ═══════════════════════════════════ */
.membership-banner {
    position: relative; z-index: 10;
    background: linear-gradient(135deg, rgba(74,14,23,0.9) 0%, rgba(138,114,36,0.4) 100%);
    border-top: 1px solid rgba(212,175,55,0.3);
    border-bottom: 1px solid rgba(212,175,55,0.3);
    padding: 1rem 2rem;
    display: flex; align-items: center; justify-content: center; gap: 1rem;
    text-align: center;
}
.membership-badge {
    background: var(--gold-500); color: var(--bg-dark);
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em;
    padding: 0.2rem 0.5rem; border-radius: 4px; flex-shrink: 0;
}
.membership-banner p {
    font-size: 0.9rem; color: var(--gold-100); margin: 0;
}
.membership-banner a {
    color: var(--gold-300); text-decoration: none; font-weight: 700;
    transition: color 0.2s;
}
.membership-banner a:hover { color: var(--gold-100); }

/* ═══════════════════════════════════
   Reviews Section
   ═══════════════════════════════════ */
.reviews {
    padding: 6rem 2rem;
    position: relative; z-index: 10;
    background: linear-gradient(to bottom, var(--bg-dark), rgba(17,16,16,0.6));
    border-top: 1px solid rgba(212,175,55,0.1);
}
.reviews-inner {
    max-width: 1200px; margin: 0 auto; text-align: center;
}
.reviews-header { margin-bottom: 3.5rem; }
.reviews-rating {
    display: flex; align-items: center; justify-content: center;
    gap: 0.75rem; margin-bottom: 1.2rem; flex-wrap: wrap;
}
.rating-number {
    font-family: var(--font-serif); font-size: 3.5rem;
    color: var(--gold-500); line-height: 1;
}
.rating-stars { font-size: 1.4rem; color: var(--gold-500); letter-spacing: 0.1em; }
.rating-count {
    font-size: 0.85rem; color: rgba(243,229,171,0.55);
    text-transform: uppercase; letter-spacing: 0.15em;
}
.reviews-heading { font-size: 2.8rem; color: var(--gold-100); }
.reviews-heading span { color: var(--gold-500); font-style: italic; }
.reviews-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.review-card {
    background: rgba(17,16,16,0.6);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 1rem; padding: 2rem 1.5rem;
    text-align: left;
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.review-card:hover {
    border-color: rgba(212,175,55,0.35);
    transform: translateY(-3px);
}
.review-stars { color: var(--gold-500); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 0.05em; }
.review-text {
    font-size: 1rem; color: rgba(243,229,171,0.85);
    font-style: italic; line-height: 1.7; margin-bottom: 1.2rem;
    font-family: var(--font-serif);
}
.review-author {
    font-size: 0.8rem; text-transform: uppercase;
    letter-spacing: 0.15em; color: rgba(243,229,171,0.5);
}
.reviews-cta {
    color: var(--gold-500); text-decoration: none;
    font-size: 0.9rem; letter-spacing: 0.15em; text-transform: uppercase;
    transition: color 0.3s ease;
}
.reviews-cta:hover { color: var(--gold-100); }

/* Address value style */
.addr-value {
    font-size: 1.1rem !important;
    line-height: 1.7;
}

/* ═══════════════════════════════════
   MOBILE overrides for new sections
   ═══════════════════════════════════ */
@media (max-width: 768px) {
    .membership-banner { padding: 0.85rem 1.2rem; gap: 0.6rem; }
    .membership-banner p { font-size: 0.8rem; }

    .reviews { padding: 4rem 1.2rem; }
    .reviews-heading { font-size: 2rem; }
    .rating-number { font-size: 2.8rem; }
    .reviews-grid { grid-template-columns: 1fr; gap: 1rem; }
}


/* ══════════════════════════════════════════════════════════════
   JOURNAL / BLOG TEASER
   ══════════════════════════════════════════════════════════════ */
.journal {
    padding: 5rem 1.5rem;
    background:
        radial-gradient(800px 400px at 50% -20%, rgba(212,175,55,0.08), transparent 60%),
        #080606;
}
.journal-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.journal-eyebrow {
    text-transform: uppercase; letter-spacing: 3px; color: var(--gold-500);
    font-size: 0.8rem; margin: 0 0 0.4rem;
}
.journal-heading {
    font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--gold-100); margin: 0 0 0.5rem;
}
.journal-heading span { color: var(--gold-500); }
.journal-sub {
    color: rgba(243,229,171,0.7); font-weight: 300; max-width: 600px;
    margin: 0 auto 2.5rem;
}
.journal-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; text-align: left;
}
.journal-card {
    display: block; background: linear-gradient(160deg, rgba(26,18,18,0.9), rgba(10,8,8,0.9));
    border: 1px solid rgba(212,175,55,0.15); border-radius: 16px; padding: 1.6rem;
    text-decoration: none; transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.journal-card:hover {
    transform: translateY(-6px); border-color: rgba(212,175,55,0.4);
    box-shadow: 0 14px 40px rgba(0,0,0,0.45);
}
.journal-tag {
    display: inline-block; font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--gold-300); border: 1px solid rgba(212,175,55,0.3); border-radius: 999px;
    padding: 0.15rem 0.7rem; margin-bottom: 0.9rem;
}
.journal-card h3 {
    font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--gold-100);
    margin: 0 0 0.5rem;
}
.journal-card p {
    color: rgba(243,229,171,0.8); font-weight: 300; font-size: 0.95rem; margin: 0;
}
.journal-cta {
    display: inline-block; margin-top: 2.2rem; color: var(--gold-300);
    letter-spacing: 1px; text-transform: uppercase; font-size: 0.9rem;
    border-bottom: 1px solid rgba(212,175,55,0.4); padding-bottom: 2px;
}
.journal-cta:hover { color: var(--gold-100); }

@media (max-width: 768px) {
    .journal-grid { grid-template-columns: 1fr; }
    .journal { padding: 3.5rem 1.2rem; }
}
