/* ========== VARIABLES ========== */
:root {
  --gold: #b89a5e;
  --gold-light: #d4b87a;
  --gold-dark: #8a7040;
  --cream: #f8f4ed;
  --dark: #1a1714;
  --dark-2: #2c2720;
  --mid: #4a4038;
  --text: #3a3028;
  --text-light: #6b5f52;
  --white: #ffffff;
  --border: rgba(184,154,94,0.25);
  --shadow: 0 8px 40px rgba(26,23,20,0.12);
  --radius: 2px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Helvetica Neue', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1em; color: var(--text-light); }
p:last-child { margin-bottom: 0; }

/* ========== UTILITY ========== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--dark { background: var(--dark); color: var(--cream); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--cream); }
.section--dark p { color: rgba(248,244,237,0.75); }
.gold-line {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 0 auto 32px;
}
.gold-line--left { margin-left: 0; }
.text-center { text-align: center; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none; cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius);
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
}
.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184,154,94,0.4);
}
.btn--outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--dark);
}
.btn--white {
  background: var(--white);
  color: var(--dark);
}
.btn--white:hover {
  background: var(--cream);
  transform: translateY(-1px);
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(26,23,20,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.navbar__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.navbar__logo span { color: var(--gold); }
.navbar__nav {
  display: flex; align-items: center; gap: 32px;
}
.navbar__nav a {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  position: relative;
}
.navbar__nav a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.navbar__nav a:hover,
.navbar__nav a.active { color: var(--gold); }
.navbar__nav a:hover::after,
.navbar__nav a.active::after { transform: scaleX(1); }
.navbar__book {
  padding: 10px 24px;
  font-size: 0.78rem;
}
.navbar__lang {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.navbar__lang:hover { border-color: var(--gold); color: var(--gold); }
.navbar__hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.navbar__hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ========== HERO ========== */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #2c2012 0%, #1a1208 40%, #0f0a05 100%);
}
.hero__bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(184,154,94,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(184,154,94,0.06) 0%, transparent 50%);
}
.hero__pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image:
    repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}
.hero__content {
  position: relative; z-index: 1;
  text-align: center; padding: 0 24px;
  animation: fadeUp 1s ease both;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.hero__title {
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 48px;
  font-style: italic;
  font-family: var(--font-display);
}
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero__scroll::after {
  content: '';
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ========== BOOKING BAR ========== */
.booking-bar {
  background: var(--dark);
  padding: 0;
  border-bottom: 1px solid var(--border);
}
.booking-bar__inner {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0;
}
.booking-bar__field {
  display: flex; flex-direction: column;
  padding: 20px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
  flex: 1; min-width: 160px;
}
.booking-bar__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.booking-bar__input,
.booking-bar__select {
  background: transparent; border: none; outline: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  cursor: pointer;
  width: 100%;
}
.booking-bar__select option { background: var(--dark-2); color: var(--white); }
.booking-bar__btn {
  padding: 0 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none; cursor: pointer;
  height: 100%; min-height: 80px;
  transition: var(--transition);
  white-space: nowrap;
}
.booking-bar__btn:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

/* ========== SECTION HEADER ========== */
.section-header { margin-bottom: 60px; }
.section-header__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ========== INFO CARDS ========== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  background: var(--border);
}
.info-card {
  background: var(--cream);
  padding: 48px 40px;
  transition: var(--transition);
}
.info-card:hover { background: var(--white); }
.info-card__icon {
  width: 48px; height: 48px;
  margin-bottom: 20px;
  color: var(--gold);
}
.info-card__icon svg { width: 100%; height: 100%; }
.info-card h3 { margin-bottom: 12px; font-size: 1.1rem; }

/* ========== ROOMS ========== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.room-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-radius: var(--radius);
}
.room-card:hover { transform: translateY(-4px); box-shadow: 0 16px 60px rgba(26,23,20,0.15); }
.room-card__image {
  height: 240px;
  background: linear-gradient(135deg, #2c2720 0%, #1a1714 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.room-card__image-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: rgba(184,154,94,0.5);
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.room-card__image-placeholder svg { width: 48px; height: 48px; opacity: 0.4; }
.room-card__badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
}
.room-card__body { padding: 32px; }
.room-card__name { margin-bottom: 8px; }
.room-card__desc { font-size: 0.9rem; margin-bottom: 24px; }
.room-card__features {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 24px;
}
.room-card__feature {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(184,154,94,0.1);
  padding: 4px 10px;
  border-radius: 2px;
}

/* ========== ABOUT ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark) 100%);
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.about-visual::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(184,154,94,0.3);
  border-radius: var(--radius);
  pointer-events: none;
}
.about-visual__text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: rgba(184,154,94,0.4);
  text-align: center; padding: 24px;
  font-style: italic;
}
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-top: 40px;
}
.about-stat { }
.about-stat__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.about-stat__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 4px;
}

/* ========== ATTRACTIONS ========== */
.attractions-list {
  display: flex; flex-direction: column; gap: 2px;
  background: var(--border);
}
.attraction-item {
  background: var(--cream);
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px; align-items: start;
  transition: var(--transition);
}
.attraction-item:hover { background: var(--white); }
.attraction-item__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(184,154,94,0.2);
  line-height: 1;
}
.attraction-item__title { margin-bottom: 8px; }
.attraction-item__address {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}
.attraction-item__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 16px;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.attraction-item__link:hover { border-color: var(--gold); }

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}
.contact-info__item {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info__item:first-child { padding-top: 0; }
.contact-info__icon {
  width: 40px; height: 40px;
  background: rgba(184,154,94,0.12);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-info__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-info__value {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}
.contact-info__value a { transition: var(--transition); }
.contact-info__value a:hover { color: var(--gold); }
.contact-hours {
  background: var(--dark);
  padding: 32px;
  margin-top: 32px;
  border-radius: var(--radius);
}
.contact-hours h4 { color: var(--gold); margin-bottom: 16px; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; }
.contact-hours__row {
  display: flex; justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.88rem;
}
.contact-hours__row:last-child { border: none; }
.contact-hours__key { color: rgba(248,244,237,0.6); }
.contact-hours__val { color: var(--cream); font-weight: 600; }

/* ========== FORM ========== */
.form { display: flex; flex-direction: column; gap: 20px; }
.form__group { display: flex; flex-direction: column; gap: 8px; }
.form__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}
.form__input,
.form__textarea {
  padding: 14px 18px;
  background: var(--white);
  border: 1.5px solid rgba(184,154,94,0.2);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form__input:focus,
.form__textarea:focus { border-color: var(--gold); }
.form__textarea { min-height: 130px; resize: vertical; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form__success {
  display: none;
  background: rgba(184,154,94,0.1);
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  padding: 16px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
}
.form__success.visible { display: block; }

/* ========== MAP ========== */
.map-container {
  height: 320px;
  background: var(--dark-2);
  margin-top: 48px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ========== GALLERY ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.gallery-item {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--dark-2), var(--dark));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative; cursor: pointer;
}
.gallery-item:nth-child(1) { grid-column: span 2; aspect-ratio: auto; min-height: 300px; }
.gallery-item:nth-child(4) { grid-column: span 2; aspect-ratio: auto; min-height: 280px; }
.gallery-item__inner {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: rgba(184,154,94,0.4);
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.gallery-item__inner svg { width: 36px; height: 36px; }
.gallery-item__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__overlay span {
  color: white; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.5);
  padding: 8px 20px;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--dark);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__logo span { color: var(--gold); }
.footer__desc {
  font-size: 0.88rem;
  color: rgba(248,244,237,0.5);
  line-height: 1.8;
  margin-bottom: 0;
}
.footer__title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 0.88rem;
  color: rgba(248,244,237,0.5);
  transition: var(--transition);
}
.footer__links a:hover { color: var(--gold); }
.footer__contact-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem;
  color: rgba(248,244,237,0.5);
  margin-bottom: 10px;
  transition: var(--transition);
}
.footer__contact-item a { color: inherit; transition: var(--transition); }
.footer__contact-item a:hover { color: var(--gold); }
.footer__contact-item svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }
.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer__copy {
  font-size: 0.8rem;
  color: rgba(248,244,237,0.3);
}
.footer__bottom-links { display: flex; gap: 24px; }
.footer__bottom-links a {
  font-size: 0.78rem;
  color: rgba(248,244,237,0.3);
  transition: var(--transition);
}
.footer__bottom-links a:hover { color: var(--gold); }

/* ========== PAGE HERO ========== */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 100%);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(184,154,94,0.08) 0%, transparent 60%);
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero__breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 16px;
}
.page-hero__breadcrumb a { color: var(--gold); }
.page-hero__breadcrumb span { color: rgba(255,255,255,0.2); }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 1.05rem; max-width: 560px; }

/* ========== MOBILE MENU ========== */
.mobile-nav {
  position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: rgba(26,23,20,0.98);
  z-index: 999;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}
.fade-in {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .form__row { grid-template-columns: 1fr; }
  .attraction-item { grid-template-columns: 1fr; gap: 8px; }
  .attraction-item__num { font-size: 2rem; }
}
@media (max-width: 700px) {
  .navbar__nav, .navbar__book, .navbar__lang { display: none; }
  .navbar__hamburger { display: flex; }
  .section { padding: 60px 0; }
  .footer__grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) { min-height: 200px; }
  .booking-bar__inner { flex-direction: column; }
  .booking-bar__field { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .booking-bar__btn { width: 100%; min-height: 60px; }
  .info-grid { grid-template-columns: 1fr; }
}

/* ---- Real photo hero overlay ---- */
.hero__bg[style*="background-image"] {
  background-size: cover !important;
  background-position: center !important;
}
.hero__bg[style*="background-image"]::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(20,14,6,0.75) 0%, rgba(10,7,3,0.65) 100%);
}
.hero__pattern { position: relative; z-index: 1; }

/* Gallery items with real photos */
.gallery-item img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* Attraction photo */
.attraction-item img { border-radius: 2px; }
