@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --color-bg: #F6F1E8;
  --color-bg-alt: #EDE5D8;
  --color-bg-warm: #E7D9C6;
  --color-surface: #FFFFFF;
  --color-text: #1C2B22;
  --color-text-secondary: #3D4F42;
  --color-text-tertiary: #6B7D6F;
  --color-border: rgba(28, 60, 44, 0.12);
  --color-border-light: rgba(28, 60, 44, 0.08);
  --color-accent: #1C3C2C;
  --color-accent-hover: #152E22;
  --color-accent-light: #EFF3EF;
  --card-bg: rgba(255, 255, 255, 0.72);
  --sand: #E7D9C6;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --max-width: 1120px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 7rem;
  --radius: 14px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--color-accent-hover);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.25;
  color: var(--color-text);
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ===================== HEADER ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border-light);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-sm) var(--space-md);
}

.site-wordmark {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.site-wordmark:hover {
  color: var(--color-text);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.desktop-nav a {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.desktop-nav a:hover {
  color: var(--color-text);
}

.header-cta {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-surface);
  background: var(--color-accent);
  padding: 0.5rem 1.125rem;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}

.header-cta:hover {
  background: var(--color-accent-hover);
  color: var(--color-surface);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.25s, opacity 0.25s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border-light);
  padding: var(--space-sm) var(--space-md) var(--space-md);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 0.625rem 0;
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  text-decoration: none;
  border-bottom: 1px solid var(--color-border-light);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  color: var(--color-text);
}

@media (max-width: 759px) {
  .desktop-nav,
  .header-cta-wrap {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border-light);
  padding: var(--space-lg) 0 var(--space-md);
  margin-top: var(--space-xl);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-md);
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

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

.footer-disclosure {
  font-size: 0.75rem;
  color: var(--color-text-tertiary);
  margin-bottom: var(--space-xs);
  line-height: 1.6;
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--color-text-tertiary);
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.1s;
  line-height: 1.4;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-surface);
  border: 1px solid var(--color-accent);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  color: var(--color-surface);
}

.btn-primary:active,
.btn-outline:active {
  transform: translateY(1px);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-text-secondary);
  color: var(--color-text);
}

.btn-sm {
  font-size: 0.8125rem;
  padding: 0.5rem 1rem;
}

/* ===================== FORMS ===================== */
.form-row {
  display: flex;
  gap: var(--space-xs);
  max-width: 400px;
}

.form-row input[type="email"],
.form-row input[type="text"] {
  flex: 1;
  font-family: var(--font-body);
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-surface);
  color: var(--color-text);
  outline: none;
  transition: border-color 0.2s;
}

.form-row input:focus {
  border-color: var(--color-accent);
}

.form-success {
  display: none;
  font-size: 0.9375rem;
  color: var(--color-accent);
  font-weight: 500;
}

.form-group {
  margin-bottom: var(--space-sm);
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  margin-bottom: 0.375rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: var(--color-surface);
  color: var(--color-text);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===================== SECTIONS ===================== */
.section {
  padding: var(--space-xl) 0;
}

.section-sm {
  padding: var(--space-lg) 0;
}

.section-title {
  margin-bottom: var(--space-xs);
}

.section-subtitle {
  color: var(--color-text-secondary);
  font-size: 1.0625rem;
  margin-bottom: var(--space-lg);
}

.label-text {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-tertiary);
  margin-bottom: var(--space-xs);
}

/* ===================== HOMEPAGE ===================== */
.home-hero {
  position: relative;
  padding: var(--space-2xl) 0 var(--space-xl);
  text-align: center;
  overflow: hidden;
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.home-hero-bg svg {
  position: absolute;
  opacity: 0.12;
}

.home-hero-bg .home-leaf-1 {
  top: 10%;
  left: 5%;
  width: 120px;
  height: 120px;
}

.home-hero-bg .home-leaf-2 {
  bottom: 8%;
  right: 6%;
  width: 140px;
  height: 140px;
  transform: rotate(45deg);
}

.home-hero-bg .home-leaf-3 {
  top: 50%;
  right: 18%;
  width: 80px;
  height: 80px;
  transform: rotate(-20deg);
}

.home-hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.home-hero-content h1 {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  line-height: 1.15;
}

.home-hero-content .home-hero-sub {
  font-size: 1.0625rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.btn-sand {
  background: var(--sand);
  color: var(--color-text);
  border: 1px solid rgba(28, 60, 44, 0.1);
}

.btn-sand:hover {
  background: #DDD0BC;
  color: var(--color-text);
}

.home-cards-section {
  padding: var(--space-xl) 0;
}

.home-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.home-card {
  background: var(--color-surface);
  border-radius: 20px;
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  box-shadow: 0 2px 16px rgba(28, 43, 34, 0.06);
  border: 1px solid var(--color-border-light);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(28, 43, 34, 0.1);
}

.home-card-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.home-card-circle svg {
  width: 56px;
  height: 56px;
  color: var(--color-accent);
  opacity: 0.6;
}

.home-card h3 {
  font-size: 1.375rem;
  margin-bottom: var(--space-xs);
}

.home-card p {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

.home-email-section {
  padding: var(--space-xl) 0;
}

.home-email-inner {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.home-email-inner h2 {
  margin-bottom: var(--space-xs);
}

.home-email-inner .home-email-sub {
  font-size: 1rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
}

.home-email-inner .form-row {
  max-width: 400px;
  margin: 0 auto;
}

.partners-teaser {
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: var(--space-lg);
}

.partners-teaser p {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  max-width: 560px;
  line-height: 1.7;
}

/* ===================== ESSENTIALS PAGE ===================== */
.essentials-hero {
  padding: var(--space-2xl) 0 var(--space-xl);
  max-width: 680px;
}

.essentials-hero h1 {
  margin-bottom: var(--space-sm);
}

.essentials-boundary {
  font-size: 0.9375rem;
  color: var(--color-text-tertiary);
  padding-bottom: var(--space-md);
  margin-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border-light);
  line-height: 1.65;
}

.essentials-intro {
  font-size: 1.0625rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}

.essentials-hero-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.essentials-tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.essentials-tile {
  background: var(--card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-md);
  text-align: center;
  text-decoration: none;
  color: var(--color-text);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.essentials-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44, 41, 37, 0.06);
  color: var(--color-text);
}

.essentials-tile-icon {
  margin-bottom: var(--space-sm);
  color: var(--color-accent);
}

.essentials-tile h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.essentials-tile p {
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.essentials-method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.essentials-method-item {
  padding: var(--space-md);
  border-left: 2px solid var(--color-border-light);
}

.essentials-method-item h4 {
  margin-bottom: var(--space-xs);
  font-size: 1.125rem;
}

.essentials-method-item p {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
}

.essentials-edits-list {
  max-width: 600px;
}

.essentials-edit-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border-light);
  text-decoration: none;
  color: var(--color-text);
  transition: color 0.2s;
}

.essentials-edit-item:first-child {
  border-top: 1px solid var(--color-border-light);
}

.essentials-edit-item:hover {
  color: var(--color-accent);
}

.essentials-edit-title {
  font-size: 1rem;
  font-weight: 500;
}

.essentials-edit-arrow {
  font-size: 1rem;
  color: var(--color-text-tertiary);
}

.essentials-edit-item:hover .essentials-edit-arrow {
  color: var(--color-accent);
}

.essentials-crosslinks {
  text-align: center;
  padding: var(--space-md);
  background: var(--color-bg-alt);
  border-radius: var(--radius);
}

.essentials-crosslinks p {
  font-size: 0.875rem;
  color: var(--color-text-tertiary);
}

.essentials-crosslinks a {
  font-weight: 500;
}

.essentials-join-band {
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: var(--space-lg);
  max-width: 560px;
}

.essentials-join-band .section-subtitle {
  margin-bottom: var(--space-md);
}

.essentials-disclosure {
  font-size: 0.8125rem;
  color: var(--color-text-tertiary);
  line-height: 1.6;
  max-width: 560px;
}

.essentials-placeholder-page {
  max-width: 560px;
  padding: var(--space-2xl) 0 var(--space-xl);
}

.essentials-placeholder-page h1 {
  margin-bottom: var(--space-md);
}

.essentials-placeholder-page .essentials-placeholder-intro {
  font-size: 1.0625rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}

.essentials-placeholder-page .essentials-placeholder-note {
  font-size: 0.875rem;
  color: var(--color-text-tertiary);
  padding: var(--space-md);
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  margin-bottom: var(--space-lg);
}

.essentials-placeholder-page .essentials-back-link {
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-media {
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(44, 41, 37, 0.04);
  border: 1px solid var(--color-border);
}

.hero-media img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  display: block;
  object-fit: cover;
}

.card-media {
  overflow: hidden;
  background: rgba(44, 41, 37, 0.04);
}

.card-media img {
  width: 100%;
  height: 220px;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .card-media img,
.explore-card:hover .card-media img {
  transform: scale(1.03);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.chip {
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.5rem 0.875rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-text-secondary);
  background: rgba(255, 255, 255, 0.6);
  transition: border-color 0.2s, color 0.2s;
  cursor: pointer;
}

.chip:hover {
  border-color: var(--color-text-tertiary);
  color: var(--color-text);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.product-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card-bg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44, 41, 37, 0.06);
}

.product-card .card-body {
  padding: 16px 16px 18px;
}

.product-card h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.product-card .why-this {
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
  font-style: italic;
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.criteria-block {
  text-align: center;
  padding: var(--space-md);
}

.criteria-block h4 {
  margin-bottom: var(--space-xs);
  font-size: 1.125rem;
}

.criteria-block p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

/* ===================== LIFESTYLE PAGE ===================== */
.lifestyle-hero {
  padding: var(--space-2xl) 0 var(--space-xl);
}

.lifestyle-hero-grid {
  max-width: 600px;
}

.lifestyle-hero-copy h1 {
  margin-bottom: var(--space-sm);
}

.lifestyle-hero-sub {
  font-size: 1.0625rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

.lifestyle-hero-support {
  font-size: 0.9375rem;
  color: var(--color-text-tertiary);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.lifestyle-hero-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.lifestyle-explore-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
}

.lifestyle-explore-card {
  background: var(--card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-md);
  text-align: center;
  text-decoration: none;
  color: var(--color-text);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lifestyle-explore-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44, 41, 37, 0.06);
  color: var(--color-text);
}

.lifestyle-explore-icon {
  margin-bottom: var(--space-sm);
  color: var(--color-accent);
}

.lifestyle-explore-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.lifestyle-explore-card p {
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.lifestyle-frameworks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.lifestyle-framework-card {
  background: var(--card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lifestyle-framework-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44, 41, 37, 0.06);
}

.lifestyle-framework-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}

.lifestyle-framework-card > p {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

.lifestyle-framework-card ul {
  list-style: none;
  padding: 0;
}

.lifestyle-framework-card ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: var(--space-xs);
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.lifestyle-framework-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
}

.lifestyle-shortlists-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.lifestyle-shortlist-card {
  background: var(--card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lifestyle-shortlist-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44, 41, 37, 0.06);
}

.lifestyle-shortlist-card h3 {
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
}

.lifestyle-shortlist-card ul {
  list-style: none;
  padding: 0;
}

.lifestyle-shortlist-card ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: var(--space-xs);
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.lifestyle-shortlist-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-border);
}

.lifestyle-fieldnotes-list {
  max-width: 700px;
}

.lifestyle-fieldnote {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border-light);
}

.lifestyle-fieldnote:last-child {
  border-bottom: none;
}

.lifestyle-fieldnote-date {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.lifestyle-fieldnote h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.lifestyle-fieldnote p {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
}

.lifestyle-join-band {
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: var(--space-lg);
  max-width: 560px;
}

.lifestyle-join-band .section-subtitle {
  margin-bottom: var(--space-md);
}

/* ===================== FAMILY PAGE ===================== */
.family .hero-soft {
  background: var(--color-bg-alt);
  padding: var(--space-2xl) 0;
  border-radius: 0 0 var(--radius) var(--radius);
  margin-bottom: var(--space-lg);
}

.family .hero-soft h1 {
  margin-bottom: var(--space-sm);
}

.family .hero-soft .hero-sub {
  font-size: 1.0625rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  max-width: 520px;
  line-height: 1.75;
}

.trust-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.trust-block {
  background: var(--card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-md);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trust-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44, 41, 37, 0.06);
}

.trust-block h4 {
  margin-bottom: var(--space-xs);
}

.trust-block p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.category-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}

.category-tile {
  background: var(--card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44, 41, 37, 0.06);
}

.category-tile .card-media img {
  height: 140px;
}

.category-tile .tile-label {
  padding: var(--space-sm);
  text-align: center;
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
}

.promise-band {
  background: var(--color-accent-light);
  border-radius: var(--radius);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md) var(--space-lg);
}

.promise-item {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-accent);
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-md);
  align-items: center;
  justify-content: center;
}

.partner-logo-item {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-tertiary);
  letter-spacing: 0.02em;
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--card-bg);
}

.family .hero-soft {
  position: relative;
  overflow: hidden;
}

.family .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.family .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.family .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(243, 240, 235, 0.88) 0%, rgba(243, 240, 235, 0.95) 100%);
}

.family .hero-soft .container {
  position: relative;
  z-index: 1;
}

/* ===================== PARTNERS PAGE ===================== */
.partners .page-hero {
  padding: var(--space-2xl) 0 var(--space-xl);
  max-width: 600px;
}

.partners .page-hero h1 {
  margin-bottom: var(--space-sm);
}

.partners .page-hero .hero-sub {
  font-size: 1.0625rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
}

.partners .support-list {
  list-style: none;
  padding: 0;
}

.partners .support-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: var(--space-xs);
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
}

.partners .support-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-border);
}

.partners .who-for p {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
}

.contact-form {
  max-width: 480px;
}

/* ===================== ABOUT PAGE ===================== */
.about .page-hero {
  padding: var(--space-2xl) 0 var(--space-lg);
}

.about .page-content {
  max-width: 600px;
}

.about .page-content h3 {
  margin-bottom: var(--space-xs);
  font-size: 1.375rem;
}

.about .page-content p,
.about .page-content li {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.about .page-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-md);
}

.about .page-content ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: var(--space-xs);
}

.about .page-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-border);
}

/* ===================== CONTACT PAGE ===================== */
.contact .page-hero {
  padding: var(--space-2xl) 0 var(--space-lg);
}

.contact .page-content {
  max-width: 520px;
}

.contact .page-content p {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

/* ===================== PRIVACY PAGE ===================== */
.privacy .page-hero {
  padding: var(--space-2xl) 0 var(--space-lg);
}

.privacy .page-content {
  max-width: 600px;
}

.privacy .page-content h3 {
  margin-bottom: var(--space-xs);
  font-size: 1.25rem;
}

.privacy .page-content p {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

/* ===================== LANDING PAGES ===================== */
.landing-page {
  max-width: 560px;
  padding: var(--space-2xl) 0 var(--space-xl);
}

.landing-page h1 {
  margin-bottom: var(--space-md);
}

.landing-intro {
  font-size: 1.0625rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}

.landing-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.landing-list {
  margin-top: var(--space-xl);
}

.landing-list h2 {
  margin-bottom: var(--space-md);
  font-size: 1.5rem;
}

.landing-list ul {
  list-style: none;
  padding: 0;
}

.landing-list ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: var(--space-sm);
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.landing-list ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

.landing-note {
  margin-top: var(--space-xl);
  font-size: 0.8125rem;
  color: var(--color-text-tertiary);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

/* ===================== BREADCRUMB ===================== */
.breadcrumb {
  font-size: 0.8125rem;
  color: var(--color-text-tertiary);
  margin-bottom: var(--space-sm);
  padding-top: var(--space-md);
}

.breadcrumb a {
  color: var(--color-text-tertiary);
}

.breadcrumb a:hover {
  color: var(--color-text);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 759px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .section { padding: var(--space-lg) 0; }

  .home-hero {
    padding: var(--space-xl) 0 var(--space-lg);
  }

  .home-hero-content h1 {
    font-size: 2.25rem;
  }

  .home-cards-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .home-card {
    padding: var(--space-md);
  }

  .home-card-circle {
    width: 110px;
    height: 110px;
  }

  .home-card-circle svg {
    width: 44px;
    height: 44px;
  }

  .home-hero-bg .home-leaf-1 {
    width: 80px;
    height: 80px;
  }

  .home-hero-bg .home-leaf-2 {
    width: 90px;
    height: 90px;
  }

  .home-hero-bg .home-leaf-3 {
    display: none;
  }

  .pillar-grid,
  .explore-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

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

  .essentials-method-grid {
    grid-template-columns: 1fr;
  }

  .essentials-hero-buttons {
    flex-direction: row;
  }

  .essentials-hero-buttons .btn {
    flex: 1;
    text-align: center;
  }

  .hero-media img {
    max-height: 320px;
  }

  .card-media img {
    height: 200px;
  }

  .category-tile .card-media img {
    height: 100px;
  }

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

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

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

  .lifestyle-frameworks-grid {
    grid-template-columns: 1fr;
  }

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

  .lifestyle-hero-buttons {
    flex-direction: row;
  }

  .lifestyle-hero-buttons .btn {
    flex: 1;
    text-align: center;
  }

  .trust-blocks {
    grid-template-columns: 1fr;
  }

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

  .promise-band {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .guide-item {
    flex-direction: column;
  }

  .guide-thumb {
    width: 100%;
  }

  .pull-quote blockquote {
    font-size: 1.375rem;
  }

  .form-row {
    max-width: 100%;
  }

  .family .hero-soft {
    padding: var(--space-xl) 0;
  }

  .lifestyle-hero {
    padding: var(--space-xl) 0 var(--space-lg);
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .essentials-tiles-grid {
    grid-template-columns: 1fr;
  }

  .lifestyle-explore-grid {
    grid-template-columns: 1fr;
  }

  .lifestyle-shortlists-grid {
    grid-template-columns: 1fr;
  }

  .category-tiles {
    grid-template-columns: 1fr;
  }

  .criteria-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    text-align: center;
  }
}
