/*
Theme Name:  Zum Goldenen Löwen
Theme URI:   https://hotelzumgoldenenloewen.com/
Author:      Patrick Koydl-Fernandes de Castro
Author URI:  https://hotelzumgoldenenloewen.com/
Description: Luxus One-Page Hotel-Theme für Hotel Zum Goldenen Löwen, St. Goar am Rhein.
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: goldener-loewe
Tags:        one-page, hotel, luxury, dark, gold, full-width-template
*/

/* ─────────────────────────────────────────
   TABLE OF CONTENTS
   1. Reset & Base
   2. CSS Variables
   3. Scrollbar & Cursor
   4. Navigation
   5. Hero Section
   6. Stats Bar
   7. Section Globals
   8. About Section
   9. Rooms Section
  10. UNESCO Section
  11. Events Section
  12. Gallery Section
  13. Contact Section
  14. Footer
  15. Animations & Reveal
  16. Utilities
  17. Responsive
───────────────────────────────────────── */

/* ── 1. RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--dark);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul { list-style: none; }

/* WordPress core classes */
.wp-block-image img { height: auto; }
.alignleft  { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.screen-reader-text {
  clip: rect(1px,1px,1px,1px);
  height: 1px; width: 1px;
  overflow: hidden; position: absolute;
}

/* ── 2. CSS VARIABLES ── */
:root {
  --gold:        #c9a84c;
  --gold-light:  #e8d5a3;
  --gold-pale:   #f5edd8;
  --dark:        #0e0c09;
  --dark-2:      #1a1714;
  --dark-3:      #242018;
  --dark-4:      #2e2a22;
  --cream:       #f5f0e8;
  --cream-2:     #ede7d8;
  --text-muted:  #8a8070;
  --text-light:  #b5a98e;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', sans-serif;
  --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── 3. SCROLLBAR & NOISE ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
}

/* ── 4. CURSOR ── */
* { cursor: none !important; }

#gl-cursor {
  position: fixed; top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, background .2s;
}
#gl-cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform .12s ease-out, width .3s, height .3s;
}
body:has(a:hover) #gl-cursor,
body:has(button:hover) #gl-cursor       { width: 18px; height: 18px; background: var(--gold-light); }
body:has(a:hover) #gl-cursor-ring,
body:has(button:hover) #gl-cursor-ring  { width: 56px; height: 56px; }

/* ── 5. NAVIGATION ── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}
#site-header.scrolled {
  background: rgba(14,12,9,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 60px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.site-logo {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.05em;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.site-logo .logo-sub {
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--text-light);
  font-family: var(--sans);
  font-weight: 300;
  text-transform: uppercase;
}

#primary-navigation { display: flex; gap: 40px; }
#primary-navigation a {
  text-decoration: none;
  color: var(--cream-2);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}
#primary-navigation a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
#primary-navigation a:hover                 { color: var(--gold-light); }
#primary-navigation a:hover::after          { transform: scaleX(1); }

.nav-cta-btn {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 24px;
  text-decoration: none !important;
  transition: var(--transition);
}
.nav-cta-btn:hover { background: var(--gold); color: var(--dark) !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

/* ── 6. HERO SECTION ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.1);
  transition: transform 8s ease-out;
  filter: brightness(0.45);
}
#hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(14,12,9,0.7) 0%,
    rgba(14,12,9,0.2) 50%,
    rgba(14,12,9,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards 0.5s;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-eyebrow::before {
  content: '';
  width: 48px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards 0.8s;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}

.hero-subtitle {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--cream-2);
  max-width: 480px;
  margin-bottom: 52px;
  opacity: 0;
  animation: fadeUp 1s ease forwards 1.1s;
  transform: translateY(20px);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 1s ease forwards 1.4s;
  transform: translateY(20px);
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 16px 40px;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold-light);
  transform: translateX(-101%);
  transition: transform 0.4s ease;
}
.btn-primary:hover::before  { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: color 0.3s;
}
.btn-ghost svg { transition: transform 0.3s; }
.btn-ghost:hover { color: var(--gold-light); }
.btn-ghost:hover svg { transform: translateX(6px); }

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px; right: 60px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0;
  animation: fadeUp 1s ease forwards 2s;
  z-index: 2;
}
.hero-scroll-indicator span {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-light);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}

.hero-year-badge {
  position: absolute;
  top: 50%; right: 60px;
  transform: translateY(-50%);
  width: 120px; height: 120px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; text-align: center;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.8s;
}
.hero-year-badge::before {
  content: '';
  position: absolute; inset: 8px;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
}
.hero-year-badge .badge-year {
  font-family: var(--serif);
  font-size: 28px; font-weight: 300;
  color: var(--gold); line-height: 1;
}
.hero-year-badge .badge-text {
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 4px;
}

/* ── 7. STATS BAR ── */
.stats-bar {
  position: relative; z-index: 2;
  background: var(--dark-2);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 0 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid rgba(201,168,76,0.1);
  transition: background 0.3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(201,168,76,0.04); }
.stat-num {
  font-family: var(--serif);
  font-size: 42px; font-weight: 300;
  color: var(--gold); line-height: 1; display: block;
}
.stat-label {
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--text-light);
  margin-top: 6px; display: block;
}

/* ── 8. SECTION GLOBALS ── */
section { position: relative; z-index: 2; }

.section-label {
  font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 20px;
}
.section-label::before { content: ''; width: 40px; height: 1px; background: var(--gold); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 300; line-height: 1.1;
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--gold-light); }

/* ── 9. ABOUT SECTION ── */
#about {
  padding: 120px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text p {
  font-size: 16px; line-height: 1.9;
  color: var(--cream-2); margin-top: 28px; font-weight: 300;
}
.about-media { position: relative; height: 580px; }
.about-img-main {
  width: 80%; height: 100%;
  object-fit: cover; filter: brightness(0.85);
}
.about-img-accent {
  position: absolute;
  bottom: -40px; right: 0;
  width: 55%; height: 45%;
  object-fit: cover;
  border: 6px solid var(--dark);
  filter: brightness(0.85);
}
.about-ornament {
  position: absolute;
  top: 40px; right: 20%;
  width: 80px; height: 80px;
  border: 1px solid rgba(201,168,76,0.3);
  transform: rotate(45deg);
}
.about-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-top: 40px;
}
.feature-item {
  padding: 20px;
  border: 1px solid rgba(201,168,76,0.12);
  background: rgba(201,168,76,0.03);
  transition: var(--transition);
}
.feature-item:hover {
  border-color: rgba(201,168,76,0.35);
  background: rgba(201,168,76,0.07);
}
.feature-icon {
  width: 32px; height: 32px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px; font-size: 14px;
}
.feature-item h4 {
  font-family: var(--serif); font-size: 17px;
  font-weight: 400; color: var(--gold-light); margin-bottom: 4px;
}
.feature-item p { font-size: 12px; color: var(--text-light); line-height: 1.6; }

/* ── 9. ROOMS SECTION ── */
#rooms { padding: 120px 60px; background: var(--dark-2); }
.rooms-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 80px;
}
.rooms-header .section-meta { max-width: 380px; margin-left: auto; margin-top: 20px; }
.rooms-header .section-meta p {
  font-size: 14px; color: var(--text-light); line-height: 1.8; margin-top: 16px;
}
.rooms-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.room-card { position: relative; overflow: hidden; }
.room-img {
  width: 100%; height: 500px;
  object-fit: cover; display: block;
  filter: brightness(0.6);
  transition: transform 0.8s ease, filter 0.6s ease;
}
.room-card:hover .room-img { transform: scale(1.06); filter: brightness(0.45); }
.room-info {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 36px;
  background: linear-gradient(to top, rgba(14,12,9,0.92) 0%, transparent 60%);
}
.room-badge {
  position: absolute; top: 24px; right: 24px;
  background: rgba(201,168,76,0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 6px 14px;
  backdrop-filter: blur(4px);
}
.room-type { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.room-name { font-family: var(--serif); font-size: 28px; font-weight: 300; color: var(--cream); line-height: 1.2; margin-bottom: 12px; }
.room-desc {
  font-size: 12px; color: var(--text-light); line-height: 1.7;
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}
.room-card:hover .room-desc { max-height: 80px; opacity: 1; }
.room-price { display: flex; align-items: baseline; gap: 6px; margin-top: 16px; }
.room-price .amount {
  font-family: var(--serif); font-size: 36px;
  font-weight: 300; color: var(--gold); line-height: 1;
}
.room-price .per { font-size: 11px; color: var(--text-light); letter-spacing: 0.1em; }
.room-amenities {
  display: flex; gap: 12px; margin-top: 12px; flex-wrap: wrap;
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}
.room-card:hover .room-amenities { max-height: 40px; opacity: 1; }
.amenity-tag {
  font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid rgba(201,168,76,0.2); padding: 3px 8px;
}
.room-cta {
  display: inline-block; margin-top: 20px;
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transform: translateY(20px); opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease, border-color 0.3s;
}
.room-card:hover .room-cta { transform: translateY(0); opacity: 1; border-color: var(--gold); }

/* ── 10. UNESCO SECTION ── */
#unesco {
  padding: 140px 60px; text-align: center;
  position: relative; overflow: hidden;
}
.unesco-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.18);
}
.unesco-content { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; }
.unesco-ornament {
  width: 60px; height: 60px;
  border: 1px solid rgba(201,168,76,0.4);
  transform: rotate(45deg);
  margin: 0 auto 40px;
  display: flex; align-items: center; justify-content: center;
}
.unesco-ornament::before {
  content: '✦'; color: var(--gold); font-size: 16px;
  transform: rotate(-45deg); display: block;
}
#unesco .section-label { justify-content: center; }
#unesco .section-label::before { display: none; }
#unesco .section-title { margin: 16px 0 32px; font-size: clamp(40px, 5.5vw, 76px); }
#unesco p { font-size: 15px; color: var(--cream-2); line-height: 1.9; font-weight: 300; margin-bottom: 16px; }
.unesco-stats {
  display: flex; justify-content: center; gap: 80px; margin-top: 60px;
  border-top: 1px solid rgba(201,168,76,0.15); padding-top: 48px;
}
.u-stat .num {
  font-family: var(--serif); font-size: 52px;
  font-weight: 300; color: var(--gold); display: block; line-height: 1;
}
.u-stat .lbl {
  font-size: 10px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--text-light);
  margin-top: 8px; display: block;
}

/* ── 11. EVENTS SECTION ── */
#events { padding: 120px 0; }
.events-inner { display: grid; grid-template-columns: 55% 1fr; }
.events-img {
  height: 700px; object-fit: cover;
  width: 100%; display: block; filter: brightness(0.75);
}
.events-text {
  background: var(--dark-3); padding: 80px 60px;
  display: flex; flex-direction: column; justify-content: center;
  border-left: 1px solid rgba(201,168,76,0.1);
}
.events-text .section-title { font-size: clamp(30px, 3.5vw, 52px); margin: 16px 0 28px; }
.events-text p { font-size: 14px; color: var(--cream-2); line-height: 1.9; margin-bottom: 16px; }
.event-types { margin-top: 32px; display: flex; flex-direction: column; }
.event-types li {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  font-size: 13px; color: var(--cream-2); letter-spacing: 0.05em;
  transition: var(--transition);
}
.event-types li:hover { color: var(--gold-light); padding-left: 8px; }
.event-types li::before {
  content: ''; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%; flex-shrink: 0;
}

/* ── 12. GALLERY SECTION ── */
#gallery { padding: 120px 60px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 280px 280px;
  gap: 6px;
  margin-top: 60px;
}
.gallery-item { overflow: hidden; position: relative; }
.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 4; }
.gallery-item:nth-child(3) { grid-column: span 3; }
.gallery-item:nth-child(4) { grid-column: span 3; }
.gallery-item:nth-child(5) { grid-column: span 4; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.8) saturate(0.9);
  transition: transform 0.7s ease, filter 0.5s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.06); filter: brightness(0.7) saturate(1.1); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(201,168,76,0);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.4s;
}
.gallery-overlay span {
  font-family: var(--serif); font-size: 13px;
  letter-spacing: 0.2em; color: var(--cream);
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.gallery-item:hover .gallery-overlay              { background: rgba(14,12,9,0.35); }
.gallery-item:hover .gallery-overlay span         { opacity: 1; transform: translateY(0); }

/* ── 13. CONTACT SECTION ── */
#contact {
  padding: 120px 60px; background: var(--dark-2);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
}
.contact-info .section-title { font-size: clamp(34px, 4vw, 58px); margin: 16px 0 32px; }
.contact-info > p { font-size: 14px; color: var(--text-light); line-height: 1.9; margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; }
.contact-detail {
  display: flex; gap: 24px;
  padding: 24px 0; border-bottom: 1px solid rgba(201,168,76,0.1);
  align-items: flex-start;
}
.contact-detail:first-child { border-top: 1px solid rgba(201,168,76,0.1); }
.detail-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 14px; color: var(--gold);
}
.detail-content label {
  font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 4px;
}
.detail-content a,
.detail-content address {
  font-size: 14px; color: var(--cream); text-decoration: none;
  transition: color 0.3s; line-height: 1.6;
  font-style: normal;
}
.detail-content a:hover { color: var(--gold-light); }

.contact-form-wrap {
  padding: 60px; background: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.12);
}
.form-title {
  font-family: var(--serif); font-size: 28px;
  font-weight: 300; margin-bottom: 36px; color: var(--gold-light);
}
.form-group { margin-bottom: 24px; }
.form-group label {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-light); display: block; margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: none;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  color: var(--cream);
  font-family: var(--sans); font-size: 14px; font-weight: 300;
  padding: 12px 0; outline: none;
  transition: border-color 0.3s;
  appearance: none; -webkit-appearance: none;
}
.form-group textarea {
  min-height: 100px; resize: vertical;
  border: 1px solid rgba(201,168,76,0.2);
  padding: 12px; background: rgba(255,255,255,0.04);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus      { border-bottom-color: var(--gold); }
.form-group textarea:focus      { border-color: var(--gold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-submit {
  width: 100%; background: var(--gold); color: var(--dark);
  border: none; font-family: var(--sans); font-size: 11px;
  font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase;
  padding: 18px; margin-top: 12px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.form-submit::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold-light); transform: translateX(-101%);
  transition: transform 0.4s ease;
}
.form-submit:hover::before { transform: translateX(0); }
.form-submit span { position: relative; z-index: 1; }

/* ── GOLD DIVIDER ── */
.gold-divider {
  height: 1px; position: relative; z-index: 2;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.3; margin: 0 60px;
}

/* ── 14. FOOTER ── */
#colophon {
  background: var(--dark);
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 40px;
  position: relative; z-index: 2;
}
.footer-brand {
  font-family: var(--serif); font-size: 24px;
  font-weight: 300; color: var(--gold);
}
.footer-brand span {
  display: block; font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--text-muted);
  font-family: var(--sans); margin-top: 4px;
}
.footer-center { text-align: center; }
.footer-ornament { font-size: 28px; color: rgba(201,168,76,0.3); letter-spacing: 0.2em; }
.footer-copy { font-size: 11px; color: var(--text-muted); letter-spacing: 0.1em; margin-top: 8px; }
.footer-links {
  display: flex; justify-content: flex-end; gap: 32px;
}
.footer-links a {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-light); text-decoration: none; transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }

/* ── 15. ANIMATIONS ── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes scrollAnim {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50%       { transform: scaleY(0.3); transform-origin: top; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible           { opacity: 1; transform: translateY(0); }
.reveal-delay-1           { transition-delay: 0.15s; }
.reveal-delay-2           { transition-delay: 0.30s; }
.reveal-delay-3           { transition-delay: 0.45s; }

/* ── 16. UTILITIES ── */
.text-gold   { color: var(--gold); }
.text-light  { color: var(--text-light); }
.text-italic { font-style: italic; }
.font-serif  { font-family: var(--serif); }

/* ── 17. RESPONSIVE ── */
@media (max-width: 1200px) {
  #site-header, #site-header.scrolled { padding-left: 40px; padding-right: 40px; }
  #about, #rooms, #gallery, #contact { padding-left: 40px; padding-right: 40px; }
  .gold-divider { margin: 0 40px; }
  #colophon { padding: 50px 40px; }
}

@media (max-width: 900px) {
  #site-header, #site-header.scrolled { padding: 20px 24px; }
  #primary-navigation, .nav-cta-btn  { display: none; }
  .nav-toggle { display: flex; }

  /* Mobile nav open */
  #primary-navigation.nav-open {
    display: flex; flex-direction: column; gap: 20px;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(14,12,9,0.97); backdrop-filter: blur(20px);
    align-items: center; justify-content: center;
    z-index: 999;
  }
  #primary-navigation.nav-open a { font-size: 18px; letter-spacing: 0.15em; }

  #hero { min-height: 100svh; }
  .hero-content    { padding: 0 24px; }
  .hero-year-badge { display: none; }
  .hero-scroll-indicator { right: 24px; }

  .stats-bar       { grid-template-columns: repeat(2, 1fr); padding: 0 24px; }

  #about { grid-template-columns: 1fr; padding: 80px 24px; gap: 40px; }
  .about-media { height: 400px; }
  .about-img-accent { bottom: -20px; }

  #rooms { padding: 80px 24px; }
  .rooms-header { flex-direction: column; gap: 24px; }
  .rooms-grid   { grid-template-columns: 1fr; }

  #unesco { padding: 80px 24px; }
  .unesco-stats { gap: 40px; }

  #events { padding: 80px 0; }
  .events-inner { grid-template-columns: 1fr; }
  .events-img   { height: 350px; }
  .events-text  { padding: 40px 24px; }

  #gallery { padding: 80px 24px; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:nth-child(n)  { grid-column: span 1; grid-row: span 1; height: 220px; }
  .gallery-item:nth-child(1)  { grid-column: span 2; }

  #contact { grid-template-columns: 1fr; padding: 80px 24px; gap: 40px; }
  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }

  #colophon { grid-template-columns: 1fr; text-align: center; padding: 40px 24px; gap: 24px; }
  .footer-links { justify-content: center; }
  .gold-divider { margin: 0 24px; }

  #gl-cursor, #gl-cursor-ring { display: none; }
  * { cursor: auto !important; }
}

@media (max-width: 600px) {
  .hero-title { font-size: clamp(44px, 12vw, 72px); }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
  .about-features { grid-template-columns: 1fr; }
  .unesco-stats { flex-direction: column; gap: 32px; align-items: center; }
}
