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

:root {
  --cream: #FAF6F0;
  --cream-dark: #F2EBE0;
  --terracotta: #C4613A;
  --terracotta-dark: #A34E2E;
  --brown: #3D2B1F;
  --brown-mid: #6B4C3B;
  --sage: #7A8C6A;
  --sage-light: #EEF2EB;
  --text: #2E1F15;
  --text-muted: #7A6A61;
  --white: #FFFFFF;
  --border: #E2D8CF;
  --shadow: rgba(61, 43, 31, 0.10);

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --radius: 8px;
  --radius-lg: 16px;
  --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-body);
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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); }

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--brown);
  line-height: 1.2;
  font-weight: 500;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); }
h4 { font-size: 1.15rem; }

p { color: var(--text-muted); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}

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

.section {
  padding: 5rem 0;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}

.btn--primary {
  background-color: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}
.btn--primary:hover {
  background-color: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 97, 58, 0.35);
}

.btn--outline {
  background-color: transparent;
  color: var(--terracotta);
  border-color: var(--terracotta);
}
.btn--outline:hover {
  background-color: var(--terracotta);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--large {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(250, 246, 240, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: 0 2px 20px var(--shadow);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: 0.02em;
}
.logo span { color: var(--terracotta); }
.logo:hover { color: var(--brown); }

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-size: 0.9rem;
  color: var(--brown-mid);
  font-weight: 500;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--terracotta);
  transition: width var(--transition);
}
.nav__link:hover { color: var(--terracotta); }
.nav__link:hover::after { width: 100%; }

.header__cta { display: flex; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--brown);
  transition: all var(--transition);
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 1rem 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav__link {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--brown-mid);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-nav__link:last-child { border-bottom: none; }
.mobile-nav__link:hover { background-color: var(--cream-dark); color: var(--terracotta); }

.hero {
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero__content {
  max-width: 520px;
}

.hero__title {
  margin-bottom: 1.25rem;
  font-style: italic;
}

.hero__title em {
  color: var(--terracotta);
  font-style: inherit;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero__trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero__trust-icon {
  width: 20px;
  height: 20px;
  background-color: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero__trust-icon::after {
  content: '✓';
  color: white;
  font-size: 11px;
  font-weight: bold;
}

.hero__image {
  position: relative;
}

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

.hero__badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  box-shadow: 0 8px 30px var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero__badge-icon {
  font-size: 1.75rem;
  line-height: 1;
}

.hero__badge-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--brown);
}

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

.forwhom__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.forwhom__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow var(--transition), transform var(--transition);
}

.forwhom__card:hover {
  box-shadow: 0 8px 30px var(--shadow);
  transform: translateY(-4px);
}

.forwhom__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.forwhom__card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.forwhom__card p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.program__intro {
  max-width: 600px;
  margin-bottom: 3rem;
}

.program__modules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.module {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  transition: box-shadow var(--transition);
}

.module:hover {
  box-shadow: 0 6px 24px var(--shadow);
}

.module__number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--terracotta);
  opacity: 0.4;
  line-height: 1;
  min-width: 2.5rem;
  flex-shrink: 0;
}

.module__content h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--brown);
  margin-bottom: 0.5rem;
}

.module__content p {
  font-size: 0.875rem;
  line-height: 1.6;
}

.module__topics {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.module__topic {
  font-size: 0.8rem;
  color: var(--sage);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.module__topic::before {
  content: '—';
  color: var(--terracotta);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

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

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

.gallery__item:hover img {
  transform: scale(1.06);
}

.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(61, 43, 31, 0.7));
  color: white;
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery__item:hover .gallery__caption {
  opacity: 1;
}

.process__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.process__steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step__num {
  width: 42px;
  height: 42px;
  background-color: var(--terracotta);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  flex-shrink: 0;
}

.step__body h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 0.25rem;
}

.step__body p {
  font-size: 0.875rem;
}

.process__image {
  position: relative;
}

.process__image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 50px var(--shadow);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.process__image::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 2px dashed var(--terracotta);
  border-radius: calc(var(--radius-lg) + 12px);
  opacity: 0.3;
}

.instructor__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: center;
}

.instructor__image-wrap {
  position: relative;
}

.instructor__image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 50px var(--shadow);
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.instructor__placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--border) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  box-shadow: 0 16px 50px var(--shadow);
}

.instructor__placeholder-icon {
  font-size: 4rem;
  opacity: 0.5;
}

.instructor__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.instructor__placeholder-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--brown-mid);
}

.instructor__accent {
  position: absolute;
  top: -1rem;
  right: -1rem;
  background: var(--terracotta);
  color: white;
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 600;
}

.instructor__name {
  font-style: italic;
  margin-bottom: 0.75rem;
}

.instructor__role {
  color: var(--terracotta);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
}

.instructor__bio {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.instructor__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.instructor__fact {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.instructor__fact-icon { font-size: 1.2rem; }
.instructor__fact-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown-mid);
}

.faq__list {
  max-width: 720px;
  margin: 3rem auto 0;
}

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

.faq__question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown);
  transition: color var(--transition);
}

.faq__question:hover { color: var(--terracotta); }

.faq__icon {
  width: 28px;
  height: 28px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  transition: all var(--transition);
  color: var(--terracotta);
}

.faq__item.open .faq__icon {
  background: var(--terracotta);
  color: white;
  transform: rotate(45deg);
}

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

.faq__answer-inner {
  padding: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.faq__item.open .faq__answer {
  max-height: 500px;
}

.leadform {
  background: linear-gradient(135deg, var(--brown) 0%, #5C3D2E 100%);
  color: white;
  text-align: center;
}

.leadform h2 {
  color: white;
  margin-bottom: 0.75rem;
}

.leadform .section-label {
  color: var(--terracotta);
  opacity: 0.9;
}

.leadform__subtitle {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

.leadform__form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.form-input {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}

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

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

.form-input.error {
  border-color: #e07070;
}

.form-error {
  font-size: 0.8rem;
  color: #e07070;
  display: none;
}

.form-group.has-error .form-error {
  display: block;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-consent span {
  line-height: 1.4;
}

.form-consent a {
  display: inline;
}

.leadform__note {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer {
  background-color: #2A1A11;
  color: rgba(255, 255, 255, 0.65);
  padding: 3.5rem 0 2rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: white;
  margin-bottom: 0.75rem;
  display: block;
}
.footer__logo span { color: var(--terracotta); }

.footer__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 1.5rem;
}

.footer__company {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.8;
}

.footer__col-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__link {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}
.footer__link:hover { color: var(--terracotta); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer__legal-links {
  display: flex;
  gap: 1.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 560px;
  background: var(--brown);
  color: white;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  z-index: 999;
  animation: slideUp 0.4s ease;
}

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

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-banner__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.cookie-banner__text {
  flex: 1;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.cookie-banner__text a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-direction: column;
}

.cookie-btn {
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  font-family: var(--font-body);
  transition: all var(--transition);
  white-space: nowrap;
}

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

.cookie-btn--decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.25);
}
.cookie-btn--decline:hover { color: white; border-color: rgba(255, 255, 255, 0.5); }

.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.success-page__icon {
  width: 80px;
  height: 80px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 2rem;
  box-shadow: 0 8px 30px rgba(122, 140, 106, 0.4);
}

.success-page h1 {
  margin-bottom: 1rem;
}

.success-page p {
  max-width: 460px;
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.legal-page h1 {
  margin-bottom: 0.5rem;
}

.legal-page__meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.legal-page h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.legal-page h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-page p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.75;
}

.legal-page ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-page li {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  line-height: 1.65;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
  transition: color var(--transition);
}
.legal-back:hover { color: var(--terracotta); }

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

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

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero__content { max-width: 100%; }
  .hero__badge { left: 1rem; }

  .forwhom__grid { grid-template-columns: 1fr 1fr; }
  .program__modules { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .process__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .instructor__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; }

  .nav { display: none; }
  .header__cta { display: none; }
  .burger { display: flex; }
}

@media (max-width: 600px) {
  .section { padding: 3.5rem 0; }

  .forwhom__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero__trust { flex-direction: column; gap: 0.75rem; }
  .hero__badge { left: 0.5rem; bottom: -1rem; }

  .cookie-banner {
    flex-direction: column;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
  .cookie-banner__actions { flex-direction: row; }
}
