:root {
    --bg: #f7f4ee;
    --surface: #ffffff;
    --surface-soft: #f0eade;
    --text: #1f2a22;
    --muted: #69766c;
    --primary: #1f4d36;
    --primary-dark: #173927;
    --accent: #b78643;
    --border: #e7dfd1;
    --shadow: 0 16px 45px rgba(0, 0, 0, 0.08);
    --radius: 22px;
    --container: 1200px;
    --site-header-height: 160px;
    --hero-offset: 36px;
}

/* =========================
   RESET / BASE
   ========================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

.container {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

.section {
    padding: 88px 0;
}

h1,
h2,
h3,
h4 {
    line-height: 1.1;
}

h1 {
    font-size: clamp(42px, 7vw, 82px);
    margin-bottom: 20px;
}

h2 {
    font-size: clamp(30px, 4vw, 50px);
    margin-bottom: 18px;
}

h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

p {
    color: var(--muted);
}

.lead {
    font-size: clamp(18px, 2vw, 22px);
    color: rgba(255, 255, 255, 0.92);
    max-width: 760px;
}

.section-lead {
    font-size: 18px;
    color: var(--muted);
    max-width: 760px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--accent);
    border-radius: 999px;
}

/* =========================
   BUTTONS
   ========================= */

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 22px;
    border-radius: 999px;
    border: 2px solid transparent;
    font-weight: 700;
    transition: 0.25s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: #fff;
}

.btn-light {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

.btn-light:hover {
    opacity: 0.92;
}

.btn-disabled,
.btn[disabled] {
    background: #d1d5db !important;
    color: #6b7280 !important;
    border-color: #d1d5db !important;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-disabled:hover,
.btn[disabled]:hover {
    transform: none;
}

/* =========================
   HEADER + MOBILE MENU
   ========================= */

.site-header-cinematic {
    position: fixed;
    inset: 0 0 auto 0;
    width: 100%;
    z-index: 1400;
    border-bottom: 1px solid transparent;
    transition: background-color .35s ease, backdrop-filter .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.site-header-cinematic.is-transparent {
    background: linear-gradient(to bottom, rgba(5, 10, 8, 0.42), rgba(5, 10, 8, 0.08));
    backdrop-filter: blur(3px);
}

.site-header-cinematic.is-scrolled,
.site-header-cinematic.menu-is-open {
    background: rgba(247, 244, 238, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(231, 223, 209, 0.95);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

.header-top-brand {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 16px;
    padding-bottom: 10px;
    transition: padding .35s ease;
}

.site-header-cinematic.is-scrolled .header-top-brand,
.site-header-cinematic.menu-is-open .header-top-brand {
    padding-top: 8px;
    padding-bottom: 6px;
}

.header-bottom-nav {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 18px;
    transition: padding .35s ease;
}

.site-header-cinematic.is-scrolled .header-bottom-nav,
.site-header-cinematic.menu-is-open .header-bottom-nav {
    padding-bottom: 10px;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.brand-logo-xl {
    height: 170px;
    width: auto;
    max-width: 460px;
    object-fit: contain;
    filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.22));
    transition: height .35s ease, max-width .35s ease, transform .35s ease, filter .35s ease;
}

.brand-link:hover .brand-logo-xl {
    transform: translateY(-2px) scale(1.01);
}

.site-header-cinematic.is-scrolled .brand-logo-xl,
.site-header-cinematic.menu-is-open .brand-logo-xl {
    height: 92px;
    max-width: 260px;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.08));
}

.brand-tagline {
    margin-top: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    transition: color .35s ease, margin-top .35s ease, font-size .35s ease;
    text-align: center;
}

.site-header-cinematic.is-scrolled .brand-tagline,
.site-header-cinematic.menu-is-open .brand-tagline {
    color: rgba(31, 42, 34, 0.75);
    margin-top: 4px;
    font-size: 11px;
}

.desktop-nav-centered {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    flex-wrap: wrap;
}

.desktop-nav-centered a {
    position: relative;
    display: inline-block;
    padding: 6px 0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    transition: color .25s ease, opacity .25s ease;
}

.site-header-cinematic.is-scrolled .desktop-nav-centered a,
.site-header-cinematic.menu-is-open .desktop-nav-centered a {
    color: rgba(31, 42, 34, 0.94);
}

.desktop-nav-centered a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .28s ease;
    opacity: .85;
}

.desktop-nav-centered a:hover::after,
.desktop-nav-centered a:focus-visible::after {
    transform: scaleX(1);
}

.cinematic-toggle,
.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 0;
    background: transparent;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 999px;
    z-index: 1501;
}

.cinematic-toggle span,
.cinematic-toggle span::before,
.cinematic-toggle span::after,
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
    display: block;
    width: 26px;
    height: 2px;
    border-radius: 999px;
    position: relative;
    margin: 0 auto;
    background: #fff;
    transition: transform .28s ease, opacity .28s ease, background-color .28s ease;
}

.cinematic-toggle span::before,
.cinematic-toggle span::after,
.menu-toggle span::before,
.menu-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
}

.cinematic-toggle span::before,
.menu-toggle span::before {
    top: -8px;
}

.cinematic-toggle span::after,
.menu-toggle span::after {
    top: 8px;
}

.site-header-cinematic.is-scrolled .cinematic-toggle span,
.site-header-cinematic.is-scrolled .cinematic-toggle span::before,
.site-header-cinematic.is-scrolled .cinematic-toggle span::after,
.site-header-cinematic.menu-is-open .cinematic-toggle span,
.site-header-cinematic.menu-is-open .cinematic-toggle span::before,
.site-header-cinematic.menu-is-open .cinematic-toggle span::after,
.site-header-cinematic.is-scrolled .menu-toggle span,
.site-header-cinematic.is-scrolled .menu-toggle span::before,
.site-header-cinematic.is-scrolled .menu-toggle span::after,
.site-header-cinematic.menu-is-open .menu-toggle span,
.site-header-cinematic.menu-is-open .menu-toggle span::before,
.site-header-cinematic.menu-is-open .menu-toggle span::after {
    background: var(--text);
}

.cinematic-toggle.is-active span,
.menu-toggle.is-active span {
    background: transparent !important;
}

.cinematic-toggle.is-active span::before,
.menu-toggle.is-active span::before {
    top: 0;
    transform: rotate(45deg);
}

.cinematic-toggle.is-active span::after,
.menu-toggle.is-active span::after {
    top: 0;
    transform: rotate(-45deg);
}

.mobile-nav,
.cinematic-mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0;
    margin: 0 0 14px;
    padding: 14px 18px;
    background:
        linear-gradient(rgba(255,255,255,0.96), rgba(255,255,255,0.96)),
        url('/assets/images/hero.jpg') center/cover no-repeat;
    border: 1px solid rgba(231, 223, 209, 0.95);
    border-radius: 22px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(18px);
    position: relative;
    z-index: 1500;
}

.mobile-nav.is-open,
.cinematic-mobile-nav.is-open,
.mobile-nav.active,
.cinematic-mobile-nav.active {
    display: flex !important;
}

.mobile-nav a,
.cinematic-mobile-nav a {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    padding: 14px 6px;
    border-bottom: 1px solid rgba(231, 223, 209, 0.85);
}

.mobile-nav a:last-child,
.cinematic-mobile-nav a:last-child {
    border-bottom: 0;
}

.header-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: #183927;
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
}

.header-book-btn:hover {
    opacity: 0.92;
}

/* =========================
   HERO
   ========================= */

.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(rgba(12, 25, 17, 0.42), rgba(12, 25, 17, 0.55)),
        url('/assets/images/hero.jpg') center/cover no-repeat;
    padding-top: calc(var(--site-header-height) + var(--hero-offset));
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 160px;
    background: linear-gradient(to top, var(--bg), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 0 140px;
    max-width: 820px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.22);
    margin-bottom: 22px;
}

.hero.hero-premium-cinematic,
.hero.hero-ultra {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding-top: calc(var(--site-header-height) + var(--hero-offset) + 90px);
    padding-bottom: 90px;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(5, 10, 8, 0.18) 0%, rgba(5, 10, 8, 0.28) 35%, rgba(5, 10, 8, 0.68) 100%),
        url('/assets/images/hero.jpg') center/cover no-repeat;
}

.hero.hero-premium-cinematic::before,
.hero.hero-ultra::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 20%, rgba(255, 214, 136, 0.12), transparent 28%),
        linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.08) 45%, rgba(0, 0, 0, 0.25) 100%);
    pointer-events: none;
}

.hero.hero-premium-cinematic::after,
.hero.hero-ultra::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 180px;
    background: linear-gradient(to top, var(--bg), transparent);
}

.hero-cinematic-layout,
.hero-ultra-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: end;
}

.hero-cinematic-copy {
    max-width: 860px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    margin-bottom: 22px;
    background: rgba(255,255,255,0.13);
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-kicker::before {
    content: "";
    width: 24px;
    height: 1px;
    background: rgba(255,255,255,0.8);
}

.hero-cinematic-title,
.hero-ultra-title {
    font-size: clamp(46px, 7vw, 92px);
    line-height: 0.98;
    letter-spacing: -0.03em;
    margin: 0 0 20px;
    max-width: 980px;
    text-wrap: balance;
}

.hero-ultra-title {
    font-size: clamp(56px, 8vw, 110px);
    line-height: .92;
    letter-spacing: -.05em;
}

.hero-cinematic-text {
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.65;
    color: rgba(255,255,255,0.92);
    max-width: 760px;
    margin: 0;
}

.hero-cinematic-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.hero-cinematic-panel,
.hero-ultra-panel {
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 30px;
    padding: 30px;
    backdrop-filter: blur(16px);
    box-shadow: 0 30px 80px rgba(0,0,0,.18);
}

.hero-cinematic-panel h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 14px;
}

.hero-cinematic-panel p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 16px;
}

.hero-cinematic-list {
    list-style: none;
    display: grid;
    gap: 14px;
}

.hero-cinematic-list li {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    align-items: start;
}

.hero-cinematic-list li span:first-child {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 14px;
    font-weight: 700;
}

.hero-stats,
.hero-cinematic-facts,
.hero-ultra-facts {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 34px;
}

.hero-stat,
.hero-cinematic-fact,
.hero-ultra-fact {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 22px;
    padding: 22px;
    backdrop-filter: blur(8px);
}

.hero-stat strong,
.hero-cinematic-fact strong,
.hero-ultra-fact strong {
    display: block;
    font-size: 34px;
    line-height: 1;
    margin-bottom: 8px;
    color: #fff;
}

.hero-cinematic-fact span,
.hero-ultra-fact span {
    color: rgba(255,255,255,0.88);
    font-size: 14px;
    line-height: 1.5;
}

.hero-ultra-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(40px);
    opacity: .35;
    pointer-events: none;
    z-index: 1;
}

.hero-ultra-orb.orb-1 {
    width: 320px;
    height: 320px;
    top: 130px;
    left: -40px;
    background: rgba(183,134,67,.22);
}

.hero-ultra-orb.orb-2 {
    width: 280px;
    height: 280px;
    right: 4%;
    top: 24%;
    background: rgba(255,255,255,.12);
}

/* =========================
   CARDS / GENERAL SECTIONS
   ========================= */

.floating-cards {
    margin-top: -55px;
    position: relative;
    z-index: 3;
}

.floating-grid,
.cards-grid,
.footer-grid,
.admin-grid,
.public-gallery-grid,
.page-hero-grid,
.page-layout,
.info-grid,
.page-gallery-grid {
    display: grid;
    gap: 24px;
}

.floating-grid,
.cards-grid,
.public-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
}

.floating-card,
.feature-item,
.card,
.admin-card,
.admin-box,
.admin-form,
.table-wrap,
.public-gallery-item,
.page-side-card,
.page-main-card,
.sidebar-card,
.page-empty-state,
.info-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.floating-card,
.info-card {
    padding: 26px;
}

.floating-card .icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--surface-soft);
    display: grid;
    place-items: center;
    font-size: 22px;
    margin-bottom: 18px;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: center;
}

.image-panel,
.ultra-image,
.ultra-feature-media {
    min-height: 480px;
    border-radius: 28px;
    box-shadow: var(--shadow);
    background:
        linear-gradient(rgba(0,0,0,.10), rgba(0,0,0,.18)),
        url('/assets/images/hero.jpg') center/cover no-repeat;
}

.ultra-finale {
    background:
        linear-gradient(135deg, rgba(17,34,25,.76), rgba(17,34,25,.44)),
        url('/assets/images/hero.jpg') center/cover no-repeat;
}

.feature-list {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.feature-item {
    padding: 18px 20px;
}

.cards-grid {
    margin-top: 34px;
}

.card {
    overflow: hidden;
}

.card-media {
    aspect-ratio: 16 / 10;
    background:
        linear-gradient(rgba(0,0,0,.10), rgba(0,0,0,.12)),
        url('/assets/images/hero.jpg') center/cover no-repeat;
}

.card-content {
    padding: 24px;
}

.card-link {
    color: var(--primary);
    font-weight: 700;
}

/* =========================
   PUBLIC GALLERY
   ========================= */

.public-gallery-item {
    overflow: hidden;
}

.public-gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.public-gallery-item figcaption {
    padding: 14px 16px;
    font-size: 15px;
    color: var(--muted);
}

/* =========================
   PAGE TEMPLATE
   ========================= */

.page-content p,
.page-content ul,
.page-content ol {
    margin-bottom: 16px;
}

.page-content h2,
.page-content h3 {
    margin-top: 24px;
}

.page-hero-section {
    padding: 48px 0 24px;
}

.page-hero-grid {
    grid-template-columns: minmax(0, 1.6fr) minmax(320px, 0.8fr);
    align-items: start;
}

.page-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 14px;
}

.page-title {
    margin-bottom: 18px;
    font-size: clamp(34px, 6vw, 64px);
}

.page-lead {
    color: var(--muted);
    font-size: 18px;
    max-width: 760px;
}

.page-highlight-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.page-chip {
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--border);
    font-weight: 600;
    box-shadow: var(--shadow);
}

.page-side-card,
.sidebar-card,
.page-main-card,
.page-empty-state {
    padding: 28px;
}

.page-side-card h3,
.sidebar-card h3 {
    margin-bottom: 16px;
}

.page-side-actions {
    margin-top: 20px;
}

.page-shell {
    padding-top: 12px;
}

.page-layout {
    grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.8fr);
    align-items: start;
}

.page-sidebar-stack {
    display: grid;
    gap: 24px;
}

.page-quick-list,
.page-link-list {
    list-style: none;
    display: grid;
    gap: 12px;
}

.page-link-list a {
    color: var(--primary);
    font-weight: 600;
}

.info-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 28px;
}

.page-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-gallery-grid.compact {
    gap: 14px;
}

.page-gallery-item {
    overflow: hidden;
    border-radius: 18px;
    aspect-ratio: 1 / 1;
    background: var(--surface-soft);
}

.page-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-empty-state {
    text-align: center;
    padding: 56px 28px;
}

.page-hero-banner {
    position: relative;
    min-height: 62vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.58) 100%);
}

.page-hero-inner {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 760px;
    padding-top: calc(var(--site-header-height) + 20px);
    padding-bottom: 80px;
}

.page-hero-title {
    margin: 12px 0 16px;
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    line-height: 1.05;
    color: #fff;
}

.page-hero-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.92);
    max-width: 680px;
}

.visit-page-content section + section {
    margin-top: 34px;
}

.visit-page-content h2 {
    position: relative;
    padding-bottom: 10px;
}

.visit-page-content h2::after {
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    border-radius: 999px;
    margin-top: 10px;
    background: #c7a86b;
}

/* =========================
   ALERTS
   ========================= */

.alert-success,
.alert-error {
    padding: 14px 16px;
    border-radius: 12px;
    margin-top: 16px;
}

.alert-success {
    background: #dcfce7;
    color: #166534;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
}

/* =========================
   ADMIN
   ========================= */

.admin-body {
    background: #f3f4f6;
}

.admin-login-wrap {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.admin-card {
    width: 100%;
    max-width: 460px;
    padding: 28px;
}

.admin-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    background: #111827;
    color: #fff;
    padding: 24px;
}

.admin-sidebar h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.admin-sidebar nav {
    display: grid;
    gap: 12px;
}

.admin-sidebar a {
    color: rgba(255,255,255,0.9);
    padding: 10px 12px;
    border-radius: 10px;
}

.admin-sidebar a:hover {
    background: rgba(255,255,255,0.08);
}

.admin-content {
    padding: 28px;
}

.admin-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 24px;
}

.admin-box {
    padding: 22px;
}

.admin-box strong {
    display: block;
    font-size: 28px;
    margin-bottom: 8px;
}

.admin-form {
    padding: 24px;
    margin-top: 20px;
}

.admin-form label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    margin-top: 14px;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font: inherit;
    background: #fff;
}

.checkbox-row {
    display: flex !important;
    align-items: center;
    gap: 10px;
}

.checkbox-row input {
    width: auto;
}

.table-wrap {
    margin-top: 24px;
    overflow-x: auto;
    padding: 0;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    text-align: left;
    padding: 14px 16px;
    border-bottom: 1px solid #e5e7eb;
}

.admin-image-preview {
    margin: 12px 0 16px;
}

.admin-image-preview img {
    max-width: 320px;
    width: 100%;
    height: auto;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.08);
}

/* =========================
   VISIT PAGE CUSTOM CONTENT
   ========================= */

.gz-visit-page {
    background:
        radial-gradient(circle at top right, rgba(202,168,106,.14), transparent 22%),
        radial-gradient(circle at bottom left, rgba(31,77,54,.10), transparent 26%),
        linear-gradient(180deg, #f8faf8 0%, #f3f6f3 100%);
    color: #16281f;
}

.gz-visit-container {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.gz-visit-hero {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(rgba(10,22,16,.40), rgba(10,22,16,.52)),
        url('/assets/images/hero.jpg') center/cover no-repeat;
    overflow: hidden;
}

.gz-visit-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,.12) 100%);
}

.gz-visit-hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 0 100px;
    text-align: center;
}

.gz-badge,
.gz-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.14);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.gz-section-kicker {
    background: #eef3ef;
    border: 1px solid rgba(31,77,54,.08);
    color: #1f4d36;
}

.gz-badge::before,
.gz-section-kicker::before {
    content: "";
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #caa86a;
}

.gz-visit-hero h1 {
    margin: 18px 0 16px;
    font-size: clamp(42px, 7vw, 78px);
    line-height: 1.02;
    color: #fff;
}

.gz-hero-text {
    max-width: 860px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.95;
    color: rgba(255,255,255,.92);
}

.gz-hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.gz-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 12px 22px;
    border-radius: 16px;
    font-weight: 800;
    text-decoration: none;
    transition: .2s ease;
}

.gz-btn-primary {
    background: #1f4d36;
    color: #fff;
    box-shadow: 0 12px 30px rgba(16,24,20,.15);
}

.gz-btn-primary:hover {
    transform: translateY(-1px);
    background: #173927;
}

.gz-btn-secondary {
    background: rgba(255,255,255,.92);
    color: #1f4d36;
}

.gz-btn-secondary:hover {
    transform: translateY(-1px);
    background: #fff;
}

.gz-intro-card {
    margin-top: -70px;
    position: relative;
    z-index: 3;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(255,255,255,.88);
    border-radius: 32px;
    box-shadow: 0 18px 40px rgba(16,24,20,.08);
    padding: 34px;
}

.gz-intro-grid {
    display: grid;
    grid-template-columns: 1.5fr .9fr;
    gap: 24px;
    align-items: start;
}

.gz-intro-card h2,
.gz-section-head h2,
.gz-split-card h2,
.gz-cta-box h2 {
    margin: 14px 0;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
    color: #16281f;
}

.gz-intro-card p,
.gz-section-head p,
.gz-info-card p,
.gz-split-card p,
.gz-faq-card p,
.gz-cta-box p {
    color: #66776f;
    line-height: 1.9;
    font-size: 16px;
}

.gz-highlight-box {
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(180deg,#f8faf8 0%,#f1f5f1 100%);
    border: 1px solid rgba(31,77,54,.08);
}

.gz-highlight-box h3,
.gz-info-card h3,
.gz-faq-card h3 {
    margin: 0 0 14px;
    font-size: 1.2rem;
    color: #163824;
}

.gz-highlight-box ul,
.gz-list {
    margin: 0;
    padding-left: 18px;
    line-height: 1.9;
    color: #4f6058;
}

.gz-faq-section,
.gz-info-grid,
.gz-cta-box {
    margin-top: 34px;
}

.gz-section-head {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 22px;
}

.gz-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 18px;
}

.gz-info-card,
.gz-faq-card,
.gz-split-card {
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(255,255,255,.88);
    border-radius: 28px;
    box-shadow: 0 16px 35px rgba(16,24,20,.06);
    padding: 26px;
}

.gz-card-label {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: #eef3ef;
    color: #1f4d36;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 12px;
}

.gz-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 18px;
}

.gz-cta-box {
    text-align: center;
    padding: 42px 26px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(31,77,54,.96) 0%, rgba(22,56,38,.96) 100%);
    color: #fff;
    box-shadow: 0 20px 50px rgba(16,24,20,.14);
}

.gz-cta-box h2,
.gz-cta-box p {
    color: #fff;
}

.gz-cta-box p {
    max-width: 760px;
    margin: 14px auto 0;
    color: rgba(255,255,255,.88);
}

.gz-cta-box .gz-section-kicker {
    background: rgba(255,255,255,.10);
    border-color: rgba(255,255,255,.12);
    color: #fff;
}

/* =========================
   FOOTER / LEGAL
   ========================= */

.site-footer {
    padding: 36px 0 48px;
    border-top: 1px solid var(--border);
    margin-top: 40px;
}

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

.footer-col ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.footer-bottom {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 14px;
}

.footer-legal li {
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 1.6;
    color: #9fb3a8;
}

.footer-legal strong {
    color: #ffffff;
    font-weight: 600;
}

.footer-legal a,
.legal-contact a {
    color: #caa86a;
    text-decoration: none;
}

.footer-legal a:hover,
.legal-contact a:hover {
    text-decoration: underline;
}

.footer-legal-premium h4 {
    margin-bottom: 12px;
}

.legal-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 16px 18px;
    backdrop-filter: blur(6px);
}

.legal-title {
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: 0.4px;
}

.legal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.legal-meta span {
    background: #1f4d36;
    color: #fff;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    font-weight: 700;
}

.legal-location {
    font-size: 13px;
    line-height: 1.6;
    color: #9fb3a8;
    margin-bottom: 10px;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1180px) {
    .brand-logo-xl {
        height: 150px;
        max-width: 400px;
    }

    .site-header-cinematic.is-scrolled .brand-logo-xl,
    .site-header-cinematic.menu-is-open .brand-logo-xl {
        height: 86px;
        max-width: 240px;
    }

    .desktop-nav-centered {
        gap: 26px;
    }

    .hero-cinematic-layout,
    .hero-cinematic-facts,
    .hero-ultra-grid,
    .hero-ultra-facts {
        grid-template-columns: 1fr;
    }

    .hero.hero-premium-cinematic,
    .hero.hero-ultra {
        align-items: center;
        padding-bottom: 80px;
    }
}

@media (max-width: 1024px) {
    .hero-stats,
    .floating-grid,
    .cards-grid,
    .footer-grid,
    .admin-grid,
    .split,
    .public-gallery-grid {
        grid-template-columns: 1fr;
    }

    .admin-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    :root {
        --hero-offset: 24px;
    }

    .desktop-nav,
    .desktop-nav-centered {
        display: none !important;
    }

    .cinematic-toggle,
    .menu-toggle {
        display: block !important;
    }

    .header-top-brand {
        padding-top: 10px;
        padding-bottom: 8px;
    }

    .brand-logo-xl {
        height: 120px;
        max-width: 300px;
    }

    .site-header-cinematic.is-scrolled .brand-logo-xl,
    .site-header-cinematic.menu-is-open .brand-logo-xl {
        height: 76px;
        max-width: 200px;
    }

    .brand-tagline {
        font-size: 11px;
        letter-spacing: 0.12em;
    }

    .header-bottom-nav {
        justify-content: flex-end;
        padding-bottom: 10px;
    }

    .page-hero-grid,
    .page-layout,
    .info-grid-3 {
        grid-template-columns: 1fr;
    }

    .hero.hero-premium-cinematic,
    .hero.hero-ultra {
        padding-top: calc(var(--site-header-height) + var(--hero-offset) + 46px);
        padding-bottom: 70px;
    }

    .hero-cinematic-title,
    .hero-ultra-title {
        font-size: clamp(40px, 10vw, 64px);
    }

    .gz-intro-grid,
    .gz-info-grid,
    .gz-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 981px) {
    .mobile-nav,
    .cinematic-mobile-nav {
        display: none !important;
    }
}

@media (max-width: 820px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .gz-visit-hero {
        min-height: 520px;
    }

    .gz-intro-card {
        margin-top: -40px;
        padding: 22px;
    }

    .gz-hero-text {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .brand-logo-xl {
        height: 100px;
        max-width: 240px;
    }

    .site-header-cinematic.is-scrolled .brand-logo-xl,
    .site-header-cinematic.menu-is-open .brand-logo-xl {
        height: 64px;
        max-width: 170px;
    }

    .mobile-nav,
    .cinematic-mobile-nav {
        padding: 10px 16px;
        border-radius: 18px;
    }

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

    .page-side-card,
    .sidebar-card,
    .page-main-card,
    .page-empty-state {
        padding: 22px;
    }

    .hero.hero-premium-cinematic,
    .hero.hero-ultra {
        min-height: 92vh;
        padding-bottom: 60px;
    }

    .hero-cinematic-panel,
    .hero-ultra-panel {
        padding: 22px;
    }

    .hero-cinematic-fact strong,
    .hero-ultra-fact strong {
        font-size: 28px;
    }
}

@media (max-width: 560px) {
    .hero,
    .hero.hero-premium-cinematic,
    .hero.hero-ultra {
        min-height: auto;
    }
}
