/* =============================================
   HOTEL Mr.KINJO - Main Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Cormorant+Garamond:wght@400;600&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:       #0d2b3e;
  --primary-light: #1a4a6b;
  --accent:        #c4984a;
  --accent-light:  #e8c77a;
  --bg:            #f7f6f2;
  --white:         #ffffff;
  --text:          #2d2d2d;
  --text-light:    #666666;
  --border:        #e0ddd5;
  --section-gap:   80px;
  --radius:        4px;
  --shadow:        0 4px 20px rgba(0,0,0,.08);
  --shadow-hover:  0 8px 32px rgba(0,0,0,.14);
  --transition:    .25s ease;
  --max-width:     1200px;
  --font-jp:       'Noto Sans JP', sans-serif;
  --font-en:       'Cormorant Garamond', serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-jp);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul, ol { list-style: none; }

/* ---- Layout ---- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-gap) 0; }
.section--gray { background: #f0ede6; }
.section--dark { background: var(--primary); color: var(--white); }

/* ---- Typography ---- */
.section-heading {
  text-align: center;
  margin-bottom: 48px;
}
.section-heading__en {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}
.section-heading__ja {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: .06em;
  display: block;
  position: relative;
  padding-bottom: 20px;
}
.section-heading__ja::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 2px;
  background: var(--accent);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .08em;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border-radius: var(--radius);
}
.btn--primary {
  background: var(--accent);
  color: var(--white);
}
.btn--primary:hover { background: #b5883c; box-shadow: 0 4px 16px rgba(196,152,74,.35); }
.btn--outline {
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent);
}
.btn--outline:hover { background: var(--accent); color: var(--white); }
.btn--dark {
  background: var(--primary);
  color: var(--white);
}
.btn--dark:hover { background: var(--primary-light); }
.btn--reserve {
  background: #d94f3d;
  color: var(--white);
  font-size: 15px;
  padding: 15px 36px;
}
.btn--reserve:hover { background: #c0432f; }
.btn i { font-size: 13px; }

/* ====================================================
   HEADER
   ==================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}

/* Info bar */
.header-info {
  background: var(--primary);
  color: var(--white);
  font-size: 13px;
  padding: 6px 0;
}
.header-info__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.header-info__tel {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.header-info__tel a { color: var(--accent-light); font-size: 17px; font-weight: 700; letter-spacing: .04em; }
.header-info__hours { color: #b0c4d4; font-size: 12px; }
.header-info__label { color: #8aa8be; font-size: 12px; }

/* Main nav */
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
}
.site-logo { display: flex; flex-direction: column; line-height: 1; }
.site-logo__en {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: .04em;
}
.site-logo__ja { font-size: 10px; color: var(--text-light); letter-spacing: .12em; margin-top: 2px; }

.global-nav { display: flex; align-items: center; gap: 32px; }
.global-nav a {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--text);
  padding: 4px 0;
  position: relative;
}
.global-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width var(--transition);
}
.global-nav a:hover::after, .global-nav a.active::after { width: 100%; }
.global-nav a:hover, .global-nav a.active { color: var(--primary); }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--primary);
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(13,43,62,.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.mobile-nav.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.mobile-nav a {
  color: var(--white);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: .12em;
}
.mobile-nav a:hover { color: var(--accent-light); }
.mobile-nav__close {
  position: absolute;
  top: 24px; right: 24px;
  background: none; border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
}
.mobile-nav__tel {
  margin-top: 16px;
  text-align: center;
  color: #8aa8be;
  font-size: 13px;
}
.mobile-nav__tel a { color: var(--accent-light); font-size: 22px; font-weight: 700; display: block; margin-top: 4px; }

/* ====================================================
   HERO
   ==================================================== */
.hero {
  position: relative;
  height: 580px;
  background:
    linear-gradient(90deg, rgba(13,43,62,.88) 0%, rgba(13,43,62,.72) 42%, rgba(13,43,62,.28) 100%),
    url("../img/hero-okinawa-hotel.png") center center / cover no-repeat;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,43,62,.08) 0%, rgba(13,43,62,.36) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 48px;
  max-width: 680px;
}
.hero__catch-en {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 20px;
  display: block;
}
.hero__title {
  font-family: var(--font-en);
  font-size: 52px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: .02em;
}
.hero__title span { color: var(--accent-light); }
.hero__subtitle {
  color: rgba(255,255,255,.84);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: .06em;
  margin-bottom: 36px;
  line-height: 1.9;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Wave divider */
.wave-divider { line-height: 0; }
.wave-divider svg { display: block; width: 100%; }

/* ====================================================
   HOTELS SECTION (Top)
   ==================================================== */
.hotel-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; align-items: stretch; }
.hotel-card-wrap { display: flex; min-width: 0; }

.hotel-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.hotel-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.hotel-card__image {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.hotel-card__image-inner {
  width: 100%; height: 100%;
  transition: transform .4s ease;
}
.hotel-card:hover .hotel-card__image-inner { transform: scale(1.04); }

/* Placeholder hotel images using gradients */
.hotel-img--dbuil {
  background: linear-gradient(160deg, rgba(26,58,92,.35), rgba(45,106,138,.35)), url("../img/hotels/d-buil-main.jpg") center/cover;
  display: flex; align-items: center; justify-content: center;
}
.hotel-img--esupowaru {
  background: linear-gradient(160deg, rgba(26,74,58,.35), rgba(45,122,90,.35)), url("../img/hotels/espoir-main.jpg") center/cover;
  display: flex; align-items: center; justify-content: center;
}
.hotel-card__badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 4px 10px;
  border-radius: 2px;
}
.hotel-card__body {
  padding: 24px;
  display: flex;
  flex: 1;
  flex-direction: column;
}
.hotel-card__area {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: .1em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 5px;
  margin-bottom: 8px;
}
.hotel-card__name {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.3;
}
.hotel-card__desc { font-size: 13.5px; color: var(--text-light); margin-bottom: 20px; line-height: 1.75; }
.hotel-card__features {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 20px;
  align-content: flex-start;
}
.hotel-card__tag {
  font-size: 11px;
  padding: 3px 10px;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--text-light);
  display: flex; align-items: center; gap: 4px;
}
.hotel-card__footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.hotel-card__price { font-size: 12px; color: var(--text-light); }
.hotel-card__price strong { font-size: 18px; color: var(--primary); font-weight: 700; }
.hotel-card__price span { font-size: 11px; }

/* Region tabs */
.region-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 36px;
  justify-content: center;
}
.region-tab {
  padding: 8px 22px;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  font-size: 13px;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
  color: var(--text-light);
  font-family: var(--font-jp);
}
.region-tab.active, .region-tab:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* ====================================================
   NEWS
   ==================================================== */
.news-list { display: flex; flex-direction: column; gap: 0; }
.news-item {
  display: flex; align-items: flex-start; gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.news-item:hover { background: rgba(196,152,74,.05); }
.news-item:first-child { border-top: 1px solid var(--border); }
.news-item__date { font-size: 13px; color: var(--text-light); white-space: nowrap; min-width: 100px; margin-top: 2px; }
.news-item__cat {
  font-size: 11px;
  padding: 2px 10px;
  border-radius: 2px;
  white-space: nowrap;
  font-weight: 500;
  min-width: 80px;
  text-align: center;
}
.cat--info { background: #e8f0f8; color: #2d6a9e; }
.cat--open { background: #e8f8ec; color: #2d8a4a; }
.cat--campaign { background: #fdf3e3; color: #c4784a; }
.cat--notice { background: #f8e8e8; color: #9e2d2d; }
.news-item__title { font-size: 14.5px; color: var(--text); flex: 1; }
.news-item__title:hover { color: var(--accent); }

.news-more { text-align: center; margin-top: 36px; }

/* ====================================================
   FEATURES
   ==================================================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } }

.feature-card {
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.feature-card__img {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.feature-card__img-inner { width: 100%; height: 100%; transition: transform .4s ease; }
.feature-card:hover .feature-card__img-inner { transform: scale(1.05); }
.feature-card__body { padding: 20px; }
.feature-card__cat {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 4px;
}
.feature-card__title { font-size: 15px; font-weight: 700; color: var(--primary); line-height: 1.4; margin-bottom: 8px; }
.feature-card__desc { font-size: 13px; color: var(--text-light); line-height: 1.7; }

/* Feature image sprite */
.feat-img--1,
.feat-img--2,
.feat-img--3,
.feat-img--4,
.feat-img--5,
.feat-img--6 {
  background-image: linear-gradient(135deg, rgba(13,43,62,.16), rgba(13,43,62,.04)), url("../img/feature-sprite.png");
  background-size: 300% 200%;
}
.feat-img--1 { background-position: 0% 0%; }
.feat-img--2 { background-position: 50% 0%; }
.feat-img--3 { background-position: 100% 0%; }
.feat-img--4 { background-position: 0% 100%; }
.feat-img--5 { background-position: 50% 100%; }
.feat-img--6 { background-position: 100% 100%; }
.feat-img-placeholder {
  display: none;
}

/* ====================================================
   FAQ
   ==================================================== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none; border: none;
  display: flex; align-items: center; gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-jp);
}
.faq-question__q {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.faq-question__text { flex: 1; font-size: 15px; font-weight: 500; color: var(--text); }
.faq-question__icon { color: var(--accent); transition: transform var(--transition); font-size: 14px; }
.faq-item.open .faq-question__icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 0 20px 44px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.85;
}
.faq-answer__a {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 13px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  float: left;
  margin-right: 12px; margin-top: 0;
}

/* ====================================================
   HOTEL DETAIL PAGE
   ==================================================== */
.hotel-detail-hero {
  height: 420px;
  display: flex; align-items: flex-end;
  padding: 48px;
  position: relative;
}
.hotel-detail-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,43,62,.8) 0%, rgba(13,43,62,.2) 100%);
}
.hotel-detail-hero__content { position: relative; z-index: 1; }
.hotel-detail-hero__area {
  font-size: 12px; letter-spacing: .15em; color: var(--accent-light);
  text-transform: uppercase; margin-bottom: 8px;
  display: flex; align-items: center; gap: 6px;
}
.hotel-detail-hero__name {
  font-size: 38px; font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.hotel-detail-body { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
@media (max-width: 900px) { .hotel-detail-body { grid-template-columns: 1fr; } }

.hotel-intro { font-size: 15px; line-height: 1.9; color: var(--text); margin-bottom: 36px; }

.room-list { display: flex; flex-direction: column; gap: 24px; }
.room-card {
  display: grid; grid-template-columns: 200px 1fr;
  gap: 24px; background: var(--white);
  border-radius: 6px; overflow: hidden;
  box-shadow: var(--shadow);
}
@media (max-width: 640px) { .room-card { grid-template-columns: 1fr; } }
.room-card__img { min-height: 160px; }
.room-card__img-inner { width: 100%; height: 100%; }
.room-img--std { background: linear-gradient(135deg, rgba(42,58,92,.28), rgba(74,90,138,.28)), url("../img/hotels/d-buil-double.jpg") center/cover; }
.room-img--sup { background: linear-gradient(135deg, rgba(26,74,74,.28), rgba(58,122,122,.28)), url("../img/hotels/d-buil-twin.jpg") center/cover; }
.room-img--ov  { background: linear-gradient(135deg, #1a3a6a 0%, #2a6aaa 100%); }
.room-img--deluxe { background: linear-gradient(135deg, rgba(74,42,26,.28), rgba(138,90,58,.28)), url("../img/hotels/d-buil-twin.jpg") center/cover; }
.room-img--espoir-twin { background: linear-gradient(135deg, rgba(42,58,92,.26), rgba(74,90,138,.26)), url("../img/hotels/espoir-twin.jpg") center/cover; }
.room-img--espoir-dx { background: linear-gradient(135deg, rgba(26,74,74,.26), rgba(58,122,122,.26)), url("../img/hotels/espoir-dx-twin.jpg") center/cover; }
.room-card__body { padding: 20px 20px 20px 0; }
@media (max-width: 640px) { .room-card__body { padding: 20px; } }
.room-card__name { font-size: 17px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.room-card__desc { font-size: 13px; color: var(--text-light); line-height: 1.75; margin-bottom: 12px; }
.room-card__info { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.room-card__info-item { font-size: 12px; color: var(--text-light); display: flex; align-items: center; gap: 4px; }
.room-card__price { font-size: 12px; color: var(--text-light); }
.room-card__price strong { font-size: 20px; color: var(--primary); font-weight: 700; }

/* Sidebar */
.hotel-sidebar { position: sticky; top: 120px; }
.reserve-box {
  background: var(--white);
  border-radius: 6px;
  box-shadow: var(--shadow);
  padding: 28px;
  margin-bottom: 24px;
}
.reserve-box__title { font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.reserve-box__site { font-size: 13px; color: var(--text-light); margin-bottom: 12px; }
.reserve-box__btn { width: 100%; justify-content: center; margin-bottom: 10px; }
.reserve-box__note { font-size: 11px; color: var(--text-light); text-align: center; margin-top: 12px; line-height: 1.6; }

.hotel-info-box {
  background: var(--white);
  border-radius: 6px;
  box-shadow: var(--shadow);
  padding: 24px;
}
.hotel-info-box__title { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.hotel-info-table { width: 100%; font-size: 13px; }
.hotel-info-table th { color: var(--text-light); font-weight: 400; text-align: left; padding: 7px 0; width: 40%; vertical-align: top; }
.hotel-info-table td { padding: 7px 0; color: var(--text); font-weight: 500; }

/* Section title left aligned */
.section-title-left {
  font-size: 20px; font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
  position: relative;
}
.section-title-left::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 60px; height: 2px;
  background: var(--accent);
}

/* ====================================================
   BREADCRUMB
   ==================================================== */
.breadcrumb {
  background: var(--bg);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.breadcrumb__list { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb__item { font-size: 12.5px; color: var(--text-light); }
.breadcrumb__item a { color: var(--primary); }
.breadcrumb__item a:hover { color: var(--accent); }
.breadcrumb__sep { color: var(--border); font-size: 12px; }

/* ====================================================
   PAGE HERO (inner pages)
   ==================================================== */
.page-hero {
  background: linear-gradient(135deg, #0d2b3e 0%, #1a4a6b 100%);
  padding: 60px 0;
  text-align: center;
}
.page-hero__en {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-light);
  display: block;
  margin-bottom: 12px;
}
.page-hero__title {
  font-size: 30px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: .08em;
}

/* ====================================================
   COMPANY / LEGAL
   ==================================================== */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 {
  font-size: 20px; font-weight: 700;
  color: var(--primary);
  margin: 36px 0 16px;
  padding-left: 14px;
  border-left: 3px solid var(--accent);
}
.legal-content h3 {
  font-size: 16px; font-weight: 700;
  color: var(--primary);
  margin: 24px 0 10px;
}
.legal-content p, .legal-content li { font-size: 14px; line-height: 1.9; color: var(--text); margin-bottom: 10px; }
.legal-content ul { list-style: disc; padding-left: 20px; }
.legal-content ol { list-style: decimal; padding-left: 20px; }

.company-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.company-table th {
  background: #f0ede6;
  color: var(--primary);
  font-weight: 500;
  text-align: left;
  padding: 14px 20px;
  width: 200px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.company-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  line-height: 1.7;
}
.terms-table {
  margin: 14px 0 24px;
  border-collapse: separate;
  border-spacing: 0;
}
.terms-table th { width: auto; }
.terms-table:not(.terms-table--compact) > tbody > tr {
  display: block;
  margin-bottom: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.terms-table:not(.terms-table--compact) > tbody > tr.terms-table__title {
  margin: 28px 0 10px;
  background: var(--primary);
  border: 0;
  border-radius: 6px;
}
.terms-table:not(.terms-table--compact) > tbody > tr.terms-table__title > th {
  display: block;
  width: 100%;
  padding: 12px 16px;
  background: var(--primary);
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  border-bottom: 0;
}
.terms-table:not(.terms-table--compact) > tbody > tr:not(.terms-table__title) > th {
  display: block;
  width: 100%;
  padding: 10px 16px;
  background: #f0ede6;
  color: var(--primary);
  font-weight: 700;
  border-bottom: 1px solid var(--border);
}
.terms-table:not(.terms-table--compact) > tbody > tr:not(.terms-table__title) > td {
  display: block;
  width: 100%;
  padding: 16px;
  border-bottom: 0;
}
.terms-table ol,
.terms-table ul { margin: 0; }
.terms-table table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}
.terms-table--compact th,
.terms-table--compact td {
  text-align: center;
  vertical-align: middle;
}
.terms-appendix {
  margin: 22px 0 34px;
}
.terms-note {
  margin: 12px 0 24px;
  padding: 16px 18px;
  background: #f7f6f2;
  border: 1px solid var(--border);
  border-radius: 6px;
}
.terms-note p {
  margin-bottom: 8px;
  font-size: 13px;
}
.terms-note ol {
  margin: 0;
  padding-left: 22px;
}
.terms-note li {
  margin-bottom: 5px;
  font-size: 13px;
  line-height: 1.75;
}
.terms-revised {
  margin-top: 28px;
  text-align: right;
  color: var(--text-light);
  font-size: 13px;
}

/* ====================================================
   FOOTER
   ==================================================== */
.site-footer {
  background: var(--primary);
  color: #8aa8be;
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 960px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-inner { grid-template-columns: 1fr; } }

.footer-brand__logo {
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-brand__sub { font-size: 11px; letter-spacing: .12em; color: #8aa8be; margin-bottom: 16px; }
.footer-brand__desc { font-size: 12.5px; line-height: 1.85; color: #8aa8be; margin-bottom: 20px; }
.footer-brand__tel { font-size: 13px; color: #b0d0e8; }
.footer-brand__tel a { color: var(--accent-light); font-size: 20px; font-weight: 700; display: block; }
.footer-brand__tel span { font-size: 11px; color: #8aa8be; }

.footer-nav__title { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-light); margin-bottom: 16px; font-weight: 700; }
.footer-nav__list { display: flex; flex-direction: column; gap: 10px; }
.footer-nav__list a { font-size: 13px; color: #8aa8be; transition: color var(--transition); }
.footer-nav__list a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom__copy { font-size: 12px; color: #5a7a8e; }
.footer-bottom__links { display: flex; gap: 20px; }
.footer-bottom__links a { font-size: 12px; color: #5a7a8e; transition: color var(--transition); }
.footer-bottom__links a:hover { color: #8aa8be; }

/* ====================================================
   UTILITIES
   ==================================================== */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-24 { margin-bottom: 24px; }
.mb-48 { margin-bottom: 48px; }

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 768px) {
  :root { --section-gap: 56px; }

  .header-info__inner {
    justify-content: center;
    gap: 3px 12px;
    padding: 0 12px;
    text-align: center;
  }
  .header-info__label { display: none; }
  .header-info__hours {
    flex-basis: 100%;
    font-size: 11px;
    line-height: 1.35;
  }

  .global-nav { display: none; }
  .nav-toggle { display: flex; }

  .hero { height: 460px; }
  .hero__content { padding: 0 24px; }
  .hero__title { font-size: 36px; }

  .hotel-cards { grid-template-columns: 1fr; }

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

  .hotel-detail-hero { height: 300px; padding: 32px 24px; }
  .hotel-detail-hero__name { font-size: 28px; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .section-heading__ja { font-size: 22px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 28px; }
  .hero__actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}

/* ====================================================
   News detail / inner layout
   ==================================================== */
.inner-layout { display: grid; grid-template-columns: 1fr 280px; gap: 40px; align-items: start; }
@media (max-width: 900px) { .inner-layout { grid-template-columns: 1fr; } }

.sidebar-widget {
  background: var(--white);
  border-radius: 6px;
  box-shadow: var(--shadow);
  padding: 24px;
  margin-bottom: 20px;
}
.sidebar-widget__title {
  font-size: 14px; font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.sidebar-widget__list { display: flex; flex-direction: column; gap: 10px; }
.sidebar-widget__list a { font-size: 13px; color: var(--text); display: flex; align-items: center; gap: 6px; }
.sidebar-widget__list a:hover { color: var(--accent); }
.sidebar-widget__list a i { color: var(--accent); font-size: 11px; }

/* Pagination */
.pagination {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 48px;
}
.pagination a, .pagination span {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text);
  transition: all var(--transition);
}
.pagination a:hover, .pagination .current {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* Amenity grid */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.amenity-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-light);
  padding: 10px 14px;
  background: var(--bg);
  border-radius: var(--radius);
}
.amenity-item i { color: var(--accent); width: 16px; text-align: center; }

/* Access map placeholder */
.map-placeholder {
  width: 100%; height: 240px;
  background: #d0d8e0;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: #8a9aaa; font-size: 14px;
  gap: 8px;
  margin-top: 16px;
}

.map-embed {
  width: 100%;
  margin-top: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #d0d8e0;
}

/* Alert banner */
.alert-banner {
  background: #fdf3e3;
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 13.5px;
  color: var(--text);
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 24px;
}
.alert-banner i { color: var(--accent); margin-top: 2px; }
