/* ========== 合欢宗 · 燕云十六声百业官网 ========== */
:root {
  --rose-deep: #6b2d3c;
  --rose: #8b3a4a;
  --rose-soft: #c47884;
  --rose-pale: #f3d6db;
  --gold: #c9a227;
  --gold-soft: #e8d48b;
  --ink: #1a1214;
  --ink-soft: #3d2a30;
  --paper: #faf6f2;
  --paper-warm: #f5ebe3;
  --cream: #fff9f5;
  --muted: #7a646a;
  --line: rgba(107, 45, 60, 0.15);
  --shadow: 0 20px 60px rgba(61, 22, 32, 0.12);
  --radius: 18px;
  --header-h: 72px;
  --font-serif: "Noto Serif SC", "Songti SC", "SimSun", serif;
  --font-display: "ZCOOL XiaoWei", "Noto Serif SC", serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-serif);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
ul, ol { list-style: none; }

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

/* 背景 */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(196, 120, 132, 0.18), transparent 50%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(201, 162, 39, 0.12), transparent 45%),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(107, 45, 60, 0.08), transparent 50%),
    linear-gradient(180deg, #faf6f2 0%, #f8f0eb 50%, #f3e8e2 100%);
}

.petal-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.petal {
  position: absolute;
  top: -40px;
  width: 12px;
  height: 10px;
  background: radial-gradient(circle at 30% 30%, #f7cdd4, #c47884);
  border-radius: 80% 0 80% 0;
  opacity: 0.55;
  animation: fall linear infinite;
  filter: blur(0.2px);
}

@keyframes fall {
  0% {
    transform: translateY(-10vh) rotate(0deg) translateX(0);
    opacity: 0;
  }
  10% { opacity: 0.6; }
  100% {
    transform: translateY(110vh) rotate(720deg) translateX(40px);
    opacity: 0;
  }
}

/* 按钮 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: 0.25s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  color: #fff;
  box-shadow: 0 10px 30px rgba(107, 45, 60, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(107, 45, 60, 0.36);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.45);
  border-color: rgba(107, 45, 60, 0.25);
  color: var(--rose-deep);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.75);
  border-color: var(--rose);
}

.btn-block { width: 100%; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: 0.3s ease;
}

.site-header.scrolled {
  background: rgba(250, 246, 242, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 30px rgba(61, 22, 32, 0.06);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-seal {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--rose), var(--rose-deep));
  color: #fff;
  font-family: var(--font-display);
  font-size: 22px;
  box-shadow: 0 6px 16px rgba(107, 45, 60, 0.3);
  border: 1px solid rgba(232, 212, 139, 0.4);
}

.brand-seal.small {
  width: 36px;
  height: 36px;
  font-size: 18px;
}

.brand-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--rose-deep);
  line-height: 1.2;
}

.brand-text small {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.06em;
}

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

.nav a {
  padding: 8px 12px;
  font-size: 14px;
  color: var(--ink-soft);
  border-radius: 999px;
  transition: 0.2s ease;
  white-space: nowrap;
}

.nav a:hover {
  color: var(--rose-deep);
  background: rgba(196, 120, 132, 0.12);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.6);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--rose-deep);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 40px) 0 80px;
  text-align: center;
}

.hero-ornament {
  position: absolute;
  top: 18%;
  width: 180px;
  height: 320px;
  opacity: 0.18;
  background:
    linear-gradient(var(--gold-soft), var(--gold-soft)) center/2px 100% no-repeat,
    radial-gradient(circle at center, transparent 40%, var(--rose-soft) 41%, var(--rose-soft) 43%, transparent 44%);
  pointer-events: none;
}

.hero-ornament.left { left: 4%; transform: rotate(-8deg); }
.hero-ornament.right { right: 4%; transform: rotate(8deg) scaleX(-1); }

.hero-content {
  position: relative;
  z-index: 1;
  animation: fadeUp 1s ease both;
}

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

.hero-eyebrow {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: 999px;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.28em;
  margin-bottom: 28px;
  background: rgba(255, 255, 255, 0.4);
}

.hero-title {
  margin-bottom: 16px;
}

.title-main {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 96px);
  font-weight: 400;
  color: var(--rose-deep);
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  line-height: 1.1;
  text-shadow: 0 8px 40px rgba(107, 45, 60, 0.12);
}

.title-sub {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  letter-spacing: 0.45em;
  text-indent: 0.45em;
  color: var(--muted);
  text-transform: uppercase;
}

.hero-id {
  font-size: 15px;
  color: var(--rose);
  letter-spacing: 0.18em;
  margin-bottom: 12px;
}

.hero-slogan {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--ink-soft);
  letter-spacing: 0.35em;
  text-indent: 0.35em;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 18px 32px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 16px;
  color: var(--rose-deep);
  letter-spacing: 0.08em;
}

.stat span {
  font-size: 12px;
  color: var(--muted);
}

.stat-divider {
  width: 1px;
  height: 28px;
  background: var(--line);
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.2em;
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--rose-soft), transparent);
  animation: pulse 1.8s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Sections */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 640px;
  margin-inline: auto;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 42px);
  color: var(--rose-deep);
  letter-spacing: 0.18em;
  text-indent: 0.18em;
  margin-bottom: 16px;
  font-weight: 400;
}

.section-desc {
  color: var(--muted);
  font-size: 15px;
}

.section-header.light h2 { color: #fff; }
.section-header.light .section-desc { color: rgba(255, 255, 255, 0.78); }
.section-header.light .section-tag { color: var(--gold-soft); }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
}

.about-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  transition: 0.25s ease;
}

.about-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 120, 132, 0.35);
}

.about-card.featured {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(243, 214, 219, 0.35)),
    var(--cream);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-badge {
  display: inline-block;
  width: fit-content;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(107, 45, 60, 0.08);
  color: var(--rose);
  font-size: 12px;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--rose-deep);
  margin-bottom: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.about-card p {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 12px;
}

.about-card p:last-child { margin-bottom: 0; }

.about-side {
  display: grid;
  gap: 16px;
}

/* Creed */
.creed {
  background:
    linear-gradient(135deg, rgba(107, 45, 60, 0.95), rgba(61, 22, 32, 0.98)),
    var(--rose-deep);
  color: #fff;
  overflow: hidden;
}

.creed::before {
  content: "合";
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 42vw;
  line-height: 1;
  opacity: 0.05;
  pointer-events: none;
  color: #fff;
}

.creed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
  z-index: 1;
}

.creed-item {
  padding: 28px 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  transition: 0.25s ease;
}

.creed-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.creed-num {
  font-family: var(--font-display);
  color: var(--gold-soft);
  font-size: 20px;
  margin-bottom: 14px;
  letter-spacing: 0.1em;
}

.creed-item h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: 0.12em;
}

.creed-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

/* Structure */
.structure-tree {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.tree-top { margin-bottom: 8px; }

.tree-line {
  width: 2px;
  height: 36px;
  background: linear-gradient(to bottom, var(--rose-soft), transparent);
}

.tree-mid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  margin-bottom: 40px;
}

.role-card {
  text-align: center;
  padding: 24px 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.role-card.master {
  min-width: 240px;
  background:
    linear-gradient(160deg, rgba(255, 249, 245, 0.95), rgba(243, 214, 219, 0.5));
  border-color: rgba(201, 162, 39, 0.35);
}

.role-label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 8px;
}

.role-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--rose-deep);
  font-weight: 400;
  margin-bottom: 8px;
}

.role-card p {
  font-size: 13px;
  color: var(--muted);
}

.halls {
  width: 100%;
}

.halls-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--rose-deep);
  font-weight: 400;
  letter-spacing: 0.16em;
  margin-bottom: 20px;
}

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

.hall-card {
  padding: 24px 18px;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid var(--line);
  text-align: center;
  transition: 0.25s ease;
}

.hall-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(196, 120, 132, 0.35);
}

.hall-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--rose-soft), var(--rose));
  color: #fff;
  font-family: var(--font-display);
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(107, 45, 60, 0.22);
}

.hall-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--rose-deep);
  font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}

.hall-card p {
  font-size: 13px;
  color: var(--muted);
}

/* Activities */
.timeline {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  padding-left: 28px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--rose-soft), var(--gold-soft), transparent);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  margin-bottom: 22px;
  padding: 22px 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 30px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--rose);
  border: 3px solid var(--paper);
  box-shadow: 0 0 0 2px var(--rose-soft);
}

.time-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(107, 45, 60, 0.08);
  color: var(--rose);
  font-size: 13px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.time-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--rose-deep);
  font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: 0.08em;
}

.time-content p {
  font-size: 14px;
  color: var(--muted);
}

/* Recruit */
.recruit-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.info-block {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}

.info-block:last-child { margin-bottom: 0; }

.info-block h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--rose-deep);
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}

.check-list li,
.step-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--ink-soft);
  font-size: 14px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--rose);
  font-weight: 700;
}

.step-list li {
  display: flex;
  gap: 12px;
  padding-left: 0;
  align-items: flex-start;
}

.step-list li span {
  flex: 0 0 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--rose);
  color: #fff;
  font-size: 12px;
}

.recruit-form {
  padding: 32px 28px;
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(243, 214, 219, 0.28));
  border: 1px solid rgba(196, 120, 132, 0.25);
  box-shadow: var(--shadow);
}

.recruit-form h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--rose-deep);
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 22px;
}

.form-row {
  margin-bottom: 16px;
}

.form-row label {
  display: block;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 6px;
  letter-spacing: 0.06em;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink);
  outline: none;
  transition: 0.2s ease;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--rose-soft);
  box-shadow: 0 0 0 4px rgba(196, 120, 132, 0.15);
}

.form-tip {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(107, 45, 60, 0.08);
  color: var(--rose-deep);
  font-size: 13px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.contact-card {
  padding: 28px 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  text-align: center;
  box-shadow: var(--shadow);
  transition: 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
}

.contact-card.highlight {
  background: linear-gradient(160deg, var(--rose), var(--rose-deep));
  color: #fff;
  border-color: transparent;
}

.contact-card.highlight .contact-label { color: var(--gold-soft); }
.contact-card.highlight strong { color: #fff; }
.contact-card.highlight p { color: rgba(255, 255, 255, 0.78); }

.contact-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 10px;
}

.contact-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--rose-deep);
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: 0.08em;
}

.contact-card p {
  font-size: 13px;
  color: var(--muted);
}

/* Footer */
.site-footer {
  padding: 40px 0 48px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.4);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  color: var(--rose-deep);
  font-size: 18px;
}

.footer-brand p {
  font-size: 12px;
  color: var(--muted);
}

.footer-copy {
  font-size: 12px;
  color: var(--muted);
  text-align: right;
  line-height: 1.8;
}

/* Back top */
.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  color: var(--rose-deep);
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
  box-shadow: var(--shadow);
  z-index: 90;
}

.back-top.show {
  opacity: 1;
  pointer-events: auto;
}

.back-top:hover {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px) {
  .about-grid,
  .recruit-layout,
  .creed-grid,
  .halls-grid,
  .contact-grid,
  .tree-mid {
    grid-template-columns: 1fr 1fr;
  }

  .creed-grid { grid-template-columns: 1fr 1fr; }
  .hero-ornament { display: none; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: rgba(250, 246, 242, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 14px 16px;
    border-radius: 12px;
  }

  .about-grid,
  .recruit-layout,
  .creed-grid,
  .halls-grid,
  .contact-grid,
  .tree-mid {
    grid-template-columns: 1fr;
  }

  .timeline {
    padding-left: 20px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-stats {
    flex-direction: column;
    border-radius: 20px;
    gap: 14px;
    width: min(280px, 100%);
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand { justify-content: center; }
  .footer-copy { text-align: center; }

  .title-main { letter-spacing: 0.12em; text-indent: 0.12em; }
  .hero-slogan { letter-spacing: 0.16em; text-indent: 0.16em; }
}

@media (max-width: 480px) {
  .container { width: calc(100% - 28px); }
  .section { padding: 72px 0; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
}
