/* ═══════════════════════════════════════════════════════════════════
   HTML SITEMAP — sitemap.css
   Page-specific styles for /sitemap/ (visitor navigation aid)
   Required: main.css (loaded first)

   Layout: no hero banner. One column, blocks stacked one below the
   other — brand first, then its child property, rooms nested under
   Accommodations. Inner width is held narrow (820px) because a
   single-column link list reads badly stretched to the 1200px
   container the rest of the site uses.

   Sections:
     1. Page head (replaces the hero)
     2. Sitemap blocks (stacked, single column)
     3. Bottom CTA strip
     4. Responsive
═══════════════════════════════════════════════════════════════════ */


/* No hero on this page, so main must clear the fixed header itself. */
main { padding-top: var(--header-h); }


/* ═══ 0. NAV — pinned to its solid state ═══
   main.css keeps the nav transparent with white, shadowed link text until
   window.scrollY > 40, because on every other page it sits over a dark hero
   photo. This page has no hero, so at rest that white text lands on
   parchment and disappears. There is no scroll position that fixes it —
   the top of the page is exactly where it is worst — so pin the nav to the
   same treatment main.css gives .scrolled. Values are copied from the
   .scrolled rules so both states look identical; main.css's .scrolled
   selectors carry higher specificity and simply restate them on scroll. */
nav.main-nav {
  background: rgba(255,252,247,.97);
  backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  box-shadow: 0 4px 24px rgba(44,26,14,.10);
}
nav.main-nav::after { opacity: 1; }

nav.main-nav .nav-left a,
nav.main-nav .nav-right-links a {
  color: var(--m-on-body); text-shadow: none;
}
nav.main-nav .nav-left a:hover,
nav.main-nav .nav-right-links a:hover,
nav.main-nav .nav-left a.active,
nav.main-nav .nav-right-links a.active { color: var(--m-gold-ink); }

nav.main-nav .nav-left li + li::before,
nav.main-nav .nav-right-links li + li::before { color: rgba(155,94,42,.45); }
nav.main-nav .nav-has-drop > a i { color: rgba(155,94,42,.75); }

nav.main-nav .nav-hamburger { border-color: rgba(44,26,14,.28); }
nav.main-nav .nav-hamburger span { background: var(--m-on-strong); }

nav.main-nav .nav-brochure {
  color: var(--m-on-body); border-color: rgba(155,94,42,.45); text-shadow: none;
}
nav.main-nav .nav-brochure:hover {
  background: rgba(155,94,42,.10);
  border-color: var(--m-gold-ink); color: var(--m-gold-ink);
}


/* ═══ 1. PAGE HEAD ═══ */
.sitemap-head {
  padding: 64px 60px 0;
  background: var(--m-parchment);
}
.sitemap-head-inner {
  max-width: 820px; margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(123,74,30,.14);
}
.sitemap-eyebrow {
  display: block; margin-bottom: 12px;
  font-size: 9px; font-weight: 700; letter-spacing: 5px; text-transform: uppercase;
  color: var(--m-gold-ink);
}
.sitemap-title {
  margin-bottom: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 46px); font-weight: 300;
  line-height: 1.1; color: var(--m-espresso);
}
.sitemap-title em {
  font-style: italic; font-weight: 600; color: var(--m-gold-ink);
}
.sitemap-lede {
  max-width: 620px;
  font-size: 14px; line-height: 1.85; color: var(--m-stone);
}


/* ═══ 2. SITEMAP BLOCKS ═══ */
.sec-sitemap {
  padding: 48px 60px 96px;
  background: var(--m-parchment);
}
.sitemap-inner { max-width: 820px; margin: 0 auto; }

/* One block per brand, stacked. */
.sitemap-block {
  background: #fff;
  border: 1px solid rgba(123,74,30,.12);
  padding: 36px 40px;
  transition: box-shadow .3s ease, border-color .3s ease;
}
.sitemap-block + .sitemap-block { margin-top: 28px; }
.sitemap-block:hover {
  box-shadow: 0 14px 38px rgba(44,26,14,.10);
  border-color: rgba(184,119,47,.3);
}

.sitemap-block-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 22px; padding-bottom: 18px;
  border-bottom: 1px solid rgba(123,74,30,.12);
}
.sitemap-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--m-walnut), var(--m-caramel));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
}
.sitemap-block-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 25px; font-weight: 500;
  color: var(--m-espresso); line-height: 1.15;
}
.sitemap-block-title a {
  color: inherit; text-decoration: none;
  transition: color .2s;
}
.sitemap-block-title a:hover { color: var(--m-walnut); }
.sitemap-block-sub {
  display: block; margin-top: 5px;
  font-size: 9px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--m-gold-ink);
}

/* Link rows — one below the other. */
.sitemap-list { list-style: none; display: flex; flex-direction: column; }
.sitemap-list > li { border-bottom: 1px solid rgba(123,74,30,.06); }
.sitemap-list > li:last-child { border-bottom: none; }
.sitemap-list a {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 0;
  font-size: 14px; color: var(--m-charcoal);
  text-decoration: none;
  transition: color .2s, padding-left .2s;
}
.sitemap-list a::before {
  content: '›';
  flex-shrink: 0;
  color: var(--m-bronze);
  font-size: 14px; font-weight: 600;
  transition: color .2s, transform .2s;
}
.sitemap-list a:hover { color: var(--m-walnut); padding-left: 6px; }
.sitemap-list a:hover::before { color: var(--m-caramel); transform: translateX(2px); }

/* Child pages nested under a parent row (the rooms under Accommodations). */
.sitemap-sublist {
  list-style: none;
  margin: 2px 0 14px 18px;
  padding-left: 18px;
  border-left: 1px solid rgba(123,74,30,.14);
}
.sitemap-sublist a {
  padding: 9px 0;
  font-size: 13px; color: var(--m-stone);
}
.sitemap-sublist a::before {
  content: '–';
  color: rgba(155,94,42,.55);
  font-weight: 400;
}
.sitemap-sublist a:hover { color: var(--m-walnut); }


/* ═══ 3. BOTTOM CTA STRIP ═══ */
.sec-cta {
  padding: 72px 60px;
  background: var(--m-surface-deep);
  text-align: center;
}
.sec-cta-eyebrow {
  display: block; margin-bottom: 14px;
  font-size: 9px; font-weight: 700; letter-spacing: 5px; text-transform: uppercase;
  color: var(--m-gold-ink);
}
.sec-cta-title {
  margin-bottom: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 42px); font-weight: 300;
  color: var(--m-on-strong); line-height: 1.15;
}
.sec-cta-title em { font-style: italic; color: var(--m-gold-ink); }
.sec-cta-desc {
  margin: 0 auto 30px;
  max-width: 560px;
  font-size: 15px; line-height: 1.85;
  color: var(--m-on-body);
}
.sec-cta-actions {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 14px;
}


/* ═══ 4. RESPONSIVE ═══ */
@media (max-width: 900px) {
  .sitemap-head { padding: 48px 28px 0; }
  .sec-sitemap, .sec-cta { padding: 40px 28px 60px; }
  .sec-cta { padding: 60px 28px; }
}
@media (max-width: 640px) {
  .sitemap-block { padding: 28px 24px; }
  .sitemap-block-header { gap: 12px; }
  .sitemap-sublist { margin-left: 8px; padding-left: 14px; }
}
