:root {
  --black: #060606;
  --black-elevated: #0e0e10;
  --surface: #141416;
  /* Brand gold */
  --accent: #efb844;
  --accent-hover: #f7cf65;
  --accent-soft: #fce896;
  --accent-deep: #c99520;
  --accent-ring: rgba(239, 184, 68, 0.48);
  --on-accent: #141209;
  --text: #f5f5f3;
  --text-muted: #b9b9b5;
  --text-soft: #8d8d88;
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.2);
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-zh: "Noto Sans SC", var(--font);
  --radius-lg: 28px;
  --radius-md: 16px;
  --page-pad: clamp(1rem, 4vw, 2.5rem);
  --max: min(1180px, 100%);
  --fw-display: 800;
  --fw-head: 700;
  --fw-label: 600;
  --fw-body: 400;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.62;
  font-weight: var(--fw-body);
  letter-spacing: 0.01em;
  color: var(--text);
  background: var(--black);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.zh,
.hero-title-line--gold,
.hero-tagline,
.zh-footer {
  font-family: var(--font-zh);
}

a {
  color: var(--accent-soft);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: calc(var(--max) + var(--page-pad) * 2);
  margin: 0 auto;
  padding: 1rem var(--page-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
}

.brand-ring {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  overflow: hidden;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 25%, rgba(239, 184, 68, 0.2), transparent 62%);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.header-right {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 3vw, 1.75rem);
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

.lang {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.2rem 0.35rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(20, 20, 20, 0.9);
}

.lang-btn {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--text-soft);
  font: inherit;
  font-size: 0.6875rem;
  font-weight: var(--fw-display);
  letter-spacing: 0.1em;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  cursor: pointer;
  line-height: 1;
}

.lang-btn:hover {
  color: var(--text);
}

.lang-btn.is-active {
  background: linear-gradient(165deg, var(--accent-hover), var(--accent-deep));
  color: var(--on-accent);
}

.lang-btn:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 2px;
}

.lang-sep {
  color: var(--border-strong);
  font-size: 0.75rem;
  user-select: none;
}

/* Hero */
.hero-wrap {
  position: relative;
  overflow: hidden;
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 55% at 72% 14%, rgba(239, 184, 68, 0.12), transparent 58%),
    radial-gradient(ellipse 65% 45% at 8% 78%, rgba(239, 184, 68, 0.06), transparent 52%),
    linear-gradient(180deg, var(--black) 0%, var(--black-elevated) 55%, var(--black) 100%);
  opacity: 1;
}

.hero-layout {
  position: relative;
  max-width: calc(var(--max) + var(--page-pad) * 2);
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 4rem) var(--page-pad) clamp(2.5rem, 7vw, 5rem);
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

@media (min-width: 960px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: clamp(1.5rem, 4vw, 3rem);
  }
}

.hero-copy {
  text-align: left;
}

.hero-lockup {
  margin-bottom: 1.25rem;
}

.hero-lockup-mark {
  display: block;
  margin-bottom: 1rem;
}

.hero-logo {
  width: clamp(4rem, 12vw, 5.75rem);
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  filter: drop-shadow(0 0 22px var(--accent-ring));
}

.hero-tagline {
  font-size: clamp(0.625rem, 1vw, 0.6875rem);
  font-weight: var(--fw-display);
  color: var(--accent-soft);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  line-height: 1.5;
}

.hero-title {
  margin: 0;
  line-height: 1.06;
}

.hero-title-line {
  display: block;
}

.hero-title-line--light {
  font-size: clamp(2.85rem, 6.8vw, 4.25rem);
  font-weight: var(--fw-display);
  letter-spacing: -0.038em;
  line-height: 1.02;
  color: var(--text);
}

.hero-title-line--gold {
  font-size: clamp(1.55rem, 3.8vw, 2.65rem);
  font-weight: var(--fw-label);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--accent-soft);
  margin-top: 0.45rem;
}

.hero-lead {
  margin: 1.5rem 0 1.85rem;
  max-width: 36rem;
  font-size: clamp(1rem, 1.35vw, 1.125rem);
  line-height: 1.72;
  color: var(--text-muted);
  font-weight: var(--fw-body);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: clamp(2rem, 5vw, 2.75rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.65rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: var(--fw-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.14s ease, background-color 0.14s ease, border-color 0.14s ease, box-shadow 0.14s ease;
}

.btn:hover {
  text-decoration: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn:focus-visible {
  outline: 3px solid var(--accent-ring);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(165deg, var(--accent-hover), var(--accent));
  color: var(--on-accent);
  box-shadow: 0 14px 42px rgba(239, 184, 68, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(165deg, #fce078, var(--accent-hover));
  box-shadow: 0 16px 48px rgba(239, 184, 68, 0.34);
}

.btn-outline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-strong);
  font-weight: var(--fw-label);
}

.btn-outline:hover {
  border-color: rgba(239, 184, 68, 0.42);
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
}

.hero-meta-bar {
  display: grid;
  gap: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}

@media (min-width: 640px) {
  .hero-meta-bar {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
  }
}

.hero-meta-col {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.hero-meta-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: var(--fw-display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.4rem;
}

.hero-meta-value {
  font-size: 0.9375rem;
  font-weight: var(--fw-label);
  color: var(--text-muted);
  line-height: 1.55;
}

.hero-meta-link {
  color: var(--text);
  font-weight: var(--fw-head);
}

.hero-meta-link:hover {
  color: var(--accent-soft);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

@media (min-width: 960px) {
  .hero-visual {
    justify-content: flex-end;
  }
}

.hero-visual-frame {
  width: min(100%, 440px);
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(239, 184, 68, 0.26);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 24px 80px rgba(0, 0, 0, 0.65),
    0 0 90px rgba(239, 184, 68, 0.14);
}

@media (min-width: 960px) {
  .hero-visual-frame {
    width: min(100%, 520px);
  }
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 959px) {
  .hero-copy {
    text-align: center;
  }

  .hero-lockup-mark {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-meta-bar {
    text-align: left;
  }
}

/* Gallery */
.gallery {
  border-top: 1px solid var(--border);
  background:
    radial-gradient(ellipse 80% 45% at 18% 28%, rgba(239, 184, 68, 0.07), transparent 55%),
    var(--black);
}

.gallery-inner {
  max-width: calc(var(--max) + var(--page-pad) * 2);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 4.75rem) var(--page-pad);
}

.gallery-head {
  max-width: 40rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
}

.gallery-title {
  margin-bottom: 0.5rem;
}

.gallery-intro {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: var(--fw-body);
  line-height: 1.68;
  color: var(--text-muted);
}

.gallery-grid {
  display: grid;
  gap: 0.875rem;
}

.gallery-card {
  margin: 0;
}

.gallery-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 20px 50px rgba(0, 0, 0, 0.45);
}

.gallery-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  min-height: 200px;
  transform: scale(1.001);
  transition: transform 0.45s ease;
}

.gallery-card:hover .gallery-img {
  transform: scale(1.03);
}

@media (min-width: 640px) and (max-width: 979px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-card--store {
    grid-column: 1 / -1;
  }

  .gallery-card--box {
    grid-column: 1 / -1;
  }
}

@media (min-width: 980px) {
  .gallery-grid {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: minmax(200px, 18vw) minmax(200px, 18vw) minmax(220px, 20vw);
    gap: 1rem;
    align-items: stretch;
  }

  .gallery-card {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .gallery-frame {
    flex: 1;
    min-height: 0;
  }

  .gallery-card--store {
    grid-column: 1 / span 5;
    grid-row: 1 / span 2;
  }

  .gallery-card--room {
    grid-column: 6 / span 7;
    grid-row: 1;
  }

  .gallery-card--hood {
    grid-column: 6 / span 7;
    grid-row: 2;
  }

  .gallery-card--box {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .gallery-card--store .gallery-img {
    min-height: 100%;
    aspect-ratio: auto;
  }

  .gallery-card--room .gallery-img,
  .gallery-card--hood .gallery-img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .gallery-card--box .gallery-img {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}

/* Features */
.features {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--black) 0%, var(--black-elevated) 45%, var(--black) 100%);
}

.features-inner {
  max-width: calc(var(--max) + var(--page-pad) * 2);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 4.5rem) var(--page-pad);
}

.section-title {
  font-size: clamp(1.875rem, 3.4vw, 2.375rem);
  font-weight: var(--fw-display);
  letter-spacing: -0.038em;
  line-height: 1.12;
  margin: 0 0 1.75rem;
  color: var(--text);
}

.feature-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1rem;
  }
}

@media (min-width: 1100px) {
  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.15rem;
  }
}

.feature-card {
  padding: clamp(1.35rem, 3vw, 1.75rem);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(20, 20, 20, 0.72);
}

.feature-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  font-weight: var(--fw-head);
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--text);
}

.feature-card p {
  margin: 0;
  font-size: 0.875rem;
  font-weight: var(--fw-body);
  line-height: 1.72;
  color: var(--text-muted);
}

/* Pricing */
.pricing {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--black-elevated) 0%, var(--black) 100%);
}

#prezzi {
  scroll-margin-top: 5.5rem;
}

#menu {
  scroll-margin-top: 5.5rem;
}

.pricing-inner {
  max-width: calc(var(--max) + var(--page-pad) * 2);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 4.5rem) var(--page-pad);
}

.pricing-title {
  margin-bottom: 0.4rem;
}

.pricing-lead {
  margin: 0 0 1.75rem;
  font-size: 0.9375rem;
  font-weight: var(--fw-body);
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 36rem;
}

.pricing-panels {
  display: grid;
  gap: 1.1rem;
}

@media (min-width: 720px) {
  .pricing-panels {
    grid-template-columns: 1.35fr 1fr;
    align-items: stretch;
    gap: 1.25rem;
  }
}

.price-panel {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: clamp(1.25rem, 3vw, 1.65rem);
  background: rgba(20, 20, 20, 0.85);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.price-panel-head {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 2.85rem;
  margin: 0 0 0.85rem;
}

.price-panel-title {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: var(--fw-display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.price-panel-note {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  font-weight: var(--fw-body);
  line-height: 1.45;
  color: var(--text-soft);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.price-table th {
  font-weight: var(--fw-body);
  text-align: left;
  vertical-align: middle;
  padding: 0.7rem 0.75rem 0.7rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-soft);
  font-size: 0.8125rem;
  line-height: 1.45;
}

.price-table td {
  text-align: right;
  vertical-align: middle;
  padding: 0.7rem 0 0.7rem 0.75rem;
  border-bottom: 1px solid var(--border);
  font-weight: var(--fw-display);
  font-size: clamp(1.125rem, 2.8vw, 1.35rem);
  font-variant-numeric: tabular-nums;
  color: var(--text);
  white-space: nowrap;
}

.price-table tbody tr:last-child th,
.price-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-foot {
  margin: 1.6rem 0 0;
  max-width: 40rem;
  font-size: 0.8125rem;
  font-weight: var(--fw-body);
  line-height: 1.58;
  color: var(--text-soft);
}

/* Menu */
.menu-section {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--black) 0%, var(--black-elevated) 45%, var(--black) 100%);
}

.menu-inner {
  max-width: calc(var(--max) + var(--page-pad) * 2);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 4.5rem) var(--page-pad);
  text-align: center;
}

.menu-title {
  margin-bottom: 0.6rem;
}

.menu-lead {
  margin: 0 auto 1.6rem;
  max-width: 36rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-weight: var(--fw-body);
  line-height: 1.68;
}

.menu-actions {
  display: flex;
  justify-content: center;
}

/* Location */
.location {
  border-top: 1px solid var(--border);
}

.location-inner {
  max-width: calc(var(--max) + var(--page-pad) * 2);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 4.5rem) var(--page-pad);
  text-align: center;
}

.location-inner .section-title {
  margin-bottom: 0.65rem;
}

.location-lead {
  margin: 0 auto 1.75rem;
  max-width: 34rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-weight: var(--fw-body);
  line-height: 1.68;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.hours-panel {
  max-width: 36rem;
  margin: 0 auto;
  text-align: left;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
}

.hours-title {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: var(--fw-display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  color: var(--accent-soft);
}

.hours-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.hours-table {
  width: 100%;
  min-width: 280px;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.hours-table th,
.hours-table td {
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid var(--border);
}

.hours-table th {
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 700;
}

.hours-table td:first-child {
  font-weight: var(--fw-label);
  color: var(--text);
}

.hours-table td:not(:first-child) {
  color: var(--text-muted);
}

.hours-row--closed td:not(:first-child) {
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--text-soft);
  text-align: center;
}

.hours-note {
  margin: 1rem 0 0;
  font-size: 0.9375rem;
  color: var(--text-soft);
  text-align: center;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem var(--page-pad);
  text-align: center;
}

.footer-copy {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: var(--fw-body);
  color: var(--text-soft);
}

.footer-links {
  font-size: 0.8125rem;
}

.footer-links a {
  color: var(--text-muted);
  font-weight: var(--fw-label);
}

.footer-links a:hover {
  color: var(--accent-soft);
}

.footer-powered {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  font-weight: var(--fw-body);
  color: var(--text-soft);
}

.footer-powered a {
  color: var(--text-muted);
  font-weight: var(--fw-label);
}

.footer-powered a:hover {
  color: var(--accent-soft);
}

.sep {
  margin: 0 0.35rem;
  opacity: 0.5;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.75rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
  z-index: 100;
}

.toast[hidden] {
  display: none;
}

/* Newsletter */
#newsletter {
  scroll-margin-top: 5.5rem;
}

.nl-band {
  border-top: 1px solid var(--border);
  background:
    radial-gradient(ellipse 70% 50% at 88% 10%, rgba(239, 184, 68, 0.1), transparent 58%),
    linear-gradient(180deg, var(--black-elevated) 0%, var(--black) 100%);
}

.nl-band__inner {
  max-width: calc(var(--max) + var(--page-pad) * 2);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 4.5rem) var(--page-pad);
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
}

@media (min-width: 820px) {
  .nl-band__inner {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.nl-band__copy .section-title {
  margin-bottom: 0.55rem;
}

.nl-band__copy p {
  margin: 0;
  max-width: 36rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-weight: var(--fw-body);
  line-height: 1.68;
}

.nl-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.nl-form__row {
  display: flex;
  gap: 0.75rem;
}

.nl-form__row .btn {
  flex-shrink: 0;
}

.nl-form__row input[type="email"] {
  flex: 1;
  min-width: 0;
  min-height: 48px;
  font: inherit;
  font-size: 0.9375rem;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(20, 20, 22, 0.9);
  color: var(--text);
}

.nl-form__row input[type="email"]::placeholder {
  color: var(--text-soft);
}

.nl-form__row input[type="email"]:focus {
  outline: none;
  border-color: rgba(239, 184, 68, 0.55);
  box-shadow: 0 0 0 3px var(--accent-ring);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.checkbox-row {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.checkbox-row input {
  margin-top: 0.28rem;
  accent-color: var(--accent);
}

.nl-form__consent label {
  color: var(--text-soft);
  font-size: 0.8125rem;
  line-height: 1.55;
}

.nl-form__consent a {
  color: var(--accent-soft);
  font-weight: var(--fw-label);
}

.nl-form__consent a:hover {
  color: var(--accent-hover);
}

.nl-toast {
  display: none;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.875rem;
  font-weight: var(--fw-label);
  color: var(--text);
}

.nl-toast.is-visible {
  display: block;
}

.nl-toast.is-error {
  border-color: rgba(180, 70, 70, 0.55);
  background: #2a1414;
  color: #f3c4c4;
}

button[type="submit"][aria-busy="true"] {
  opacity: 0.72;
  cursor: wait;
}

body.nl-modal-open {
  overflow: hidden;
}

.nl-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.nl-modal[hidden] {
  display: none !important;
}

.nl-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 6, 0.78);
  backdrop-filter: blur(8px);
}

.nl-modal__card {
  position: relative;
  width: min(440px, 100%);
  background: var(--surface);
  border: 1px solid rgba(239, 184, 68, 0.26);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem 1.5rem;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 24px 80px rgba(0, 0, 0, 0.65),
    0 0 70px rgba(239, 184, 68, 0.12);
}

.nl-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.nl-modal__close:hover {
  background: rgba(239, 184, 68, 0.16);
  color: var(--accent-soft);
}

.nl-modal__kicker {
  margin: 0 0 0.5rem;
  font-size: 0.6875rem;
  font-weight: var(--fw-display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

html[lang^="zh"] .nl-modal__kicker {
  text-transform: none;
  letter-spacing: 0.08em;
  font-family: var(--font-zh);
}

.nl-modal__card h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.45rem, 3vw, 1.75rem);
  font-weight: var(--fw-display);
  letter-spacing: -0.03em;
  color: var(--text);
}

.nl-modal__card > p {
  margin: 0 0 1.2rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.nl-modal .nl-form__row {
  flex-direction: column;
}

@media (max-width: 819px) {
  .nl-form__row {
    flex-direction: column;
  }
}

.legal {
  max-width: 40rem;
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 4.5rem) var(--page-pad) 4rem;
}

.legal h1 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: var(--fw-display);
  letter-spacing: -0.038em;
  margin: 0 0 1.2rem;
}

.legal h2 {
  font-size: 1.15rem;
  font-weight: var(--fw-head);
  margin: 1.8rem 0 0.6rem;
}

.legal p {
  color: var(--text-muted);
  margin: 0 0 0.85rem;
  line-height: 1.7;
}

.legal a {
  color: var(--accent-soft);
  font-weight: var(--fw-label);
}

@media (prefers-reduced-motion: reduce) {
  .gallery-card:hover .gallery-img {
    transform: none;
  }

  .gallery-img {
    transition: none;
  }
}
