:root {
  --page: #fff8f6;
  --page-soft: #fff1ee;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --red: #c4000b;
  --red-deep: #7f0007;
  --red-soft: #fff0ef;
  --red-line: rgba(196, 0, 11, 0.14);
  --ink: #1d0b0d;
  --muted: #6c5558;
  --muted-2: #8b7376;
  --shadow-soft: 0 18px 46px rgba(94, 0, 7, 0.1);
  --shadow-strong: 0 28px 70px rgba(94, 0, 7, 0.17);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans Thai", "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(196, 0, 11, 0.12), transparent 28%),
    radial-gradient(circle at 96% 16%, rgba(196, 0, 11, 0.09), transparent 24%),
    linear-gradient(180deg, var(--page) 0%, #fffaf8 42%, #fff2f0 100%);
  min-height: 100vh;
  font-size: 16px;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 12px 14px 0;
}

.nav-shell {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(196, 0, 11, 0.09);
  border-radius: 22px;
  box-shadow: 0 14px 38px rgba(94, 0, 7, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 56px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(196, 0, 11, 0.08));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-copy strong {
  font-size: 0.78rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.brand-copy small {
  display: none;
  color: var(--muted-2);
  font-size: 0.64rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-toggle {
  border: 1px solid var(--red-line);
  background: var(--red-soft);
  color: var(--red-deep);
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.site-nav {
  display: none;
  grid-column: 1 / -1;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  padding: 8px 0 2px;
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--red-deep);
  background: var(--red-soft);
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 18px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 900;
}

.hero {
  display: grid;
  gap: 22px;
  padding-top: 24px;
}

.hero-copy {
  max-width: 640px;
}

.hero h1,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Noto Sans Thai", "Manrope", "Segoe UI", sans-serif;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero h1 {
  max-width: 16ch;
  font-size: clamp(1.68rem, 7.2vw, 2.36rem);
  line-height: 1.14;
  letter-spacing: -0.045em;
}

.section-heading {
  max-width: 760px;
}

.section-heading.compact {
  max-width: 560px;
}

.section-heading h2,
.contact-copy h2 {
  font-size: clamp(1.28rem, 4.8vw, 1.92rem);
  line-height: 1.24;
  letter-spacing: -0.04em;
}

.hero-text,
.intro-copy p,
.section-heading + p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.74;
  font-size: 0.93rem;
}

.hero-text {
  max-width: 60ch;
  margin: 14px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 18px 34px rgba(196, 0, 11, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(196, 0, 11, 0.28);
}

.button-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.88rem;
}

.button-outline,
.button-ghost {
  border-color: rgba(196, 0, 11, 0.18);
  background: #fff;
  color: var(--red-deep);
  box-shadow: none;
}

.button-block {
  width: 100%;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 10px;
  margin-top: 20px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.hero-metrics::-webkit-scrollbar {
  display: none;
}

.hero-metrics article {
  min-width: 150px;
  padding: 13px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(196, 0, 11, 0.08);
  box-shadow: 0 12px 26px rgba(94, 0, 7, 0.07);
}

.hero-metrics strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 5px;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.hero-quick-info {
  display: none;
}

@media (min-width: 900px) {
  .hero-quick-info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-width: 560px;
    margin-top: 18px;
  }

  .hero-quick-info article {
    padding: 14px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(196, 0, 11, 0.08);
    box-shadow: 0 14px 28px rgba(94, 0, 7, 0.07);
  }

  .hero-quick-info span {
    display: block;
    margin-bottom: 5px;
    color: var(--red);
    font-size: 0.64rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .hero-quick-info strong {
    display: block;
    color: var(--ink);
    font-size: 0.92rem;
    line-height: 1.4;
  }
}

.hero-visual {
  display: grid;
  gap: 12px;
  align-items: start;
  justify-self: center;
  width: min(100%, 360px);
  padding: 12px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(196, 0, 11, 0.08);
  box-shadow: 0 18px 42px rgba(94, 0, 7, 0.08);
}

.video-frame {
  position: relative;
  width: min(100%, 300px);
  aspect-ratio: 9 / 16;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(196, 0, 11, 0.2), transparent 34%),
    #16090a;
  border: 1px solid rgba(196, 0, 11, 0.16);
  box-shadow: 0 18px 44px rgba(94, 0, 7, 0.16);
}

.hero-photo,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #15090a;
}

.hero-video {
  background: #15090a url("assets/hotel-front.jpg") center / contain no-repeat;
}

.hero-photo-overlay {
  display: none;
}

.hero-audio-toggle {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(18, 6, 7, 0.72);
  color: #fff;
  backdrop-filter: blur(14px);
  font-size: 0.86rem;
  font-weight: 900;
  cursor: pointer;
}

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

.hero-video-point,
.floating-card {
  padding: 13px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(196, 0, 11, 0.08);
  box-shadow: 0 12px 26px rgba(94, 0, 7, 0.08);
}

.hero-video-point span,
.floating-card span,
.map-label,
.view-label {
  display: block;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.66rem;
  font-weight: 900;
  margin-bottom: 6px;
}

.hero-video-point strong,
.floating-card strong,
.map-card strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.35;
}

.hero-video-point small,
.floating-card small,
.map-card p {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.82rem;
}

.booking-section {
  padding-top: 10px;
}

.booking-card,
.contact-card,
.stat-card,
.experience-card,
.amenity-card,
.review-card,
.map-card,
.view-card {
  background: var(--surface);
  border: 1px solid rgba(196, 0, 11, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.booking-card,
.contact-card {
  padding: 20px;
}

.booking-form {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.booking-form span {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--red-deep);
  text-transform: uppercase;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(196, 0, 11, 0.15);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.booking-result {
  margin: 16px 0 0;
  color: var(--red-deep);
  font-weight: 800;
  line-height: 1.65;
}

.intro-grid,
.contact-card {
  display: grid;
  gap: 18px;
}

.intro-stats,
.room-grid,
.experience-grid,
.amenity-grid,
.review-grid,
.breakfast-gallery,
.lobby-gallery {
  display: grid;
  gap: 16px;
}

.stat-card,
.experience-card,
.amenity-card,
.review-card,
.map-card {
  padding: 20px;
}

.stat-card strong,
.experience-card h3,
.amenity-card h3,
.breakfast-copy h3,
.lobby-copy h3 {
  display: block;
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.35;
}

.stat-card p,
.experience-card p,
.amenity-card p,
.review-card p,
.breakfast-copy p,
.lobby-copy p,
.view-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.93rem;
}

.view-showcase-shell {
  padding-top: 12px;
}

.view-showcase {
  position: relative;
  margin-top: 20px;
  min-height: 260px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(196, 0, 11, 0.09);
  box-shadow: var(--shadow-soft);
}

.view-photo,
.view-overlay {
  position: absolute;
  inset: 0;
}

.view-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
}

.view-overlay {
  background: linear-gradient(180deg, rgba(29, 11, 13, 0.02), rgba(29, 11, 13, 0.28));
}

.view-card-wrap {
  margin-top: 14px;
}

.view-card {
  padding: 18px;
}

.view-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
  line-height: 1.25;
}

.room-grid {
  margin-top: 22px;
}

.room-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  border: 1px solid rgba(196, 0, 11, 0.08);
  box-shadow: var(--shadow-soft);
}

.room-photo-button,
.breakfast-gallery-trigger,
.lobby-gallery-trigger {
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
  text-align: left;
  display: block;
}

.room-photo,
.breakfast-photo,
.lobby-photo {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform 220ms ease;
}

.room-photo-button:hover .room-photo,
.room-photo-button:focus-visible .room-photo,
.breakfast-gallery-trigger:hover .breakfast-photo,
.breakfast-gallery-trigger:focus-visible .breakfast-photo,
.lobby-gallery-trigger:hover .lobby-photo,
.lobby-gallery-trigger:focus-visible .lobby-photo {
  transform: scale(1.025);
}

.room-photo-button:focus-visible,
.breakfast-gallery-trigger:focus-visible,
.lobby-gallery-trigger:focus-visible,
.gallery-close:focus-visible,
.gallery-arrow:focus-visible,
.gallery-thumb:focus-visible {
  outline: 2px solid rgba(196, 0, 11, 0.44);
  outline-offset: -2px;
}

.room-photo-hint {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(29, 11, 13, 0.72);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.room-content,
.breakfast-copy,
.lobby-copy {
  padding: 18px;
}

.room-topline,
.room-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.room-topline {
  color: var(--red);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
}

.room-card h3 {
  margin: 10px 0 8px;
  font-size: 1.12rem;
  line-height: 1.3;
}

.room-card p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.72;
  font-size: 0.92rem;
}

.room-meta span {
  color: var(--red-deep);
  font-weight: 900;
}

.room-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.room-meta a,
.room-gallery-trigger {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid rgba(196, 0, 11, 0.14);
  background: var(--red-soft);
  color: var(--red-deep);
  font-weight: 900;
  font-size: 0.84rem;
}

.room-gallery-trigger {
  cursor: pointer;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 14px;
}

.gallery-modal[hidden] {
  display: none;
}

.gallery-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(29, 11, 13, 0.72);
  backdrop-filter: blur(8px);
}

.gallery-dialog {
  position: relative;
  width: min(1040px, 100%);
  max-height: min(92vh, 920px);
  overflow: auto;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(196, 0, 11, 0.1);
  box-shadow: 0 28px 70px rgba(29, 4, 6, 0.34);
}

.gallery-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--red-soft);
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.gallery-header {
  margin-bottom: 14px;
  padding-right: 50px;
}

.gallery-header h3 {
  margin: 6px 0;
  font-size: 1.35rem;
  line-height: 1.2;
}

.gallery-counter {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.gallery-stage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
}

.gallery-figure {
  grid-column: 1 / -1;
  order: -1;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #17090a;
  border: 1px solid rgba(196, 0, 11, 0.08);
}

.gallery-image {
  width: 100%;
  max-height: 50vh;
  object-fit: contain;
  background: #17090a;
}

.gallery-caption {
  padding: 12px 14px 14px;
  background: #fff;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.92rem;
}

.gallery-arrow {
  width: 100%;
  height: 46px;
  border: 1px solid rgba(196, 0, 11, 0.12);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(94, 0, 7, 0.08);
}

.gallery-arrow:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

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

.gallery-thumb {
  padding: 0;
  border: 1px solid rgba(196, 0, 11, 0.08);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 10px 22px rgba(94, 0, 7, 0.06);
}

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

.gallery-thumb span {
  display: block;
  padding: 9px 10px 10px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.gallery-thumb.is-active {
  border-color: rgba(196, 0, 11, 0.55);
  box-shadow: 0 0 0 2px rgba(196, 0, 11, 0.15);
}

.experience-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--red-soft);
  color: var(--red);
  font-weight: 900;
}

.breakfast-card,
.lobby-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  border: 1px solid rgba(196, 0, 11, 0.08);
  box-shadow: var(--shadow-soft);
}

.gallery-section-note {
  margin: 16px 0 0;
  color: var(--red-deep);
  font-weight: 800;
  line-height: 1.65;
}

.review-card strong {
  display: inline-block;
  margin-top: 16px;
  color: var(--red-deep);
}

.contact-shell {
  padding-bottom: 70px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  color: var(--red-deep);
  font-weight: 800;
  line-height: 1.55;
}

.contact-panel {
  display: grid;
  gap: 14px;
  align-content: start;
}

.map-card {
  min-height: 220px;
  background:
    radial-gradient(circle at top right, rgba(196, 0, 11, 0.13), transparent 28%),
    #fff;
}

.map-card .button {
  margin-top: 16px;
}

.site-footer {
  padding: 0 18px 92px;
  text-align: center;
  color: var(--muted);
}

.footer-logo {
  width: 72px;
  margin: 0 auto 12px;
  filter: drop-shadow(0 8px 12px rgba(196, 0, 11, 0.08));
}

.site-footer p {
  margin: 6px 0;
  line-height: 1.55;
}

.mobile-cta-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 45;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(196, 0, 11, 0.1);
  box-shadow: 0 18px 44px rgba(94, 0, 7, 0.18);
  backdrop-filter: blur(18px);
}

.mobile-cta-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.92rem;
}

.mobile-cta-bar a:first-child {
  background: var(--red-soft);
  color: var(--red-deep);
}

.mobile-cta-bar a:last-child {
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 700px) {
  .brand-logo {
    width: 70px;
  }

  .brand-copy strong {
    font-size: 0.92rem;
  }

  .brand-copy small {
    display: block;
  }

  .section {
    padding: 44px 24px;
  }

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

  .booking-form button {
    grid-column: 1 / -1;
  }

  .intro-stats,
  .amenity-grid,
  .review-grid,
  .breakfast-gallery,
  .lobby-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .view-showcase {
    min-height: 420px;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
}

@media (min-width: 980px) {
  .site-header {
    padding: 18px 20px 0;
  }

  .nav-shell {
    display: flex;
    gap: 18px;
    padding: 12px 16px;
    border-radius: 999px;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: inline-flex;
    grid-column: auto;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    padding: 0;
    margin-left: auto;
  }

  .site-nav a {
    padding: 9px 10px;
    font-size: 0.88rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.68fr);
    align-items: center;
    gap: 42px;
    padding-top: 46px;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 3.4vw, 3.12rem);
  }

  .hero-text {
    font-size: 0.98rem;
  }

  .hero-visual {
    width: min(100%, 390px);
    padding: 14px;
  }

  .video-frame {
    width: min(100%, 320px);
  }

  .hero-video-points {
    width: min(100%, 360px);
    margin: 0 auto;
  }

  .booking-card,
  .contact-card {
    padding: 28px;
  }

  .booking-form {
    grid-template-columns: 1fr 1fr 0.8fr 1.1fr auto;
    align-items: end;
  }

  .booking-form button {
    grid-column: auto;
    white-space: nowrap;
  }

  .intro-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 24px;
  }

  .intro-stats,
  .experience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .room-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .room-photo {
    height: 240px;
  }

  .breakfast-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lobby-gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lobby-photo {
    height: 260px;
  }

  .contact-card {
    grid-template-columns: minmax(0, 1.2fr) minmax(290px, 0.8fr);
    gap: 24px;
  }

  .gallery-stage {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
  }

  .gallery-figure {
    grid-column: auto;
    order: initial;
  }

  .gallery-arrow {
    width: 48px;
  }

  .gallery-image {
    max-height: 62vh;
  }

  .mobile-cta-bar {
    display: none;
  }

  .site-footer {
    padding-bottom: 38px;
  }
}

@media (max-width: 420px) {
  .brand-copy strong {
    font-size: 0.7rem;
  }

  .hero h1 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: clamp(1.18rem, 5.2vw, 1.55rem);
  }

  .button-small {
    display: none;
  }

  .hero-video-points {
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Redesign v3: younger minimalist red direction */
:root {
  --page: #fffdfc;
  --page-soft: #fff6f4;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: #ffffff;
  --red: #c90012;
  --red-deep: #98000d;
  --red-soft: #fff4f3;
  --red-line: rgba(201, 0, 18, 0.11);
  --ink: #1b1112;
  --muted: #66585a;
  --muted-2: #8a7b7d;
  --shadow-soft: 0 10px 28px rgba(74, 0, 8, 0.06);
  --shadow-strong: 0 18px 46px rgba(74, 0, 8, 0.1);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
}

body {
  background:
    radial-gradient(circle at 0% 0%, rgba(201, 0, 18, 0.075), transparent 25%),
    radial-gradient(circle at 100% 12%, rgba(201, 0, 18, 0.045), transparent 24%),
    linear-gradient(180deg, #fffdfc 0%, #fff8f6 55%, #fffdfc 100%);
  font-size: 15px;
}

.site-header {
  padding: 10px 14px 0;
}

.nav-shell {
  padding: 8px 10px;
  border-radius: 20px;
  box-shadow: 0 10px 26px rgba(74, 0, 8, 0.065);
}

.brand-logo {
  width: 50px;
}

.brand-copy strong {
  font-size: 0.72rem;
  letter-spacing: -0.015em;
}

.nav-toggle {
  min-height: 36px;
  padding: 0 13px;
  border-radius: 999px;
  background: #fff;
}

.section {
  padding: 26px 20px;
}

.eyebrow {
  margin-bottom: 8px;
  font-size: 0.62rem;
  letter-spacing: 0.17em;
}

.hero {
  gap: 18px;
  padding-top: 20px;
  padding-bottom: 18px;
}

.hero-copy {
  max-width: 560px;
}

.hero h1 {
  max-width: 17ch;
  font-size: clamp(1.42rem, 5.7vw, 1.95rem);
  line-height: 1.18;
  letter-spacing: -0.034em;
}

.section-heading h2,
.contact-copy h2 {
  font-size: clamp(1.08rem, 4.3vw, 1.58rem);
  line-height: 1.3;
  letter-spacing: -0.028em;
}

.hero-text,
.intro-copy p,
.section-heading + p,
.contact-copy p {
  font-size: 0.9rem;
  line-height: 1.68;
}

.hero-text {
  margin-top: 12px;
  max-width: 52ch;
}

.hero-actions {
  gap: 8px;
  margin-top: 18px;
}

.button {
  min-height: 44px;
  padding: 0 18px;
  box-shadow: 0 10px 24px rgba(201, 0, 18, 0.16);
}

.button-outline,
.button-ghost {
  background: rgba(255, 255, 255, 0.72);
}

.hero-metrics {
  grid-template-columns: repeat(3, minmax(112px, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.hero-metrics article {
  min-width: 112px;
  padding: 11px 12px;
  border-radius: 14px;
  box-shadow: none;
}

.hero-metrics strong {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.hero-metrics span {
  font-size: 0.75rem;
  line-height: 1.48;
}

.hero-visual {
  width: min(100%, 300px);
  gap: 10px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.video-frame {
  width: min(100%, 238px);
  border-radius: 24px;
  border-color: rgba(201, 0, 18, 0.11);
  box-shadow: 0 16px 34px rgba(74, 0, 8, 0.13);
}

.hero-audio-toggle {
  left: 10px;
  right: 10px;
  bottom: 10px;
  min-height: 36px;
  font-size: 0.78rem;
  background: rgba(18, 6, 7, 0.66);
}

.hero-video-points {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: min(100%, 280px);
  margin: 0 auto;
}

.hero-video-point,
.floating-card {
  padding: 10px;
  border-radius: 15px;
  box-shadow: none;
}

.hero-video-point span,
.floating-card span,
.map-label,
.view-label {
  font-size: 0.56rem;
  letter-spacing: 0.13em;
  margin-bottom: 4px;
}

.hero-video-point strong,
.floating-card strong,
.map-card strong {
  font-size: 0.86rem;
  line-height: 1.35;
}

.hero-video-point small,
.floating-card small,
.map-card p {
  margin-top: 3px;
  font-size: 0.73rem;
  line-height: 1.42;
}

.booking-section {
  padding-top: 4px;
}

.booking-card,
.contact-card,
.stat-card,
.experience-card,
.amenity-card,
.review-card,
.map-card,
.view-card,
.room-card,
.breakfast-card,
.lobby-card {
  box-shadow: var(--shadow-soft);
  border-color: rgba(201, 0, 18, 0.075);
}

.booking-card,
.contact-card,
.stat-card,
.experience-card,
.amenity-card,
.review-card,
.map-card,
.view-card {
  background: rgba(255, 255, 255, 0.82);
}

.booking-card,
.contact-card {
  padding: 18px;
}

.view-showcase {
  margin-top: 16px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(74, 0, 8, 0.075);
}

.view-card {
  padding: 16px;
}

.view-card strong {
  font-size: 1.02rem;
}

.view-card p {
  font-size: 0.86rem;
  line-height: 1.62;
}

.room-grid {
  margin-top: 16px;
  gap: 14px;
}

.room-card {
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(74, 0, 8, 0.055);
}

.room-photo,
.breakfast-photo,
.lobby-photo {
  height: 188px;
}

.room-content,
.breakfast-copy,
.lobby-copy {
  padding: 15px;
}

.room-topline {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.room-card h3 {
  margin: 8px 0 7px;
  font-size: 1rem;
  line-height: 1.32;
}

.room-card p,
.stat-card p,
.experience-card p,
.amenity-card p,
.review-card p,
.breakfast-copy p,
.lobby-copy p {
  font-size: 0.86rem;
  line-height: 1.62;
}

.room-meta span {
  font-size: 0.9rem;
}

.room-meta a,
.room-gallery-trigger {
  min-height: 34px;
  padding: 0 12px;
  font-size: 0.78rem;
}

.mobile-cta-bar {
  left: 16px;
  right: 16px;
  bottom: calc(10px + env(safe-area-inset-bottom));
  max-width: 460px;
  margin: 0 auto;
  padding: 6px;
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(74, 0, 8, 0.14);
}

.mobile-cta-bar a {
  min-height: 40px;
  font-size: 0.86rem;
}

.site-footer {
  padding-bottom: 82px;
}

@media (max-width: 420px) {
  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero h1 {
    font-size: clamp(1.34rem, 6.2vw, 1.72rem);
    line-height: 1.2;
  }

  .hero-text {
    font-size: 0.86rem;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(104px, 1fr));
  }

  .hero-visual {
    width: min(100%, 286px);
  }

  .video-frame {
    width: min(100%, 226px);
  }

  .hero-video-points {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 700px) {
  .brand-logo {
    width: 64px;
  }

  .section {
    padding: 38px 24px;
  }
}

@media (min-width: 980px) {
  .nav-shell {
    padding: 10px 14px;
  }

  .site-nav a {
    font-size: 0.84rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
    gap: 46px;
    padding-top: 42px;
  }

  .hero h1 {
    font-size: clamp(2rem, 2.75vw, 2.75rem);
    max-width: 18ch;
  }

  .hero-visual {
    width: min(100%, 340px);
  }

  .video-frame {
    width: min(100%, 282px);
  }

  .hero-video-points {
    width: min(100%, 320px);
  }

  .room-photo {
    height: 220px;
  }
}


/* Redesign v4: younger minimal boutique direction */
:root {
  --page: #fffefd;
  --page-soft: #fff7f5;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --red: #d60014;
  --red-deep: #9d0010;
  --red-soft: #fff3f2;
  --red-line: rgba(214, 0, 20, 0.1);
  --ink: #171111;
  --muted: #615759;
  --muted-2: #918689;
  --shadow-soft: 0 8px 24px rgba(68, 0, 8, 0.045);
  --shadow-strong: 0 14px 38px rgba(68, 0, 8, 0.08);
  --radius-xl: 20px;
  --radius-lg: 16px;
  --radius-md: 12px;
}

body {
  background:
    linear-gradient(120deg, rgba(214, 0, 20, 0.06) 0%, rgba(214, 0, 20, 0) 34%),
    linear-gradient(180deg, #fffefd 0%, #fffefd 48%, #fff8f7 100%);
  color: var(--ink);
  font-size: 14.5px;
}

.site-header {
  padding: 10px 12px 0;
}

.nav-shell {
  border-radius: 18px;
  border-color: rgba(214, 0, 20, 0.075);
  box-shadow: 0 8px 22px rgba(68, 0, 8, 0.055);
  background: rgba(255, 255, 255, 0.86);
}

.brand {
  gap: 9px;
}

.brand-logo {
  width: 46px;
}

.brand-copy strong {
  font-size: 0.68rem;
  letter-spacing: -0.02em;
}

.nav-toggle {
  min-height: 34px;
  padding: 0 12px;
  font-size: 0.84rem;
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(214, 0, 20, 0.14);
}

.section {
  padding: 24px 18px;
}

.eyebrow {
  margin-bottom: 7px;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
}

.hero {
  gap: 20px;
  padding-top: 18px;
  padding-bottom: 12px;
}

.hero h1 {
  max-width: 13ch;
  font-size: clamp(1.28rem, 5.4vw, 1.68rem);
  line-height: 1.17;
  letter-spacing: -0.032em;
}

.hero-text,
.intro-copy p,
.section-heading + p,
.contact-copy p {
  font-size: 0.84rem;
  line-height: 1.62;
}

.hero-text {
  margin-top: 10px;
  max-width: 44ch;
}

.hero-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 16px;
}

.hero-actions .button {
  width: auto;
}

.button {
  min-height: 40px;
  padding: 0 15px;
  font-size: 0.9rem;
  box-shadow: 0 8px 18px rgba(214, 0, 20, 0.14);
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 10px 22px rgba(214, 0, 20, 0.18);
}

.button-outline,
.button-ghost {
  background: #fff;
  border-color: rgba(214, 0, 20, 0.12);
}

.hero-metrics {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  overflow-x: auto;
  padding: 1px 0 6px;
}

.hero-metrics article {
  flex: 0 0 auto;
  min-width: auto;
  padding: 8px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: none;
}

.hero-metrics strong {
  margin: 0;
  font-size: 0.84rem;
  white-space: nowrap;
}

.hero-metrics span {
  font-size: 0.72rem;
  white-space: nowrap;
}

.hero-visual {
  width: min(100%, 286px);
  gap: 8px;
  justify-self: center;
}

.video-frame {
  width: min(100%, 212px);
  border-radius: 22px;
  box-shadow: 0 14px 30px rgba(68, 0, 8, 0.12);
}

.hero-audio-toggle {
  left: 9px;
  right: 9px;
  bottom: 9px;
  min-height: 34px;
  font-size: 0.74rem;
  background: rgba(18, 6, 7, 0.6);
}

.hero-video-points {
  width: min(100%, 268px);
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.hero-video-point,
.floating-card {
  padding: 9px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: none;
}

.hero-video-point span,
.floating-card span,
.map-label,
.view-label {
  font-size: 0.52rem;
  letter-spacing: 0.14em;
}

.hero-video-point strong,
.floating-card strong,
.map-card strong {
  font-size: 0.8rem;
}

.hero-video-point small,
.floating-card small,
.map-card p {
  font-size: 0.69rem;
  line-height: 1.38;
}

.section-heading h2,
.contact-copy h2 {
  font-size: clamp(1rem, 3.9vw, 1.42rem);
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.booking-section {
  padding-top: 2px;
}

.booking-card,
.contact-card,
.stat-card,
.experience-card,
.amenity-card,
.review-card,
.map-card,
.view-card,
.room-card,
.breakfast-card,
.lobby-card {
  border-color: rgba(214, 0, 20, 0.065);
  box-shadow: 0 8px 22px rgba(68, 0, 8, 0.038);
}

.booking-card,
.contact-card,
.stat-card,
.experience-card,
.amenity-card,
.review-card,
.map-card,
.view-card {
  background: rgba(255, 255, 255, 0.78);
}

.booking-card,
.contact-card {
  padding: 16px;
}

.booking-form {
  margin-top: 16px;
  gap: 10px;
}

.booking-form span {
  font-size: 0.68rem;
}

.booking-form input,
.booking-form select {
  min-height: 44px;
  border-radius: 12px;
}

.view-showcase-shell,
.intro-grid,
.rooms-section {
  padding-top: 18px;
}

.view-showcase {
  margin-top: 14px;
  min-height: 220px;
  border-radius: 18px;
  box-shadow: none;
}

.view-card-wrap {
  margin-top: 10px;
}

.view-card {
  padding: 14px;
}

.view-card strong {
  font-size: 0.95rem;
}

.stat-card,
.experience-card,
.amenity-card,
.review-card,
.map-card {
  padding: 16px;
}

.stat-card strong,
.experience-card h3,
.amenity-card h3,
.breakfast-copy h3,
.lobby-copy h3 {
  font-size: 0.92rem;
}

.room-grid {
  margin-top: 14px;
  gap: 12px;
}

.room-card,
.breakfast-card,
.lobby-card {
  border-radius: 16px;
  overflow: hidden;
}

.room-photo,
.breakfast-photo,
.lobby-photo {
  height: 174px;
}

.room-photo-hint {
  right: 10px;
  bottom: 10px;
  padding: 6px 10px;
  font-size: 0.68rem;
  background: rgba(18, 6, 7, 0.62);
}

.room-content,
.breakfast-copy,
.lobby-copy {
  padding: 14px;
}

.room-card h3 {
  font-size: 0.95rem;
  margin: 7px 0 6px;
}

.room-card p,
.stat-card p,
.experience-card p,
.amenity-card p,
.review-card p,
.breakfast-copy p,
.lobby-copy p,
.view-card p {
  font-size: 0.82rem;
  line-height: 1.58;
}

.room-meta a,
.room-gallery-trigger {
  min-height: 32px;
  padding: 0 11px;
  font-size: 0.74rem;
  background: #fff;
}

.mobile-cta-bar {
  left: 14px;
  right: 14px;
  bottom: calc(9px + env(safe-area-inset-bottom));
  padding: 5px;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(68, 0, 8, 0.12);
}

.mobile-cta-bar a {
  min-height: 38px;
  font-size: 0.82rem;
}

.site-footer {
  padding-bottom: 76px;
}

@media (max-width: 420px) {
  .section {
    padding-left: 17px;
    padding-right: 17px;
  }

  .hero h1 {
    font-size: clamp(1.22rem, 5.7vw, 1.56rem);
  }

  .hero-text {
    font-size: 0.82rem;
  }

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

  .hero-actions .button {
    width: auto;
  }

  .hero-metrics {
    grid-template-columns: none;
  }

  .hero-visual {
    width: min(100%, 278px);
  }

  .video-frame {
    width: min(100%, 204px);
  }
}

@media (min-width: 700px) {
  .section {
    padding: 34px 24px;
  }

  .brand-logo {
    width: 60px;
  }

  .hero-visual {
    width: min(100%, 330px);
  }

  .video-frame {
    width: min(100%, 270px);
  }
}

@media (min-width: 980px) {
  body {
    font-size: 15.5px;
  }

  .nav-shell {
    border-radius: 24px;
  }

  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(290px, 0.55fr);
    gap: 56px;
    padding-top: 48px;
    align-items: center;
  }

  .hero h1 {
    font-size: clamp(1.95rem, 2.45vw, 2.55rem);
    max-width: 15ch;
  }

  .hero-text {
    font-size: 0.92rem;
  }

  .hero-visual {
    width: min(100%, 340px);
  }

  .video-frame {
    width: min(100%, 274px);
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: clamp(1.25rem, 2vw, 1.82rem);
  }

  .room-photo {
    height: 214px;
  }
}

/* Redesign v4 mobile overflow cleanup
   Base: v4. Fixes cropped buttons/CTA on small screens without changing the visual direction. */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

main,
.site-header,
.site-footer,
.section,
.nav-shell,
.hero,
.hero-copy,
.hero-visual,
.booking-card,
.room-card,
.contact-card {
  min-width: 0;
}

@media (max-width: 699px) {
  body {
    overflow-x: clip;
  }

  .site-header {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .nav-shell {
    width: 100%;
    max-width: calc(100vw - 24px);
    grid-template-columns: minmax(0, 1fr) auto;
    overflow: hidden;
  }

  .brand,
  .brand-copy {
    min-width: 0;
    max-width: 100%;
  }

  .brand-copy strong {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .section {
    width: 100%;
    max-width: 100vw;
    padding-left: clamp(18px, 5vw, 24px);
    padding-right: clamp(18px, 5vw, 24px);
    overflow: hidden;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: 100%;
  }

  .hero-copy,
  .hero-text,
  .section-heading,
  .booking-card,
  .room-card,
  .view-card,
  .experience-card,
  .amenity-card,
  .review-card,
  .contact-card {
    width: 100%;
    max-width: 100%;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 8px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 0.84rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-metrics {
    display: flex;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .hero-metrics article {
    flex: 0 0 auto;
    min-width: max-content;
    max-width: calc(100vw - 48px);
  }

  .hero-visual,
  .video-frame,
  .hero-video-points,
  .view-showcase,
  .room-grid,
  .booking-form,
  .contact-grid {
    width: 100%;
    max-width: 100%;
  }

  .room-topline,
  .room-meta,
  .room-actions {
    min-width: 0;
    max-width: 100%;
  }

  .room-actions {
    justify-content: flex-end;
  }

  .room-meta a,
  .room-gallery-trigger {
    min-width: 0;
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    white-space: nowrap;
  }

  .mobile-cta-bar {
    left: 12px;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    width: auto;
    max-width: calc(100vw - 24px);
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 6px;
    padding: 6px;
    overflow: hidden;
  }

  .mobile-cta-bar a {
    min-width: 0;
    max-width: 100%;
    padding-left: 8px;
    padding-right: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.82rem;
  }
}

@media (max-width: 360px) {
  .hero-actions {
    grid-template-columns: 1fr;
  }

  .mobile-cta-bar a {
    font-size: 0.78rem;
  }
}

/* Final mobile polish based on V4
   Fixes: clipped hero buttons, clipped bottom CTA, oversized video on phone,
   and cleaner mobile header layout. */
@media (max-width: 699px) {
  .site-header {
    padding: 10px 14px 0;
  }

  .nav-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      'brand toggle'
      'cta cta';
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 28px rgba(94, 0, 7, 0.09);
  }

  .brand {
    grid-area: brand;
    gap: 8px;
  }

  .brand-logo {
    width: 48px;
  }

  .brand-copy strong {
    font-size: 0.76rem;
  }

  .nav-toggle {
    grid-area: toggle;
    min-width: 56px;
    min-height: 40px;
    padding: 0 14px;
    justify-self: end;
  }

  .nav-shell > .button-small {
    grid-area: cta;
    display: inline-flex;
    width: 100%;
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.96rem;
    border-radius: 999px;
    justify-content: center;
  }

  .site-nav {
    grid-column: 1 / -1;
  }

  .hero {
    gap: 18px;
    padding-top: 22px;
  }

  .hero h1 {
    max-width: 10ch;
    font-size: clamp(1.95rem, 10vw, 2.45rem);
    line-height: 1.08;
  }

  .hero-text {
    margin-top: 12px;
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    overflow: visible;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 46px;
    min-width: 0;
    padding: 0 12px;
    font-size: 0.94rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    overflow: visible;
    padding-bottom: 0;
  }

  .hero-metrics article {
    min-width: 0;
    padding: 12px 14px;
  }

  .hero-metrics article:last-child {
    grid-column: 1 / -1;
  }

  .hero-metrics strong {
    font-size: 1rem;
  }

  .hero-metrics span {
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .hero-visual {
    width: min(100%, 280px);
    padding: 10px;
    gap: 10px;
    margin: 0 auto;
    border-radius: 22px;
  }

  .video-frame {
    width: min(100%, 236px);
    border-radius: 22px;
  }

  .hero-audio-toggle {
    left: 10px;
    right: 10px;
    bottom: 10px;
    min-height: 38px;
    font-size: 0.82rem;
  }

  .hero-video-points {
    gap: 10px;
  }

  .hero-video-point {
    padding: 12px;
  }

  .hero-video-point strong {
    font-size: 0.94rem;
  }

  .hero-video-point small {
    font-size: 0.8rem;
  }

  .mobile-cta-bar {
    left: 14px;
    right: 14px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    max-width: calc(100vw - 28px);
    gap: 8px;
    padding: 7px;
    border-radius: 20px;
  }

  .mobile-cta-bar a {
    min-height: 42px;
    padding: 0 10px;
    font-size: 0.88rem;
    letter-spacing: 0;
  }
}

@media (max-width: 520px) {
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .hero-actions .button {
    font-size: 1rem;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-metrics article:last-child {
    grid-column: auto;
  }

  .hero-visual {
    width: min(100%, 264px);
  }

  .video-frame {
    width: min(100%, 224px);
  }

  .mobile-cta-bar {
    grid-template-columns: 1fr 1fr;
  }

  .mobile-cta-bar a {
    font-size: 0.84rem;
  }
}

@media (max-width: 380px) {
  .nav-shell {
    padding: 10px;
  }

  .brand-logo {
    width: 44px;
  }

  .brand-copy strong {
    font-size: 0.72rem;
  }

  .nav-shell > .button-small {
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 9vw, 2.2rem);
  }

  .hero-text {
    font-size: 0.94rem;
  }

  .hero-visual {
    width: min(100%, 248px);
  }

  .video-frame {
    width: min(100%, 212px);
  }

  .mobile-cta-bar a {
    font-size: 0.8rem;
    padding: 0 8px;
  }
}


/* Mobile video size adjustment: +20% from mobilefix-v2. Nothing else changed. */
@media (max-width: 699px) {
  .hero-visual {
    width: min(100%, 336px);
  }

  .video-frame {
    width: min(100%, 283px);
  }
}

@media (max-width: 520px) {
  .hero-visual {
    width: min(100%, 317px);
  }

  .video-frame {
    width: min(100%, 269px);
  }
}

@media (max-width: 380px) {
  .hero-visual {
    width: min(100%, 298px);
  }

  .video-frame {
    width: min(100%, 254px);
  }
}


/* Added location map image in contact section */
.map-image-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(191, 40, 53, 0.12);
  border-radius: 26px;
  box-shadow: 0 18px 36px rgba(94, 0, 7, 0.07);
}

.map-image-link {
  display: block;
  border-radius: 18px;
  overflow: hidden;
}

.map-image-link img {
  display: block;
  width: 100%;
  height: auto;
}

.map-image-caption {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(33, 20, 28, 0.76);
}

@media (max-width: 699px) {
  .map-image-card {
    padding: 12px;
    border-radius: 22px;
  }

  .map-image-link {
    border-radius: 16px;
  }

  .map-image-caption {
    font-size: 0.88rem;
  }
}


/* Map image popup interaction */
.map-image-link {
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  text-align: left;
}

.map-image-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(29, 11, 13, 0.76);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.map-image-actions,
.map-popup-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
}

.map-image-actions .button,
.map-popup-actions .button {
  width: 100%;
  min-width: 0;
  white-space: nowrap;
}

.map-popup {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 18px;
}

.map-popup[hidden] {
  display: none;
}

.map-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(29, 11, 13, 0.72);
  backdrop-filter: blur(8px);
}

.map-popup-dialog {
  position: relative;
  width: min(1080px, 100%);
  max-height: min(92vh, 920px);
  overflow: auto;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(196, 0, 11, 0.12);
  box-shadow: 0 28px 70px rgba(29, 4, 6, 0.34);
}

.map-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--red-soft);
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.map-popup-header {
  padding-right: 54px;
  margin-bottom: 14px;
}

.map-popup-header h3 {
  margin: 0;
  font-size: clamp(1.08rem, 3vw, 1.5rem);
  line-height: 1.28;
}

.map-popup-image {
  width: 100%;
  max-height: 68vh;
  object-fit: contain;
  border-radius: 20px;
  background: #fff8f0;
  border: 1px solid rgba(196, 0, 11, 0.08);
}

.map-popup-actions {
  margin-top: 14px;
}

@media (max-width: 699px) {
  .map-image-actions,
  .map-popup-actions {
    grid-template-columns: 1fr;
  }

  .map-image-badge {
    right: 10px;
    bottom: 10px;
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.78rem;
  }

  .map-popup {
    padding: 12px;
  }

  .map-popup-dialog {
    max-height: 90vh;
    padding: 14px;
    border-radius: 22px;
  }

  .map-popup-close {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
  }

  .map-popup-image {
    max-height: 58vh;
    border-radius: 16px;
  }
}


/* Booking CTA polish: LINE + phone booking */
.booking-result-label,
.booking-result-message,
.booking-result-help {
  display: block;
}

.booking-result-message {
  margin-top: 6px;
  color: var(--ink);
  font-weight: 800;
}

.booking-result-help {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.booking-actions .button {
  min-width: 190px;
}

.room-line-link {
  background: linear-gradient(135deg, var(--red), var(--red-deep)) !important;
  color: #fff !important;
  border-color: transparent !important;
}

.room-call-link {
  background: #fff !important;
}

@media (max-width: 699px) {
  .booking-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .booking-actions .button {
    width: 100%;
    min-width: 0;
  }

  .room-actions {
    width: 100%;
  }

  .room-actions a,
  .room-actions button {
    flex: 1 1 auto;
  }
}


/* Meeting and events section */
.meeting-events-shell {
  padding-top: 34px;
}

.meeting-events-card {
  position: relative;
  display: grid;
  gap: 18px;
  margin-top: 2px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(196, 0, 11, 0.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(196, 0, 11, 0.14), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 241, 238, 0.9));
  box-shadow: 0 22px 56px rgba(94, 0, 7, 0.09);
}

.meeting-events-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.meeting-events-shell .eyebrow {
  margin-bottom: 0;
  font-size: 0.9rem !important;
  letter-spacing: 0.12em !important;
}

.meeting-events-copy h2 {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.26rem, 4.6vw, 1.9rem);
  line-height: 1.24;
  letter-spacing: -0.04em;
}

.meeting-events-copy p {
  max-width: 64ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.meeting-events-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.meeting-events-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(196, 0, 11, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.meeting-events-badge {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(196, 0, 11, 0.08);
  color: var(--red-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.meeting-events-list {
  display: grid;
  gap: 10px;
}

.meeting-events-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 12px;
  row-gap: 4px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.meeting-events-item span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.meeting-events-item strong {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.35;
}

.meeting-events-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.meeting-gallery-feature {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(196, 0, 11, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 34px rgba(74, 0, 8, 0.1);
  cursor: pointer;
  padding: 12px;
  text-align: left;
  isolation: isolate;
}

.meeting-gallery-feature img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border-radius: 18px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(196, 0, 11, 0.06);
  transition: opacity 0.35s ease, transform 0.45s ease;
}

.meeting-gallery-feature:hover img {
  transform: scale(1.01);
}

.meeting-gallery-feature.is-changing img {
  opacity: 0;
}

.meeting-gallery-overlay {
  position: static;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 6px 12px;
  padding: 0 2px 2px;
  color: var(--ink);
  text-align: left;
}

.meeting-gallery-overlay strong {
  color: var(--red-deep);
  font-size: 0.9rem;
  line-height: 1.35;
}

.meeting-gallery-overlay small {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

@media (min-width: 900px) {
  .meeting-events-card {
    grid-template-columns: minmax(430px, 1.08fr) minmax(340px, 0.92fr);
    grid-template-areas:
      "gallery copy"
      "gallery panel";
    align-items: stretch;
    gap: 22px 28px;
    padding: 26px;
  }

  .meeting-events-copy {
    grid-area: copy;
    align-self: end;
    padding: 14px 4px 6px;
  }

  .meeting-events-panel {
    grid-area: panel;
    align-self: start;
  }

  .meeting-gallery-feature {
    grid-area: gallery;
    align-self: stretch;
    margin-top: 0;
    padding: 16px;
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 560px;
  }

  .meeting-gallery-feature img {
    flex: 1 1 auto;
    aspect-ratio: 1 / 1;
    max-height: none;
    min-height: 0;
    object-fit: contain;
    border-radius: 22px;
  }

  .meeting-gallery-overlay {
    margin-top: 8px;
  }
}

@media (min-width: 1120px) {
  .meeting-events-card {
    grid-template-columns: minmax(520px, 1.08fr) minmax(390px, 0.82fr);
  }
}

@media (max-width: 699px) {
  .meeting-events-shell {
    padding-top: 24px;
  }

  .meeting-events-card {
    padding: 16px;
    border-radius: 24px;
  }

  .meeting-events-shell .eyebrow {
    font-size: 0.738rem !important;
    letter-spacing: 0.13em !important;
  }

  .meeting-events-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .meeting-events-actions .button {
    width: 100%;
  }

  .meeting-events-panel {
    padding: 12px;
    border-radius: 20px;
  }

  .meeting-gallery-feature {
    border-radius: 18px;
    padding: 10px;
  }

  .meeting-gallery-feature img {
    aspect-ratio: 1 / 1;
    border-radius: 15px;
  }

  .meeting-gallery-overlay {
    display: grid;
    gap: 2px;
    padding: 0 2px 2px;
  }

  .meeting-events-item {
    grid-template-columns: 1fr;
  }

  .meeting-events-item span {
    grid-row: auto;
  }
}

/* Guest information section */
.guest-info-shell {
  padding-top: 34px;
}

.guest-info-grid {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.guest-info-card {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(196, 0, 11, 0.09);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(94, 0, 7, 0.06);
}

.guest-info-card.highlight,
.guest-info-card.wide {
  background:
    radial-gradient(circle at top right, rgba(196, 0, 11, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.96);
}

.guest-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(196, 0, 11, 0.14), rgba(196, 0, 11, 0.06)),
    rgba(255, 255, 255, 0.98);
  color: var(--red-deep);
  border: 1px solid rgba(196, 0, 11, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 12px 24px rgba(196, 0, 11, 0.08);
}

.guest-info-icon-svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.guest-info-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.35;
}

.guest-info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.guest-info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

@media (min-width: 700px) {
  .guest-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guest-info-card.wide {
    grid-column: 1 / -1;
  }
}

@media (min-width: 980px) {
  .guest-info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .guest-info-card {
    padding: 20px;
  }

  .guest-info-card.wide {
    grid-column: span 3;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
  }

  .guest-info-card.wide h3,
  .guest-info-card.wide p,
  .guest-info-card.wide .guest-info-actions {
    grid-column: 2;
  }
}

@media (max-width: 699px) {
  .guest-info-shell {
    padding-top: 24px;
  }

  .guest-info-card {
    padding: 16px;
    border-radius: 22px;
  }

  .guest-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .guest-info-icon-svg {
    width: 22px;
    height: 22px;
  }

  .guest-info-actions .button {
    width: 100%;
  }
}

/* Targeted micro-label size increase requested after guest-info-icon-refresh.
   Only affects the red uppercase/short labels pointed out by the user:
   section eyebrows, booking form field labels, room card top labels,
   view/map micro labels. */
.eyebrow {
  font-size: 1rem !important;
  letter-spacing: 0.12em !important;
}

.booking-form span {
  font-size: 1.1rem !important;
  letter-spacing: 0.04em !important;
}

.room-topline {
  font-size: 1rem !important;
  letter-spacing: 0.1em !important;
}

.view-label,
.map-label {
  font-size: 0.78rem !important;
  letter-spacing: 0.12em !important;
}

@media (max-width: 699px) {
  .eyebrow {
    font-size: 0.82rem !important;
    letter-spacing: 0.13em !important;
  }

  .booking-form span {
    font-size: 0.95rem !important;
    letter-spacing: 0.04em !important;
  }

  .room-topline {
    font-size: 0.86rem !important;
    letter-spacing: 0.1em !important;
  }

  .view-label,
  .map-label {
    font-size: 0.74rem !important;
    letter-spacing: 0.12em !important;
  }
}


/* Targeted correction: only these two missed labels +25% */
.view-label,
.map-label {
  font-size: 0.975rem !important;
  letter-spacing: 0.11em !important;
}

@media (max-width: 699px) {
  .view-label,
  .map-label {
    font-size: 0.925rem !important;
    letter-spacing: 0.11em !important;
  }
}

/* Targeted reduction from latest version: only specific pointed labels -10% */
.hero > .hero-copy > .eyebrow,
#booking .section-heading > .eyebrow,
.view-showcase-shell .section-heading > .eyebrow,
#rooms .section-heading > .eyebrow,
#experiences .section-heading > .eyebrow,
#amenities .section-heading > .eyebrow,
.breakfast-gallery-shell .section-heading > .eyebrow,
.lobby-gallery-shell .section-heading > .eyebrow,
#reviews .section-heading > .eyebrow,
#guest-info .section-heading > .eyebrow {
  font-size: 0.9rem !important;
  letter-spacing: 0.12em !important;
}

#booking .booking-form label > span {
  font-size: 0.99rem !important;
  letter-spacing: 0.04em !important;
}

.room-topline {
  font-size: 0.9rem !important;
  letter-spacing: 0.1em !important;
}

@media (max-width: 699px) {
  .hero > .hero-copy > .eyebrow,
  #booking .section-heading > .eyebrow,
  .view-showcase-shell .section-heading > .eyebrow,
  #rooms .section-heading > .eyebrow,
  #experiences .section-heading > .eyebrow,
  #amenities .section-heading > .eyebrow,
  .breakfast-gallery-shell .section-heading > .eyebrow,
  .lobby-gallery-shell .section-heading > .eyebrow,
  #reviews .section-heading > .eyebrow,
  #guest-info .section-heading > .eyebrow {
    font-size: 0.738rem !important;
    letter-spacing: 0.13em !important;
  }

  #booking .booking-form label > span {
    font-size: 0.855rem !important;
    letter-spacing: 0.04em !important;
  }

  .room-topline {
    font-size: 0.774rem !important;
    letter-spacing: 0.1em !important;
  }
}

/* LINE Official card in contact section */
.line-official-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(196, 0, 11, 0.12);
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(196, 0, 11, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 246, 244, 0.94));
  box-shadow: 0 18px 36px rgba(94, 0, 7, 0.08);
}

.line-official-copy {
  display: grid;
  gap: 8px;
}

.line-official-label {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(196, 0, 11, 0.08);
  color: var(--red-deep);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.line-official-copy strong {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.35;
}

.line-official-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.line-official-visual {
  justify-self: stretch;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(196, 0, 11, 0.1);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 26px rgba(94, 0, 7, 0.08);
}

.line-official-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.line-official-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
}

.line-official-actions .button {
  width: 100%;
  min-width: 0;
  white-space: nowrap;
}

@media (min-width: 980px) {
  .contact-card > .line-official-card {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.68fr);
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 28px;
    row-gap: 16px;
    padding: 22px;
  }

  .contact-card > .line-official-card .line-official-copy {
    align-self: end;
    max-width: 620px;
  }

  .contact-card > .line-official-card .line-official-copy strong {
    font-size: 1.22rem;
  }

  .contact-card > .line-official-card .line-official-copy p {
    max-width: 52ch;
  }

  .contact-card > .line-official-card .line-official-visual {
    grid-column: 2;
    grid-row: 1 / span 2;
    justify-self: end;
    max-width: 470px;
  }

  .contact-card > .line-official-card .line-official-actions {
    grid-column: 1;
    grid-row: 2;
    width: min(100%, 440px);
    align-self: start;
  }
}

@media (max-width: 699px) {
  .line-official-card {
    padding: 14px;
    border-radius: 22px;
  }

  .line-official-label {
    font-size: 0.72rem;
  }

  .line-official-copy strong {
    font-size: 1rem;
  }

  .line-official-copy p {
    font-size: 0.88rem;
  }

  .line-official-visual {
    border-radius: 20px;
  }

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

/* Final header edge spacing polish
   Adds comfortable left/right breathing room on mobile and desktop
   without changing the approved header structure. */
.site-header {
  padding-left: clamp(18px, 3vw, 34px);
  padding-right: clamp(18px, 3vw, 34px);
}

.nav-shell {
  width: 100%;
}

@media (min-width: 980px) {
  .site-header {
    padding-left: clamp(30px, 3.2vw, 56px);
    padding-right: clamp(30px, 3.2vw, 56px);
  }

  .nav-shell {
    max-width: min(var(--max-width), calc(100vw - 72px));
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (max-width: 699px) {
  .site-header {
    padding-left: 18px;
    padding-right: 18px;
  }

  .nav-shell {
    max-width: calc(100vw - 36px);
  }
}

@media (max-width: 380px) {
  .site-header {
    padding-left: 14px;
    padding-right: 14px;
  }

  .nav-shell {
    max-width: calc(100vw - 28px);
  }
}
