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

:root {
  --bg: #f7f7f4;
  --surface: #ffffff;
  --surface-2: #f0f3f6;
  --text: #18212b;
  --muted: #5f6c79;
  --line: rgba(24, 33, 43, 0.12);
  --accent: #1f7a8c;
  --accent-strong: #13505b;
  --accent-soft: rgba(31, 122, 140, 0.12);
  --hero-grad-a: #ffffff;
  --hero-grad-b: #eaf5f6;
  --shadow: 0 20px 60px rgba(18, 24, 33, 0.12);
  --radius: 26px;
  --radius-sm: 18px;
  --heading-font: 'Plus Jakarta Sans', sans-serif;
  --body-font: 'Manrope', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body-font);
  line-height: 1.65;
  background-image:
    radial-gradient(circle at top left, color-mix(in srgb, var(--accent) 8%, transparent), transparent 28%),
    linear-gradient(180deg, color-mix(in srgb, var(--bg) 92%, #ffffff), var(--bg));
}

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 20px;
  top: 20px;
  z-index: 2000;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 0.75rem 1rem;
  border-radius: 999px;
}

.shell,
.container {
  max-width: 1180px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--bg) 92%, transparent), color-mix(in srgb, var(--bg) 76%, transparent));
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(24, 33, 43, 0.06);
}

.site-header .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 86px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.brand-emblem {
  position: relative;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-emblem-orbit {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 24%, #ffffff), color-mix(in srgb, var(--accent-strong) 14%, #ffffff));
  border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--line));
  box-shadow: var(--shadow);
}

.brand-emblem-orbit::before,
.brand-emblem-orbit::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 40%, #ffffff);
}

.brand-emblem-orbit::before {
  width: 22px;
  height: 2px;
  left: 50%;
  top: 14px;
  transform: translateX(-50%);
}

.brand-emblem-orbit::after {
  width: 2px;
  height: 22px;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
}

.brand-emblem-core {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading-font);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.brand-lockup strong,
.site-nav a,
h1,
h2,
h3 {
  font-family: var(--heading-font);
}

.brand-lockup strong {
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.brand-lockup small {
  display: block;
  color: var(--muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

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

.site-nav a {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--muted);
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}

.site-nav a:hover {
  background: color-mix(in srgb, var(--surface) 84%, transparent);
  color: var(--text);
}

.site-nav .nav-cta {
  padding: 0.88rem 1.2rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  box-shadow: 0 18px 30px rgba(24, 33, 43, 0.12);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5.75rem 0 3rem;
  background:
    radial-gradient(circle at top left, color-mix(in srgb, var(--accent) 14%, transparent), transparent 34%),
    linear-gradient(135deg, var(--hero-grad-a), var(--hero-grad-b));
}

.hero .shell {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.25rem;
  align-items: center;
}

.eyebrow,
.demo-pill,
.card-tag,
.feature-panel span,
.trust-strip span {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.eyebrow {
  color: var(--accent-strong);
  display: inline-block;
  margin-bottom: 0.8rem;
}

.demo-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.9rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 0 0 1rem;
}

.hero-intro,
.section-heading p,
.info-card p,
.check-item p,
.reason-card p,
.testimonial-card p,
.faq-answer p,
.contact-card p,
.feature-panel p {
  color: var(--muted);
}

.hero-intro {
  max-width: 60ch;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  border: none;
}

.btn-primary-site {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-secondary-site {
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  border: 1px solid var(--line);
  color: var(--text);
}

.hero-notes {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-notes li {
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 78%, transparent);
  border: 1px solid var(--line);
  font-size: 0.92rem;
}

.hero-visual-card,
.info-card,
.feature-panel,
.reason-card,
.testimonial-card,
.contact-card,
.contact-detail-card {
  border-radius: var(--radius);
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface) 96%, #ffffff), color-mix(in srgb, var(--surface-2) 34%, var(--surface)));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-visual-card {
  padding: 1.2rem;
  position: relative;
  overflow: hidden;
}

.visual-stage {
  border-radius: calc(var(--radius) - 8px);
  min-height: 430px;
  padding: 1.2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(160deg, color-mix(in srgb, var(--accent) 26%, #ffffff), color-mix(in srgb, var(--accent-strong) 16%, #ffffff)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent);
}

.visual-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 18, 28, 0.08) 0%, rgba(12, 18, 28, 0.18) 42%, rgba(12, 18, 28, 0.62) 100%);
  pointer-events: none;
}

.visual-scene-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-browser {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto auto auto 1fr auto;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
}

.visual-browser span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  background: rgba(24, 33, 43, 0.22);
}

.visual-browser strong,
.visual-browser em {
  font-style: normal;
  font-size: 0.76rem;
}

.visual-browser strong {
  padding-left: 0.45rem;
}

.visual-browser em {
  color: var(--muted);
}

.visual-overlay {
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.visual-headline {
  padding: 1.3rem 0 0.4rem;
}

.visual-headline small {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin-bottom: 0.5rem;
}

.visual-headline h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.02;
  margin: 0;
  letter-spacing: -0.03em;
  color: #fff;
}

.visual-service-stack {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 1.2rem;
}

.visual-service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.visual-service-item strong {
  font-size: 0.98rem;
  line-height: 1.2;
}

.visual-service-item span {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.visual-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  margin-top: 1rem;
}

.visual-stat {
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(10px);
  min-height: 110px;
}

.visual-stat strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1;
}

.visual-stat span {
  display: block;
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual-card p {
  margin: 1rem 0 0;
  color: var(--muted);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1.4rem;
}

.trust-strip span {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  border: 1px solid var(--line);
  color: var(--text);
}

.metrics-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.35rem;
}

.metric-card {
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.metric-card strong {
  display: block;
  font-family: var(--heading-font);
  font-size: 1.65rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.metric-card span {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  font-weight: 700;
}

.section {
  padding: 5.25rem 0;
}

.intro-proof {
  padding-top: 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.proof-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--accent) 12%, transparent), transparent 34%),
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 96%, #ffffff), color-mix(in srgb, var(--surface-2) 52%, var(--surface)));
  box-shadow: var(--shadow);
}

.proof-label {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--accent-strong);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.proof-card h3 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.02;
  margin: 0 0 0.7rem;
  letter-spacing: -0.03em;
}

.proof-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.showcase-grid,
.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.showcase-card,
.membership-card {
  padding: 1.55rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--accent) 12%, transparent), transparent 32%),
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 96%, #ffffff), color-mix(in srgb, var(--surface-2) 48%, var(--surface)));
  box-shadow: var(--shadow);
}

.showcase-card small {
  display: inline-block;
  color: var(--accent-strong);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.showcase-card h3,
.membership-card h3 {
  font-size: 1.35rem;
  line-height: 1.08;
  margin: 0 0 0.7rem;
}

.showcase-card p,
.membership-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.membership-card strong {
  display: block;
  font-family: var(--heading-font);
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
}

.schedule-table,
.menu-list {
  display: grid;
  gap: 0.85rem;
}

.schedule-row,
.menu-row {
  display: grid;
  grid-template-columns: 1fr auto minmax(0, 1.4fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.15rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface) 96%, #ffffff), color-mix(in srgb, var(--surface-2) 44%, var(--surface)));
  box-shadow: var(--shadow);
}

.schedule-row strong,
.menu-row strong {
  font-family: var(--heading-font);
  font-size: 1rem;
}

.schedule-row span,
.menu-row span,
.schedule-row em,
.menu-row em {
  color: var(--muted);
  font-style: normal;
}

.logo-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.logo-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-strong);
  box-shadow: var(--shadow);
}

.section-alt {
  background: color-mix(in srgb, var(--surface-2) 76%, var(--bg));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 4.8vw, 3.5rem);
  line-height: 1;
  margin: 0 0 0.85rem;
  letter-spacing: -0.03em;
}

.card-grid,
.reason-grid,
.testimonial-grid {
  display: grid;
  gap: 1.25rem;
}

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

.info-card,
.feature-panel,
.reason-card,
.testimonial-card,
.contact-card,
.contact-detail-card {
  padding: 1.5rem;
}

.card-tag {
  color: var(--accent-strong);
  display: inline-block;
  margin-bottom: 0.8rem;
}

.info-card h3,
.check-item h3,
.feature-panel h3,
.reason-card h3 {
  font-size: 1.34rem;
  margin: 0 0 0.6rem;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem;
  align-items: center;
}

.split-media img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.scene-board {
  min-height: 100%;
  display: grid;
  gap: 1rem;
  align-content: start;
}

.scene-image {
  width: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--surface);
}

.scene-surface {
  min-height: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 92%, transparent), color-mix(in srgb, var(--surface-2) 68%, transparent));
  box-shadow: var(--shadow);
  padding: 1.3rem;
}

.scene-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding-bottom: 1rem;
}

.scene-topline strong {
  font-size: 1rem;
}

.scene-topline span {
  font-size: 0.82rem;
  color: var(--muted);
}

.scene-feature-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 0.95rem;
}

.scene-feature-card {
  padding: 1.1rem;
  min-height: 170px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.scene-feature-card:first-child {
  grid-row: span 2;
}

.scene-feature-card small {
  color: var(--accent-strong);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scene-feature-card strong {
  display: block;
  font-size: 1.3rem;
  line-height: 1.08;
  margin: 0.45rem 0 0.65rem;
}

.scene-feature-card span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.check-list {
  display: grid;
  gap: 1rem;
}

.check-item {
  padding: 1rem 1.1rem 1rem 1.35rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 85%, transparent);
  position: relative;
}

.check-item::before {
  content: "";
  position: absolute;
  left: 0.72rem;
  top: 1.25rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent);
}

.feature-panel {
  min-height: 100%;
}

.feature-panel span {
  display: inline-block;
  margin-top: 1rem;
  color: var(--accent-strong);
}

.testimonial-card {
  min-height: 100%;
}

.quote-spotlight {
  margin-bottom: 1.4rem;
  padding: 1.65rem 1.7rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top left, color-mix(in srgb, var(--accent) 16%, transparent), transparent 28%),
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 96%, #ffffff), color-mix(in srgb, var(--surface-2) 46%, var(--surface)));
  box-shadow: var(--shadow);
}

.quote-spotlight p {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.6;
  color: var(--text);
}

.quote-attribution {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.quote-attribution strong {
  font-family: var(--heading-font);
}

.quote-attribution span {
  color: var(--muted);
  font-size: 0.92rem;
}

.testimonial-card footer {
  margin-top: 1.2rem;
}

.testimonial-card strong,
.detail-row strong {
  display: block;
}

.testimonial-card span,
.detail-row span,
.detail-row a {
  color: var(--muted);
}

.narrow {
  max-width: 860px;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 0 1.2rem;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 0;
  font-family: var(--heading-font);
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-answer {
  padding: 0 0 1rem;
}

.contact-shell {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.25rem;
}

.detail-row {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.detail-row:last-child {
  border-bottom: 0;
}

.premium-cta-band {
  padding-top: 0;
}

.premium-cta-card {
  padding: 2rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--accent) 16%, transparent), transparent 30%),
    linear-gradient(145deg, color-mix(in srgb, var(--surface) 92%, #ffffff), color-mix(in srgb, var(--surface-2) 70%, var(--surface)));
  box-shadow: var(--shadow);
}

.premium-cta-card h2 {
  font-size: clamp(2rem, 4.8vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 0 0 0.9rem;
  max-width: 18ch;
}

.premium-cta-card p {
  margin: 0 0 1.4rem;
  max-width: 60ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  display: none;
  padding: 0.8rem 1rem calc(0.8rem + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--line);
}

.mobile-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
}

.site-footer {
  padding: 3.2rem 0 6rem;
  border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 86%, transparent);
}

.footer-shell {
  display: grid;
  gap: 1.6rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.7fr));
  gap: 1.4rem;
}

.footer-brand h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
}

.footer-brand p,
.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.footer-links strong {
  font-family: var(--heading-font);
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links span,
.footer-bottom a {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
}

.footer-bottom a {
  font-weight: 700;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--text);
}

.footer-shell p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-dental {
  --bg: #f3fbf9;
  --surface: #ffffff;
  --surface-2: #e8f5f4;
  --text: #18353d;
  --muted: #58717a;
  --line: rgba(24, 53, 61, 0.12);
  --accent: #1c7d88;
  --accent-strong: #14545b;
  --accent-soft: rgba(28, 125, 136, 0.14);
  --hero-grad-a: #f9fffe;
  --hero-grad-b: #dceff4;
}

.site-architect {
  --bg: #f4ede5;
  --surface: #fffaf4;
  --surface-2: #eee3d5;
  --text: #2f241d;
  --muted: #6f635b;
  --line: rgba(47, 36, 29, 0.12);
  --accent: #8d6d53;
  --accent-strong: #5e4636;
  --accent-soft: rgba(141, 109, 83, 0.12);
  --hero-grad-a: #faf4ee;
  --hero-grad-b: #e0d0bf;
}

.site-recovery {
  --bg: #0b1322;
  --surface: #121d33;
  --surface-2: #0f182b;
  --text: #f5f8ff;
  --muted: #aab8d0;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #ffc145;
  --accent-strong: #ffd67e;
  --accent-soft: rgba(255, 193, 69, 0.14);
  --hero-grad-a: #10192d;
  --hero-grad-b: #16233d;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
}

.site-trade {
  --bg: #f8f1e8;
  --surface: #fffaf4;
  --surface-2: #f1e3d2;
  --text: #392c24;
  --muted: #726255;
  --line: rgba(57, 44, 36, 0.12);
  --accent: #d17b32;
  --accent-strong: #8d5624;
  --accent-soft: rgba(209, 123, 50, 0.14);
  --hero-grad-a: #fffaf4;
  --hero-grad-b: #ecdcc8;
}

.site-fitness {
  --bg: #101417;
  --surface: #171f23;
  --surface-2: #12191d;
  --text: #f3f5f7;
  --muted: #a1adb5;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #ff6b3d;
  --accent-strong: #ff9a7a;
  --accent-soft: rgba(255, 107, 61, 0.14);
  --hero-grad-a: #13191c;
  --hero-grad-b: #1d262b;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.site-cafe {
  --bg: #f7e6d1;
  --surface: #fff9f2;
  --surface-2: #f1dfcb;
  --text: #4f3324;
  --muted: #795f50;
  --line: rgba(79, 51, 36, 0.12);
  --accent: #6e432a;
  --accent-strong: #4e2d1d;
  --accent-soft: rgba(110, 67, 42, 0.12);
  --hero-grad-a: #fffaf4;
  --hero-grad-b: #f4dcc0;
}

.site-legal {
  --bg: #10243f;
  --surface: #16304f;
  --surface-2: #102845;
  --text: #f4f7fb;
  --muted: #c1cbda;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #d5b47b;
  --accent-strong: #f0d6a7;
  --accent-soft: rgba(213, 180, 123, 0.14);
  --hero-grad-a: #132a47;
  --hero-grad-b: #1b3555;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
}

.site-finance {
  --bg: #eef5fb;
  --surface: #ffffff;
  --surface-2: #e2edf6;
  --text: #163a5d;
  --muted: #617688;
  --line: rgba(22, 58, 93, 0.12);
  --accent: #2f80c0;
  --accent-strong: #1b4f80;
  --accent-soft: rgba(47, 128, 192, 0.12);
  --hero-grad-a: #fbfdff;
  --hero-grad-b: #d9eaf8;
}

.site-aesthetics {
  --bg: #f4ede7;
  --surface: #fffaf6;
  --surface-2: #ede4dd;
  --text: #5f4438;
  --muted: #7c6a62;
  --line: rgba(95, 68, 56, 0.12);
  --accent: #b57e69;
  --accent-strong: #8a604f;
  --accent-soft: rgba(181, 126, 105, 0.12);
  --hero-grad-a: #fffaf7;
  --hero-grad-b: #eaded6;
}

.site-saas {
  --bg: #09111f;
  --surface: #121c38;
  --surface-2: #0e1730;
  --text: #f4f7ff;
  --muted: #aeb8d6;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #58fff1;
  --accent-strong: #8e85ff;
  --accent-soft: rgba(88, 255, 241, 0.14);
  --hero-grad-a: #0d1630;
  --hero-grad-b: #1a2446;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.34);
}

.layout-soft-split .hero .shell {
  align-items: center;
}

.layout-editorial .hero {
  padding-bottom: 4rem;
}

.layout-editorial .hero .shell {
  grid-template-columns: 1fr;
  align-items: end;
}

.layout-editorial .hero-copy {
  max-width: 760px;
}

.layout-editorial .hero-visual-card {
  margin-top: 0.5rem;
}

.layout-urgent .hero-copy {
  max-width: 580px;
}

.layout-urgent .hero-visual-card {
  transform: rotate(-1deg) translateY(12px);
}

.layout-practical .hero .shell {
  grid-template-columns: 0.96fr 1.04fr;
}

.layout-practical .hero-visual-card {
  border-radius: 32px;
}

.layout-bold .hero .shell,
.layout-neon .hero .shell {
  grid-template-columns: 1fr;
}

.layout-bold .hero-copy,
.layout-neon .hero-copy {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.layout-bold .hero-intro,
.layout-neon .hero-intro {
  margin-left: auto;
  margin-right: auto;
}

.layout-bold .cta-row,
.layout-bold .hero-notes,
.layout-neon .cta-row,
.layout-neon .hero-notes {
  justify-content: center;
}

.layout-bold .hero-visual-card,
.layout-neon .hero-visual-card {
  margin-top: 0.5rem;
}

.layout-warm .hero .shell {
  grid-template-columns: 1.1fr 0.9fr;
}

.layout-formal .hero .shell {
  grid-template-columns: 0.92fr 1.08fr;
}

.layout-formal .hero-copy {
  order: 2;
}

.layout-formal .hero-visual-card {
  order: 1;
}

.layout-dashboard .hero .shell {
  grid-template-columns: 0.9fr 1.1fr;
}

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

.layout-airy .hero .shell {
  grid-template-columns: 1fr;
  align-items: end;
}

.layout-airy .hero-copy {
  max-width: 700px;
}

.layout-airy .hero-visual-card {
  margin-top: -1rem;
  margin-left: auto;
  max-width: 760px;
}

.theme-soft {
  --heading-font: 'Fraunces', serif;
  --body-font: 'Manrope', sans-serif;
}

.theme-editorial {
  --heading-font: 'Cormorant Garamond', serif;
  --body-font: 'Plus Jakarta Sans', sans-serif;
}

.theme-urgent {
  --heading-font: 'Archivo', sans-serif;
  --body-font: 'Space Grotesk', sans-serif;
}

.theme-bold {
  --heading-font: 'Archivo', sans-serif;
  --body-font: 'Manrope', sans-serif;
}

.theme-formal {
  --heading-font: 'Fraunces', serif;
  --body-font: 'Plus Jakarta Sans', sans-serif;
}

.theme-neon {
  --heading-font: 'Space Grotesk', sans-serif;
  --body-font: 'Manrope', sans-serif;
}

.site-dental .visual-stage,
.site-aesthetics .visual-stage {
  border-radius: 36px;
}

.site-architect .hero .shell,
.site-cafe .hero .shell {
  grid-template-columns: 0.9fr 1.1fr;
}

.site-architect .hero-copy,
.site-legal .hero-copy {
  max-width: 600px;
}

.site-architect .scene-feature-grid {
  grid-template-columns: 1fr;
}

.site-architect .scene-feature-card:first-child {
  grid-row: auto;
  min-height: 220px;
}

.site-architect .scene-surface,
.site-legal .scene-surface {
  padding: 1.6rem;
}

.site-recovery .site-header,
.site-fitness .site-header,
.site-saas .site-header {
  background: color-mix(in srgb, var(--bg) 88%, transparent);
}

.site-recovery .visual-service-item,
.site-fitness .visual-service-item,
.site-saas .visual-service-item {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}

.site-recovery .visual-browser,
.site-fitness .visual-browser,
.site-saas .visual-browser {
  background: rgba(255, 255, 255, 0.08);
}

.site-recovery .scene-surface,
.site-fitness .scene-surface,
.site-saas .scene-surface {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}

.site-recovery .scene-feature-card,
.site-fitness .scene-feature-card,
.site-saas .scene-feature-card {
  background: rgba(255,255,255,0.04);
}

.site-recovery .hero-visual-card {
  transform: rotate(-1.3deg);
}

.site-recovery .schedule-row,
.site-recovery .showcase-card,
.site-fitness .membership-card,
.site-fitness .schedule-row,
.site-saas .logo-chip,
.site-legal .logo-chip {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
}

.site-fitness .membership-card strong,
.site-recovery .showcase-card small,
.site-saas .logo-chip,
.site-legal .logo-chip {
  color: var(--accent);
}

.site-aesthetics .showcase-card,
.site-cafe .menu-row {
  background:
    radial-gradient(circle at top left, color-mix(in srgb, var(--accent) 14%, transparent), transparent 28%),
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 98%, #ffffff), color-mix(in srgb, var(--surface-2) 54%, var(--surface)));
}

.site-fitness .hero-visual-card {
  transform: translateY(-8px);
}

.site-saas .hero-visual-card,
.site-finance .hero-visual-card {
  overflow: hidden;
}

.site-saas .hero-visual-card::after,
.site-finance .hero-visual-card::after {
  content: "";
  position: absolute;
  inset: auto -70px -70px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 28%, transparent), transparent 68%);
  pointer-events: none;
}

.site-cafe .visual-stage,
.site-aesthetics .scene-surface {
  background:
    radial-gradient(circle at top left, color-mix(in srgb, var(--accent) 22%, transparent), transparent 35%),
    linear-gradient(160deg, color-mix(in srgb, var(--accent) 16%, #ffffff), color-mix(in srgb, var(--surface-2) 82%, #ffffff));
}

.site-cafe .scene-feature-grid,
.site-finance .scene-feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.site-cafe .scene-feature-card:first-child,
.site-finance .scene-feature-card:first-child {
  grid-row: auto;
}

.site-legal .visual-stage {
  border-radius: 18px;
}

.site-legal .scene-feature-card,
.site-finance .scene-feature-card {
  border-radius: 16px;
}

@media (max-width: 991px) {
  .hero .shell,
  .split-layout,
  .contact-shell,
  .proof-grid,
  .showcase-grid,
  .membership-grid {
    grid-template-columns: 1fr;
  }

  .scene-feature-grid,
  .site-cafe .scene-feature-grid,
  .site-finance .scene-feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .primary-grid,
  .secondary-grid,
  .reason-grid,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .layout-formal .hero-copy,
  .layout-formal .hero-visual-card {
    order: initial;
  }
}

@media (max-width: 767px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 1rem;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav .nav-cta {
    text-align: center;
  }

  .nav-toggle {
    display: inline-block;
  }

  .hero {
    padding-top: 4.5rem;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 12vw, 3.8rem);
  }

  .visual-stage {
    min-height: 300px;
  }

  .scene-image {
    min-height: 220px;
  }

  .visual-grid,
  .metrics-strip,
  .primary-grid,
  .secondary-grid,
  .reason-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .scene-feature-grid,
  .site-cafe .scene-feature-grid,
  .site-finance .scene-feature-grid {
    grid-template-columns: 1fr;
  }

  .schedule-row,
  .menu-row {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .cta-row,
  .btn {
    width: 100%;
  }

  .mobile-cta {
    display: block;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer {
    padding-bottom: 7.5rem;
  }
}
