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

:root {
  --clr-bg: #091413;
  --clr-deep: #285A48;
  --clr-mid: #408A71;
  --clr-light: #B0E4CC;
  --clr-white: #f5faf8;
  --clr-text: #d4ede3;
  --clr-muted: #7ab89e;
  --clr-surface: #0f1f1d;
  --clr-card: #122320;
  --clr-border: rgba(176, 228, 204, 0.15);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --space-xs: 0.375rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3.5rem;
  --space-2xl: 6rem;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --radius-full: 999px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.35);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.45);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.55);
  --shadow-glow: 0 0 40px rgba(64,138,113,0.25);

  --trans-fast: 0.18s ease;
  --trans-mid: 0.35s cubic-bezier(0.4,0,0.2,1);
  --trans-slow: 0.6s cubic-bezier(0.4,0,0.2,1);

  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 15px;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; width: 100%; height: auto; display: block; }
iframe { max-width: 100%; }
a { color: var(--clr-light); text-decoration: none; transition: color var(--trans-fast); }
a:hover { color: var(--clr-white); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

.container {
  width: 92%;
  max-width: 1160px;
  margin-inline: auto;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: var(--space-sm) 0;
  transition: transform var(--trans-mid), background var(--trans-mid), box-shadow var(--trans-mid);
}

.site-header.scrolled {
  background: rgba(9,20,19,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.site-header.hidden { transform: translateY(-100%); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--clr-light);
  letter-spacing: -0.02em;
  line-height: 1;
}

.logo span { color: var(--clr-mid); }

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

.nav-list a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--clr-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 2px;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--clr-light);
  transition: width var(--trans-mid);
}

.nav-list a:hover, .nav-list a.active { color: var(--clr-light); }
.nav-list a:hover::after, .nav-list a.active::after { width: 100%; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  padding: 0;
  z-index: 1010;
  position: relative;
  flex-shrink: 0;
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--clr-light);
  border-radius: 2px;
  transition: transform var(--trans-mid), opacity var(--trans-mid);
  transform-origin: center center;
  position: absolute;
  left: 0;
}

.burger span:nth-child(1) { top: 6px; }
.burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.burger span:nth-child(3) { bottom: 6px; }

.burger.open span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) scaleX(0);
}
.burger.open span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(9,20,19,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--trans-mid), visibility var(--trans-mid);
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--clr-text);
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: color var(--trans-fast), transform var(--trans-fast);
}

.mobile-nav a:hover { color: var(--clr-light); transform: translateX(6px); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--trans-mid);
}

.btn-primary {
  background: var(--clr-mid);
  color: var(--clr-bg);
  box-shadow: 0 4px 18px rgba(64,138,113,0.35);
}

.btn-primary:hover {
  background: var(--clr-light);
  color: var(--clr-bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(176,228,204,0.3);
}

.btn-outline {
  border: 1.5px solid var(--clr-border);
  color: var(--clr-light);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--clr-light);
  background: rgba(176,228,204,0.07);
  transform: translateY(-2px);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-h);
  max-width: 100%;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: min(680px, 100%);
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-mid);
  margin-bottom: var(--space-md);
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--clr-mid);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--clr-white);
  margin-bottom: var(--space-md);
}

.hero h1 em {
  font-style: italic;
  color: var(--clr-light);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--clr-muted);
  max-width: min(480px, 100%);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-muted);
  animation: bounce 2.2s infinite;
}

.hero-scroll i { font-size: 1rem; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── SECTION BASE ── */
.section {
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-mid);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--clr-border);
  max-width: 60px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--clr-white);
  margin-bottom: var(--space-md);
}

.section-title em { font-style: italic; color: var(--clr-light); }

.section-sub {
  font-size: 0.95rem;
  color: var(--clr-muted);
  max-width: min(520px, 100%);
  line-height: 1.8;
}

/* ── INTRO / ABOUT ── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.intro-visual {
  position: relative;
}

.intro-img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.intro-badge {
  position: absolute;
  bottom: var(--space-md);
  right: var(--space-md);
  background: var(--clr-deep);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  font-size: 0.8rem;
  color: var(--clr-light);
  box-shadow: var(--shadow-md);
  max-width: calc(100% - var(--space-lg));
}

.intro-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--clr-white);
  line-height: 1;
}

/* ── PILLARS ── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.pillar-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: transform var(--trans-mid), box-shadow var(--trans-mid), border-color var(--trans-mid);
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-deep), var(--clr-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans-mid);
}

.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-glow); border-color: rgba(176,228,204,0.25); }
.pillar-card:hover::before { transform: scaleX(1); }

.pillar-icon {
  width: 44px; height: 44px;
  background: rgba(64,138,113,0.15);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--clr-mid);
  margin-bottom: var(--space-md);
}

.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--space-sm);
}

.pillar-card p { font-size: 0.875rem; color: var(--clr-muted); line-height: 1.75; }

/* ── PHOTO FEATURE ── */
.photo-feature {
  background: var(--clr-surface);
  position: relative;
  overflow: hidden;
}

.photo-feature::before {
  content: '';
  position: absolute;
  top: -80px; right: 0;
  width: min(400px, 100%);
  height: 400px;
  background: radial-gradient(circle, rgba(64,138,113,0.12) 0%, transparent 70%);
  pointer-events: none;
  overflow: hidden;
}

.photo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 500px;
}

.photo-split-img {
  position: relative;
  overflow: hidden;
}

.photo-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans-slow);
}

.photo-split-img:hover img { transform: scale(1.04); }

.photo-split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl) var(--space-xl);
  background: var(--clr-card);
}

/* ── HABITS ── */
.habits-section { background: var(--clr-bg); }

.habits-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.habit-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--space-md);
  align-items: start;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: border-color var(--trans-fast), background var(--trans-fast);
}

.habit-item:hover {
  background: var(--clr-card);
  border-color: var(--clr-border);
}

.habit-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--clr-deep);
  line-height: 1;
  padding-top: 2px;
}

.habit-item h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--space-xs);
}

.habit-item p { font-size: 0.875rem; color: var(--clr-muted); }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--clr-surface); }

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

.testi-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
}

.testi-quote {
  font-size: 2.5rem;
  color: var(--clr-deep);
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.testi-card p {
  font-size: 0.875rem;
  color: var(--clr-muted);
  line-height: 1.8;
  margin-bottom: var(--space-md);
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testi-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-deep), var(--clr-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--clr-white);
  flex-shrink: 0;
}

.testi-name { font-size: 0.8rem; font-weight: 600; color: var(--clr-white); }
.testi-loc { font-size: 0.72rem; color: var(--clr-muted); }

.stars { color: var(--clr-mid); font-size: 0.75rem; margin-bottom: var(--space-sm); }

/* ── CONTACT ── */
.contact-section { background: var(--clr-bg); }

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info { padding-top: var(--space-lg); }

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  padding: var(--space-md);
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
}

.contact-detail-icon {
  width: 38px; height: 38px;
  background: rgba(64,138,113,0.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-mid);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail-text { font-size: 0.85rem; }
.contact-detail-text strong { display: block; color: var(--clr-white); font-size: 0.8rem; margin-bottom: 2px; }
.contact-detail-text p { color: var(--clr-muted); }

.contact-form-wrap {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--space-lg);
}

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

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(176,228,204,0.04);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 0.7rem 1rem;
  color: var(--clr-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--clr-mid);
  box-shadow: 0 0 0 3px rgba(64,138,113,0.15);
}

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

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.form-consent input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--clr-mid);
  flex-shrink: 0;
  margin-top: 2px;
}

.form-consent label {
  font-size: 0.78rem;
  color: var(--clr-muted);
  line-height: 1.6;
  text-transform: none;
  letter-spacing: 0;
}

.form-consent a { color: var(--clr-mid); }

/* ── MAP ── */
.map-section { background: var(--clr-surface); padding: 0; }
.map-wrap { width: 100%; height: 340px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.3) contrast(1.05); }

/* ── FOOTER ── */
.site-footer {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  padding: var(--space-lg) 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-light);
}

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

.footer-links a {
  font-size: 0.78rem;
  color: var(--clr-muted);
  transition: color var(--trans-fast);
}

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

.footer-copy {
  font-size: 0.75rem;
  color: var(--clr-muted);
  width: 100%;
  text-align: center;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--clr-border);
  margin-top: var(--space-sm);
  word-break: break-word;
  overflow-wrap: break-word;
}

/* ── COOKIE POPUP ── */
.cookie-popup {
  position: fixed;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%) translateY(calc(100% + 40px));
  z-index: 9999;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  max-width: 560px;
  width: min(92%, calc(100vw - 2rem));
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  transition: transform var(--trans-mid);
}

.cookie-popup.visible { transform: translateX(-50%) translateY(0); }

.cookie-popup p { font-size: 0.82rem; color: var(--clr-muted); flex: 1; min-width: 200px; line-height: 1.6; }
.cookie-popup a { color: var(--clr-mid); }

.cookie-btns { display: flex; gap: var(--space-sm); flex-shrink: 0; }

/* ── PAGE HERO (subpages) ── */
.page-hero {
  padding: calc(var(--header-h) + var(--space-xl)) 0 var(--space-xl);
  background: var(--clr-surface);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: var(--clr-bg);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.page-hero-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-mid);
  margin-bottom: var(--space-sm);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--clr-white);
  margin-bottom: var(--space-md);
}

.page-hero h1 em { font-style: italic; color: var(--clr-light); }
.page-hero p { font-size: 1rem; color: var(--clr-muted); max-width: min(540px, 100%); }

/* ── ASYMMETRIC LAYOUTS (subpages) ── */
.asym-section {
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.asym-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.asym-grid.reverse { grid-template-columns: 1fr 1.4fr; }
.asym-grid.reverse .asym-content { order: 2; }
.asym-grid.reverse .asym-visual { order: 1; }

.asym-content { padding-top: var(--space-lg); }

.asym-visual {
  position: relative;
  margin-top: var(--space-xl);
}

.asym-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.floating-card {
  position: absolute;
  bottom: var(--space-sm);
  left: var(--space-sm);
  background: var(--clr-deep);
  border: 1px solid rgba(176,228,204,0.2);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  font-size: 0.8rem;
  color: var(--clr-light);
  box-shadow: var(--shadow-md);
  max-width: calc(100% - var(--space-lg));
}

.angled-divider {
  height: 80px;
  background: var(--clr-surface);
  clip-path: polygon(0 0, 100% 60%, 100% 100%, 0 100%);
  margin-top: -2px;
}

.angled-divider.flip {
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}

.overlap-block {
  position: relative;
  margin-top: var(--space-xl);
  overflow: hidden;
}

.overlap-img-main {
  width: 75%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-left: auto;
}

.overlap-card-float {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 44%;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
}

.overlap-card-float h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--space-sm);
}

.overlap-card-float p { font-size: 0.85rem; color: var(--clr-muted); line-height: 1.75; }

/* ── CARE GUIDE STEPS ── */
.steps-wrap {
  margin-top: var(--space-xl);
  position: relative;
}

.steps-wrap::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--clr-border);
}

.step-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  position: relative;
}

.step-num {
  width: 54px; height: 54px;
  background: var(--clr-card);
  border: 2px solid var(--clr-deep);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--clr-light);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-body {
  padding-top: var(--space-sm);
  padding-bottom: var(--space-lg);
}

.step-body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--space-xs);
}

.step-body p { font-size: 0.875rem; color: var(--clr-muted); line-height: 1.75; }

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.price-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: transform var(--trans-mid), box-shadow var(--trans-mid);
  position: relative;
}

.price-card.featured {
  border-color: var(--clr-mid);
  box-shadow: var(--shadow-glow);
}

.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-glow); }

.price-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--clr-mid);
  color: var(--clr-bg);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: var(--radius-full);
}

.price-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--space-sm);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--clr-light);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.price-amount sup { font-size: 1rem; vertical-align: super; }
.price-amount span { font-size: 0.9rem; font-weight: 400; color: var(--clr-muted); }

.price-period { font-size: 0.78rem; color: var(--clr-muted); margin-bottom: var(--space-lg); }

.price-features {
  margin-bottom: var(--space-lg);
}

.price-features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  color: var(--clr-muted);
  padding: var(--space-xs) 0;
  border-bottom: 1px solid rgba(176,228,204,0.06);
}

.price-features li i { color: var(--clr-mid); font-size: 0.8rem; }

/* ── LEGAL PAGES ── */
.legal-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: calc(var(--header-h) + var(--space-xl)) 0 var(--space-2xl);
}

.legal-wrap h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--clr-white);
  margin-bottom: var(--space-sm);
}

.legal-date { font-size: 0.8rem; color: var(--clr-muted); margin-bottom: var(--space-xl); }

.legal-wrap h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-white);
  margin: var(--space-lg) 0 var(--space-sm);
}

.legal-wrap p, .legal-wrap li {
  font-size: 0.9rem;
  color: var(--clr-muted);
  line-height: 1.85;
  margin-bottom: var(--space-sm);
}

.legal-wrap ul { padding-left: var(--space-lg); list-style: disc; }
.legal-wrap a { color: var(--clr-mid); }

/* ── THANK YOU PAGE ── */
.thankyou-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
}

.thankyou-inner { max-width: 520px; }

.thankyou-icon {
  width: 72px; height: 72px;
  background: rgba(64,138,113,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: var(--clr-mid);
  margin: 0 auto var(--space-lg);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(64,138,113,0.4); }
  70% { box-shadow: 0 0 0 20px rgba(64,138,113,0); }
  100% { box-shadow: 0 0 0 0 rgba(64,138,113,0); }
}

.thankyou-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--clr-white);
  margin-bottom: var(--space-md);
}

.thankyou-inner p { font-size: 0.95rem; color: var(--clr-muted); margin-bottom: var(--space-lg); }

/* ── 404 PAGE ── */
.notfound-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
}

.notfound-inner { max-width: 480px; }

.notfound-num {
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 10rem);
  font-weight: 900;
  color: var(--clr-deep);
  line-height: 1;
  margin-bottom: var(--space-md);
  opacity: 0.6;
}

.notfound-inner h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--clr-white);
  margin-bottom: var(--space-md);
}

.notfound-inner p { font-size: 0.9rem; color: var(--clr-muted); margin-bottom: var(--space-lg); }

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--trans-slow), transform var(--trans-slow);
}

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

.reveal-left {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--trans-slow), transform var(--trans-slow);
}

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

.reveal-right {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--trans-slow), transform var(--trans-slow);
}

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

/* ── HABITS SECTION INLINE GRID (extracted for responsive control) ── */
.habits-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.habits-cols .pillars-grid {
  grid-template-columns: 1fr;
  margin-top: 0;
}

/* ── RESPONSIVE — 1280px (large desktops) ── */
@media (max-width: 1280px) {
  .container { max-width: 1060px; }
}

/* ── RESPONSIVE — 1100px (medium desktops) ── */
@media (max-width: 1100px) {
  .asym-grid { grid-template-columns: 1.2fr 1fr; gap: var(--space-lg); }
  .asym-grid.reverse { grid-template-columns: 1fr 1.2fr; }
  .intro-grid { gap: var(--space-lg); }
  .contact-wrap { gap: var(--space-lg); }
}

/* ── RESPONSIVE — 960px (tablets landscape) ── */
@media (max-width: 960px) {
  :root {
    --space-xl: 2.8rem;
    --space-2xl: 4.5rem;
  }

  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }

  .intro-grid { grid-template-columns: 1fr; }
  .intro-img { height: 320px; }
  .intro-badge { position: static; display: inline-block; margin-top: var(--space-md); }

  .photo-split { grid-template-columns: 1fr; }
  .photo-split-img { height: 300px; }
  .photo-split-text { padding: var(--space-lg); }

  .contact-wrap { grid-template-columns: 1fr; }
  .contact-info { padding-top: 0; }

  .asym-grid,
  .asym-grid.reverse { grid-template-columns: 1fr; gap: var(--space-lg); }
  .asym-grid.reverse .asym-content { order: 0; }
  .asym-grid.reverse .asym-visual { order: 0; }
  .asym-visual { margin-top: var(--space-md); }
  .asym-img { height: 280px; }
  .floating-card { position: static; margin-top: var(--space-sm); display: inline-block; }

  .overlap-img-main { width: 100%; height: 280px; margin-left: 0; }
  .overlap-card-float {
    position: static;
    transform: none;
    width: 100%;
    margin-top: var(--space-md);
  }

  .habits-cols { grid-template-columns: 1fr; }
  .habits-cols .pillars-grid { grid-template-columns: 1fr 1fr; margin-top: var(--space-lg); }

  .map-wrap { height: 280px; }

  .hero h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); }
  .page-hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); }

  .legal-wrap { padding-top: calc(var(--header-h) + var(--space-lg)); }
}

/* ── RESPONSIVE — 768px (tablets portrait) ── */
@media (max-width: 768px) {
  :root {
    --space-lg: 1.6rem;
    --space-xl: 2.4rem;
    --space-2xl: 3.8rem;
  }

  .nav-list { display: none; }
  .burger { display: flex; }

  .logo { font-size: 1.3rem; }

  .hero { min-height: 100svh; }
  .hero h1 { font-size: clamp(2rem, 7vw, 3.2rem); }
  .hero-desc { font-size: 0.95rem; }
  .hero-cta { flex-direction: column; align-items: flex-start; gap: var(--space-sm); }
  .hero-cta .btn { width: auto; }

  .pillars-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }

  .habits-cols .pillars-grid { grid-template-columns: 1fr; }

  .contact-form-wrap { padding: var(--space-lg); }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: var(--space-sm); }
  .footer-links { gap: var(--space-sm); }

  .steps-wrap::before { display: none; }
  .step-item { grid-template-columns: 44px 1fr; gap: var(--space-sm); }
  .step-num { width: 44px; height: 44px; font-size: 0.95rem; }

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

  .page-hero { padding: calc(var(--header-h) + var(--space-lg)) 0 var(--space-lg); }
  .page-hero::after { height: 40px; }
  .page-hero h1 { font-size: clamp(1.6rem, 6vw, 2.6rem); }
  .page-hero p { font-size: 0.9rem; }

  .angled-divider { height: 50px; }

  .section-title { font-size: clamp(1.5rem, 4.5vw, 2.2rem); }

  .map-wrap { height: 240px; }
}

/* ── RESPONSIVE — 600px (large phones) ── */
@media (max-width: 600px) {
  :root {
    --space-md: 1rem;
    --space-lg: 1.4rem;
    --space-xl: 2rem;
    --space-2xl: 3.2rem;
  }

  .container { width: 94%; }

  .hero { padding-top: calc(var(--header-h) + var(--space-md)); }
  .hero h1 { font-size: clamp(1.8rem, 8vw, 2.8rem); line-height: 1.1; }
  .hero-desc { font-size: 0.9rem; max-width: 100%; }
  .hero-scroll { display: none; }

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

  .intro-img { height: 240px; }
  .asym-img { height: 220px; }
  .overlap-img-main { height: 220px; }
  .photo-split-img { height: 220px; }

  .btn { font-size: 0.8rem; padding: 0.6rem 1.2rem; }

  .contact-form-wrap { padding: var(--space-md); }
  .form-group input,
  .form-group textarea { font-size: 0.85rem; padding: 0.6rem 0.85rem; }

  .pillar-card { padding: var(--space-md); }
  .testi-card { padding: var(--space-md); }
  .price-card { padding: var(--space-md); }

  .price-amount { font-size: 2rem; }

  .section-title { font-size: clamp(1.4rem, 5.5vw, 2rem); }
  .section-sub { font-size: 0.875rem; }

  .footer-links { gap: var(--space-xs) var(--space-sm); }
  .footer-copy { font-size: 0.7rem; }

  .legal-wrap { padding-bottom: var(--space-xl); }
  .legal-wrap h2 { font-size: 1.05rem; }
  .legal-wrap p,
  .legal-wrap li { font-size: 0.85rem; }

  .thankyou-wrap,
  .notfound-wrap { padding: var(--space-lg); }
  .notfound-inner,
  .thankyou-inner { width: 100%; }
}

/* ── RESPONSIVE — 480px (small phones) ── */
@media (max-width: 480px) {
  :root {
    --space-xs: 0.3rem;
    --space-sm: 0.6rem;
    --space-md: 0.9rem;
    --space-lg: 1.25rem;
    --space-xl: 1.8rem;
    --space-2xl: 2.8rem;
  }

  .container { width: 95%; }

  .logo { font-size: 1.2rem; }

  .hero h1 { font-size: clamp(1.65rem, 9vw, 2.4rem); }
  .hero-eyebrow { font-size: 0.68rem; }
  .hero-desc { font-size: 0.875rem; line-height: 1.7; }

  .section-title { font-size: clamp(1.3rem, 6vw, 1.9rem); }

  .habit-item { grid-template-columns: 44px 1fr; gap: var(--space-sm); padding: var(--space-sm); }
  .habit-num { font-size: 1.6rem; }

  .pricing-grid { max-width: 100%; }
  .price-card.featured { margin-top: var(--space-md); }

  .habits-cols .pillars-grid { gap: var(--space-sm); }

  .contact-wrap { gap: var(--space-md); }
  .contact-form-wrap { border-radius: var(--radius-md); padding: var(--space-md); }

  .cookie-popup {
    flex-direction: column;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    transform: translateY(120%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    max-width: 100%;
  }
  .cookie-popup.visible { transform: translateY(0); }
  .cookie-btns { width: 100%; }
  .cookie-btns .btn { flex: 1; justify-content: center; }

  .footer-inner { gap: var(--space-sm); }
  .footer-links { flex-direction: column; gap: var(--space-xs); }

  .thankyou-icon { width: 58px; height: 58px; font-size: 1.6rem; }
  .notfound-num { font-size: clamp(4.5rem, 20vw, 8rem); }
  .notfound-inner h2 { font-size: 1.3rem; }

  .map-wrap { height: 200px; }

  .step-item { grid-template-columns: 38px 1fr; gap: var(--space-xs); }
  .step-num { width: 38px; height: 38px; font-size: 0.85rem; }

  .asym-img { height: 190px; }
  .intro-img { height: 200px; }
  .photo-split-img { height: 190px; }
  .overlap-img-main { height: 190px; }

  .page-hero h1 { font-size: clamp(1.5rem, 7.5vw, 2.2rem); }
  .page-hero p { font-size: 0.85rem; }

  .mobile-nav a { font-size: 1.6rem; }
}

/* ── RESPONSIVE — 380px (very small phones) ── */
@media (max-width: 380px) {
  :root {
    font-size: 14px;
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 0.8rem;
    --space-lg: 1.1rem;
    --space-xl: 1.6rem;
    --space-2xl: 2.4rem;
  }

  .container { width: 96%; }

  .logo { font-size: 1.1rem; }

  .hero h1 { font-size: clamp(1.5rem, 9.5vw, 2.1rem); }
  .hero-desc { font-size: 0.83rem; }

  .section-title { font-size: clamp(1.25rem, 7vw, 1.75rem); }

  .btn { font-size: 0.77rem; padding: 0.55rem 1rem; }

  .pillar-card,
  .testi-card,
  .price-card { padding: var(--space-sm) var(--space-md); border-radius: var(--radius-md); }

  .pillar-card h3,
  .step-body h3,
  .habit-item h3 { font-size: 0.95rem; }

  .pillar-card p,
  .step-body p,
  .habit-item p,
  .testi-card p { font-size: 0.82rem; }

  .contact-detail { padding: var(--space-sm); gap: var(--space-sm); }
  .contact-detail-icon { width: 32px; height: 32px; font-size: 0.875rem; }

  .form-group input,
  .form-group textarea { font-size: 0.82rem; }

  .footer-copy { font-size: 0.68rem; }

  .price-amount { font-size: 1.8rem; }
  .price-name { font-size: 1rem; }

  .mobile-nav a { font-size: 1.4rem; }
  .mobile-nav { gap: var(--space-md); }
}

/* ── RESPONSIVE — 320px (minimum supported width) ── */
@media (max-width: 320px) {
  :root {
    font-size: 13px;
    --space-xs: 0.2rem;
    --space-sm: 0.45rem;
    --space-md: 0.7rem;
    --space-lg: 1rem;
    --space-xl: 1.4rem;
    --space-2xl: 2.2rem;
    --header-h: 60px;
  }

  html, body { overflow-x: hidden; max-width: 100vw; }

  .container {
    width: 100%;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    max-width: 100%;
  }

  .site-header { padding: 0.4rem 0; }
  .header-inner { gap: 0.5rem; }
  .logo { font-size: 1rem; letter-spacing: 0; }
  .burger { width: 26px; height: 26px; flex-shrink: 0; }

  .hero {
    padding-top: var(--header-h);
    min-height: 100svh;
    overflow: hidden;
  }
  .hero h1 { font-size: 1.35rem; letter-spacing: -0.01em; line-height: 1.15; word-break: break-word; }
  .hero-eyebrow { font-size: 0.62rem; letter-spacing: 0.06em; }
  .hero-eyebrow::before { width: 16px; }
  .hero-desc { font-size: 0.78rem; max-width: 100%; }
  .hero-cta { gap: var(--space-xs); }
  .hero-cta .btn { width: 100%; justify-content: center; text-align: center; box-sizing: border-box; }

  .section { padding: var(--space-2xl) 0; overflow: hidden; }
  .section-title { font-size: 1.15rem; word-break: break-word; }
  .section-label { font-size: 0.6rem; letter-spacing: 0.08em; }
  .section-sub { font-size: 0.78rem; max-width: 100%; }

  .photo-feature { overflow: hidden; }
  .photo-feature::before { display: none; }

  .photo-split-text { padding: var(--space-md); }

  .intro-visual { overflow: hidden; }
  .intro-badge {
    position: static;
    display: inline-block;
    margin-top: var(--space-sm);
    max-width: 100%;
  }
  .intro-img { height: 170px; }

  .asym-section { overflow: hidden; }
  .asym-visual { overflow: hidden; margin-top: var(--space-sm); }
  .asym-img { height: 160px; }
  .asym-content { padding-top: 0; }
  .floating-card { position: static; margin-top: var(--space-sm); max-width: 100%; }

  .overlap-block { overflow: hidden; }
  .overlap-img-main { height: 160px; width: 100%; margin-left: 0; }
  .overlap-card-float { position: static; transform: none; width: 100%; margin-top: var(--space-sm); }

  .pillars-grid { gap: var(--space-sm); }
  .pillar-card,
  .testi-card,
  .price-card { padding: var(--space-sm) var(--space-md); overflow: hidden; }

  .pillar-icon { width: 34px; height: 34px; font-size: 0.9rem; margin-bottom: var(--space-sm); }
  .pillar-card h3 { font-size: 0.88rem; }
  .pillar-card p,
  .testi-card p { font-size: 0.76rem; }

  .habits-list { gap: var(--space-sm); }
  .habit-item { grid-template-columns: 32px 1fr; padding: var(--space-xs) var(--space-sm); gap: var(--space-xs); }
  .habit-num { font-size: 1.2rem; }
  .habit-item h3 { font-size: 0.85rem; }
  .habit-item p { font-size: 0.76rem; }

  .testimonials-grid { gap: var(--space-sm); }
  .testi-quote { font-size: 1.6rem; }
  .testi-avatar { width: 28px; height: 28px; font-size: 0.65rem; }
  .testi-name { font-size: 0.7rem; }
  .testi-loc { font-size: 0.62rem; }

  .contact-wrap { gap: var(--space-md); }
  .contact-detail { padding: var(--space-xs) var(--space-sm); gap: var(--space-sm); flex-wrap: wrap; }
  .contact-detail-icon { width: 28px; height: 28px; font-size: 0.78rem; flex-shrink: 0; }
  .contact-detail-text { font-size: 0.76rem; min-width: 0; flex: 1; }
  .contact-detail-text p { word-break: break-word; }
  .contact-form-wrap { padding: var(--space-md) var(--space-sm); border-radius: var(--radius-md); }
  .form-title { font-size: 0.95rem; }
  .form-group { margin-bottom: var(--space-sm); }
  .form-group label { font-size: 0.68rem; }
  .form-group input,
  .form-group textarea { font-size: 0.78rem; padding: 0.45rem 0.65rem; }
  .form-consent { gap: var(--space-xs); }
  .form-consent label { font-size: 0.68rem; }

  .steps-wrap { overflow: hidden; }
  .step-item { grid-template-columns: 32px 1fr; gap: var(--space-xs); }
  .step-num { width: 32px; height: 32px; font-size: 0.75rem; border-width: 1.5px; }
  .step-body { padding-top: 0.25rem; padding-bottom: var(--space-md); }
  .step-body h3 { font-size: 0.85rem; }
  .step-body p { font-size: 0.76rem; }

  .pricing-grid { gap: var(--space-sm); }
  .price-card { overflow: hidden; }
  .price-amount { font-size: 1.55rem; }
  .price-name { font-size: 0.92rem; }
  .price-period { font-size: 0.68rem; }
  .price-features li { font-size: 0.74rem; gap: var(--space-xs); }

  .angled-divider { height: 30px; }
  .page-hero { overflow: hidden; }
  .page-hero h1 { font-size: 1.25rem; word-break: break-word; }
  .page-hero p { font-size: 0.78rem; }

  .photo-split-img { height: 170px; }

  .map-wrap { height: 170px; }
  .map-wrap iframe { width: 100%; }

  .site-footer { overflow: hidden; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: var(--space-sm); }
  .footer-logo { font-size: 0.9rem; }
  .footer-links { flex-direction: column; gap: var(--space-xs); }
  .footer-links a { font-size: 0.68rem; }
  .footer-copy {
    font-size: 0.62rem;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .btn { font-size: 0.72rem; padding: 0.45rem 0.85rem; }

  .legal-wrap {
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
  }
  .legal-wrap h1 { font-size: 1.25rem; word-break: break-word; }
  .legal-wrap h2 { font-size: 0.9rem; }
  .legal-wrap p,
  .legal-wrap li { font-size: 0.76rem; line-height: 1.72; word-break: break-word; }
  .legal-wrap ul { padding-left: var(--space-md); }

  .thankyou-wrap,
  .notfound-wrap { padding: var(--space-lg) var(--space-md); overflow: hidden; }
  .thankyou-icon { width: 48px; height: 48px; font-size: 1.3rem; }
  .thankyou-inner h1 { font-size: 1.2rem; }
  .thankyou-inner p { font-size: 0.78rem; }
  .thankyou-inner > div { flex-direction: column; gap: var(--space-sm); }
  .thankyou-inner > div .btn { width: 100%; justify-content: center; }

  .notfound-num { font-size: 3.8rem; }
  .notfound-inner h2 { font-size: 1.05rem; }
  .notfound-inner p { font-size: 0.78rem; }
  .notfound-inner > div { flex-direction: column; gap: var(--space-sm); }
  .notfound-inner > div .btn { width: 100%; justify-content: center; }

  .mobile-nav a { font-size: 1.15rem; }
  .mobile-nav { gap: var(--space-md); padding: var(--space-lg); }

  .cookie-popup {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    transform: translateY(120%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: var(--space-sm) var(--space-md);
    flex-direction: column;
  }
  .cookie-popup.visible { transform: translateY(0); }
  .cookie-popup p { font-size: 0.72rem; min-width: 0; }
  .cookie-btns { width: 100%; }
  .cookie-btns .btn { flex: 1; justify-content: center; }
}

/* ── TOUCH / HOVER STATES ── */
@media (hover: none) {
  .pillar-card:hover { transform: none; box-shadow: none; }
  .price-card:hover { transform: none; }
  .btn-primary:hover { transform: none; }
  .btn-outline:hover { transform: none; }
  .photo-split-img:hover img { transform: none; }
}

/* ── PRINT ── */
@media print {
  .site-header,
  .cookie-popup,
  #hero-canvas,
  .burger { display: none !important; }
  .mobile-nav { display: none !important; visibility: hidden !important; }
  body { background: #fff; color: #000; }
  .container { width: 100%; max-width: 100%; }
  a { color: #000; text-decoration: underline; }
  .legal-wrap { padding-top: 1rem; }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal,
  .reveal-left,
  .reveal-right { opacity: 1; transform: none; }
  .hero-scroll { animation: none; }
  .thankyou-icon { animation: none; }
}
