/* ================================================================
   SÍTIO RODAMONTE — estilos.css
   Folha de estilos compartilhada para as páginas internas
   ================================================================ */

/* ----------------------------------------------------------------
   CUSTOM PROPERTIES
   ---------------------------------------------------------------- */
:root {
  --g-dark:    #1a4731;
  --g-mid:     #2d7a4f;
  --g-light:   #40916c;
  --g-accent:  #52b788;
  --g-pale:    #d8f3dc;
  --white:     #fff;
  --gray-50:   #f7faf8;
  --gray-100:  #eef3f0;
  --gray-200:  #dce8e1;
  --gray-600:  #4a5568;
  --gray-800:  #1a202c;
  --sh-sm:     0 2px 8px rgba(0,0,0,.08);
  --sh-md:     0 4px 16px rgba(0,0,0,.12);
  --sh-lg:     0 8px 32px rgba(0,0,0,.18);
  --r:         12px;
  --r-lg:      20px;
}

/* ----------------------------------------------------------------
   RESET & BASE
   ---------------------------------------------------------------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ----------------------------------------------------------------
   NAV
   ---------------------------------------------------------------- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 68px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(26,71,49,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .3s;
}
nav.scrolled { background: rgba(26,71,49,.98); }
.nav-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
}
.nav-logo img { height: 42px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.88);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }
.nav-links a.active {
  border-bottom: 2px solid var(--g-accent);
  padding-bottom: 2px;
}
.nav-wa {
  background: #25d366;
  color: #fff !important;
  padding: .45rem 1.2rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: .4rem;
  font-weight: 700 !important;
  transition: transform .2s, box-shadow .2s !important;
}
.nav-wa:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37,211,102,.45) !important;
  border-bottom: none !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: .3s;
}
.mob-nav {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(26,71,49,.98);
  padding: 1.5rem 6%;
  z-index: 99;
  flex-direction: column;
  gap: .25rem;
  backdrop-filter: blur(12px);
}
.mob-nav.open { display: flex; }
.mob-nav a {
  color: rgba(255,255,255,.88);
  text-decoration: none;
  font-size: 1rem;
  padding: .65rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.mob-nav a:last-child { border-bottom: none; }
.assinatura{font-size: 12px;color: rgba(255, 255, 255, .6); margin-top: 4px; font-weight: 400; letter-spacing: .12em; font-style: italic;}


/* ----------------------------------------------------------------
   PAGE HERO (inner pages — shorter than home)
   ---------------------------------------------------------------- */
.page-hero {
  position: relative;
  height: 52vh;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 6s ease;
}
.page-hero-bg.loaded { transform: scale(1); }
.page-hero-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.15) 0%,
    rgba(0,0,0,.38) 50%,
    rgba(26,71,49,.82) 100%
  );
}
.page-hero-cnt {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 6%;
  color: #fff;
}
.page-hero-tag {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: .8;
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.page-hero-tag a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: color .2s;
}
.page-hero-tag a:hover { color: #fff; }
.page-hero-tag span { opacity: .5; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.12;
  text-shadow: 0 2px 16px rgba(0,0,0,.3);
}
.page-hero h1 em {
  color: var(--g-accent);
  font-style: normal;
}
.page-hero-sub {
  font-size: .98rem;
  opacity: .85;
  margin-top: .6rem;
  font-weight: 300;
  max-width: 560px;
}

/* ----------------------------------------------------------------
   SHARED LAYOUT
   ---------------------------------------------------------------- */
.wrap { max-width: 1200px; margin: 0 auto; }
section { padding: 5rem 6%; }
.s-label {
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--g-accent);
  font-weight: 600;
  margin-bottom: .65rem;
}
.s-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.65rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.s-title em { color: var(--g-mid); font-style: normal; }
.s-text {
  font-size: .97rem;
  color: var(--gray-600);
  line-height: 1.85;
}
.s-text + .s-text { margin-top: 1rem; }
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ----------------------------------------------------------------
   INTRO SECTION (text + image side-by-side)
   ---------------------------------------------------------------- */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.intro-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 4/3;
}
.intro-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.intro-img:hover img { transform: scale(1.04); }

/* ----------------------------------------------------------------
   STATS BAR
   ---------------------------------------------------------------- */
.stats-bar {
  background: var(--g-dark);
  padding: 2.5rem 6%;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  color: #fff;
}
.stat-n {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--g-accent);
}
.stat-u {
  font-size: 1.1rem;
  font-weight: 300;
}
.stat-l {
  font-size: .75rem;
  color: rgba(255,255,255,.65);
  margin-top: .3rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ----------------------------------------------------------------
   FEATURE LIST
   ---------------------------------------------------------------- */
.feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1.5rem;
}
.feat-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .94rem;
  color: var(--gray-600);
  line-height: 1.6;
}
.feat-list li::before {
  content: '';
  flex-shrink: 0;
  width: 22px; height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--g-pale) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2340916c'%3E%3Cpath d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* ----------------------------------------------------------------
   INFO CARDS (icon + text blocks)
   ---------------------------------------------------------------- */
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.info-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  padding: 1.75rem 1.5rem;
  transition: transform .25s, box-shadow .25s;
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}
.info-card-icon {
  font-size: 2rem;
  margin-bottom: .85rem;
}
.info-card h3 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .45rem;
  color: var(--g-dark);
}
.info-card p {
  font-size: .86rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ----------------------------------------------------------------
   ALERT / NOTE BOX
   ---------------------------------------------------------------- */
.note-box {
  background: #fff8e1;
  border-left: 4px solid #f59e0b;
  border-radius: 0 var(--r) var(--r) 0;
  padding: 1.25rem 1.5rem;
  font-size: .9rem;
  color: #78350f;
  line-height: 1.7;
  margin-top: 1.5rem;
}
.note-box strong { font-weight: 700; }

/* ----------------------------------------------------------------
   SUB-PAGE NAV CARDS (infraestrutura hub)
   ---------------------------------------------------------------- */
.subpages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.subpage-card {
  position: relative;
  height: 260px;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.subpage-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.subpage-card:hover img { transform: scale(1.07); }
.subpage-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,71,49,.88) 0%,
    rgba(0,0,0,.12) 55%,
    transparent 100%
  );
  transition: opacity .3s;
}
.subpage-card:hover::after {
  background: linear-gradient(
    to top,
    rgba(26,71,49,.95) 0%,
    rgba(0,0,0,.25) 55%,
    rgba(0,0,0,.1) 100%
  );
}
.subpage-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 1;
  padding: 1.4rem 1.5rem;
  color: #fff;
  transform: translateY(0);
  transition: transform .3s;
}
.subpage-card-label {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--g-accent);
  font-weight: 600;
  margin-bottom: .25rem;
}
.subpage-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
}
.subpage-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .78rem;
  color: rgba(255,255,255,.7);
  margin-top: .5rem;
  transition: color .2s, gap .2s;
}
.subpage-card:hover .subpage-card-arrow {
  color: var(--g-accent);
  gap: .55rem;
}

/* ----------------------------------------------------------------
   PHOTO ALBUM GRID
   ---------------------------------------------------------------- */
.album-section { background: var(--gray-50); }
.album-section.white { background: var(--white); }
.album-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 2rem;
}
.album-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--r);
  cursor: zoom-in;
  background: var(--gray-200);
}
.album-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  display: block;
}
.album-item:hover img { transform: scale(1.06); }
.album-item-ov {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
}
.album-item:hover .album-item-ov { background: rgba(0,0,0,.28); }
.album-item-ov svg {
  width: 36px; height: 36px;
  stroke: #fff;
  stroke-width: 1.8;
  fill: none;
  opacity: 0;
  transform: scale(.8);
  transition: opacity .3s, transform .3s;
}
.album-item:hover .album-item-ov svg {
  opacity: 1;
  transform: scale(1);
}

/* Wide item spans 2 columns */
.album-item.wide { grid-column: span 2; aspect-ratio: 8/3; }
/* Tall item spans 2 rows */
.album-item.tall { grid-row: span 2; aspect-ratio: auto; }
.album-item.tall img { aspect-ratio: unset; }

/* ----------------------------------------------------------------
   LIGHTBOX
   ---------------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,.93);
  display: none;
  align-items: center;
  justify-content: center;
  animation: lbFade .2s ease;
}
.lightbox.active { display: flex; }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }

.lb-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 92vw;
  max-height: 90vh;
}
#lbImg {
  max-width: 88vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  display: block;
  transition: opacity .2s;
}
.lb-btn {
  position: absolute;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.2);
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
  z-index: 10;
}
.lb-btn:hover { background: rgba(255,255,255,.3); transform: scale(1.08); }
.lb-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2.5; }
.lb-close { top: 1.25rem; right: 1.25rem; }
.lb-prev { left: 1.25rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.25rem; top: 50%; transform: translateY(-50%); }
.lb-prev:hover { transform: translateY(-50%) scale(1.08); }
.lb-next:hover { transform: translateY(-50%) scale(1.08); }
.lb-caption {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  font-size: .8rem;
  letter-spacing: .06em;
  white-space: nowrap;
  pointer-events: none;
}
.lb-counter { color: rgba(255,255,255,.5); font-size: .78rem; text-align: center; margin-top: .5rem; }

/* ----------------------------------------------------------------
   VIDEO EMBED
   ---------------------------------------------------------------- */
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  background: #000;
}
.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ----------------------------------------------------------------
   FLOOR PLAN
   ---------------------------------------------------------------- */
.floor-plan-wrap {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 2rem;
  text-align: center;
  margin-top: 1.5rem;
}
.floor-plan-wrap img {
  max-width: 100%;
  border-radius: var(--r);
  margin: 0 auto;
}
.floor-plan-caption {
  font-size: .82rem;
  color: var(--gray-600);
  margin-top: 1rem;
  font-style: italic;
}

/* ----------------------------------------------------------------
   ROOMS GRID
   ---------------------------------------------------------------- */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.room-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  padding: 1.4rem 1.5rem;
}
.room-card h4 {
  font-size: .93rem;
  font-weight: 700;
  color: var(--g-dark);
  margin-bottom: .4rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.room-card p {
  font-size: .86rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ----------------------------------------------------------------
   LOCATION BLOCK
   ---------------------------------------------------------------- */
.location-block {
  background: var(--g-dark);
  border-radius: var(--r-lg);
  padding: 2.5rem 3rem;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
.location-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: .6rem;
}
.location-block p {
  font-size: .92rem;
  color: rgba(255,255,255,.78);
  line-height: 1.75;
}
.location-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50px;
  padding: .5rem 1.1rem;
  font-size: .82rem;
  color: var(--g-accent);
  font-weight: 600;
  white-space: nowrap;
}

/* ----------------------------------------------------------------
   EXTERNAL LINKS
   ---------------------------------------------------------------- */
.ext-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--g-mid);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 600;
  border-bottom: 1px solid var(--g-pale);
  padding-bottom: 1px;
  transition: color .2s, border-color .2s;
}
.ext-link:hover {
  color: var(--g-dark);
  border-color: var(--g-accent);
}
.ext-link svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none; stroke-width: 2;
}

/* ----------------------------------------------------------------
   VEJA TAMBÉM (also-see links)
   ---------------------------------------------------------------- */
.see-also {
  background: var(--g-dark);
  padding: 4.5rem 6%;
}
.see-also .s-title { color: #fff; }
.see-also .s-label { color: var(--g-accent); }
.see-also-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.see-card {
  position: relative;
  height: 200px;
  border-radius: var(--r);
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: transform .3s;
}
.see-card:hover { transform: translateY(-5px); }
.see-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.see-card:hover img { transform: scale(1.08); }
.see-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,71,49,.9) 0%, transparent 60%);
}
.see-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 1;
  padding: 1rem 1.1rem;
  color: #fff;
}
.see-card-body span {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.see-card-body em {
  font-style: normal;
  font-size: .68rem;
  color: var(--g-accent);
  display: block;
  margin-top: .15rem;
}

/* ----------------------------------------------------------------
   CTA SECTION
   ---------------------------------------------------------------- */
.cta-section {
  background: var(--gray-50);
  padding: 5rem 6%;
  text-align: center;
}
.cta-inner {
  max-width: 620px;
  margin: 0 auto;
}
.cta-section .s-title em { color: var(--g-mid); }
.cta-section .s-text { margin-bottom: 2.5rem; }
.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #25d366;
  color: #fff;
  padding: .9rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
}
.btn-wa svg {
  width: 18px; height: 18px; fill: currentColor;
}
.btn-reserve {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--g-mid);
  color: #fff;
  padding: .9rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.btn-reserve:hover {
  background: var(--g-dark);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--g-mid);
  padding: .9rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  border: 2px solid var(--g-mid);
  transition: background .2s, color .2s;
}
.btn-outline:hover {
  background: var(--g-mid);
  color: #fff;
}

/* ----------------------------------------------------------------
   DARK CTA (green background)
   ---------------------------------------------------------------- */
.cta-dark {
  background: var(--g-mid);
  padding: 5rem 6%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .1;
  background-size: cover;
  background-position: center;
}
.cta-dark .cta-inner { position: relative; }
.cta-dark .s-title { color: #fff; }
.cta-dark .s-text { color: rgba(255,255,255,.78); margin-bottom: 2.5rem; }
.cta-dark .s-label { color: var(--g-pale); }

/* ----------------------------------------------------------------
   FOOTER
   ---------------------------------------------------------------- */
footer {
  background: #0d2419;
  color: rgba(255,255,255,.65);
  padding: 3.5rem 6% 2rem;
}
.foot-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 1.5rem;
}
.foot-brand img {
  height: 38px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}
.foot-brand p {
  font-size: .86rem;
  line-height: 1.75;
  max-width: 270px;
}
.foot-col h4 {
  color: #fff;
  font-weight: 600;
  font-size: .88rem;
  margin-bottom: .9rem;
}
.foot-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.foot-col ul a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: .85rem;
  transition: color .2s;
}
.foot-col ul a:hover { color: var(--g-accent); }
.foot-bot {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: .78rem;
  flex-wrap: wrap;
  gap: .75rem;
}

/* ----------------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------------- */
@media (max-width: 1024px) {
  .intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .info-cards { grid-template-columns: repeat(2, 1fr); }
  .subpages-grid { grid-template-columns: repeat(2, 1fr); }
  .see-also-grid { grid-template-columns: repeat(3, 1fr); }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .location-block { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links { display: none; }
  section { padding: 3.5rem 5%; }
  .stats-bar { padding: 2rem 5%; }
  .page-hero { height: 44vh; min-height: 300px; }
  .see-also-grid { grid-template-columns: repeat(2, 1fr); }
  .see-also { padding: 3.5rem 5%; }
  .album-grid { grid-template-columns: repeat(2, 1fr); }
  .album-item.wide { grid-column: span 1; aspect-ratio: 4/3; }
  .subpages-grid { grid-template-columns: repeat(2, 1fr); }
  .info-cards { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cta-section, .cta-dark { padding: 3.5rem 5%; }
  .lb-prev { left: .75rem; }
  .lb-next { right: .75rem; }
}
@media (max-width: 480px) {
  .album-grid { grid-template-columns: 1fr; }
  .album-item.wide { grid-column: span 1; aspect-ratio: 4/3; }
  .subpages-grid { grid-template-columns: 1fr; }
  .see-also-grid { grid-template-columns: repeat(2, 1fr); }
  .info-cards { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: 1fr; }
  .stats-inner { flex-direction: column; align-items: center; }
  .page-hero h1 { font-size: 1.8rem; }
}
