:root {
  --ink: #151515;
  --ink-2: #242424;
  --muted: #6f6a63;
  --line: rgba(21, 21, 21, .12);
  --cream: #f6f0e8;
  --paper: #fffaf4;
  --white: #fff;
  --stone: #b7aa9b;
  --taupe: #8d8176;
  --clay: #775d4d;
  --sage: #7f887f;
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;
  --shadow: 0 28px 90px rgba(21,21,21,.18);
  --shadow-soft: 0 18px 50px rgba(21,21,21,.09);
  --radius: 28px;
  --container: 1180px;
  --nav-h: 78px;
  --hero-image: url('https://images.unsplash.com/photo-1590490360182-c33d57733427?auto=format&fit=crop&w=2200&q=82');
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }

.section { padding: 110px 0; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: rgba(255,255,255,.78);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.section-label::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}
.section-label.dark { color: var(--clay); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 780;
  letter-spacing: -.01em;
  border: 1px solid transparent;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: #1d1d1d; }
.btn-whatsapp,
.btn-primary.btn-whatsapp { color: #fff; background: var(--whatsapp-dark); }
.btn-whatsapp:hover,
.btn-primary.btn-whatsapp:hover { background: #0f7a70; }
.btn-outline { color: #fff; border-color: rgba(255,255,255,.46); background: rgba(255,255,255,.08); backdrop-filter: blur(12px); }
.btn-soft { color: #fff; border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.16); backdrop-filter: blur(12px); }
.btn-dark { color: #fff; background: var(--ink); }

/* Navbar */
.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--nav-h);
  border-bottom: 1px solid rgba(255,255,255,.14);
  color: #fff;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.navbar.scrolled,
.navbar.menu-active {
  color: var(--ink);
  background: rgba(255,250,244,.93);
  border-color: var(--line);
  box-shadow: 0 12px 36px rgba(21,21,21,.08);
  backdrop-filter: blur(18px);
}
.nav-inner { height: 100%; display: flex; align-items: center; gap: 28px; }
.nav-logo { display: inline-flex; align-items: center; gap: 12px; font-weight: 760; min-width: max-content; }

.nav-logo > span:not(.logo-mark) { font-size: 17px; letter-spacing: -.02em; }
.logo-mark {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 50%;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  border: 1px solid rgba(198, 153, 92, .72);
  background: radial-gradient(circle at 50% 38%, #2a1c14 0, #15100d 72%);
  color: #d7ad71;
  box-shadow: inset 0 0 0 2px rgba(255, 244, 217, .08), 0 8px 18px rgba(0,0,0,.12);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1;
  text-align: center;
  letter-spacing: .08em;
}
.logo-line { display: block; white-space: nowrap; font-size: inherit; letter-spacing: inherit; }
.logo-line-top { font-size: 7px; font-weight: 700; }
.logo-line-mid { font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.logo-line-bottom { font-size: 5.5px; letter-spacing: .16em; }
.footer-logo .logo-mark { width: 50px; height: 50px; flex-basis: 50px; }
.nav-links { margin-left: auto; display: flex; align-items: center; gap: 24px; }
.nav-links a { font-size: 14px; font-weight: 680; opacity: .88; }
.nav-links a:hover { opacity: 1; }
.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid currentColor;
}
.nav-cta.whatsapp-link {
  color: #fff;
  background: var(--whatsapp-dark);
  border-color: var(--whatsapp-dark);
  opacity: 1;
}
.nav-toggle { display: none; margin-left: auto; width: 44px; height: 44px; border: 0; border-radius: 12px; background: rgba(255,255,255,.14); cursor: pointer; }
.nav-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; border-radius: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: #171717;
  padding: calc(var(--nav-h) + 70px) 0 62px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,10,.82) 0%, rgba(10,10,10,.56) 42%, rgba(10,10,10,.16) 100%),
    linear-gradient(0deg, rgba(10,10,10,.62) 0%, rgba(10,10,10,.04) 54%);
}
.hero-shade {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(10,10,10,.78), transparent);
}
.hero-content { position: relative; z-index: 1; }
.hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(48px, 7.6vw, 98px);
  line-height: .92;
  letter-spacing: -.072em;
  font-weight: 680;
}
.hero-subtitle {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.42;
  letter-spacing: -.02em;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-notes {
  width: min(100%, 980px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 58px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  overflow: hidden;
}
.hero-notes div { padding: 20px 22px; border-right: 1px solid rgba(255,255,255,.15); }
.hero-notes div:last-child { border-right: 0; }
.hero-notes strong { display: block; font-size: 16px; letter-spacing: -.025em; }
.hero-notes span { display: block; margin-top: 4px; color: rgba(255,255,255,.68); font-size: 13px; }

/* Intro */
.intro-strip { background: var(--ink); color: #fff; }
.intro-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.intro-grid article { padding: 34px 34px 36px; border-right: 1px solid rgba(255,255,255,.12); }
.intro-grid article:first-child { padding-left: 0; }
.intro-grid article:last-child { border-right: 0; padding-right: 0; }
.intro-grid span { color: rgba(255,255,255,.42); font-weight: 760; font-size: 12px; letter-spacing: .16em; }
.intro-grid h2 { margin: 14px 0 8px; font-size: 20px; line-height: 1.2; letter-spacing: -.04em; }
.intro-grid p { margin: 0; color: rgba(255,255,255,.66); font-size: 14px; }

/* About */
.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: .92fr 1fr; gap: 76px; align-items: center; }
.about-media { position: relative; min-height: 620px; }
.about-photo {
  position: absolute;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 720;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-soft);
}
.about-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.24), rgba(0,0,0,.02)); }
.about-photo span { display: none; }
.about-photo-large {
  inset: 0 76px 0 0;
  border-radius: 34px;
  background-image: url('../img/home/theway-home-exterior.png');
}
.about-photo-small {
  right: 0;
  bottom: 54px;
  width: 46%;
  height: 260px;
  border: 10px solid var(--paper);
  border-radius: 30px;
  background-image: url('../img/home/theway-home-lobby.png');
}
.about-copy h2,
.section-head h2,
.location-copy h2,
.nearby-inner h2,
.cta-inner h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: -.06em;
  font-weight: 680;
}
.about-copy p { max-width: 640px; margin: 22px 0 0; color: var(--muted); font-size: 17px; }
.about-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 34px; }
.about-points div,
.about-point { padding: 20px; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.about-point { display: block; transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.about-point:hover { transform: translateY(-2px); border-color: rgba(18,140,126,.34); box-shadow: 0 14px 34px rgba(21,21,21,.08); }
.about-point-whatsapp { border-color: rgba(18,140,126,.24); }
.about-points strong { display: block; font-size: 21px; letter-spacing: -.04em; }
.about-points span { display: block; margin-top: 2px; color: var(--muted); font-size: 13px; }

/* Shared section heads */
.section-head { max-width: 770px; margin-bottom: 42px; }
.section-head p { margin: 16px 0 0; color: var(--muted); font-size: 17px; }

/* Rooms */
.rooms { background: #fff; }
.rooms-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.room-card { border-radius: 28px; background: var(--paper); border: 1px solid rgba(21,21,21,.08); overflow: hidden; box-shadow: 0 16px 46px rgba(21,21,21,.07); display: flex; flex-direction: column; }
.room-image { position: relative; display: grid; place-items: end start; min-height: 260px; padding: 18px; color: rgba(255,255,255,.86); font-size: 12px; font-weight: 760; background-size: cover; background-position: center; }
.room-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.45), rgba(0,0,0,.03)); }
.room-image span { position: relative; z-index: 1; padding: 8px 12px; border-radius: 999px; background: rgba(0,0,0,.32); }
.room-image-1 { background-image: url('../img/rooms/theway-room-01.jpg'); }
.room-image-2 { background-image: url('../img/rooms/theway-room-03.jpg'); }
.room-image-3 { background-image: url('../img/rooms/theway-room-10.jpg'); }
.room-image-4 { background-image: url('../img/rooms/theway-room-12.jpg'); }
.room-body { padding: 22px; display: flex; flex: 1; flex-direction: column; }
.room-kicker { color: var(--clay); font-size: 12px; font-weight: 780; letter-spacing: .12em; text-transform: uppercase; }
.room-title-row { margin: 10px 0 8px; }
.room-stars { display: block; margin-bottom: 7px; color: var(--clay); font-size: 11px; letter-spacing: .16em; line-height: 1; opacity: .86; }
.room-body h3 { margin: 0; font-size: 24px; line-height: 1; letter-spacing: -.05em; }
.room-body p { margin: 0 0 18px; color: var(--muted); font-size: 15px; }
.room-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.room-tags span { padding: 7px 10px; border-radius: 999px; background: #fff; color: var(--muted); font-size: 11px; font-weight: 700; }
.room-actions { display: flex; gap: 10px; margin-top: auto; }
.room-actions a { flex: 1; display: grid; place-items: center; min-height: 44px; border-radius: 999px; font-size: 13px; font-weight: 780; background: #fff; border: 1px solid var(--line); }
.room-actions a:last-child,
.room-actions a.whatsapp-action { color: #fff; background: var(--whatsapp-dark); border-color: var(--whatsapp-dark); }

/* Services */
.services { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { min-height: 190px; padding: 28px; border-radius: 26px; background: rgba(255,255,255,.68); border: 1px solid rgba(21,21,21,.08); }
.service-star { display: inline-block; margin-bottom: 18px; color: var(--clay); font-size: 13px; letter-spacing: .12em; opacity: .82; }
.service-card h3 { margin: 0; font-size: 22px; line-height: 1.12; letter-spacing: -.045em; }
.service-card p { margin: 12px 0 0; color: var(--muted); font-size: 15px; }

/* Location */
.location { background: #fff; }
.location-grid { display: grid; grid-template-columns: .9fr 1fr; gap: 58px; align-items: center; }
.location-copy p { max-width: 620px; margin: 20px 0 0; color: var(--muted); font-size: 17px; }
.location-list { display: grid; gap: 10px; margin: 30px 0; }
.location-list div { display: flex; justify-content: space-between; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.location-list strong { font-size: 16px; }
.location-list span { color: var(--muted); font-size: 14px; text-align: right; }
.map-card { position: relative; min-height: 520px; border-radius: 34px; overflow: hidden; background: #ddd; box-shadow: var(--shadow-soft); }
.map-placeholder {
  height: 100%; min-height: 520px; display: grid; place-items: center; color: #fff; font-size: 14px; font-weight: 760;
  background:
    linear-gradient(135deg, rgba(21,21,21,.68), rgba(21,21,21,.22)),
    repeating-linear-gradient(45deg, #c7c0b8 0 2px, #d8d1c8 2px 9px);
}
.map-placeholder span { padding: 12px 18px; border-radius: 999px; background: rgba(21,21,21,.48); backdrop-filter: blur(10px); }
.theway-map-embed { width: 100%; height: 100%; min-height: inherit; border: 0; display: block; filter: saturate(.92) contrast(.96); }
.map-overlay { position: absolute; left: 24px; right: 24px; bottom: 24px; padding: 22px; border-radius: 24px; background: rgba(255,250,244,.9); backdrop-filter: blur(14px); }
.map-overlay strong { display: block; font-size: 18px; letter-spacing: -.03em; }
.map-overlay p { margin: 6px 0 0; color: var(--muted); font-size: 14px; }

/* Nearby */
.nearby-links { background: var(--paper); }
.nearby-inner { display: grid; grid-template-columns: .95fr 1.05fr; gap: 48px; align-items: center; padding: 44px; border: 1px solid rgba(21,21,21,.08); border-radius: 34px; background: #fff; box-shadow: var(--shadow-soft); }
.nearby-inner h2 { font-size: clamp(30px, 3.8vw, 46px); }
.nearby-inner p { margin: 14px 0 0; color: var(--muted); }
.nearby-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.nearby-grid a { display: flex; align-items: center; justify-content: space-between; min-height: 56px; padding: 0 18px; border: 1px solid var(--line); border-radius: 18px; color: var(--ink); background: var(--paper); font-weight: 760; }
.nearby-grid a::after { content: "→"; color: var(--muted); }

/* FAQ */
.faq { background: #fff; }
.faq-wrap { max-width: 900px; }
.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid rgba(21,21,21,.1); border-radius: 18px; overflow: hidden; background: var(--paper); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 20px 22px; border: 0; background: transparent; color: var(--ink); cursor: pointer; font-weight: 760; text-align: left; }
.faq-question span { position: relative; width: 16px; height: 16px; flex: 0 0 auto; }
.faq-question span::before,
.faq-question span::after { content: ""; position: absolute; left: 0; top: 7px; width: 16px; height: 2px; background: var(--clay); transition: transform .2s ease; }
.faq-question span::after { transform: rotate(90deg); }
.faq-item.active .faq-question span::after { transform: rotate(0); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .24s ease; }
.faq-answer p { margin: 0; padding: 0 22px 20px; color: var(--muted); }

/* CTA */
.cta-band { background: var(--ink); color: #fff; padding: 92px 0; }
.cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 44px; align-items: center; }
.cta-inner h2 { max-width: 760px; }
.cta-inner p { max-width: 620px; margin: 16px 0 0; color: rgba(255,255,255,.68); }
.cta-actions { display: grid; gap: 12px; min-width: 260px; }

/* Footer */
.footer { padding: 70px 0 120px; background: #101010; color: rgba(255,255,255,.68); }
.footer-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr .75fr; gap: 42px; }
.footer-logo { display: inline-flex; align-items: center; gap: 12px; color: #fff; font-weight: 760; }

.footer-brand p { max-width: 340px; margin: 18px 0 0; }
.footer h3 { margin: 0 0 14px; color: #fff; font-size: 15px; }
.footer a:not(.footer-logo) { display: block; margin: 8px 0; color: rgba(255,255,255,.7); font-size: 14px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: 13px; }

.footer-address { margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); }
.footer-address strong { display: block; color: #fff; margin-bottom: 6px; font-size: 13px; }
.footer-address span { display: block; color: rgba(255,255,255,.68); font-size: 14px; line-height: 1.55; }
.footer-legal { margin-top: 24px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); }
.footer-legal h3 { margin-top: 0; }
.footer a[href^="tel:"] { color: rgba(255,255,255,.84); font-weight: 760; }


.quick-contact {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 65;
  display: grid;
  gap: 10px;
}
.quick-contact-link {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: var(--ink);
  background: rgba(255,250,244,.94);
  border: 1px solid rgba(21,21,21,.12);
  box-shadow: 0 14px 34px rgba(21,21,21,.18);
  backdrop-filter: blur(14px);
  transition: transform .18s ease, background .18s ease;
}
.quick-contact-link:hover { transform: translateY(-2px); }
.quick-contact-link svg { width: 23px; height: 23px; }
.quick-contact-link.whatsapp { color: #fff; background: var(--whatsapp); border-color: var(--whatsapp); }
.quick-contact-link.phone { color: #fff; background: var(--ink); border-color: var(--ink); }
.quick-contact-link.map { background: var(--paper); }
.mobile-cta { display: none; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    left: 14px; right: 14px; top: calc(var(--nav-h) + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border-radius: 24px;
    color: var(--ink);
    background: rgba(255,250,244,.97);
    box-shadow: var(--shadow);
  }
  .nav-links.active { display: flex; }
  .nav-links a { padding: 15px 14px; border-radius: 14px; }
  .nav-cta { justify-content: center; margin-top: 6px; background: var(--ink); color: #fff; border-color: var(--ink); }
  .hero { min-height: 92svh; }
  .hero-notes { grid-template-columns: 1fr; }
  .hero-notes div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .hero-notes div:last-child { border-bottom: 0; }
  .intro-grid, .services-grid, .about-grid, .location-grid, .nearby-inner, .cta-inner, .footer-grid { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-grid article { padding: 28px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .intro-grid article:last-child { border-bottom: 0; }
  .about-media { min-height: 520px; }
  .nearby-grid { grid-template-columns: 1fr; }
  .cta-actions { min-width: 0; }
}

@media (max-width: 640px) {
  :root { --nav-h: 70px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 76px 0; }
  .hero { padding-bottom: 30px; }
  .hero h1 { font-size: 46px; line-height: 1.02; letter-spacing: 0; }
  .hero-subtitle { font-size: 17px; }
  .hero-ctas { display: grid; }
  .hero-ctas .btn { width: 100%; }
  .hero-notes { margin-top: 38px; border-radius: 20px; }
  .intro-strip { display: none; }
  .about-media { min-height: 430px; }
  .about-photo-large { inset: 0 38px 0 0; border-radius: 26px; }
  .about-photo-small { width: 54%; height: 180px; bottom: 34px; border-width: 7px; border-radius: 22px; }
  .about-copy { margin-top: -8px; }
  .about-copy p { margin: 10px 0; }
  .about-points { grid-template-columns: 1fr; gap: 8px; margin-top: 18px; }
  .about-points div,
  .about-point { padding: 12px 14px; border-radius: 18px; }
  .about-points strong { font-size: 18px; line-height: 1.1; }
  .about-points span { margin-top: 1px; font-size: 12px; line-height: 1.35; }
  .about-point-whatsapp { background: rgba(18,140,126,.08); }
  .about.section { padding-bottom: 44px; }
  .rooms.section { padding-top: 44px; }
  .rooms-grid { grid-template-columns: 1fr; }
  .room-image { min-height: 250px; }
  .nearby-inner { padding: 24px; border-radius: 26px; }
  .map-card, .map-placeholder { min-height: 420px; }
  .footer-bottom { display: grid; }
  .quick-contact { right: 12px; bottom: 14px; gap: 8px; }
  .quick-contact-link { width: 48px; height: 48px; border-radius: 16px; }
  .quick-contact-link svg { width: 21px; height: 21px; }
}

/* Final internal link network for SEO/GEO and user navigation */
.footer-link-network {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.16);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.footer-link-network h3 {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-link-network a {
  display: inline-block;
  margin: 0 12px 9px 0;
  font-size: 14px;
  color: inherit;
  opacity: .82;
  text-decoration: none;
}
.footer-link-network a:hover { opacity: 1; text-decoration: underline; }
@media (max-width: 760px) {
  .footer-link-network { grid-template-columns: 1fr; gap: 18px; }
  .footer-link-network a { margin-right: 10px; }
}

/* Visual QA responsive guardrails */
.hero-content,
.hero-notes,
.intro-grid,
.about-grid,
.section-head,
.rooms-grid,
.location-grid,
.nearby-inner,
.cta-inner,
.footer-grid {
  min-width: 0;
}

.hero h1,
.hero-subtitle,
.hero-notes span,
.intro-grid p,
.section-head p,
.location-copy p,
.nearby-inner p,
.cta-inner p,
.footer-brand p,
.footer-address span {
  max-width: 100%;
  overflow-wrap: break-word;
}

@media (max-width: 640px) {
  .section-label {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}
