/* ════════════════════════════════════════════════════════════
   Art Gallery Hotel — Main Stylesheet
   Paleta: #0a0a0a | #fafafa | #c9a96e (gold) | #b87333 (copper)
   Fonts:  Cormorant Garamond (headings) | Montserrat (body)
   ════════════════════════════════════════════════════════════ */

/* ─── Reset / Base ─────────────────────────────────────────── */
.agh-site *,
.agh-site *::before,
.agh-site *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.agh-site {
    --gold:       #c9a96e;
    --gold-light: #e2c99a;
    --copper:     #b87333;
    --black:      #0a0a0a;
    --charcoal:   #1a1a1a;
    --dark:       #111111;
    --mid:        #2a2a2a;
    --muted:      #6b6b6b;
    --light:      #f0ece6;
    --white:      #fafafa;
    --glass-bg:   rgba(10,10,10,0.55);
    --glass-border: rgba(201,169,110,0.25);
    --radius-sm:  6px;
    --radius-md:  12px;
    --radius-lg:  20px;
    --transition: 0.45s cubic-bezier(.25,.46,.45,.94);
    --shadow:     0 20px 60px rgba(0,0,0,0.45);
    --shadow-gold: 0 0 30px rgba(201,169,110,0.2);

    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    background: var(--black);
    overflow-x: hidden;
    line-height: 1.7;
    font-size: 16px;
}

.agh-site a { text-decoration: none; color: inherit; }
.agh-site img { display: block; max-width: 100%; }
.agh-site ul { list-style: none; }

/* ─── Typography ───────────────────────────────────────────── */
.agh-heading-xl {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #fafafa !important;
}

.agh-heading-lg {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #fafafa !important;
}

.agh-heading-md {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    color: #fafafa !important;
}

.agh-heading-sm {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 500;
    line-height: 1.3;
    color: #fafafa !important;
}

.agh-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
}

.agh-gold { color: var(--gold); }
.agh-muted { color: var(--muted); }

/* ─── Layout Utilities ─────────────────────────────────────── */
.agh-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 4rem);
}

.agh-section {
    padding: clamp(5rem, 10vw, 10rem) 0;
}

.agh-section-dark { background: var(--black); }
.agh-section-charcoal { background: var(--charcoal); }

.agh-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 1.5rem 0 2rem;
}
/* Centered divider: gold in the middle, fades to transparent on both sides */
.agh-divider-center {
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1.5rem auto 2rem;
}

/* ─── Scroll animate ──────────────────────────────────────── */
.agh-reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.agh-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.agh-reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.agh-reveal-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}
.agh-reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.agh-reveal-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* ─── Buttons ──────────────────────────────────────────────── */
.agh-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 1rem 2.4rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.agh-btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
    color: var(--black);
}
.agh-btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.1);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}
.agh-btn-primary:hover::after { transform: translateX(0); }
.agh-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(201,169,110,0.4); }

.agh-btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}
.agh-btn-outline:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.agh-btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}
.agh-btn-ghost:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.06);
}

/* ─── Navigation ───────────────────────────────────────────── */
.agh-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    padding: 1.5rem clamp(1.25rem, 4vw, 4rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}
.agh-nav.scrolled {
    background: rgba(10,10,10,0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem clamp(1.25rem, 4vw, 4rem);
    border-bottom: 1px solid rgba(201,169,110,0.15);
}

.agh-nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.agh-nav-logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--white);
}
.agh-nav-logo-sub {
    font-size: 0.58rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 2px;
}

.agh-nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.agh-nav-links a {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    transition: color 0.3s;
    position: relative;
}
.agh-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}
.agh-nav-links a:hover { color: var(--gold); }
.agh-nav-links a:hover::after { width: 100%; }

.agh-nav-reserve {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.65rem 1.5rem;
    background: linear-gradient(135deg, var(--gold), var(--copper));
    color: var(--black);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}
.agh-nav-reserve:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,169,110,0.35); }

.agh-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}
.agh-hamburger span {
    display: block;
    width: 26px;
    height: 1.5px;
    background: var(--white);
    transition: var(--transition);
}

/* ─── Hero spacer ─────────────────────────────────────────── */
/* Holds the vertical space that the fixed hero occupies */
.agh-hero-spacer {
    height: 100svh;
    min-height: 600px;
    display: block;
    pointer-events: none;
}

/* ─── Hero Section ─────────────────────────────────────────── */
/* position:fixed means the hero is ALWAYS viewport-sized, completely
   independent of any WordPress theme container width or padding.
   Every section below gets z-index:10 so they scroll over it. */
.agh-hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100svh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--black);
    z-index: 5;
}
/* Account for WordPress admin bar (logged-in users) */
.admin-bar .agh-hero {
    top: 32px;
    height: calc(100svh - 32px);
}
.admin-bar .agh-hero-spacer {
    height: calc(100svh - 32px);
}
@media screen and (max-width: 782px) {
    .admin-bar .agh-hero     { top: 46px; height: calc(100svh - 46px); }
    .admin-bar .agh-hero-spacer { height: calc(100svh - 46px); }
}

.agh-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.agh-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}
.agh-hero-fallback {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        #0a0a0a 0%,
        #1a1208 30%,
        #2a1f0a 60%,
        #0a0a0a 100%);
}
/* animated gradient for when no video */
.agh-hero-fallback::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(201,169,110,0.12) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(184,115,51,0.08) 0%, transparent 50%);
}

.agh-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10,10,10,0.15) 0%,
        rgba(10,10,10,0.3) 50%,
        rgba(10,10,10,0.7) 100%
    );
    z-index: 1;
}

.agh-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 900px;
}

.agh-hero-label {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeSlideDown 1s ease 0.5s forwards;
}
.agh-hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 9vw, 8rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeSlideUp 1.1s ease 0.8s forwards;
}
.agh-hero-headline em {
    font-style: italic;
    color: var(--gold);
}
.agh-hero-sub {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    opacity: 0;
    animation: fadeSlideUp 1s ease 1.2s forwards;
}
.agh-hero-cta {
    opacity: 0;
    animation: fadeSlideUp 1s ease 1.5s forwards;
    display: inline-flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.agh-hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: scrollBounce 2.5s ease-in-out infinite;
    cursor: pointer;
}
.agh-hero-scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, rgba(201,169,110,0.8), transparent);
}

/* ─── Sections that scroll over the fixed hero ────────────── */
/* z-index must be > hero (5) so content covers it when scrolling */
.agh-announce,
.agh-about,
.agh-rooms,
.agh-parallax-strip,
.agh-art-experience,
.agh-services,
.agh-testimonials,
.agh-cta-banner,
.agh-footer {
    position: relative;
    z-index: 10;
}

/* ─── Announcement bar ─────────────────────────────────────── */
.agh-announce {
    background: linear-gradient(90deg, var(--charcoal), var(--dark));
    border-bottom: 1px solid rgba(201,169,110,0.2);
    padding: 0.65rem 1rem;
    text-align: center;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-light);
}

/* ─── Section header ──────────────────────────────────────── */
.agh-section-header {
    text-align: center;
    margin-bottom: clamp(3rem, 5vw, 5rem);
}

/* ─── About Section ────────────────────────────────────────── */
.agh-about {
    background: var(--black);
}

.agh-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 7rem);
    align-items: center;
}

.agh-about-image-wrap {
    position: relative;
}
.agh-about-image-main {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}
.agh-about-image-accent {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 55%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border: 4px solid var(--black);
}
.agh-about-badge {
    position: absolute;
    top: 2rem;
    left: -2rem;
    background: var(--gold);
    color: var(--black);
    padding: 1.25rem 1.5rem;
    text-align: center;
    z-index: 2;
}
.agh-about-badge-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    display: block;
    line-height: 1;
}
.agh-about-badge-text {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.agh-about-content { padding: 1rem 0; }
.agh-about-content p {
    color: rgba(255,255,255,0.65);
    font-size: 0.975rem;
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

.agh-about-stats {
    display: flex;
    gap: 2.5rem;
    margin: 2.5rem 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.agh-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--gold);
    display: block;
    line-height: 1;
}
.agh-stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
}

/* ─── Rooms Section ────────────────────────────────────────── */
.agh-rooms {
    background: var(--charcoal);
}

.agh-rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
}

.agh-room-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--dark);
}
.agh-room-card:nth-child(1) { grid-column: span 2; }

.agh-room-card-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: transform 0.8s ease;
    display: block;
}
.agh-room-card:nth-child(1) .agh-room-card-img { height: 620px; }

.agh-room-card:hover .agh-room-card-img { transform: scale(1.06); }

.agh-room-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 30%,
        rgba(10,10,10,0.6) 65%,
        rgba(10,10,10,0.92) 100%
    );
    transition: background 0.4s;
}
.agh-room-card:hover .agh-room-card-overlay {
    background: linear-gradient(
        180deg,
        transparent 10%,
        rgba(10,10,10,0.7) 60%,
        rgba(10,10,10,0.96) 100%
    );
}

.agh-room-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}
.agh-room-card:hover .agh-room-card-body { transform: translateY(0); }

.agh-room-card-artist {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.4rem;
}
.agh-room-card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #fafafa !important;
}
.agh-room-card-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}
.agh-room-card:hover .agh-room-card-desc { max-height: 80px; }

.agh-room-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.agh-room-card-price { font-family: 'Cormorant Garamond', serif; }
.agh-room-card-price-from {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6) !important;
}
.agh-room-card-price-val {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1.1;
}
.agh-room-card-price-night {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5) !important;
}
.agh-room-card-btn {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    border: 1px solid rgba(201,169,110,0.5);
    color: var(--gold);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease, background 0.3s;
}
.agh-room-card:hover .agh-room-card-btn {
    opacity: 1;
    transform: translateY(0);
}
.agh-room-card-btn:hover {
    background: var(--gold);
    color: var(--black);
}

/* ─── Art Experience Section ───────────────────────────────── */
.agh-art {
    background: var(--black);
    overflow: hidden;
}

.agh-art-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 1rem;
}

.agh-art-text {
    grid-column: 1 / 6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 2rem;
}
.agh-art-text p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.9;
    margin-top: 1.5rem;
}
.agh-art-feature-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.agh-art-feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.agh-art-feature-icon {
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.agh-art-feature-item p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
    line-height: 1.6;
}
.agh-art-feature-item strong {
    display: block;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.agh-art-images {
    grid-column: 6 / 13;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
}
.agh-art-img {
    overflow: hidden;
    position: relative;
}
.agh-art-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.agh-art-img:first-child {
    grid-row: span 2;
}
.agh-art-img:first-child img { height: 100%; }
.agh-art-img:hover img { transform: scale(1.06); }

.agh-art-img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-light);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}
.agh-art-img:hover .agh-art-img-caption { transform: translateY(0); }

/* ─── Services Section ─────────────────────────────────────── */
.agh-services {
    background: var(--charcoal);
}

.agh-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5px;
}

.agh-service-card {
    background: var(--dark);
    padding: 3rem 2.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.agh-service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}
.agh-service-card:hover::before { transform: scaleX(1); }
.agh-service-card:hover { background: #181818; transform: translateY(-4px); }

.agh-service-icon {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    display: block;
    line-height: 1;
}
.agh-service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}
.agh-service-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.75;
}

/* ─── Testimonials ─────────────────────────────────────────── */
.agh-testimonials {
    background: var(--black);
}

.agh-testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.agh-testimonial-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    padding: 2.5rem;
    position: relative;
    transition: var(--transition);
}
.agh-testimonial-card:hover {
    border-color: rgba(201,169,110,0.25);
    background: rgba(201,169,110,0.04);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}
.agh-testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.agh-testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
}
.agh-testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1.25rem;
    color: var(--gold);
    font-size: 0.85rem;
}
.agh-testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.agh-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    opacity: 0.8;
}
.agh-testimonial-name {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.agh-testimonial-role {
    font-size: 0.72rem;
    color: var(--muted);
    margin-top: 2px;
}

/* ─── CTA Banner ───────────────────────────────────────────── */
.agh-cta-banner {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: clamp(6rem, 12vw, 12rem) 1.5rem;
}
.agh-cta-banner-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        var(--charcoal) 0%,
        #1a1208 40%,
        var(--charcoal) 100%);
    z-index: 0;
}
.agh-cta-banner-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201,169,110,0.15) 0%, transparent 65%);
}
.agh-cta-banner-content {
    position: relative;
    z-index: 1;
}
.agh-cta-banner-content p {
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    color: rgba(255,255,255,0.6);
    max-width: 500px;
    margin: 1.25rem auto 2.5rem;
    line-height: 1.8;
}

/* ─── Footer ───────────────────────────────────────────────── */
.agh-footer {
    background: #050505;
    border-top: 1px solid rgba(201,169,110,0.12);
    padding: 5rem 0 2rem;
}

.agh-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.agh-footer-brand h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-bottom: 0.4rem;
}
.agh-footer-brand-tagline {
    font-size: 0.62rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}
.agh-footer-brand p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.8;
    max-width: 280px;
}

.agh-footer-col h3 {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}
.agh-footer-col ul li {
    margin-bottom: 0.7rem;
}
.agh-footer-col ul li a {
    font-size: 0.85rem;
    color: var(--muted);
    transition: color 0.3s;
}
.agh-footer-col ul li a:hover { color: var(--white); }

.agh-footer-contact-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
    align-items: flex-start;
}
.agh-footer-contact-item span {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
}

.agh-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.agh-footer-copy {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.05em;
}
.agh-footer-social {
    display: flex;
    gap: 1.25rem;
}
.agh-footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--muted);
    transition: var(--transition);
}
.agh-footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ─── Room Detail Modal ────────────────────────────────────── */
.agh-modal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    z-index: 10000;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    overflow-y: auto;
    padding: 2rem 1rem;
    align-items: flex-start;
    justify-content: center;
}
.agh-modal-backdrop.is-open {
    display: flex;
}

.agh-modal {
    background: var(--charcoal);
    max-width: 1080px;
    width: 100%;
    position: relative;
    animation: modalIn 0.4s cubic-bezier(.34,1.56,.64,1) forwards;
    margin: auto;
}

.agh-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 1.1rem;
    transition: var(--transition);
}
.agh-modal-close:hover { background: var(--gold); color: var(--black); }

.agh-modal-gallery {
    position: relative;
    height: 420px;
    overflow: hidden;
}
.agh-modal-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}
.agh-modal-gallery-nav {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}
.agh-modal-gallery-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: background 0.3s;
    border: none;
    padding: 0;
}
.agh-modal-gallery-dot.active { background: var(--gold); width: 20px; border-radius: 3px; }

.agh-modal-body {
    display: grid;
    grid-template-columns: 1fr 340px;
    min-height: 400px;
}

.agh-modal-info {
    padding: 2.5rem;
    border-right: 1px solid rgba(255,255,255,0.07);
}
.agh-modal-artist {
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.4rem;
}
.agh-modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 0.4rem;
}
.agh-modal-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.agh-modal-meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--muted);
}
.agh-modal-meta-icon { color: var(--gold); }
.agh-modal-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.85;
    margin-bottom: 2rem;
}
.agh-modal-amenities-title {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.agh-modal-amenities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1rem;
}
.agh-modal-amenity {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.agh-modal-amenity::before {
    content: '◇';
    color: var(--gold);
    font-size: 0.6rem;
}

/* ─── Booking Panel (inside modal) ────────────────────────── */
.agh-booking-panel {
    padding: 2.5rem 2rem;
    background: rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
}
.agh-booking-panel-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}
.agh-booking-panel-price {
    font-size: 0.75rem;
    color: var(--muted);
    margin-bottom: 1.75rem;
}
.agh-booking-panel-price span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    color: var(--gold);
    font-weight: 600;
    margin-right: 4px;
}

/* ─── Calendar ─────────────────────────────────────────────── */
.agh-calendar {
    margin-bottom: 1.5rem;
}
.agh-calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}
.agh-calendar-nav {
    background: none;
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--white);
    width: 28px;
    height: 28px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: var(--transition);
}
.agh-calendar-nav:hover { border-color: var(--gold); color: var(--gold); }
.agh-calendar-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.04em;
}
.agh-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}
.agh-calendar-day-name {
    text-align: center;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 0.3rem 0;
}
.agh-cal-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    cursor: pointer;
    position: relative;
    transition: background 0.2s, color 0.2s;
    border-radius: 3px;
    user-select: none;
    gap: 1px;
}
.agh-cal-day-num { line-height: 1; }
.agh-cal-day-price {
    font-size: 0.5rem;
    color: var(--gold);
    letter-spacing: 0;
    line-height: 1;
}
.agh-cal-day:hover { background: rgba(201,169,110,0.15); }
.agh-cal-day.empty { cursor: default; pointer-events: none; }
.agh-cal-day.past { color: rgba(255,255,255,0.15); cursor: not-allowed; pointer-events: none; }
.agh-cal-day.blocked {
    color: rgba(255,255,255,0.15);
    cursor: not-allowed;
    text-decoration: line-through;
    pointer-events: none;
}
.agh-cal-day.check-in {
    background: var(--gold);
    color: var(--black);
    border-radius: 3px 0 0 3px;
}
.agh-cal-day.check-in .agh-cal-day-price { color: rgba(0,0,0,0.6); }
.agh-cal-day.check-out {
    background: var(--gold);
    color: var(--black);
    border-radius: 0 3px 3px 0;
}
.agh-cal-day.in-range {
    background: rgba(201,169,110,0.18);
    border-radius: 0;
}
.agh-cal-day.today::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
}

/* ─── Booking form fields ──────────────────────────────────── */
.agh-form-group {
    margin-bottom: 0.9rem;
}
.agh-form-label {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.4rem;
}
.agh-form-input,
.agh-form-select,
.agh-form-textarea {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    padding: 0.7rem 1rem;
    outline: none;
    transition: border-color 0.3s;
    border-radius: 0;
    -webkit-appearance: none;
}
.agh-form-input:focus,
.agh-form-select:focus,
.agh-form-textarea:focus { border-color: var(--gold); }
.agh-form-input::placeholder,
.agh-form-textarea::placeholder { color: rgba(255,255,255,0.2); }
.agh-form-select option { background: var(--dark); color: var(--white); }
.agh-form-textarea { min-height: 70px; resize: vertical; }

.agh-booking-summary {
    background: rgba(201,169,110,0.08);
    border: 1px solid rgba(201,169,110,0.2);
    padding: 1rem;
    margin-bottom: 1rem;
    display: none;
}
.agh-booking-summary.visible { display: block; }
.agh-booking-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 0.35rem;
}
.agh-booking-summary-total {
    display: flex;
    justify-content: space-between;
    padding-top: 0.6rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(201,169,110,0.2);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
}

.agh-booking-error {
    background: rgba(220,38,38,0.15);
    border: 1px solid rgba(220,38,38,0.3);
    color: #fca5a5;
    font-size: 0.8rem;
    padding: 0.75rem 1rem;
    margin-bottom: 0.75rem;
    display: none;
}
.agh-booking-error.visible { display: block; }

.agh-booking-success {
    text-align: center;
    padding: 2rem 1rem;
    display: none;
}
.agh-booking-success.visible { display: block; }
.agh-booking-success-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.agh-booking-success h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}
.agh-booking-success p {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 0.3rem;
}
.agh-booking-success-code {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin: 1rem 0;
}

/* ─── Booking Widget (standalone) ─────────────────────────── */
.agh-booking-widget {
    max-width: 520px;
    background: var(--charcoal);
    border: 1px solid rgba(201,169,110,0.15);
    padding: 2.5rem;
}

/* ─── Loader overlay ───────────────────────────────────────── */
.agh-loader {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}
.agh-loader.visible { display: flex; }
.agh-spinner {
    width: 36px;
    height: 36px;
    border: 2px solid rgba(255,255,255,0.1);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

/* ─── Keyframes ────────────────────────────────────────────── */
@keyframes fadeSlideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(25px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
    50%       { transform: translateX(-50%) translateY(10px); opacity: 0.8; }
}
@keyframes modalIn {
    from { opacity: 0; transform: scale(0.94) translateY(20px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ─── Parallax strip ───────────────────────────────────────── */
.agh-parallax-strip {
    position: relative;
    height: 400px;
    overflow: hidden;
}
.agh-parallax-strip-bg {
    position: absolute;
    inset: -60px 0;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}
.agh-parallax-strip-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(10,10,10,0.4) 0%,
        rgba(10,10,10,0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.agh-parallax-strip-content p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255,255,255,0.7);
    max-width: 580px;
    line-height: 1.7;
    margin-top: 1rem;
}

/* ─── Mobile nav menu overlay ─────────────────────────────── */
.agh-mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 8999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    text-align: center;
}
.agh-mobile-menu.is-open { display: flex; }
.agh-mobile-menu a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--white);
    transition: color 0.3s;
}
.agh-mobile-menu a:hover { color: var(--gold); }

/* ─── Responsive ───────────────────────────────────────────── */
@media (max-width: 1100px) {
    .agh-rooms-grid { grid-template-columns: 1fr 1fr; }
    .agh-rooms-grid .agh-room-card:nth-child(1) { grid-column: span 2; }
    .agh-services-grid { grid-template-columns: repeat(2, 1fr); }
    .agh-art-grid { grid-template-columns: 1fr; }
    .agh-art-text { grid-column: 1; padding-right: 0; margin-bottom: 2.5rem; }
    .agh-art-images { grid-column: 1; }
    .agh-footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .agh-modal-body { grid-template-columns: 1fr; }
    .agh-booking-panel { border-top: 1px solid rgba(255,255,255,0.07); }
}

@media (max-width: 768px) {
    .agh-nav-links,
    .agh-nav-reserve { display: none; }
    .agh-hamburger { display: flex; }

    .agh-about-grid { grid-template-columns: 1fr; }
    .agh-about-image-accent { display: none; }
    .agh-about-badge { left: 1rem; }
    .agh-about-stats { gap: 1.5rem; flex-wrap: wrap; }

    .agh-rooms-grid { grid-template-columns: 1fr; }
    .agh-rooms-grid .agh-room-card:nth-child(1) { grid-column: span 1; }
    .agh-room-card-img { height: 380px !important; }
    .agh-room-card-btn { opacity: 1; transform: translateY(0); }
    .agh-room-card-desc { max-height: none; }

    .agh-services-grid { grid-template-columns: 1fr; }
    .agh-testimonials-slider { grid-template-columns: 1fr; }

    .agh-footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .agh-footer-bottom { flex-direction: column; align-items: flex-start; }

    .agh-modal-gallery { height: 260px; }
    .agh-modal-body { grid-template-columns: 1fr; }
    .agh-modal-amenities { grid-template-columns: 1fr; }

    .agh-art-images { grid-template-columns: 1fr; }
    .agh-art-img img { height: 220px !important; }
    .agh-art-img:first-child { grid-row: auto; }

    .agh-parallax-strip-bg { background-attachment: scroll; }
}

@media (max-width: 480px) {
    .agh-hero-cta { flex-direction: column; }
    .agh-btn { width: 100%; justify-content: center; }
    .agh-about-badge { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   THEME TOGGLE BUTTON
   ═══════════════════════════════════════════════════════════ */
.agh-theme-toggle {
    background: none;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
    margin-left: 0.5rem;
    flex-shrink: 0;
}
.agh-theme-toggle:hover {
    border-color: var(--gold);
    color: var(--gold);
}
/* icon visibility controlled by mode */
.agh-theme-toggle .agh-icon-sun  { display: none; }
.agh-theme-toggle .agh-icon-moon { display: inline; }
.agh-site.agh-light .agh-theme-toggle .agh-icon-sun  { display: inline; }
.agh-site.agh-light .agh-theme-toggle .agh-icon-moon { display: none; }
.agh-site.agh-light .agh-theme-toggle {
    border-color: rgba(0,0,0,0.2);
    color: #3a3a3a;
}
.agh-site.agh-light .agh-theme-toggle:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(160,113,42,0.08);
}

/* ═══════════════════════════════════════════════════════════
   LIGHT MODE  —  .agh-site.agh-light
   Hero is always dark (position:fixed with dark bg/video).
   Everything else switches to a warm off-white palette.
   ═══════════════════════════════════════════════════════════ */
.agh-site {
    transition: background 0.4s ease, color 0.4s ease;
}

.agh-site.agh-light {
    --gold:   #9a6420;
    --gold-light: #b87333;
    --copper: #7a4f18;
    --muted:  #777777;
    background: #faf8f5;
    color: #1a1a1a;
}

/* Headings */
.agh-site.agh-light .agh-heading-xl,
.agh-site.agh-light .agh-heading-lg,
.agh-site.agh-light .agh-heading-md,
.agh-site.agh-light .agh-heading-sm { color: #0a0a0a !important; }

/* Nav — transparent on hero stays readable (hero is dark);
   scrolled nav turns light */
.agh-site.agh-light .agh-nav-logo-name { color: #fafafa; }
.agh-site.agh-light .agh-nav.scrolled {
    background: rgba(250,248,245,0.96);
    border-bottom: 1px solid rgba(154,100,32,0.18);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.agh-site.agh-light .agh-nav.scrolled .agh-nav-logo-name { color: #1a1a1a; }
.agh-site.agh-light .agh-nav.scrolled .agh-nav-links a { color: rgba(26,26,26,0.7); }
.agh-site.agh-light .agh-nav.scrolled .agh-nav-links a:hover { color: var(--gold); }
.agh-site.agh-light .agh-nav.scrolled .agh-hamburger span { background: #1a1a1a; }
.agh-site.agh-light .agh-nav.scrolled .agh-theme-toggle { border-color: rgba(0,0,0,0.2); color: #3a3a3a; }

/* Announce bar */
.agh-site.agh-light .agh-announce {
    background: linear-gradient(90deg, #ede3d0, #e8dbc6);
    border-bottom: 1px solid rgba(154,100,32,0.2);
    color: #7a4f18;
}

/* Section backgrounds */
.agh-site.agh-light .agh-section-dark,
.agh-site.agh-light .agh-about,
.agh-site.agh-light .agh-art,
.agh-site.agh-light .agh-testimonials { background: #faf8f5; }

.agh-site.agh-light .agh-section-charcoal,
.agh-site.agh-light .agh-rooms,
.agh-site.agh-light .agh-services { background: #f0ece6; }

/* About */
.agh-site.agh-light .agh-about-content p { color: rgba(26,26,26,0.68); }
.agh-site.agh-light .agh-about-stats { border-top-color: rgba(0,0,0,0.09); }
.agh-site.agh-light .agh-stat-label { color: #777; }
.agh-site.agh-light .agh-about-image-accent { border-color: #faf8f5; }
.agh-site.agh-light .agh-btn-outline { color: var(--gold); border-color: var(--gold); }
.agh-site.agh-light .agh-btn-outline:hover { background: var(--gold); color: #fff; }

/* Art experience */
.agh-site.agh-light .agh-art-text p,
.agh-site.agh-light .agh-art-feature-item p { color: rgba(26,26,26,0.65); }
.agh-site.agh-light .agh-art-feature-item strong { color: #1a1a1a; }

/* Services */
.agh-site.agh-light .agh-service-card {
    background: #ffffff;
    color: #1a1a1a;
}
.agh-site.agh-light .agh-service-card:hover { background: #f8f4ef; }
.agh-site.agh-light .agh-service-title { color: #1a1a1a; }
.agh-site.agh-light .agh-service-desc { color: rgba(26,26,26,0.55); }

/* Testimonials */
.agh-site.agh-light .agh-testimonial-card {
    background: #ffffff;
    border-color: rgba(0,0,0,0.07);
}
.agh-site.agh-light .agh-testimonial-card:hover {
    border-color: rgba(154,100,32,0.28);
    background: rgba(154,100,32,0.03);
}
.agh-site.agh-light .agh-testimonial-text { color: rgba(26,26,26,0.78); }
.agh-site.agh-light .agh-testimonial-name { color: #1a1a1a; }
.agh-site.agh-light .agh-testimonial-role { color: #777; }
.agh-site.agh-light .agh-testimonial-author { border-top-color: rgba(0,0,0,0.08); }

/* CTA Banner — keep dramatic dark bg regardless */
/* (no override — default dark styles apply) */

/* Footer — keep dark regardless */
/* (no override — default dark styles apply) */

/* Mobile menu */
.agh-site.agh-light .agh-mobile-menu { background: #faf8f5; }
.agh-site.agh-light .agh-mobile-menu a { color: #1a1a1a; }
.agh-site.agh-light .agh-mobile-menu a:hover { color: var(--gold); }
.agh-site.agh-light .agh-mobile-menu-close { color: #1a1a1a !important; }

/* Modal */
.agh-site.agh-light .agh-modal { background: #ffffff; }
.agh-site.agh-light .agh-modal-info { border-right-color: rgba(0,0,0,0.08); }
.agh-site.agh-light .agh-modal-title { color: #0a0a0a; }
.agh-site.agh-light .agh-modal-meta { border-bottom-color: rgba(0,0,0,0.08); }
.agh-site.agh-light .agh-modal-meta-item { color: #555; }
.agh-site.agh-light .agh-modal-desc { color: rgba(26,26,26,0.65); }
.agh-site.agh-light .agh-modal-amenity { color: rgba(26,26,26,0.6); }
.agh-site.agh-light .agh-modal-close {
    background: rgba(255,255,255,0.9);
    border-color: rgba(0,0,0,0.15);
    color: #1a1a1a;
}
.agh-site.agh-light .agh-modal-close:hover { background: var(--gold); color: #fff; }
.agh-site.agh-light .agh-booking-panel { background: #f0ece6; }
.agh-site.agh-light .agh-booking-panel-title { color: #0a0a0a; }
.agh-site.agh-light .agh-booking-panel-price { color: #555; }
.agh-site.agh-light .agh-booking-panel { border-top-color: rgba(0,0,0,0.08) !important; }

/* Calendar */
.agh-site.agh-light .agh-calendar-nav {
    border-color: rgba(0,0,0,0.15);
    color: #1a1a1a;
}
.agh-site.agh-light .agh-calendar-title { color: #1a1a1a; }
.agh-site.agh-light .agh-calendar-day-name { color: #777; }
.agh-site.agh-light .agh-cal-day { color: #1a1a1a; }
.agh-site.agh-light .agh-cal-day:hover { background: rgba(154,100,32,0.12); }
.agh-site.agh-light .agh-cal-day.past,
.agh-site.agh-light .agh-cal-day.blocked { color: rgba(26,26,26,0.2); }
.agh-site.agh-light .agh-cal-day.in-range { background: rgba(154,100,32,0.12); }

/* Form fields */
.agh-site.agh-light .agh-form-label { color: #555; }
.agh-site.agh-light .agh-form-input,
.agh-site.agh-light .agh-form-select,
.agh-site.agh-light .agh-form-textarea {
    background: #ffffff;
    border-color: rgba(0,0,0,0.15);
    color: #1a1a1a;
}
.agh-site.agh-light .agh-form-input::placeholder,
.agh-site.agh-light .agh-form-textarea::placeholder { color: rgba(26,26,26,0.3); }
.agh-site.agh-light .agh-form-select option { background: #fff; color: #1a1a1a; }
.agh-site.agh-light .agh-booking-summary-row { color: rgba(26,26,26,0.65); }
.agh-site.agh-light .agh-booking-success h3 { color: #0a0a0a; }
.agh-site.agh-light .agh-booking-success p { color: #555; }
