:root {
  --ink: #080707;
  --charcoal: #151313;
  --smoke: #292625;
  --ash: #b9b0aa;
  --paper: #f4eee5;
  --wine: #6f1023;
  --wine-bright: #9e1c35;
  --gold: #b79762;
  --line: rgba(244, 238, 229, 0.16);
  --shadow: rgba(0, 0, 0, 0.45);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: "Noto Serif TC", "Songti TC", "Microsoft JhengHei", serif;
  line-height: 1.7;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  background: linear-gradient(180deg, rgba(8, 7, 7, 0.86), rgba(8, 7, 7, 0.18));
  backdrop-filter: blur(14px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-sigil,
.brand-logo {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(183, 151, 98, 0.7);
  border-radius: 50%;
  color: var(--gold);
  font-size: 22px;
  font-style: italic;
}

.brand-logo {
  overflow: hidden;
  background: #050505;
}

.brand-logo img {
  width: 130%;
  height: 130%;
  display: block;
  object-fit: cover;
}

.brand-mark strong,
.brand-mark small {
  display: block;
}

.brand-mark strong {
  font-size: 16px;
  letter-spacing: 0;
}

.brand-mark small {
  color: var(--ash);
  font-size: 11px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.8vw, 22px);
  color: rgba(244, 238, 229, 0.78);
  font-size: 13px;
}

.nav-links a {
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--paper);
  border-color: var(--gold);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 132px clamp(20px, 5vw, 72px) 84px;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("./assets/site-photos/hero-cover.jpg");
  background-size: cover;
  background-position: center 28%;
  transform: scale(1.02);
}

.hero-shade {
  background:
    radial-gradient(circle at 74% 58%, rgba(111, 16, 35, 0.22), transparent 33%),
    linear-gradient(90deg, rgba(8, 7, 7, 0.92) 0%, rgba(8, 7, 7, 0.74) 38%, rgba(8, 7, 7, 0.24) 76%),
    linear-gradient(0deg, rgba(8, 7, 7, 0.88) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-family: "Microsoft JhengHei", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 4px;
  font-size: clamp(56px, 9vw, 116px);
  font-weight: 500;
  line-height: 0.95;
  white-space: nowrap;
}

.queen-name {
  margin-bottom: 28px;
  color: var(--ash);
  font-size: clamp(24px, 4vw, 46px);
}

.slogan {
  max-width: 520px;
  color: rgba(244, 238, 229, 0.9);
  font-size: clamp(20px, 2.8vw, 32px);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border: 1px solid rgba(244, 238, 229, 0.22);
  border-radius: 3px;
  font-family: "Microsoft JhengHei", sans-serif;
  font-size: 14px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--gold);
}

.button.primary {
  background: var(--wine);
  border-color: var(--wine-bright);
}

.button.ghost {
  background: rgba(244, 238, 229, 0.06);
}

section {
  padding: clamp(70px, 9vw, 128px) clamp(20px, 5vw, 72px);
}

.intro-band,
.faq-band {
  background:
    linear-gradient(180deg, rgba(21, 19, 19, 0.96), rgba(8, 7, 7, 1)),
    var(--charcoal);
}

.split-layout {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
}

.split-layout.align-start {
  align-items: start;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.18;
}

.title-line {
  display: block;
  white-space: nowrap;
}

h3 {
  color: var(--paper);
  font-size: 22px;
  font-weight: 500;
}

.body-copy p,
.lead,
.rules-heading p,
.menu-heading p,
.feature-heading p,
.contact-panel p,
.shop-panel p {
  color: rgba(244, 238, 229, 0.76);
  font-size: 17px;
}

.body-copy p {
  color: rgba(244, 238, 229, 0.84);
  font-size: clamp(19px, 1.7vw, 24px);
  line-height: 1.85;
}

.about-portrait,
.booking-visual {
  position: relative;
  margin: 24px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #111;
}

.about-portrait {
  width: min(420px, 100%);
  margin-left: auto;
}

.booking-visual {
  width: min(460px, 100%);
}

.about-portrait img,
.booking-visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.values-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.value-item {
  min-height: 260px;
  padding: clamp(26px, 4vw, 42px);
  background: var(--ink);
}

.value-item span {
  color: var(--wine-bright);
  font-family: "Microsoft JhengHei", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.value-item p,
.rules-grid li,
.steps span,
.faq-list p,
.site-footer {
  color: rgba(244, 238, 229, 0.7);
}

.dark-band {
  background:
    linear-gradient(135deg, rgba(111, 16, 35, 0.18), transparent 42%),
    linear-gradient(180deg, #0b0a0a, #161313);
}

.updates-section,
.journal-section,
.video-section,
.gallery-section {
  background:
    linear-gradient(180deg, rgba(21, 19, 19, 0.98), rgba(8, 7, 7, 1)),
    var(--charcoal);
}

.journal-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(111, 16, 35, 0.18), transparent 30%),
    linear-gradient(180deg, #080707, #121010);
}

.gallery-section {
  background:
    linear-gradient(135deg, rgba(183, 151, 98, 0.08), transparent 35%),
    #090808;
}

.feature-heading {
  width: min(var(--max), 100%);
  margin: 0 auto 42px;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(30px, 6vw, 74px);
  align-items: end;
}

.feature-heading.compact {
  margin-bottom: 30px;
}

.feature-heading p {
  margin-bottom: 24px;
}

.update-grid,
.journal-layout,
.video-grid,
.gallery-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.journal-tools {
  width: min(var(--max), 100%);
  margin: -18px auto 24px;
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.journal-tools input {
  min-height: 46px;
  width: 100%;
  border: 1px solid rgba(244, 238, 229, 0.18);
  border-radius: 3px;
  padding: 10px 13px;
  color: var(--paper);
  background: rgba(8, 7, 7, 0.58);
  font-family: "Microsoft JhengHei", sans-serif;
  font-size: 14px;
  outline: none;
}

.journal-tools input:focus {
  border-color: var(--gold);
}

.journal-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.journal-filter button {
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid rgba(183, 151, 98, 0.28);
  border-radius: 3px;
  color: rgba(244, 238, 229, 0.78);
  background: rgba(8, 7, 7, 0.3);
  cursor: pointer;
  font-family: "Microsoft JhengHei", sans-serif;
  font-size: 13px;
}

.journal-filter button:hover,
.journal-filter button:focus-visible,
.journal-filter button.active {
  border-color: var(--gold);
  color: var(--paper);
  background: rgba(111, 16, 35, 0.4);
}

.journal-section[data-empty="true"] .journal-layout::after {
  content: "沒有符合條件的紀錄";
  display: block;
  padding: 26px;
  border: 1px solid var(--line);
  color: rgba(244, 238, 229, 0.7);
  background: rgba(244, 238, 229, 0.04);
  font-family: "Microsoft JhengHei", sans-serif;
}

.update-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.update-card,
.journal-card,
.video-card {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(244, 238, 229, 0.055), rgba(244, 238, 229, 0.018)),
    #101010;
}

.tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 4px 10px;
  border: 1px solid rgba(183, 151, 98, 0.34);
  color: var(--gold);
  font-family: "Microsoft JhengHei", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.update-card time {
  display: block;
  margin-bottom: 12px;
  color: rgba(244, 238, 229, 0.52);
  font-family: "Microsoft JhengHei", sans-serif;
  font-size: 13px;
}

.update-card p,
.journal-card p,
.video-card p {
  margin-bottom: 0;
  color: rgba(244, 238, 229, 0.7);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.video-card a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  margin-top: 22px;
  padding: 9px 14px;
  border: 1px solid rgba(183, 151, 98, 0.34);
  color: var(--paper);
  background: rgba(111, 16, 35, 0.24);
  font-family: "Microsoft JhengHei", sans-serif;
  font-size: 14px;
}

.journal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 16px;
}

.journal-card.large {
  grid-row: span 2;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(8, 7, 7, 0.12), rgba(8, 7, 7, 0.88)),
    linear-gradient(135deg, rgba(111, 16, 35, 0.24), rgba(183, 151, 98, 0.08)),
    #151313;
}

.journal-card.large h3 {
  width: min(620px, 100%);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
}

.journal-media {
  position: relative;
  min-height: 180px;
  margin: 0 0 22px;
  overflow: hidden;
  border: 1px solid rgba(244, 238, 229, 0.12);
  background: #0b0a0a;
}

.journal-media img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  display: block;
  object-fit: cover;
}

.journal-card.large .journal-media {
  min-height: 320px;
  margin-bottom: 28px;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.meta-row span {
  color: rgba(244, 238, 229, 0.66);
  font-family: "Microsoft JhengHei", sans-serif;
  font-size: 13px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
}

.gallery-tile {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #111;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(8, 7, 7, 0.78));
}

.gallery-tile figcaption {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 20px;
  color: rgba(244, 238, 229, 0.86);
  font-family: "Microsoft JhengHei", sans-serif;
  font-size: 14px;
}

.texture.velvet {
  background:
    radial-gradient(circle at 64% 34%, rgba(111, 16, 35, 0.34), transparent 34%),
    linear-gradient(135deg, #080707, #1a1516 42%, #070606);
}

.texture.marble {
  background:
    linear-gradient(130deg, transparent 0 30%, rgba(244, 238, 229, 0.14) 31%, transparent 32% 58%, rgba(183, 151, 98, 0.12) 59%, transparent 60%),
    linear-gradient(45deg, #0b0a0a, #1b1918);
}

.menu-section {
  background:
    radial-gradient(circle at 82% 8%, rgba(111, 16, 35, 0.22), transparent 30%),
    linear-gradient(180deg, #111, #080707);
}

.menu-heading {
  width: min(var(--max), 100%);
  margin: 0 auto 42px;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(30px, 6vw, 74px);
  align-items: end;
}

.menu-heading p {
  margin-bottom: 24px;
}

.menu-board {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.menu-card {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(244, 238, 229, 0.06), rgba(244, 238, 229, 0.018)),
    #101010;
}

.menu-card.featured {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(111, 16, 35, 0.22), rgba(244, 238, 229, 0.035)),
    #111;
}

.menu-card.travel {
  grid-column: span 2;
}

.menu-card-title {
  margin-bottom: 22px;
}

.menu-card-title span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-family: "Microsoft JhengHei", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.menu-card-title h3 {
  margin-bottom: 0;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pill-list li {
  padding: 8px 13px;
  border: 1px solid rgba(183, 151, 98, 0.28);
  color: rgba(244, 238, 229, 0.84);
  background: rgba(8, 7, 7, 0.34);
  font-family: "Microsoft JhengHei", sans-serif;
  font-size: 14px;
}

.price-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.price-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: baseline;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(244, 238, 229, 0.12);
}

.price-list dt,
.price-list dd {
  margin: 0;
}

.price-list dt {
  color: rgba(244, 238, 229, 0.82);
}

.price-list dd {
  color: var(--gold);
  font-family: "Microsoft JhengHei", sans-serif;
  font-weight: 700;
  white-space: nowrap;
}

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

.steps {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  counter-reset: steps;
  list-style: none;
}

.steps li {
  position: relative;
  padding: 22px 0 22px 64px;
  border-top: 1px solid var(--line);
}

.steps li::before {
  counter-increment: steps;
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  top: 25px;
  left: 0;
  color: var(--gold);
  font-family: "Microsoft JhengHei", sans-serif;
  font-weight: 700;
}

.steps strong,
.steps span {
  display: block;
}

.steps strong {
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 500;
}

.rules-section {
  background: #0c0b0b;
}

.rules-heading {
  width: min(760px, 100%);
  margin: 0 auto 46px;
  text-align: center;
}

.rules-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.rules-grid article {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(244, 238, 229, 0.045), rgba(244, 238, 229, 0.015)),
    #111;
}

.rules-grid ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.faq-list {
  width: min(860px, 100%);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.faq-list summary {
  cursor: pointer;
  color: var(--paper);
  font-size: 20px;
}

.faq-list p {
  margin: 12px 0 0;
}

.contact-section,
.shop-section {
  background:
    radial-gradient(circle at 22% 15%, rgba(111, 16, 35, 0.2), transparent 28%),
    #080707;
}

.shop-section {
  padding-top: 0;
}

.contact-panel,
.shop-panel {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 70px);
  align-items: start;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(183, 151, 98, 0.35);
  background: linear-gradient(135deg, rgba(244, 238, 229, 0.07), rgba(111, 16, 35, 0.08));
  box-shadow: 0 24px 80px var(--shadow);
}

.shop-panel {
  align-items: center;
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-list a,
.shop-link {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: rgba(244, 238, 229, 0.86);
  font-family: "Microsoft JhengHei", sans-serif;
}

.shop-link {
  padding: 18px 22px;
  border: 1px solid rgba(183, 151, 98, 0.36);
  background: rgba(111, 16, 35, 0.2);
}

.contact-list a::after,
.shop-link::after {
  content: "↗";
  color: var(--gold);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #050505;
  font-size: 13px;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(8, 7, 7, 0.66), rgba(8, 7, 7, 0.9) 68%),
      radial-gradient(circle at 68% 48%, rgba(111, 16, 35, 0.2), transparent 38%);
  }

  .split-layout,
  .feature-heading,
  .menu-heading,
  .contact-panel,
  .shop-panel {
    grid-template-columns: 1fr;
  }

  .values-section,
  .rules-grid,
  .menu-board,
  .update-grid,
  .journal-tools,
  .journal-layout,
  .video-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .menu-card.featured,
  .menu-card.travel {
    grid-column: auto;
  }

  .value-item {
    min-height: auto;
  }

  .journal-card.large {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(40px, 13vw, 54px);
  }

  h2 {
    font-size: clamp(30px, 10vw, 40px);
  }

  .title-line {
    white-space: normal;
  }

  .hero {
    padding-top: 118px;
  }

  .hero-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .steps li {
    padding-left: 46px;
  }

  .contact-panel {
    padding: 24px;
  }

  .price-list.compact {
    grid-template-columns: 1fr;
  }

  .contact-list a,
  .shop-link {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    overflow-wrap: anywhere;
  }

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