:root {
  color-scheme: light;
  --ink: #171412;
  --muted: #665f58;
  --paper: #fbfaf7;
  --soft: #efe9df;
  --line: #ddd3c7;
  --night: #101115;
  --night-2: #25211e;
  --gold: #dea341;
  --gold-2: #f0bd67;
  --teal: #21817a;
  --teal-dark: #124c49;
  --rose: #bc4e58;
  --white: #ffffff;
  --shadow: 0 18px 56px rgb(16 17 21 / 16%);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Noto Sans TC",
    sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 22px 0;
  color: var(--white);
}

.site-header.is-scrolled {
  position: fixed;
  width: 100%;
  padding: 12px max(18px, calc((100vw - var(--max)) / 2));
  background: rgb(16 17 21 / 92%);
  border-bottom: 1px solid rgb(255 255 255 / 12%);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 900;
}

.brand-mark {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 32%);
  background: rgb(255 255 255 / 11%);
  border-radius: 50%;
  font-size: 14px;
}

.brand-text {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
}

.site-nav a,
.header-call {
  padding: 10px 13px;
  border-radius: 999px;
  color: rgb(255 255 255 / 84%);
  font-size: 15px;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.header-call:hover,
.header-call:focus-visible {
  color: var(--white);
  background: rgb(255 255 255 / 12%);
  outline: none;
}

.header-call {
  border: 1px solid rgb(255 255 255 / 18%);
  background: rgb(255 255 255 / 8%);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgb(255 255 255 / 26%);
  background: rgb(255 255 255 / 10%);
  border-radius: 50%;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(680px, 86svh, 840px);
  overflow: hidden;
  color: var(--white);
  background: var(--night);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-nightlife.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgb(0 0 0 / 82%) 0%, rgb(0 0 0 / 58%) 42%, rgb(0 0 0 / 14%) 78%),
    linear-gradient(180deg, rgb(0 0 0 / 50%) 0%, rgb(0 0 0 / 8%) 48%, rgb(0 0 0 / 78%) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(100% - 32px, var(--max));
  margin: 92px auto 150px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
summary,
span,
strong {
  overflow-wrap: anywhere;
}

h1 {
  display: flex;
  flex-wrap: wrap;
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 6.1vw, 78px);
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: keep-all;
}

h1 span {
  white-space: nowrap;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgb(255 255 255 / 88%);
  font-size: clamp(20px, 2.3vw, 28px);
  font-weight: 900;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 22px;
  cursor: pointer;
  font-weight: 900;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  background: var(--gold);
  color: #201207;
  box-shadow: 0 14px 32px rgb(222 163 65 / 28%);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--gold-2);
}

.button-ghost {
  color: var(--white);
  border-color: rgb(255 255 255 / 30%);
  background: rgb(255 255 255 / 9%);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgb(255 255 255 / 52%);
  background: rgb(255 255 255 / 16%);
}

.hero-strip {
  position: absolute;
  z-index: 3;
  right: max(16px, calc((100vw - var(--max)) / 2));
  bottom: 22px;
  left: max(16px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgb(255 255 255 / 13%);
  background: rgb(16 17 21 / 70%);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.hero-strip div {
  min-width: 0;
  padding: 20px 22px;
}

.hero-strip div + div {
  border-left: 1px solid rgb(255 255 255 / 12%);
}

.hero-strip strong,
.hero-strip span {
  display: block;
}

.hero-strip strong {
  font-size: 17px;
}

.hero-strip span {
  margin-top: 4px;
  color: rgb(255 255 255 / 70%);
  font-size: 14px;
}

.section-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

section:not(.hero) {
  padding: 90px 0;
}

.band-light {
  background: var(--soft);
}

.band-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgb(18 76 73 / 86%), rgb(16 17 21 / 96) 56%),
    var(--night);
}

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

.summary-grid article,
.service-card,
.area-panel,
.price-panel,
.timeline li,
.faq-list details,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.summary-grid article {
  padding: 26px;
}

.summary-grid h2,
.section-heading h2,
.contact h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.12;
  letter-spacing: 0;
}

.summary-grid h2 {
  font-size: clamp(24px, 2.5vw, 30px);
}

.summary-grid p:last-child,
.section-heading p,
.service-card p,
.area-panel p,
.timeline p,
.faq-list p,
.contact-copy p,
.price-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.section-heading {
  display: grid;
  max-width: 760px;
  gap: 14px;
  margin-bottom: 36px;
}

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

.service-card {
  display: grid;
  min-height: 282px;
  align-content: start;
  padding: 26px;
}

.service-number {
  color: var(--rose);
  font-weight: 900;
}

.service-card h3,
.area-panel h3,
.timeline h3 {
  margin: 18px 0 10px;
  font-size: 22px;
  line-height: 1.22;
}

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

.band-dark .section-heading p {
  color: rgb(255 255 255 / 72%);
}

.price-panel {
  display: grid;
  gap: 14px;
  padding: 30px;
  color: var(--ink);
}

.price-panel span {
  color: var(--teal-dark);
  font-weight: 900;
}

.price-panel strong {
  display: block;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.05;
}

.price-panel .button {
  width: fit-content;
  margin-top: 8px;
}

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

.area-panel {
  padding: 30px;
}

.area-panel.accent-teal {
  border-color: rgb(33 129 122 / 30%);
}

.area-panel h3 {
  margin-top: 0;
  font-size: 30px;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.area-tags span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid var(--line);
  background: #fffdf9;
  border-radius: 999px;
  padding: 8px 14px;
  color: #41352e;
  font-weight: 800;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  min-height: 232px;
  padding: 26px;
  border-top: 4px solid var(--teal);
}

.timeline span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--teal-dark);
  border-radius: 50%;
  font-weight: 900;
}

.compare-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.compare-table > div {
  display: grid;
  grid-template-columns: 0.75fr 1fr 1.25fr;
}

.compare-table > div:first-child {
  color: var(--white);
  background: var(--teal-dark);
  font-weight: 900;
}

.compare-table span,
.compare-table strong {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.compare-table span + span,
.compare-table strong + strong {
  border-left: 1px solid var(--line);
}

.compare-table > div:last-child span {
  border-bottom: 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 36px;
  align-items: start;
}

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

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

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

.contact {
  color: var(--white);
  background:
    linear-gradient(90deg, rgb(16 17 21 / 96%), rgb(37 33 30 / 94)),
    var(--night-2);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 52px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 104px;
}

.contact-copy p {
  margin-top: 18px;
  color: rgb(255 255 255 / 72%);
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-method {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  width: 100%;
  padding: 15px 18px;
  border: 1px solid rgb(255 255 255 / 13%);
  background: rgb(255 255 255 / 7%);
  border-radius: var(--radius);
  text-align: left;
}

button.contact-method {
  cursor: pointer;
}

a.contact-method:hover,
a.contact-method:focus-visible,
button.contact-method:hover,
button.contact-method:focus-visible {
  border-color: rgb(222 163 65 / 72%);
  background: rgb(222 163 65 / 12%);
  outline: none;
}

.contact-method span {
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
}

.contact-method strong {
  color: var(--white);
  font-size: 18px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  color: var(--ink);
}

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

label {
  display: grid;
  gap: 7px;
  color: #332b25;
  font-size: 14px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d5c9bd;
  background: #fffdf9;
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgb(33 129 122 / 18%);
}

.form-submit {
  width: 100%;
  border: 0;
}

.form-result {
  min-height: 24px;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 900;
}

.site-footer {
  padding: 24px 0;
  color: rgb(255 255 255 / 72%);
  background: #0d0d0f;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto 1fr auto auto;
  }

  .service-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    width: calc(100% - 24px);
    padding-top: 14px;
  }

  .brand-text {
    max-width: 50vw;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-call {
    display: none;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    right: 12px;
    left: 12px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px;
    border: 1px solid rgb(255 255 255 / 12%);
    background: rgb(16 17 21 / 96%);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    display: grid;
  }

  .site-nav a {
    border-radius: var(--radius);
    padding: 14px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-media {
    background-position: 64% center;
  }

  .hero-content {
    align-self: start;
    margin: 120px auto 300px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .button {
    flex: 1 1 170px;
  }

  .hero-strip {
    grid-template-columns: 1fr;
    bottom: 14px;
  }

  .hero-strip div {
    padding: 14px 16px;
  }

  .hero-strip div + div {
    border-top: 1px solid rgb(255 255 255 / 12%);
    border-left: 0;
  }

  section:not(.hero) {
    padding: 64px 0;
  }

  .summary-grid,
  .service-grid,
  .timeline,
  .area-layout,
  .form-row {
    grid-template-columns: 1fr;
  }

  .service-card,
  .timeline li {
    min-height: auto;
  }

  .compare-table {
    display: grid;
    gap: 12px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .compare-table > div {
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .compare-table > div:first-child {
    display: none;
  }

  .compare-table span {
    border: 0;
    padding: 12px 16px;
  }

  .compare-table span + span {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .contact-form {
    padding: 22px;
  }
}

@media (max-width: 440px) {
  .button {
    width: 100%;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  h1 {
    font-size: 40px;
  }

  .title-second {
    flex-basis: 100%;
  }

  .title-second > span {
    display: none;
  }

  .price-panel strong {
    font-size: 32px;
  }
}
