:root {
  --burgundy: #5b0f1a;
  --burgundy-deep: #30050b;
  --gold: #c69a3f;
  --gold-soft: #ead8ad;
  --ivory: #fbf7f1;
  --paper: #fffdf8;
  --sand: #efe3d1;
  --walnut: #3d241b;
  --ink: #231716;
  --muted: #76645b;
  --line: rgba(198, 154, 63, 0.34);
  --line-strong: rgba(198, 154, 63, 0.55);
  --panel: rgba(255, 253, 248, 0.82);
  --shadow-soft: 0 22px 60px rgba(61, 36, 27, 0.12);
  --shadow-card: 0 14px 36px rgba(61, 36, 27, 0.09);
}

* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(198,154,63,0.05) 0 1px, transparent 1px) 0 0 / 92px 92px,
    linear-gradient(180deg, #fffdf8 0%, var(--ivory) 42%, #f6eee3 100%);
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
main { background: linear-gradient(180deg, rgba(255,255,255,0.38), rgba(251,247,241,0)); }
.icon, .topbar-icon, .menu-icon, .meta-icon, .rating-icon, .inline-icon {
  width: 1em;
  height: 1em;
  stroke-width: 1.8;
  flex: 0 0 auto;
}
.container {
  width: min(1180px, calc(100% - 72px));
  margin-inline: auto;
}

.topbar {
  background: #fffaf4;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}
.topbar-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  overflow: hidden;
}
.topbar-inner span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}
.topbar-inner strong {
  margin-left: auto;
  color: var(--burgundy);
  font-family: Cinzel, Georgia, serif;
  font-size: 11px;
  text-transform: uppercase;
}
.topbar-icon { color: var(--gold); }

.navwrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 241, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(61, 36, 27, 0.06);
  backdrop-filter: blur(16px);
}
.nav-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
}
.brand {
  min-width: 250px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand-mark {
  width: 44px;
  height: 50px;
  display: grid;
  place-items: center;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-type {
  display: grid;
  gap: 3px;
  font-family: Cinzel, Georgia, serif;
  line-height: 1;
  text-transform: uppercase;
}
.brand-type span {
  color: var(--burgundy);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.brand-type small {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.42em;
}
.main-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 22px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.main-nav > a {
  padding: 28px 0 24px;
  color: var(--walnut);
  border-bottom: 2px solid transparent;
}
.main-nav > a:hover,
.main-nav > a.active {
  color: var(--burgundy);
  border-color: var(--gold);
}
.nav-actions {
  display: flex;
  gap: 10px;
  margin-left: 8px;
}
.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  color: var(--burgundy);
  font-size: 30px;
  padding: 8px;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 6px;
  padding: 0 19px;
  border: 1px solid var(--line-strong);
  font-weight: 800;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.btn-whatsapp,
.btn-burgundy {
  background: linear-gradient(145deg, #691320, #430812);
  color: #fff;
  border-color: rgba(91, 15, 26, 0.2);
}
.btn-gold {
  background: linear-gradient(145deg, #d3a84f, #af772a);
  color: #fff;
  border-color: rgba(175, 119, 42, 0.55);
}
.btn-outline {
  background: rgba(255, 253, 248, 0.74);
  color: var(--burgundy);
}
.btn-light {
  background: #fffdf8;
  color: var(--burgundy);
  border-color: rgba(255, 255, 255, 0.72);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}
h1,
h2,
h3 {
  margin: 0 0 16px;
  color: var(--burgundy);
  font-family: Cinzel, Georgia, serif;
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: 0.035em;
}
h1 { font-size: 64px; max-width: 760px; }
h2 { font-size: 38px; text-align: center; }
h3 { font-size: 21px; }
p { margin: 0 0 16px; }
.muted { color: var(--muted); }

.hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--burgundy-deep);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(48,5,11,0.86) 0%, rgba(48,5,11,0.63) 48%, rgba(48,5,11,0.24) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,253,248,0.08), rgba(48,5,11,0.22)),
    linear-gradient(90deg, rgba(198,154,63,0.18) 0 1px, transparent 1px) 0 0 / 108px 108px;
  pointer-events: none;
}
.hero.dark h1,
.hero.dark p,
.hero.dark .hero-content { color: #fffdf8; }
.hero.dark h1 { color: #fffdf8; }
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 88px 0;
}
.hero-content p {
  max-width: 560px;
  color: inherit;
  font-size: 17px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.hero-home {
  min-height: 650px;
  background:
    linear-gradient(90deg, rgba(255,253,248,0.96), rgba(251,247,241,0.78)),
    var(--ivory);
}
.hero-home::before,
.hero-home::after { display: none; }
.hero-split {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  align-items: center;
  gap: 62px;
  min-height: 650px;
  padding: 56px 0 62px;
}
.hero-split::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 90px;
  bottom: 90px;
  width: 1px;
  background: linear-gradient(var(--gold), var(--gold-soft), var(--gold));
}
.hero-home .hero-content {
  color: var(--ink);
  padding: 0 0 0 68px;
}
.hero-home h1 {
  color: var(--burgundy);
  max-width: 650px;
}
.hero-home .hero-content p {
  color: var(--walnut);
  font-size: 18px;
}
.hero-media {
  position: relative;
  min-height: 455px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 20px -20px -20px 20px;
  border: 1px solid rgba(198,154,63,0.42);
  border-radius: 8px;
  pointer-events: none;
  z-index: -1;
}
.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 455px;
  object-fit: cover;
  object-position: center;
}
.hero-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(270px, calc(100% - 36px));
  border: 1px solid rgba(255,255,255,0.58);
  border-radius: 6px;
  background: rgba(48, 5, 11, 0.84);
  color: #fff;
  padding: 16px 18px;
  backdrop-filter: blur(10px);
}
.hero-note span {
  display: block;
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.hero-note strong {
  display: block;
  margin-top: 4px;
  font-family: Cinzel, Georgia, serif;
  font-size: 20px;
  font-weight: 500;
}

.section { padding: 86px 0; }
.section.tight { padding: 56px 0; }
.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 34px;
}
.section-title::before,
.section-title::after {
  content: "";
  height: 1px;
  background: var(--line);
  flex: 1;
}
.section-title h2 {
  max-width: 820px;
  margin-bottom: 0;
}
.section-title-action {
  position: relative;
}
.section-title-action .btn {
  position: absolute;
  right: 0;
  min-height: 42px;
}

.grid { display: grid; gap: 24px; min-width: 0; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(198,154,63,0.32);
  border-radius: 8px;
  background: rgba(255,253,248,0.82);
  box-shadow: var(--shadow-card);
}
.card-body { padding: 28px; min-width: 0; }

.feature {
  padding: 30px 24px;
  text-align: center;
}
.feature .icon {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 42px;
  stroke-width: 1.45;
}
.feature h3 {
  font-size: 15px;
  text-transform: uppercase;
}
.feature p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}
.feature-strip {
  width: min(1180px, calc(100% - 72px));
  margin-top: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,253,248,0.56);
}
.section.tight.feature-strip { padding: 0; }
.feature-strip .card {
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.feature-strip .card:last-child { border-right: 0; }
.feature-strip .feature {
  min-height: 168px;
  display: grid;
  align-content: center;
}

.room-img,
.post-img,
.gallery-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid var(--line);
}
.home-room-card,
.room-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.home-room-card:hover,
.room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(61,36,27,0.14);
}
.home-room-card p {
  min-height: 50px;
  font-size: 14px;
}
.room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 12px;
}
.room-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.meta-icon,
.inline-icon { color: currentColor; }
.room-meta .meta-icon { color: var(--gold); }
.inline-icon {
  display: inline-block;
  margin-left: 3px;
  vertical-align: -0.15em;
}
.room-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}
.room-actions .btn {
  min-height: 42px;
  padding-inline: 12px;
  font-size: 11px;
}
.room-whatsapp {
  margin-top: 16px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.room-price {
  display: grid;
  gap: 2px;
  margin: 16px 0 0;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  color: var(--walnut);
}
.room-price span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.room-price strong {
  color: var(--forest);
  font-size: 22px;
  line-height: 1.1;
}
.room-price small {
  color: var(--muted);
  font-weight: 700;
}
.room-whatsapp a,
.detail-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--burgundy);
  font-size: 13px;
  font-weight: 900;
}

.icon-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,253,248,0.6);
}
.icon-row .feature {
  min-height: 146px;
  border-right: 1px solid var(--line);
}
.icon-row .feature:last-child { border-right: 0; }

.contact-band {
  position: relative;
  width: min(1180px, calc(100% - 72px));
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.52fr) auto;
  align-items: center;
  gap: 28px;
  padding: 38px 42px;
  overflow: hidden;
  border: 1px solid rgba(198,154,63,0.48);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(91,15,26,0.96), rgba(52,7,14,0.96)),
    url("../brand/pattern.png") center / 360px;
  color: #fffdf8;
  box-shadow: var(--shadow-soft);
}
.contact-band::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(198,154,63,0.2);
  border-radius: 6px;
  pointer-events: none;
}
.contact-band > * {
  position: relative;
  z-index: 1;
}
.contact-band h2 {
  color: #fffdf8;
  text-align: left;
  font-size: 34px;
}
.contact-band p {
  max-width: 560px;
  margin-bottom: 0;
  color: #f4e8dd;
}
.contact-band .eyebrow { color: var(--gold-soft); }
.band-contact {
  display: grid;
  gap: 12px;
  padding-inline: 22px;
  border-left: 1px solid rgba(198,154,63,0.38);
  border-right: 1px solid rgba(198,154,63,0.38);
}
.band-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fffdf8;
}
.band-contact .meta-icon {
  width: 34px;
  height: 34px;
  padding: 8px;
  border: 1px solid rgba(234,216,173,0.44);
  border-radius: 50%;
  color: var(--gold-soft);
}
.band-contact span {
  display: grid;
  gap: 2px;
  color: #f2e7da;
  font-size: 12px;
  text-transform: uppercase;
}
.band-contact strong {
  color: #fff;
  font-family: Cinzel, Georgia, serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: none;
}

.editorial-link {
  min-width: 0;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,253,248,0.92), rgba(239,227,209,0.55));
  padding: 30px;
  box-shadow: var(--shadow-card);
}
.editorial-link h3 { margin-bottom: 12px; }
.editorial-link p { color: var(--muted); }

.filterbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,253,248,0.62);
}
.filterbar button,
.filterbar a {
  min-width: 150px;
  min-height: 54px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--burgundy);
}
.filterbar button:last-child,
.filterbar a:last-child { border-right: 0; }
.filterbar .active {
  background: var(--burgundy);
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.gallery-grid .card:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-grid .card:first-child .gallery-img { height: 484px; }
.gallery-feature {
  display: grid;
  align-content: center;
  min-height: 310px;
  padding: 34px 0 34px 34px;
}
.media-panel {
  width: 100%;
  min-height: 310px;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
}
.about-image { min-height: 330px; }

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 44px;
  align-items: start;
}
.article {
  position: relative;
  padding: 42px 46px;
  background: rgba(255,253,248,0.86);
}
.article::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 46px;
  bottom: 46px;
  width: 1px;
  background: linear-gradient(var(--gold), rgba(198,154,63,0.06));
}
.article h2 {
  margin-top: 34px;
  text-align: left;
  font-size: 31px;
}
.article h2:first-child { margin-top: 0; }
.article ul {
  padding-left: 22px;
  color: var(--muted);
}
.sidebar {
  display: grid;
  gap: 22px;
  min-width: 0;
  position: sticky;
  top: 112px;
}
.sidebar-link {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--burgundy);
  font-weight: 800;
}
.notice {
  margin: 24px 0 4px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: rgba(239,227,209,0.62);
  padding: 18px 20px;
  color: var(--walnut);
  font-weight: 700;
}
details {
  border-top: 1px solid var(--line);
  padding: 15px 0;
}
summary {
  color: var(--burgundy);
  cursor: pointer;
  font-weight: 900;
}
.card details:first-child,
details:first-child { border-top: 0; }

.comparison-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.comparison-cards.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 28px 0;
}
.comparison-cards .card {
  background: rgba(255,253,248,0.62);
  box-shadow: none;
}

.map-box {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #efe4d3;
  box-shadow: var(--shadow-card);
}
.map-box img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}
.map-label {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 7px;
  max-width: 470px;
  border: 1px solid rgba(198,154,63,0.45);
  border-radius: 6px;
  background: rgba(255,253,248,0.9);
  padding: 18px 20px;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(8px);
}
.map-label span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.map-label strong {
  color: var(--burgundy);
  font-family: Cinzel, Georgia, serif;
  font-size: 21px;
  font-weight: 500;
}
.map-label a {
  color: var(--burgundy);
  font-size: 13px;
  font-weight: 900;
}
.contact-preview {
  grid-template-columns: 1.25fr 0.85fr 0.9fr;
}
.contact-panel {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,253,248,0.82);
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.location-photo { width: 100%; height: 100%; min-height: 260px; object-fit: cover; }

.footer {
  margin-top: 78px;
  padding-top: 48px;
  background:
    linear-gradient(90deg, rgba(198,154,63,0.10) 0 1px, transparent 1px) 0 0 / 92px 92px,
    linear-gradient(135deg, #4f0712, #260306);
  color: #f8efe4;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.72fr 0.9fr 1fr 1.05fr;
  gap: 34px;
}
.footer h3 {
  color: var(--gold-soft);
  font-size: 14px;
  text-transform: uppercase;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(198,154,63,0.35);
}
.footer a {
  color: #f8efe4;
  opacity: 0.94;
  margin: 7px 0;
}
.footer > .footer-grid a { display: block; }
.footer-brand {
  display: grid;
  gap: 4px;
  width: max-content;
  margin-bottom: 20px;
  color: var(--gold-soft);
  font-family: Cinzel, Georgia, serif;
  text-align: center;
  text-transform: uppercase;
}
.footer-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin: 0 auto 5px;
  filter: brightness(0) saturate(100%) invert(82%) sepia(41%) saturate(344%) hue-rotate(354deg) brightness(96%) contrast(91%);
}
.footer-brand strong {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.footer-brand small {
  color: #f0d991;
  font-size: 11px;
  letter-spacing: 0.44em;
}
.footer p,
.footer a {
  font-size: 13px;
  line-height: 1.75;
}
.footer-bottom {
  margin-top: 36px;
  border-top: 1px solid rgba(198,154,63,0.28);
  padding: 18px;
  color: var(--gold-soft);
  text-align: center;
  font-size: 13px;
}
.mobile-sticky { display: none; }

@media (max-width: 1180px) {
  .main-nav { gap: 14px; }
  .nav-actions { display: none; }
  .comparison-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1023px) {
  .container,
  .contact-band,
  .feature-strip {
    width: min(100% - 32px, 1180px);
  }
  .topbar-inner {
    min-height: auto;
    padding: 8px 0;
    flex-wrap: wrap;
    gap: 10px 16px;
    white-space: normal;
  }
  .topbar-inner strong { margin-left: 0; }
  .nav-inner { min-height: 74px; }
  .brand { min-width: 210px; }
  .brand-mark { width: 40px; height: 46px; }
  .brand-type span { font-size: 22px; }
  .brand-type small { font-size: 10px; letter-spacing: 0.34em; }
  .menu-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    padding: 12px 18px 18px;
    box-shadow: var(--shadow-soft);
  }
  .main-nav.open { display: flex; }
  .main-nav > a { padding: 14px 0; }
  .main-nav .nav-actions {
    display: grid;
    margin: 10px 0 0;
  }
  h1 { font-size: 46px; }
  h2 { font-size: 32px; }
  .hero { min-height: 470px; }
  .hero-content { padding: 70px 0; }
  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 34px;
    padding: 54px 0;
  }
  .hero-split::before { left: 0; top: 56px; bottom: auto; height: 150px; }
  .hero-home .hero-content { padding-left: 34px; }
  .hero-media,
  .hero-media img { min-height: 360px; }
  .grid-4,
  .grid-3,
  .grid-2,
  .footer-grid,
  .content-grid,
  .contact-preview,
  .comparison-cards,
  .comparison-cards.compact {
    grid-template-columns: 1fr;
  }
  .section-title-action {
    flex-direction: column;
  }
  .section-title-action .btn {
    position: static;
  }
  .feature-strip .card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .feature-strip .card:last-child { border-bottom: 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .card:first-child {
    grid-column: auto;
    grid-row: auto;
  }
  .gallery-grid .card:first-child .gallery-img,
  .gallery-img,
  .room-img,
  .post-img {
    height: 260px;
  }
  .gallery-feature { padding: 30px 0 0; }
  .icon-row {
    grid-template-columns: 1fr;
  }
  .icon-row .feature {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .icon-row .feature:last-child { border-bottom: 0; }
  .contact-band {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .band-contact {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(198,154,63,0.38);
    border-bottom: 1px solid rgba(198,154,63,0.38);
    padding: 20px 0;
  }
  .sidebar { position: static; }
  .mobile-sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    border-top: 1px solid var(--line);
    background: rgba(251,247,241,0.96);
    backdrop-filter: blur(12px);
  }
  body { padding-bottom: 78px; }
}

@media (max-width: 640px) {
  .container,
  .contact-band,
  .feature-strip {
    width: min(100% - 24px, 1180px);
  }
  .topbar { display: none; }
  .brand {
    min-width: 0;
    gap: 10px;
  }
  .brand-mark { width: 36px; height: 42px; }
  .brand-type span { font-size: 18px; }
  .brand-type small { font-size: 9px; letter-spacing: 0.28em; }
  .nav-inner { min-height: 68px; }
  .main-nav { top: 68px; left: 12px; right: 12px; }
  h1 { font-size: 34px; }
  h2 { font-size: 27px; }
  h3 { font-size: 19px; }
  .hero { min-height: 430px; }
  .hero-content { padding: 54px 0; }
  .hero-home { min-height: auto; }
  .hero-home .hero-content { padding-left: 24px; }
  .hero-split {
    gap: 26px;
    padding: 42px 0 44px;
  }
  .hero-split::before { height: 116px; top: 44px; }
  .hero-home .hero-content p,
  .hero-content p {
    font-size: 16px;
  }
  .hero-actions,
  .hero-actions .btn,
  .btn {
    width: 100%;
  }
  .hero-media,
  .hero-media img {
    min-height: 285px;
  }
  .hero-note {
    position: static;
    width: 100%;
    border-radius: 0;
  }
  .section { padding: 62px 0; }
  .section.tight { padding: 42px 0; }
  .section-title {
    gap: 12px;
    margin-bottom: 24px;
  }
  .section-title::before,
  .section-title::after { display: none; }
  .feature { padding: 26px 18px; }
  .card-body,
  .article,
  .contact-panel,
  .editorial-link {
    padding: 24px;
  }
  .article::before { display: none; }
  .article h2 { font-size: 25px; }
  .room-actions {
    grid-template-columns: 1fr;
  }
  .filterbar {
    display: grid;
    grid-template-columns: 1fr;
  }
  .filterbar button,
  .filterbar a {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .filterbar button:last-child,
  .filterbar a:last-child { border-bottom: 0; }
  .room-img,
  .post-img,
  .gallery-img,
  .gallery-grid .card:first-child .gallery-img {
    height: 230px;
  }
  .map-box,
  .map-box img {
    min-height: 330px;
  }
  .map-label {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 15px;
  }
  .contact-band {
    margin-top: 8px;
    padding: 28px 22px;
  }
  .contact-band h2 {
    font-size: 27px;
  }
  .footer {
    margin-top: 54px;
  }
}
