:root {
  --bg: #f3efe7;
  --bg-vignette: #ebe6dd;
  --surface: #fdfbf7;
  --surface-soft: #f7f2e9;
  --ink: #1f1b16;
  --muted: #6b6357;
  --line: #ddd5c8;
  --brand: #243f35;
  --brand-deep: #1a3028;
  --accent-soft: #ece4d7;
  --success: #0d7a3b;
  --radius: 14px;
  --radius-sm: 10px;
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 18px;
  --space-4: 28px;
  --font-display: "Iowan Old Style", "Baskerville", "Times New Roman", "Noto Serif SC", serif;
  --font-body: "Manrope", "Noto Sans SC", "Avenir Next", "SF Pro Display", "Helvetica Neue", sans-serif;
  --shadow-sm: 0 6px 20px rgba(22, 18, 13, 0.05);
  --shadow-md: 0 14px 30px rgba(22, 18, 13, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.65;
  background:
    radial-gradient(circle at 50% -15%, rgba(255, 255, 255, 0.5) 0%, transparent 48%),
    radial-gradient(circle at 15% 120%, rgba(0, 0, 0, 0.02) 0%, transparent 40%),
    linear-gradient(180deg, var(--bg), var(--bg-vignette));
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(243, 239, 231, 0.82);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
}

.brand {
  font-size: 1.08rem;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.9rem;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  color: #4f463a;
  transition: 0.22s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(253, 251, 247, 0.9);
  color: var(--ink);
  box-shadow: 0 2px 10px rgba(31, 27, 22, 0.08);
}

.lang-switch {
  display: flex;
  gap: 8px;
  align-items: center;
}

.lang-btn {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.82rem;
  color: #4f463a;
  cursor: pointer;
}

.lang-btn[aria-pressed="true"] {
  border-color: #9e9587;
  background: #eee8dc;
  color: #312a21;
}

.hero {
  padding: 94px 0 58px;
  animation: rise 0.7s ease both;
}

.hero-home {
  position: relative;
  overflow: hidden;
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 22px auto auto 4%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.04), transparent 65%);
  pointer-events: none;
}

.hero-home::after {
  content: "";
  position: absolute;
  inset: auto 6% -120px auto;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.03), transparent 62%);
  pointer-events: none;
}

.hero-home-panel {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(253, 251, 247, 0.92), rgba(247, 242, 233, 0.92));
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  padding: clamp(20px, 3vw, 34px);
}

.kicker {
  margin: 0 0 10px;
  font-size: 0.75rem;
  color: #685f53;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-family: var(--font-display);
}

h1 {
  font-size: clamp(2.2rem, 5.2vw, 4.6rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.8rem);
  font-weight: 650;
}

h3 {
  font-size: clamp(1.16rem, 2.2vw, 1.45rem);
  font-weight: 650;
}

p {
  margin: 0 0 12px;
  color: var(--muted);
}

.section {
  padding: 58px 0;
}

.section-tight {
  padding: 28px 0;
}

.breadcrumb-wrap {
  padding-top: 18px;
  padding-bottom: 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: #6b7280;
  font-size: 0.88rem;
}

.breadcrumb a {
  color: #0f766e;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero-grid,
.city-hero-grid,
.grid-2,
.grid-3,
.grid-4,
.story-grid {
  display: grid;
  gap: 20px;
}

.hero-proof {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-proof span {
  font-size: 0.82rem;
  font-weight: 500;
  color: #564d41;
  border: 1px solid #d8cfbf;
  background: rgba(249, 244, 236, 0.9);
  border-radius: 999px;
  padding: 6px 10px;
}

.hero-grid,
.city-hero-grid {
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
}

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

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

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

.card,
.form-wrap,
.story-block {
  background: rgba(253, 251, 247, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.card {
  padding: 24px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  border-color: #c9bfaf;
  box-shadow: 0 10px 24px rgba(31, 27, 22, 0.07);
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #3e372d;
  background: #f6f0e4;
  border: 1px solid #e1d7c8;
  margin-bottom: 10px;
}

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

.trust-strip article {
  background: rgba(253, 251, 247, 0.9);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
}

.trust-strip strong {
  font-size: 1.2rem;
  color: var(--ink);
}

.trust-strip p {
  margin: 2px 0 0;
  font-size: 0.85rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 10px 18px;
  font-size: 0.93rem;
  font-weight: 500;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--brand);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--brand-deep);
}

.btn-secondary {
  background: transparent;
  border-color: var(--line);
  color: #4f463a;
}

.btn-secondary:hover {
  background: #f3eee4;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.hero-text-link {
  color: #5e5549;
  font-size: 0.92rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.small {
  font-size: 0.9rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-visual,
.city-hero-illustration,
.theme-illustration,
.feature-illustration,
.inline-illustration,
.story-media {
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow-md);
}

.hero-visual {
  position: relative;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 10, 8, 0.08), rgba(12, 10, 8, 0.18));
  pointer-events: none;
}

.hero-media-note {
  margin-top: 10px;
  font-size: 0.82rem;
  color: #7a7267;
}

.city-hero-illustration img,
.theme-illustration img,
.feature-illustration img,
.inline-illustration img,
.story-media img {
  width: 100%;
  height: auto;
}

.label-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: #544b3f;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 12px;
  cursor: pointer;
}

.chip.active,
.chip:hover {
  border-color: #bcb19f;
  color: #3f372d;
  background: var(--accent-soft);
}

.filters {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.filter-item label {
  margin-bottom: 4px;
  font-size: 0.79rem;
  font-weight: 600;
}

.filter-item select {
  margin-bottom: 0;
}

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

.exp-card {
  background: rgba(253, 251, 247, 0.92);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.exp-cover {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.exp-body {
  padding: 16px;
}

.exp-type {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #574d41;
  font-weight: 700;
}

.exp-fit {
  font-size: 0.88rem;
}

.exp-meta,
.exp-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
  font-size: 0.86rem;
}

.exp-proof strong {
  color: #0f172a;
}

.exp-seat {
  margin-top: 8px;
  font-size: 0.84rem;
  color: #475569;
}

.result-hint {
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #fde68a;
  background: #fffbeb;
  color: #92400e;
}

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

.spot-card {
  padding: 16px;
  background: rgba(253, 251, 247, 0.92);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.map-spot {
  background: linear-gradient(165deg, #f6f0e4, #f0e8da);
}

.text-link {
  color: #4f4639;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}

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

.content-card {
  background: rgba(253, 251, 247, 0.9);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}

.content-card h3 {
  font-size: 1.04rem;
  margin-bottom: 10px;
}

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

.faq-list details {
  background: rgba(253, 251, 247, 0.92);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  color: #111827;
}

.faq-list p {
  margin-top: 10px;
  margin-bottom: 0;
}

.conversion-panel {
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #d4c9b7;
  background: linear-gradient(145deg, #f8f2e8, #f2ebdf);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 10px;
}

.label-list span {
  font-size: 0.8rem;
  padding: 4px 9px;
  border-radius: 999px;
  color: #374151;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
}

.score {
  margin: 10px 0;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: #e5e7eb;
}

.score span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #0071e3, #5ca9ff);
}

.timeline {
  border-left: 2px solid #dbe5f0;
  margin-left: 8px;
  padding-left: 16px;
}

.form-wrap {
  padding: 26px;
}

label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: #374151;
}

input,
textarea,
select {
  width: 100%;
  margin-bottom: 14px;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #111827;
  font: inherit;
}

input:focus,
textarea:focus,
select:focus,
a:focus,
button:focus {
  outline: 2px solid rgba(0, 113, 227, 0.3);
  outline-offset: 2px;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
  margin-bottom: 14px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4b5563;
  font-size: 0.9rem;
}

.checkbox-item input {
  width: auto;
  margin: 0;
}

.error {
  color: #b91c1c;
  font-size: 0.85rem;
  margin: -8px 0 12px;
}

.success-box {
  border-radius: var(--radius-sm);
  border: 1px solid #bbf7d0;
  background: #f0fdf4;
  color: var(--success);
  padding: 12px 14px;
  margin-bottom: 14px;
}

.story-grid {
  grid-template-columns: 1fr 1.2fr;
}

.founder-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 20px;
  align-items: start;
}

.story-media {
  min-height: 340px;
  background: linear-gradient(145deg, #f3f8ff, #f9fafb);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.story-media img {
  max-height: 620px;
  width: auto;
  max-width: 100%;
}

.story-media img.cover-photo {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
}

.story-content {
  padding: 28px;
}

.story-quote {
  margin: 14px 0;
  padding-left: 14px;
  border-left: 4px solid var(--brand);
  color: #111827;
  font-size: 1.04rem;
}

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

.geo-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  padding: 18px;
}

.geo-note {
  font-size: 0.88rem;
  color: #4b5563;
}

.source-list {
  margin: 10px 0 0;
  padding-left: 18px;
}

.source-list li {
  margin-bottom: 8px;
  color: #4b5563;
}

.source-list a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.team-card {
  background: rgba(253, 251, 247, 0.9);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.team-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.team-content {
  padding: 18px;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.thumb-row img {
  width: 100%;
  height: 84px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

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

.gallery-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.gallery-card p {
  margin: 0;
  padding: 10px 12px;
  font-size: 0.87rem;
}

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

.quanzhou-feature-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(253, 251, 247, 0.92);
  box-shadow: var(--shadow-sm);
}

.quanzhou-feature-media img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.quanzhou-feature-content {
  padding: 16px;
}

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 25;
  border-radius: 999px;
  padding: 10px 14px;
  background: #14a44d;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(20, 164, 77, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
}

footer {
  margin-top: 26px;
  border-top: 1px solid var(--line);
  padding: 24px 0 30px;
  color: #6f665a;
  font-size: 0.88rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .nav {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 3px;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links a {
    white-space: nowrap;
  }

  .hero-grid,
  .city-hero-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .story-grid,
  .founder-story-grid,
  .geo-grid,
  .team-grid,
  .gallery-grid,
  .thumb-row,
  .checkbox-grid,
  .trust-strip,
  .experience-grid,
  .spot-grid,
  .content-grid,
  .footer-grid,
  .filters,
  .quanzhou-feature-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 74px;
  }

  .filters {
    gap: 10px;
  }
}
