/* ============================================================
   NEW SUNRISES PROPERTY MANAGEMENT
   Design tokens per docs/harper-style-guide.md · Part B
   ============================================================ */

:root {
  /* Colour */
  --teal:        #2CBBB5;
  --teal-hover:  #27D0C9;
  --teal-deep:   #1E8F8A;
  --ink:         #0E1111;
  --ink-soft:    #1A1E1E;
  --charcoal:    #343434;
  --cream:       #FAFAF8;
  --surface:     #FFFFFF;
  --mist:        rgba(115,115,115,0.04);
  --hairline:    rgba(14,17,17,0.08);
  --hairline-d:  rgba(255,255,255,0.10);
  --text-dim:    rgba(14,17,17,0.62);
  --text-dim-d:  rgba(255,255,255,0.64);

  /* Type */
  --font-sans: "Plus Jakarta Sans", "Noto Sans SC", "Lato", sans-serif;
  --font-display: "Marcellus", Georgia, serif;   /* wordmark only */
  --text-hero:  clamp(2.75rem, 6vw, 4.5rem);
  --text-h2:    clamp(2rem, 4vw, 3rem);
  --text-h3:    clamp(1.25rem, 2vw, 1.5rem);
  --text-stat:  clamp(3rem, 6vw, 4.75rem);
  --text-lead:  clamp(1.125rem, 1.6vw, 1.3125rem);
  --text-body:  1.0625rem;

  /* Space */
  --section-py: clamp(6rem, 10vw, 10rem);
  --container-max: 80rem;
  --container-px: clamp(1.25rem, 4vw, 3rem);

  /* Shape */
  --radius-card: 2rem;
  --radius-inner: calc(2rem - 0.375rem);
  --shadow-ambient: 0 24px 80px -32px rgba(14,17,17,0.18);
  --glint: inset 0 1px 1px rgba(255,255,255,0.15);

  /* Motion */
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 7rem; }
body {
  font-family: var(--font-sans);
  font-size: var(--text-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
.lang-zh { font-family: "Noto Sans SC", var(--font-sans); }

::selection { background: var(--teal); color: #fff; }

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

/* ============================================================
   REVEAL (scroll entry)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(3.5rem);
  transition:
    opacity .9s var(--ease) var(--d, 0s),
    transform .9s var(--ease) var(--d, 0s);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   NAV — floating glass island
   ============================================================ */
.nav-wrap {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 40;
  display: flex;
  justify-content: center;
  padding-top: 1.5rem;
  pointer-events: none;
}
.nav-island {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding: 0.5rem 0.5rem 0.5rem 1.25rem;
  border-radius: 9999px;
  background: rgba(250,250,248,0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 0 0 1px rgba(14,17,17,0.06), 0 12px 40px -18px rgba(14,17,17,0.25);
  transition: box-shadow .5s var(--ease), background .5s var(--ease), transform .5s var(--ease);
}
.nav-island.is-scrolled {
  background: rgba(250,250,248,0.88);
  box-shadow: 0 0 0 1px rgba(14,17,17,0.08), 0 16px 48px -16px rgba(14,17,17,0.35);
}
.nav-brand { display: flex; align-items: center; gap: .6rem; }
/* Wordmark sits beside the logo, so the mark is height-locked and free-width */
.nav-brand-mark { width: auto; height: 1.75rem; flex-shrink: 0; }
/* Stacked lockup: company name over the legal suffix, both in the display face */
.nav-brand-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.14;
  text-transform: uppercase;
  white-space: nowrap;
}
/* tracking adds a trailing gap after the last letter of each line — pull it
   back per line, otherwise neither line centres against the other */
.nav-brand-name { font-size: 0.9375rem; letter-spacing: 0.14em; margin-right: -0.14em; }
.nav-brand-sub {
  font-size: 0.5625rem;
  letter-spacing: 0.24em;
  margin-right: -0.24em;
  color: var(--text-dim);
}
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  display: block;
  padding: 0.5rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dim);
  transition: color .4s var(--ease), background .4s var(--ease);
}
.nav-link:hover { color: var(--ink); background: rgba(14,17,17,0.05); }
.nav-link.is-active { color: var(--ink); }
.nav-link-zh { color: var(--teal-deep); }

.btn-nav { font-size: 0.875rem; padding: 0.5rem 0.5rem 0.5rem 1.1rem; }
.btn-nav .btn-icon { width: 1.75rem; height: 1.75rem; }

/* Hamburger */
.nav-burger {
  display: none;
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  background: rgba(14,17,17,0.05);
}
.nav-burger-line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.125rem;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .5s var(--ease);
}
.nav-burger-line:nth-child(1) { transform: translate(-50%, calc(-50% - 3.5px)); }
.nav-burger-line:nth-child(2) { transform: translate(-50%, calc(-50% + 3.5px)); }
.nav-burger[aria-expanded="true"] .nav-burger-line:nth-child(1) { transform: translate(-50%,-50%) rotate(45deg); }
.nav-burger[aria-expanded="true"] .nav-burger-line:nth-child(2) { transform: translate(-50%,-50%) rotate(-45deg); }

/* Fullscreen overlay menu */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
  padding: 6rem var(--container-px) 3rem;
  background: rgba(14,17,17,0.85);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .6s var(--ease), visibility 0s .6s;
}
.nav-overlay.is-open { opacity: 1; visibility: visible; transition: opacity .6s var(--ease); }
.nav-overlay-links li, .nav-overlay-foot {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: 0s;
}
.nav-overlay.is-open .nav-overlay-links li,
.nav-overlay.is-open .nav-overlay-foot {
  opacity: 1;
  transform: none;
  transition-delay: calc(var(--i) * 60ms + 120ms);
}
.nav-overlay-links a {
  display: block;
  padding: 0.6rem 0;
  font-size: clamp(1.75rem, 7vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--cream);
  transition: color .4s var(--ease);
}
.nav-overlay-links a:hover { color: var(--teal); }

/* ============================================================
   BUTTONS — pill + nested icon circle
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.75rem 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1;
  white-space: nowrap;
  transition: transform .5s var(--ease), background .5s var(--ease), color .5s var(--ease), box-shadow .5s var(--ease);
}
.btn:active { transform: scale(0.98); }
.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.16);
  box-shadow: var(--glint);
  transition: transform .5s var(--ease);
}
.btn-icon svg { width: 0.875rem; height: 0.875rem; }
.btn:hover .btn-icon { transform: translate(3px, -1px) scale(1.05); }

.btn-primary { background: var(--ink); color: var(--teal); }
.btn-primary:hover { background: var(--ink-soft); }

.btn-teal { background: var(--teal); color: var(--ink); }
.btn-teal:hover { background: var(--teal-hover); }
.btn-teal .btn-icon { background: rgba(14,17,17,0.12); }

.btn-ghost {
  background: rgba(255,255,255,0.55);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(14,17,17,0.12);
}
.btn-ghost:hover { background: rgba(255,255,255,0.85); box-shadow: inset 0 0 0 1px rgba(14,17,17,0.22); }
.btn-icon-ghost { background: rgba(14,17,17,0.07); }

.btn-lg { font-size: 1rem; padding: 0.9rem 0.9rem 0.9rem 1.75rem; }
.btn-lg .btn-icon { width: 2.25rem; height: 2.25rem; }

/* ============================================================
   TYPO ELEMENTS
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-deep);
  box-shadow: inset 0 0 0 1px rgba(44,187,181,0.35);
  margin-bottom: 1.5rem;
}
.eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--teal);
}
.eyebrow-onDark { color: var(--teal); box-shadow: inset 0 0 0 1px rgba(44,187,181,0.4); }

.section { --pad-top: var(--section-py); padding-block: var(--pad-top) var(--section-py); }
/* An anchor jump lands on the section box, but the box opens with a full
   section's top padding — that stacks on scroll-padding-top and leaves a void
   the height of the nav plus the padding before any content appears. Pulling
   the landing point down by the padding (less a small breathing gap) puts the
   eyebrow just under the nav at every breakpoint. */
.section[id] { scroll-margin-top: calc(1.5rem - var(--pad-top)); }
/* #chinese is a card inside the contact section, not a section box, so it has
   no padding to discount — it only needs the same breathing gap. */
#chinese { scroll-margin-top: 1.5rem; }
.section-head { text-align: center; max-width: 46rem; margin-inline: auto; margin-bottom: clamp(3rem, 6vw, 5rem); }
.section-head-left { text-align: left; margin-inline: 0; }
.section-title {
  font-size: var(--text-h2);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.12;
}
.section-title em { font-style: normal; color: var(--teal); }
.section-lead { margin-top: 1.25rem; font-size: var(--text-lead); color: var(--text-dim-d); }

/* Dark sections */
.section-dark {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
}
.section-dark-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 70rem;
  height: 40rem;
  background: radial-gradient(closest-side, rgba(44,187,181,0.14), transparent 70%);
  pointer-events: none;
}
.section-dark-glow-low { top: auto; bottom: 10%; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: var(--cream);
  color: var(--ink);
  overflow: hidden;
  padding-block: clamp(9rem, 14vh, 12rem) clamp(5rem, 8vh, 7rem);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-img {
  position: absolute;
  inset: 0;
  background-image: url("../img/hero-background.jpg");
  background-image: image-set(
    url("../img/hero-background.webp") type("image/webp"),
    url("../img/hero-background.jpg") type("image/jpeg")
  );
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
}
/* Left-side veil keeps the headline legible over the artwork */
.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(250,250,248,0.88) 0%,
    rgba(250,250,248,0.82) 38%,
    rgba(250,250,248,0.58) 56%,
    rgba(250,250,248,0.14) 80%,
    rgba(250,250,248,0) 100%
  );
}
/* Bottom fade blends the hero into the next section */
.hero-fade {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 22%;
  background: linear-gradient(to top, var(--cream), rgba(250,250,248,0));
}
.hero-inner { position: relative; max-width: 56rem; }
.hero-title {
  font-size: var(--text-hero);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin-bottom: 1.75rem;
}
.hero-title em {
  font-style: normal;
  color: var(--teal-deep);
}
.hero-lead {
  font-size: var(--text-lead);
  font-weight: 500;
  color: rgba(14,17,17,0.82);
  max-width: 38rem;
  margin-bottom: 1rem;
}
.hero-sub {
  font-size: 1rem;
  color: var(--text-dim);
  max-width: 40rem;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.25rem; }
.hero-note {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-dim);
}
.hero-note-dot {
  width: 0.5rem; height: 0.5rem;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 12px rgba(44,187,181,0.7);
  flex-shrink: 0;
}

/* ============================================================
   SHELL / CORE — double-bezel cards
   ============================================================ */
.shell {
  border-radius: var(--radius-card);
  background: rgba(14,17,17,0.04);
  box-shadow: 0 0 0 1px var(--hairline);
  padding: 0.375rem;
}
.core {
  height: 100%;
  border-radius: var(--radius-inner);
  background: var(--surface);
  box-shadow: var(--glint), var(--shadow-ambient);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.shell-dark { background: rgba(255,255,255,0.05); box-shadow: 0 0 0 1px var(--hairline-d); }
.core-dark {
  background: var(--ink-soft);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.06);
  color: var(--cream);
}
.core-ink {
  background: var(--ink);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.06);
  color: var(--cream);
}
.core-teal {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 120%);
  color: var(--ink);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.35);
}

.offer-extra-title {
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 1.1rem;
}

/* tick list */
.tick-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.65rem;
  line-height: 1.5;
}
.tick-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.14em;
  width: 1.25rem; height: 1.25rem;
  border-radius: 50%;
  background: rgba(44,187,181,0.14)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.8 6.4L5 8.6l4.2-5' stroke='%231E8F8A' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/0.65rem no-repeat;
}

/* ============================================================
   SECTION 3 — SERVICES
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.card-grid h3 {
  font-size: var(--text-h3);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--teal);
  margin-bottom: 0.6rem;
  line-height: 1.25;
}
.card-grid p { font-size: 0.9375rem; color: var(--text-dim-d); }
.svc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem; height: 3.75rem;
  border-radius: 9999px;
  background: rgba(44,187,181,0.1);
  box-shadow: inset 0 0 0 1px rgba(44,187,181,0.25);
  color: var(--teal);
  margin-bottom: 1.25rem;
}
.svc-icon svg { width: 1.875rem; height: 1.875rem; }
.card-grid .shell { transition: transform .6s var(--ease); }
.card-grid .shell:hover { transform: translateY(-4px); }

/* How it works */
.how { margin-top: clamp(4rem, 8vw, 6.5rem); text-align: center; }
.how-title {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 2.75rem;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  counter-reset: step;
  text-align: left;
  margin-bottom: 2.75rem;
}
.how-steps li {
  position: relative;
  padding: 1.4rem 1.2rem;
  border-radius: 1.25rem;
  background: rgba(255,255,255,0.04);
  box-shadow: 0 0 0 1px var(--hairline-d);
}
.how-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  background: rgba(44,187,181,0.12);
  box-shadow: inset 0 0 0 1px rgba(44,187,181,0.22);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--teal);
  margin-bottom: 0.85rem;
  font-feature-settings: "tnum";
}
.how-steps p { font-size: 0.9rem; color: rgba(255,255,255,0.85); line-height: 1.45; }

/* ============================================================
   SECTION 4 — WHY
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.why-lead { font-size: var(--text-lead); font-weight: 600; margin-bottom: 1rem; }
.why-body { color: var(--text-dim); max-width: 36rem; margin-bottom: 2.25rem; }
.why-list-title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 1.1rem;
}
.why-side { position: sticky; top: 7rem; }
.why-side-lead { font-weight: 600; margin-bottom: 1.1rem; color: rgba(255,255,255,0.85); }
.chip-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.chip-list li {
  padding: 0.45rem 0.95rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  background: rgba(44,187,181,0.1);
  box-shadow: inset 0 0 0 1px rgba(44,187,181,0.3);
  color: rgba(255,255,255,0.92);
  line-height: 1.35;
}
.why-side-foot { font-size: 0.875rem; color: var(--text-dim-d); }

/* ============================================================
   SECTION 5 — PRICING
   ============================================================ */
.pricing { background: var(--surface); }
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.price-name {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 1rem;
}
.core-teal .price-name { color: rgba(14,17,17,0.7); }
.price-value {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  font-feature-settings: "tnum";
}
.price-value small { font-size: 0.45em; font-weight: 700; }
.price-desc { font-weight: 600; margin-top: 0.45rem; }
.price-note { margin-top: 0.8rem; font-size: 0.875rem; color: var(--text-dim); line-height: 1.5; }
.core-teal .price-note { color: rgba(14,17,17,0.72); }
.price-feature .core { position: relative; overflow: hidden; }

.price-cols {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 1.25rem;
  align-items: stretch;
}
.price-aside { color: var(--text-dim); margin-bottom: 1rem; }
.dash-list { columns: 2; column-gap: 2rem; }
.dash-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.6rem;
  break-inside: avoid;
  font-size: 0.9375rem;
}
.dash-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.7em;
  width: 0.55rem; height: 1.5px;
  background: var(--teal);
  border-radius: 2px;
}
.price-info { display: flex; flex-direction: column; gap: 1.1rem; align-items: flex-start; }
.price-info p:not(.offer-extra-title) { color: var(--text-dim-d); font-size: 0.9375rem; }
.price-info .btn { margin-top: auto; }

/* ============================================================
   SECTION 6 — CONTACT
   ============================================================ */
.contact { padding-block: var(--pad-top) clamp(3.5rem, 5vw, 5rem); }
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}
.contact-lead { color: var(--text-dim-d); margin-bottom: 2.25rem; max-width: 30rem; }
.contact-details { margin-bottom: 2rem; }
.contact-details-title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}
.contact-org { font-weight: 700; margin-bottom: 1.1rem; line-height: 1.5; }
/* `display: flex` below would otherwise beat the UA's [hidden] rule */
.contact-lines li[hidden] { display: none; }
.contact-lines li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.6rem;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.85);
}
.contact-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem; height: 2rem;
  border-radius: 9999px;
  background: rgba(44,187,181,0.1);
  box-shadow: inset 0 0 0 1px rgba(44,187,181,0.3);
  color: var(--teal);
  flex-shrink: 0;
}
.contact-ic svg { width: 1rem; height: 1rem; }
.ph { color: var(--text-dim-d); font-style: italic; }
.contact-link {
  color: inherit;
  box-shadow: inset 0 -1px 0 rgba(44,187,181,0.45);
  transition: color .4s var(--ease), box-shadow .4s var(--ease);
  /* long address, narrow column — let it wrap rather than push the card wide */
  word-break: break-word;
}
.contact-link:hover { color: var(--teal); box-shadow: inset 0 -1px 0 var(--teal); }
.contact-bi { font-size: 0.875rem; color: var(--text-dim-d); }
.contact-zh-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.7rem;
}
.contact-zh p:not(.contact-zh-title) { font-size: 0.9375rem; color: rgba(255,255,255,0.82); line-height: 1.8; }

/* Form */
.form-core { background: var(--cream); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--charcoal);
}
.field label small { font-weight: 500; color: var(--text-dim); }
.field input, .field textarea {
  width: 100%;
  font: inherit;
  font-size: 0.9375rem;
  color: var(--ink);
  background: var(--surface);
  border: 0;
  border-radius: 0.875rem;
  padding: 0.8rem 1rem;
  box-shadow: inset 0 0 0 1px var(--hairline);
  transition: box-shadow .4s var(--ease);
}
.field textarea { resize: vertical; min-height: 6rem; }
.field :is(input, textarea):focus {
  outline: none;
  box-shadow: inset 0 0 0 1.5px var(--teal), 0 0 0 4px rgba(44,187,181,0.15);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(14,17,17,0.35); }

.check {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  cursor: pointer;
  margin: 0.25rem 0 1.5rem;
}
.check input { position: absolute; opacity: 0; pointer-events: none; }
.check-box {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem; height: 1.25rem;
  margin-top: 0.1rem;
  border-radius: 0.4rem;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px rgba(14,17,17,0.2);
  color: transparent;
  transition: background .4s var(--ease), color .4s var(--ease), box-shadow .4s var(--ease);
}
.check-box svg { width: 0.7rem; height: 0.7rem; }
.check input:checked + .check-box { background: var(--teal); color: var(--ink); box-shadow: none; }
.check input:focus-visible + .check-box { box-shadow: 0 0 0 3px rgba(44,187,181,0.35); }
.check-text { font-size: 0.8125rem; color: var(--text-dim); line-height: 1.5; }

/* .btn is nowrap; left alone the submit label's min-content (317px) sizes the
   whole contact grid column and the card overflows a 375px viewport. */
.btn-submit { width: 100%; justify-content: space-between; white-space: normal; }
.form-success {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  background: rgba(44,187,181,0.12);
  box-shadow: inset 0 0 0 1px rgba(44,187,181,0.4);
  color: var(--teal-deep);
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.6;
}
.form-error {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  background: rgba(192,43,10,0.10);
  box-shadow: inset 0 0 0 1px rgba(192,43,10,0.35);
  color: #A32409;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.6;
}
.form-error .contact-link { box-shadow: inset 0 -1px 0 rgba(163,36,9,0.5); }
.form-error .contact-link:hover { color: #A32409; box-shadow: inset 0 -1px 0 #A32409; }
/* honeypot — must be reachable by bots parsing the DOM, invisible to people */
.hp {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip-path: inset(50%);
  overflow: hidden;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(3.5rem, 6vw, 5rem) 0 2.5rem;
  border-top: 1px solid var(--hairline-d);
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--hairline-d);
  margin-bottom: 2.5rem;
}
.nav-brand-foot { color: var(--cream); margin-bottom: 1rem; }
.nav-brand-foot .nav-brand-mark { height: 2.25rem; }
.nav-brand-foot .nav-brand-name { font-size: 1.125rem; letter-spacing: 0.16em; margin-right: -0.16em; }
.nav-brand-foot .nav-brand-sub {
  font-size: 0.6875rem;
  letter-spacing: 0.26em;
  margin-right: -0.26em;
  color: var(--text-dim-d);
}
.footer-org { font-size: 0.875rem; color: var(--text-dim-d); line-height: 1.6; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer-nav a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dim-d);
  transition: color .4s var(--ease);
}
.footer-nav a:hover { color: var(--teal); }
.footer-legal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-legal-title {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.6rem;
}
.footer-legal p:not(.footer-legal-title) { font-size: 0.8125rem; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer-copy { font-size: 0.8125rem; color: rgba(255,255,255,0.4); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .how-steps { grid-template-columns: repeat(2, 1fr); }
  .dash-list { columns: 1; }
}

@media (max-width: 900px) {
  .nav-links, .btn-nav { display: none; }
  .nav-burger { display: block; }
  .nav-island { gap: 1rem; padding: 0.4rem 0.4rem 0.4rem 1rem; }
  .why-grid, .price-cols, .contact-grid { grid-template-columns: 1fr; }
  .why-side { position: static; }
}

@media (max-width: 768px) {
  /* Keep the artwork clear of the stacked copy on narrow screens */
  .hero-img { background-position: center bottom; }
  .hero-veil {
    background: linear-gradient(
      to bottom,
      rgba(250,250,248,0.96) 0%,
      rgba(250,250,248,0.93) 58%,
      rgba(250,250,248,0.45) 84%,
      rgba(250,250,248,0.12) 100%
    );
  }
  .section { --pad-top: 4.5rem; padding-block: 4.5rem; }
  .card-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .hero-actions .btn { width: 100%; justify-content: space-between; }
  .footer-legal { grid-template-columns: 1fr; }
  .container { padding-inline: 1rem; }
}
