:root {
    --bg-base: #ede8e4;
    --bg-gradient: radial-gradient(circle at 60% 0%, #ffffff 0%, #ede8e4 50%, #e2dcd6 100%);
    --accent-bronze: #A8815B;
    --text-primary: #111111;
    --text-secondary: #111111;

    /* Premium Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.55);
    --glass-border: rgba(255, 255, 255, 0.9);
    --glass-shadow: inset 0 1px 0 rgba(255, 255, 255, 1), 0 30px 60px -20px rgba(0, 0, 0, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-base);
    background-image: var(--bg-gradient);
    background-attachment: fixed;
    color: var(--text-primary);
    font-family: 'DM Sans', sans-serif;
    line-height: 1.4;
    letter-spacing: -0.015em;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.1;
}

h1 {
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    margin-bottom: 2rem;
    line-height: 1.05;
}

h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

p {
    color: var(--text-secondary);
    max-width: 55ch;
    font-size: 0.95rem;
    font-weight: 300;
}

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

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, transform 0.1s;
}

.btn-primary {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.btn-primary:hover {
    background-color: #fff;
    color: #111;
}

.btn-outline-dark {
    background-color: transparent;
    border: 1px solid #111;
    color: #111;
}

.btn-outline-dark:hover {
    background-color: #111;
    color: #fff;
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #111;
}

.btn-table {
    display: inline-block;
    background: #111;
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-size: 0.85rem;
    transition: background 0.2s;
}

.btn-table:hover {
    background: var(--accent-bronze);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 500;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    color: #fff;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 120px;
    width: auto;
    object-fit: contain;
}

.nav-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.nav-tagline {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
    font-weight: 300;
    font-size: 0.95rem;
}

.nav-links a:not(.btn-secondary) {
    color: rgba(255, 255, 255, 0.8);
}

.nav-links a:not(.btn-secondary):hover {
    color: #fff;
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-links a {
    color: #fff;
}

.navbar.scrolled .btn-secondary {
    border-color: rgba(255, 255, 255, 0.2);
}

/* Mobile Menu & Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 18px;
    cursor: pointer;
    z-index: 1000;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar.scrolled .hamburger span {
    background-color: #fff;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #fff;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #fff;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100dvh;
    background: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 900;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 300;
    font-family: 'DM Sans', sans-serif;
}

/* Full Bleed Hero */
.full-bleed-hero {
    position: relative;
    width: 100%;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Focuses on the top 30% of the image to maximize sky/cloud exposure */
    object-position: center 30%;
    /* Keep the tightened zoom for clarity, but center it normally on the Y-axis */
    transform: scale(1.4);
    /* Hard contrast sharpening techniques to counteract image native blur */
    filter: contrast(1.15) saturate(1.1) brightness(0.95);
    image-rendering: -webkit-optimize-contrast;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 5;
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4rem;
    padding-top: 18rem;
    display: flex;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content h1,
.hero-content p {
    color: #fff;
}

.hero-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    font-weight: 300;
    max-width: 850px;
}

.floating-metrics {
    display: flex;
    gap: 4rem;
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    justify-content: center;
}

.metric .metric-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.metric .metric-label {
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.6);
}

/* Editorial Section */
.section-padding {
    padding: 4rem 4rem;
    max-width: 1600px;
    margin: 0 auto;
}

.editorial-header {
    max-width: 600px;
    margin-bottom: 4rem;
}

.editorial-grid {
    display: flex;
    flex-direction: column;
}

.editorial-row {
    display: grid;
    grid-template-columns: 80px 1.5fr 1fr;
    gap: 2rem;
    padding: 3rem 0;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: background 0.4s ease;
}

.editorial-row:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.editorial-row:hover {
    background: rgba(0, 0, 0, 0.02);
}

.row-number {
    font-size: 1.5rem;
    color: var(--accent-bronze);
    font-weight: 300;
}

.row-details h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.row-action {
    justify-self: end;
}

/* FAQ Accordion Styling */
.faq-accordion {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    font-size: 1.15rem;
    font-family: inherit;
    font-weight: 300;
    color: var(--text-primary);
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
}

.faq-question:hover {
    color: var(--accent-bronze);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: transparent;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}
.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
    color: var(--accent-bronze);
}
.faq-question .icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.4s ease, color 0.4s ease;
};

/* Forms Split */
.split-bento {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 1.5rem;
}

.form-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-radius: 1.5rem;
    padding: 3rem;
}

.embed-zone {
    flex-grow: 1;
    min-height: 300px;
    border-radius: 1rem;
    background: rgba(0, 0, 0, 0.02);
    border: 1px dashed rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: monospace;
    color: var(--text-secondary);
}

.embed-zone.large {
    min-height: 500px;
}

/* Footer */
.footer {
    padding: 4rem 4rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal p {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-secondary);
    text-align: right;
}

/* Reviews Section */
.reviews-section {
    border-top: 1px solid var(--border-color);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-top: 4rem;
}

.review-card {
    padding-left: 2.5rem;
    border-left: 1px solid var(--accent-bronze);
}

.review-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.review-author {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-bronze);
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Mobile */
@media (max-width: 1024px) {

    .nav-container,
    .hero-content-wrapper,
    .section-padding {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .floating-metrics {
        flex-direction: column;
        gap: 2rem;
    }

    .editorial-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 2rem 0;
    }

    .row-number {
        margin-bottom: 0.5rem;
    }

    .row-action {
        justify-self: start;
        margin-top: 1rem;
    }

    .split-bento {
        grid-template-columns: 1fr;
    }

    .footer-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-legal p {
        text-align: center;
    }
}
/* Contact Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 1px solid var(--border-color);
    background: var(--bg-base);
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: var(--text-primary);
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-bronze);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Specific CTA override for contact form button */
.contact-form .btn-primary {
    background-color: #111;
    border-color: #111;
    color: #fff;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    background-color: #A8815B; /* Accent Bronze */
    border-color: #A8815B;
    color: #fff;
    transform: translateY(-2px);
}

/* Footer Social Links */
.footer-social {
    display: flex;
    gap: 2rem;
}

.footer-social a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-social a:hover {
    color: var(--accent-bronze);
}

@media (max-width: 1024px) {
    .footer-social {
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }
}
