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

:root {
  --terra: #C4614A;
  --terra-dark: #a84e3a;
  --terra-light: #e8836e;
  --cream: #FDFAF6;
  --sand: #F5E6D0;
  --sand-dark: #e8d4b4;
  --brown: #2C1810;
  --brown-mid: #5C3A28;
  --brown-light: #8B6347;
  --sage: #7A9A7E;
  --sage-light: #a8c4ac;
  --white: #ffffff;

  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Helvetica Neue', 'Arial', sans-serif;

  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 20px rgba(44, 24, 16, 0.10);
  --shadow-lg: 0 8px 40px rgba(44, 24, 16, 0.15);

  --max-width: 1140px;
  --section-pad: 90px 20px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--brown);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--terra);
  text-decoration: none;
  transition: color 0.2s;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

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

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 12px;
}

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

.section-lead {
  font-size: 1.1rem;
  color: var(--brown-mid);
  max-width: 620px;
  margin-bottom: 48px;
}

.btn {
  display: inline-block;
  padding: 15px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s;
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--terra-dark);
  border-color: var(--terra-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--terra);
  border-color: var(--terra);
}

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

.btn-white {
  background: var(--white);
  color: var(--terra);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--sand);
  border-color: var(--sand);
  color: var(--terra-dark);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 20px;
  transition: all 0.3s;
  background: transparent;
}

.nav.scrolled {
  background: var(--cream);
  box-shadow: 0 2px 20px rgba(44, 24, 16, 0.08);
  padding: 12px 20px;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--brown);
  font-style: italic;
}

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

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

.nav-links a {
  font-size: 0.95rem;
  color: var(--brown-mid);
  font-weight: 500;
}

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

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

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

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 20px 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #f5e8d8 0%, #fdfaf6 60%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196, 97, 74, 0.10);
  color: var(--terra);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-tag::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terra);
}

.hero h1 {
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  color: var(--terra);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--brown-mid);
  margin-bottom: 36px;
  max-width: 500px;
}

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

.hero-note {
  font-size: 0.85rem;
  color: var(--brown-light);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.hero-trust-item {
  display: flex;
  flex-direction: column;
}

.hero-trust-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--terra);
  line-height: 1;
}

.hero-trust-label {
  font-size: 0.82rem;
  color: var(--brown-light);
  max-width: 80px;
  line-height: 1.3;
}

.hero-visual {
  position: relative;
}

.hero-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  max-width: 220px;
}

.hero-badge-icon {
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.hero-badge-text {
  font-size: 0.88rem;
  color: var(--brown-mid);
  line-height: 1.4;
}

.hero-badge-text strong {
  display: block;
  color: var(--brown);
}

.pain {
  padding: var(--section-pad);
  background: var(--white);
}

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

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

.pain-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.pain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1rem;
  color: var(--brown-mid);
}

.pain-icon {
  width: 40px;
  height: 40px;
  background: rgba(196, 97, 74, 0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.pain-answer {
  background: linear-gradient(135deg, var(--terra) 0%, #d4714e 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}

.pain-answer p {
  font-size: 1.05rem;
  line-height: 1.6;
}

.pain-answer strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.learn {
  padding: var(--section-pad);
  background: var(--cream);
}

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

.learn-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--sand-dark);
  transition: box-shadow 0.25s, transform 0.25s;
}

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

.learn-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--sand-dark);
  font-weight: bold;
  line-height: 1;
  margin-bottom: 12px;
}

.learn-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.learn-card p {
  font-size: 0.93rem;
  color: var(--brown-light);
  line-height: 1.6;
}

.format {
  padding: var(--section-pad);
  background: var(--sand);
}

.format-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.format-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: var(--sand-dark);
}

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

.format-step-num {
  width: 56px;
  height: 56px;
  background: var(--terra);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: bold;
  margin: 0 auto 20px;
}

.format-step h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.format-step p {
  font-size: 0.88rem;
  color: var(--brown-light);
  line-height: 1.5;
}

.gallery {
  padding: var(--section-pad);
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

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

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

.gallery-item--main {
  grid-row: 1 / 3;
  height: 420px;
}

.gallery-item--sm {
  height: 196px;
}

.materials {
  padding: var(--section-pad);
  background: var(--cream);
}

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

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

.materials-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

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

.materials-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--sand-dark);
}

.mat-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.mat-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--brown);
  margin-bottom: 2px;
}

.mat-text span {
  font-size: 0.85rem;
  color: var(--brown-light);
}

.materials-note {
  margin-top: 24px;
  padding: 20px 24px;
  background: rgba(122, 154, 126, 0.12);
  border-left: 3px solid var(--sage);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.92rem;
  color: var(--brown-mid);
  line-height: 1.6;
}

.faq {
  padding: var(--section-pad);
  background: var(--sand);
}

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

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

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}

.faq-q:hover {
  background: rgba(245, 230, 208, 0.4);
}

.faq-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--sand);
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 0.9rem;
  transition: transform 0.3s, background 0.2s;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  background: var(--terra);
  color: var(--white);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-a-inner {
  padding: 0 24px 22px;
  font-size: 0.95rem;
  color: var(--brown-mid);
  line-height: 1.7;
}

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

.lead-form {
  padding: var(--section-pad);
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-mid) 100%);
  position: relative;
  overflow: hidden;
}

.lead-form::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: rgba(196, 97, 74, 0.12);
  border-radius: 50%;
}

.lead-form::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: rgba(196, 97, 74, 0.08);
  border-radius: 50%;
}

.lead-form-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lead-form-content {}

.lead-form-content .section-tag {
  color: var(--terra-light);
}

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

.lead-form-content .section-lead {
  color: rgba(255,255,255,0.75);
}

.lead-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lead-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}

.lead-check {
  width: 22px;
  height: 22px;
  background: var(--terra);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
  color: var(--white);
}

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

.form-box h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.form-box p {
  font-size: 0.9rem;
  color: var(--brown-light);
  margin-bottom: 28px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown-mid);
  margin-bottom: 7px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--sand-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--brown);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(196, 97, 74, 0.10);
}

.form-group input::placeholder {
  color: var(--brown-light);
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
  margin-top: 8px;
}

.form-consent {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--brown-light);
  line-height: 1.5;
  text-align: center;
}

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

.footer {
  background: var(--brown);
  color: rgba(255,255,255,0.65);
  padding: 60px 20px 40px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  font-style: italic;
  margin-bottom: 16px;
  display: block;
}

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

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-company {
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.4);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  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: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

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

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--brown);
  color: rgba(255,255,255,0.85);
  padding: 20px 24px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

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

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

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

.cookie-accept {
  padding: 10px 24px;
  background: var(--terra);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.cookie-accept:hover {
  background: var(--terra-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);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}

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

.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 100%);
}

.success-box {
  max-width: 560px;
}

.success-icon {
  width: 88px;
  height: 88px;
  background: linear-gradient(135deg, var(--terra) 0%, var(--terra-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 28px;
}

.success-box h1 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.success-box p {
  font-size: 1.05rem;
  color: var(--brown-mid);
  margin-bottom: 32px;
  line-height: 1.7;
}

.legal-page {
  padding: 120px 20px 80px;
}

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

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

.legal-updated {
  font-size: 0.85rem;
  color: var(--brown-light);
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 1.2rem;
  margin: 36px 0 12px;
}

.legal-content p,
.legal-content li {
  font-size: 0.95rem;
  color: var(--brown-mid);
  line-height: 1.8;
  margin-bottom: 12px;
}

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

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

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

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

@media (max-width: 900px) {
  :root {
    --section-pad: 64px 20px;
  }

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

  .hero-visual {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 100px 20px 60px;
  }

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

  .pain-img {
    display: none;
  }

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

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

  .format-steps::before {
    display: none;
  }

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

  .gallery-item--main {
    grid-column: 1 / 3;
    grid-row: auto;
    height: 280px;
  }

  .gallery-item--sm {
    height: 180px;
  }

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

  .materials-img {
    display: none;
  }

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

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

  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }
}

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

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

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

  .gallery-item--main,
  .gallery-item--sm {
    height: 240px;
    grid-column: auto;
    grid-row: auto;
  }

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

  .hero-trust {
    gap: 16px;
  }

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

  .lead-form-inner {
    gap: 32px;
  }

  .cookie-actions {
    flex-direction: column;
    width: 100%;
  }

  .cookie-accept,
  .cookie-decline {
    width: 100%;
    text-align: center;
  }
}

.nav-open .nav-links {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  padding: 80px 40px 40px;
  gap: 24px;
  z-index: 99;
}

.nav-open .nav-links a {
  font-size: 1.3rem;
}
