/* ===== CSS VARIABLES ===== */
:root {
  --cream: #FDF8F2;
  --cream-dark: #F5EDE0;
  --terracotta: #C07B54;
  --terracotta-dark: #A5633E;
  --brown-deep: #3D2B1F;
  --brown-mid: #7A5640;
  --brown-light: #B08060;
  --sage: #7B9E87;
  --sage-light: #D4E8DA;
  --beige-border: #E2D0BB;
  --white: #FFFFFF;
  --text-main: #3D2B1F;
  --text-muted: #7A5640;
  --shadow-soft: 0 4px 24px rgba(61,43,31,0.08);
  --shadow-card: 0 2px 12px rgba(61,43,31,0.1);
  --radius: 12px;
  --radius-sm: 6px;
  --transition: 0.22s ease;
}

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

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

body {
  font-family: Georgia, 'Times New Roman', serif;
  background-color: var(--cream);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.25;
  color: var(--brown-deep);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.75;
  color: var(--text-main);
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 72px 0;
}

.section--alt {
  background-color: var(--cream-dark);
}

.section-label {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-intro {
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 48px;
  font-size: 1.05rem;
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(253,248,242,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--beige-border);
  padding: 0 24px;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--brown-deep);
  letter-spacing: -0.02em;
}

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

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

.nav-links a {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

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

.nav-cta {
  background-color: var(--terracotta);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: background-color var(--transition) !important;
}

.nav-cta:hover {
  background-color: var(--terracotta-dark) !important;
  color: var(--white) !important;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--brown-deep);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background-color: var(--cream);
  border-top: 1px solid var(--beige-border);
  padding: 16px 24px 24px;
}

.nav-mobile a {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1rem;
  padding: 12px 0;
  border-bottom: 1px solid var(--beige-border);
  color: var(--text-muted);
  display: block;
}

.nav-mobile a:last-child {
  border-bottom: none;
  margin-top: 8px;
}

.nav-mobile .nav-cta {
  text-align: center;
  background-color: var(--terracotta);
  color: var(--white) !important;
  border-radius: var(--radius-sm);
  padding: 14px 24px;
  font-weight: 600;
}

/* ===== HERO ===== */
.hero {
  padding: 80px 0 64px;
  background-color: var(--cream);
  overflow: hidden;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 20px;
}

.hero-title {
  margin-bottom: 24px;
  color: var(--brown-deep);
}

.hero-title em {
  font-style: normal;
  color: var(--terracotta);
}

.hero-desc {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
}

.hero-form input {
  width: 100%;
  padding: 15px 18px;
  border: 1.5px solid var(--beige-border);
  border-radius: var(--radius-sm);
  background-color: var(--white);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.97rem;
  color: var(--text-main);
  transition: border-color var(--transition);
  outline: none;
}

.hero-form input:focus {
  border-color: var(--terracotta);
}

.hero-form input::placeholder {
  color: #B8A090;
}

.btn-primary {
  display: inline-block;
  background-color: var(--terracotta);
  color: var(--white);
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background-color var(--transition), transform var(--transition);
  text-align: center;
  line-height: 1;
}

.btn-primary:hover {
  background-color: var(--terracotta-dark);
  transform: translateY(-1px);
}

.hero-note {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.82rem;
  color: #A08070;
  margin-top: 8px;
}

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

.hero-image-wrap img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-badge-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.hero-badge-text {
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.hero-badge-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown-deep);
}

.hero-badge-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== BENEFITS ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--beige-border);
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.benefit-icon {
  width: 52px;
  height: 52px;
  background-color: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--brown-deep);
}

.benefit-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== FOR WHOM ===== */
.forwhom-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.forwhom-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.forwhom-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

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

.forwhom-check {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background-color: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.forwhom-check svg {
  width: 14px;
  height: 14px;
  stroke: var(--sage);
  fill: none;
  stroke-width: 2.5;
}

.forwhom-item-text {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.97rem;
  color: var(--text-main);
  line-height: 1.6;
}

/* ===== PROGRAM ===== */
.program-modules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.module-card {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--beige-border);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: box-shadow var(--transition);
}

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

.module-num {
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--beige-border);
  line-height: 1;
  min-width: 48px;
}

.module-content h4 {
  color: var(--brown-deep);
  margin-bottom: 8px;
}

.module-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== PROCESS ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--beige-border), var(--terracotta), var(--beige-border));
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 64px;
  height: 64px;
  background-color: var(--white);
  border: 2px solid var(--terracotta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--terracotta);
  margin: 0 auto 20px;
  box-shadow: 0 0 0 6px var(--cream);
}

.step-card h4 {
  margin-bottom: 8px;
  color: var(--brown-deep);
  font-size: 0.97rem;
}

.step-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== RESULTS ===== */
.results-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.results-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.results-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.result-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background-color: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--beige-border);
}

.result-icon {
  font-size: 1.5rem;
  line-height: 1;
  margin-top: 2px;
}

.result-item h4 {
  margin-bottom: 4px;
  font-size: 0.97rem;
}

.result-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  cursor: pointer;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--brown-deep);
  gap: 16px;
  user-select: none;
  transition: background-color var(--transition);
}

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

.faq-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background-color: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--terracotta);
  font-weight: 700;
  transition: transform var(--transition), background-color var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background-color: var(--terracotta);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
}

.faq-answer-inner {
  padding: 0 28px 24px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

/* ===== LEAD FORM ===== */
.lead-form-section {
  background-color: var(--brown-deep);
  padding: 88px 0;
}

.lead-form-inner {
  max-width: 620px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.lead-form-inner .section-label {
  color: var(--terracotta);
}

.lead-form-inner h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.lead-form-inner .section-intro {
  color: rgba(255,255,255,0.65);
  margin: 0 auto 40px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lead-form input {
  width: 100%;
  padding: 17px 20px;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  background-color: rgba(255,255,255,0.08);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1rem;
  color: var(--white);
  outline: none;
  transition: border-color var(--transition), background-color var(--transition);
}

.lead-form input:focus {
  border-color: var(--terracotta);
  background-color: rgba(255,255,255,0.12);
}

.lead-form input::placeholder {
  color: rgba(255,255,255,0.4);
}

.lead-form .btn-primary {
  padding: 18px;
  font-size: 1.05rem;
}

.lead-form-note {
  margin-top: 16px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.lead-form-note a {
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
}

/* ===== FORMAT STRIP ===== */
.format-strip {
  background-color: var(--cream-dark);
  padding: 48px 0;
}

.format-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.format-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: var(--white);
  border: 1px solid var(--beige-border);
  border-radius: 40px;
  padding: 14px 24px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.92rem;
  color: var(--text-main);
  font-weight: 500;
}

.format-item-icon {
  font-size: 1.2rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background-color: #2C1F15;
  padding: 56px 0 32px;
  color: rgba(255,255,255,0.7);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.footer-brand .nav-logo {
  color: var(--white);
  margin-bottom: 12px;
  display: block;
}

.footer-brand p {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

.footer-col h5 {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-company {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
}

.footer-company p + p {
  margin-top: 4px;
}

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

.footer-copy {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--brown-deep);
  border-top: 2px solid var(--terracotta);
  padding: 20px 24px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 -4px 32px rgba(0,0,0,0.2);
}

.cookie-banner.visible {
  display: flex;
}

.cookie-text {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

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

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

.cookie-accept {
  background-color: var(--terracotta);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 24px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--transition);
}

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

.cookie-decline {
  background: none;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition);
}

.cookie-decline:hover {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.4);
}

/* ===== SUCCESS PAGE ===== */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
  background-color: var(--cream);
}

.success-inner {
  max-width: 520px;
}

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

.success-inner h1 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--brown-deep);
}

.success-inner p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 40px;
}

.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--terracotta);
  color: var(--terracotta);
  padding: 14px 36px;
  border-radius: var(--radius-sm);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.97rem;
  transition: background-color var(--transition), color var(--transition);
}

.btn-outline:hover {
  background-color: var(--terracotta);
  color: var(--white);
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

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

.legal-date {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.legal-page h2 {
  font-size: 1.25rem;
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal-page p {
  margin-bottom: 16px;
  font-size: 0.95rem;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-main);
}

.legal-page ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-page ul li {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .nav-burger {
    display: flex;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-image-wrap {
    order: -1;
  }
  .hero-image-wrap img {
    height: 300px;
  }
  .hero-badge {
    left: 12px;
    bottom: -16px;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .forwhom-inner,
  .results-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .forwhom-image,
  .results-image {
    order: -1;
  }
  .forwhom-image img,
  .results-image img {
    height: 280px;
  }
  .program-modules {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .process-steps::before {
    display: none;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 540px) {
  .section { padding: 52px 0; }
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.5rem; }
  .hero { padding: 48px 0 40px; }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .hero-badge {
    position: static;
    margin-top: 20px;
    display: inline-flex;
  }
  .format-item {
    font-size: 0.85rem;
    padding: 12px 18px;
  }
  .lead-form-section {
    padding: 56px 0;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== CTA STRIP ===== */
.cta-strip {
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--brown-mid) 100%);
  padding: 60px 0;
  text-align: center;
}

.cta-strip h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-strip p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.cta-strip .btn-primary {
  background-color: var(--white);
  color: var(--terracotta);
  font-size: 1.05rem;
  padding: 18px 48px;
}

.cta-strip .btn-primary:hover {
  background-color: var(--cream);
}
