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

:root {
  --bg: #FAF8F5;
  --text: #2C2420;
  --accent: #B86E4A;
  --accent-light: #F3EBE4;
  --accent-dark: #8F5033;
  --sage: #7A9B7A;
  --white: #FFFFFF;
  --border: #E5D9D0;
  --muted: #7D6E67;
  --shadow: 0 4px 24px rgba(44, 36, 32, 0.08);
  --shadow-lg: 0 12px 48px rgba(44, 36, 32, 0.12);
  --radius: 4px;
  --radius-lg: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.2;
  font-weight: 500;
}

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

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-dark);
}

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

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

/* ─── HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text);
}

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

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav a {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  transition: color 0.2s;
}

.header-nav a:hover {
  color: var(--text);
}

.header-cta {
  font-size: 14px !important;
  padding: 9px 24px !important;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ─── HERO ─── */
.hero {
  padding: 80px 0 64px;
  overflow: hidden;
}

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

.hero-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 52px;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--text);
}

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.hero-badge-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.hero-badge-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* ─── SECTION COMMON ─── */
section {
  padding: 80px 0;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--text);
}

.section-desc {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  margin-bottom: 52px;
}

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

.section-header.center .section-desc {
  margin: 0 auto;
}

/* ─── RESULTS ─── */
.results {
  background: var(--white);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.result-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
  transition: box-shadow 0.2s, transform 0.2s;
}

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

.result-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.result-card-body {
  padding: 18px 20px;
}

.result-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 6px;
}

.result-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* ─── FOR WHOM ─── */
.for-whom {
  background: var(--bg);
}

.for-whom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.for-whom-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}

.for-whom-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 12px;
}

.for-whom-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.for-whom-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.for-whom-item-text strong {
  font-size: 15px;
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
}

.for-whom-item-text span {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* ─── FORMAT ─── */
.format {
  background: var(--accent-light);
}

.format-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.format-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border);
}

.format-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}

.format-card-title {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
}

.format-card-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* ─── PROGRAM ─── */
.program {
  background: var(--white);
}

.program-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.program-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  transition: border-color 0.2s;
}

.program-item:hover {
  border-color: var(--accent);
}

.program-item-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--accent);
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  min-width: 32px;
}

.program-item-title {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 6px;
}

.program-item-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* ─── MATERIALS ─── */
.materials {
  background: var(--bg);
}

.materials-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.materials-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 1/1;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.materials-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.materials-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
}

.materials-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 8px;
}

/* ─── LEAD FORM ─── */
.lead-form-section {
  background: var(--text);
  color: var(--white);
}

.lead-form-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lead-form-copy .section-eyebrow {
  color: var(--accent);
}

.lead-form-copy .section-title {
  color: var(--white);
  font-size: 44px;
}

.lead-form-copy .section-desc {
  color: rgba(255,255,255,0.6);
  margin-top: 16px;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #BEB0A8;
}

.form-group select {
  appearance: none;
  cursor: pointer;
}

.form-submit {
  width: 100%;
  padding: 15px;
  font-size: 15px;
}

.form-policy {
  font-size: 12px;
  color: var(--muted);
  margin-top: 14px;
  line-height: 1.5;
}

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

/* ─── FAQ ─── */
.faq {
  background: var(--bg);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

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

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  gap: 16px;
}

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

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--accent);
  transition: transform 0.25s;
}

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

.faq-answer {
  display: none;
  padding: 0 0 22px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 600px;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.6);
  padding: 56px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.footer-logo span {
  color: var(--accent);
}

.footer-desc {
  font-size: 14px;
  line-height: 1.65;
  max-width: 280px;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 12px;
  line-height: 1.7;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 640px;
  background: var(--text);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  z-index: 9999;
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

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

.cookie-text {
  flex: 1;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
}

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

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-accept {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 9px 22px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.cookie-accept:hover {
  background: var(--accent-dark);
}

.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 9px 22px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.cookie-decline:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

/* ─── SUCCESS PAGE ─── */
.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.success-title {
  font-size: 44px;
  margin-bottom: 16px;
}

.success-text {
  font-size: 17px;
  color: var(--muted);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ─── LEGAL PAGES ─── */
.legal-page {
  padding: 64px 0 80px;
}

.legal-page h1 {
  font-size: 40px;
  margin-bottom: 8px;
}

.legal-page .lead {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 48px;
  line-height: 1.6;
}

.legal-content {
  max-width: 760px;
}

.legal-content h2 {
  font-size: 22px;
  font-weight: 500;
  margin: 36px 0 12px;
}

.legal-content p {
  font-size: 15px;
  color: #4A3E3A;
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.legal-content ul li {
  font-size: 15px;
  color: #4A3E3A;
  line-height: 1.65;
  margin-bottom: 8px;
}

.legal-nav {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.legal-nav a {
  color: var(--accent);
  font-size: 14px;
  text-decoration: underline;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 42px;
  }

  .format-cards {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  section {
    padding: 56px 0;
  }

  .header-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
  }

  .header-nav.open {
    display: flex;
  }

  .header-nav a {
    padding: 12px 24px;
    width: 100%;
    font-size: 15px;
  }

  .header-nav .btn {
    margin: 8px 24px 12px;
    width: calc(100% - 48px);
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .site-header {
    position: relative;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-badge {
    bottom: -12px;
    left: 12px;
  }

  .results-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .for-whom-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .materials-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .lead-form-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lead-form-copy .section-title {
    font-size: 34px;
  }

  .section-title {
    font-size: 32px;
  }

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

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .cookie-banner {
    flex-direction: column;
    gap: 14px;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-accept,
  .cookie-decline {
    flex: 1;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 30px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    text-align: center;
  }

  .form-card {
    padding: 28px 20px;
  }
}
