/* ========================
   LANDSCAPIO — Global Styles
   ======================== */

:root {
  --green-deep: #2D4A3E;
  --green-mid: #3E6655;
  --green-light: #5A8C76;
  --amber: #C47832;
  --amber-light: #D98E4A;
  --cream: #F7F3EC;
  --cream-dark: #EDE7DA;
  --cream-border: #DDD5C4;
  --charcoal: #1A1A18;
  --text-body: #3A3A35;
  --text-muted: #756F62;
  --white: #FFFFFF;

  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans: 'Segoe UI', system-ui, -apple-system, sans-serif;

  --radius: 6px;
  --radius-lg: 12px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
  --transition: 0.25s ease;
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ========================
   LAYOUT
   ======================== */

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

.section {
  padding: 80px 0;
}

.section--light {
  background: var(--cream);
}

.section--dark {
  background: var(--green-deep);
  color: var(--white);
}

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

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

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: normal;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.section--dark .section-title {
  color: var(--white);
}

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

.section--dark .section-subtitle {
  color: rgba(255,255,255,0.7);
}

/* ========================
   HEADER / NAV
   ======================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 236, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--cream-border);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

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

.nav-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--green-deep);
  font-weight: normal;
  letter-spacing: 0.03em;
}

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

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

.nav-links a {
  font-size: 14px;
  color: var(--text-body);
  transition: color var(--transition);
}

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

.nav-cta {
  background: var(--amber);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  transition: background var(--transition), transform var(--transition);
}

.nav-cta:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
}

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

.nav-burger span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

/* ========================
   HERO
   ======================== */

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/hero.png');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(29, 49, 38, 0.95) 0%,
    rgba(29, 49, 38, 0.7) 50%,
    rgba(29, 49, 38, 0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  color: var(--white);
  padding: 80px 0;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: normal;
  line-height: 1.12;
  margin-bottom: 24px;
  color: var(--white);
}

.hero-title em {
  font-style: italic;
  color: rgba(255,255,255,0.8);
}

.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

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

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  font-family: var(--font-sans);
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(196, 120, 50, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45);
  padding: 13px 28px;
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.08);
}

.hero-note {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
}

/* ========================
   FOR WHOM
   ======================== */

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.audience-card {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}

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

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

.audience-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.3;
}

.audience-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========================
   PAIN POINTS
   ======================== */

.pains-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.pain-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
}

.pain-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-top: 2px;
}

.pain-item h3 {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 6px;
}

.pain-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ========================
   HOW IT WORKS
   ======================== */

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}

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

.how-step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--cream-border);
}

.how-step:first-child {
  padding-top: 0;
}

.how-step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.how-step-num {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 15px;
  margin-top: 2px;
}

.how-step h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.how-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.how-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

/* ========================
   PROGRAM / MODULES
   ======================== */

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.module-card {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: box-shadow var(--transition);
}

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

.module-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}

.module-card h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: normal;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.3;
}

.module-topics {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.module-topics li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.module-topics li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green-light);
}

/* ========================
   INSTRUCTOR
   ======================== */

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

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

.instructor-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}

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

.instructor-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--amber);
  color: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  max-width: 180px;
  text-align: center;
  line-height: 1.4;
}

.instructor-content .section-label {
  margin-bottom: 8px;
}

.instructor-name {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: normal;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.instructor-bio {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 28px;
}

.instructor-facts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.instructor-fact {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-body);
}

.instructor-fact::before {
  content: '→';
  color: var(--amber);
  flex-shrink: 0;
  font-size: 14px;
  margin-top: 2px;
}

/* ========================
   RESULTS GALLERY
   ======================== */

.results-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.results-header .section-subtitle {
  margin: 0 auto;
}

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

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.55));
  color: var(--white);
  padding: 20px 16px 14px;
  font-size: 13px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

/* ========================
   LEAD FORM
   ======================== */

.form-section {
  background: var(--green-deep);
  color: var(--white);
}

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

.form-info .section-title {
  color: var(--white);
}

.form-info .section-subtitle {
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
}

.form-includes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  list-style: none;
}

.form-includes li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

.lead-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}

.lead-form h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: normal;
  color: var(--charcoal);
  margin-bottom: 24px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--cream-border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(74, 124, 104, 0.12);
  background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-consent {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.form-consent a {
  color: var(--green-mid);
  text-decoration: underline;
}

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

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* ========================
   FAQ
   ======================== */

.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-sans);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  line-height: 1.4;
}

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

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--cream-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--text-muted);
  transition: var(--transition);
  line-height: 1;
}

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

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

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

.faq-answer p {
  padding-bottom: 22px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ========================
   FOOTER
   ======================== */

.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: 48px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand .nav-logo {
  color: var(--white);
  font-size: 20px;
  display: inline-block;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}

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

.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

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

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}

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

.footer-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}

.footer-legal-links a:hover {
  color: rgba(255,255,255,0.8);
}

/* ========================
   COOKIE BANNER
   ======================== */

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 520px;
  background: var(--charcoal);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  gap: 16px;
  align-items: flex-end;
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.cookie-text {
  flex: 1;
}

.cookie-text p {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.8);
}

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

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

.btn-cookie-accept {
  background: var(--amber);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background var(--transition);
}

.btn-cookie-accept:hover {
  background: var(--amber-light);
}

.btn-cookie-decline {
  background: none;
  border: none;
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: color var(--transition);
  padding: 4px;
}

.btn-cookie-decline:hover {
  color: rgba(255,255,255,0.75);
}

/* ========================
   SUCCESS PAGE
   ======================== */

.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  background: var(--cream);
}

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

.success-page h1 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: normal;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.success-page p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ========================
   LEGAL PAGES
   ======================== */

.legal-page {
  padding: 60px 0 80px;
}

.legal-page h1 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: normal;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.legal-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--cream-border);
}

.legal-content h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: normal;
  color: var(--charcoal);
  margin-top: 36px;
  margin-bottom: 14px;
}

.legal-content p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-content ul {
  margin: 12px 0 16px 20px;
}

.legal-content ul li {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 6px;
}

.legal-content strong {
  color: var(--charcoal);
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-mid);
  font-size: 14px;
  margin-bottom: 32px;
  transition: color var(--transition);
}

.legal-back:hover {
  color: var(--green-deep);
}

/* ========================
   TRUST BAR
   ======================== */

.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--cream-border);
  padding: 24px 0;
}

.trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.trust-item-icon {
  font-size: 20px;
}

/* ========================
   RESPONSIVE
   ======================== */

@media (max-width: 900px) {
  .how-grid,
  .instructor-wrap,
  .form-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .how-image {
    order: -1;
  }

  .how-image img {
    height: 300px;
  }

  .instructor-image {
    aspect-ratio: 4/3;
    max-height: 340px;
  }

  .instructor-badge {
    bottom: -12px;
    right: 0;
  }

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

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

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

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 16px 24px;
    flex-direction: column;
    gap: 4px;
    border-bottom: 1px solid var(--cream-border);
    box-shadow: var(--shadow-md);
  }

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

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 10px 0;
    font-size: 15px;
  }

  .nav-cta {
    display: block;
    text-align: center;
    padding: 12px;
    margin-top: 8px;
  }

  .nav-burger {
    display: flex;
  }

  .site-header {
    position: sticky;
  }

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

  .gallery-grid .gallery-item:last-child {
    grid-column: 1 / -1;
  }

  .form-group-row {
    grid-template-columns: 1fr;
  }

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

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

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

  .cookie-banner {
    flex-direction: column;
    bottom: 16px;
    left: 12px;
    right: 12px;
  }

  .cookie-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

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

  .gallery-grid .gallery-item:last-child {
    grid-column: auto;
  }

  .hero-content {
    padding: 60px 0;
  }

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

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

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

/* ========================
   ANIMATIONS
   ======================== */

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* Divider accent */
.accent-line {
  width: 40px;
  height: 3px;
  background: var(--amber);
  border-radius: 2px;
  margin-bottom: 28px;
}
