:root {
  --bg: #0d0d0f;
  --panel: #171719;
  --panel-soft: #222024;
  --text: #f6efe6;
  --muted: rgba(246, 239, 230, 0.72);
  --line: rgba(255, 255, 255, 0.14);
  --amber: #f3b44b;
  --orange: #ee5f2e;
  --green: #91d35a;
  --blue: #58c9ff;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Noto Sans TC", "Microsoft JhengHei", Arial, sans-serif;
  letter-spacing: 0;
}

img {
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 58px);
  background: rgba(13, 13, 15, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.brand img {
  display: block;
  width: 72px;
  height: 42px;
  object-fit: contain;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  letter-spacing: 0.12em;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  color: var(--muted);
  font-size: 15px;
  white-space: nowrap;
}

nav a:hover {
  color: var(--amber);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 120px clamp(22px, 5vw, 76px) 72px;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.1) contrast(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 13, 15, 0.94), rgba(13, 13, 15, 0.56) 48%, rgba(13, 13, 15, 0.22)),
    linear-gradient(0deg, rgba(13, 13, 15, 0.96), transparent 48%);
}

.hero-content {
  position: relative;
  max-width: 850px;
}

.hero-logo {
  display: block;
  width: clamp(140px, 18vw, 240px);
  height: auto;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 24px rgba(88, 201, 255, 0.28));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(74px, 15vw, 170px);
  font-weight: 600;
  line-height: 0.82;
  letter-spacing: 0;
  text-shadow: 0 0 32px rgba(243, 180, 75, 0.2);
}

.hero h2 {
  margin-bottom: 24px;
  font-size: clamp(34px, 5vw, 70px);
  font-weight: 800;
  line-height: 1.08;
}

.hero p {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.75;
}

.hero-actions,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-weight: 800;
}

.button.primary {
  color: #0d0d0f;
  background: var(--amber);
  border-color: var(--amber);
}

.button.ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.info-strip {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr 1fr;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.info-strip div {
  padding: 24px clamp(20px, 4vw, 52px);
  background: #111113;
}

.info-strip span {
  display: block;
  margin-bottom: 8px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
}

.info-strip p,
.info-strip a {
  margin: 0;
  color: var(--text);
  font-size: 17px;
  font-weight: 700;
}

.section {
  padding: 96px clamp(20px, 5vw, 76px);
}

.section-heading {
  max-width: 920px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.12;
}

.intro-section,
.equipment-section,
.gallery-section {
  background:
    linear-gradient(135deg, rgba(243, 180, 75, 0.07), transparent 35%),
    var(--bg);
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: stretch;
}

.intro-copy {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(28px, 4vw, 48px);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.intro-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.9;
}

.concept-section {
  background:
    linear-gradient(135deg, rgba(88, 201, 255, 0.1), transparent 32%),
    linear-gradient(315deg, rgba(243, 180, 75, 0.08), transparent 36%),
    #101012;
}

.concept-card {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 68px);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.concept-card h2 {
  margin-bottom: 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 500;
  line-height: 1;
}

.concept-copy {
  display: grid;
  gap: 16px;
  max-width: 860px;
}

.concept-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.9;
}

.concept-lines {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
  border: 1px solid var(--line);
}

.concept-lines span {
  padding: 18px;
  color: #0d0d0f;
  background: var(--amber);
  font-weight: 900;
  text-align: center;
}

.intro-layout figure {
  margin: 0;
  overflow: hidden;
  min-height: 520px;
}

.intro-layout img,
.space-card img,
.event-gallery img,
.equipment-photos img,
.food-layout img,
.gallery-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.space-section,
.food-section {
  background: #121214;
}

.space-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.space-card,
.event-gallery figure {
  position: relative;
  min-height: 640px;
  margin: 0;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.space-card::after,
.event-gallery figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent 58%);
}

.space-card div,
.event-gallery figcaption {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px;
}

.space-card span {
  color: var(--green);
  font-weight: 800;
}

.space-card h3 {
  margin: 8px 0 12px;
  font-size: clamp(28px, 3vw, 44px);
}

.space-card p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.events-section {
  background:
    linear-gradient(135deg, rgba(238, 95, 46, 0.09), transparent 38%),
    #0f0f11;
}

.event-tags,
.food-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 34px;
  max-width: 1040px;
}

.event-tags span,
.food-tags span {
  padding: 10px 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
}

.event-gallery {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  gap: 18px;
}

.event-gallery figure {
  min-height: 440px;
}

.event-gallery figcaption {
  color: var(--text);
  font-size: 22px;
  font-weight: 800;
}

.equipment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 28px;
}

.equipment-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.equipment-list article {
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.equipment-list h3 {
  margin-bottom: 12px;
  color: var(--amber);
  font-size: 24px;
}

.equipment-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.equipment-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  min-height: 560px;
}

.equipment-photos img {
  border: 1px solid var(--line);
}

.food-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: center;
}

.food-layout > img {
  min-height: 560px;
  border: 1px solid var(--line);
}

.food-layout > div {
  padding: clamp(28px, 4vw, 48px);
  background: var(--panel);
  border: 1px solid var(--line);
}

.food-layout p {
  color: var(--muted);
  font-size: 22px;
  line-height: 1.85;
}

.food-tags {
  justify-content: flex-start;
  margin: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-grid img {
  aspect-ratio: 3 / 4;
  border: 1px solid var(--line);
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 70px clamp(20px, 5vw, 76px);
  background: linear-gradient(135deg, var(--orange), #151515 58%);
}

.booking-section h2 {
  margin-bottom: 12px;
  font-size: clamp(34px, 5vw, 62px);
}

.booking-section p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.8;
}

.booking-actions {
  justify-content: flex-end;
  margin-top: 0;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .info-strip,
  .intro-layout,
  .space-grid,
  .event-gallery,
  .equipment-layout,
  .food-layout,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .equipment-list,
  .gallery-grid,
  .concept-lines {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 720px;
    padding-top: 100px;
  }

  .brand strong {
    font-size: 20px;
  }

  h1 {
    font-size: 64px;
  }

  .section {
    padding: 72px 20px;
  }

  .intro-layout figure,
  .space-card,
  .event-gallery figure,
  .food-layout > img {
    min-height: 420px;
  }

  .equipment-list,
  .equipment-photos,
  .gallery-grid,
  .concept-lines {
    grid-template-columns: 1fr;
  }

  .equipment-photos {
    min-height: 0;
  }

  .equipment-photos img,
  .gallery-grid img {
    aspect-ratio: 4 / 5;
  }

  .button {
    width: 100%;
  }
}
