:root {
  --white: #ffffff;
  --ink: #1d1d1f;
  --muted: #8a8a8f;
  --soft: #f8f8f9;
  --soft-2: #f5f5f7;
  --line: #f0f0f2;
  --line-strong: #e6e6ea;
  --laos-red: #ce1126;
  --laos-blue: #002868;
  --laos-blue-hover: #083875;
  --laos-blue-soft: #f3f6fb;
  --neon-purple: #7a2cff;
  --neon-pink: #ff3d8d;
  --neon-cyan: #35c7ff;
  --night: #09090d;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.08);
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-3xl: 32px;
  --max: 480px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  touch-action: manipulation;
}

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  background: var(--white);
  color: var(--ink);
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  min-height: 72px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(248, 248, 249, 0.95);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(24px);
}

.logo {
  border: 0;
  background: transparent;
  color: #000;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  touch-action: manipulation;
}

.brand-dot {
  color: #9ca3af;
}

.brand-com {
  color: #9ca3af;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  color: #5f636b;
  font-size: 13px;
  font-weight: 600;
}

.install-btn {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid #111;
  border-radius: 999px;
  background: #111;
  color: #fff;
  padding: 0 15px;
  font-size: 12px;
  font-weight: 750;
  transition: background 0.2s ease, color 0.2s ease;
}

.install-btn.is-visible {
  display: inline-flex;
}

.install-btn:hover {
  background: #000;
}

.nav-btn {
  border: 0;
  background: transparent;
  color: inherit;
  min-height: 40px;
  padding: 10px 2px;
  touch-action: manipulation;
  transition: color 0.2s ease;
}

.nav-btn:hover,
.nav-btn.active {
  color: #000;
  font-weight: 800;
}

.view-root {
  flex: 1;
}

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

.hero {
  max-width: 896px;
  margin: 0 auto;
  padding: 68px 24px 44px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 13px;
  border-radius: 999px;
  background: #fafafa;
  color: #9ca3af;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 24px 0 16px;
  color: #000;
  font-size: clamp(40px, 8vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.06em;
  font-weight: 850;
}

.hero p {
  max-width: 448px;
  margin: 0;
  color: #9ca3af;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.home-hero {
  max-width: var(--max);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 64px;
  padding-bottom: 58px;
}

.hero-copy {
  min-width: 0;
}

.laos-eyebrow {
  gap: 9px;
  background: var(--laos-blue-soft);
  color: var(--laos-blue);
  letter-spacing: 0.08em;
}

.flag-mini {
  position: relative;
  display: inline-grid;
  grid-template-rows: 3fr 4fr 3fr;
  width: 24px;
  height: 16px;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
  flex: 0 0 auto;
}

.flag-mini span:nth-child(1),
.flag-mini span:nth-child(3) {
  background: var(--laos-red);
}

.flag-mini span:nth-child(2) {
  position: relative;
  background: var(--laos-blue);
}

.flag-mini span:nth-child(2)::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}

.hero-showcase {
  position: relative;
  min-width: 0;
}

.flag-ribbon {
  display: grid;
  grid-template-columns: 0.78fr 1.2fr 0.78fr;
  gap: 4px;
  width: 168px;
  height: 8px;
  margin: 0 0 16px auto;
}

.flag-ribbon span {
  border-radius: 999px;
}

.flag-ribbon span:nth-child(1),
.flag-ribbon span:nth-child(3) {
  background: rgba(206, 17, 38, 0.82);
}

.flag-ribbon span:nth-child(2) {
  background: var(--laos-blue);
}

.hero-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-3xl);
  background: var(--soft);
  padding: 0;
  box-shadow: 0 18px 54px rgba(0, 40, 104, 0.13);
}

.hero-photo img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.hero-showcase:hover .hero-photo img {
  transform: scale(1.04);
}

.hero-floating-card {
  position: absolute;
  left: -26px;
  bottom: 26px;
  width: min(280px, 76%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 44px rgba(0, 40, 104, 0.12);
  backdrop-filter: blur(20px);
  padding: 16px 17px;
}

.hero-floating-card span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--laos-red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-floating-card strong {
  display: block;
  color: #000;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 850;
  letter-spacing: -0.035em;
}

.hero-floating-card p {
  margin: 7px 0 0;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 400;
}

.install-guide {
  max-width: var(--max);
  margin: -12px auto 54px;
  padding: 0 24px;
}

.install-guide-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(0, 40, 104, 0.08);
  border-radius: 24px;
  background: linear-gradient(90deg, rgba(243, 246, 251, 0.92), #fff 46%, #fff);
  box-shadow: var(--shadow);
  padding: 18px;
}

.install-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 40, 104, 0.08);
}

.install-copy small {
  display: block;
  margin-bottom: 5px;
  color: var(--laos-blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.install-copy h3 {
  margin: 0 0 5px;
  color: #000;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 850;
  letter-spacing: -0.035em;
}

.install-copy p {
  max-width: 560px;
  margin: 0;
  color: #8a8a8f;
  font-size: 13px;
  line-height: 1.65;
  font-weight: 300;
}

.install-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.text-dismiss {
  border: 0;
  background: transparent;
  color: #9ca3af;
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
}

.text-dismiss:hover {
  color: #000;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  padding-bottom: 18px;
  margin-bottom: 40px;
  border-bottom: 1px solid #f3f4f6;
}

.home-featured .section-head {
  justify-content: flex-start;
}

.section-head h2,
.section-head h3 {
  margin: 0;
  color: #000;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.section-link {
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  color: #9ca3af;
  font-size: 12px;
  font-weight: 750;
  transition: color 0.2s ease;
}

.section-link:hover {
  color: #000;
}

.kicker-muted,
.property-type {
  display: block;
  margin-bottom: 8px;
  color: #8a8a8f;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rental-eyebrow {
  background: var(--laos-blue-soft);
  color: var(--laos-blue);
}

.rental-dashboard {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  gap: 34px;
  align-items: center;
  padding: 48px 24px 34px;
}

.rental-dashboard-simple {
  display: block;
  padding-bottom: 26px;
}

.rental-dashboard-simple .rental-dashboard-copy {
  max-width: 620px;
}

.rental-dashboard-copy h1 {
  margin: 22px 0 14px;
  color: #000;
  font-size: clamp(38px, 7vw, 58px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.rental-dashboard-copy p {
  max-width: 430px;
  margin: 0;
  color: #7b7f87;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 350;
}

.rental-card-grid {
  gap: 22px;
}

.rental-card {
  border: 1px solid #f0f0f2;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.rental-card-link {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
}

.rental-card .property-image {
  aspect-ratio: 16 / 11;
  border-radius: 0;
  box-shadow: none;
}

.rental-card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
}

.rental-card-name {
  min-width: 0;
  color: #000;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: -0.035em;
}

.rental-card-minimal-price {
  flex: 0 0 auto;
  color: #000;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.rental-card-minimal-price small {
  color: #8a8a8f;
  font-size: 12px;
  font-weight: 650;
}

.rental-card-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.rental-card-price span {
  color: #8a8a8f;
  font-size: 12px;
  font-weight: 800;
}

.rental-card-price strong {
  color: #000;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.rental-card-price small {
  color: #8a8a8f;
  font-size: 13px;
  font-weight: 650;
}

.rental-card-title h3 {
  margin: 0 0 7px;
  color: #000;
  font-size: 21px;
  line-height: 1.18;
  font-weight: 850;
  letter-spacing: -0.035em;
}

.rental-card-title p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #8a8a8f;
  font-size: 13px;
  line-height: 1.5;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.cost-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.cost-strip span {
  min-height: 32px;
  flex: 1 1 142px;
  border-radius: 12px;
  background: #f7f7f8;
  color: #3f444c;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
}

.rental-card .card-actions {
  padding-top: 14px;
}

.amenity-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.amenity-row span {
  border: 1px solid #eeeeF1;
  border-radius: 999px;
  background: #fff;
  color: #6b7280;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 700;
}

.rental-detail-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px 24px 0;
}

.rental-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 22px;
  align-items: stretch;
}

.detail-photo-stack {
  display: grid;
  grid-template-rows: minmax(340px, 1fr) 118px;
  gap: 12px;
  min-height: 558px;
}

.detail-photo-main,
.detail-photo-thumbs img {
  overflow: hidden;
  border-radius: 24px;
  background: #f5f5f7;
}

.detail-photo-main img,
.detail-photo-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-photo-thumbs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.rental-cost-panel {
  display: flex;
  flex-direction: column;
  border: 1px solid #ececf0;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.07);
  padding: 24px;
}

.rental-cost-panel h1 {
  margin: 8px 0 10px;
  color: #000;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.rental-cost-panel p {
  margin: 0 0 22px;
  color: #7b7f87;
  font-size: 14px;
  line-height: 1.65;
}

.cost-fact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: auto;
}

.cost-fact {
  min-height: 86px;
  border: 1px solid #f0f0f2;
  border-radius: 18px;
  background: #fafafa;
  padding: 14px;
}

.cost-fact span,
.info-card span {
  display: block;
  margin-bottom: 8px;
  color: #8a8a8f;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cost-fact strong {
  display: block;
  color: #111;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 850;
}

.cost-fact.is-strong {
  grid-column: 1 / -1;
  background: #111;
}

.cost-fact.is-strong span {
  color: rgba(255, 255, 255, 0.62);
}

.cost-fact.is-strong strong {
  color: #fff;
  font-size: 34px;
  letter-spacing: -0.06em;
}

.contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0 10px;
}

.detail-section {
  padding-top: 48px;
}

.detail-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.info-card,
.location-card {
  border: 1px solid #f0f0f2;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.035);
  padding: 20px;
}

.info-card strong {
  display: block;
  color: #111;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 850;
}

.info-card p,
.location-card p {
  margin: 10px 0 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.65;
}

.specs-flat {
  margin-bottom: 0;
}

.premium-facility-grid .facility {
  min-height: 52px;
  background: #fff;
}

.rental-detail-gallery {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #f5f5f7;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.055);
}

.rental-gallery-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.rental-gallery-track::-webkit-scrollbar {
  display: none;
}

.rental-gallery-slide {
  flex: 0 0 100%;
  height: min(58vh, 560px);
  min-height: 360px;
  margin: 0;
  scroll-snap-align: start;
}

.rental-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-cover-actions {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.rental-detail-summary {
  padding-top: 28px;
}

.rental-detail-title {
  padding-bottom: 22px;
}

.rental-detail-title h1 {
  margin: 10px 0 10px;
  color: #000;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.rental-detail-title p {
  max-width: 620px;
  margin: 0;
  color: #7b7f87;
  font-size: 14px;
  line-height: 1.65;
}

.detail-cost-row,
.detail-contact-row {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.detail-cost-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-contact-row {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
}

.detail-mini-card,
.detail-contact-card,
.detail-amenity-row {
  border: 1px solid #f0f0f2;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.035);
  padding: 18px;
}

.detail-mini-card span,
.detail-contact-card span {
  display: block;
  margin-bottom: 8px;
  color: #8a8a8f;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-mini-card strong,
.detail-contact-card strong {
  display: block;
  color: #111;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 850;
}

.detail-mini-card.is-strong {
  background: #111;
}

.detail-mini-card.is-strong span {
  color: rgba(255, 255, 255, 0.64);
}

.detail-mini-card.is-strong strong {
  color: #fff;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.detail-contact-card p {
  margin: 8px 0 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.55;
}

.detail-contact-card a:not(.btn) {
  display: inline-flex;
  margin-top: 12px;
  color: #111;
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.compact-actions {
  margin: 14px 0 0;
}

.detail-amenity-row {
  margin-top: 12px;
}

.detail-amenity-row h3 {
  margin: 0 0 14px;
  color: #000;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: -0.035em;
}

.detail-amenity-row .facility-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}

.property-card {
  min-width: 0;
}

.property-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-2xl);
  background: var(--soft);
  box-shadow: var(--shadow);
  padding: 0;
}

.property-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease-in-out;
}

.property-card:hover .property-image img {
  transform: scale(1.05);
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  font-size: 12px;
  font-weight: 750;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.image-pill-left {
  position: absolute;
  top: 16px;
  left: 16px;
}

.image-pill-right {
  position: absolute;
  top: 16px;
  right: 16px;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 8px;
  background: rgba(0, 40, 104, 0.76);
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
}

.property-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-top: 20px;
}

.property-info button {
  text-align: left;
}

.text-button {
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
}

.property-info h3 {
  margin: 0 0 6px;
  color: #000;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.property-info p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #9ca3af;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 300;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.price {
  flex: 0 0 auto;
  text-align: right;
}

.price strong {
  display: block;
  color: #000;
  font-size: 22px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: -0.05em;
}

.price span {
  color: #9ca3af;
  font-size: 12px;
  font-weight: 400;
}

.price small {
  display: block;
  margin-top: 5px;
  color: #9ca3af;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
}

.card-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #f8f8f9;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 42px;
  border: 0;
  border-radius: 12px;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 750;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-dark {
  background: #111;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.11), 0 0 0 1px rgba(255, 61, 141, 0.08);
}

.btn-dark:hover {
  background: #000;
}

.btn-soft {
  background: #fafafa;
  color: #000;
}

.btn-soft:hover {
  background: #111;
  color: #fff;
}

.btn-outline {
  border: 1px solid #f0f0f2;
  background: #fff;
  color: #6b7280;
}

.btn-outline:hover {
  border-color: #000;
  color: #000;
}

.btn-saved {
  border-color: #fee2e2;
  background: #fef2f2;
  color: #ef4444;
}

.list-title {
  max-width: var(--max);
  margin: 0 auto;
  padding: 52px 24px 0;
}

.list-title h1 {
  margin: 0 0 10px;
  color: #000;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 850;
  letter-spacing: -0.055em;
}

.list-title p {
  margin: 0;
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
}

.filter-row {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  margin: 40px auto 42px;
  padding: 0 24px 12px;
  max-width: var(--max);
  border-bottom: 1px solid #fafafa;
  scrollbar-width: none;
}

.filter-row::-webkit-scrollbar {
  display: none;
}

.filter-chip {
  flex: 0 0 auto;
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  padding: 0 17px;
  background: #fafafa;
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.filter-chip.active {
  background: #111;
  color: #fff;
  font-weight: 750;
}

.detail-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px 24px 0;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  border: 0;
  background: transparent;
  color: #000;
  font-size: 14px;
  font-weight: 750;
  padding: 0;
  margin-bottom: 24px;
  transition: color 0.2s ease;
}

.back-btn:hover {
  color: #6b7280;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  height: min(55vh, 560px);
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow);
  margin-bottom: 42px;
}

.gallery-main {
  grid-column: span 3;
}

.gallery-side {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(290px, 1fr);
  gap: 64px;
  align-items: start;
}

.detail-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid #f3f4f6;
}

.detail-title h1 {
  margin: 14px 0 9px;
  color: #000;
  font-size: clamp(32px, 5vw, 44px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.detail-title p {
  margin: 0;
  color: #9ca3af;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 300;
}

.specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 26px 0;
  padding: 18px 16px;
  border: 1px solid #fafafa;
  border-radius: var(--radius-2xl);
  background: rgba(249, 250, 251, 0.7);
  text-align: center;
}

.spec {
  border-right: 1px solid rgba(229, 231, 235, 0.68);
}

.spec:last-child {
  border-right: 0;
}

.spec span {
  display: block;
  margin-bottom: 6px;
  color: #9ca3af;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spec strong {
  display: block;
  color: #000;
  font-size: 15px;
  font-weight: 800;
}

.content-block {
  padding: 28px 0;
  border-bottom: 1px solid #f3f4f6;
}

.content-block h3 {
  margin: 0 0 18px;
  color: #000;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: -0.035em;
}

.content-block p {
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.85;
  font-weight: 300;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.facility {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  border: 1px solid rgba(243, 244, 246, 0.7);
  border-radius: 14px;
  background: rgba(249, 250, 251, 0.55);
  padding: 10px 12px;
  color: #374151;
  font-size: 13px;
}

.facility::before {
  content: "✓";
  color: var(--laos-blue);
  font-size: 11px;
  font-weight: 900;
}

.contact-card {
  display: grid;
  gap: 12px;
  border: 1px solid #f3f4f6;
  border-radius: var(--radius-2xl);
  background: rgba(249, 250, 251, 0.55);
  padding: 20px;
  font-size: 14px;
}

.contact-card p {
  margin: 0;
  color: #4b5563;
}

.contact-card strong {
  color: #000;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.price-card {
  position: sticky;
  top: 104px;
  border: 1px solid #f3f4f6;
  border-radius: var(--radius-3xl);
  background: #fff;
  box-shadow: var(--shadow-lg);
  padding: 24px;
}

.price-highlight {
  border: 1px solid #f3f4f6;
  border-radius: 18px;
  background: #fafafa;
  padding: 18px;
  margin-bottom: 22px;
}

.price-highlight span {
  display: block;
  margin-bottom: 7px;
  color: #9ca3af;
  font-size: 12px;
}

.price-highlight strong {
  color: #000;
  font-size: 29px;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.price-highlight small {
  color: #9ca3af;
  font-size: 12px;
  font-weight: 400;
}

.mini-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  color: #6b7280;
  font-size: 13px;
}

.form-wrap,
.profile-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 52px 24px 0;
}

.form-title,
.profile-title {
  margin-bottom: 32px;
}

.form-title h1,
.profile-title h1 {
  margin: 0 0 10px;
  color: #000;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 850;
  letter-spacing: -0.05em;
}

.form-title p,
.profile-title p {
  margin: 0;
  color: #9ca3af;
  font-size: 13px;
  line-height: 1.7;
  font-weight: 300;
}

.form-card,
.profile-card,
.consult-card {
  border: 1px solid #f3f4f6;
  border-radius: var(--radius-2xl);
  background: #fff;
  box-shadow: var(--shadow);
}

.form-card {
  display: grid;
  gap: 20px;
  padding: 24px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: #9ca3af;
  font-size: 12px;
  font-weight: 750;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #f3f4f6;
  border-radius: 14px;
  background: #fafafa;
  color: #000;
  padding: 14px 16px;
  outline: none;
  font-size: 14px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.field textarea {
  min-height: 106px;
  resize: none;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--laos-blue);
  background: #fff;
}

.profile-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fafafa;
  padding: 24px;
  margin-bottom: 40px;
}

.avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--laos-blue);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.profile-card h2 {
  margin: 0 0 4px;
  color: #000;
  font-size: 17px;
}

.profile-card p {
  margin: 0;
  color: #9ca3af;
  font-size: 13px;
  font-weight: 300;
}

.consult-list {
  display: grid;
  gap: 16px;
}

.consult-card {
  padding: 20px;
}

.consult-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.black-tag {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  border-radius: 8px;
  background: var(--laos-blue);
  color: #fff;
  padding: 0 10px;
  font-size: 10px;
  font-weight: 800;
}

.consult-card h4 {
  margin: 0 0 6px;
  color: #000;
  font-size: 17px;
}

.consult-card p {
  margin: 0;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.7;
}

.note {
  margin-top: 12px !important;
  border-radius: 14px;
  background: #fafafa;
  padding: 12px;
  color: #9ca3af !important;
}

.empty {
  grid-column: 1 / -1;
  padding: 80px 0;
  text-align: center;
  color: #9ca3af;
  font-size: 14px;
}

.empty button {
  border: 0;
  background: transparent;
  color: #000;
  font-weight: 750;
  text-decoration: underline;
}

.site-footer {
  margin-top: 80px;
  border-top: 1px solid #f3f4f6;
  background: #fafafa;
  padding: 48px 24px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}

.footer-brand {
  max-width: 390px;
}

.footer-brand h4 {
  margin: 0 0 12px;
  color: #000;
  font-size: 17px;
  font-weight: 850;
  letter-spacing: -0.035em;
}

.footer-brand h4 span {
  color: #9ca3af;
}

.footer-brand .brand-dot {
  color: #9ca3af;
}

.footer-brand .brand-com {
  color: #9ca3af;
}

.footer-brand p {
  margin: 0;
  color: #9ca3af;
  font-size: 12px;
  line-height: 1.8;
}

.footer-brand small {
  display: block;
  margin-top: 18px;
  color: #9ca3af;
  font-size: 11px;
}

.footer-links {
  display: flex;
  gap: 76px;
}

.footer-links h5 {
  margin: 0 0 16px;
  color: #9ca3af;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
  color: #4b5563;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #000;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 96px;
  z-index: 60;
  transform: translateX(-50%);
  pointer-events: none;
  opacity: 0;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 12px 20px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
  font-size: 12px;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.toast.show {
  opacity: 1;
}

.install-modal,
.share-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(29, 29, 31, 0.38);
  backdrop-filter: blur(18px);
  padding: 24px;
}

.install-modal.show,
.share-modal.show {
  display: flex;
}

.install-dialog,
.share-sheet {
  position: relative;
  width: min(520px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 40, 104, 0.18);
  padding: 26px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #f5f5f7;
  color: #6b7280;
  font-size: 21px;
  line-height: 1;
}

.modal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--laos-blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.install-dialog h2 {
  margin: 0 44px 10px 0;
  color: #000;
  font-size: 28px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.modal-intro {
  margin: 0 0 22px;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 300;
}

.install-steps {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.install-step {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 46px;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  background: #fafafa;
  padding: 10px 12px;
}

.install-step span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--laos-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
}

.install-step p {
  margin: 0;
  color: #1d1d1f;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 550;
}

.modal-action {
  width: 100%;
}

.share-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.share-actions button,
.share-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid #f0f0f2;
  border-radius: 14px;
  background: #fafafa;
  color: #111;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 750;
  text-align: center;
}

.share-actions button:first-child {
  grid-column: 1 / -1;
  background: #111;
  color: #fff;
}

.share-preview {
  margin-top: 18px;
}

.share-preview p {
  margin: 0;
  color: #8a8a8f;
  font-size: 13px;
}

.share-preview img {
  border: 1px solid #f0f0f2;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.share-download {
  width: 100%;
  margin-top: 12px;
}

.night-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 30px 24px 20px;
}

.night-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 61, 141, 0.08), transparent 34%),
    linear-gradient(180deg, #fff, #fafafa);
  border: 1px solid #f0f0f2;
  box-shadow: var(--shadow);
  padding: 28px 24px 30px;
}

.venue-cover-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 28%, rgba(255, 61, 141, 0.22), transparent 30%),
    radial-gradient(circle at 82% 24%, rgba(53, 199, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.58));
}

.night-hero-card h1 {
  margin: 12px 0 10px;
  color: #000;
  font-size: 42px;
  line-height: 1.04;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.night-hero-card p {
  max-width: 300px;
  margin: 0;
  color: #8a8a8f;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 350;
}

.neon-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--neon-pink);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.neon-kicker::before,
.neon-dot {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-pink);
  box-shadow: 0 0 18px rgba(255, 61, 141, 0.7);
}

.btn-glass {
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  backdrop-filter: blur(18px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.22);
}

.category-strip {
  max-width: var(--max);
  margin: 12px auto 38px;
  padding: 0 24px;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-strip::-webkit-scrollbar {
  display: none;
}

.category-pill {
  flex: 0 0 auto;
  min-height: 40px;
  border: 1px solid #f0f0f2;
  border-radius: 999px;
  background: #fff;
  color: #1d1d1f;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.nightlife-grid {
  align-items: start;
}

.venue-card {
  position: relative;
  border-radius: 28px;
}

.nightlife-grid .venue-card:not(:last-child) {
  padding-bottom: 30px;
}

.nightlife-grid .venue-card:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -18px;
  height: 2px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent, var(--neon-pink), var(--neon-purple), var(--neon-cyan), transparent);
  box-shadow:
    0 0 16px rgba(255, 61, 141, 0.42),
    0 0 22px rgba(122, 44, 255, 0.28);
}

.venue-image {
  aspect-ratio: 16 / 9;
  background: #f5f5f7;
}

.neon-badge {
  background: rgba(9, 9, 13, 0.72);
  box-shadow: 0 0 18px rgba(255, 61, 141, 0.24);
}

.venue-info {
  align-items: flex-start;
}

.venue-type {
  display: block;
  margin-bottom: 7px;
  color: var(--neon-purple);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag-row span {
  border: 1px solid #f0f0f2;
  border-radius: 999px;
  background: #fafafa;
  color: #6b7280;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 650;
}

.night-events {
  margin-top: 64px;
}

.section-head.compact span {
  color: #9ca3af;
  font-size: 12px;
  font-weight: 650;
}

.event-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.event-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #f0f0f2;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 20px;
}

.event-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-purple), var(--neon-cyan));
}

.event-card small {
  color: #9ca3af;
  font-size: 12px;
  font-weight: 800;
}

.event-card h4 {
  margin: 14px 0 7px;
  color: #000;
  font-size: 18px;
  letter-spacing: -0.04em;
}

.event-card p {
  margin: 0 0 20px;
  color: #6b7280;
  font-size: 13px;
}

.event-card strong {
  color: var(--neon-pink);
  font-size: 18px;
}

.venue-cover {
  position: relative;
  aspect-ratio: auto;
  height: auto;
  min-height: 0;
  overflow: hidden;
  border-radius: 0 0 30px 30px;
  background: #f5f5f7;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.14);
  margin: 0 -24px 0;
}

.venue-gallery {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.venue-gallery::-webkit-scrollbar {
  display: none;
}

.venue-gallery-item {
  flex: 0 0 100%;
  display: grid;
  place-items: center;
  min-height: 320px;
  max-height: 72vh;
  margin: 0;
  background: #f5f5f7;
  scroll-snap-align: start;
}

.venue-gallery-item img {
  position: static;
  width: 100%;
  height: auto;
  max-height: 72vh;
  object-fit: contain;
}

.cover-tabs {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 22px;
  display: flex;
  gap: 10px;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
}

.cover-tabs::-webkit-scrollbar {
  display: none;
}

.cover-tabs span {
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.34);
  color: #fff;
  padding: 9px 13px;
  font-size: 13px;
  font-weight: 850;
  backdrop-filter: blur(16px);
  white-space: nowrap;
}

.cover-tabs span:first-child {
  background: #fff;
  color: #000;
}

.gallery-count {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 8px 11px;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(16px);
}

.cover-back {
  position: absolute;
  top: calc(env(safe-area-inset-top) + 18px);
  left: 18px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.42);
  color: #fff;
  font-size: 42px;
  line-height: 1;
  backdrop-filter: blur(18px);
}

.cover-actions {
  position: absolute;
  top: calc(env(safe-area-inset-top) + 18px);
  left: 246px;
  right: auto;
  z-index: 2;
  display: flex;
  width: 108px;
  justify-content: space-between;
  gap: 12px;
}

@media (max-width: 360px) {
  .cover-actions {
    left: 198px;
  }
}

.cover-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.42);
  color: #fff;
  font-size: 29px;
  line-height: 1;
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.cover-icon.is-saved {
  color: #fff;
  background: rgba(0, 0, 0, 0.58);
}

.venue-title-card {
  position: relative;
  z-index: 1;
  margin: 0 -24px;
  border: 0;
  background: #fff;
  padding: 30px 24px 28px;
}

.venue-title-card h1 {
  margin: 14px 0 12px;
  color: #000;
  font-size: clamp(32px, 6vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.venue-title-card p {
  max-width: 690px;
  margin: 18px 0 0;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 350;
}

.rating-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
}

.rating-row strong {
  color: #000;
  font-size: 20px;
  font-weight: 900;
}

.rating-row span {
  color: #ff7a1a;
  letter-spacing: 0.04em;
}

.rating-row em {
  color: #6b7280;
  font-size: 13px;
  font-style: normal;
}

.booking-days {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.booking-days button {
  min-height: 92px;
  border: 1px solid #f0f0f2;
  border-radius: 18px;
  background: #fff;
  padding: 16px;
  text-align: left;
  box-shadow: var(--shadow);
}

.booking-days span {
  display: block;
  margin-bottom: 12px;
  color: #1d1d1f;
  font-size: 14px;
  font-weight: 850;
}

.booking-days strong {
  color: var(--neon-pink);
  font-size: 18px;
}

.neon-facility::before {
  color: var(--neon-purple);
}

.venue-detail-immersive {
  padding-top: 0;
}

.venue-detail-immersive .detail-grid {
  grid-template-columns: 1fr;
  gap: 0;
}

.venue-detail-immersive .content-block {
  padding-top: 8px;
}

.contact-block {
  border-bottom: 0;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.menu-list div {
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  background: #fafafa;
  padding: 14px 15px;
  color: #374151;
  font-size: 14px;
  font-weight: 650;
}

.venue-contact strong {
  font-family: inherit;
}

.venue-contact a {
  color: #111;
  text-decoration: underline;
  text-decoration-color: rgba(122, 44, 255, 0.32);
  text-underline-offset: 4px;
}

.venue-price-card .price-highlight {
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 61, 141, 0.1), transparent 35%),
    #fafafa;
}

@media (max-width: 840px) {
  .site-nav {
    display: flex;
    min-height: 64px;
    padding: 14px 14px;
    align-items: center;
    gap: 12px;
  }

  .nav-actions {
    position: absolute;
    top: 50%;
    left: min(38vw, 156px);
    right: auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: 184px;
    justify-content: stretch;
    gap: 4px;
    margin-left: 0;
    transform: translateY(-50%);
    font-size: 11px;
    color: #3f444c;
    white-space: nowrap;
  }

  .nav-btn {
    min-height: 42px;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }

  .install-btn.is-visible {
    display: none;
  }

  .hero {
    text-align: left;
    padding: 52px 24px 34px;
  }

  .home-hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 42px;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-showcase {
    max-width: 460px;
  }

  .flag-ribbon {
    margin-left: 0;
  }

  .hero-photo {
    aspect-ratio: 4 / 3;
    border-radius: 26px;
  }

  .hero-floating-card {
    left: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
  }

  .install-guide {
    margin-top: 0;
    margin-bottom: 42px;
  }

  .install-guide-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .install-actions {
    width: 100%;
    justify-content: space-between;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .rental-dashboard {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 30px 18px 14px;
  }

  .rental-dashboard-copy h1 {
    margin: 18px 0 12px;
    font-size: 40px;
  }

  .rental-dashboard-copy p {
    font-size: 15px;
    line-height: 1.6;
  }

  .home-featured .section-head {
    margin-bottom: 18px;
  }

  .rental-detail-wrap {
    padding-left: 18px;
    padding-right: 18px;
  }

  .rental-gallery-slide {
    height: 46vh;
    min-height: 300px;
  }

  .detail-cost-row,
  .detail-contact-row {
    grid-template-columns: 1fr;
  }

  .detail-mini-card,
  .detail-contact-card,
  .detail-amenity-row {
    border-radius: 18px;
    padding: 16px;
  }

  .detail-mini-card.is-strong strong {
    font-size: 28px;
  }

  .night-hero {
    padding: 14px 16px 10px;
  }

  .night-hero-card {
    border-radius: 22px;
    padding: 24px 20px 26px;
  }

  .event-row {
    grid-template-columns: 1fr;
  }

  .venue-cover {
    aspect-ratio: auto;
    height: auto;
    min-height: 0;
    border-radius: 0 0 30px 30px;
  }

  .venue-gallery-item {
    min-height: 280px;
  }

  .cover-tabs {
    left: 14px;
    right: 14px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .cover-tabs::-webkit-scrollbar {
    display: none;
  }

  .booking-days {
    grid-template-columns: 1fr;
  }

  .menu-list {
    grid-template-columns: 1fr;
  }

  .property-info {
    align-items: flex-start;
  }

  .gallery {
    grid-template-columns: 1fr;
    height: 36vh;
    min-height: 280px;
    gap: 0;
  }

  .gallery-main {
    grid-column: auto;
  }

  .gallery-side {
    display: none;
  }

  .detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .price-card {
    position: static;
  }

  .facility-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-links {
    width: 100%;
    justify-content: space-between;
    gap: 32px;
  }

  .install-modal {
    align-items: flex-end;
    padding: 18px;
  }

  .share-modal {
    align-items: flex-end;
    padding: 18px;
  }

  .install-dialog,
  .share-sheet {
    border-radius: 26px;
    padding: 24px;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: 40px;
  }

  .site-nav {
    gap: 8px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .logo {
    font-size: 18px;
  }

  .nav-actions {
    left: min(34vw, 128px);
    width: 188px;
    gap: 2px;
    font-size: 10px;
  }

  .rental-dashboard-copy h1 {
    font-size: 36px;
  }

  .night-hero-card h1 {
    font-size: 34px;
  }

  .category-strip {
    margin-top: 4px;
  }

  .venue-title-card h1 {
    font-size: 36px;
  }

  .venue-cover {
    min-height: 0;
  }

  .hero-actions .btn {
    flex: 1 1 140px;
  }

  .install-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .text-dismiss {
    min-height: 36px;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .property-info {
    display: block;
  }

  .price {
    margin-top: 14px;
    text-align: left;
  }

  .card-actions {
    align-items: stretch;
    flex-wrap: wrap;
  }

  .card-actions .btn {
    flex: 1 1 110px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .search-field {
    min-height: 50px;
  }

  .rental-card-price strong {
    font-size: 28px;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

  .cost-fact-grid {
    grid-template-columns: 1fr;
  }

  .cost-fact.is-strong strong {
    font-size: 30px;
  }

  .specs {
    padding-left: 8px;
    padding-right: 8px;
  }

  .spec strong {
    font-size: 13px;
  }

  .facility-grid {
    grid-template-columns: 1fr;
  }

  .detail-amenity-row .facility-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-links {
    flex-direction: column;
  }
}
