/* =========================================================
   Missouri.co.jp / site.css
   Editorial travel magazine for Japanese readers
   Theme: The Show-Me State — rivers, jazz, barbecue, Route 66,
   Ozarks, St. Louis, Kansas City, Mark Twain country.
   ========================================================= */

:root {
  --ink: #1f1a16;
  --ink-soft: #4f463f;
  --muted: #776c62;
  --paper: #f7f1e6;
  --paper-warm: #efe3d0;
  --paper-light: #fffaf1;
  --river: #315f73;
  --river-deep: #1d3f4f;
  --arch-steel: #9aa1a3;
  --brick: #8d3f2b;
  --bbq: #5a261b;
  --jazz: #231936;
  --gold: #c6913f;
  --grass: #66764c;
  --cream: #fff6e5;
  --line: rgba(31, 26, 22, 0.16);
  --line-dark: rgba(31, 26, 22, 0.32);
  --shadow: 0 24px 70px rgba(31, 26, 22, 0.14);
  --shadow-soft: 0 12px 36px rgba(31, 26, 22, 0.10);
  --radius: 22px;
  --radius-lg: 34px;
  --max: 1180px;
  --serif: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP", "Times New Roman", serif;
  --sans: "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", system-ui, sans-serif;
}

/* ---------- Base ---------- */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.025em;
  background:
    radial-gradient(circle at top left, rgba(198, 145, 63, 0.16), transparent 34rem),
    radial-gradient(circle at 85% 10%, rgba(49, 95, 115, 0.16), transparent 30rem),
    linear-gradient(180deg, var(--paper-light), var(--paper) 44%, var(--paper-warm));
}

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

a {
  color: var(--river-deep);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

a:hover {
  color: var(--brick);
}

p {
  margin: 0 0 1.25rem;
}

strong,
b {
  color: var(--ink);
  font-weight: 800;
}

::selection {
  background: rgba(198, 145, 63, 0.32);
}

/* ---------- Layout Helpers ---------- */

.wrap,
.site-wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: clamp(56px, 8vw, 110px) 0;
}

.section-tight {
  padding: clamp(36px, 5vw, 72px) 0;
}

.grid {
  display: grid;
  gap: clamp(22px, 3vw, 38px);
}

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

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

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

.center {
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--brick);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 2.25rem;
  height: 1px;
  background: currentColor;
}

.kicker {
  color: var(--river-deep);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lead {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.75vw, 1.42rem);
  line-height: 2.05;
}

.small {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.8;
}

.divider {
  width: 100%;
  height: 1px;
  margin: clamp(36px, 6vw, 80px) 0;
  background: linear-gradient(90deg, transparent, var(--line-dark), transparent);
}

/* ---------- Type ---------- */

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: 0.035em;
}

h1 {
  font-size: clamp(2.45rem, 7vw, 6.8rem);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 4.4rem);
}

h3 {
  font-size: clamp(1.38rem, 2.35vw, 2.2rem);
}

h4 {
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
}

.section-title {
  max-width: 900px;
  margin-bottom: clamp(24px, 4vw, 46px);
}

.section-title p {
  max-width: 760px;
  color: var(--ink-soft);
}

/* ---------- Header / Navigation ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(31, 26, 22, 0.1);
  background: rgba(255, 250, 241, 0.86);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(var(--max), calc(100% - 36px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(31, 26, 22, 0.2);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(141, 63, 43, 0.9), rgba(35, 25, 54, 0.92)),
    radial-gradient(circle at 65% 30%, rgba(198, 145, 63, 0.55), transparent 45%);
  box-shadow: 0 10px 26px rgba(31, 26, 22, 0.16);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text span:first-child {
  font-family: var(--serif);
  font-size: 1.1rem;
}

.brand-text span:last-child {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 1.7vw, 22px);
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.nav-links a:hover {
  color: var(--brick);
}

.nav-cta,
.button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 44px;
  padding: 0.72rem 1.05rem;
  border: 1px solid rgba(31, 26, 22, 0.18);
  border-radius: 999px;
  color: var(--cream);
  font-weight: 900;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--river-deep), var(--jazz));
  box-shadow: 0 14px 34px rgba(31, 26, 22, 0.18);
}

.nav-cta:hover,
.button:hover,
.btn:hover {
  color: #fff;
  transform: translateY(-1px);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: clamp(680px, 94vh, 920px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: var(--jazz);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(180deg, rgba(17, 14, 18, 0.22), rgba(17, 14, 18, 0.62) 62%, rgba(17, 14, 18, 0.92)),
    var(--hero-image, linear-gradient(135deg, var(--river-deep), var(--jazz)));
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  z-index: -2;
  background: linear-gradient(180deg, transparent, var(--paper));
}

.hero-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 118px 0 clamp(64px, 10vw, 130px);
  color: var(--cream);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
  color: #f0c37a;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.hero-kicker::before,
.hero-kicker::after {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: currentColor;
  opacity: 0.85;
}

.hero h1 {
  max-width: 1000px;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.36);
}

.hero-lead {
  max-width: 760px;
  margin-top: 1.45rem;
  color: rgba(255, 246, 229, 0.88);
  font-family: var(--serif);
  font-size: clamp(1.14rem, 2vw, 1.55rem);
  line-height: 2.05;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero .button {
  background: linear-gradient(135deg, var(--gold), var(--brick));
  color: #fff;
}

.button.secondary,
.btn.secondary {
  color: var(--cream);
  background: rgba(255, 250, 241, 0.11);
  border-color: rgba(255, 246, 229, 0.32);
  box-shadow: none;
}

.hero-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 2.6rem;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.5rem 0.85rem;
  border: 1px solid rgba(255, 246, 229, 0.24);
  border-radius: 999px;
  color: rgba(255, 246, 229, 0.84);
  font-size: 0.82rem;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

/* ---------- Cards ---------- */

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.72);
  box-shadow: var(--shadow-soft);
}

.card.pad {
  padding: clamp(22px, 3vw, 34px);
}

.card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-warm);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.card-body {
  padding: clamp(20px, 2.6vw, 30px);
}

.card-body h3 {
  margin-bottom: 0.75rem;
}

.card-body p {
  color: var(--ink-soft);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.55rem;
  color: var(--brick);
  font-weight: 900;
}

.card-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.card-link:hover::after {
  transform: translateX(4px);
}

/* ---------- Feature Tiles ---------- */

.feature-tile {
  min-height: 430px;
  display: flex;
  align-items: end;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--jazz);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.feature-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72)),
    var(--tile-image, linear-gradient(135deg, var(--river), var(--brick)));
  background-size: cover;
  background-position: center;
  transition: transform 0.9s ease;
}

.feature-tile:hover::before {
  transform: scale(1.045);
}

.feature-tile-content {
  padding: clamp(24px, 4vw, 42px);
  color: var(--cream);
}

.feature-tile-content p {
  color: rgba(255, 246, 229, 0.82);
}

.feature-tile .kicker {
  color: #f3c67e;
}

/* ---------- Split Editorial Sections ---------- */

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.split-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: var(--paper-warm);
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.split-media.small img {
  min-height: 360px;
}

.caption,
figcaption {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.65;
}

.split-copy h2 {
  margin-bottom: 1.2rem;
}

.split-copy p {
  color: var(--ink-soft);
}

/* ---------- River Band ---------- */

.river-band {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(29, 63, 79, 0.94), rgba(35, 25, 54, 0.94)),
    var(--band-image, none);
  background-size: cover;
  background-position: center;
}

.river-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(198, 145, 63, 0.22), transparent 30rem),
    linear-gradient(90deg, rgba(0, 0, 0, 0.22), transparent);
  pointer-events: none;
}

.river-band .wrap {
  position: relative;
}

.river-band p {
  color: rgba(255, 246, 229, 0.84);
}

.river-band .eyebrow,
.river-band .kicker {
  color: #f2c57c;
}

/* ---------- Story / Article Pages ---------- */

.article-hero {
  padding: clamp(84px, 12vw, 160px) 0 clamp(46px, 8vw, 90px);
  background:
    radial-gradient(circle at top right, rgba(49, 95, 115, 0.18), transparent 30rem),
    linear-gradient(180deg, var(--paper-light), var(--paper));
}

.article-hero .wrap {
  max-width: 960px;
}

.article-hero h1 {
  margin-bottom: 1.4rem;
  font-size: clamp(2.25rem, 5.7vw, 5.6rem);
}

.article-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 1.5rem 0 0;
}

.article-meta span {
  padding: 0.42rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.article {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(40px, 7vw, 88px) 0;
}

.article p {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.55vw, 1.22rem);
  line-height: 2.18;
}

.article h2 {
  margin: 3.4rem 0 1.1rem;
  font-size: clamp(1.72rem, 3.5vw, 3.2rem);
}

.article h3 {
  margin: 2.5rem 0 0.85rem;
}

.article blockquote {
  margin: clamp(34px, 6vw, 70px) 0;
  padding: clamp(24px, 4vw, 42px);
  border-left: 6px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.25vw, 2rem);
  line-height: 1.85;
  background: rgba(255, 250, 241, 0.68);
  box-shadow: var(--shadow-soft);
}

.article figure {
  margin: clamp(34px, 6vw, 70px) 0;
}

.article figure img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.article ul,
.article ol {
  padding-left: 1.35rem;
  color: var(--ink-soft);
}

.article li {
  margin-bottom: 0.65rem;
}

/* ---------- Destination / Practical Info ---------- */

.info-box {
  padding: clamp(22px, 3.5vw, 38px);
  border: 1px solid rgba(49, 95, 115, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.9), rgba(239, 227, 208, 0.72));
  box-shadow: var(--shadow-soft);
}

.info-box h3 {
  margin-bottom: 1rem;
}

.info-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.info-list li:last-child {
  border-bottom: 0;
}

.info-label {
  display: block;
  color: var(--brick);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.place-card {
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.75);
  box-shadow: var(--shadow-soft);
}

.place-card h3 {
  margin-bottom: 0.6rem;
}

.place-card address {
  color: var(--ink-soft);
  font-style: normal;
  line-height: 1.75;
}

.place-card .phone,
.place-card .web {
  display: block;
  margin-top: 0.45rem;
  font-weight: 800;
}

/* ---------- Gallery ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 28px);
}

.gallery-item {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-warm);
  box-shadow: var(--shadow-soft);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  padding: 15px 17px 18px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

/* ---------- Room Links / Subpage Navigation ---------- */

.room-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 32px);
}

.room-link {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 250, 241, 0.74);
  box-shadow: var(--shadow-soft);
}

.room-link img {
  width: 150px;
  height: 110px;
  object-fit: cover;
  border-radius: 16px;
}

.room-link h3 {
  margin-bottom: 0.35rem;
  font-size: 1.2rem;
}

.room-link p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ---------- Callout ---------- */

.callout {
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid rgba(198, 145, 63, 0.34);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(198, 145, 63, 0.18), rgba(141, 63, 43, 0.08)),
    rgba(255, 250, 241, 0.8);
  box-shadow: var(--shadow);
}

.callout.dark {
  color: var(--cream);
  border-color: rgba(255, 246, 229, 0.18);
  background:
    radial-gradient(circle at 20% 10%, rgba(198, 145, 63, 0.28), transparent 24rem),
    linear-gradient(135deg, var(--jazz), var(--river-deep));
}

.callout.dark p {
  color: rgba(255, 246, 229, 0.84);
}

/* ---------- Tables ---------- */

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.72);
  box-shadow: var(--shadow-soft);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--brick);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(198, 145, 63, 0.09);
}

tr:last-child td {
  border-bottom: 0;
}

/* ---------- Footer ---------- */

.site-footer {
  padding: clamp(50px, 7vw, 86px) 0;
  color: rgba(255, 246, 229, 0.84);
  background:
    radial-gradient(circle at 18% 10%, rgba(198, 145, 63, 0.18), transparent 26rem),
    linear-gradient(135deg, #19141d, #1d3f4f 58%, #231936);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: clamp(24px, 4vw, 54px);
}

.site-footer h2,
.site-footer h3,
.site-footer h4 {
  color: var(--cream);
}

.site-footer p {
  color: rgba(255, 246, 229, 0.76);
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.footer-links a {
  color: rgba(255, 246, 229, 0.82);
  font-weight: 800;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: clamp(34px, 5vw, 62px);
  padding-top: 24px;
  border-top: 1px solid rgba(255, 246, 229, 0.18);
  color: rgba(255, 246, 229, 0.62);
  font-size: 0.85rem;
}

/* ---------- Utility Background Hooks ---------- */

.bg-paper {
  background: var(--paper);
}

.bg-light {
  background: var(--paper-light);
}

.bg-warm {
  background: var(--paper-warm);
}

.bg-river {
  color: var(--cream);
  background: var(--river-deep);
}

.bg-jazz {
  color: var(--cream);
  background: var(--jazz);
}

.text-river {
  color: var(--river-deep);
}

.text-brick {
  color: var(--brick);
}

.text-gold {
  color: var(--gold);
}

.rounded {
  border-radius: var(--radius);
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

.shadow {
  box-shadow: var(--shadow);
}

.shadow-soft {
  box-shadow: var(--shadow-soft);
}

/* ---------- Animations ---------- */

.fade-up {
  animation: fadeUp 0.75s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .grid-4,
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .split.reverse {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-media {
    order: -1;
  }

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

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

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  .wrap,
  .site-wrap,
  .nav,
  .hero-inner,
  .article {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    position: relative;
  }

  .nav {
    min-height: auto;
    padding: 16px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    gap: 10px 16px;
  }

  .nav-links a {
    font-size: 0.8rem;
  }

  .nav-cta {
    width: 100%;
  }

  .hero {
    min-height: 720px;
  }

  .hero-inner {
    padding-top: 80px;
  }

  .hero-kicker {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.55rem;
  }

  .hero-kicker::after {
    display: none;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .gallery-grid,
  .room-grid {
    grid-template-columns: 1fr;
  }

  .room-link {
    grid-template-columns: 1fr;
  }

  .room-link img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .split-media img {
    min-height: 320px;
  }

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

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

@media (max-width: 460px) {
  .hero-actions .button,
  .hero-actions .btn {
    width: 100%;
  }

  .card-body,
  .card.pad,
  .info-box,
  .callout {
    padding: 20px;
  }

  th,
  td {
    padding: 13px 14px;
  }
}

/* ---------- Print ---------- */

@media print {
  .site-header,
  .hero-actions,
  .nav-links,
  .site-footer {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  .card,
  .callout,
  .info-box,
  .place-card {
    box-shadow: none;
    break-inside: avoid;
  }
}
