/* ===========================
   SunThread — Styles
   =========================== */

:root {
  --sand: #f5ede0;
  --sand-light: #fdf8f2;
  --terracotta: #c4714a;
  --terracotta-dark: #a85c37;
  --terracotta-light: #e8a880;
  --sage: #7a9b7c;
  --sage-light: #b5cdb6;
  --cream: #faf6ef;
  --dark: #2c1f0f;
  --mid: #6b4f35;
  --text: #3d2b18;
  --text-muted: #8a6d55;
  --border: #e0cbb8;
  --radius: 12px;
  --radius-sm: 8px;
  --font: 'Playfair Display', 'Georgia', serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', sans-serif;
  --transition: 0.25s ease;
  --shadow: 0 4px 24px rgba(44, 31, 15, 0.10);
  --shadow-hover: 0 8px 32px rgba(44, 31, 15, 0.16);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: var(--terracotta);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--terracotta-dark);
}

h1, h2, h3, h4 {
  font-family: var(--font);
  line-height: 1.25;
  color: var(--dark);
}

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

.btn {
  display: inline-block;
  padding: 16px 36px;
  background: var(--terracotta);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid var(--terracotta);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.02em;
  text-align: center;
}

.btn:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn:active {
  transform: translateY(0);
}

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

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

.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--dark);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
}

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

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font);
  font-size: 1.5rem;
  color: var(--dark);
  letter-spacing: -0.02em;
}

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

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

.nav-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color var(--transition);
}

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

.header-cta {
  padding: 10px 22px;
  font-size: 0.9rem;
}

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

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

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

.hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 80px 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.hero-content {
  max-width: 520px;
}

.hero-season {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sand);
  color: var(--terracotta);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-season::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--terracotta);
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 20px;
  line-height: 1.15;
}

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

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

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

.hero-note {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hero-image {
  position: relative;
}

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

.hero-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
}

.hero-badge-icon {
  width: 36px;
  height: 36px;
  background: var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.hero-badge strong {
  display: block;
  font-weight: 700;
  color: var(--dark);
  font-size: 0.9rem;
}

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

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

.pain {
  background: var(--sand);
  padding: 80px 24px;
}

.pain .container {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: center;
}

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

.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--text);
  background: #fff;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--terracotta-light);
}

.pain-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  line-height: 1.4;
}

.pain-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pain-highlight {
  font-family: var(--font);
  font-size: 1.6rem;
  color: var(--dark);
  line-height: 1.3;
  padding-left: 20px;
  border-left: 3px solid var(--terracotta);
}

.pain-answer {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

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

.for-whom {
  padding: 80px 24px;
}

.for-whom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.whom-card {
  background: var(--sand-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.whom-card .icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.whom-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.whom-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===========================
   WHAT YOU LEARN
   =========================== */

.learn {
  background: var(--dark);
  color: #fff;
  padding: 80px 24px;
}

.learn .section-label {
  color: var(--terracotta-light);
}

.learn .section-title {
  color: #fff;
}

.learn .section-sub {
  color: rgba(255,255,255,0.65);
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.learn-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 22px 20px;
  transition: background var(--transition);
}

.learn-item:hover {
  background: rgba(255,255,255,0.1);
}

.learn-num {
  font-family: var(--font);
  font-size: 1.5rem;
  color: var(--terracotta-light);
  font-weight: bold;
  flex-shrink: 0;
  line-height: 1;
  min-width: 28px;
}

.learn-item h3 {
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 6px;
  font-family: var(--font-body);
  font-weight: 600;
}

.learn-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}

/* ===========================
   FORMAT
   =========================== */

.format {
  padding: 80px 24px;
}

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

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

.format-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.format-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.format-dot {
  width: 10px;
  height: 10px;
  background: var(--terracotta);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

.format-point h3 {
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--dark);
}

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

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

.program {
  background: var(--sand);
  padding: 80px 24px;
}

.program-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.program-item {
  background: #fff;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}

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

.program-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  transition: background var(--transition);
}

.program-header:hover {
  background: var(--sand-light);
}

.program-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.program-num {
  font-family: var(--font);
  font-size: 1.1rem;
  color: var(--terracotta);
  font-weight: bold;
  min-width: 32px;
}

.program-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
}

.program-arrow {
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: transform var(--transition);
}

.program-item.open .program-arrow {
  transform: rotate(90deg);
}

.program-body {
  display: none;
  padding: 0 24px 20px 72px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.program-item.open .program-body {
  display: block;
}

/* ===========================
   AUTHOR
   =========================== */

.author {
  padding: 80px 24px;
}

.author .container {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
}

.author-photo img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow);
  aspect-ratio: 3/4;
  object-fit: cover;
}

.author-name {
  font-size: 1.7rem;
  margin-bottom: 6px;
}

.author-role {
  color: var(--terracotta);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  display: block;
}

.author-text {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.author-text strong {
  color: var(--text);
}

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

.lead-form-section {
  background: var(--terracotta);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.lead-form-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  top: -100px;
  right: -80px;
}

.lead-form-section::after {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  bottom: -60px;
  left: 10%;
}

.lead-form-inner {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.lead-form-inner .section-label {
  color: rgba(255,255,255,0.7);
}

.lead-form-inner .section-title {
  color: #fff;
  margin-bottom: 12px;
}

.lead-form-inner .section-sub {
  color: rgba(255,255,255,0.78);
  margin: 0 auto 40px;
  max-width: 440px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

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

.form input[type="text"],
.form input[type="tel"],
.form input[type="email"] {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 0.95rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}

.form input::placeholder {
  color: rgba(255,255,255,0.55);
}

.form input:focus {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.22);
}

.form-submit {
  padding: 17px 36px;
  background: #fff;
  color: var(--terracotta);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}

.form-submit:hover {
  background: var(--sand-light);
  transform: translateY(-2px);
}

.form-consent {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  text-align: center;
}

.form-consent a {
  color: rgba(255,255,255,0.8);
  text-decoration: underline;
}

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

.faq {
  padding: 80px 24px;
}

.faq-list {
  max-width: 680px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--dark);
  transition: background var(--transition);
}

.faq-question:hover {
  background: var(--sand-light);
}

.faq-toggle {
  font-size: 1.2rem;
  color: var(--terracotta);
  flex-shrink: 0;
  transition: transform var(--transition);
}

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

.faq-answer {
  display: none;
  padding: 4px 22px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}

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

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

.trust {
  background: var(--sand);
  padding: 48px 24px;
  text-align: center;
}

.trust p {
  max-width: 660px;
  margin: 0 auto;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

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

.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 56px 24px 32px;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 12px;
  display: block;
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer-company {
  margin-top: 20px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}

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

.footer-col a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--terracotta-light);
}

.footer-bottom {
  max-width: 1080px;
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 12px;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(44, 31, 15, 0.97);
  color: rgba(255,255,255,0.85);
  padding: 20px 24px;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.1);
}

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

.cookie-text {
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 640px;
}

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

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

.cookie-accept {
  padding: 10px 22px;
  background: var(--terracotta);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background var(--transition);
}

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

.cookie-decline {
  padding: 10px 18px;
  background: transparent;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  cursor: pointer;
  font-family: var(--font-body);
  transition: color var(--transition);
}

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

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

.legal-page {
  max-width: 740px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}

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

.legal-date {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 40px;
  display: block;
}

.legal-page h2 {
  font-size: 1.15rem;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--dark);
  font-family: var(--font-body);
  font-weight: 700;
}

.legal-page p,
.legal-page li {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-page ul {
  padding-left: 24px;
  margin-bottom: 12px;
}

.legal-page .legal-req {
  background: var(--sand);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 24px 0;
}

.legal-page .legal-req p {
  margin: 4px 0;
  color: var(--text);
}

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

.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.success-card {
  text-align: center;
  max-width: 480px;
  background: #fff;
  border-radius: 20px;
  padding: 56px 48px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

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

.success-card h1 {
  font-size: 1.8rem;
  margin-bottom: 14px;
  color: var(--dark);
}

.success-card p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ===========================
   MOBILE NAV OVERLAY
   =========================== */

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

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

.mobile-nav a {
  font-family: var(--font);
  font-size: 1.5rem;
  color: var(--dark);
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
  line-height: 1;
}

/* ===========================
   RESULTS SECTION
   =========================== */

.results-section {
  background: var(--sand-light);
  padding: 80px 24px;
}

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

.results-text {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

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

@media (max-width: 900px) {
  .results-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .results-image {
    max-width: 440px;
  }
}

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

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

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

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 60px 24px;
    gap: 40px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-image {
    max-width: 380px;
    margin: 0 auto;
  }

  .hero-badge {
    left: 0;
  }

  .pain .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .format .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .format-image {
    max-width: 400px;
  }

  .author .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .author-photo {
    max-width: 300px;
  }

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

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

  .nav-links, .header-cta {
    display: none;
  }

  .burger {
    display: flex;
  }
}

@media (max-width: 600px) {
  .for-whom-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .success-card {
    padding: 40px 28px;
  }
}
