@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
  --cream: #f5f0e8;
  --dark: #1a1a14;
  --gold: #b8943f;
  --gold-light: #d4af6a;
  --green: #2d4a2d;
  --green-light: #4a7c4a;
  --mist: #e8ede8;
  --text: #2c2c24;
  --text-light: #6b6b5a;
  --shadow: 0 4px 32px rgba(26,26,20,0.12);
  --shadow-lg: 0 16px 64px rgba(26,26,20,0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.15;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }

p { line-height: 1.8; color: var(--text-light); }

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

/* ── NAV ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  padding: 1.2rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s ease;
}

nav.scrolled {
  background: rgba(245,240,232,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(26,26,20,0.08);
  padding: 0.8rem 3rem;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: color 0.4s;
}

nav.scrolled .nav-logo { color: var(--dark); }

.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  transition: color 0.3s;
  position: relative;
}

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

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

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

.nav-book {
  padding: 0.55rem 1.6rem;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 2px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white) !important;
  background: transparent;
  transition: all 0.3s;
}

.nav-book:hover { background: var(--gold); border-color: var(--gold); }
nav.scrolled .nav-book { border-color: var(--gold); color: var(--gold) !important; }
nav.scrolled .nav-book:hover { background: var(--gold); color: var(--white) !important; }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}

.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: #ffffff;
  transition: all 0.3s;
}

nav.scrolled .hamburger span { background: #2b1a0e; }

/* ── HERO ── */
.hero {
  height: 100vh; min-height: 600px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a2e1a 0%, #2d4a2d 40%, #3a5c3a 70%, #1a2e1a 100%);
}

.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1600&q=80') center/cover;
  opacity: 0.35;
}

.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,26,20,0.3) 0%, rgba(26,26,20,0.5) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 2rem;
  animation: heroFade 1.2s ease forwards;
}

@keyframes heroFade {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  animation: heroFade 1.2s 0.2s ease both;
}

.hero h1 {
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1.5rem;
  animation: heroFade 1.2s 0.4s ease both;
}

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  opacity: 0.85;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  animation: heroFade 1.2s 0.6s ease both;
}

.hero-ctas {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: heroFade 1.2s 0.8s ease both;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover { background: var(--gold-light); }

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.6);
}

.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn-dark {
  background: var(--dark);
  color: var(--white);
}

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

.btn-green {
  background: var(--green);
  color: var(--white);
}

.btn-green:hover { background: var(--green-light); }

/* ── AVAILABILITY BAR ── */
.availability-bar {
  background: var(--white);
  padding: 2rem 3rem;
  box-shadow: var(--shadow);
  position: relative; z-index: 10;
}

.avail-form {
  display: flex; gap: 1rem; align-items: flex-end; flex-wrap: wrap;
  max-width: 1000px; margin: 0 auto;
}

.avail-group {
  flex: 1; min-width: 160px;
}

.avail-group label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.avail-group input, .avail-group select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid #ddd;
  background: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s;
}

.avail-group input:focus, .avail-group select:focus { border-color: var(--gold); }

/* ── SECTIONS ── */
section { padding: 6rem 3rem; }

.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  margin-bottom: 1.5rem;
  color: var(--dark);
}

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

.section-line {
  width: 48px; height: 1px;
  background: var(--gold);
  margin-bottom: 2rem;
}

.container { max-width: 1200px; margin: 0 auto; }

.text-center { text-align: center; }
.text-center .section-line { margin: 0 auto 2rem; }

/* ── WELCOME SPLIT ── */
.welcome-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1200px; margin: 0 auto;
}

.welcome-img-wrap {
  position: relative;
}

.welcome-img-wrap img {
  width: 100%; height: 520px;
  object-fit: cover;
  display: block;
}

.welcome-badge {
  position: absolute;
  bottom: -2rem; right: -2rem;
  background: var(--gold);
  color: var(--white);
  width: 120px; height: 120px;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  text-align: center;
  box-shadow: var(--shadow);
}

.welcome-badge .big { font-size: 2rem; font-weight: 600; line-height: 1; }
.welcome-badge .small { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.9; }

.welcome-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem;
}

.feat-item { display: flex; gap: 0.8rem; align-items: flex-start; }
.feat-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.feat-item h4 { font-size: 0.95rem; font-family: 'Jost', sans-serif; font-weight: 500; margin-bottom: 0.2rem; color: var(--dark); }
.feat-item p { font-size: 0.82rem; line-height: 1.5; }

/* ── ROOMS ── */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px; margin: 0 auto;
}

.room-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.room-card img {
  width: 100%; height: 240px; object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.room-card:hover img { transform: scale(1.04); }

.room-card-body { padding: 1.8rem; }
.room-card-body h3 { margin-bottom: 0.5rem; color: var(--dark); }
.room-card-body p { font-size: 0.88rem; margin-bottom: 1.2rem; }

.room-price {
  display: flex; align-items: baseline; gap: 0.4rem; margin-bottom: 1.2rem;
}

.price-from { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); }
.price-amount { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--green); }
.price-per { font-size: 0.75rem; color: var(--text-light); }

.room-amenities {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem;
}

.amenity-tag {
  font-size: 0.7rem;
  padding: 0.3rem 0.7rem;
  background: var(--mist);
  color: var(--text-light);
  letter-spacing: 0.05em;
}

/* ── PRICING TABLE ── */
.pricing-section { background: var(--dark); color: var(--white); }
.pricing-section .section-title { color: var(--white); }
.pricing-section p { color: rgba(255,255,255,0.6); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px; margin: 3rem auto 0;
}

.pricing-card {
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2.5rem;
  position: relative;
  transition: border-color 0.3s;
}

.pricing-card:hover { border-color: var(--gold); }

.pricing-card.featured {
  border-color: var(--gold);
  background: rgba(184,148,63,0.08);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
}

.pricing-card h3 { color: var(--white); margin-bottom: 0.5rem; }
.pricing-type { font-size: 0.75rem; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.5rem; }

.price-row {
  display: flex; justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.88rem;
}

.price-row:last-of-type { border-bottom: none; }
.price-row span:first-child { color: rgba(255,255,255,0.6); }
.price-row span:last-child { color: var(--gold-light); font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; }

/* ── FACILITIES ── */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1100px; margin: 0 auto;
}

.facility-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  transition: box-shadow 0.3s, transform 0.3s;
}

.facility-item:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.facility-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.facility-item h4 { font-family: 'Jost', sans-serif; font-weight: 500; font-size: 0.9rem; letter-spacing: 0.05em; margin-bottom: 0.5rem; color: var(--dark); }
.facility-item p { font-size: 0.82rem; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--mist); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1100px; margin: 3rem auto 0;
}

.testimonial-card {
  background: var(--white);
  padding: 2.2rem;
  box-shadow: var(--shadow);
}

.stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card blockquote { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-style: italic; color: var(--text); line-height: 1.7; margin-bottom: 1.5rem; }
.reviewer { display: flex; align-items: center; gap: 0.8rem; }
.reviewer-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 0.9rem; font-weight: 500; flex-shrink: 0; }
.reviewer-name { font-size: 0.88rem; font-weight: 500; color: var(--dark); }
.reviewer-loc { font-size: 0.75rem; color: var(--text-light); }

/* ── ATTRACTIONS ── */
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1200px; margin: 3rem auto 0;
}

.attraction-item {
  position: relative; overflow: hidden;
  height: 260px;
}

.attraction-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}

.attraction-item:hover img { transform: scale(1.08); }

.attraction-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,20,0.85) 0%, transparent 60%);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--white);
}

.attraction-overlay .icon { font-size: 1.5rem; margin-bottom: 0.4rem; }
.attraction-overlay h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; margin-bottom: 0.2rem; }
.attraction-overlay span { font-size: 0.75rem; opacity: 0.75; letter-spacing: 0.05em; }

/* ── FAQ ── */
.faq-section { background: var(--white); }

.faq-list {
  max-width: 760px; margin: 3rem auto 0;
}

.faq-item {
  border-bottom: 1px solid #e8e4dc;
}

.faq-q {
  width: 100%;
  background: none; border: none;
  padding: 1.4rem 0;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--dark);
  text-align: left;
  gap: 1rem;
}

.faq-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--gold);
  transition: transform 0.3s;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s;
}

.faq-a p {
  padding-bottom: 1.4rem;
  font-size: 0.9rem;
  line-height: 1.8;
}

.faq-item.open .faq-a { max-height: 300px; }

/* ── GALLERY ── */
.gallery-masonry {
  columns: 3;
  column-gap: 1rem;
  max-width: 1200px; margin: 0 auto;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%; display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.04); }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  max-width: 1100px; margin: 0 auto;
  align-items: start;
}

.contact-info-block { margin-bottom: 2rem; }
.contact-info-block h4 {
  font-family: 'Jost', sans-serif; font-weight: 500;
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.7rem;
}
.contact-info-block p { font-size: 0.92rem; color: var(--text); }
.contact-info-block a { color: var(--green); }
.contact-info-block a:hover { color: var(--gold); }

.contact-form { background: var(--white); padding: 3rem; box-shadow: var(--shadow); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 0.5rem;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #e0dbd0;
  background: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s;
  resize: none;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }

/* ── BOOKING ── */
.booking-section {
  background: var(--dark);
  min-height: 100vh;
  padding-top: 8rem;
  color: var(--white);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  max-width: 1100px; margin: 0 auto;
  align-items: start;
}

.booking-form-wrap { background: var(--white); padding: 3rem; }
.booking-form-wrap h2 { color: var(--dark); margin-bottom: 2rem; }

.booking-summary {
  padding: 2.5rem;
  border: 1px solid rgba(255,255,255,0.1);
}

.booking-summary h3 { color: var(--white); margin-bottom: 1.5rem; }

.summary-item {
  display: flex; justify-content: space-between;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.88rem;
}

.summary-item span:first-child { color: rgba(255,255,255,0.5); }
.summary-item span:last-child { color: var(--gold-light); }

.summary-total {
  display: flex; justify-content: space-between;
  padding: 1.2rem 0 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
}

.summary-total span:last-child { color: var(--gold); }

/* ── ABOUT ── */
.about-hero {
  height: 55vh; min-height: 400px;
  background: linear-gradient(135deg, #1a2e1a, #2d4a2d);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1582719508461-905c673771fd?w=1600&q=80') center/cover;
  opacity: 0.3;
}

.about-hero-content {
  position: relative; z-index: 2;
  text-align: center; color: var(--white); padding: 2rem;
}

.about-hero-content h1 { font-weight: 300; font-style: italic; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--dark); color: var(--white);
}

.stat-item {
  padding: 3rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 0.5rem; }

/* ── NEWSLETTER ── */
.newsletter-section {
  background: var(--green);
  padding: 5rem 3rem;
  text-align: center;
  color: var(--white);
}

.newsletter-section h2 { color: var(--white); margin-bottom: 1rem; }
.newsletter-section p { color: rgba(255,255,255,0.75); margin-bottom: 2rem; }

.newsletter-form {
  display: flex; gap: 0; max-width: 480px; margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 0.9rem 1.2rem;
  border: none;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  outline: none;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.55); }

.newsletter-form button {
  padding: 0.9rem 1.8rem;
  background: var(--gold);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s;
}

.newsletter-form button:hover { background: var(--gold-light); }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 5rem 3rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  max-width: 1200px; margin: 0 auto;
}

.footer-brand h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-brand p { font-size: 0.85rem; line-height: 1.8; max-width: 280px; }

.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul li a { font-size: 0.85rem; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--white); }

.footer-contact p { font-size: 0.85rem; margin-bottom: 0.7rem; display: flex; gap: 0.6rem; }

.footer-bottom {
  max-width: 1200px; margin: 4rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem;
}

.footer-bottom a { transition: color 0.3s; }
.footer-bottom a:hover { color: var(--white); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  height: 45vh; min-height: 320px;
  background: linear-gradient(135deg, #1a2e1a, #2d4a2d);
  position: relative;
  display: flex; align-items: flex-end;
  padding: 3rem;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  opacity: 0.25;
  background-size: cover; background-position: center;
}

.page-hero-content {
  position: relative; z-index: 2;
  color: var(--white);
  max-width: 1200px; margin: 0 auto; width: 100%;
}

.breadcrumb {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.8rem;
}

.breadcrumb a { color: var(--gold); }
.breadcrumb span { margin: 0 0.5rem; }

.page-hero-content h1 { font-weight: 300; font-style: italic; }

/* ── MOBILE NAV ── */
.mobile-menu {
  display: none;
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 2000;
  padding: 6rem 3rem 3rem;
  flex-direction: column;
}

.mobile-menu.open { display: flex; }

.mobile-menu .nav-links {
  flex-direction: column; gap: 0;
}

.mobile-menu .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-menu .nav-links a {
  display: block; padding: 1.2rem 0;
  font-size: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  color: #ffffff;
  font-weight: 300;
  letter-spacing: 0.02em;
  text-transform: none;
}

.mobile-close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: none;
  color: #ffffff; font-size: 2rem; cursor: pointer;
}

/* ── SCROLL TO TOP ── */
.scroll-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--white);
  border: none; cursor: pointer;
  display: none; align-items: center; justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow);
  z-index: 100;
  transition: background 0.3s;
}

.scroll-top:hover { background: var(--green); }
.scroll-top.show { display: flex; }

/* ── NOTICE BANNER ── */
.notice-banner {
  background: var(--gold);
  color: var(--white);
  text-align: center;
  padding: 0.7rem 3rem;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  position: relative;
}

.notice-close {
  position: absolute; right: 1.5rem; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: var(--white); cursor: pointer; font-size: 1.1rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  nav.scrolled { padding: 0.8rem 1.5rem; }
  nav > .nav-links,
  nav .nav-book {
  display: none;
  }
  .hamburger { display: flex; }
  section { padding: 4rem 1.5rem; }
  .welcome-split { grid-template-columns: 1fr; gap: 3rem; }
  .welcome-badge { right: 1rem; }
  .gallery-masonry { columns: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .booking-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .availability-bar { padding: 1.5rem; }
}

@media (max-width: 600px) {
  .gallery-masonry { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .newsletter-form { flex-direction: column; }
}

