/* ============================================
   AI A INNOVATIONS - Complete Unified Styles
   Single stylesheet - replaces both styles.css and styles-additions.css
   ============================================ */

:root {
    /* Dark palette */
    --bg-deep: #0D0D0F;
    --bg-primary: #141416;
    --bg-elevated: #1A1A1E;
    --bg-card: #1F1F24;
    
    /* Light palette */
    --bg-cream: #FAF8F5;
    --bg-cream-alt: #F0EDE7;
    --text-dark: #1C1C1E;
    --text-dark-secondary: #5A5A5F;
    --text-dark-muted: #8A8A8F;
    --border-light-section: rgba(28, 28, 30, 0.08);
    
    /* Color coding by offering */
    --gold: #C9A054;
    --gold-light: #D4AC64;
    --gold-glow: rgba(201, 160, 84, 0.15);
    --teal: #3D6F71;
    --teal-light: #4A8385;
    --teal-glow: rgba(61, 111, 113, 0.15);
    --terracotta: #A65D4C;
    --terracotta-light: #B86D5C;
    --terracotta-glow: rgba(166, 93, 76, 0.15);
    --slate: #4A5568;
    --slate-light: #5A6578;
    
    /* Text */
    --text-primary: #F2EDE5;
    --text-secondary: rgba(242, 237, 229, 0.7);
    --text-muted: rgba(242, 237, 229, 0.45);
    
    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', -apple-system, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
}

/* ============ RESET & BASE ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.75;
    font-size: 18px;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 0%, rgba(201, 160, 84, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(61, 111, 113, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* ============ NAVIGATION ============ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 4rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    background: rgba(13, 13, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 160, 84, 0.1);
    transition: background 0.4s ease;
}

nav.scrolled {
    background: rgba(13, 13, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 160, 84, 0.1);
}

nav.solid {
    background: rgba(13, 13, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 160, 84, 0.1);
}

.logo {
    font-family: var(--font-body);
    font-weight: 200;
    font-size: 0.85rem;
    letter-spacing: 0.4em;
    color: var(--text-primary);
    text-decoration: none;
}

.logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: var(--space-md);
    list-style: none;
    align-items: center;
    justify-self: center;
    margin: 0;
    padding: 0;
}

.nav-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
    text-decoration: none;
    padding: var(--space-xs) 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

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

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a::after {
    display: none;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(20, 20, 22, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 160, 84, 0.1);
    padding: var(--space-sm);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: var(--space-xs);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown-menu a {
    display: block;
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}

.nav-dropdown-menu a::after {
    display: none;
}

.nav-dropdown-menu a:hover {
    background: rgba(201, 160, 84, 0.1);
}

/* Nav CTA - Gold filled button with black text */
.nav-cta {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #000000;
    background: #C9A054;
    padding: 0.85rem 1.7rem;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #D4AC64;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 160, 84, 0.15);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* ============ HERO ============ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--space-xl) + 1rem) var(--space-lg) var(--space-xl);
    position: relative;
}

.hero-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 760px) minmax(0, 1fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* Hero visual (restores right-side movement / squares) */
.hero-visual {
    justify-self: end;
    width: min(460px, 36vw);
    aspect-ratio: 1;
    position: relative;
    z-index: 0;
    opacity: 0;
    animation: fadeIn 1.2s ease 0.9s forwards;
}

.hero-visual::before {
    content: '';
    position: absolute;
    inset: -70px;
    background:
        radial-gradient(closest-side at 30% 25%, rgba(201, 160, 84, 0.10), transparent 65%),
        radial-gradient(closest-side at 70% 80%, rgba(61, 111, 113, 0.08), transparent 70%);
    filter: blur(10px);
    opacity: 0.9;
}

.hero-squares {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid rgba(201, 160, 84, 0.14);
    background: rgba(255, 255, 255, 0.015);
    backdrop-filter: blur(8px);
}

.hero-squares .sq {
    border-radius: 12px;
    border: 1px solid rgba(201, 160, 84, 0.22);
    background: rgba(201, 160, 84, 0.045);
    opacity: 0.85;
    transform: translateZ(0);
    animation: squareFloat 10s ease-in-out infinite;
}

.hero-squares .sq:nth-child(3n) {
    border-color: rgba(61, 111, 113, 0.26);
    background: rgba(61, 111, 113, 0.04);
}

.hero-squares .sq:nth-child(4n) {
    opacity: 0.60;
}

.hero-squares .sq:nth-child(5n) {
    animation-duration: 14s;
}

.hero-squares .sq:nth-child(2n) {
    animation-delay: -3.5s;
}

.hero-squares .sq:nth-child(7n) {
    animation-delay: -6s;
    animation-duration: 16s;
}

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

.hero-eyebrow {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
    opacity: 0;
    animation: fadeUp 1s ease 0.2s forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: 0.02em;
    margin-bottom: var(--space-md);
    opacity: 0;
    animation: fadeUp 1s ease 0.4s forwards;
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: var(--space-lg);
    opacity: 0;
    animation: fadeUp 1s ease 0.6s forwards;
}

.hero-cta-group {
    display: flex;
    gap: var(--space-md);
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s ease 0.8s forwards;
}

.hero-decoration {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 350px;
    height: 350px;
    opacity: 0;
    animation: fadeIn 1.5s ease 1s forwards;
}

.hero-decoration::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    opacity: 0.2;
    animation: rotate 30s linear infinite;
}

.hero-decoration::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    border: 1px solid var(--teal);
    opacity: 0.15;
    animation: rotate 25s linear infinite reverse;
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    left: var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    opacity: 0;
    animation: fadeIn 1s ease 1.2s forwards;
}

.scroll-indicator span {
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease infinite;
}

/* ============ PAGE HEADERS ============ */
.page-header {
    padding: calc(var(--space-xl) + 80px) var(--space-lg) var(--space-lg);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-header.centered {
    text-align: center;
    max-width: 1000px;
}

.page-header.wide {
    max-width: 1100px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: var(--space-lg);
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--gold);
}

.back-link svg {
    transition: transform 0.3s ease;
}

.back-link:hover svg {
    transform: translateX(-5px);
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    margin-bottom: var(--space-sm);
}

.page-header h1 em {
    font-style: italic;
    color: var(--gold);
}

.page-header h1.gold { color: var(--gold); }
.page-header h1.teal { color: var(--teal); }

.page-header .subtitle {
    color: var(--text-secondary);
    font-size: 1.15rem;
    max-width: 650px;
}

.page-header.centered .subtitle {
    margin: 0 auto;
}

.page-header .meta {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ============ BUTTONS ============ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bg-deep);
    background: var(--gold);
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    transition: all 0.4s ease;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px var(--gold-glow);
}

.btn-primary svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

.btn-primary.teal {
    background: var(--teal);
    color: var(--text-primary);
}

.btn-primary.teal:hover {
    background: var(--teal-light);
    box-shadow: 0 20px 40px var(--teal-glow);
}

.btn-primary.terracotta {
    background: var(--terracotta);
    color: var(--text-primary);
}

.btn-primary.terracotta:hover {
    background: var(--terracotta-light);
    box-shadow: 0 20px 40px var(--terracotta-glow);
}

.btn-primary.small {
    padding: 1rem 2rem;
    font-size: 0.85rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--text-muted);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    color: var(--gold);
    border-color: var(--gold);
}

/* ============ SECTIONS ============ */
.section {
    padding: var(--space-xl) var(--space-lg);
    position: relative;
    z-index: 1;
}

.section-alt {
    background: var(--bg-primary);
}

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

.section-eyebrow {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.section-eyebrow.teal { color: var(--teal); }
.section-eyebrow.terracotta { color: var(--terracotta); }
.section-eyebrow.muted { color: var(--text-muted); }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 300;
    letter-spacing: 0.08em;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: var(--space-sm) auto 0;
}

/* ============ ROOM LOCATION - PROMINENT ============ */
.room-location {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-style: italic;
    color: var(--text-dark);
    margin: var(--space-md) 0 var(--space-xl);
    letter-spacing: 0.03em;
}

/* ============ CONTENT ============ */
.content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-lg) var(--space-xl);
    position: relative;
    z-index: 1;
}

.content.wide {
    max-width: 1100px;
}

.content h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.content h2:first-child {
    margin-top: 0;
}

.content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-top: var(--space-md);
    margin-bottom: var(--space-xs);
}

.content p {
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
    font-size: 1rem;
}

.content ul, .content ol {
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
    padding-left: var(--space-md);
}

.content li {
    margin-bottom: var(--space-xs);
}

/* ============ CARDS ============ */
.card {
    background: var(--bg-elevated);
    padding: var(--space-md);
    border: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    transition: all 0.3s ease;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.card.gold::before { background: var(--gold); }
.card.teal::before { background: var(--teal); }
.card.terracotta::before { background: var(--terracotta); }

.card:hover {
    border-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-tag {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.3rem 0.6rem;
    display: inline-block;
    margin-bottom: var(--space-sm);
}

.card-tag.gold { color: var(--gold); border: 1px solid rgba(201, 160, 84, 0.3); }
.card-tag.teal { color: var(--teal); border: 1px solid rgba(61, 111, 113, 0.3); }
.card-tag.terracotta { color: var(--terracotta); border: 1px solid rgba(166, 93, 76, 0.3); }

.card-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: var(--space-xs);
}

.card-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.card-description {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: var(--space-md);
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.card-price {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--gold);
    line-height: 1.2;
}

.card-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    display: inline;
}

.card-link {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.card-link.gold { color: var(--gold); }
.card-link.teal { color: var(--teal-light); }
.card-link.terracotta { color: var(--terracotta-light); }

.card-link:hover { gap: 0.8rem; }

/* ============ GRIDS ============ */
.grid {
    display: grid;
    gap: var(--space-md);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

/* ============ FEATURED BOX ============ */
.featured-box {
    background: var(--bg-elevated);
    padding: var(--space-lg);
    border: 1px solid rgba(201, 160, 84, 0.15);
    position: relative;
}

.featured-box::before,
.featured-box::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 1px solid var(--gold);
    opacity: 0.3;
}

.featured-box::before {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
}

.featured-box::after {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
}

/* ============ INFO BOX ============ */
.info-box {
    background: var(--bg-elevated);
    padding: var(--space-md);
    border-left: 3px solid var(--gold);
    margin: var(--space-md) 0;
}

.info-box.teal { border-color: var(--teal); }
.info-box.terracotta { border-color: var(--terracotta); }

.info-box h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: var(--space-xs);
}

.info-box p {
    font-size: 1rem;
    margin-bottom: 0;
}

.info-box p.card-price {
    font-size: 2.8rem;
    color: var(--gold);
}

/* ============ STATS ============ */
.stats {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ============ TABLE ============ */
.table-container {
    background: var(--bg-elevated);
    border: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.table-header {
    display: grid;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--bg-card);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.table-header span {
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.table-row {
    display: grid;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: background 0.3s ease;
}

.table-row:hover {
    background: var(--bg-card);
}

.table-row:last-child {
    border-bottom: none;
}

/* ============ FAQ ============ */
.faq-category {
    margin-bottom: var(--space-xl);
}

.faq-category h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(201, 160, 84, 0.2);
}

.faq-item {
    margin-bottom: var(--space-md);
}

.faq-item h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* ============ CTA SECTION ============ */
.cta-section {
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: var(--space-sm);
}

.cta-section p {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

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

/* ============ FOOTER ============ */
footer {
    padding: var(--space-lg) var(--space-lg) var(--space-md);
    border-top: 1px solid rgba(201, 160, 84, 0.1);
    background: var(--bg-primary);
    position: relative;
    z-index: 1;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: var(--space-sm);
}

.footer-logo {
    font-family: var(--font-body);
    font-weight: 200;
    font-size: 0.9rem;
    letter-spacing: 0.4em;
    color: var(--text-primary);
}

.footer-column h4 {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: var(--space-xs);
}

.footer-column a {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: var(--space-md);
}

.footer-legal a {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--text-primary);
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes rotate {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ============================================
   LIGHT SECTIONS
   ============================================ */

.section-light {
    background: var(--bg-cream);
    color: var(--text-dark);
}

.section-light-alt {
    background: var(--bg-cream-alt);
    color: var(--text-dark);
}

.section-light .section-eyebrow,
.section-light-alt .section-eyebrow {
    color: var(--gold);
}

.section-light .section-title,
.section-light-alt .section-title {
    color: var(--text-dark);
}

.section-light .section-title em,
.section-light-alt .section-title em {
    color: var(--gold);
}

.section-light .section-subtitle,
.section-light-alt .section-subtitle {
    color: var(--text-dark-secondary);
}

/* Light section cards */
.section-light .card,
.section-light-alt .card {
    background: #FFFFFF;
    border: 1px solid var(--border-light-section);
}

.section-light .card:hover,
.section-light-alt .card:hover {
    border-color: rgba(28, 28, 30, 0.12);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.section-light .card::before,
.section-light-alt .card::before {
    display: none;
}

.section-light .card-tag,
.section-light-alt .card-tag {
    color: var(--gold);
    border-color: rgba(184, 149, 108, 0.3);
}

.section-light .card-title,
.section-light-alt .card-title {
    color: var(--text-dark);
}

.section-light .card-subtitle,
.section-light-alt .card-subtitle {
    color: var(--text-dark-muted);
}

.section-light .card-description,
.section-light-alt .card-description {
    color: var(--text-dark-secondary);
}

.section-light .card-meta,
.section-light-alt .card-meta {
    border-top-color: var(--border-light-section);
}

.section-light .card-price,
.section-light-alt .card-price {
    color: var(--gold);
}

.section-light .card-price span,
.section-light-alt .card-price span {
    color: var(--text-dark-muted);
}

.section-light .card-link,
.section-light-alt .card-link {
    color: var(--gold);
}

/* Light section room features - LARGER FOR READABILITY */
.section-light .room-grid,
.section-light-alt .room-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.section-light .room-feature h4,
.section-light-alt .room-feature h4 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
}

.section-light .room-feature p,
.section-light-alt .room-feature p {
    font-size: 1.15rem;
    color: var(--text-dark-secondary);
    line-height: 1.7;
}

.section-light .room-feature .highlight,
.section-light-alt .room-feature .highlight {
    color: var(--gold);
    font-weight: 500;
}

/* Room location in light sections */
.section-light .room-location,
.section-light-alt .room-location {
    color: var(--text-dark);
}

/* Light section grids */
.section-light .cards-row-3,
.section-light-alt .cards-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.section-light .cards-row-2,
.section-light-alt .cards-row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

/* ============ UTILITIES ============ */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-teal { color: var(--teal); }
.text-muted { color: var(--text-muted); }
.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mt-lg { margin-top: var(--space-lg); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    nav {
        padding: var(--space-sm) var(--space-md);
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-decoration {
        display: none;
    }

    .hero-visual {
        display: none;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .section-light .room-grid,
    .section-light-alt .room-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .section-light .cards-row-3,
    .section-light-alt .cards-row-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-light .cards-row-2,
    .section-light-alt .cards-row-2 {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: var(--space-xl) var(--space-md);
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .section {
        padding: var(--space-lg) var(--space-md);
    }

    .page-header {
        padding: calc(var(--space-lg) + 80px) var(--space-md) var(--space-lg);
    }

    .content {
        padding: 0 var(--space-md) var(--space-lg);
    }

    .stats {
        gap: var(--space-lg);
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

    .section-light .cards-row-3,
    .section-light-alt .cards-row-3 {
        grid-template-columns: 1fr;
    }

    .room-location {
        font-size: 1.3rem;
    }
}

/* ============================================
   INDEX NAV + BANNER + CTA PATCHES (2026-01-17)
   ============================================ */

/* Prevent underline pseudo-element on the gold CTA button */
.nav-links a.nav-cta::after,
.nav-links a.nav-cta:hover::after {
    display: none !important;
}

/* Session banner (sits below the fixed nav) */
.session-banner {
    background: var(--gold);
    padding: 0.75rem 2rem;
    text-align: center;
    position: relative;
    z-index: 100;
    margin-top: var(--nav-height, 72px);
}

.session-banner p {
    margin: 0;
    font-size: 0.9rem;
    color: #000;
    font-weight: 400;
}

.session-banner a {
    color: #000;
    margin-left: 1rem;
    font-weight: 500;
    text-decoration: underline;
}

/* Light-section CTA block (replaces inline styles / invalid markup) */
.section-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 2rem 1rem;
}

.section-cta .divider {
    width: 60px;
    height: 1px;
    background: rgba(28, 28, 30, 0.15);
    margin-bottom: 2rem;
}

.section-cta .next-session {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0 0 0.5rem;
}

.section-cta .next-session em {
    color: var(--gold);
}

.section-cta .capacity {
    font-size: 0.95rem;
    color: var(--text-dark-secondary);
    margin: 0 0 1.5rem;
}

.section-cta .cta-link {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #000;
    background: var(--gold);
    padding: 0.9rem 1.8rem;
    text-decoration: none;
}

.section-cta .cta-link:hover {
    background: #D4AC64;
}

.section-cta .sms {
    font-size: 0.95rem;
    color: var(--text-dark-secondary);
    margin-top: 1.5rem;
}

.section-cta .sms strong {
    color: var(--text-dark);
}

.section-cta .sms .hint {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--text-dark-muted);
}

.section-cta .sms .reply {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--text-dark-muted);
    font-style: italic;
}

/* Mobile nav: enable toggle (JS adds .open) */
@media (max-width: 1024px) {
    .nav-links.open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(13, 13, 15, 0.98);
        padding: 1rem var(--space-md);
        border-bottom: 1px solid rgba(201, 160, 84, 0.12);
    }

    .nav-links.open li {
        width: 100%;
    }

    .nav-links.open a {
        padding: 0.9rem 0;
    }

    /* On mobile, show dropdown items stacked (hover is unreliable) */
    .nav-links.open .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0.25rem 0 0.75rem 1rem;
        margin-top: 0;
    }

    .nav-links.open .nav-dropdown-menu a {
        padding: 0.6rem 0;
        border-bottom: 1px solid rgba(201, 160, 84, 0.08);
    }

    .nav-links.open .nav-dropdown-menu a:last-child {
        border-bottom: none;
    }

    .nav-links.open .nav-cta {
        display: inline-block;
        margin-top: 0.5rem;
        width: fit-content;
    }
}
