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

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

:root {
  --bg:           hsl(40, 33%, 96%);
  --fg:           hsl(28, 15%, 21%);
  --border:       hsl(25, 31%, 84%);
  --card:         hsl(40, 40%, 98%);
  --card-fg:      hsl(28, 15%, 21%);
  --primary:      hsl(15, 48%, 54%);
  --primary-fg:   hsl(40, 33%, 98%);
  --muted:        hsl(27, 34%, 87%);
  --muted-fg:     hsl(28, 10%, 45%);
  --secondary:    hsl(30, 20%, 71%);
  --radius:       0.75rem;
  --serif:        'Cormorant Garamond', Georgia, serif;
  --sans:         'Manrope', system-ui, sans-serif;
  --shadow-sm:    0 1px 3px hsl(28 15% 21% / 0.08);
  --shadow-md:    0 4px 12px hsl(28 15% 21% / 0.10);
  --shadow-lg:    0 8px 24px hsl(28 15% 21% / 0.12);
  --shadow-xl:    0 16px 40px hsl(28 15% 21% / 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, opacity 0.18s ease;
  white-space: nowrap;
  line-height: 1;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--primary);
  color: var(--primary-fg);
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  background: hsl(15, 48%, 48%);
}

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

.btn--outline:hover {
  background: var(--muted);
}

.btn--wide {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1rem;
}


nav.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: hsl(40 33% 96% / 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(28 15% 21% / 0.75);
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-cta {
  font-size: 0.875rem;
  font-weight: 500;
  background: var(--primary);
  color: var(--primary-fg);
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-sm);
  transition: background 0.15s ease, transform 0.15s ease;
}

.nav-cta:hover {
  background: hsl(15, 48%, 48%);
  transform: translateY(-1px);
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: var(--fg);
}

.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-mobile-toggle.open span:nth-child(2) { opacity: 0; }
.nav-mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 0.5rem 0;
}

.nav-mobile-menu.open {
  display: flex;
}

.nav-mobile-menu a {
  padding: 0.875rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--fg);
  border-bottom: 1px solid hsl(25 31% 84% / 0.5);
  transition: background 0.15s ease, color 0.15s ease;
}

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

.nav-mobile-menu a:hover {
  background: var(--muted);
  color: var(--primary);
}


.hero {
  padding: 5rem 0 6rem;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3.5rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: hsl(30 20% 71% / 0.3);
  color: var(--fg);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2.75rem, 5vw, 4.5rem);
  color: var(--fg);
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--muted-fg);
  line-height: 1.7;
  max-width: 30rem;
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-image-wrap {
  position: relative;
}

.hero-image-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  background: hsl(15 48% 54% / 0.12);
  border-radius: 50%;
  filter: blur(60px);
  top: 50%;
  left: 10%;
  transform: translateY(-30%);
  pointer-events: none;
}

.hero-image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
}


.section {
  padding: 5.5rem 0;
}

.section--card {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section--muted {
  background: hsl(27 34% 87% / 0.2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-heading {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--fg);
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--muted-fg);
  font-size: 1.0625rem;
  line-height: 1.7;
}

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


.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.two-col--reverse {
  direction: rtl;
}

.two-col--reverse > * {
  direction: ltr;
}

.feature-img {
  width: 100%;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.feature-img--square { aspect-ratio: 1; }
.feature-img--4-3   { aspect-ratio: 4/3; }

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted-fg);
  line-height: 1.6;
}

.check-icon {
  flex-shrink: 0;
  width: 1.375rem;
  height: 1.375rem;
  background: hsl(30 20% 71% / 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.15rem;
}

.check-icon svg {
  width: 0.6rem;
  height: 0.6rem;
  stroke: var(--fg);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}


.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem;
  transition: box-shadow 0.2s ease;
}

.card:hover {
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 3rem;
  height: 3rem;
  background: hsl(15 48% 54% / 0.1);
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--primary);
}

.card-icon svg {
  width: 1.375rem;
  height: 1.375rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-title {
  font-family: var(--sans);
  font-size: 1.0625rem;
  font-weight: 500;
  margin-bottom: 0.625rem;
  color: var(--fg);
}

.card-text {
  font-size: 0.9375rem;
  color: var(--muted-fg);
  line-height: 1.65;
}


.steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  padding-left: 1.25rem;
}

.steps::before {
  content: '';
  position: absolute;
  left: 1.15rem;
  top: 1.25rem;
  bottom: 1.25rem;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
}

.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary);
  color: var(--primary-fg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 600;
  border: 3px solid var(--card);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
}

.step-body {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 0.875rem;
  padding: 1.125rem 1.375rem;
  flex: 1;
  box-shadow: var(--shadow-sm);
}

.step-title {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1rem;
  color: var(--fg);
  margin-bottom: 0.25rem;
}

.step-text {
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.55;
}


.accordion {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.375rem 1.75rem;
  text-align: left;
  font-family: var(--sans);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--fg);
  transition: color 0.15s ease;
}

.accordion-trigger:hover {
  color: var(--primary);
}

.accordion-trigger svg {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s ease;
}

.accordion-trigger.open svg {
  transform: rotate(180deg);
}

.accordion-trigger.open {
  color: var(--primary);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content.open {
  max-height: 600px;
}

.accordion-content-inner {
  padding: 0 1.75rem 1.375rem;
  font-size: 0.9375rem;
  color: var(--muted-fg);
  line-height: 1.7;
}


.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-item .accordion-trigger {
  padding: 1.25rem 1.5rem;
}

.faq-item .accordion-content-inner {
  padding: 0 1.5rem 1.25rem;
}


.enroll-section {
  position: relative;
  overflow: hidden;
}

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

.enroll-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
}

.enroll-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--bg) 0%, hsl(40 33% 96% / 0.88) 50%, var(--bg) 100%);
}

.enroll-card {
  position: relative;
  z-index: 1;
  max-width: 34rem;
  margin: 0 auto;
  background: hsl(40 40% 98% / 0.96);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 1.75rem;
  padding: 3rem;
  box-shadow: var(--shadow-xl);
}

.enroll-card h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.enroll-card p {
  color: var(--muted-fg);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  height: 3rem;
  padding: 0 1rem;
  font-family: var(--sans);
  font-size: 0.9375rem;
  color: var(--fg);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-input::placeholder {
  color: var(--muted-fg);
  opacity: 0.7;
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsl(15 48% 54% / 0.12);
}

.form-input.error {
  border-color: hsl(0, 50%, 50%);
}

.form-error {
  font-size: 0.8125rem;
  color: hsl(0, 50%, 45%);
  margin-top: 0.375rem;
  display: none;
}

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

.form-consent {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-fg);
  margin-top: 1rem;
  line-height: 1.5;
}

.form-consent a {
  text-decoration: underline;
  transition: color 0.15s ease;
}

.form-consent a:hover {
  color: var(--primary);
}


footer {
  background: hsl(27 34% 87% / 0.3);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
  margin-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--fg);
  display: block;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.6;
}

.footer-col-title {
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 0.875rem;
}

.footer-info p {
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--muted-fg);
  transition: color 0.15s ease;
}

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

.footer-bottom {
  border-top: 1px solid hsl(25 31% 84% / 0.5);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-fg);
}


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 52rem;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.875rem;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: var(--shadow-lg);
}

.cookie-text {
  font-size: 0.875rem;
  color: var(--card-fg);
  line-height: 1.55;
}

.cookie-text a {
  text-decoration: underline;
  transition: color 0.15s ease;
}

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

.cookie-accept {
  flex-shrink: 0;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  background: transparent;
  color: var(--fg);
  border: 1px solid hsl(15 48% 54% / 0.3);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.cookie-accept:hover {
  background: hsl(15 48% 54% / 0.1);
  color: var(--primary);
}


.legal-page {
  padding: 4rem 0 6rem;
}

.legal-page h1 {
  font-size: clamp(1.875rem, 3.5vw, 2.625rem);
  margin-bottom: 2.5rem;
  color: var(--fg);
}

.legal-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  color: var(--muted-fg);
  font-size: 0.9375rem;
  line-height: 1.75;
}

.legal-body p strong {
  color: var(--fg);
  font-weight: 600;
}

.legal-body ul {
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}


.success-page {
  padding: 5rem 0 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.success-inner {
  text-align: center;
  max-width: 30rem;
  padding: 0 1.5rem;
}

.success-icon {
  width: 5rem;
  height: 5rem;
  background: hsl(15 48% 54% / 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--primary);
}

.success-icon svg {
  width: 2.25rem;
  height: 2.25rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.success-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}

.success-text {
  font-size: 1.0625rem;
  color: var(--muted-fg);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}


@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-toggle { display: block; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-image-wrap { order: -1; }
  .hero-image-wrap img { aspect-ratio: 3/2; }
  .hero { padding: 3rem 0 4rem; }

  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col--reverse { direction: ltr; }

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

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

@media (max-width: 640px) {
  .enroll-card { padding: 2rem 1.5rem; }
  .cookie-inner { flex-direction: column; text-align: center; }
  .cookie-accept { width: 100%; }
  .section { padding: 3.5rem 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
