/* ============================================
   The SESH Lounge — Stylesheet
   Forest Green + Off-White | Classic & Elegant
   ============================================ */

/* ---- CSS Custom Properties ---- */
:root {
    --color-forest: #1B4332;
    --color-forest-deep: #0F2A1F;
    --color-forest-light: #2D6A4F;
    --color-forest-muted: #40916C;
    --color-off-white: #F5F5DC;
    --color-cream: #FAFAF0;
    --color-warm-white: #FEFEF7;
    --color-sage: #B7E4C7;
    --color-sage-light: #D8F3DC;
    --color-gold: #C9A84C;
    --color-gold-light: #E0C068;
    --color-text-dark: #1A1A1A;
    --color-text-body: #2C2C2C;
    --color-text-muted: #5A5A5A;
    --color-text-light: #F5F5DC;
    --color-border: rgba(27, 67, 50, 0.12);
    --color-border-strong: rgba(27, 67, 50, 0.25);
    --color-shadow-sm: 0 1px 3px rgba(27, 67, 50, 0.06);
    --color-shadow-md: 0 4px 20px rgba(27, 67, 50, 0.08);
    --color-shadow-lg: 0 12px 40px rgba(27, 67, 50, 0.12);
    --color-shadow-xl: 0 20px 60px rgba(27, 67, 50, 0.15);

    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition-fast: 0.2s ease;
    --transition-base: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text-body);
    background-color: var(--color-warm-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.15;
    color: var(--color-forest);
}

.accent-italic {
    font-style: italic;
    font-weight: 400;
    color: var(--color-forest-muted);
}

.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-forest-muted);
    margin-bottom: var(--space-md);
    position: relative;
    padding-left: 2rem;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1px;
    background: var(--color-forest-muted);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 560px;
    line-height: 1.8;
}

.section-title--light {
    color: var(--color-off-white);
}

.section-title--light .accent-italic {
    color: var(--color-sage);
}

.section-label--light {
    color: var(--color-sage);
}

.section-label--light::before {
    background: var(--color-sage);
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-forest);
    color: var(--color-off-white);
    border: 1.5px solid var(--color-forest);
}

.btn-primary:hover {
    background: var(--color-forest-deep);
    border-color: var(--color-forest-deep);
    transform: translateY(-2px);
    box-shadow: var(--color-shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--color-forest);
    border: 1.5px solid var(--color-forest);
}

.btn-secondary:hover {
    background: var(--color-forest);
    color: var(--color-off-white);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--color-off-white);
    color: var(--color-forest);
    border: 1.5px solid var(--color-off-white);
}

.btn-light:hover {
    background: transparent;
    color: var(--color-off-white);
    border-color: var(--color-off-white);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--color-off-white);
    border: 1.5px solid rgba(245, 245, 220, 0.5);
}

.btn-outline-light:hover {
    background: var(--color-off-white);
    color: var(--color-forest);
    border-color: var(--color-off-white);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* ---- Navigation ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-lg) 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(250, 250, 240, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: var(--space-md) 0;
    box-shadow: 0 1px 0 var(--color-border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    font-style: italic;
    color: var(--color-off-white);
    background: var(--color-forest);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

.navbar.scrolled .logo-mark {
    background: var(--color-forest);
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-off-white);
    letter-spacing: 0.02em;
    transition: color var(--transition-base);
}

.navbar.scrolled .logo-text {
    color: var(--color-forest);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.nav-links a {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(245, 245, 220, 0.8);
    transition: color var(--transition-fast);
    position: relative;
}

.navbar.scrolled .nav-links a {
    color: var(--color-text-muted);
}

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

.navbar.scrolled .nav-links a:hover {
    color: var(--color-forest);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width var(--transition-base);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.55rem 1.25rem !important;
    border: 1px solid rgba(245, 245, 220, 0.4) !important;
    border-radius: var(--radius-sm) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    transition: all var(--transition-base) !important;
}

.navbar.scrolled .nav-cta {
    border-color: var(--color-forest) !important;
    color: var(--color-forest) !important;
}

.nav-cta:hover {
    background: var(--color-off-white) !important;
    color: var(--color-forest) !important;
}

.navbar.scrolled .nav-cta:hover {
    background: var(--color-forest) !important;
    color: var(--color-off-white) !important;
}

.nav-cta::after {
    display: none !important;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger {
    position: relative;
    width: 20px;
    height: 14px;
    display: block;
}

.hamburger::before,
.hamburger::after,
.hamburger span {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--color-off-white);
    transition: all var(--transition-base);
}

.hamburger::before { top: 0; }
.hamburger span { top: 50%; transform: translateY(-50%); }
.hamburger::after { bottom: 0; }

.navbar.scrolled .hamburger::before,
.navbar.scrolled .hamburger span,
.navbar.scrolled .hamburger::after {
    background: var(--color-forest);
}

.nav-toggle.active .hamburger::before {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.nav-toggle.active .hamburger span {
    opacity: 0;
}

.nav-toggle.active .hamburger::after {
    bottom: 0;
    transform: translateY(0) rotate(-45deg);
}

/* ---- Hero Section ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--color-forest);
    overflow: hidden;
    padding: 8rem var(--space-xl) 4rem;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(245, 245, 220, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 245, 220, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(245, 245, 220, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.hero-bg-pattern::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F5F5DC' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    padding-right: var(--space-xl);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-sage);
    margin-bottom: var(--space-2xl);
    padding: 0.5rem 1rem;
    border: 1px solid rgba(183, 228, 199, 0.3);
    border-radius: 50px;
    background: rgba(183, 228, 199, 0.06);
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-sage);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-headline {
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    color: var(--color-off-white);
    margin-bottom: var(--space-xl);
    letter-spacing: -0.02em;
    line-height: 1.05;
}

.hero-headline .accent-italic {
    color: var(--color-sage);
    font-weight: 400;
}

.hero-subheadline {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(245, 245, 220, 0.7);
    margin-bottom: var(--space-2xl);
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.hero-actions .btn-secondary {
    border-color: rgba(245, 245, 220, 0.4);
    color: var(--color-off-white);
}

.hero-actions .btn-secondary:hover {
    background: var(--color-off-white);
    color: var(--color-forest);
    border-color: var(--color-off-white);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--color-shadow-xl);
    position: relative;
    z-index: 2;
}

.hero-image-main img {
    width: 100%;
    height: 640px;
    object-fit: cover;
    display: block;
}

/* Floating Cards */
.float-card {
    position: absolute;
    background: rgba(250, 250, 240, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--color-shadow-lg);
    z-index: 3;
    animation: float-gentle 4s ease-in-out infinite;
}

.float-card--1 {
    bottom: 12%;
    left: -8%;
    display: flex;
    flex-direction: column;
    gap: 2px;
    animation-delay: 0s;
}

.float-card--1 .float-card-number {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-forest-muted);
}

.float-card--1 .float-card-value {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-forest);
    line-height: 1.1;
}

.float-card--1 .float-card-label {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    margin-top: 2px;
}

.float-card--2 {
    top: 8%;
    right: -5%;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    animation-delay: 1s;
}

.float-card--2 .float-card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-forest);
    border-radius: var(--radius-sm);
    color: var(--color-sage);
    flex-shrink: 0;
}

.float-card--2 .float-card-text {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-forest);
    line-height: 1.3;
}

.float-card--3 {
    bottom: 32%;
    right: -6%;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    animation-delay: 2s;
}

.float-card--3 .float-card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-forest);
    border-radius: var(--radius-sm);
    color: var(--color-sage);
    flex-shrink: 0;
}

.float-card--3 .float-card-text {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-forest);
    line-height: 1.3;
}

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

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(245, 245, 220, 0.5);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 1;
}

.hero-scroll-indicator svg {
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(6px); opacity: 1; }
}

/* ---- About Section ---- */
.about {
    padding: var(--space-5xl) 0;
    background: var(--color-warm-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-image-col {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--color-shadow-lg);
}

.about-image-wrapper img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;
}

.about-image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    border: 2px solid var(--color-sage-light);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-content-col {
    padding: var(--space-xl) 0;
}

.about-body {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.about-feature {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-sage-light);
    border-radius: var(--radius-md);
    color: var(--color-forest);
    flex-shrink: 0;
}

.feature-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-forest);
    margin-bottom: 4px;
}

.feature-desc {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ---- Offerings Section ---- */
.offerings {
    padding: var(--space-5xl) 0;
    background: var(--color-cream);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.section-header .section-subtitle {
    margin: 0 auto;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
}

.offering-card {
    background: var(--color-warm-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--color-shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--color-border);
}

.offering-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--color-shadow-lg);
}

.offering-card-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.offering-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.offering-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(27, 67, 50, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-off-white);
    transition: all var(--transition-base);
}

.offering-card:hover .offering-card-overlay {
    background: rgba(27, 67, 50, 0.3);
}

.offering-card-content {
    padding: var(--space-2xl);
}

.offering-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-forest-muted);
    background: var(--color-sage-light);
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    margin-bottom: var(--space-md);
}

.offering-title {
    font-size: 1.4rem;
    margin-bottom: var(--space-md);
    letter-spacing: -0.01em;
}

.offering-desc {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--color-text-muted);
}

/* ---- Gallery Section ---- */
.gallery {
    padding: var(--space-5xl) 0;
    background: var(--color-warm-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 260px);
    gap: var(--space-lg);
    margin-top: var(--space-3xl);
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-item--large {
    grid-column: span 7;
}

.gallery-item:not(.gallery-item--large) {
    grid-column: span 5;
}

/* ---- Visit Section ---- */
.visit {
    position: relative;
    padding: var(--space-5xl) 0;
    background: var(--color-forest);
    overflow: hidden;
}

.visit-bg {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F5F5DC' fill-opacity='0.4'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.visit-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    text-align: center;
    margin: 0 auto;
}

.visit-desc {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(245, 245, 220, 0.7);
    margin-bottom: var(--space-3xl);
}

.visit-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
    text-align: left;
    margin-bottom: var(--space-3xl);
    padding: var(--space-2xl);
    background: rgba(245, 245, 220, 0.06);
    border: 1px solid rgba(245, 245, 220, 0.1);
    border-radius: var(--radius-xl);
}

.visit-detail {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.visit-detail-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 245, 220, 0.1);
    border-radius: var(--radius-sm);
    color: var(--color-sage);
    margin-bottom: var(--space-xs);
}

.visit-detail-label {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-sage);
}

.visit-detail-value {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-off-white);
    line-height: 1.5;
}

.visit-detail-value a {
    color: var(--color-off-white);
    transition: color var(--transition-fast);
}

.visit-detail-value a:hover {
    color: var(--color-sage);
}

.visit-cta-group {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* ---- Contact Section ---- */
.contact {
    padding: var(--space-5xl) 0;
    background: var(--color-cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.contact-info-desc {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--color-text-muted);
    margin-bottom: var(--space-2xl);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--color-warm-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.contact-method:hover {
    border-color: var(--color-forest-muted);
    box-shadow: var(--color-shadow-md);
    transform: translateX(4px);
}

.contact-method-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-sage-light);
    border-radius: var(--radius-sm);
    color: var(--color-forest);
    flex-shrink: 0;
}

.contact-method span {
    font-size: 0.92rem;
    color: var(--color-text-body);
    line-height: 1.5;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-warm-white);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    border: 1px solid var(--color-border);
    box-shadow: var(--color-shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.form-label {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-forest);
}

.form-input {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--color-text-body);
    background: var(--color-cream);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 0.8rem 1rem;
    transition: all var(--transition-fast);
    outline: none;
    width: 100%;
}

.form-input:focus {
    border-color: var(--color-forest-muted);
    background: var(--color-warm-white);
    box-shadow: 0 0 0 3px rgba(27, 67, 50, 0.08);
}

.form-input::placeholder {
    color: var(--color-text-muted);
    opacity: 0.6;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231B4332' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--color-sage-light);
    border-radius: var(--radius-sm);
    color: var(--color-forest);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: var(--space-sm);
}

.form-success svg {
    flex-shrink: 0;
    color: var(--color-forest);
}

/* ---- Footer ---- */
.footer {
    background: var(--color-forest-deep);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(245, 245, 220, 0.08);
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.footer-logo .logo-mark {
    background: rgba(245, 245, 220, 0.15);
    color: var(--color-sage);
}

.footer-logo .logo-text {
    color: var(--color-off-white);
}

.footer-tagline {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(245, 245, 220, 0.5);
}

.footer-heading {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-sage);
    margin-bottom: var(--space-xl);
}

.footer-links ul,
.footer-hours ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer-links a,
.footer-hours a {
    font-size: 0.88rem;
    color: rgba(245, 245, 220, 0.5);
    transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-hours a:hover {
    color: var(--color-off-white);
}

.footer-links li span {
    font-size: 0.88rem;
    color: rgba(245, 245, 220, 0.5);
    line-height: 1.6;
}

.hours-day {
    display: block;
    font-size: 0.88rem;
    color: rgba(245, 245, 220, 0.5);
}

.hours-time {
    display: block;
    font-size: 0.82rem;
    color: rgba(245, 245, 220, 0.35);
    margin-top: 2px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-2xl);
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(245, 245, 220, 0.35);
}

.footer-location {
    font-size: 0.78rem !important;
}

/* ---- Scroll Animations ---- */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="true"] {
    transition-delay: 0.1s;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        order: 1;
    }

    .hero-visual {
        order: 2;
        max-width: 480px;
        margin: 0 auto;
    }

    .hero-subheadline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .float-card--1 { left: 0; }
    .float-card--2 { right: 0; }
    .float-card--3 { right: 0; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .about-image-wrapper img {
        height: 500px;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 220px);
    }

    .gallery-item--large {
        grid-column: span 2;
    }

    .gallery-item:not(.gallery-item--large) {
        grid-column: span 1;
    }

    .visit-details {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }

    .footer-brand {
        grid-column: span 2;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    :root {
        --space-5xl: 5rem;
        --space-4xl: 3.5rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-forest-deep);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-2xl);
        transition: right var(--transition-base);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        color: rgba(245, 245, 220, 0.8) !important;
        font-size: 0.9rem;
    }

    .nav-links a:hover {
        color: var(--color-off-white) !important;
    }

    .nav-cta {
        border-color: rgba(245, 245, 220, 0.4) !important;
        color: var(--color-off-white) !important;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .hamburger::before,
    .nav-toggle.active .hamburger span,
    .nav-toggle.active .hamburger::after {
        background: var(--color-off-white) !important;
    }

    .hero {
        padding: 7rem 1.5rem 4rem;
        min-height: auto;
    }

    .hero-headline {
        font-size: clamp(2.25rem, 8vw, 3.5rem);
    }

    .hero-image-main img {
        height: 420px;
    }

    .float-card {
        padding: var(--space-md);
    }

    .float-card--2 .float-card-text,
    .float-card--3 .float-card-text {
        font-size: 0.9rem;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-item--large,
    .gallery-item:not(.gallery-item--large) {
        grid-column: span 1;
    }

    .gallery-item img {
        height: 240px;
    }

    .visit-details {
        padding: var(--space-xl);
    }

    .visit-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .visit-cta-group .btn {
        width: 100%;
        max-width: 280px;
    }

    .contact-form-wrapper {
        padding: var(--space-xl);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 6rem 1.25rem 3rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .float-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        margin-top: var(--space-md);
    }

    .hero-visual {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .about-image-wrapper img {
        height: 400px;
    }

    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
}

/* ---- Mobile overlay ---- */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}
