/* C&C Ferracuti GmbH — startup-bold archetype */

:root {
  --color-primary: #1a2332;
  --color-primary-light: #2a3548;
  --color-secondary: #6b7280;
  --color-accent: #b85c42;
  --color-accent-hover: #9a4a35;
  --color-bg: #faf9f7;
  --color-bg-alt: #f0eeeb;
  --color-white: #ffffff;
  --color-text: #2c3440;
  --color-text-muted: #5a6573;
  --color-border: #e2e0dc;
  --font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-weight-bold: 800;
  --letter-spacing-tight: -0.03em;
  --section-padding: 8rem;
  --container-max: 1200px;
  --header-height: 72px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: var(--color-accent-hover);
}

h1, h2, h3, h4 {
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-tight);
  line-height: 1.1;
  color: var(--color-primary);
}

h1 { font-size: clamp(2.5rem, 7vw, 6.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }

p + p {
  margin-top: 1.25rem;
}

ul, ol {
  padding-left: 1.25rem;
}

li + li {
  margin-top: 0.5rem;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: 780px;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 249, 247, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo-link {
  flex-shrink: 0;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  padding: 0;
}

.main-nav a {
  color: var(--color-primary);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.main-nav a:hover {
  color: var(--color-accent);
}

.main-nav .nav-cta {
  color: var(--color-text-muted);
  font-weight: 400;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--color-primary);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  margin: 5px 0;
  transition: var(--transition);
}

/* Main offset for fixed header */
main {
  padding-top: var(--header-height);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

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

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

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

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

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

/* Hero — startup-bold: massive text, no image */
.hero-text {
  padding: var(--section-padding) 0 6rem;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero-text__title {
  max-width: 14ch;
}

.hero-text__subtitle {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-muted);
  max-width: 42ch;
  margin-top: 2rem;
  line-height: 1.6;
}

/* Full-width image section */
.hero-image-full {
  width: 100%;
  height: 55vh;
  min-height: 360px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-image-full--1 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.45)), url("../img/hero-1.jpg");
}

.hero-image-full--2 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.45)), url("../img/hero-2.jpg");
}

/* Page hero with background image */
.page-hero {
  padding: 6rem 0 4rem;
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(26, 35, 50, 0.82), rgba(26, 35, 50, 0.72));
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1,
.page-hero p {
  color: var(--color-white);
}

.page-hero p {
  opacity: 0.9;
  max-width: 52ch;
  margin-top: 1.5rem;
  font-size: 1.125rem;
}

.page-hero--1 {
  background-image: url("../img/hero-1.jpg");
}

.page-hero--2 {
  background-image: url("../img/hero-2.jpg");
}

/* Sections */
.section {
  padding: var(--section-padding) 0;
}

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

.section-header {
  margin-bottom: 4rem;
}

.section-header p {
  color: var(--color-text-muted);
  max-width: 52ch;
  margin-top: 1.25rem;
}

.section-label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

/* Numbered service list — two columns */
.services-numbered {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
}

.service-numbered-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.service-numbered-item__num {
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-tight);
  color: var(--color-border);
  line-height: 1;
  flex-shrink: 0;
}

.service-numbered-item__num span {
  color: var(--color-accent);
  font-size: 0.75rem;
  vertical-align: super;
}

.service-numbered-item h3 {
  margin-bottom: 0.75rem;
}

.service-numbered-item p {
  color: var(--color-text-muted);
  font-size: 0.975rem;
}

.service-numbered-item a {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}

/* About centered with vertical line */
.about-centered {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  padding: 2rem 0;
}

.about-centered::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 3rem;
  background: var(--color-accent);
}

.about-centered p {
  color: var(--color-text-muted);
  font-size: 1.125rem;
  line-height: 1.75;
}

/* Impact numbers — single row */
.impact-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  padding: 4rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.impact-number__value {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-tight);
  color: var(--color-primary);
  line-height: 1;
}

.impact-number__label {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-top: 0.75rem;
}

/* Service cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 2.5rem 2rem;
  transition: border-color var(--transition), transform var(--transition);
}

.service-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.service-card h3 {
  margin-bottom: 1rem;
}

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

.service-card__link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Process steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  counter-reset: process;
}

.process-step {
  counter-increment: process;
  position: relative;
  padding-top: 3rem;
}

.process-step::before {
  content: counter(process, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-tight);
  color: var(--color-border);
}

.process-step h3 {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

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

/* Target audience */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.audience-item {
  padding: 2rem;
  background: var(--color-white);
  border-left: 3px solid var(--color-accent);
}

.audience-item h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.audience-item p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

/* FAQ accordion */
.faq-list {
  max-width: 780px;
}

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

.faq-item summary {
  padding: 1.5rem 0;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: -0.01em;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item__answer {
  padding: 0 0 1.5rem;
  color: var(--color-text-muted);
}

/* CTA section */
.cta-section {
  background: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  padding: var(--section-padding) 0;
}

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: 1.25rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 48ch;
  margin: 0 auto 2rem;
}

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

.cta-section .btn-primary:hover {
  background: var(--color-bg);
  border-color: var(--color-bg);
  color: var(--color-primary);
}

/* Section with background image */
.section-image {
  background-size: cover;
  background-position: center;
  position: relative;
  color: var(--color-white);
}

.section-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(26, 35, 50, 0.85), rgba(26, 35, 50, 0.75));
}

.section-image .container {
  position: relative;
  z-index: 1;
}

.section-image h2,
.section-image p {
  color: var(--color-white);
}

.section-image--1 { background-image: url("../img/section-1.jpg"); }
.section-image--2 { background-image: url("../img/section-2.jpg"); }
.section-image--3 { background-image: url("../img/section-3.jpg"); }
.section-image--4 { background-image: url("../img/section-4.jpg"); }

/* Content image inline */
.content-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 4px;
}

.content-image--team {
  max-width: 300px;
  height: auto;
  border-radius: 12px;
  margin: 0 auto 2rem;
}

/* Two column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col--reverse .two-col__image {
  order: -1;
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.value-item {
  padding: 2rem;
  border: 1px solid var(--color-border);
}

.value-item h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.value-item p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

/* Case studies */
.case-study {
  padding: 3rem 0;
  border-bottom: 1px solid var(--color-border);
}

.case-study:last-child {
  border-bottom: none;
}

.case-study__meta {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.case-study h3 {
  margin-bottom: 1.5rem;
}

.case-study__block {
  margin-bottom: 1.25rem;
}

.case-study__block strong {
  display: block;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

/* Job listings */
.job-listing {
  padding: 2.5rem;
  border: 1px solid var(--color-border);
  margin-bottom: 1.5rem;
}

.job-listing h3 {
  margin-bottom: 0.5rem;
}

.job-listing__meta {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

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

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact-info address {
  font-style: normal;
  line-height: 1.8;
  color: var(--color-text-muted);
}

.contact-info h3 {
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.contact-info p {
  color: var(--color-text-muted);
  margin-top: 1.5rem;
}

.contact-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background: var(--color-white);
  color: var(--color-text);
  margin-bottom: 1.25rem;
  transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

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

.form-consent input {
  width: auto;
  margin: 0.25rem 0 0;
  flex-shrink: 0;
}

.form-consent label {
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0;
}

.contact-form button[type="submit"] {
  width: 100%;
  padding: 1rem 2rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background var(--transition);
}

.contact-form button[type="submit"]:hover {
  background: var(--color-primary-light);
}

.form-success {
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #2e7d32;
  padding: 1.25rem 1.5rem;
  border-radius: 4px;
  margin-bottom: 2rem;
}

/* Blog */
.article-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.article-preview {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: start;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--color-border);
}

.article-preview__image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 4px;
}

.article-preview__date {
  font-size: 0.8125rem;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.article-preview h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.article-preview h2 a {
  color: var(--color-primary);
}

.article-preview h2 a:hover {
  color: var(--color-accent);
}

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

.article-body {
  max-width: 720px;
}

.article-body h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
}

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

.article-meta {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

/* Legal pages */
.legal-content h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-size: 1.375rem;
  margin: 2.5rem 0 1rem;
}

.legal-content h3 {
  font-size: 1.125rem;
  margin: 1.5rem 0 0.75rem;
}

.legal-content p,
.legal-content li {
  color: var(--color-text-muted);
}

.legal-content ul {
  margin: 1rem 0;
}

/* Benefits list */
.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  padding: 0.75rem 0 0.75rem 1.75rem;
  position: relative;
  color: var(--color-text-muted);
}

.benefits-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.125rem;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
}

/* Breadcrumbs */
.breadcrumbs {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  padding-top: 2rem;
}

.breadcrumbs a {
  color: var(--color-text-muted);
}

.breadcrumbs a:hover {
  color: var(--color-accent);
}

/* Footer */
.site-footer {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  font-weight: var(--font-weight-bold);
  font-size: 1.125rem;
  color: var(--color-white);
  letter-spacing: var(--letter-spacing-tight);
  margin-bottom: 1rem;
}

.site-footer address {
  font-style: normal;
  line-height: 1.7;
  font-size: 0.9375rem;
}

.site-footer h4 {
  color: var(--color-white);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.footer-nav {
  list-style: none;
  padding: 0;
}

.footer-nav li + li {
  margin-top: 0.625rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9375rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
}

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

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 1.25rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
}

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

.cookie-banner__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-banner p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  flex: 1;
  min-width: 240px;
}

.cookie-banner p a {
  color: var(--color-white);
  text-decoration: underline;
}

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

.cookie-banner button {
  padding: 0.625rem 1.25rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.cookie-banner__accept {
  background: var(--color-white);
  color: var(--color-primary);
}

.cookie-banner__accept:hover {
  background: var(--color-bg);
}

.cookie-banner__decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-banner__decline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--color-white);
}

/* Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Stats bar on references page */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 3rem 2rem;
  border-radius: 4px;
  text-align: center;
  margin-bottom: 4rem;
}

.stats-bar__value {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-tight);
}

.stats-bar__label {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
  :root {
    --section-padding: 6rem;
  }

  .services-numbered {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .impact-numbers {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .two-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .two-col--reverse .two-col__image {
    order: 0;
  }

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

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

  .article-preview {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 4rem;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .impact-numbers {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__actions {
    justify-content: stretch;
  }

  .cookie-banner button {
    flex: 1;
  }

  .btn-group {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
