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

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

:root {
  --bg: hsl(35, 30%, 97%);
  --fg: hsl(20, 15%, 12%);
  --border: hsl(30, 20%, 85%);
  --card: hsl(35, 25%, 96%);
  --card-fg: hsl(20, 15%, 12%);
  --primary: hsl(330, 45%, 38%);
  --primary-fg: hsl(35, 30%, 97%);
  --muted: hsl(30, 20%, 90%);
  --muted-fg: hsl(20, 10%, 40%);
  --accent: hsl(350, 60%, 65%);
  --radius: 0.75rem;
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 9999px;
  padding: 0 2rem;
  height: 3.25rem;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, box-shadow 0.2s, background 0.2s;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-fg);
  box-shadow: 0 4px 20px hsl(330 45% 38% / 0.25);
}

.btn-primary:hover {
  opacity: 0.9;
  box-shadow: 0 6px 24px hsl(330 45% 38% / 0.35);
}

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

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

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: hsl(35, 30%, 97%, 0.92);
  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-brand {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.01em;
}

.hero {
  padding: 5rem 0 6rem;
  background: hsl(30, 20%, 93%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.hero-text h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--fg);
  margin-bottom: 1.25rem;
}

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

.hero-text p {
  font-size: 1.1rem;
  color: var(--muted-fg);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-img-wrap {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 4/5;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: 0 24px 64px hsl(330 45% 38% / 0.12);
}

.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: hsl(330 45% 38% / 0.08);
  mix-blend-mode: multiply;
  border-radius: 1.5rem;
  pointer-events: none;
}

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

section {
  padding: 5rem 0;
}

.section-muted {
  background: hsl(30, 20%, 93%);
}

.section-accent-bg {
  background: hsl(350, 60%, 65%, 0.08);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--fg);
  margin-bottom: 3rem;
  text-align: center;
}

.cards-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
}

.card-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: hsl(330 45% 38% / 0.1);
  color: var(--primary);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.card p {
  color: var(--fg);
  line-height: 1.7;
}

.how-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .how-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.how-img {
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 16px 48px hsl(0 0% 0% / 0.1);
}

.how-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.how-step {
  display: flex;
  gap: 1rem;
}

.how-step-dot {
  flex-shrink: 0;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
  background: var(--primary);
  margin-top: 0.6rem;
}

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

.how-step p {
  color: var(--muted-fg);
  line-height: 1.7;
}

.outcomes-grid {
  display: grid;
  gap: 2.5rem 3rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

@media (min-width: 600px) {
  .outcomes-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.outcome h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.outcome p {
  color: var(--muted-fg);
  line-height: 1.7;
}

.mentor-card {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2.5rem;
}

@media (min-width: 700px) {
  .mentor-card {
    grid-template-columns: 2fr 3fr;
    padding: 3rem;
  }
}

.mentor-img {
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.mentor-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mentor-text h2 {
  font-size: 2rem;
  color: var(--fg);
  margin-bottom: 1rem;
}

.mentor-text p {
  color: var(--muted-fg);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.mentor-text p:last-child {
  margin-bottom: 0;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg);
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  transition: transform 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--muted-fg);
  line-height: 1.75;
}

.form-section {
  background: hsl(30, 20%, 93%);
  border-top: 1px solid var(--border);
}

.form-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 8px 40px hsl(0 0% 0% / 0.06);
}

@media (min-width: 700px) {
  .form-wrap {
    padding: 3rem;
  }
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h2 {
  font-size: 2rem;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.form-header p {
  color: var(--muted-fg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--fg);
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsl(330 45% 38% / 0.12);
}

.form-group input.invalid,
.form-group textarea.invalid {
  border-color: hsl(0, 70%, 55%);
}

.form-group textarea {
  resize: vertical;
  min-height: 7rem;
}

.form-error {
  font-size: 0.8rem;
  color: hsl(0, 70%, 55%);
  min-height: 1rem;
}

.form-submit {
  width: 100%;
  border-radius: 0.75rem;
  height: 3.25rem;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted-fg);
  margin-top: 1rem;
}

.form-note a {
  color: var(--primary);
  text-decoration: underline;
}

footer {
  background: var(--fg);
  color: hsl(35, 30%, 82%);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: grid;
  gap: 2rem;
}

@media (min-width: 700px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;
  }
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--primary-fg);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.9rem;
  color: hsl(35, 20%, 65%);
  line-height: 1.5;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: hsl(35, 20%, 65%);
  margin-bottom: 0.75rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-col ul a {
  font-size: 0.9rem;
  color: hsl(35, 20%, 78%);
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--primary-fg);
}

.footer-legal {
  font-size: 0.8rem;
  color: hsl(35, 10%, 55%);
  line-height: 1.6;
}

.footer-divider {
  border: none;
  border-top: 1px solid hsl(35, 10%, 22%);
  margin: 2rem 0 1.5rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
  align-items: flex-end;
}

.footer-copy {
  font-size: 0.8rem;
  color: hsl(35, 10%, 50%);
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  width: calc(100% - 2rem);
  max-width: 680px;
  background: var(--fg);
  color: hsl(35, 30%, 88%);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 16px 48px hsl(0 0% 0% / 0.25);
  animation: slideUp 0.4s ease;
}

.cookie-banner.hidden {
  display: none;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(1rem); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.cookie-text {
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.5;
  min-width: 200px;
}

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

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn-cookie-accept {
  background: var(--primary);
  color: var(--primary-fg);
  border: none;
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-cookie-accept:hover {
  opacity: 0.85;
}

.btn-cookie-dismiss {
  background: transparent;
  color: hsl(35, 20%, 65%);
  border: 1px solid hsl(35, 10%, 30%);
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s;
}

.btn-cookie-dismiss:hover {
  border-color: hsl(35, 20%, 50%);
}

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

.page-legal .back-link {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--muted-fg);
  margin-bottom: 2rem;
  transition: color 0.2s;
}

.page-legal .back-link:hover {
  color: var(--primary);
}

.prose {
  max-width: 720px;
}

.prose h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.prose .meta {
  font-size: 0.9rem;
  color: var(--muted-fg);
  margin-bottom: 2rem;
}

.prose h2 {
  font-size: 1.3rem;
  color: var(--fg);
  margin-top: 2.25rem;
  margin-bottom: 0.6rem;
  font-family: var(--font-serif);
}

.prose p {
  color: var(--muted-fg);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.prose ul {
  color: var(--muted-fg);
  line-height: 1.8;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.prose ul li {
  margin-bottom: 0.25rem;
}

.prose strong {
  color: var(--fg);
}

.success-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
}

.success-card {
  text-align: center;
  max-width: 500px;
}

.success-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 9999px;
  background: hsl(330 45% 38% / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.success-icon svg {
  color: var(--primary);
}

.success-card h1 {
  font-size: 2.5rem;
  color: var(--fg);
  margin-bottom: 1rem;
}

.success-card p {
  font-size: 1.1rem;
  color: var(--muted-fg);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

@media (max-width: 500px) {
  .btn {
    padding: 0 1.5rem;
  }
  .hero {
    padding: 3.5rem 0 4rem;
  }
  section {
    padding: 3.5rem 0;
  }
  .form-wrap {
    padding: 2rem 1.5rem;
  }
  .mentor-card {
    padding: 2rem 1.5rem;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
