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

:root {
  --c-ivory: #F5F2EB;
  --c-sage: #B5C1B2;
  --c-beige: #D9C6B4;
  --c-fog: #AAB7C2;
  --c-taupe: #CBBBAE;
  --c-slate: #3A3B38;
  --c-slate-muted: rgba(58, 59, 56, 0.65);
  --c-ivory-soft: rgba(245, 242, 235, 0.92);

  --ff-heading: 'DM Serif Display', serif;
  --ff-body: 'DM Sans', sans-serif;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 2rem;
  --fs-4xl: 2.75rem;
  --fs-5xl: 3.75rem;
  --lh-tight: 1.2;
  --lh-normal: 1.65;
  --lh-loose: 1.85;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;

  --shadow-xs: 0 1px 6px rgba(58, 59, 56, 0.05);
  --shadow-sm: 0 2px 18px rgba(58, 59, 56, 0.07);
  --shadow-md: 0 5px 36px rgba(58, 59, 56, 0.1);
  --shadow-lg: 0 10px 60px rgba(58, 59, 56, 0.13);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 36px;
  --r-full: 9999px;

  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 1.5rem;
  --sp-lg: 2.5rem;
  --sp-xl: 4rem;
  --sp-2xl: 6rem;
  --sp-3xl: 9rem;

  --t-slow: 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  --t-med: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 0.22s cubic-bezier(0.4, 0, 0.2, 1);

  --max-w: 1140px;
  --header-h: 74px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--c-slate);
  background-color: var(--c-ivory);
  -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--ff-body);
}

input,
textarea,
select {
  font-family: var(--ff-body);
}

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

.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 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: var(--c-ivory-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 100;
  border-bottom: 1px solid rgba(58, 59, 56, 0.06);
  transition: var(--t-med);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  color: var(--c-slate);
  letter-spacing: -0.02em;
  transition: var(--t-fast);
}

.brand:hover {
  color: var(--c-sage);
}

nav ul {
  display: flex;
  gap: var(--sp-lg);
  align-items: center;
}

nav a {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--c-slate);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--t-fast);
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--c-sage);
  transition: var(--t-med);
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

nav a:hover,
nav a.active {
  color: var(--c-sage);
}

.nav-toggle {
  display: none;
  font-size: var(--fs-xl);
  color: var(--c-slate);
  padding: var(--sp-xs);
  align-items: center;
  justify-content: center;
}

main {
  padding-top: var(--header-h);
}

section {
  padding: var(--sp-3xl) 0;
}

.section-label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-taupe);
  margin-bottom: var(--sp-sm);
  display: block;
}

h1 {
  font-family: var(--ff-heading);
  font-size: clamp(2.4rem, 5vw, var(--fs-5xl));
  line-height: var(--lh-tight);
  letter-spacing: -0.03em;
  color: var(--c-slate);
}

h2 {
  font-family: var(--ff-heading);
  font-size: clamp(1.7rem, 3.5vw, var(--fs-4xl));
  line-height: var(--lh-tight);
  letter-spacing: -0.025em;
  color: var(--c-slate);
}

h3 {
  font-family: var(--ff-heading);
  font-size: clamp(1.2rem, 2.5vw, var(--fs-2xl));
  line-height: var(--lh-tight);
  letter-spacing: -0.018em;
  color: var(--c-slate);
}

h4 {
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  color: var(--c-slate);
  letter-spacing: 0.01em;
}

p {
  line-height: var(--lh-loose);
  color: var(--c-slate-muted);
}

.hero {
  min-height: calc(100vh - var(--header-h));
  background: linear-gradient(155deg, var(--c-ivory) 58%, rgba(181, 193, 178, 0.14) 100%);
  display: flex;
  align-items: center;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
  width: 100%;
}

.hero-content {
  max-width: 560px;
}

.hero h1 {
  margin-bottom: var(--sp-md);
}

.hero p {
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-lg);
  max-width: 440px;
}

.hero-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-media img {
  border-radius: var(--r-xl);
  width: 480px;
  height: 400px;
  object-fit: cover;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  padding: 0.875rem 2rem;
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  letter-spacing: 0.04em;
  transition: var(--t-slow);
  white-space: nowrap;
}

.btn-primary {
  background: var(--c-slate);
  color: var(--c-ivory);
}

.btn-primary:hover {
  background: rgba(58, 59, 56, 0.83);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--c-slate);
  border: 1.5px solid var(--c-taupe);
}

.btn-secondary:hover {
  border-color: var(--c-slate);
  transform: translateY(-2px);
}

.btn-soft {
  background: var(--c-beige);
  color: var(--c-slate);
}

.btn-soft:hover {
  background: var(--c-taupe);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--c-ivory);
  border: 1px solid rgba(245, 242, 235, 0.3);
}

.btn-ghost:hover {
  background: rgba(245, 242, 235, 0.1);
}

.btn-small {
  padding: 0.55rem 1.25rem;
  font-size: var(--fs-xs);
}

.about-section {
  background: #fff;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--sp-2xl);
  align-items: center;
}

.about-section h2 {
  margin-bottom: var(--sp-md);
}

.about-section p {
  margin-bottom: var(--sp-sm);
}

.stat-row {
  display: flex;
  gap: var(--sp-lg);
  margin-top: var(--sp-lg);
}

.stat-item {
  flex: 1;
}

.stat-num {
  font-family: var(--ff-heading);
  font-size: var(--fs-4xl);
  color: var(--c-slate);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-desc {
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-taupe);
}

.about-visual {
  background: linear-gradient(145deg, rgba(181, 193, 178, 0.15), rgba(170, 183, 194, 0.1));
  border-radius: var(--r-xl);
  padding: var(--sp-xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.about-pill {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--r-full);
  padding: 0.75rem var(--sp-md);
  box-shadow: var(--shadow-xs);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  transition: var(--t-med);
}

.about-pill:hover {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

.about-pill i {
  color: var(--c-sage);
  width: 20px;
  font-size: var(--fs-lg);
}

.courses-section {
  background: var(--c-ivory);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--sp-xl);
}

.section-header h2 {
  margin-bottom: var(--sp-sm);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-md);
}

.card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--t-slow);
  border: 1px solid rgba(58, 59, 56, 0.04);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--c-ivory);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-md);
  font-size: var(--fs-xl);
  color: var(--c-sage);
}

.card h3 {
  margin-bottom: var(--sp-xs);
  font-size: var(--fs-xl);
}

.card p {
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-md);
}

.card-tag {
  display: inline-block;
  padding: 0.3rem 0.875rem;
  background: var(--c-ivory);
  border-radius: var(--r-full);
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  color: var(--c-taupe);
}

.how-section {
  background: linear-gradient(160deg, rgba(181, 193, 178, 0.08), var(--c-ivory));
}

.how-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-2xl);
  align-items: center;
}

.how-section h2 {
  margin-bottom: var(--sp-md);
}

.timeline {
  position: relative;
  padding-left: var(--sp-lg);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--c-beige);
}

.timeline-item {
  position: relative;
  padding-bottom: var(--sp-lg);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--sp-lg) + 6px);
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: var(--r-full);
  background: var(--c-sage);
  border: 2px solid var(--c-ivory);
  z-index: 1;
}

.timeline-item h4 {
  margin-bottom: 4px;
}

.planner-section {
  background: linear-gradient(140deg, rgba(217, 198, 180, 0.12), rgba(170, 183, 194, 0.1));
}

.planner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: start;
}

.planner-section h2 {
  margin-bottom: var(--sp-sm);
}

.planner-section>.container>.planner-inner>div>p {
  margin-bottom: var(--sp-lg);
}

.routine-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.routine-item {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  background: rgba(255, 255, 255, 0.65);
  border-radius: var(--r-md);
  padding: var(--sp-md);
  transition: var(--t-med);
  border: 1px solid rgba(58, 59, 56, 0.04);
}

.routine-item:hover {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

.routine-time {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 0.08em;
  color: var(--c-fog);
  min-width: 54px;
}

.routine-icon {
  color: var(--c-sage);
  font-size: var(--fs-lg);
  flex-shrink: 0;
}

.routine-label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  flex: 1;
}

.planner-note {
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
  border: 1px solid rgba(58, 59, 56, 0.06);
}

.planner-note p {
  font-size: var(--fs-sm);
  font-style: italic;
  line-height: var(--lh-loose);
}

.planner-prompt {
  margin-top: var(--sp-md);
  padding-top: var(--sp-md);
  border-top: 1px solid rgba(58, 59, 56, 0.08);
}

.planner-prompt span {
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-taupe);
}

.planner-prompt p {
  font-size: var(--fs-sm);
  color: var(--c-slate);
  font-weight: var(--fw-medium);
  margin-top: 6px;
}

.reflection-section {
  background: var(--c-slate);
  color: var(--c-ivory);
}

.reflection-section h2 {
  color: var(--c-ivory);
  margin-bottom: var(--sp-sm);
}

.reflection-section>.container>p {
  color: rgba(245, 242, 235, 0.65);
  max-width: 520px;
  margin-bottom: var(--sp-xl);
}

.reflection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-md);
}

.reflection-card {
  background: rgba(245, 242, 235, 0.05);
  border: 1px solid rgba(245, 242, 235, 0.1);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  transition: var(--t-slow);
}

.reflection-card:hover {
  background: rgba(245, 242, 235, 0.09);
  transform: translateY(-3px);
}

.reflection-card i {
  font-size: var(--fs-2xl);
  color: var(--c-beige);
  margin-bottom: var(--sp-sm);
  display: block;
}

.reflection-card h4 {
  color: var(--c-ivory);
  margin-bottom: 6px;
}

.reflection-card p {
  font-size: var(--fs-sm);
  color: rgba(245, 242, 235, 0.55);
}

.quote-section {
  background: var(--c-ivory);
  text-align: center;
}

.quote-inner {
  max-width: 720px;
  margin: 0 auto;
}

blockquote {
  font-family: var(--ff-heading);
  font-style: italic;
  font-size: clamp(1.35rem, 2.5vw, var(--fs-3xl));
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: var(--c-slate);
  margin-bottom: var(--sp-md);
}

cite {
  font-size: var(--fs-sm);
  color: var(--c-taupe);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-section {
  background: linear-gradient(155deg, rgba(217, 198, 180, 0.22), rgba(181, 193, 178, 0.18));
  text-align: center;
}

.cta-section h2 {
  margin-bottom: var(--sp-sm);
}

.cta-section p {
  margin-bottom: var(--sp-lg);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: var(--sp-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.page-hero {
  padding: var(--sp-2xl) 0 var(--sp-xl);
  background: linear-gradient(155deg, var(--c-ivory), rgba(181, 193, 178, 0.1));
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
}

.page-hero h1 {
  margin-bottom: var(--sp-md);
}

.page-hero p {
  font-size: var(--fs-lg);
  max-width: 500px;
}

.page-hero img {
  border-radius: var(--r-xl);
  width: 480px;
  height: 400px;
  object-fit: cover;
}

.intro-section {
  background: #fff;
}

.intro-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--sp-2xl);
  align-items: start;
}

.intro-section h2 {
  margin-bottom: var(--sp-md);
}

.intro-section p {
  margin-bottom: var(--sp-sm);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
  padding: var(--sp-md);
  background: var(--c-ivory);
  border-radius: var(--r-md);
  transition: var(--t-med);
}

.feature-item:hover {
  background: rgba(181, 193, 178, 0.12);
}

.feature-item i {
  color: var(--c-sage);
  font-size: var(--fs-lg);
  margin-top: 2px;
  flex-shrink: 0;
}

.feature-item h4 {
  margin-bottom: 2px;
}

.feature-item p {
  font-size: var(--fs-sm);
}

.modules-section {
  background: var(--c-ivory);
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-md);
}

.module-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--t-slow);
  border: 1px solid rgba(58, 59, 56, 0.04);
}

.module-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.module-header {
  background: linear-gradient(135deg, var(--c-beige), var(--c-taupe));
  padding: var(--sp-md) var(--sp-lg);
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}

.module-num {
  font-family: var(--ff-heading);
  font-size: 2.8rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1;
  flex-shrink: 0;
}

.module-header h3 {
  color: var(--c-slate);
  font-size: var(--fs-xl);
}

.module-body {
  padding: var(--sp-lg);
}

.lesson-list {
  display: flex;
  flex-direction: column;
}

.lesson-list li {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--c-ivory);
  font-size: var(--fs-sm);
  color: var(--c-slate-muted);
}

.lesson-list li:last-child {
  border-bottom: none;
}

.lesson-list li i {
  color: var(--c-sage);
  font-size: var(--fs-xs);
  width: 14px;
  flex-shrink: 0;
}

.structure-section {
  background: #fff;
}

.structure-section h2 {
  margin-bottom: var(--sp-sm);
}

.structure-section>.container>p {
  max-width: 540px;
  margin-bottom: var(--sp-xl);
}

.day-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: var(--sp-xs);
}

.day-block {
  background: var(--c-ivory);
  border-radius: var(--r-md);
  padding: var(--sp-sm) var(--sp-xs);
  text-align: center;
  transition: var(--t-med);
}

.day-block:hover {
  background: var(--c-beige);
  transform: translateY(-2px);
}

.day-name {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-taupe);
  display: block;
  margin-bottom: var(--sp-xs);
}

.day-block i {
  font-size: var(--fs-xl);
  color: var(--c-sage);
  display: block;
  margin-bottom: 6px;
}

.day-block p {
  font-size: 0.7rem;
  color: var(--c-slate-muted);
}

.practices-section {
  background: var(--c-ivory);
}

.practices-tabs {
  display: flex;
  gap: var(--sp-sm);
  flex-wrap: wrap;
  margin-bottom: var(--sp-xl);
}

.practices-tabs .tab-btn {
  cursor: pointer;
  font-family: inherit;
}

.tab-btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--c-slate);
  background: var(--c-ivory);
  border: 1.5px solid var(--c-beige);
  transition: var(--t-fast);
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--c-slate);
  color: var(--c-ivory);
  border-color: var(--c-slate);
}

.practices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-md);
}

.practice-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  box-shadow: var(--shadow-xs);
  transition: var(--t-slow);
  border-left: 3px solid var(--c-sage);
}

.practice-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.practice-card > i {
  font-size: var(--fs-2xl);
  color: var(--c-sage);
  margin-bottom: var(--sp-sm);
  display: block;
}

.practice-card h4 {
  margin-bottom: 6px;
  font-size: var(--fs-base);
}

.practice-card p {
  font-size: var(--fs-sm);
}

.practice-duration {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  margin-top: var(--sp-sm);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 0.04em;
  color: var(--c-slate-muted);
  padding: 0.4rem 0.75rem;
  background: var(--c-ivory);
  border: 1px solid rgba(181, 193, 178, 0.4);
  border-radius: var(--r-full);
  line-height: 1.2;
  max-width: 100%;
}

.practice-duration i {
  font-size: 0.95em;
  color: var(--c-sage);
  flex-shrink: 0;
}

.contact-section {
  background: var(--c-ivory);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-2xl);
  align-items: start;
}

.contact-section h2 {
  margin-bottom: var(--sp-sm);
}

.contact-section>.container>.contact-inner>aside>p {
  margin-bottom: var(--sp-lg);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  margin-top: var(--sp-md);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
}

.contact-detail i {
  color: var(--c-sage);
  font-size: var(--fs-lg);
  margin-top: 2px;
  width: 20px;
  flex-shrink: 0;
}

.contact-detail div h4 {
  margin-bottom: 2px;
  font-size: var(--fs-sm);
}

.contact-detail div p {
  font-size: var(--fs-sm);
}

.form-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: var(--sp-xl);
  box-shadow: var(--shadow-md);
}

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

label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--c-slate);
  margin-bottom: var(--sp-xs);
  letter-spacing: 0.02em;
}

input,
textarea {
  width: 100%;
  padding: 0.875rem var(--sp-md);
  background: var(--c-ivory);
  border: 1.5px solid transparent;
  border-radius: var(--r-md);
  font-size: var(--fs-base);
  color: var(--c-slate);
  transition: var(--t-fast);
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--c-sage);
  background: #fff;
}

input.error,
textarea.error {
  border-color: #b0302a;
  background: #fff8f7;
}

textarea {
  resize: vertical;
  min-height: 130px;
}

.field-error {
  font-size: var(--fs-xs);
  color: #b0302a;
  margin-top: 4px;
  display: none;
}

.field-error.visible {
  display: block;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
}

.checkbox-group input[type="checkbox"] {
  width: 17px;
  height: 17px;
  min-width: 17px;
  cursor: pointer;
  accent-color: var(--c-sage);
  margin-top: 2px;
}

.checkbox-group label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-regular);
  color: var(--c-slate-muted);
  margin-bottom: 0;
}

.checkbox-group a {
  color: var(--c-slate);
  text-decoration: underline;
}

.disclaimer {
  background: rgba(203, 187, 174, 0.15);
  border-left: 3px solid var(--c-taupe);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: var(--sp-md) var(--sp-lg);
  margin: var(--sp-xl) 0;
}

.disclaimer p {
  font-size: var(--fs-sm);
  color: rgba(58, 59, 56, 0.62);
  line-height: var(--lh-normal);
}

.thankyou-section {
  min-height: calc(100vh - var(--header-h) - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thankyou-inner {
  max-width: 520px;
  padding: var(--sp-xl) var(--sp-md);
}

.thankyou-icon {
  font-size: 3.25rem;
  color: var(--c-sage);
  margin-bottom: var(--sp-lg);
}

.thankyou-inner h1 {
  margin-bottom: var(--sp-md);
}

.thankyou-inner p {
  margin-bottom: var(--sp-lg);
}

.policy-page {
  padding: var(--sp-2xl) 0 var(--sp-3xl);
}

.policy-content {
  max-width: 720px;
  margin: 0 auto;
}

.policy-content h1 {
  margin-bottom: var(--sp-sm);
}

.last-updated {
  font-size: var(--fs-sm);
  color: var(--c-taupe);
  margin-bottom: var(--sp-xl);
  display: block;
}

.policy-content h2 {
  font-size: var(--fs-2xl);
  margin: var(--sp-xl) 0 var(--sp-sm);
}

.policy-content h3 {
  font-size: var(--fs-lg);
  margin: var(--sp-lg) 0 var(--sp-xs);
  color: var(--c-slate);
}

.policy-content p {
  margin-bottom: var(--sp-sm);
}

.policy-content ul {
  list-style: disc;
  padding-left: var(--sp-lg);
  margin-bottom: var(--sp-sm);
}

.policy-content ul li {
  line-height: var(--lh-loose);
  color: var(--c-slate-muted);
  margin-bottom: 4px;
}

.policy-content a {
  color: var(--c-slate);
  text-decoration: underline;
}

footer {
  background: var(--c-slate);
  color: var(--c-ivory);
  padding: var(--sp-2xl) 0 var(--sp-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-xl);
  margin-bottom: var(--sp-2xl);
}

.footer-brand-text {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  color: var(--c-ivory);
  margin-bottom: var(--sp-sm);
  display: block;
}

.footer-desc {
  font-size: var(--fs-sm);
  color: rgba(245, 242, 235, 0.5);
  line-height: var(--lh-loose);
  max-width: 270px;
}

footer .footer-nav-col h4 {
  color: var(--c-ivory);
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--sp-md);
}

footer .footer-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
}

footer .footer-nav-col a {
  font-size: var(--fs-sm);
  color: rgba(245, 242, 235, 0.5);
  transition: var(--t-fast);
}

footer .footer-nav-col a:hover {
  color: var(--c-ivory);
}

.footer-bottom {
  border-top: 1px solid rgba(245, 242, 235, 0.09);
  padding-top: var(--sp-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}

.footer-bottom p {
  font-size: var(--fs-xs);
  color: rgba(245, 242, 235, 0.38);
}

.footer-disclaimer {
  font-size: var(--fs-xs);
  color: rgba(245, 242, 235, 0.32);
  line-height: 1.6;
  margin-top: var(--sp-md);
  padding-top: var(--sp-md);
  border-top: 1px solid rgba(245, 242, 235, 0.06);
  padding-bottom: var(--sp-md);
}

.cookie-banner {
  position: fixed;
  bottom: var(--sp-md);
  left: var(--sp-md);
  right: var(--sp-md);
  background: var(--c-slate);
  color: var(--c-ivory);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  box-shadow: var(--shadow-lg);
  z-index: 200;
  display: flex;
  align-items: flex-start;
  gap: var(--sp-lg);
  max-width: 1000px;
  margin: 0 auto;
  transform: translateY(0);
  opacity: 1;
  transition: var(--t-slow);
}

.cookie-banner.hidden {
  transform: translateY(130%);
  opacity: 0;
  pointer-events: none;
}

@media (scripting: none) {
  .cookie-banner.hidden {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}

.cookie-text {
  flex: 1;
}

.cookie-text h4 {
  color: var(--c-ivory);
  margin-bottom: 6px;
}

.cookie-text p {
  font-size: var(--fs-sm);
  color: rgba(245, 242, 235, 0.65);
  line-height: var(--lh-normal);
}

.cookie-text a {
  color: var(--c-beige);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: var(--sp-sm);
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
}

.cookie-btn {
  padding: 0.6rem 1.25rem;
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  transition: var(--t-fast);
  white-space: nowrap;
}

.cookie-btn-accept {
  background: var(--c-ivory);
  color: var(--c-slate);
}

.cookie-btn-accept:hover {
  background: var(--c-beige);
}

.cookie-btn-reject {
  background: transparent;
  color: rgba(245, 242, 235, 0.7);
  border: 1px solid rgba(245, 242, 235, 0.22);
}

.cookie-btn-reject:hover {
  color: var(--c-ivory);
  border-color: rgba(245, 242, 235, 0.5);
}

.cookie-btn-settings {
  background: transparent;
  color: rgba(245, 242, 235, 0.45);
  font-size: var(--fs-xs);
  text-decoration: underline;
  padding: 0.3rem 0;
}

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(58, 59, 56, 0.45);
  z-index: 210;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-md);
  opacity: 0;
  pointer-events: none;
  transition: var(--t-med);
}

.cookie-modal-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal {
  background: var(--c-ivory);
  border-radius: var(--r-xl);
  padding: var(--sp-xl);
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}

.cookie-modal h3 {
  margin-bottom: var(--sp-xs);
}

.cookie-modal>p {
  font-size: var(--fs-sm);
  color: var(--c-slate-muted);
  margin-bottom: var(--sp-lg);
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-md) 0;
  border-bottom: 1px solid rgba(58, 59, 56, 0.08);
}

.toggle-row:last-of-type {
  border-bottom: none;
}

.toggle-info {
  flex: 1;
  padding-right: var(--sp-md);
}

.toggle-info h4 {
  font-size: var(--fs-sm);
  margin-bottom: 3px;
}

.toggle-info p {
  font-size: var(--fs-xs);
  color: var(--c-slate-muted);
}

.toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(58, 59, 56, 0.15);
  border-radius: var(--r-full);
  cursor: pointer;
  transition: var(--t-fast);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: var(--r-full);
  transition: var(--t-fast);
  box-shadow: var(--shadow-xs);
}

.toggle input:checked+.toggle-slider {
  background: var(--c-sage);
}

.toggle input:checked+.toggle-slider::before {
  transform: translateX(20px);
}

.toggle input:disabled+.toggle-slider {
  opacity: 0.55;
  cursor: not-allowed;
}

.modal-actions {
  display: flex;
  gap: var(--sp-sm);
  margin-top: var(--sp-lg);
  justify-content: flex-end;
}

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

  .how-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  
  nav ul {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  nav.open ul {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--c-ivory);
    padding: var(--sp-lg);
    gap: var(--sp-md);
    z-index: 99;
    border-bottom: 1px solid rgba(58, 59, 56, 0.08);
    box-shadow: var(--shadow-md);
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }

  .hero {
    text-align: center;
  }

  .hero p {
    max-width: 100%;
  }

  .hero-media {
    display: none;
  }

  .about-inner {
    grid-template-columns: 1fr;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .planner-inner {
    grid-template-columns: 1fr;
  }

  .intro-inner {
    grid-template-columns: 1fr;
  }

  .page-hero-inner {
    grid-template-columns: 1fr;
  }

  .page-hero-inner img {
    display: none;
  }

  .day-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 640px) {
  :root {
    --sp-3xl: 5.5rem;
    --sp-2xl: 4rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner {
    flex-direction: column;
  }

  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    text-align: center;
  }

  .modal-actions {
    flex-direction: column;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .stat-row {
    gap: var(--sp-md);
  }

  .day-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .form-card {
    padding: var(--sp-md);
  }

  .module-body {
    padding: var(--sp-sm);
  }

  .module-header {
    padding: var(--sp-sm);
  }

  .module-card {
    max-width: 280px;
  }
}