@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

:root {
  --clr-pine: #1b4332;
  --clr-pine-mid: #2d6a4f;
  --clr-pine-light: #52b788;
  --clr-sage: #b7e4c7;
  --clr-sky: #4a90a4;
  --clr-sky-light: #a8d5e2;
  --clr-amber: #e07b39;
  --clr-amber-dark: #c45e1f;
  --clr-sand: #fdf6ee;
  --clr-sand-alt: #f0ebe3;
  --clr-surface: #ffffff;
  --clr-ink: #141f1a;
  --clr-ink-mid: #3d5247;
  --clr-ink-soft: #6b8278;
  --clr-rule: #d6e8df;
  --clr-rule-dark: #b4cfc0;

  --ff-head: 'Poppins', sans-serif;
  --ff-body: 'DM Sans', sans-serif;

  --fs-2xs: 0.68rem;
  --fs-xs: 0.75rem;
  --fs-sm: 0.85rem;
  --fs-base: 0.975rem;
  --fs-md: 1.05rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.55rem;
  --fs-2xl: 2rem;
  --fs-hero: clamp(1.9rem, 4.5vw, 3.2rem);

  --sp-2xs: 0.25rem;
  --sp-xs: 0.45rem;
  --sp-sm: 0.7rem;
  --sp-md: 1rem;
  --sp-lg: 1.6rem;
  --sp-xl: 2.4rem;
  --sp-2xl: 3.6rem;
  --sp-3xl: 5rem;

  --r-sm: 5px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-2xl: 36px;
  --r-full: 9999px;

  --sh-xs: 0 1px 3px rgba(20,31,26,0.06);
  --sh-sm: 0 2px 8px rgba(20,31,26,0.08);
  --sh-md: 0 5px 20px rgba(20,31,26,0.11);
  --sh-lg: 0 12px 40px rgba(20,31,26,0.14);

  --ease: 0.22s ease;
  --ease-md: 0.32s ease;
  --ease-slow: 0.48s cubic-bezier(0.4,0,0.2,1);

  --max-w: 1140px;
  --hdr-h: 58px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  color: var(--clr-ink);
  background: var(--clr-sand);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--ff-body); border: none; background: none; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}

.sec { padding: var(--sp-3xl) 0; }
.sec-sm { padding: var(--sp-2xl) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  font-family: var(--ff-head);
  font-size: var(--fs-2xs);
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--clr-pine-mid);
  background: rgba(82,183,136,0.1);
  border: 1px solid rgba(82,183,136,0.25);
  padding: 3px 10px;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-md);
}

.sec-title {
  font-family: var(--ff-head);
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-ink);
  margin-bottom: var(--sp-sm);
  letter-spacing: -0.01em;
}

.sec-sub {
  font-size: var(--fs-sm);
  color: var(--clr-ink-soft);
  max-width: 520px;
  line-height: 1.72;
}

.tc { text-align: center; }
.tc .sec-sub { margin: 0 auto; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  font-family: var(--ff-head);
  font-size: var(--fs-xs);
  font-weight: 600;
  padding: 0.55rem 1.35rem;
  border-radius: var(--r-full);
  transition: background var(--ease), color var(--ease), transform var(--ease), box-shadow var(--ease);
  white-space: nowrap;
  margin-top: var(--sp-md);
  letter-spacing: 0.01em;
}

.btn-pine {
  background: var(--clr-pine-mid);
  color: #fff;
  box-shadow: 0 3px 12px rgba(45,106,79,0.28);
}
.btn-pine:hover { background: var(--clr-pine); color: #d4f5e4; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(45,106,79,0.35); }

.btn-outline {
  background: transparent;
  color: var(--clr-pine-mid);
  border: 1.5px solid var(--clr-pine-mid);
}
.btn-outline:hover { background: var(--clr-pine-mid); color: #fff; transform: translateY(-2px); }

.btn-amber {
  background: var(--clr-amber);
  color: #fff;
  box-shadow: 0 3px 12px rgba(224,123,57,0.28);
}
.btn-amber:hover { background: var(--clr-amber-dark); color: #fff3e8; transform: translateY(-2px); }

.btn-ghost {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.38);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.26); color: #fff; }

.btn-sky {
  background: var(--clr-sky);
  color: #fff;
}
.btn-sky:hover { background: #3a7a8e; color: #e0f4f8; transform: translateY(-2px); }

.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: var(--sp-sm) 0;
  transition: background var(--ease-md), box-shadow var(--ease-md), padding var(--ease-md);
}

.site-header.scrolled {
  position: fixed;
  background: rgba(253,246,238,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--clr-rule), var(--sh-sm);
  padding: 6px 0;
}

.hdr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-lg);
  height: var(--hdr-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  text-decoration: none;
  flex-shrink: 0;
}

.logo-gem {
  width: 32px;
  height: 32px;
  background: linear-gradient(145deg, var(--clr-pine-light), var(--clr-pine));
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: #fff;
  flex-shrink: 0;
  transition: transform var(--ease);
}

.logo:hover .logo-gem { transform: rotate(-8deg) scale(1.1); }

.logo-name {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: clamp(0.72rem, 1.8vw, 0.88rem);
  line-height: 1.15;
  color: #fff;
  transition: color var(--ease-md);
}

.logo-name em {
  display: block;
  font-style: normal;
  font-size: var(--fs-2xs);
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.03em;
}

.site-header.scrolled .logo-name { color: var(--clr-ink); }
.site-header.scrolled .logo-name em { color: var(--clr-ink-soft); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  font-family: var(--ff-head);
  font-size: var(--fs-xs);
  font-weight: 500;
  padding: 5px 12px;
  border-radius: var(--r-full);
  color: rgba(255,255,255,0.88);
  transition: background var(--ease), color var(--ease);
}

.site-header.scrolled .nav-links a { color: var(--clr-ink-mid); }

.nav-links a:hover, .nav-links a.active {
  background: rgba(255,255,255,0.16);
  color: #fff;
}

.site-header.scrolled .nav-links a:hover,
.site-header.scrolled .nav-links a.active {
  background: rgba(45,106,79,0.1);
  color: var(--clr-pine-mid);
}

.nav-pill {
  background: rgba(255,255,255,0.18) !important;
  border: 1.5px solid rgba(255,255,255,0.42) !important;
  color: #fff !important;
  border-radius: var(--r-full) !important;
  padding: 4px 14px !important;
}

.site-header.scrolled .nav-pill {
  background: var(--clr-pine-mid) !important;
  border-color: var(--clr-pine-mid) !important;
  color: #fff !important;
}

.nav-pill:hover { background: rgba(255,255,255,0.32) !important; color: #fff !important; }
.site-header.scrolled .nav-pill:hover { background: var(--clr-pine) !important; color: #d4f5e4 !important; }

.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  gap: 5px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.14);
  border: 1.5px solid rgba(255,255,255,0.32);
  z-index: 201;
  transition: background var(--ease);
}

.site-header.scrolled .menu-btn {
  background: var(--clr-sand-alt);
  border-color: var(--clr-rule);
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--ease-md), opacity var(--ease);
}

.site-header.scrolled .menu-btn span { background: var(--clr-ink); }

.mob-nav {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: 100%;
  max-width: 300px;
  height: 100vh;
  background: var(--clr-surface);
  box-shadow: var(--sh-lg);
  z-index: 200;
  transform: translateY(-100%);
  transition: transform var(--ease-slow);
  flex-direction: column;
  padding: var(--sp-xl) var(--sp-lg) var(--sp-lg);
  gap: 2px;
  overflow-y: auto;
}

.mob-nav.active { display: flex; transform: translateY(0); }

.mob-close {
  position: absolute;
  top: var(--sp-md);
  right: var(--sp-md);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-sand-alt);
  border-radius: var(--r-md);
  font-size: 1rem;
  color: var(--clr-ink);
  transition: background var(--ease), color var(--ease);
}

.mob-close:hover { background: var(--clr-pine-mid); color: #fff; }

.mob-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-lg);
  padding-top: var(--sp-sm);
}

.mob-logo .logo-gem { width: 28px; height: 28px; font-size: 0.8rem; }

.mob-logo-name {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--clr-ink);
}

.mob-nav a:not(.mob-close):not(.mob-logo) {
  display: block;
  font-family: var(--ff-head);
  font-size: var(--fs-md);
  font-weight: 500;
  color: var(--clr-ink-mid);
  padding: var(--sp-sm) var(--sp-md);
  border-radius: var(--r-md);
  transition: background var(--ease), color var(--ease);
}

.mob-nav a:not(.mob-close):not(.mob-logo):hover {
  background: rgba(45,106,79,0.08);
  color: var(--clr-pine-mid);
}

.mob-rule {
  height: 1px;
  background: var(--clr-rule);
  margin: var(--sp-sm) 0;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20,31,26,0.42);
  z-index: 199;
  backdrop-filter: blur(3px);
}

.nav-overlay.active { display: block; }

.hero {
  min-height: 100vh;
  background-image: url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(14,38,26,0.78) 0%, rgba(20,50,60,0.6) 55%, rgba(14,38,26,0.45) 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--clr-sand), transparent);
  z-index: 2;
}

.hero-wrap {
  position: relative;
  z-index: 3;
  max-width: 620px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.92);
  font-size: var(--fs-2xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-lg);
}

.hero h1 {
  font-family: var(--ff-head);
  font-size: var(--fs-hero);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  margin-bottom: var(--sp-lg);
  letter-spacing: -0.025em;
}

.hero h1 mark {
  background: none;
  color: #74d4a0;
}

.hero-lead {
  font-size: clamp(0.88rem, 1.8vw, 1.05rem);
  color: rgba(255,255,255,0.82);
  max-width: 480px;
  line-height: 1.72;
  margin-bottom: var(--sp-xl);
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-md);
  align-items: center;
}

.hero-orbs {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
}

.orb {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  backdrop-filter: blur(14px);
  border: 1.5px solid rgba(255,255,255,0.28);
  transition: transform var(--ease-md);
}

.orb:hover { transform: scale(1.1); }
.orb:nth-child(1) { background: rgba(27,67,50,0.5); animation: ob1 4s ease-in-out infinite; }
.orb:nth-child(2) { background: rgba(74,144,164,0.45); animation: ob2 4.8s ease-in-out infinite; }
.orb:nth-child(3) { background: rgba(224,123,57,0.45); animation: ob3 5.4s ease-in-out infinite; }

.orb i { font-size: 1.35rem; color: #fff; }
.orb span { font-family: var(--ff-head); font-size: 0.58rem; font-weight: 700; color: rgba(255,255,255,0.88); letter-spacing: 0.06em; text-transform: uppercase; }

.orb-line {
  position: absolute;
  right: calc(6% + 84px + 8px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 2px;
  height: 200px;
  background: linear-gradient(to bottom, rgba(82,183,136,0.5), rgba(74,144,164,0.5), rgba(224,123,57,0.5));
  border-radius: 2px;
}

.orb-line::before, .orb-line::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  animation: dot-pulse 2.2s ease-in-out infinite;
}

.orb-line::before { top: 0; }
.orb-line::after { bottom: 0; animation-delay: 1.1s; }

@keyframes ob1 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-11px); } }
@keyframes ob2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes ob3 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }
@keyframes dot-pulse { 0%,100% { opacity:0.35; transform:translateX(-50%) scale(1); } 50% { opacity:1; transform:translateX(-50%) scale(1.6); } }

.scroll-hint {
  position: absolute;
  bottom: var(--sp-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,0.55);
  font-size: var(--fs-2xs);
  font-family: var(--ff-head);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-bar {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.55));
  animation: scb 2.2s ease-in-out infinite;
}

@keyframes scb {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.ticker {
  background: var(--clr-pine);
  padding: var(--sp-md) 0;
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  gap: var(--sp-2xl);
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.tick-item {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
  color: rgba(255,255,255,0.88);
  font-family: var(--ff-head);
  font-size: var(--fs-xs);
  font-weight: 500;
  white-space: nowrap;
}

.tick-item i { font-size: 0.9rem; color: var(--clr-sage); }
.tick-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.3); }

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: center;
}

.split-visual { position: relative; }

.split-img {
  border-radius: var(--r-2xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--clr-sand-alt);
}

.split-img img { width: 100%; height: 100%; object-fit: cover; }

.split-float {
  position: absolute;
  bottom: var(--sp-lg);
  right: var(--sp-lg);
  background: var(--clr-surface);
  border-radius: var(--r-lg);
  padding: var(--sp-md) var(--sp-lg);
  box-shadow: var(--sh-md);
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}

.float-icon {
  width: 40px;
  height: 40px;
  background: rgba(82,183,136,0.12);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--clr-pine-mid);
}

.float-text strong { display: block; font-family: var(--ff-head); font-size: var(--fs-xs); font-weight: 700; color: var(--clr-ink); }
.float-text span { font-size: var(--fs-2xs); color: var(--clr-ink-soft); }

.check-list { display: flex; flex-direction: column; gap: var(--sp-md); margin-top: var(--sp-lg); }

.check-row {
  display: flex;
  gap: var(--sp-md);
  align-items: flex-start;
}

.check-ico {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.ico-pine { background: rgba(45,106,79,0.1); color: var(--clr-pine-mid); }
.ico-amber { background: rgba(224,123,57,0.1); color: var(--clr-amber); }
.ico-sky { background: rgba(74,144,164,0.1); color: var(--clr-sky); }

.check-row strong { display: block; font-family: var(--ff-head); font-size: var(--fs-sm); font-weight: 600; margin-bottom: 2px; }
.check-row p { font-size: var(--fs-sm); color: var(--clr-ink-soft); line-height: 1.62; }

.alt-bg { background: var(--clr-sand-alt); }

.trio-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: var(--sp-lg);
  margin-top: var(--sp-2xl);
}

.trio-card {
  background: var(--clr-surface);
  border-radius: var(--r-xl);
  padding: var(--sp-xl) var(--sp-lg);
  box-shadow: var(--sh-xs);
  border: 1px solid var(--clr-rule);
  transition: transform var(--ease-md), box-shadow var(--ease-md);
  position: relative;
  overflow: hidden;
}

.trio-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}

.trio-card.c-pine::after { background: var(--clr-pine-mid); }
.trio-card.c-amber::after { background: var(--clr-amber); }
.trio-card.c-sky::after { background: var(--clr-sky); }

.trio-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }

.trio-ico {
  width: 50px;
  height: 50px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: var(--sp-lg);
}

.trio-card.c-pine .trio-ico { background: rgba(45,106,79,0.1); color: var(--clr-pine-mid); }
.trio-card.c-amber .trio-ico { background: rgba(224,123,57,0.1); color: var(--clr-amber); }
.trio-card.c-sky .trio-ico { background: rgba(74,144,164,0.1); color: var(--clr-sky); }

.trio-card h3 { font-family: var(--ff-head); font-size: var(--fs-lg); font-weight: 700; margin-bottom: var(--sp-sm); }
.trio-card p { font-size: var(--fs-sm); color: var(--clr-ink-soft); line-height: 1.7; margin-bottom: var(--sp-lg); }

.dot-list { display: flex; flex-direction: column; gap: var(--sp-xs); }
.dot-item { display: flex; align-items: center; gap: var(--sp-xs); font-size: var(--fs-xs); color: var(--clr-ink-soft); }
.dot-item i { font-size: 0.65rem; color: var(--clr-pine-mid); }

.ribbon {
  background: linear-gradient(130deg, var(--clr-pine) 0%, var(--clr-pine-mid) 50%, #1a6b6e 100%);
  padding: var(--sp-xl) 0;
}

.ribbon-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: var(--sp-lg);
}

.ribbon-item { text-align: center; color: #fff; padding: var(--sp-lg); }

.ribbon-num {
  font-family: var(--ff-head);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.ribbon-num sup { color: var(--clr-sage); font-size: 0.6em; vertical-align: super; }
.ribbon-label { font-size: var(--fs-xs); color: rgba(255,255,255,0.72); font-family: var(--ff-head); font-weight: 500; }

.timeline { display: flex; flex-direction: column; gap: 0; margin-top: var(--sp-2xl); position: relative; }

.timeline::before {
  content: '';
  position: absolute;
  left: 24px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--clr-pine-mid), var(--clr-sky), var(--clr-amber));
  border-radius: 2px;
}

.tl-item { display: flex; gap: var(--sp-xl); align-items: flex-start; padding: var(--sp-lg) 0; position: relative; }

.tl-dot {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  border: 3px solid var(--clr-sand);
}

.tl-dot.dp { background: var(--clr-pine-mid); color: #fff; }
.tl-dot.da { background: var(--clr-amber); color: #fff; }
.tl-dot.ds { background: var(--clr-sky); color: #fff; }
.tl-dot.dv { background: #7c5cbf; color: #fff; }

.tl-body { flex: 1; padding-top: var(--sp-xs); }
.tl-when { font-family: var(--ff-head); font-size: var(--fs-2xs); font-weight: 700; color: var(--clr-ink-soft); letter-spacing: 0.09em; text-transform: uppercase; margin-bottom: 3px; }
.tl-body h3 { font-family: var(--ff-head); font-size: var(--fs-md); font-weight: 700; margin-bottom: 4px; }
.tl-body p { font-size: var(--fs-sm); color: var(--clr-ink-soft); line-height: 1.65; }

.habit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px,1fr));
  gap: var(--sp-lg);
  margin-top: var(--sp-2xl);
}

.habit-card {
  background: var(--clr-surface);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  border: 1px solid var(--clr-rule);
  box-shadow: var(--sh-xs);
  transition: transform var(--ease-md), box-shadow var(--ease-md);
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.habit-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }

.habit-head { display: flex; align-items: center; gap: var(--sp-md); }
.habit-ico { width: 40px; height: 40px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.habit-card h3 { font-family: var(--ff-head); font-size: var(--fs-sm); font-weight: 600; line-height: 1.3; }
.habit-card p { font-size: var(--fs-sm); color: var(--clr-ink-soft); line-height: 1.65; flex: 1; }

.tag {
  display: inline-block;
  font-size: var(--fs-2xs);
  font-weight: 700;
  padding: 2px 9px;
  border-radius: var(--r-full);
  letter-spacing: 0.04em;
  align-self: flex-start;
}

.tag-mv { background: rgba(45,106,79,0.1); color: var(--clr-pine-mid); }
.tag-nu { background: rgba(224,123,57,0.1); color: var(--clr-amber-dark); }
.tag-rs { background: rgba(74,144,164,0.1); color: var(--clr-sky); }
.tag-bl { background: rgba(124,92,191,0.1); color: #6b4fad; }

.voices-img-wrap {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  margin-bottom: var(--sp-2xl);
}

.voices-img-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.voices-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(14,38,26,0.78) 0%, rgba(20,50,60,0.5) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--sp-2xl);
  gap: var(--sp-xs);
}

.voices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
  gap: var(--sp-lg);
  margin-top: var(--sp-2xl);
}

.voice-card {
  background: var(--clr-surface);
  border-radius: var(--r-xl);
  padding: var(--sp-xl) var(--sp-lg);
  border: 1px solid var(--clr-rule);
  box-shadow: var(--sh-xs);
  position: relative;
}

.voice-card::before {
  content: '\201C';
  position: absolute;
  top: var(--sp-md);
  left: var(--sp-lg);
  font-family: Georgia, serif;
  font-size: 3rem;
  color: var(--clr-rule-dark);
  line-height: 1;
}

.voice-text { font-size: var(--fs-sm); color: var(--clr-ink-mid); line-height: 1.72; margin-bottom: var(--sp-lg); padding-top: var(--sp-xl); font-style: italic; }

.voice-author { display: flex; align-items: center; gap: var(--sp-md); }

.voice-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: var(--fs-sm);
  color: #fff;
  flex-shrink: 0;
}

.va-pine { background: linear-gradient(135deg, var(--clr-pine-mid), var(--clr-pine-light)); }
.va-sky { background: linear-gradient(135deg, var(--clr-sky), #3a7a8e); }
.va-amber { background: linear-gradient(135deg, var(--clr-amber), var(--clr-amber-dark)); }

.voice-meta strong { display: block; font-family: var(--ff-head); font-size: var(--fs-xs); font-weight: 700; color: var(--clr-ink); }
.voice-meta span { font-size: var(--fs-2xs); color: var(--clr-ink-soft); }

.note-box {
  background: var(--clr-surface);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
  border: 1px solid var(--clr-rule);
  display: flex;
  gap: var(--sp-lg);
  align-items: flex-start;
}

.note-ico {
  width: 44px; height: 44px;
  background: rgba(224,123,57,0.1);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--clr-amber);
  flex-shrink: 0;
}

.note-box h3 { font-family: var(--ff-head); font-size: var(--fs-sm); font-weight: 700; margin-bottom: var(--sp-sm); }
.note-box p { font-size: var(--fs-sm); color: var(--clr-ink-soft); line-height: 1.72; }
.note-box p + p { margin-top: var(--sp-sm); }

.band {
  background: linear-gradient(130deg, #0f2d1e 0%, #152b38 100%);
  padding: var(--sp-2xl) 0;
  position: relative;
  overflow: hidden;
}

.band::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(82,183,136,0.1);
}

.band::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -40px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(74,144,164,0.08);
}

.band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-xl);
  flex-wrap: wrap;
}

.band-text h2 { font-family: var(--ff-head); font-size: clamp(1.15rem, 2.5vw, 1.7rem); font-weight: 700; color: #fff; margin-bottom: var(--sp-xs); }
.band-text p { font-size: var(--fs-sm); color: rgba(255,255,255,0.68); max-width: 400px; }
.band-btns { display: flex; gap: var(--sp-md); flex-wrap: wrap; }

.site-footer {
  background: #0c1a12;
  color: rgba(255,255,255,0.7);
  padding-top: var(--sp-3xl);
}

.ft-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-2xl);
  padding-bottom: var(--sp-2xl);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.ft-brand p { font-size: var(--fs-sm); line-height: 1.7; margin-top: var(--sp-md); max-width: 260px; }

.ft-col h4 {
  font-family: var(--ff-head);
  font-size: var(--fs-2xs);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--sp-lg);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ft-col ul { display: flex; flex-direction: column; gap: var(--sp-xs); }
.ft-col ul li a { font-size: var(--fs-sm); color: rgba(255,255,255,0.55); transition: color var(--ease); }
.ft-col ul li a:hover { color: var(--clr-pine-light); }

.ft-contact-row { display: flex; align-items: flex-start; gap: var(--sp-sm); font-size: var(--fs-sm); color: rgba(255,255,255,0.55); margin-bottom: var(--sp-sm); }
.ft-contact-row i { color: var(--clr-pine-light); margin-top: 2px; flex-shrink: 0; }

.ft-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  padding: var(--sp-lg) 0;
  flex-wrap: wrap;
}

.ft-bottom p { font-size: var(--fs-2xs); color: rgba(255,255,255,0.35); }

.ft-legal { display: flex; gap: var(--sp-lg); flex-wrap: wrap; }
.ft-legal a { font-size: var(--fs-2xs); color: rgba(255,255,255,0.35); transition: color var(--ease); }
.ft-legal a:hover { color: var(--clr-pine-light); }

.pg-hero {
  background: linear-gradient(130deg, var(--clr-pine) 0%, #1a3d50 100%);
  padding: calc(var(--hdr-h) + var(--sp-3xl)) 0 var(--sp-3xl);
  position: relative;
  overflow: hidden;
}

.pg-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}

.pg-hero-wrap { position: relative; z-index: 1; max-width: 600px; }

.pg-hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  margin-bottom: var(--sp-md);
  letter-spacing: -0.02em;
}

.pg-hero p { font-size: var(--fs-md); color: rgba(255,255,255,0.78); line-height: 1.7; }

.pg-hero .eyebrow {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.88);
}

.filter-row { display: flex; gap: var(--sp-xs); flex-wrap: wrap; margin-bottom: var(--sp-xl); }

.flt-btn {
  font-family: var(--ff-head);
  font-size: var(--fs-2xs);
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--r-full);
  border: 1.5px solid var(--clr-rule);
  color: var(--clr-ink-soft);
  background: var(--clr-surface);
  transition: all var(--ease);
  cursor: pointer;
  letter-spacing: 0.04em;
}

.flt-btn.active, .flt-btn:hover {
  background: var(--clr-pine-mid);
  border-color: var(--clr-pine-mid);
  color: #fff;
}

.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px,1fr)); gap: var(--sp-lg); }

.res-card {
  background: var(--clr-surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--clr-rule);
  box-shadow: var(--sh-xs);
  transition: transform var(--ease-md), box-shadow var(--ease-md);
}

.res-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }

.res-thumb {
  aspect-ratio: 16/9;
  background: var(--clr-sand-alt);
  overflow: hidden;
}

.res-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--ease-slow); }
.res-card:hover .res-thumb img { transform: scale(1.05); }

.res-icon-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/9;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  position: relative;
  overflow: hidden;
}

.res-icon-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background: radial-gradient(circle at 60% 40%, #fff 0%, transparent 70%);
}

.res-icon-banner i {
  font-size: 3rem;
  color: rgba(255,255,255,0.92);
  position: relative;
  z-index: 1;
  transition: transform var(--ease-md);
}

.res-card:hover .res-icon-banner i { transform: scale(1.12); }

.res-body { padding: var(--sp-lg); }
.res-card h3 { font-family: var(--ff-head); font-size: var(--fs-base); font-weight: 700; margin-bottom: var(--sp-xs); line-height: 1.35; }
.res-card p { font-size: var(--fs-sm); color: var(--clr-ink-soft); line-height: 1.65; margin-bottom: var(--sp-md); }

.res-meta { display: flex; align-items: center; gap: var(--sp-md); font-size: var(--fs-2xs); color: var(--clr-ink-soft); }
.res-meta i { margin-right: 2px; }

.feat-card {
  background: var(--clr-surface);
  border-radius: var(--r-2xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: var(--sh-md);
  border: 1px solid var(--clr-rule);
}

.feat-img { background: var(--clr-sand-alt); min-height: 300px; overflow: hidden; }
.feat-img img { width: 100%; height: 100%; object-fit: cover; }

.feat-body {
  padding: var(--sp-2xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feat-body h2 { font-family: var(--ff-head); font-size: clamp(1.1rem, 2.2vw, 1.55rem); font-weight: 700; margin-bottom: var(--sp-md); line-height: 1.22; }
.feat-body p { font-size: var(--fs-sm); color: var(--clr-ink-soft); line-height: 1.7; margin-bottom: var(--sp-lg); }

.step-list { display: flex; flex-direction: column; gap: var(--sp-sm); margin-bottom: var(--sp-lg); }
.step-row { display: flex; align-items: center; gap: var(--sp-md); font-size: var(--fs-sm); color: var(--clr-ink-soft); }
.step-n { width: 22px; height: 22px; border-radius: 50%; background: var(--clr-pine-mid); color: #fff; font-size: var(--fs-2xs); font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: var(--ff-head); }

.guide-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px,1fr)); gap: var(--sp-lg); margin-top: var(--sp-2xl); }

.guide-card {
  background: var(--clr-surface);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  border: 1px solid var(--clr-rule);
  box-shadow: var(--sh-xs);
  transition: transform var(--ease-md), box-shadow var(--ease-md);
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.guide-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.guide-card h3 { font-family: var(--ff-head); font-size: var(--fs-base); font-weight: 700; line-height: 1.3; }
.guide-card p { font-size: var(--fs-sm); color: var(--clr-ink-soft); line-height: 1.65; flex: 1; }

.guide-foot { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-sm); }

.diff-dots { display: flex; gap: 3px; }
.diff-dots span { width: 7px; height: 7px; border-radius: 50%; background: var(--clr-rule); }
.diff-dots span.on { background: var(--clr-pine-mid); }

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--sp-2xl);
  align-items: start;
}

.contact-panel {
  background: linear-gradient(150deg, var(--clr-pine) 0%, #1a3d50 100%);
  border-radius: var(--r-2xl);
  padding: var(--sp-2xl);
  color: #fff;
  position: sticky;
  top: calc(var(--hdr-h) + var(--sp-lg));
}

.contact-panel h2 { font-family: var(--ff-head); font-size: clamp(1.1rem, 2.2vw, 1.5rem); font-weight: 700; margin-bottom: var(--sp-xs); }
.contact-panel > p { font-size: var(--fs-sm); color: rgba(255,255,255,0.72); line-height: 1.7; margin-bottom: var(--sp-xl); }

.cd-row { display: flex; gap: var(--sp-md); align-items: flex-start; margin-bottom: var(--sp-lg); }
.cd-ico { width: 38px; height: 38px; background: rgba(255,255,255,0.1); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; }
.cd-text strong { display: block; font-family: var(--ff-head); font-size: var(--fs-2xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: rgba(255,255,255,0.55); margin-bottom: 2px; }
.cd-text span, .cd-text p { font-size: var(--fs-sm); color: rgba(255,255,255,0.88); line-height: 1.5; }

.form-card {
  background: var(--clr-surface);
  border-radius: var(--r-2xl);
  padding: var(--sp-2xl);
  box-shadow: var(--sh-md);
  border: 1px solid var(--clr-rule);
}

.form-card h2 { font-family: var(--ff-head); font-size: clamp(1.1rem, 2.2vw, 1.5rem); font-weight: 700; margin-bottom: var(--sp-xs); }
.form-card > p { font-size: var(--fs-sm); color: var(--clr-ink-soft); margin-bottom: var(--sp-xl); }

.fg { margin-bottom: var(--sp-lg); }
.fg label { display: block; font-family: var(--ff-head); font-size: var(--fs-xs); font-weight: 600; margin-bottom: var(--sp-xs); color: var(--clr-ink); }

.fg input, .fg textarea {
  width: 100%;
  padding: 0.62rem 0.9rem;
  border: 1.5px solid var(--clr-rule);
  border-radius: var(--r-md);
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  color: var(--clr-ink);
  background: var(--clr-sand);
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
}

.fg input:focus, .fg textarea:focus {
  border-color: var(--clr-pine-mid);
  box-shadow: 0 0 0 3px rgba(45,106,79,0.1);
  background: var(--clr-surface);
}

.fg input.error, .fg textarea.error {
  border-color: #c94040;
  box-shadow: 0 0 0 3px rgba(201,64,64,0.09);
}

.fg textarea { min-height: 120px; resize: vertical; }

.f-err { display: none; font-size: var(--fs-2xs); color: #c94040; margin-top: 4px; }
.f-err.show { display: block; }

.f-check { display: flex; align-items: flex-start; gap: var(--sp-md); margin-bottom: var(--sp-lg); }
.f-check input[type="checkbox"] { width: 16px; height: 16px; min-width: 16px; border-radius: 3px; accent-color: var(--clr-pine-mid); margin-top: 2px; }
.f-check label { font-size: var(--fs-sm); color: var(--clr-ink-soft); line-height: 1.5; }
.f-check label a { color: var(--clr-pine-mid); text-decoration: underline; }

.map-sec { background: var(--clr-sand-alt); }
.map-frame { border-radius: var(--r-2xl); overflow: hidden; box-shadow: var(--sh-md); border: 1px solid var(--clr-rule); }
.map-frame iframe { display: block; width: 100%; height: 380px; border: 0; }

.special-pg {
  min-height: calc(100vh - var(--hdr-h) - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-3xl) var(--sp-lg);
  text-align: center;
}

.special-inner { max-width: 500px; width: 100%; }

.sp-ico {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto var(--sp-xl);
}

.sp-ico.ok { background: rgba(45,106,79,0.1); color: var(--clr-pine-mid); }
.sp-ico.err { background: rgba(201,64,64,0.09); color: #c94040; }

.special-pg h1 { font-family: var(--ff-head); font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 800; margin-bottom: var(--sp-md); }
.special-pg p { font-size: var(--fs-md); color: var(--clr-ink-soft); line-height: 1.7; margin-bottom: var(--sp-lg); }

.legal-wrap {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--sp-2xl);
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: calc(var(--hdr-h) + var(--sp-lg));
  background: var(--clr-surface);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  border: 1px solid var(--clr-rule);
  box-shadow: var(--sh-xs);
}

.legal-nav h3 { font-family: var(--ff-head); font-size: var(--fs-2xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--clr-ink-soft); margin-bottom: var(--sp-md); }
.legal-nav ul { display: flex; flex-direction: column; gap: 2px; }
.legal-nav ul li a { display: block; font-size: var(--fs-xs); color: var(--clr-ink-soft); padding: 4px 8px; border-radius: var(--r-sm); transition: background var(--ease), color var(--ease); }
.legal-nav ul li a:hover { background: rgba(45,106,79,0.08); color: var(--clr-pine-mid); }

.legal-body {
  background: var(--clr-surface);
  border-radius: var(--r-lg);
  padding: var(--sp-2xl);
  border: 1px solid var(--clr-rule);
  box-shadow: var(--sh-xs);
}

.legal-body h1 { font-family: var(--ff-head); font-size: clamp(1.3rem, 2.8vw, 1.85rem); font-weight: 800; margin-bottom: var(--sp-xs); letter-spacing: -0.01em; }
.legal-meta { font-size: var(--fs-xs); color: var(--clr-ink-soft); margin-bottom: var(--sp-xl); padding-bottom: var(--sp-lg); border-bottom: 1px solid var(--clr-rule); }
.legal-body h2 { font-family: var(--ff-head); font-size: clamp(0.95rem, 1.8vw, 1.15rem); font-weight: 700; margin-top: var(--sp-xl); margin-bottom: var(--sp-md); color: var(--clr-ink); }
.legal-body h3 { font-family: var(--ff-head); font-size: var(--fs-base); font-weight: 600; margin-top: var(--sp-lg); margin-bottom: var(--sp-xs); }
.legal-body p { font-size: var(--fs-sm); color: var(--clr-ink-soft); line-height: 1.78; margin-bottom: var(--sp-md); }
.legal-body ul, .legal-body ol { padding-left: var(--sp-lg); margin-bottom: var(--sp-md); }
.legal-body ul { list-style: disc; }
.legal-body ol { list-style: decimal; }
.legal-body li { font-size: var(--fs-sm); color: var(--clr-ink-soft); line-height: 1.72; margin-bottom: 4px; }
.legal-body a { color: var(--clr-pine-mid); text-decoration: underline; }

.tbl-wrap { overflow-x: auto; margin-bottom: var(--sp-lg); border-radius: var(--r-md); border: 1px solid var(--clr-rule); }
.legal-body table { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); }
.legal-body th { background: var(--clr-sand-alt); font-family: var(--ff-head); font-weight: 600; font-size: var(--fs-2xs); text-transform: uppercase; letter-spacing: 0.06em; padding: var(--sp-xs) var(--sp-md); text-align: left; color: var(--clr-ink); border-bottom: 1px solid var(--clr-rule); }
.legal-body td { padding: var(--sp-xs) var(--sp-md); border-bottom: 1px solid var(--clr-rule); color: var(--clr-ink-soft); vertical-align: top; }
.legal-body tr:last-child td { border-bottom: none; }

.back-home { display: inline-flex; align-items: center; gap: var(--sp-xs); font-family: var(--ff-head); font-size: var(--fs-sm); font-weight: 600; color: var(--clr-pine-mid); margin-top: var(--sp-xl); transition: gap var(--ease); }
.back-home:hover { gap: var(--sp-md); }

.ck-banner {
  position: fixed;
  bottom: var(--sp-lg);
  left: var(--sp-lg);
  right: var(--sp-lg);
  max-width: 520px;
  background: var(--clr-surface);
  border-radius: var(--r-2xl);
  padding: var(--sp-xl);
  box-shadow: var(--sh-lg);
  border: 1px solid var(--clr-rule);
  z-index: 9999;
  transform: translateY(130%);
  transition: transform var(--ease-slow);
}

.ck-banner.show { transform: translateY(0); }

.ck-banner h3 { font-family: var(--ff-head); font-size: var(--fs-base); font-weight: 700; margin-bottom: var(--sp-xs); }
.ck-banner p { font-size: var(--fs-sm); color: var(--clr-ink-soft); line-height: 1.65; margin-bottom: var(--sp-lg); }
.ck-banner p a { color: var(--clr-pine-mid); text-decoration: underline; }

.ck-btns { display: flex; gap: var(--sp-xs); flex-wrap: wrap; }
.ck-btns button { font-family: var(--ff-head); font-size: var(--fs-2xs); font-weight: 700; padding: 6px 14px; border-radius: var(--r-full); transition: all var(--ease); letter-spacing: 0.03em; }

.ck-ok { background: var(--clr-pine-mid); color: #fff; }
.ck-ok:hover { background: var(--clr-pine); color: #d4f5e4; }
.ck-no { background: var(--clr-sand-alt); color: var(--clr-ink-soft); border: 1px solid var(--clr-rule); }
.ck-no:hover { background: var(--clr-rule); color: var(--clr-ink); }
.ck-cfg { background: transparent; color: var(--clr-pine-mid); text-decoration: underline; padding: 6px 6px; }
.ck-cfg:hover { color: var(--clr-pine); }

.ck-panel { display: none; margin-top: var(--sp-lg); border-top: 1px solid var(--clr-rule); padding-top: var(--sp-lg); }
.ck-panel.open { display: block; }

.ck-row { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-md); padding: var(--sp-xs) 0; border-bottom: 1px solid var(--clr-rule); }
.ck-row:last-of-type { border-bottom: none; }
.ck-info strong { display: block; font-family: var(--ff-head); font-size: var(--fs-sm); font-weight: 600; margin-bottom: 1px; }
.ck-info span { font-size: var(--fs-2xs); color: var(--clr-ink-soft); }

.tog { position: relative; width: 40px; height: 22px; flex-shrink: 0; }
.tog input { opacity: 0; width: 0; height: 0; }
.tog-sl { position: absolute; inset: 0; background: var(--clr-rule); border-radius: var(--r-full); cursor: pointer; transition: background var(--ease); }
.tog-sl::before { content: ''; position: absolute; width: 16px; height: 16px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: transform var(--ease); box-shadow: var(--sh-xs); }
.tog input:checked + .tog-sl { background: var(--clr-pine-mid); }
.tog input:checked + .tog-sl::before { transform: translateX(18px); }
.tog input:disabled + .tog-sl { opacity: 0.55; cursor: not-allowed; }

.prv-popup {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-lg);
  background: rgba(20,31,26,0.48);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease-md);
}

.prv-popup.show { opacity: 1; pointer-events: all; }

.prv-box {
  background: var(--clr-surface);
  border-radius: var(--r-2xl);
  padding: var(--sp-2xl);
  max-width: 460px;
  width: 100%;
  box-shadow: var(--sh-lg);
  text-align: center;
}

.prv-box i { font-size: 2.2rem; color: var(--clr-pine-mid); margin-bottom: var(--sp-md); }
.prv-box h3 { font-family: var(--ff-head); font-size: var(--fs-lg); font-weight: 700; margin-bottom: var(--sp-xs); }
.prv-box p { font-size: var(--fs-sm); color: var(--clr-ink-soft); line-height: 1.7; margin-bottom: var(--sp-xl); }
.prv-box p a { color: var(--clr-pine-mid); text-decoration: underline; }
.prv-acts { display: flex; gap: var(--sp-md); justify-content: center; flex-wrap: wrap; }

@media (max-width: 1024px) {
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .trio-grid { grid-template-columns: 1fr 1fr; }
  .ribbon-grid { grid-template-columns: repeat(2,1fr); }
  .split-grid { grid-template-columns: 1fr; gap: var(--sp-xl); }
  .split-visual { max-width: 480px; }
  .legal-wrap { grid-template-columns: 1fr; gap: var(--sp-lg); }
  .legal-nav {
    position: static;
    padding: var(--sp-md);
  }
  .legal-nav h3 { margin-bottom: var(--sp-sm); }
  .legal-nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
  }
  .legal-nav ul li a {
    white-space: nowrap;
    background: var(--clr-sand-alt);
    border: 1px solid var(--clr-rule);
    border-radius: var(--r-full);
    padding: 3px 10px;
    font-size: var(--fs-2xs);
  }
  .legal-nav ul li a:hover {
    background: var(--clr-pine-mid);
    border-color: var(--clr-pine-mid);
    color: #fff;
  }
  .feat-card { grid-template-columns: 1fr; }
  .feat-img { min-height: 200px; }
}

@media (max-width: 768px) {
  :root { --sp-3xl: 3.5rem; --sp-2xl: 2.2rem; }
  .nav-links { display: none; }
  .menu-btn { display: flex; }
  .mob-nav { display: flex; }
  .hero-orbs, .orb-line { display: none; }
  .trio-grid { grid-template-columns: 1fr; }
  .ribbon-grid { grid-template-columns: repeat(2,1fr); }
  .ft-grid { grid-template-columns: 1fr; gap: var(--sp-xl); }
  .ft-bottom { flex-direction: column; text-align: center; }
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-panel { position: static; }
  .band-inner { flex-direction: column; text-align: center; }
  .band-text p { max-width: 100%; }
  .note-box { flex-direction: column; }
  .timeline::before { left: 20px; }
  .tl-dot { width: 42px; height: 42px; }
  .legal-body {
    padding: var(--sp-lg);
    border-radius: var(--r-md);
  }
  .legal-body h1 { font-size: clamp(1.15rem, 5vw, 1.5rem); }
  .legal-body h2 { font-size: var(--fs-base); margin-top: var(--sp-lg); }
  .legal-body h3 { font-size: var(--fs-sm); }
  .legal-body p,
  .legal-body li { font-size: var(--fs-sm); line-height: 1.7; }
  .legal-body ul,
  .legal-body ol { padding-left: var(--sp-md); }
  .tbl-wrap { border-radius: var(--r-sm); }
  .legal-body th,
  .legal-body td { padding: var(--sp-xs) var(--sp-sm); font-size: var(--fs-2xs); }
}

@media (max-width: 480px) {
  :root { --sp-lg: 1.1rem; --sp-xl: 1.8rem; }
  .container { padding: 0 var(--sp-md); }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .ck-banner { left: var(--sp-xs); right: var(--sp-xs); bottom: var(--sp-xs); padding: var(--sp-lg); }
  .ribbon-grid { grid-template-columns: 1fr 1fr; }
  .legal-body { padding: var(--sp-md); }
  .legal-wrap { gap: var(--sp-md); }
  .legal-nav { padding: var(--sp-sm) var(--sp-md); }
  .form-card, .contact-panel { padding: var(--sp-lg); }
  .legal-body table { font-size: var(--fs-2xs); }
  .legal-body th,
  .legal-body td { padding: 4px var(--sp-xs); }
}

@media (max-width: 320px) {
  :root { --fs-hero: 1.65rem; }
  .btn { font-size: var(--fs-2xs); padding: 0.5rem 1rem; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .legal-body { padding: var(--sp-sm); }
  .legal-body h1 { font-size: 1.1rem; }
  .legal-body h2 { font-size: 0.9rem; }
}
