:root {
  --clr-bg: #f5f2ec;
  --clr-bg-secondary: #eae8e2;
  --clr-bg-dark: #2a4535;
  --clr-bg-mid: #3d5e4a;
  --clr-moss: #5a7a50;
  --clr-sky: #cfe3ef;
  --clr-brown: #8b6f47;
  --clr-golden: #c9a84c;
  --clr-text: #1c2b20;
  --clr-text-muted: #5a6e5d;
  --clr-text-light: #8a9c8d;
  --clr-white: #ffffff;
  --clr-border: #d0cec6;
  --clr-error: #a83232;
  --clr-success: #2d6a4f;

  --ff-heading: 'Playfair Display', Georgia, serif;
  --ff-body: 'Lato', system-ui, -apple-system, sans-serif;

  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.625rem;
  --fs-3xl: 2.125rem;
  --fs-4xl: 2.875rem;
  --fs-hero: clamp(2.4rem, 5.5vw, 4.25rem);

  --shadow-sm: 0 1px 4px rgba(28, 43, 32, 0.07);
  --shadow-md: 0 4px 18px rgba(28, 43, 32, 0.10);
  --shadow-lg: 0 8px 40px rgba(28, 43, 32, 0.14);
  --shadow-card: 0 2px 14px rgba(28, 43, 32, 0.08);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 1.5rem;
  --sp-lg: 2rem;
  --sp-xl: 3rem;
  --sp-2xl: 5rem;
  --sp-3xl: 8rem;

  --max-w: 1200px;
  --tr: 0.3s ease;
  --tr-slow: 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ff-body);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--tr);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--ff-body);
}

input, textarea, select {
  font-family: var(--ff-body);
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}

.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;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-sm);
  background: var(--clr-bg-dark);
  color: var(--clr-white);
  padding: var(--sp-xs) var(--sp-sm);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  z-index: 9999;
  transition: top var(--tr);
}

.skip-link:focus {
  top: var(--sp-sm);
}

.section-label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-golden);
  margin-bottom: var(--sp-sm);
}

.section-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-3xl);
  font-weight: 600;
  color: var(--clr-text);
  line-height: 1.25;
  margin-bottom: var(--sp-md);
}

.section-title--light {
  color: var(--clr-white);
}

.section-intro {
  font-size: var(--fs-lg);
  color: var(--clr-text-muted);
  max-width: 640px;
  line-height: 1.8;
}

.section-intro--light {
  color: rgba(255, 255, 255, 0.82);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  font-size: var(--fs-base);
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: background-color var(--tr), color var(--tr), transform var(--tr), box-shadow var(--tr);
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--clr-golden);
  outline-offset: 3px;
}

.btn--primary {
  background-color: var(--clr-bg-dark);
  color: var(--clr-white);
  box-shadow: var(--shadow-md);
}

.btn--primary:hover {
  background-color: var(--clr-bg-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--outline {
  background-color: transparent;
  color: var(--clr-bg-dark);
  border: 2px solid var(--clr-bg-dark);
}

.btn--outline:hover {
  background-color: var(--clr-bg-dark);
  color: var(--clr-white);
  transform: translateY(-2px);
}

.btn--outline-light {
  background-color: transparent;
  color: var(--clr-white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn--outline-light:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: var(--clr-white);
}

.btn--sm {
  padding: 0.6rem 1.4rem;
  font-size: var(--fs-sm);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(245, 242, 236, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--tr), box-shadow var(--tr);
}

.site-header.scrolled {
  border-bottom-color: var(--clr-border);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header__logo {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--clr-text);
  letter-spacing: -0.02em;
  line-height: 1;
  transition: color var(--tr);
}

.header__logo:hover {
  color: var(--clr-bg-dark);
  opacity: 1;
}

.header__nav {
  display: flex;
  align-items: center;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
}

.nav__link {
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--tr);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--clr-golden);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tr);
}

.nav__link:hover,
.nav__link.active {
  color: var(--clr-text);
  opacity: 1;
}

.nav__link:hover::after,
.nav__link.active::after {
  transform: scaleX(1);
}

.header__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  font-size: var(--fs-xl);
  color: var(--clr-text);
  transition: background-color var(--tr), color var(--tr);
}

.header__toggle:hover {
  background-color: var(--clr-bg-secondary);
}

.hero {
  padding-top: calc(72px + var(--sp-3xl));
  padding-bottom: var(--sp-3xl);
  position: relative;
  overflow: hidden;
}

.hero--inner {
  padding-top: calc(72px + var(--sp-2xl));
  padding-bottom: var(--sp-2xl);
  background-color: var(--clr-bg-dark);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl);
  align-items: center;
}

.hero__content {
  max-width: 560px;
}

.hero__eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-golden);
  margin-bottom: var(--sp-md);
}

.hero__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-hero);
  font-weight: 700;
  line-height: 1.15;
  color: var(--clr-text);
  margin-bottom: var(--sp-lg);
}

.hero__title em {
  font-style: italic;
  color: var(--clr-moss);
}

.hero__title--light {
  color: var(--clr-white);
}

.hero__title--light em {
  color: rgba(201, 168, 76, 0.9);
}

.hero__description {
  font-size: var(--fs-lg);
  color: var(--clr-text-muted);
  max-width: 520px;
  line-height: 1.85;
  margin-bottom: var(--sp-xl);
}

.hero__description--light {
  color: rgba(255, 255, 255, 0.78);
}

.hero__actions {
  display: flex;
  gap: var(--sp-sm);
  flex-wrap: wrap;
}

.hero__image-wrap {
  position: relative;
}

.hero__image-wrap figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero__image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform var(--tr-slow);
}

.hero__image-wrap figure:hover img {
  transform: scale(1.03);
}

.hero__badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background-color: var(--clr-golden);
  color: var(--clr-text);
  padding: var(--sp-md) var(--sp-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.hero__badge-text {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: 600;
  display: block;
}

.hero__badge-sub {
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
}

.section {
  padding: var(--sp-3xl) 0;
}

.section--alt {
  background-color: var(--clr-bg-secondary);
}

.section--dark {
  background-color: var(--clr-bg-dark);
  color: var(--clr-white);
}

.section--moss {
  background-color: var(--clr-moss);
  color: var(--clr-white);
}

.section__header {
  text-align: center;
  margin-bottom: var(--sp-2xl);
}

.section__header--left {
  text-align: left;
}

.practices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}

.practice-card {
  background-color: var(--clr-white);
  border-radius: var(--radius-xl);
  padding: var(--sp-xl);
  box-shadow: var(--shadow-card);
  transition: transform var(--tr), box-shadow var(--tr);
  position: relative;
  overflow: hidden;
}

.practice-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-bg-dark), var(--clr-golden));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tr-slow);
}

.practice-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.practice-card:hover::before {
  transform: scaleX(1);
}

.practice-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background-color: var(--clr-bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xl);
  color: var(--clr-bg-dark);
  margin-bottom: var(--sp-md);
  transition: background-color var(--tr), color var(--tr);
}

.practice-card:hover .practice-card__icon {
  background-color: var(--clr-bg-dark);
  color: var(--clr-golden);
}

.practice-card__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: var(--sp-sm);
  line-height: 1.3;
}

.practice-card__text {
  font-size: var(--fs-base);
  color: var(--clr-text-muted);
  line-height: 1.8;
}

.practice-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  margin-top: var(--sp-md);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--clr-bg-dark);
  transition: gap var(--tr), color var(--tr);
}

.practice-card__link:hover {
  gap: var(--sp-sm);
  color: var(--clr-moss);
  opacity: 1;
}

.state-selector {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.state-selector__label {
  font-family: var(--ff-heading);
  font-size: var(--fs-2xl);
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: var(--sp-md);
}

.state-selector__sublabel {
  font-size: var(--fs-base);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--sp-xl);
}

.state-selector__buttons {
  display: flex;
  gap: var(--sp-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--sp-xl);
}

.state-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-xs);
  padding: var(--sp-md) var(--sp-lg);
  border-radius: var(--radius-lg);
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  min-width: 130px;
  transition: background-color var(--tr), border-color var(--tr), color var(--tr), transform var(--tr);
}

.state-btn i {
  font-size: var(--fs-xl);
}

.state-btn:hover {
  background-color: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--clr-white);
  transform: translateY(-2px);
}

.state-btn.active {
  background-color: var(--clr-golden);
  border-color: var(--clr-golden);
  color: var(--clr-text);
}

.state-selector__message {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl) var(--sp-2xl);
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--tr-slow);
}

.state-selector__message p {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl);
  align-items: center;
}

.about__feature-list {
  margin-top: var(--sp-xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.about__feature {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
}

.about__feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-md);
  background-color: var(--clr-bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-base);
  color: var(--clr-bg-dark);
}

.about__feature-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 0.25rem;
}

.about__feature-text {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.75;
}

.about__visual {
  position: relative;
  padding: var(--sp-xl);
  background-color: var(--clr-bg-secondary);
  border-radius: var(--radius-xl);
  text-align: center;
}

.about__stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
}

.about__stat {
  background-color: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg) var(--sp-md);
  box-shadow: var(--shadow-sm);
}

.about__stat-number {
  font-family: var(--ff-heading);
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--clr-bg-dark);
  display: block;
  line-height: 1;
  margin-bottom: var(--sp-xs);
}

.about__stat-label {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.4;
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-lg);
  margin-top: var(--sp-xl);
}

.guide-card {
  display: block;
  background: linear-gradient(135deg, var(--clr-bg-dark) 0%, var(--clr-bg-mid) 100%);
  border-radius: var(--radius-xl);
  padding: var(--sp-2xl);
  color: var(--clr-white);
  position: relative;
  overflow: hidden;
  transition: transform var(--tr), box-shadow var(--tr);
  box-shadow: var(--shadow-md);
}

.guide-card::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.04);
  transition: transform var(--tr-slow);
}

.guide-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  opacity: 1;
}

.guide-card:hover::after {
  transform: scale(1.4);
}

.guide-card__icon {
  font-size: 2rem;
  color: var(--clr-golden);
  margin-bottom: var(--sp-md);
  display: block;
}

.guide-card__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-2xl);
  font-weight: 600;
  margin-bottom: var(--sp-sm);
  line-height: 1.3;
}

.guide-card__text {
  font-size: var(--fs-base);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: var(--sp-lg);
}

.guide-card__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-golden);
  transition: gap var(--tr);
}

.guide-card:hover .guide-card__cta {
  gap: var(--sp-sm);
}

.disclaimer-section {
  background-color: var(--clr-bg-secondary);
  border-left: 4px solid var(--clr-golden);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--sp-xl) var(--sp-2xl);
  margin: var(--sp-2xl) 0;
}

.disclaimer-section__icon {
  font-size: var(--fs-xl);
  color: var(--clr-golden);
  margin-bottom: var(--sp-sm);
}

.disclaimer-section__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: var(--sp-sm);
}

.disclaimer-section__text {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.8;
  max-width: 820px;
}

.cta-section {
  text-align: center;
  padding: var(--sp-3xl) 0;
}

.rhythm-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}

.rhythm-card {
  background-color: var(--clr-white);
  border-radius: var(--radius-xl);
  padding: var(--sp-xl);
  box-shadow: var(--shadow-card);
  transition: transform var(--tr), box-shadow var(--tr);
}

.rhythm-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.rhythm-card__time {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-golden);
  background-color: rgba(201, 168, 76, 0.1);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--sp-md);
}

.rhythm-card__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: var(--sp-sm);
  line-height: 1.3;
}

.rhythm-card__text {
  font-size: var(--fs-base);
  color: var(--clr-text-muted);
  line-height: 1.8;
}

.calm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-lg);
}

.calm-item {
  display: flex;
  gap: var(--sp-md);
  padding: var(--sp-xl);
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background-color var(--tr);
}

.calm-item:hover {
  background-color: rgba(255, 255, 255, 0.13);
}

.calm-item__icon {
  font-size: var(--fs-2xl);
  color: var(--clr-golden);
  min-width: 2rem;
  margin-top: 2px;
}

.calm-item__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: var(--sp-xs);
}

.calm-item__text {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.routine-steps {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
  max-width: 720px;
  margin: 0 auto;
}

.routine-step {
  display: flex;
  gap: var(--sp-lg);
  align-items: flex-start;
}

.routine-step__num {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-full);
  background-color: var(--clr-bg-dark);
  color: var(--clr-white);
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.routine-step__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: var(--sp-xs);
}

.routine-step__text {
  font-size: var(--fs-base);
  color: var(--clr-text-muted);
  line-height: 1.8;
}

.ideas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-lg);
}

.idea-item {
  background-color: var(--clr-white);
  border-radius: var(--radius-xl);
  padding: var(--sp-xl);
  box-shadow: var(--shadow-card);
  display: flex;
  gap: var(--sp-md);
  transition: transform var(--tr), box-shadow var(--tr);
}

.idea-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.idea-item__icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: var(--radius-md);
  background-color: var(--clr-bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-lg);
  color: var(--clr-golden);
}

.idea-item__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: var(--sp-xs);
}

.idea-item__text {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.8;
}

.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--sp-3xl);
  align-items: start;
}

.form-group {
  margin-bottom: var(--sp-lg);
}

.form-group label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-xs);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem var(--sp-md);
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-md);
  background-color: var(--clr-white);
  color: var(--clr-text);
  font-size: var(--fs-base);
  line-height: 1.6;
  transition: border-color var(--tr), box-shadow var(--tr);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--clr-bg-dark);
  box-shadow: 0 0 0 3px rgba(42, 69, 53, 0.1);
}

.form-group input.invalid,
.form-group textarea.invalid {
  border-color: var(--clr-error);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-group--checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
}

.form-group--checkbox input[type="checkbox"] {
  width: 20px;
  min-width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--clr-bg-dark);
  cursor: pointer;
}

.form-group--checkbox label {
  font-size: var(--fs-sm);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--clr-text-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.form-group--checkbox label a {
  color: var(--clr-bg-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-group--checkbox label a:hover {
  color: var(--clr-moss);
  opacity: 1;
}

.form-error {
  display: block;
  font-size: var(--fs-xs);
  color: var(--clr-error);
  margin-top: var(--sp-xs);
  min-height: 1.2em;
}

.contact-info {
  background-color: var(--clr-bg-secondary);
  border-radius: var(--radius-xl);
  padding: var(--sp-xl);
}

.contact-info__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: var(--sp-lg);
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
  margin-bottom: var(--sp-lg);
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-md);
  background-color: var(--clr-bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-base);
  color: var(--clr-golden);
}

.contact-info__label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  display: block;
  margin-bottom: 2px;
}

.contact-info__value {
  font-size: var(--fs-base);
  color: var(--clr-text);
  line-height: 1.5;
}

.site-footer {
  background-color: var(--clr-bg-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--sp-2xl) 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--sp-2xl);
  align-items: start;
  padding-bottom: var(--sp-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: var(--sp-lg);
}

.footer__logo {
  display: inline-block;
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--clr-white);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-sm);
  transition: opacity var(--tr);
}

.footer__logo:hover {
  opacity: 0.8;
}

.footer__tagline {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 380px;
}

.footer__nav-title {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--sp-md);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
}

.footer__links a {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--tr);
}

.footer__links a:hover {
  color: var(--clr-white);
  opacity: 1;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}

.footer__copyright {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.45);
}

.footer__disclaimer {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.35);
  max-width: 480px;
  text-align: right;
  line-height: 1.6;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background-color: var(--clr-text);
  color: var(--clr-white);
  padding: var(--sp-lg) var(--sp-xl);
  box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform var(--tr-slow);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: var(--sp-xl);
  flex-wrap: wrap;
}

.cookie-banner__text-wrap {
  flex: 1;
  min-width: 260px;
}

.cookie-banner__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: 600;
  margin-bottom: var(--sp-xs);
  color: var(--clr-white);
}

.cookie-banner__text {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.cookie-banner__text a {
  color: var(--clr-golden);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  gap: var(--sp-sm);
  align-items: center;
  flex-wrap: wrap;
  padding-top: 4px;
}

.cookie-btn {
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background-color var(--tr), color var(--tr), border-color var(--tr);
  white-space: nowrap;
}

.cookie-btn--accept {
  background-color: var(--clr-golden);
  color: var(--clr-text);
}

.cookie-btn--accept:hover {
  background-color: #d4b55a;
}

.cookie-btn--reject {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.cookie-btn--reject:hover {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--clr-white);
}

.cookie-btn--settings {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 2px;
  padding: 0.6rem 0;
}

.cookie-btn--settings:hover {
  color: var(--clr-white);
}

.cookie-settings-panel {
  max-width: var(--max-w);
  margin: var(--sp-lg) auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: var(--sp-lg);
}

.cookie-category {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-lg);
  padding: var(--sp-md) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category__info {
  flex: 1;
}

.cookie-category__name {
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 2px;
}

.cookie-category__desc {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
  min-width: 120px;
  justify-content: flex-end;
}

.cookie-toggle__label {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

.cookie-toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.cookie-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  transition: background-color var(--tr);
}

.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: var(--clr-white);
  border-radius: var(--radius-full);
  transition: transform var(--tr);
}

.cookie-toggle-switch input:checked + .cookie-toggle-slider {
  background-color: var(--clr-golden);
}

.cookie-toggle-switch input:checked + .cookie-toggle-slider::before {
  transform: translateX(20px);
}

.cookie-toggle-switch input:disabled + .cookie-toggle-slider {
  cursor: not-allowed;
  opacity: 0.6;
}

.cookie-settings-panel__actions {
  margin-top: var(--sp-md);
  text-align: right;
}

.policy-page {
  padding-top: calc(72px + var(--sp-2xl));
  padding-bottom: var(--sp-3xl);
}

.policy-page__header {
  margin-bottom: var(--sp-2xl);
  padding-bottom: var(--sp-xl);
  border-bottom: 1px solid var(--clr-border);
}

.policy-page__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-4xl);
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: var(--sp-sm);
}

.policy-page__meta {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}

.policy-page__body h2 {
  font-family: var(--ff-heading);
  font-size: var(--fs-2xl);
  font-weight: 600;
  color: var(--clr-text);
  margin-top: var(--sp-2xl);
  margin-bottom: var(--sp-md);
}

.policy-page__body h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--clr-text);
  margin-top: var(--sp-xl);
  margin-bottom: var(--sp-sm);
}

.policy-page__body p {
  font-size: var(--fs-base);
  color: var(--clr-text-muted);
  line-height: 1.85;
  margin-bottom: var(--sp-md);
  max-width: 760px;
}

.policy-page__body ul,
.policy-page__body ol {
  list-style: disc;
  padding-left: var(--sp-xl);
  margin-bottom: var(--sp-md);
}

.policy-page__body ol {
  list-style: decimal;
}

.policy-page__body li {
  font-size: var(--fs-base);
  color: var(--clr-text-muted);
  line-height: 1.85;
  margin-bottom: var(--sp-xs);
  max-width: 760px;
}

.policy-page__body a {
  color: var(--clr-bg-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.policy-page__body a:hover {
  color: var(--clr-moss);
  opacity: 1;
}

.thank-you-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-2xl) var(--sp-lg);
}

.thank-you__icon {
  width: 88px;
  height: 88px;
  border-radius: var(--radius-full);
  background-color: var(--clr-bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--clr-moss);
  margin: 0 auto var(--sp-xl);
}

.thank-you__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-4xl);
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: var(--sp-md);
}

.thank-you__text {
  font-size: var(--fs-lg);
  color: var(--clr-text-muted);
  max-width: 480px;
  margin: 0 auto var(--sp-xl);
  line-height: 1.8;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--tr-slow), transform var(--tr-slow);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .header__nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background-color: var(--clr-bg);
    border-bottom: 1px solid var(--clr-border);
    box-shadow: var(--shadow-md);
    padding: var(--sp-lg);
    display: none;
    z-index: 999;
  }
  .header__nav.open {
    display: flex;
  }
  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-sm);
    width: 100%;
  }
  .nav__link {
    font-size: var(--fs-base);
    padding: var(--sp-xs) 0;
  }
  .header__toggle {
    display: flex;
  }
  
  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-2xl);
  }
  .hero__content {
    max-width: 100%;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-2xl);
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-2xl);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--sp-md);
  }
  .practices-grid {
    grid-template-columns: 1fr;
  }
  .rhythm-cards {
    grid-template-columns: 1fr;
  }
  .calm-grid {
    grid-template-columns: 1fr;
  }
  .ideas-grid {
    grid-template-columns: 1fr;
  }
  .guides-grid {
    grid-template-columns: 1fr;
  }
  .state-selector__buttons {
    gap: var(--sp-xs);
  }
  .state-btn {
    min-width: 110px;
    padding: var(--sp-sm) var(--sp-md);
  }
  .footer__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__disclaimer {
    text-align: left;
    max-width: 100%;
  }
  .cookie-banner__inner {
    flex-direction: column;
    gap: var(--sp-md);
  }
  .cookie-banner__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-xs);
  }
  .about__stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section {
    padding: var(--sp-2xl) 0;
  }
  .hero {
    padding-top: calc(72px + var(--sp-2xl));
    padding-bottom: var(--sp-2xl);
  }
  .hero--inner {
    padding-top: calc(72px + var(--sp-xl));
    padding-bottom: var(--sp-xl);
  }
  .policy-page__title {
    font-size: var(--fs-3xl);
  }
  .section-title {
    font-size: var(--fs-2xl);
  }
  .disclaimer-section {
    padding: var(--sp-lg);
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }
  .about__stat-grid {
    grid-template-columns: 1fr;
  }
}
