/* =================================================================
   AURELIA RESORT & SPA — Premium Hotel/Resort Template
   Plain CSS3. No frameworks. No external images.
   -----------------------------------------------------------------
   REBRAND: To rebrand, change the values in :root below.
   - Swap --color-primary for your brand's deep tone (navy/burgundy).
   - Swap --color-gold for your metallic accent.
   - Update --font-display / --font-body if using different fonts
     (remember to also update the <link> in index.html).
   ================================================================= */

:root {
  /* ---- Colors ---- */
  --color-primary: #0f3d2e;      /* deep emerald */
  --color-primary-dark: #0a2c20;
  --color-gold: #c8a96a;         /* gold accent */
  --color-gold-dark: #b08f4e;
  --color-cream: #faf7f0;        /* page background */
  --color-cream-2: #f3ede0;      /* alt section bg */
  --color-ink: #20231f;          /* primary text */
  --color-ink-soft: #555a52;     /* muted text */
  --color-line: #e5ddcd;         /* hairline borders */
  --color-white: #ffffff;

  /* ---- Fonts ---- */
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* ---- Shape & Motion ---- */
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 10px 35px rgba(15, 61, 46, 0.10);
  --shadow-card: 0 16px 50px rgba(15, 61, 46, 0.14);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1180px;
}

/* =================================================================
   BASE / RESET
   ================================================================= */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-cream);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--color-primary);
}

p { margin: 0 0 1em; }

a { color: var(--color-gold-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-primary); }

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

ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }
.section-cream { background: var(--color-cream-2); }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--color-gold-dark);
  margin-bottom: 0.8em;
}
.eyebrow-light { color: var(--color-gold); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
.section-lede { color: var(--color-ink-soft); font-size: 1.08rem; }

/* =================================================================
   BUTTONS
   ================================================================= */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  padding: 14px 30px;
  border-radius: 50px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  line-height: 1;
}
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

.btn-gold {
  background: var(--color-gold);
  color: var(--color-primary-dark);
  box-shadow: 0 6px 20px rgba(200, 169, 106, 0.4);
}
.btn-gold:hover {
  background: var(--color-gold-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(200, 169, 106, 0.55);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* =================================================================
   HEADER / NAV
   ================================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 22px 0;
}
/* .scrolled toggled by JS once user scrolls past hero top */
.site-header.scrolled {
  background: rgba(250, 247, 240, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(15, 61, 46, 0.08);
  padding: 14px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: var(--color-gold);
  color: var(--color-primary-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  border-radius: 10px;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1;
  display: flex;
  flex-direction: column;
}
.logo-text small {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: 4px;
}
/* When header gets cream background, logo text turns dark */
.site-header.scrolled .logo-text { color: var(--color-primary); }
.logo-light .logo-text { color: var(--color-white); }

/* Nav links */
.main-nav ul { display: flex; gap: 32px; }
.main-nav a {
  color: var(--color-white);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 4px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--color-gold);
  transition: width var(--transition);
}
.main-nav a:hover { color: var(--color-gold); }
.main-nav a:hover::after { width: 100%; }
.site-header.scrolled .main-nav a { color: var(--color-primary); }
.site-header.scrolled .main-nav a:hover { color: var(--color-gold-dark); }

.header-cta { white-space: nowrap; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 26px; height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition);
}
.site-header.scrolled .hamburger span { background: var(--color-primary); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =================================================================
   HERO
   ================================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  /* Layered gradient stands in for a rich resort photo */
  background:
    radial-gradient(120% 90% at 80% 10%, rgba(200,169,106,0.28), transparent 55%),
    linear-gradient(160deg, #0a2c20 0%, #0f3d2e 45%, #16513c 100%);
  overflow: hidden;
}
.hero::before {
  /* subtle layered "horizon" shimmer */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 60% at 20% 90%, rgba(255,255,255,0.06), transparent 60%),
    radial-gradient(50% 40% at 90% 80%, rgba(200,169,106,0.18), transparent 70%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,44,32,0.55), transparent 50%);
}
.hero-content { position: relative; z-index: 2; padding-top: 120px; padding-bottom: 60px; width: 100%; }
.hero .eyebrow { color: var(--color-gold); }
.hero-title {
  color: var(--color-white);
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  max-width: 14ch;
  margin-bottom: 0.4em;
}
.hero-title span { color: var(--color-gold); font-style: italic; }
.hero-sub {
  color: rgba(255,255,255,0.88);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 52ch;
  margin-bottom: 2.4em;
}

/* Booking bar */
.booking-bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 14px;
  background: rgba(250, 247, 240, 0.97);
  padding: 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  max-width: 860px;
  align-items: end;
}
.booking-field { display: flex; flex-direction: column; text-align: left; }
.booking-field label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-ink-soft);
  margin-bottom: 6px;
}
.booking-field input,
.booking-field select {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 11px 12px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-ink);
}
.booking-field input:focus,
.booking-field select:focus { outline: 2px solid var(--color-gold); border-color: var(--color-gold); }
.booking-submit { height: 46px; white-space: nowrap; }
.booking-message {
  color: var(--color-gold);
  font-weight: 600;
  margin-top: 14px;
  min-height: 1.4em;
}

.scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--color-gold);
  font-size: 1.6rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* =================================================================
   ABOUT
   ================================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-text h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); }
.about-text p { color: var(--color-ink-soft); }
.about-text .btn { margin-top: 12px; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.stat {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition);
}
.stat:hover { transform: translateY(-5px); }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-primary);
}
.stat-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gold-dark);
  font-weight: 600;
}

/* =================================================================
   ROOMS
   ================================================================= */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
.room-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.room-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); }

.room-image {
  height: 210px;
  position: relative;
}
/* Gradient "photos" — distinct per room */
.room-image-1 { background: linear-gradient(135deg, #2e6b4f, #143d2c); }
.room-image-2 { background: linear-gradient(135deg, #3a7ea1, #16415a); }
.room-image-3 { background: linear-gradient(135deg, #caa15f, #7c5a26); }
.room-image-4 { background: linear-gradient(135deg, #4a3b6b, #1f1733); }

.room-body { padding: 26px; position: relative; flex: 1; display: flex; flex-direction: column; }
.room-body h3 { font-size: 1.4rem; margin-bottom: 0.4em; }
.room-desc { color: var(--color-ink-soft); font-size: 0.95rem; flex: 1; }

.badge {
  position: absolute;
  top: -16px; right: 20px;
  background: var(--color-gold);
  color: var(--color-primary-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 50px;
}

.amenity-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  font-size: 0.82rem;
  color: var(--color-ink-soft);
  margin: 14px 0 18px;
}

.room-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--color-line);
  padding-top: 18px;
}
.room-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
}
.room-price small {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-ink-soft);
}

/* =================================================================
   AMENITIES
   ================================================================= */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.amenity {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 36px 30px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.amenity:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.amenity-icon {
  font-size: 2.6rem;
  display: inline-block;
  margin-bottom: 14px;
  filter: drop-shadow(0 4px 8px rgba(15,61,46,0.15));
}
.amenity h3 { font-size: 1.3rem; }
.amenity p { color: var(--color-ink-soft); font-size: 0.95rem; margin: 0; }

/* =================================================================
   GALLERY
   ================================================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}
.gallery-tile {
  margin: 0;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  transition: transform var(--transition);
}
.gallery-tile:hover { transform: scale(1.02); }
.gallery-tile figcaption {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.15rem;
  padding: 18px 20px;
  width: 100%;
  background: linear-gradient(to top, rgba(10,44,32,0.7), transparent);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
}
.gallery-tile:hover figcaption { opacity: 1; transform: translateY(0); }

/* Distinct gradient tiles; some span larger */
.tile-1 { background: linear-gradient(135deg, #caa15f, #7c5a26); grid-column: span 2; }
.tile-2 { background: linear-gradient(135deg, #2e6b4f, #0f3d2e); }
.tile-3 { background: linear-gradient(135deg, #3a7ea1, #16415a); }
.tile-4 { background: linear-gradient(135deg, #4a3b6b, #1f1733); }
.tile-5 { background: linear-gradient(135deg, #16513c, #0a2c20); grid-column: span 2; }
.tile-6 { background: linear-gradient(135deg, #d98e6a, #8a4a2e); }

/* =================================================================
   DINING
   ================================================================= */
.dining-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.dining-image {
  min-height: 440px;
  border-radius: var(--radius);
  background:
    radial-gradient(80% 60% at 30% 20%, rgba(200,169,106,0.4), transparent 60%),
    linear-gradient(150deg, #1f1733, #4a3b6b 50%, #0f3d2e);
  box-shadow: var(--shadow-card);
}
.dining-text h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); }
.dining-text p { color: var(--color-ink-soft); }
.dining-list { margin: 22px 0 28px; }
.dining-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--color-line);
  color: var(--color-ink);
}

/* =================================================================
   TESTIMONIALS (dark section)
   ================================================================= */
.section-dark {
  background:
    radial-gradient(100% 80% at 50% 0%, rgba(200,169,106,0.12), transparent 60%),
    var(--color-primary);
}
.section-dark h2 { color: var(--color-white); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.testimonial {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,169,106,0.3);
  border-radius: var(--radius);
  padding: 34px 30px;
  margin: 0;
  color: rgba(255,255,255,0.9);
}
.testimonial p { font-size: 1.02rem; font-style: italic; }
.testimonial .stars { color: var(--color-gold); font-style: normal; letter-spacing: 3px; margin-bottom: 14px; }
.testimonial footer {
  font-style: normal;
  font-weight: 600;
  color: var(--color-gold);
  margin-top: 10px;
  font-size: 0.9rem;
}

/* =================================================================
   CONTACT
   ================================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); }
.contact-list { margin-top: 24px; }
.contact-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--color-line);
}
.contact-list strong {
  display: block;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-gold-dark);
  margin-bottom: 3px;
}

.contact-form {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-line);
}
.contact-form h3 { font-size: 1.5rem; margin-bottom: 1em; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; margin-bottom: 18px; }
.field label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-ink-soft);
  margin-bottom: 7px;
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: var(--color-cream);
  color: var(--color-ink);
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus { outline: 2px solid var(--color-gold); border-color: var(--color-gold); }
.form-message { color: var(--color-gold-dark); font-weight: 600; margin: 14px 0 0; min-height: 1.2em; }

/* =================================================================
   FOOTER
   ================================================================= */
.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,0.75);
  padding-top: 70px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-brand p { margin-top: 18px; font-size: 0.92rem; max-width: 32ch; }
.footer-col h4 {
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
}
.footer-col li { margin-bottom: 11px; font-size: 0.92rem; }
.footer-col a { color: rgba(255,255,255,0.75); }
.footer-col a:hover { color: var(--color-gold); }

.social { display: flex; gap: 14px; margin-top: 18px; }
.social a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid rgba(200,169,106,0.4);
  border-radius: 50%;
  font-size: 1.1rem;
  transition: all var(--transition);
}
.social a:hover { background: var(--color-gold); transform: translateY(-3px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: var(--color-gold); }

/* =================================================================
   SCROLL-REVEAL ANIMATIONS
   When JS adds .reveal-ready to <body>, .reveal elements start hidden
   and animate in on .is-visible. Without JS, everything stays visible.
   ================================================================= */
.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal-ready .reveal { opacity: 1 !important; transform: none !important; }
  .scroll-cue { animation: none; }
}

/* =================================================================
   RESPONSIVE BREAKPOINTS
   ================================================================= */
@media (max-width: 980px) {
  .about-grid,
  .dining-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .dining-image { min-height: 300px; order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .tile-1, .tile-5 { grid-column: span 2; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }

  /* Mobile nav */
  .hamburger { display: flex; }
  .main-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--color-primary);
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    transform: translateX(100%);
    transition: transform var(--transition);
    padding: 100px 36px;
    z-index: 999;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 22px; }
  .main-nav a,
  .site-header.scrolled .main-nav a { color: var(--color-white); font-size: 1.1rem; }
  .header-cta { display: none; }

  /* Booking bar stacks */
  .booking-bar { grid-template-columns: 1fr; }
  .booking-submit { height: auto; padding: 14px; }

  .field-row { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 540px) {
  .about-stats { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .tile-1, .tile-5 { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .contact-form { padding: 28px 22px; }
}

/* =================================================================
   ===============  MULTI-PAGE ADDITIONS (appended)  ===============
   Shared inner-page components: nav active state, page banner,
   breadcrumb, room specs, feature rows, sample menu, timeline,
   team grid, CTA band, gallery categories. Matches the gold/serif
   luxury theme and reuses existing variables.
   ================================================================= */

/* ---- Active nav link ---- */
.main-nav a.active { color: var(--color-gold); }
.main-nav a.active::after { width: 100%; }
.site-header.scrolled .main-nav a.active { color: var(--color-gold-dark); }

/* ---- Inner-page header: solid from the start (no dark hero behind) ---- */
.site-header.is-inner {
  background: rgba(250, 247, 240, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(15, 61, 46, 0.08);
}
.site-header.is-inner .logo-text { color: var(--color-primary); }
.site-header.is-inner .main-nav a { color: var(--color-primary); }
.site-header.is-inner .main-nav a:hover,
.site-header.is-inner .main-nav a.active { color: var(--color-gold-dark); }
.site-header.is-inner .hamburger span { background: var(--color-primary); }

/* =================================================================
   PAGE BANNER + BREADCRUMB
   ================================================================= */
.page-banner {
  position: relative;
  padding: 190px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 80% 10%, rgba(200,169,106,0.30), transparent 55%),
    linear-gradient(160deg, #0a2c20 0%, #0f3d2e 45%, #16513c 100%);
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 60% at 20% 90%, rgba(255,255,255,0.06), transparent 60%),
    radial-gradient(50% 40% at 90% 80%, rgba(200,169,106,0.18), transparent 70%);
}
.page-banner-inner { position: relative; z-index: 2; text-align: center; }
.page-banner h1 {
  color: var(--color-white);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  margin-bottom: 0.5em;
}
/* Subtle gradient variation per page */
.banner-amenities { background:
  radial-gradient(120% 90% at 20% 10%, rgba(200,169,106,0.30), transparent 55%),
  linear-gradient(160deg, #0a2c20 0%, #16513c 60%, #1f1733 120%); }
.banner-gallery { background:
  radial-gradient(120% 90% at 80% 0%, rgba(58,126,161,0.35), transparent 55%),
  linear-gradient(160deg, #0a2c20 0%, #16415a 80%); }
.banner-about { background:
  radial-gradient(120% 90% at 50% 0%, rgba(200,169,106,0.32), transparent 55%),
  linear-gradient(160deg, #143d2c 0%, #0f3d2e 50%, #7c5a26 160%); }
.banner-contact { background:
  radial-gradient(120% 90% at 30% 10%, rgba(217,142,106,0.30), transparent 55%),
  linear-gradient(160deg, #0a2c20 0%, #0f3d2e 60%, #8a4a2e 150%); }

.breadcrumb {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.8);
}
.breadcrumb a { color: var(--color-gold); }
.breadcrumb a:hover { color: var(--color-white); }
.breadcrumb span[aria-hidden] { margin: 0 8px; color: rgba(255,255,255,0.45); }
.breadcrumb span[aria-current] { color: rgba(255,255,255,0.92); }

/* =================================================================
   ROOM SPEC ROW (rooms page)
   ================================================================= */
.room-spec {
  display: flex;
  gap: 10px;
  margin: 14px 0 4px;
  border-top: 1px solid var(--color-line);
  padding-top: 14px;
}
.room-spec li {
  flex: 1;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.3;
}
.room-spec li span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gold-dark);
  margin-bottom: 2px;
}

/* =================================================================
   FEATURE ROWS (spa / pool / fitness highlights)
   ================================================================= */
.feature-rows { display: flex; flex-direction: column; gap: 50px; }
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
}
.feature-media {
  min-height: 320px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.feature-body h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
.feature-body p { color: var(--color-ink-soft); }
.feature-reverse .feature-media { order: 2; }

/* =================================================================
   SAMPLE MENU (amenities/dining)
   ================================================================= */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}
.menu-heading {
  font-size: 1.3rem;
  padding-bottom: 12px;
  margin-bottom: 18px;
  border-bottom: 2px solid var(--color-gold);
  color: var(--color-primary);
}
.menu-item { margin-bottom: 20px; }
.menu-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.menu-name { font-family: var(--font-display); font-size: 1.08rem; font-weight: 600; color: var(--color-ink); }
.menu-price { font-family: var(--font-display); font-weight: 700; color: var(--color-gold-dark); white-space: nowrap; }
.menu-desc { color: var(--color-ink-soft); font-size: 0.9rem; margin: 4px 0 0; }
.menu-note {
  text-align: center;
  color: var(--color-ink-soft);
  font-size: 0.92rem;
  margin-top: 40px;
  font-style: italic;
}

/* =================================================================
   TIMELINE (about)
   ================================================================= */
.timeline {
  max-width: 760px;
  margin: 0 auto;
  border-left: 2px solid var(--color-gold);
  padding-left: 34px;
}
.timeline-item { position: relative; padding-bottom: 36px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -42px; top: 4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 0 4px var(--color-cream-2);
}
.timeline-year {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-gold-dark);
  display: block;
  margin-bottom: 4px;
}
.timeline-body h3 { font-size: 1.25rem; margin-bottom: 0.2em; }
.timeline-body p { color: var(--color-ink-soft); margin: 0; }

/* =================================================================
   TEAM GRID (about)
   ================================================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}
.team-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  padding-bottom: 24px;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.team-photo { height: 200px; }
.team-card h3 { font-size: 1.25rem; margin: 22px 0 0.1em; }
.team-role {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--color-gold-dark);
  margin: 0 0 10px;
}
.team-bio { color: var(--color-ink-soft); font-size: 0.9rem; margin: 0; padding: 0 22px; }

/* =================================================================
   GALLERY CATEGORY HEADINGS (gallery)
   ================================================================= */
.gallery-cat {
  font-size: 1.6rem;
  margin: 50px 0 22px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-line);
}
.gallery-cat:first-of-type { margin-top: 0; }
.gallery-grid + .gallery-cat { margin-top: 50px; }

/* =================================================================
   CTA BAND (all inner pages)
   ================================================================= */
.cta-band { text-align: center; }
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-band h2 { color: var(--color-white); font-size: clamp(1.9rem, 4vw, 2.8rem); }
.cta-band p { color: rgba(255,255,255,0.85); font-size: 1.08rem; margin-bottom: 1.8em; }

/* =================================================================
   RESPONSIVE — multi-page additions
   ================================================================= */
@media (max-width: 980px) {
  .feature-row { grid-template-columns: 1fr; gap: 28px; }
  .feature-media { min-height: 240px; order: -1; }
  .feature-reverse .feature-media { order: -1; }
}
@media (max-width: 768px) {
  .page-banner { padding: 150px 0 60px; }
}

/* =================================================================
   PHOTO HELPER (appended)
   Applied to large gradient placeholder areas that now carry a real
   photo via inline background-image. Keeps cover/center framing while
   the element's own gradient remains as a graceful fallback tint.
   ================================================================= */
.has-photo {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
