/* ===========================================================
   ELE HOTEL — design system
   =========================================================== */

:root {
  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.0625rem);
  --text-lg: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.1vw, 2.125rem);
  --text-2xl: clamp(2rem, 1.3rem + 2.2vw, 3.25rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  --content-narrow: 680px;
  --content-default: 1040px;
  --content-wide: 1280px;

  --transition-interactive: 200ms cubic-bezier(0.16, 1, 0.3, 1);

  --font-display: 'Outfit', 'Noto Sans JP', 'Noto Sans SC', system-ui, sans-serif;
  --font-body: 'Noto Sans JP', 'Noto Sans SC', 'Outfit', system-ui, sans-serif;
}

:root,
[data-theme='light'] {
  --color-bg: #fdfaf4;
  --color-surface: #f3e9d9;
  --color-surface-2: #fffdf8;
  --color-surface-offset: #e9dbc3;
  --color-border: #cdb894;
  --color-divider: #ded0b6;
  --color-text: #1d1710;
  --color-text-muted: #574a39;
  --color-text-faint: #877560;
  --color-text-inverse: #fffdf8;
  --color-primary: #8a5522;
  --color-primary-hover: #6d4118;
  --color-primary-soft: #f0e0c6;
  --color-accent: #3f5c46;
  --color-accent-soft: #e2ebe1;
  --b-hotel: #96602c;
  --b-apart: #3d6a88;
  --b-onsen: #46714a;
  --b-grand: #211a11;
  --b-grand-gold: #9a7434;
  --shadow-sm: 0 1px 2px rgb(45 32 18 / 0.1);
  --shadow-md: 0 6px 20px rgb(45 32 18 / 0.13);
  --shadow-lg: 0 18px 48px rgb(45 32 18 / 0.2);
  --hero-scrim: linear-gradient(100deg, rgb(253 250 244 / 0.98) 0%, rgb(253 250 244 / 0.95) 52%, rgb(253 250 244 / 0.4) 82%, rgb(253 250 244 / 0.05) 100%);
}

[data-theme='dark'] {
  --color-bg: #100d08;
  --color-surface: #1a150e;
  --color-surface-2: #201a11;
  --color-surface-offset: #291f14;
  --color-border: #453723;
  --color-divider: #332818;
  --color-text: #f6efe0;
  --color-text-muted: #bdae95;
  --color-text-faint: #8d7d66;
  --color-text-inverse: #100d08;
  --color-primary: #e0a765;
  --color-primary-hover: #eebe86;
  --color-primary-soft: #38270f;
  --color-accent: #9cbb92;
  --color-accent-soft: #1a2618;
  --b-hotel: #dda66a;
  --b-apart: #85b1cc;
  --b-onsen: #8dbb8d;
  --b-grand: #0d0a06;
  --b-grand-gold: #e0bd75;
  --shadow-sm: 0 1px 2px rgb(0 0 0 / 0.4);
  --shadow-md: 0 6px 20px rgb(0 0 0 / 0.45);
  --shadow-lg: 0 18px 48px rgb(0 0 0 / 0.55);
  --hero-scrim: linear-gradient(100deg, rgb(16 13 8 / 0.98) 0%, rgb(16 13 8 / 0.95) 52%, rgb(16 13 8 / 0.5) 82%, rgb(16 13 8 / 0.1) 100%);
}

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

html {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  min-height: 100dvh;
  line-height: 1.75;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

img,
picture,
svg,
iframe {
  display: block;
  max-width: 100%;
  height: auto;
}

ul[role='list'],
ol[role='list'] {
  list-style: none;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

h1,
h2,
h3,
h4 {
  line-height: 1.25;
  text-wrap: balance;
  font-weight: 600;
  letter-spacing: -0.01em;
}

p {
  text-wrap: pretty;
}

a {
  color: inherit;
}

a,
button,
input,
select,
summary {
  transition:
    color var(--transition-interactive),
    background var(--transition-interactive),
    border-color var(--transition-interactive),
    box-shadow var(--transition-interactive),
    transform var(--transition-interactive);
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

::selection {
  background: var(--color-primary-soft);
  color: var(--color-text);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* ---------- layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-5), 4vw, var(--space-10));
}

.section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
}

.section--tight {
  padding-block: clamp(var(--space-12), 6vw, var(--space-20));
}

.section--surface {
  background: var(--color-surface);
}

.eyebrow {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.section-head {
  max-width: 46rem;
  margin-bottom: clamp(var(--space-8), 4vw, var(--space-12));
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  white-space: pre-line;
}

.section-head p {
  margin-top: var(--space-4);
  color: var(--color-text-muted);
  max-width: 42rem;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.75rem 1.375rem;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
}
[data-theme='dark'] .btn--primary {
  color: #071013;
}
.btn--primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
}

.btn--ghost {
  border-color: var(--color-border);
  color: var(--color-text);
  background: var(--color-surface-2);
}
.btn--ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: var(--text-xs);
}

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: color-mix(in srgb, var(--color-bg) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
}
.header--scrolled {
  border-bottom-color: var(--color-divider);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  min-height: 4.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  color: var(--color-text);
  flex-shrink: 0;
}
.logo svg {
  width: 30px;
  height: 30px;
  color: var(--b-hotel);
}
.logo__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: 0.1em;
  line-height: 1;
}
.logo__sub {
  display: block;
  font-size: 0.5625rem;
  letter-spacing: 0.14em;
  color: var(--color-text-faint);
  font-weight: 500;
  margin-top: 3px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(var(--space-3), 1.6vw, var(--space-6));
  margin-inline-start: auto;
}
.nav a {
  font-size: var(--text-sm);
  text-decoration: none;
  color: var(--color-text-muted);
  font-weight: 500;
  white-space: nowrap;
}
.nav a:hover {
  color: var(--color-primary);
}

.header__tools {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
}

.langs {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  background: var(--color-surface-2);
}
.langs a {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  color: var(--color-text-muted);
  line-height: 1.2;
}
.langs a:hover {
  color: var(--color-primary);
}
.langs a[aria-current='true'] {
  background: var(--color-primary);
  color: #fff;
}
[data-theme='dark'] .langs a[aria-current='true'] {
  color: #071013;
}

.l-short {
  display: none;
}

@media (max-width: 700px) {
  .l-full {
    display: none;
  }
  .l-short {
    display: inline;
  }
  .logo svg {
    width: 26px;
    height: 26px;
  }
  .logo__text {
    font-size: 0.9375rem;
    letter-spacing: 0.06em;
  }
  .logo__sub {
    font-size: 0.5rem;
    letter-spacing: 0.1em;
  }
  .header__inner {
    gap: var(--space-3);
    min-height: 4rem;
  }
  .langs a {
    padding: 0.3rem 0.5rem;
  }
  .header__tools {
    gap: 0.35rem;
  }
  .nav {
    inset-block-start: 4rem;
  }
}

@media (max-width: 380px) {
  .logo__text {
    font-size: 0.875rem;
  }
  .langs {
    padding: 2px;
  }
  .langs a {
    padding: 0.28rem 0.4rem;
    font-size: 0.625rem;
  }
}

.icon-btn {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  background: var(--color-surface-2);
}
.icon-btn:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.burger {
  display: none;
}

@media (max-width: 1000px) {
  .nav {
    position: fixed;
    inset: 4.5rem 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-divider);
    padding: var(--space-2) clamp(var(--space-5), 4vw, var(--space-10)) var(--space-6);
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav[data-open='true'] {
    display: flex;
  }
  .nav a {
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--color-divider);
    font-size: var(--text-base);
  }
  .burger {
    display: grid;
  }
  .header__tools {
    margin-inline-start: auto;
  }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--color-surface);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--hero-scrim);
}
.hero__inner {
  padding-block: clamp(var(--space-16), 11vw, var(--space-32));
  max-width: 44rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  white-space: pre-line;
  letter-spacing: -0.02em;
  line-break: strict;
  overflow-wrap: normal;
}
.hero__lead {
  margin-top: var(--space-6);
  color: var(--color-text-muted);
  max-width: 34rem;
}
.hero__actions {
  margin-top: var(--space-8);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

@media (max-width: 860px) {
  .hero::after {
    background: linear-gradient(180deg, rgb(255 255 255 / 0.9) 0%, rgb(255 255 255 / 0.95) 55%, rgb(255 255 255 / 0.98) 100%);
  }
  [data-theme='dark'] .hero::after {
    background: linear-gradient(180deg, rgb(15 21 25 / 0.9) 0%, rgb(15 21 25 / 0.95) 55%, rgb(15 21 25 / 0.98) 100%);
  }
  .hero__inner {
    max-width: none;
  }
}

/* ---------- search bar ---------- */
.searchbar {
  position: relative;
  z-index: 2;
  margin-top: calc(-1 * clamp(var(--space-8), 4vw, var(--space-12)));
  margin-bottom: clamp(var(--space-8), 5vw, var(--space-16));
}
.searchbar__card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: clamp(var(--space-5), 3vw, var(--space-8));
}
.searchbar__title {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-5);
}
.searchbar__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.8fr auto;
  gap: var(--space-4);
  align-items: end;
}
@media (max-width: 900px) {
  .searchbar__grid {
    grid-template-columns: 1fr 1fr;
  }
  .searchbar__grid > *:last-child {
    grid-column: 1 / -1;
  }
}
@media (max-width: 520px) {
  .searchbar__grid {
    grid-template-columns: 1fr;
  }
}
.field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.field label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}
.field select,
.field input {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  font-size: var(--text-sm);
  color: var(--color-text);
}
.field select:hover,
.field input:hover {
  border-color: var(--color-primary);
}
.searchbar__note {
  margin-top: var(--space-5);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  display: flex;
  gap: var(--space-2);
  align-items: flex-start;
  line-height: 1.6;
}
.searchbar__note svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--color-accent);
}
.searchbar .btn {
  height: 2.85rem;
}

/* ---------- stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
  padding-block: clamp(var(--space-6), 3vw, var(--space-10));
}
@media (max-width: 700px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6) var(--space-4);
  }
}
.stat__n {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}
.stat__l {
  margin-top: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ---------- filter chips ---------- */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}
.chip {
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  background: var(--color-surface-2);
}
.chip:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.chip[aria-pressed='true'] {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
[data-theme='dark'] .chip[aria-pressed='true'] {
  color: #071013;
}

/* ---------- hotel cards ---------- */
.hotel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 20rem), 1fr));
  gap: clamp(var(--space-5), 2.5vw, var(--space-8));
}
.hcard {
  display: flex;
  flex-direction: column;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.hcard:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.hcard__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-surface-offset);
}
.hcard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}
.hcard:hover .hcard__media img {
  transform: scale(1.04);
}
.badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-full);
  background: var(--color-primary-soft);
  color: var(--color-primary);
}
.badge--accent {
  background: var(--color-accent-soft);
  color: var(--color-accent);
}
.hcard__media .badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  background: color-mix(in srgb, var(--color-bg) 92%, transparent);
  backdrop-filter: blur(6px);
}
.hcard__body {
  padding: var(--space-5) var(--space-5) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex: 1;
}
.hcard__body h3 {
  font-size: var(--text-lg);
  font-family: var(--font-display);
}
.hcard__tag {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}
.hcard__meta {
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-divider);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}
.hcard__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.hcard__more {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* soon card */
.soon {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: var(--space-3);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  background: var(--color-surface);
}
.soon h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
}
.soon p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ---------- brand series ---------- */
.brand-kicker {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  margin-top: var(--space-3);
}
.section-head .brand-kicker + p {
  margin-top: var(--space-2);
}
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: clamp(var(--space-6), 3vw, var(--space-10));
}
@media (max-width: 820px) {
  .values {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}
.value {
  padding: var(--space-6);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.value__k {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-primary);
  letter-spacing: 0.01em;
}
.value p {
  margin-top: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.blines {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(var(--space-8), 4vw, var(--space-14));
}
@media (max-width: 900px) {
  .blines {
    grid-template-columns: 1fr;
  }
}
.bline {
  --bc: var(--b-hotel);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.bline[data-brand='apart'] {
  --bc: var(--b-apart);
}
.bline[data-brand='onsen'] {
  --bc: var(--b-onsen);
}
.bline__media {
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--bc);
}
.bline__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.bline__body {
  padding: clamp(var(--space-5), 2.5vw, var(--space-7));
}
.bmark {
  display: block;
  color: var(--bc);
}
.bmark svg {
  width: 26px;
  height: 26px;
  display: block;
}
.bline__body h3 {
  margin-top: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  letter-spacing: 0.01em;
}
.bline__label {
  margin-top: var(--space-1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--bc);
}
.bline__d {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.badge--soon {
  background: var(--color-surface-offset);
  color: var(--color-text-muted);
}
.badge--brand {
  background: color-mix(in srgb, var(--bc, var(--b-hotel)) 14%, transparent);
  color: color-mix(in srgb, var(--bc, var(--b-hotel)) 78%, #000);
}
.badge--brand[data-brand='apart'] {
  --bc: var(--b-apart);
}
.badge--brand[data-brand='onsen'] {
  --bc: var(--b-onsen);
}
[data-theme='dark'] .badge--brand {
  color: var(--bc, var(--b-hotel));
}

/* premium band */
.bline--grand {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: stretch;
  background: var(--b-grand);
  border-color: color-mix(in srgb, var(--b-grand-gold) 40%, var(--b-grand));
}
.bline--grand .bline__media {
  flex: 0 0 44%;
  border-bottom: 0;
  border-right: 3px solid var(--b-grand-gold);
}
.bline--grand .bline__media img {
  height: 100%;
  aspect-ratio: auto;
  min-height: 15rem;
}
.bline--grand .bline__body {
  align-self: center;
  padding: clamp(var(--space-6), 3vw, var(--space-10));
}
.bline--grand .bmark {
  color: var(--b-grand-gold);
}
.bline--grand .bline__body h3 {
  color: #fff;
  font-size: var(--text-xl);
}
.bline--grand .bline__label {
  color: var(--b-grand-gold);
}
.bline--grand .bline__d {
  color: rgb(255 255 255 / 0.72);
  max-width: 34rem;
}
.bline--grand .badge--soon {
  background: rgb(255 255 255 / 0.1);
  color: var(--b-grand-gold);
}
@media (max-width: 780px) {
  .bline--grand {
    flex-direction: column;
  }
  .bline--grand .bline__media {
    flex: none;
    border-right: 0;
    border-bottom: 3px solid var(--b-grand-gold);
  }
  .bline--grand .bline__media img {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }
}

.cols--contact {
  grid-template-columns: 1fr 0.9fr;
}
.operator-note {
  margin-top: clamp(var(--space-6), 3vw, var(--space-10));
  padding-top: var(--space-5);
  border-top: 1px solid var(--color-divider);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.operator-note a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--color-primary);
  font-weight: 600;
  white-space: nowrap;
}

/* ---------- brand / pillars ---------- */
.about {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(var(--space-8), 5vw, var(--space-20));
  align-items: center;
}
@media (max-width: 900px) {
  .about {
    grid-template-columns: 1fr;
  }
}
.about__figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about__figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.pillars {
  display: grid;
  gap: var(--space-5);
  margin-top: clamp(var(--space-8), 4vw, var(--space-12));
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 800px) {
  .pillars {
    grid-template-columns: 1fr;
  }
}
.pillar {
  padding: var(--space-6);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.pillar__k {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}
.pillar h3 {
  margin-top: var(--space-3);
  font-size: var(--text-base);
  font-family: var(--font-display);
}
.pillar p {
  margin-top: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.policy {
  margin-top: var(--space-6);
  display: grid;
  gap: var(--space-3);
}
.policy li {
  display: flex;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  align-items: flex-start;
}
.policy svg {
  flex-shrink: 0;
  margin-top: 5px;
  color: var(--color-primary);
}

/* ---------- room cards ---------- */
.rgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 20rem), 1fr));
  gap: clamp(var(--space-5), 2.5vw, var(--space-8));
}
.rcard {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-surface-2);
}
.rcard img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.rcard__body {
  padding: var(--space-5);
}
.rcard__body h3 {
  font-size: var(--text-base);
  font-family: var(--font-display);
}
.rcard__body p {
  margin-top: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ---------- news ---------- */
.news {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--color-divider);
}
.news__item {
  display: grid;
  grid-template-columns: 7.5rem 6.5rem 1fr;
  gap: var(--space-5);
  padding-block: var(--space-6);
  border-bottom: 1px solid var(--color-divider);
  align-items: start;
}
@media (max-width: 760px) {
  .news__item {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }
}
.news__date {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-faint);
  letter-spacing: 0.04em;
}
.news__item h3 {
  font-size: var(--text-base);
}
.news__item p {
  margin-top: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ---------- faq ---------- */
.faq {
  max-width: 52rem;
  border-top: 1px solid var(--color-divider);
}
.faq details {
  border-bottom: 1px solid var(--color-divider);
}
.faq summary {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  justify-content: space-between;
  padding-block: var(--space-5);
  cursor: pointer;
  font-weight: 600;
  font-size: var(--text-base);
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary:hover {
  color: var(--color-primary);
}
.faq summary::after {
  content: '';
  flex-shrink: 0;
  width: 0.6rem;
  height: 0.6rem;
  margin-top: 0.55rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--transition-interactive);
}
.faq details[open] summary::after {
  transform: rotate(-135deg);
}
.faq details p {
  padding-bottom: var(--space-5);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  max-width: 46rem;
}

/* ---------- company table ---------- */
.cols {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: start;
}
@media (max-width: 900px) {
  .cols {
    grid-template-columns: 1fr;
  }
}
.dl {
  border-top: 1px solid var(--color-divider);
}
.dl__row {
  display: grid;
  grid-template-columns: 11rem 1fr;
  gap: var(--space-4);
  padding-block: var(--space-4);
  border-bottom: 1px solid var(--color-divider);
  font-size: var(--text-sm);
}
@media (max-width: 620px) {
  .dl__row {
    grid-template-columns: 1fr;
    gap: var(--space-1);
  }
}
.dl__row dt {
  color: var(--color-text-faint);
  font-weight: 600;
}
.dl__row dd {
  color: var(--color-text);
}
.contact-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-6), 3vw, var(--space-8));
}
.contact-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
}
.contact-card > p {
  margin-top: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.contact-tel {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-5);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
}
.contact-split {
  margin-top: var(--space-6);
  display: grid;
  gap: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid var(--color-divider);
}
.contact-split h4 {
  font-size: var(--text-sm);
  font-weight: 700;
}
.contact-split p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

/* ---------- footer ---------- */
.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  padding-block: clamp(var(--space-12), 6vw, var(--space-20)) var(--space-8);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(var(--space-8), 4vw, var(--space-16));
}
@media (max-width: 800px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}
.footer h4 {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  margin-bottom: var(--space-4);
}
.footer ul {
  display: grid;
  gap: var(--space-3);
  list-style: none;
}
.footer a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
}
.footer a:hover {
  color: var(--color-primary);
}
.footer__note a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
  color: var(--color-text-muted);
}
.footer__note {
  margin-top: var(--space-5);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  max-width: 30rem;
  line-height: 1.7;
}
.footer__bottom {
  margin-top: clamp(var(--space-8), 4vw, var(--space-12));
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-divider);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: space-between;
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

/* ---------- detail page ---------- */
.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  padding-top: var(--space-6);
}
.crumbs a {
  text-decoration: none;
  color: var(--color-text-muted);
}
.crumbs a:hover {
  color: var(--color-primary);
}

.dhero {
  padding-top: var(--space-6);
}
.dhero__head {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-8);
}
.dhero h1 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-top: var(--space-3);
}
.dhero__tag {
  margin-top: var(--space-3);
  color: var(--color-text-muted);
  max-width: 34rem;
}
.dhero__figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.dhero__figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.dprice {
  text-align: right;
}
.dprice__n {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}
.dprice__l,
.dprice__u {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}
@media (max-width: 640px) {
  .dprice {
    text-align: left;
  }
}

.dgrid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: clamp(var(--space-8), 4vw, var(--space-16));
  align-items: start;
}
@media (max-width: 940px) {
  .dgrid {
    grid-template-columns: 1fr;
  }
}
.block + .block {
  margin-top: clamp(var(--space-10), 5vw, var(--space-16));
}
.block h2 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--color-divider);
}
.tick-list {
  display: grid;
  gap: var(--space-3);
  list-style: none;
}
.tick-list li {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.tick-list svg {
  flex-shrink: 0;
  margin-top: 5px;
  color: var(--color-primary);
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}
.tag {
  font-size: var(--text-xs);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  background: var(--color-surface-2);
}
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-surface-offset);
}
.map-frame iframe {
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
}

.aside-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-5), 3vw, var(--space-6));
  position: sticky;
  top: 6rem;
}
.aside-card h2 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  margin-bottom: var(--space-4);
}
.aside-card .searchbar__note {
  margin-top: 0;
  margin-bottom: var(--space-5);
}
.ota-list {
  display: grid;
  gap: var(--space-3);
  list-style: none;
}
.ota-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: 0.8rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 600;
}
.ota-list a:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-primary-soft);
}
.aside-facts {
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid var(--color-divider);
  display: grid;
  gap: var(--space-3);
  font-size: var(--text-sm);
}
.aside-facts div {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: var(--space-3);
}
.aside-facts dt {
  color: var(--color-text-faint);
  font-size: var(--text-xs);
  font-weight: 600;
  padding-top: 2px;
}
.aside-facts a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}

.sources {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  line-height: 1.8;
}
.sources a {
  color: var(--color-text-muted);
}
.sources h4 {
  font-family: var(--font-display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
  font-size: var(--text-xs);
}

/* reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ===========================================================
   Detail page — gallery placeholders, room types, facility icons
   =========================================================== */
.section-head--left {
  text-align: left;
  margin-left: 0;
}
.note {
  display: flex;
  gap: var(--space-2);
  align-items: flex-start;
  margin-top: var(--space-5);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  line-height: 1.6;
}
.note svg {
  flex: 0 0 auto;
  margin-top: 0.15em;
}

/* blank photo slots ------------------------------------------------ */
.ph {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-lg);
  background-color: var(--color-surface);
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0 11px,
    color-mix(in srgb, var(--color-border) 42%, transparent) 11px 12px
  );
  color: var(--color-text-faint);
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.ph__i {
  display: block;
  opacity: 0.75;
}
.ph__t {
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
}
.ph--sm {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
}
.ph--sm .ph__i svg {
  width: 20px;
  height: 20px;
}
.ph--room {
  aspect-ratio: 3 / 2;
  border-radius: 0;
  border: 0;
  border-bottom: 1px dashed var(--color-border);
}

.gallery {
  display: grid;
  grid-template-columns: 2.1fr 1fr;
  gap: var(--space-3);
}
.gallery > * {
  min-width: 0;
}
.gallery__main .ph {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.gallery__side {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: var(--space-3);
}
.gallery__side .ph {
  height: 100%;
  width: 100%;
  aspect-ratio: auto;
  min-height: 0;
}
@media (max-width: 760px) {
  .gallery {
    grid-template-columns: 1fr;
  }
  .gallery__side {
    grid-template-rows: none;
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery__side .ph {
    aspect-ratio: 4 / 3;
  }
  .ph--sm .ph__t {
    display: none;
  }
}

/* room type cards -------------------------------------------------- */
.rtgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: clamp(var(--space-5), 2.5vw, var(--space-8));
}
.rtcard {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface-2);
  overflow: hidden;
  transition: box-shadow var(--transition-interactive), transform var(--transition-interactive);
}
.rtcard:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.rtcard__body {
  padding: var(--space-5) var(--space-5) var(--space-6);
}
.rtcard__body h3 {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
}
.rtcard__body h3 svg {
  color: var(--color-primary);
  flex: 0 0 auto;
}
.rtspec {
  margin-top: var(--space-4);
  display: grid;
  gap: var(--space-2);
  font-size: var(--text-xs);
}
.rtspec > div {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: var(--space-3);
  padding-top: var(--space-2);
  border-top: 1px solid var(--color-divider);
}
.rtspec dt {
  color: var(--color-text-faint);
}
.rtspec dd {
  color: var(--color-text-muted);
}

/* facility icon grid ---------------------------------------------- */
.amgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
  gap: var(--space-4);
}
.amitem {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3);
  padding: var(--space-5) var(--space-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface-2);
  font-size: var(--text-xs);
  line-height: 1.55;
  color: var(--color-text-muted);
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
  hyphens: none;
}
.amic {
  width: 40px;
  height: 40px;
  color: var(--color-primary);
  flex: 0 0 auto;
}
@media (max-width: 520px) {
  .amgrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .amitem {
    padding: var(--space-4) var(--space-2);
  }
}

.detail-back {
  margin-top: clamp(var(--space-10), 5vw, var(--space-16));
}

/* ============================================================ GRAND ELE  */
.grand {
  --g-bg: #15110c;
  --g-bg2: #1c1610;
  --g-text: #f4eee3;
  --g-muted: #bdae96;
  --g-gold: #c9a15c;
  --g-gold-soft: rgb(201 161 92 / 0.14);
  --g-line: rgb(201 161 92 / 0.26);
  background: var(--g-bg);
  color: var(--g-text);
}
.grand .crumbs { color: var(--g-muted); padding-top: 1.5rem; }
.grand .crumbs a { color: var(--g-muted); }
.grand .crumbs a:hover { color: var(--g-gold); }
.grand h1, .grand h2, .grand h3 { color: var(--g-text); }
.grand p { color: var(--g-muted); }
.grand .eyebrow--gold {
  color: var(--g-gold);
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 600;
}
.grand .note, .grand .note span { color: rgb(189 174 150 / 0.85); }
.grand .note svg { color: var(--g-gold); }

/* hero */
.ghero { position: relative; overflow: hidden; border-bottom: 1px solid var(--g-line); }
.ghero__media { position: absolute; inset: 0; }
.ghero__media img { width: 100%; height: 100%; object-fit: cover; }
.ghero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgb(21 17 12 / 0.94) 0%, rgb(21 17 12 / 0.82) 42%, rgb(21 17 12 / 0.5) 100%);
}
.ghero__inner {
  position: relative;
  z-index: 1;
  padding: clamp(4.5rem, 11vw, 9rem) 0 clamp(3.5rem, 7vw, 6rem);
  max-width: 46rem;
}
.gmark { display: block; color: var(--g-gold); width: 2.6rem; margin-bottom: 1.6rem; }
.gmark .mark { width: 2.6rem; height: auto; }
.gslogan {
  color: var(--g-gold) !important;
  letter-spacing: 0.3em;
  font-size: 0.78rem;
  font-weight: 600;
  margin: 0.9rem 0 1rem;
}
.ghero h1 {
  white-space: pre-line;
  font-size: clamp(2.1rem, 5.4vw, 3.5rem);
  line-height: 1.24;
  letter-spacing: 0.01em;
  margin: 0 0 1.4rem;
}
.ghero__lead { font-size: 1.02rem; line-height: 2; max-width: 40rem; }
.gstatus {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin-top: 2.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--g-line);
  font-size: 0.9rem;
  line-height: 1.85;
}
.badge--gold {
  background: var(--g-gold-soft);
  color: var(--g-gold);
  border: 1px solid var(--g-line);
  white-space: nowrap;
}

/* sections */
.gsec { background: var(--g-bg); }
.gsec--alt { background: var(--g-bg2); }
.gsec + .gsec { border-top: 1px solid rgb(201 161 92 / 0.13); }
.grand .section-head--left h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); }

.gsplit {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.gsplit--wide { grid-template-columns: 1fr 1fr; align-items: start; margin-top: 2.4rem; }
.gsplit--rev .gsplit__fig { order: -1; }
.gsplit > * { min-width: 0; }
.gsplit__text h2 { margin: 0.6rem 0 1.4rem; font-size: clamp(1.5rem, 3.4vw, 2.15rem); line-height: 1.35; }
.gsplit__text p { line-height: 2; margin: 0 0 1.15rem; }
.gkicker { color: var(--g-gold) !important; font-size: 1.05rem; margin-bottom: 1.3rem !important; }
.gsplit__fig { margin: 0; border: 1px solid var(--g-line); overflow: hidden; }
.gsplit__fig img { display: block; width: 100%; height: auto; }

/* pillars */
.gpils {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1px;
  margin-top: 2.4rem;
  background: var(--g-line);
  border: 1px solid var(--g-line);
}
.gpil { background: var(--g-bg); padding: clamp(1.6rem, 3vw, 2.4rem); }
.gpil__en { display: block; color: var(--g-gold); font-size: 0.68rem; letter-spacing: 0.24em; font-weight: 600; }
.gpil h3 { margin: 0.9rem 0 0.9rem; font-size: 1.3rem; letter-spacing: 0.04em; }
.gpil p { margin: 0; font-size: 0.92rem; line-height: 1.95; }

/* room list */
.grooms { display: grid; gap: 1px; background: var(--g-line); border-top: 1px solid var(--g-line); border-bottom: 1px solid var(--g-line); }
.groom { background: var(--g-bg); padding: 1.4rem 0.2rem 1.5rem; }
.groom h3 { margin: 0 0 0.6rem; font-size: 1.12rem; }
.groom__spec {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.9rem;
  margin: 0 0 0.7rem !important;
  color: var(--g-gold) !important;
  font-size: 0.87rem;
}
.groom__spec svg { color: var(--g-gold); }
.groom__cap { color: var(--g-muted); }
.groom__d { margin: 0 !important; font-size: 0.9rem; line-height: 1.9; }

/* definition lists */
.grand .dl--gold { border-top: 1px solid var(--g-line); margin: 1.6rem 0 1.2rem; }
.grand .dl--gold .dl__row {
  display: grid;
  grid-template-columns: 11rem 1fr;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgb(201 161 92 / 0.14);
}
.grand .dl--gold dt { color: var(--g-gold); font-size: 0.86rem; letter-spacing: 0.04em; }
.grand .dl--gold dd { margin: 0; color: var(--g-text); font-size: 0.92rem; }

/* service */
.gband { margin: 2.2rem 0 2.4rem; border: 1px solid var(--g-line); overflow: hidden; }
.gband img { display: block; width: 100%; height: clamp(13rem, 30vw, 22rem); object-fit: cover; }
.gservs { display: grid; grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); gap: 1.6rem 2.4rem; }
.gserv h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 0.5rem;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.gserv h3 svg { color: var(--g-gold); flex: none; }
.gserv p { margin: 0; font-size: 0.9rem; line-height: 1.9; }

/* cta */
.gsec--cta { background: var(--g-bg2); }
.gcta { max-width: 44rem; }
.gcta h2 { margin: 0.6rem 0 1.1rem; }
.gcta__lead { line-height: 2; }
.gcta__row { display: flex; flex-wrap: wrap; gap: 0.9rem; margin: 1.8rem 0 2rem; }
.gnote { font-size: 0.82rem !important; line-height: 1.85; color: rgb(189 174 150 / 0.7) !important; margin: 0 0 0.5rem !important; }

/* buttons */
.btn--gold { background: var(--g-gold, #b08d4a); color: #17120b; border: 1px solid transparent; }
.btn--gold:hover { background: #dcb673; color: #17120b; }
.btn--ghost-gold { background: transparent; color: var(--g-gold); border: 1px solid var(--g-line); }
.btn--ghost-gold:hover { background: var(--g-gold-soft); color: var(--g-gold); }
.bline__cta { margin-top: 1.2rem; align-self: flex-start; }
.bline--grand .bline__cta { --g-gold: var(--b-grand-gold); }

@media (max-width: 860px) {
  .gsplit, .gsplit--wide { grid-template-columns: 1fr; }
  .gsplit--rev .gsplit__fig, .gsplit--wide .gsplit__fig { order: -1; }
  .grand .dl--gold .dl__row { grid-template-columns: 1fr; gap: 0.25rem; }
  .gstatus { flex-direction: column; gap: 0.6rem; }
}

/* grand — typographic and layout refinements */
.grand h1, .grand h2, .grand h3 { line-break: strict; word-break: normal; overflow-wrap: normal; }
.gsplit--wide .gsplit__fig { position: sticky; top: 5.5rem; }
.gsplit--wide .gsplit__fig img { aspect-ratio: 4 / 5; object-fit: cover; }
.gservs { grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr)); }
.gserv h3 { align-items: flex-start; }
.gserv h3 svg { margin-top: 0.35rem; }
@media (max-width: 860px) {
  .gsplit--wide .gsplit__fig { position: static; }
  .gsplit--wide .gsplit__fig img { aspect-ratio: 16 / 10; }
}

/* grand — hero fixes */
.ghero__inner { padding: clamp(4.5rem, 11vw, 9rem) 0 clamp(3.5rem, 7vw, 6rem); padding-inline: clamp(var(--space-5), 4vw, var(--space-10)); }
.ghero__media, .ghero__media picture { display: block; width: 100%; height: 100%; }
.ghero__media { position: absolute; inset: 0; }

/* placeholder rows for properties without booking links yet */
.ota-tbd { color: var(--muted); font-size: 0.9rem; padding: 0.55rem 0; list-style: none; }

/* --- opening-soon badge on hotel cards / detail hero --- */
.hcard__media .badge--soon {
  left: auto;
  right: var(--space-3);
  background: color-mix(in srgb, var(--color-accent) 90%, #fff);
  color: #fff;
  backdrop-filter: none;
}
.dhero__head .badge--soon {
  background: var(--color-accent-soft);
  color: var(--color-accent);
  margin-left: 0.35rem;
}
