@charset "UTF-8";

:root {
  --text: #fff6ee;
  --muted: rgba(255, 230, 220, 0.76);
  --line: rgba(255, 214, 183, 0.24);
  --gold: #ffd08a;
  --ruby: #d71941;
  --night: #050204;
  --phone-page-width: 26.875rem;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--night);
  color: var(--text);
  font-family:
    "Noto Serif TC",
    "Noto Serif CJK TC",
    "Microsoft JhengHei",
    serif;
  letter-spacing: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body {
  position: relative;
  display: flex;
  min-height: 100svh;
  justify-content: center;
  margin: 0;
  background: var(--night);
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

body::before {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 0;
  width: min(100vw, var(--phone-page-width));
  height: 100dvh;
  min-height: 100svh;
  content: "";
  background-color: var(--night);
  background-image:
    linear-gradient(180deg, rgba(2, 0, 3, 0.34) 0%, rgba(4, 0, 4, 0.08) 40%, rgba(5, 1, 3, 0.84) 100%),
    url("assets/hero-bg-outpaint-941x2222-cut.png");
  background-position:
    center top,
    center top;
  background-repeat:
    no-repeat,
    no-repeat;
  background-size:
    100% 100%,
    100% auto;
  transform: translateX(-50%);
  pointer-events: none;
}

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

button {
  font: inherit;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(100vw, var(--phone-page-width));
  max-width: 100vw;
  min-height: 100vh;
  overflow: hidden;
  background: transparent;
}

.hero {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 100vw;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem 1rem 1.1rem;
  background: transparent;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: transparent;
}

.hero__shade {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 56%;
  background: transparent;
}

.topbar {
  position: fixed;
  top: 0;
  left: 50%;
  right: auto;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100vw, var(--phone-page-width));
  height: calc(2.9rem + 10px + max(1rem, env(safe-area-inset-top)));
  min-width: 0;
  max-width: var(--phone-page-width);
  padding: 0 1rem;
  transform: translateX(-50%);
  pointer-events: none;
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    backdrop-filter 180ms ease;
}

body.is-scrolled .topbar {
  background-color: rgba(8, 3, 6, 0.58);
  box-shadow:
    inset 0 -1px 0 rgba(255, 208, 138, 0.12),
    0 10px 28px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px) saturate(1.25);
}

.brand {
  display: inline-flex;
  align-items: center;
  max-width: calc(100% - 3.7rem);
  height: 100%;
  pointer-events: auto;
}

.brand__logo {
  display: block;
  width: clamp(8.25rem, 46vw, 10.25rem);
  height: auto;
  max-height: 3.25rem;
  object-fit: contain;
  filter:
    drop-shadow(0 0 7px rgba(255, 191, 76, 0.24))
    drop-shadow(0 0 14px rgba(150, 13, 34, 0.2));
}

.brand__mark {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border: 1px solid rgba(255, 208, 138, 0.42);
  border-radius: 50%;
  background: rgba(33, 6, 10, 0.54);
  box-shadow: 0 0 24px rgba(215, 25, 65, 0.35);
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1rem;
}

.menu-button {
  position: relative;
  z-index: 30;
  display: inline-flex;
  flex: 0 0 auto;
  width: 3.35rem;
  height: 100%;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--gold);
  pointer-events: auto;
}

.menu-button::before,
.menu-button::after {
  content: none;
}

.menu-button span {
  display: block;
  width: 2.85rem;
  height: 2.85rem;
  overflow: hidden;
  background: url("assets/line-logo-gold-cut.png") center / contain no-repeat;
  text-indent: -999px;
}

.slg-mark {
  position: absolute;
  top: calc(max(1rem, env(safe-area-inset-top)) + 2.9rem - 3.9px);
  right: 1.23px;
  z-index: 8;
  display: block;
  width: 159.77px;
  height: auto;
  pointer-events: none;
}

.hero__content {
  display: flex;
  width: min(100%, 22rem);
  flex-direction: column;
  margin-top: auto;
  padding: 23svh 0 0;
  transform: translateY(-12px);
}

.eyebrow {
  margin: 0 0 0.65rem;
  line-height: 1;
  transform: translateY(0.45rem);
}

.eyebrow__image {
  display: block;
  width: clamp(13rem, 60vw, 15.5rem);
  height: auto;
}

.booking__label {
  margin: 0 0 0.75rem;
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 0.85rem;
  font-size: clamp(2.35rem, 15vw, 3.55rem);
  font-weight: 700;
  line-height: 0.96;
  overflow-wrap: anywhere;
  text-shadow:
    0 0 28px rgba(210, 32, 68, 0.58),
    0 2px 18px rgba(0, 0, 0, 0.55);
}

.lead {
  max-width: 18.5rem;
  margin-bottom: 0.2rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.7);
}

.info-box {
  position: relative;
  left: -1rem;
  display: flex;
  width: min(100vw, var(--phone-page-width));
  min-height: 1.7rem;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  border: 0;
  color: var(--gold);
  font-size: 20px;
  line-height: 1.35;
  text-align: center;
  text-shadow:
    0 0 10px rgba(255, 208, 138, 0.42),
    0 1px 12px rgba(0, 0, 0, 0.72);
}

.products {
  position: relative;
  z-index: 2;
  width: min(100vw, var(--phone-page-width));
  max-width: min(100vw, var(--phone-page-width));
  margin: -1.8rem auto 0;
  padding: 3px clamp(0.65rem, 3vw, 0.95rem) 1.65rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 1, 3, 0.1), rgba(5, 1, 3, 0.68) 32%, rgba(5, 1, 3, 0.9));
}

.products__grid {
  position: relative;
  left: 50%;
  display: grid;
  width: min(calc(100vw - 1.7rem), calc(var(--phone-page-width) - 1.7rem));
  min-width: 0;
  gap: clamp(0.55rem, 2.5vw, 0.85rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: center;
  transform: translateX(-50%);
}

.product-card {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  padding: 0.38rem;
  border: 1px solid rgba(255, 218, 150, 0.72);
  border-radius: 0.58rem;
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 235, 186, 0.18), transparent 18%),
    radial-gradient(circle at 88% 92%, rgba(255, 184, 76, 0.12), transparent 20%),
    linear-gradient(145deg, rgba(255, 208, 138, 0.14), transparent 30%),
    linear-gradient(315deg, rgba(215, 25, 65, 0.13), transparent 36%),
    rgba(8, 1, 4, 0.82);
  box-shadow:
    inset 0 0 0 1px rgba(255, 246, 238, 0.08),
    inset 0 0 0 3px rgba(255, 190, 93, 0.06),
    inset 0 0 18px rgba(255, 208, 138, 0.08),
    0 0 16px rgba(255, 168, 70, 0.1),
    0 0 20px rgba(215, 25, 65, 0.16),
    0 12px 30px rgba(0, 0, 0, 0.42);
}

.product-card::before,
.product-card::after {
  display: none;
}

.product-card__thumb {
  width: 100%;
  aspect-ratio: 3 / 4;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 218, 150, 0.5);
  border-radius: 0.36rem;
  box-shadow:
    inset 0 0 0 1px rgba(255, 246, 238, 0.08),
    0 0 14px rgba(255, 190, 93, 0.14);
}

.product-card__image {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(1.05) contrast(1.04);
}

.product-card__body {
  display: block;
  padding: 0.68rem 0.35rem 0.5rem;
  border-top: 1px solid rgba(255, 208, 138, 0.28);
  margin-top: 0.34rem;
  text-align: center;
}

.product-card__title,
.product-card__meta {
  margin: 0;
  overflow-wrap: anywhere;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.72);
}

.product-card__title {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.product-card__meta {
  margin-top: 0.18rem;
  color: rgba(255, 230, 220, 0.76);
  font-size: 0.78rem;
  line-height: 1.45;
}

.actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.primary-action,
.ghost-action,
.booking__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
  white-space: normal;
}

.primary-action {
  min-width: 8.6rem;
  padding: 0.85rem 1.35rem;
  background: linear-gradient(135deg, #ffe2a8, #f0a538 45%, #b70d31);
  box-shadow:
    0 0 30px rgba(215, 25, 65, 0.48),
    0 14px 32px rgba(0, 0, 0, 0.35);
  color: #160206;
}

.ghost-action {
  min-width: 7.2rem;
  padding: 0.78rem 1.1rem;
  border: 1px solid rgba(255, 214, 183, 0.28);
  background: rgba(17, 3, 8, 0.38);
  color: rgba(255, 246, 238, 0.9);
  backdrop-filter: blur(8px);
}

.info-strip {
  display: grid;
  width: 100%;
  min-width: 0;
  max-width: 21.45rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: transparent;
  backdrop-filter: none;
}

.info-strip div {
  min-width: 0;
  padding: 0.72rem 0.32rem;
  border-right: 1px solid var(--line);
  text-align: center;
}

.info-strip div:last-child {
  border-right: 0;
}

.info-strip span,
.info-strip strong {
  display: block;
  overflow-wrap: anywhere;
}

.info-strip span {
  margin-bottom: 0.22rem;
  color: rgba(255, 230, 220, 0.58);
  font-size: 0.64rem;
}

.info-strip strong {
  color: rgba(255, 246, 238, 0.95);
  font-size: 0.74rem;
}

.booking {
  padding: 1rem;
  background: transparent;
  backdrop-filter: none;
}

.booking__panel {
  max-width: 38rem;
  margin: 0 auto;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: transparent;
  box-shadow: none;
}

.booking h2 {
  margin-bottom: 1rem;
  font-size: 1.45rem;
  line-height: 1.22;
  overflow-wrap: anywhere;
}

.booking__button {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: var(--text);
  color: #170307;
}

.detail-page {
  background: #000;
}

.detail-page::before {
  background: #000;
  background-image: none;
}

.detail-page .topbar {
  width: min(100vw, 64rem);
  max-width: 64rem;
}

.detail-shell {
  width: min(100vw, 64rem);
  background: transparent;
  overflow: visible;
}

.profile-detail {
  width: 100%;
  min-height: 100svh;
  padding: calc(4.2rem + max(1rem, env(safe-area-inset-top))) clamp(1rem, 4vw, 3rem) 3rem;
  background: transparent;
}

.profile-summary {
  display: grid;
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
  gap: clamp(1.25rem, 4vw, 3rem);
  background: transparent;
}

.profile-field,
.profile-media,
.media-item {
  background: transparent;
}

.profile-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  gap: clamp(0.7rem, 2.4vw, 1.3rem);
}

.profile-field h1,
.profile-field p {
  margin: 0;
  color: #fff;
  overflow-wrap: anywhere;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.82);
}

.profile-field--name h1 {
  max-width: none;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.profile-field--stats p {
  font-size: 20px;
  line-height: 1.05;
}

.profile-field--services p {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.28;
}

.profile-field--description p {
  color: #ADADAD;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.28;
}

.profile-media {
  display: grid;
  width: 100%;
  max-width: 56rem;
  margin: clamp(2.3rem, 7vw, 3.5rem) auto 0;
  gap: clamp(1.25rem, 4vw, 2rem);
}

.media-item {
  width: 100%;
  margin: 0;
}

.media-item img,
.media-item video {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 64rem) {
  .detail-page .detail-shell {
    box-shadow: none;
  }
}

@media (min-width: 64rem) {
  .page-shell:not(.detail-shell) {
    box-shadow: 0 0 56px rgba(0, 0, 0, 0.48);
  }
}
