/* ============================================================
   Ruff House - サブページ専用スタイル（全面リニューアル版）
   css/ruffhouse.css
   ============================================================ */

/* ----------------------------------------
   Ruff House Color Variables
---------------------------------------- */
:root {
  --rh-bg:        #0a0a0a;
  --rh-bg2:       #111111;
  --rh-bg3:       #181818;
  --rh-white:     #f5f5f5;
  --rh-gold:      #e8e8e8;
  --rh-gold2:     #ffffff;
  --rh-text:      #c8c8c8;
  --rh-text-sub:  #707070;
  --rh-border:    rgba(255, 255, 255, 0.12);
  --rh-border2:   rgba(255, 255, 255, 0.22);
}

/* ----------------------------------------
   Body / Base
---------------------------------------- */
.rh-page {
  background-color: var(--rh-bg);
  color: var(--rh-white);
}

/* ----------------------------------------
   Header Override
---------------------------------------- */
.rh-header {
  background: rgba(12, 12, 10, 0.92) !important;
  border-color: var(--rh-border) !important;
}
.rh-header .logo-main { color: var(--rh-white); }
.rh-header .logo-sub  { color: var(--rh-text-sub); }
.rh-header .nav-link { color: var(--rh-text-sub); }
.rh-header .nav-link:hover,
.rh-header .nav-link.active { color: var(--rh-white); }
.rh-header .nav-link::after { background: var(--rh-white); }

/* Ruff House ヘッダーロゴ画像 */
.rh-header-logo-img {
  height: 30px;
  width: auto;
  display: block;
  object-fit: contain;
}
.rh-btn-header {
  background: var(--rh-white) !important;
  color: var(--rh-bg) !important;
  font-weight: 700;
}
.rh-btn-header:hover { background: #ffffff !important; }
.rh-header .hamburger span { background: var(--rh-white); }

/* ----------------------------------------
   Buttons
---------------------------------------- */
.rh-btn-primary {
  background: var(--rh-white);
  color: var(--rh-bg);
  border-color: var(--rh-white);
  font-weight: 700;
}
.rh-btn-primary:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--rh-bg);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.18);
}
.rh-btn-outline {
  background: transparent;
  color: var(--rh-white);
  border-color: rgba(255,255,255,0.45);
}
.rh-btn-outline:hover {
  background: var(--rh-white);
  color: var(--rh-bg);
  border-color: var(--rh-white);
  transform: translateY(-2px);
}

/* Hero ロゴ画像 */
.rh-hero-logo-wrap {
  margin-bottom: var(--space-xl);
}
.rh-hero-logo {
  width: clamp(240px, 36vw, 500px);
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.55));
}

/* ----------------------------------------
   HERO – 背景写真フルスクリーン
---------------------------------------- */
.rh-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-h);
}

.rh-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.rh-hero-bgimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.45);
}

.rh-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,10,10,0.88) 0%,
    rgba(10,10,10,0.58) 50%,
    rgba(10,10,10,0.22) 100%
  );
  z-index: 1;
}

.rh-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-xxl) var(--space-lg);
  width: 100%;
  max-width: 760px;
}

.rh-hero-label {
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--rh-gold);
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
  display: block;
}

.rh-hero-title {
  font-family: var(--font-hero);
  font-size: clamp(5rem, 14vw, 9rem);
  letter-spacing: 0.06em;
  line-height: 0.9;
  color: var(--rh-white);
  margin-bottom: var(--space-lg);
}

.rh-hero-tagline {
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  color: var(--rh-gold);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-xl);
  font-weight: 300;
  line-height: 1.6;
}

.rh-hero-desc {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--rh-text);
  line-height: 2.1;
  margin-bottom: var(--space-xl);
  max-width: 560px;
}

.rh-hero-btns {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Scroll indicator */
.rh-hero-scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.rh-hero-scroll .scroll-text { color: var(--rh-text-sub); }
.rh-hero-scroll .scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--rh-white), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

/* ----------------------------------------
   SECTIONS – Ruff House Common
---------------------------------------- */
.rh-section {
  padding: var(--space-3xl) 0;
  border-top: 1px solid var(--rh-border);
}

.rh-section:nth-child(even) {
  background: var(--rh-bg2);
}

.rh-section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.rh-section-head {
  margin-bottom: var(--space-xxl);
}

.rh-section-label {
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--rh-gold);
  display: block;
  margin-bottom: var(--space-sm);
}

.rh-section-title {
  font-family: var(--font-hero);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.1em;
  color: var(--rh-white);
  line-height: 1;
}

/* ----------------------------------------
   ABOUT
---------------------------------------- */
.rh-about-body {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xxl);
  align-items: center;
}

.rh-about-img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.rh-about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease);
}
.rh-about-img:hover img { transform: scale(1.03); }

.rh-about-text p {
  font-size: 0.925rem;
  color: var(--rh-text);
  line-height: 2.1;
  margin-bottom: var(--space-lg);
}

.rh-lead {
  font-size: 1.15rem !important;
  color: var(--rh-white) !important;
  font-weight: 500;
  line-height: 1.8 !important;
  margin-bottom: var(--space-xl) !important;
}

.rh-about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.rh-tag {
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--rh-gold);
  border: 1px solid var(--rh-border2);
  padding: 5px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ----------------------------------------
   HOURS & INFO
---------------------------------------- */
.rh-hours-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xxl);
}

.rh-hours-card {
  display: flex;
  gap: var(--space-xl);
  align-items: flex-start;
  background: var(--rh-bg3);
  border: 1px solid var(--rh-border);
  padding: var(--space-xl);
  transition: border-color 0.3s;
}
.rh-hours-card:hover { border-color: var(--rh-gold); }

.rh-hours-icon {
  font-size: 2rem;
  color: var(--rh-gold);
  flex-shrink: 0;
  width: 48px;
  text-align: center;
  padding-top: 4px;
}

.rh-hours-detail { flex: 1; }

.rh-hours-detail h3 {
  font-family: var(--font-en);
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: var(--rh-white);
  font-weight: 700;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.rh-hours-badge {
  font-family: var(--font-ja);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  background: rgba(255,255,255,0.12);
  color: var(--rh-text-sub);
  padding: 3px 8px;
  border-radius: 2px;
}
.rh-hours-badge--gold {
  background: var(--rh-white);
  color: var(--rh-bg);
}

.rh-hours-row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: 10px 0;
  border-bottom: 1px solid var(--rh-border);
}
.rh-hours-row:last-child { border-bottom: none; }

.rh-hours-day {
  font-size: 0.82rem;
  color: var(--rh-text);
  min-width: 120px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.rh-hours-day i { font-size: 0.75rem; color: var(--rh-gold); }
.closed-day { color: var(--rh-text-sub); }
.closed-day i { color: var(--rh-text-sub) !important; }

.rh-hours-time {
  font-family: var(--font-en);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--rh-white);
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.closed-text { color: var(--rh-text-sub) !important; font-weight: 400 !important; }
.rh-hours-time small { display: block; font-size: 0.72rem; color: var(--rh-text-sub); font-weight: 400; letter-spacing: 0.02em; }

/* Info Row */
.rh-info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  padding: var(--space-xl);
  background: var(--rh-bg3);
  border: 1px solid var(--rh-border);
}

.rh-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.rh-info-item > i {
  font-size: 1.2rem;
  color: var(--rh-gold);
  margin-top: 4px;
  width: 20px;
  flex-shrink: 0;
  text-align: center;
}

.rh-info-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--rh-text-sub);
  margin-bottom: 6px;
  font-weight: 500;
}

.rh-info-value {
  font-size: 0.9rem;
  color: var(--rh-text);
  line-height: 1.7;
}

.rh-info-tel {
  font-family: var(--font-en);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--rh-white);
  transition: color 0.2s;
}
.rh-info-tel:hover { color: var(--rh-gold); }

.rh-info-insta {
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 600;
  color: var(--rh-gold);
  transition: color 0.2s;
}
.rh-info-insta:hover { color: var(--rh-gold2); }

.rh-info-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--rh-gold);
  margin-top: 8px;
  transition: color 0.2s;
}
.rh-info-link:hover { color: var(--rh-gold2); }

/* ----------------------------------------
   PARTY PLAN
---------------------------------------- */
.rh-party-intro {
  max-width: 680px;
  font-size: 1rem;
  color: var(--rh-text);
  line-height: 2;
  margin-bottom: var(--space-xxl);
}
.rh-party-intro strong { color: var(--rh-gold); }

.rh-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xxl);
}

.rh-plan-card {
  background: var(--rh-bg3);
  border: 1px solid var(--rh-border);
  padding: var(--space-xl);
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.rh-plan-card:hover {
  border-color: rgba(201,165,90,0.45);
  transform: translateY(-3px);
}

.rh-plan-card--featured {
  border-color: var(--rh-border2);
  background: linear-gradient(135deg, #1c1c1c 0%, var(--rh-bg3) 100%);
}
.rh-plan-card--featured:hover {
  border-color: var(--rh-white);
}

.rh-plan-badge {
  font-family: var(--font-en);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  background: rgba(255,255,255,0.1);
  color: var(--rh-text-sub);
  padding: 4px 12px;
  display: inline-block;
  margin-bottom: var(--space-md);
}
.rh-plan-badge--gold {
  background: var(--rh-white);
  color: var(--rh-bg);
}

.rh-plan-head {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--rh-border);
}

.rh-plan-name {
  font-size: 1rem;
  color: var(--rh-white);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: var(--space-md);
}

.rh-plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.rh-plan-yen {
  font-family: var(--font-hero);
  font-size: 2.5rem;
  color: var(--rh-gold);
  letter-spacing: 0.04em;
  line-height: 1;
}

.rh-plan-unit {
  font-size: 0.8rem;
  color: var(--rh-text-sub);
}

.rh-plan-list {
  list-style: none;
  margin-bottom: var(--space-lg);
}

.rh-plan-list li {
  font-size: 0.875rem;
  color: var(--rh-text);
  padding: 10px 0;
  border-bottom: 1px solid var(--rh-border);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}
.rh-plan-list li:last-child { border-bottom: none; }
.rh-plan-list li i { color: var(--rh-gold); font-size: 0.85rem; margin-top: 2px; flex-shrink: 0; }

.rh-plan-menu {
  background: rgba(0,0,0,0.25);
  border-left: 3px solid var(--rh-white);
  padding: var(--space-md) var(--space-lg);
}
.rh-plan-menu-title {
  font-size: 0.75rem;
  color: var(--rh-gold);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  font-weight: 600;
}
.rh-plan-menu p { font-size: 0.85rem; color: var(--rh-text); line-height: 1.7; }
.rh-plan-menu small { font-size: 0.72rem; color: var(--rh-text-sub); display: block; margin-top: 4px; }

/* Options Grid */
.rh-plan-options {
  background: var(--rh-bg3);
  border: 1px solid var(--rh-border);
  padding: var(--space-xl);
  margin-bottom: var(--space-xxl);
}

.rh-plan-options-title {
  font-family: var(--font-en);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--rh-gold);
  margin-bottom: var(--space-xl);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.rh-options-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.rh-option-item {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--rh-border);
  padding: var(--space-md) var(--space-lg);
  font-size: 0.82rem;
  color: var(--rh-text);
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  transition: border-color 0.2s;
}
.rh-option-item:hover { border-color: var(--rh-gold); }
.rh-option-item i { color: var(--rh-gold); font-size: 1rem; }
.rh-option-item small { font-size: 0.72rem; color: var(--rh-text-sub); }

.rh-option-add {
  border-color: var(--rh-border);
  background: rgba(255,255,255,0.04);
}
.rh-option-add strong { color: var(--rh-white); font-size: 0.95rem; }

.rh-party-cta {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
}

/* ----------------------------------------
   GALLERY – 実写真グリッド
---------------------------------------- */
.rh-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 6px;
}

.rh-gallery-item {
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.rh-gallery-item.rh-gallery-lg {
  grid-column: span 1;
  grid-row: span 2;
  aspect-ratio: auto;
}

.rh-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s var(--ease), filter 0.3s;
  filter: brightness(0.85);
}

.rh-gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}

.rh-gallery-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-en);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  padding: 24px 12px 10px;
  transform: translateY(100%);
  transition: transform 0.3s var(--ease);
}

.rh-gallery-item:hover .rh-gallery-cap {
  transform: translateY(0);
}

/* ----------------------------------------
   INSTAGRAM
---------------------------------------- */
.rh-instagram {
  background: var(--rh-bg2) !important;
}

.rh-insta-intro {
  font-size: 0.95rem;
  color: var(--rh-text);
  margin-bottom: var(--space-xl);
}

.rh-insta-account {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  font-family: var(--font-en);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--rh-white);
  border: 1px solid var(--rh-border2);
  padding: var(--space-md) var(--space-xl);
  margin-bottom: var(--space-xxl);
  transition: all 0.25s;
  letter-spacing: 0.06em;
}
.rh-insta-account i { font-size: 1.5rem; }
.rh-insta-account:hover {
  background: var(--rh-white);
  color: var(--rh-bg);
  border-color: var(--rh-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.14);
}

.rh-insta-embed-wrap {
  width: 100%;
}

.rh-insta-placeholder {
  background: var(--rh-bg3);
  border: 1px dashed var(--rh-border2);
  padding: var(--space-xxl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  text-align: center;
}
.rh-insta-placeholder i { font-size: 3rem; color: var(--rh-white); }
.rh-insta-placeholder p { font-size: 0.9rem; color: var(--rh-text-sub); }

/* ----------------------------------------
   ACCESS
---------------------------------------- */
.rh-access-body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-xxl);
  align-items: start;
}

.rh-access-info h3 {
  font-size: 1rem;
  color: var(--rh-white);
  margin-bottom: var(--space-lg);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.rh-access-info h3 i { color: var(--rh-gold); }

.rh-access-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-xl);
}

.rh-access-table th,
.rh-access-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--rh-border);
  text-align: left;
  vertical-align: top;
  font-size: 0.875rem;
}

.rh-access-table th {
  width: 90px;
  color: var(--rh-text-sub);
  font-weight: 500;
  white-space: nowrap;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

.rh-access-table td { color: var(--rh-text); }

.rh-access-table td a {
  color: var(--rh-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.rh-access-table td a:hover { color: var(--rh-gold2); }

.rh-access-btns {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.rh-access-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 420px;
  filter: brightness(0.88);
  transition: filter 0.3s;
}
.rh-access-photo:hover { filter: brightness(1); }

/* Google Map iframe wrapper */
.rh-access-map iframe {
  width: 100%;
  min-height: 420px;
  height: 100%;
  display: block;
  border: 0;
}

/* ----------------------------------------
   FOOTER – Ruff House
---------------------------------------- */
.rh-footer {
  background: #06060504 !important;
  background: rgba(6,6,5,0.98) !important;
  border-top: 1px solid var(--rh-border);
}

/* Footer ロゴ画像 */
.rh-footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 4px;
}

.rh-footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 6px;
}
.rh-footer-logo span {
  font-family: var(--font-hero);
  font-size: 2rem;
  color: var(--rh-white);
  letter-spacing: 0.08em;
}
.rh-footer-logo small {
  font-family: var(--font-en);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
}

.rh-footer-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
}

/* ----------------------------------------
   BACK TO TOP (dark override)
---------------------------------------- */
.rh-page .back-to-top {
  background: var(--rh-white);
  color: var(--rh-bg);
}
.rh-page .back-to-top:hover { background: #ffffff; }

/* ----------------------------------------
   RESPONSIVE – Tablet (max 1024px)
---------------------------------------- */
@media (max-width: 1024px) {
  .rh-about-body { grid-template-columns: 1fr 1.2fr; }
  .rh-hours-body { grid-template-columns: 1fr 1fr; }
  .rh-info-row { grid-template-columns: 1fr 1fr; }
  .rh-plans { grid-template-columns: 1fr 1fr; }
  .rh-options-grid { grid-template-columns: repeat(3, 1fr); }
  .rh-gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .rh-access-body { grid-template-columns: 1.2fr 1fr; }
}

/* ----------------------------------------
   RESPONSIVE – Mobile (max 768px)
---------------------------------------- */
@media (max-width: 768px) {
  .rh-hero-inner { max-width: 100%; }
  .rh-hero-title { font-size: clamp(4rem, 18vw, 7rem); }
  .rh-hero-btns { flex-direction: column; }
  .rh-hero-btns .btn { width: 100%; justify-content: center; }

  .rh-about-body { grid-template-columns: 1fr; }
  .rh-hours-body { grid-template-columns: 1fr; }
  .rh-info-row { grid-template-columns: 1fr; }
  .rh-plans { grid-template-columns: 1fr; }
  .rh-options-grid { grid-template-columns: repeat(2, 1fr); }
  .rh-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rh-gallery-item.rh-gallery-lg {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
  }
  .rh-access-body { grid-template-columns: 1fr; }
  .rh-party-cta { flex-direction: column; }
  .rh-party-cta .btn { width: 100%; justify-content: center; }

  /* Mobile Nav Open */
  .rh-header .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0; bottom: 0;
    background: var(--rh-bg);
    padding: var(--space-xl) var(--space-lg);
    overflow-y: auto;
    z-index: 999;
    border-top: 1px solid var(--rh-border);
  }
  .rh-header .nav.open .nav-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .rh-header .nav.open .nav-list li {
    width: 100%;
    display: block;
  }
  .rh-header .nav.open .nav-link {
    display: block;
    width: 100%;
    font-size: 1.1rem;
    padding: 18px 0;
    border-bottom: 1px solid var(--rh-border);
    color: var(--rh-white);
    letter-spacing: 0.1em;
    white-space: nowrap;
  }
}

/* ----------------------------------------
   RESPONSIVE – Small Mobile (max 480px)
---------------------------------------- */
@media (max-width: 480px) {
  .rh-options-grid { grid-template-columns: 1fr 1fr; }
  .rh-gallery-grid { grid-template-columns: 1fr; }
  .rh-gallery-item.rh-gallery-lg {
    grid-column: span 1;
    aspect-ratio: 16 / 9;
  }
  .rh-hours-row { flex-direction: column; gap: var(--space-sm); }
  .rh-hours-day { min-width: auto; }
}
