/* ============================
   CSS VARIABLES & RESET
   ============================ */
:root {
    --ink: #0f181a;
    --ink-deep: #0a1012;
    --birch: #f5f0e8;
    --amber: #c8922a;
    --amber-glow: rgba(200, 146, 42, 0.15);
    --mist: #b0a898;
    --glass-bg: rgba(15, 24, 26, 0.65);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    background: var(--ink);
    color: var(--birch);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ============================
   NAVIGATION
   ============================ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 48px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

nav.scrolled {
    background: rgba(10, 16, 18, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 16px 48px;
    border-bottom: 1px solid var(--glass-border);
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: white;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-links a {
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

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

.nav-cta {
    font-size: 10px !important;
    font-weight: 400 !important;
    letter-spacing: 0.22em !important;
    color: var(--amber) !important;
    border: 1px solid var(--amber);
    padding: 10px 24px;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: var(--amber);
    color: var(--ink) !important;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
}

/* Mobile Menu Overlay */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(10, 16, 18, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
}

.mobile-menu a {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 300;
    color: white;
    text-decoration: none;
    letter-spacing: 0.08em;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: var(--amber);
}

.mobile-menu-close {
    position: absolute;
    top: 28px;
    right: 28px;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
}

/* ============================
   SECTION COMMON
   ============================ */
.section-eyebrow {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    line-height: 1.15;
    color: white;
    margin-bottom: 20px;
}

.section-title em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
}

.section-body {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--mist);
    max-width: 520px;
}

/* ============================
   HERO (Subpages)
   ============================ */
.page-hero {
    height: 70vh;
    min-height: 500px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(10, 16, 18, 0.3) 0%,
            rgba(10, 16, 18, 0.5) 40%,
            rgba(10, 16, 18, 0.88) 85%,
            var(--ink) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 32px;
}

.page-hero-content .hero-eyebrow {
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 1s ease 0.3s forwards;
}

.page-hero-content .hero-title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 7vw, 80px);
    font-weight: 300;
    line-height: 0.95;
    color: white;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 1s ease 0.5s forwards;
}

.page-hero-content .hero-subtitle {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 48px;
    line-height: 1.8;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeUp 1s ease 0.7s forwards;
}

.page-hero-content .hero-cta {
    display: inline-block;
    background: var(--amber);
    color: var(--ink);
    padding: 16px 44px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    animation: fadeUp 1s ease 0.9s forwards;
}

.page-hero-content .hero-cta:hover {
    background: #daa23a;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(200, 146, 42, 0.3);
}

/* Breadcrumb */
.breadcrumb {
    padding: 24px 48px;
    background: var(--ink);
}

.breadcrumb a {
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mist);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--amber);
}

.breadcrumb span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    margin: 0 12px;
}

/* ============================
   CONTENT SECTIONS
   ============================ */
.content-section {
    padding: 100px 48px;
    background: var(--ink);
}

.content-section-alt {
    padding: 100px 48px;
    background: #111714;
}

.content-inner {
    max-width: 1320px;
    margin: 0 auto;
}

.content-header {
    text-align: center;
    margin-bottom: 64px;
}

/* Two-column layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1320px;
    margin: 0 auto;
}

/* Card grid (reusable for activities, features, etc.) */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1320px;
    margin: 0 auto;
}

.card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.card-icon {
    font-size: 32px;
    margin-bottom: 20px;
    display: block;
    filter: grayscale(30%);
}

.card-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    color: white;
    margin-bottom: 12px;
}

.card-text {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
}

/* Feature list (included items, etc.) */
.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.feature-list li {
    font-size: 14px;
    font-weight: 300;
    color: var(--mist);
    padding-left: 24px;
    position: relative;
    line-height: 1.8;
}

.feature-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--amber);
    font-size: 10px;
}

/* CTA Section */
.cta-section {
    padding: 120px 48px;
    background: var(--ink);
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, rgba(200, 146, 42, 0.5), transparent);
}

.cta-btn {
    display: inline-block;
    background: var(--amber);
    color: var(--ink);
    padding: 16px 44px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    font-family: var(--font-body);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-btn:hover {
    background: #daa23a;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(200, 146, 42, 0.3);
}

.cta-btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--amber);
    padding: 16px 44px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    font-family: var(--font-body);
    border: 1px solid var(--amber);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-btn-outline:hover {
    background: var(--amber);
    color: var(--ink);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(200, 146, 42, 0.3);
}

/* ============================
   INQUIRY / FORMS
   ============================ */
.inquiry {
    padding: 120px 48px;
    background: var(--ink);
    position: relative;
}

.inquiry::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, rgba(200, 146, 42, 0.5), transparent);
}

.inquiry-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.inquiry-form {
    margin-top: 48px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 48px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mist);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 14px 16px;
    color: white;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    transition: border-color 0.3s;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--amber);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23b0a898' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.form-group select option {
    background: var(--ink);
    color: white;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

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

.form-submit {
    margin-top: 32px;
}

.btn-submit {
    display: inline-block;
    background: var(--amber);
    color: var(--ink);
    padding: 16px 56px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: var(--font-body);
}

.btn-submit:hover {
    background: #daa23a;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(200, 146, 42, 0.3);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ============================
   FOOTER
   ============================ */
footer {
    padding: 60px 48px 32px;
    background: var(--ink-deep);
    border-top: 1px solid var(--glass-border);
}

.footer-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    color: white;
    letter-spacing: 0.12em;
}

.footer-columns {
    display: flex;
    gap: 64px;
}

.footer-col h4 {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.3s;
    margin-bottom: 10px;
}

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

.footer-location {
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom {
    max-width: 1320px;
    margin: 40px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    text-align: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 0.05em;
}

/* ============================
   ANIMATIONS
   ============================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-columns {
        gap: 40px;
    }
}

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

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

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .page-hero {
        height: 60vh;
        min-height: 400px;
    }

    .breadcrumb {
        padding: 16px 24px;
    }

    .content-section,
    .content-section-alt,
    .inquiry,
    .cta-section {
        padding-left: 24px;
        padding-right: 24px;
    }

    .card-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .inquiry-form {
        padding: 32px 24px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 32px;
        align-items: center;
        text-align: center;
    }

    .footer-columns {
        flex-direction: column;
        gap: 32px;
        align-items: center;
        text-align: center;
    }
}
