/* ===========================
   DECORIO — Styles
   =========================== */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #F7F2EA;
  --cream-dark: #EDE6D8;
  --beige: #E8E0D0;
  --terracotta: #B8644A;
  --terracotta-light: #D07B62;
  --terracotta-dark: #923E28;
  --brown: #2C1A0E;
  --brown-mid: #5C3A22;
  --sage: #7A9074;
  --sage-light: #9FB09A;
  --warm-gray: #8A7F74;
  --warm-gray-light: #B8B0A8;
  --white: #FFFFFF;
  --text-dark: #1E1209;
  --text-mid: #4A3728;
  --text-muted: #7A6E64;

  --ff-serif: 'Georgia', 'Times New Roman', serif;
  --ff-sans: 'Helvetica Neue', 'Arial', sans-serif;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(44, 26, 14, 0.08);
  --shadow: 0 4px 20px rgba(44, 26, 14, 0.12);
  --shadow-lg: 0 8px 40px rgba(44, 26, 14, 0.16);

  --transition: 0.25s ease;
}

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

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

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

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

ul {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--ff-serif);
  line-height: 1.25;
  color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }

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

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}

/* --- Utilities --- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

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

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

.section--dark h2,
.section--dark h3,
.section--dark .section-label {
  color: var(--cream);
}

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

.section--dark p {
  color: var(--beige);
}

.text-center { text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

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

.btn--primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(184, 100, 74, 0.35);
}

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

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

.btn--light {
  background: var(--white);
  color: var(--terracotta);
}

.btn--light:hover {
  background: var(--cream);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

/* --- Header / Nav --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(247, 242, 234, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(44, 26, 14, 0.08);
  transition: box-shadow var(--transition);
}

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

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

.nav__logo {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  color: var(--brown);
  letter-spacing: 0.06em;
}

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

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

.nav__links a {
  font-size: 0.9rem;
  color: var(--text-mid);
  transition: color var(--transition);
}

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

.nav__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

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

/* --- Hero --- */
.hero {
  padding-top: calc(68px + 4rem);
  padding-bottom: 5rem;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.hero__content {
  max-width: 560px;
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.25rem;
}

.hero__title {
  margin-bottom: 1.25rem;
}

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

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

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.hero__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero__image-wrap img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

.hero__badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(247, 242, 234, 0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow);
}

.hero__badge-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.2rem;
}

.hero__badge-text {
  font-size: 0.875rem;
  color: var(--brown);
  font-weight: 600;
}

/* --- Skills --- */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.skill-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid rgba(44, 26, 14, 0.07);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.skill-card__icon {
  width: 48px;
  height: 48px;
  background: var(--cream-dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.skill-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-family: var(--ff-sans);
}

.skill-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Section Headers --- */
.section-header {
  margin-bottom: 3rem;
}

.section-header--center {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.05rem;
  line-height: 1.7;
}

/* --- Program --- */
.program-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.program-image {
  position: sticky;
  top: 100px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.modules-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.module-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(44, 26, 14, 0.08);
  overflow: hidden;
}

.module-item__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  transition: background var(--transition);
}

.module-item__header:hover {
  background: var(--cream-dark);
}

.module-item__number {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.module-item__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  flex: 1;
}

.module-item__arrow {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--warm-gray);
  transition: transform var(--transition);
}

.module-item.open .module-item__arrow {
  transform: rotate(180deg);
}

.module-item__body {
  display: none;
  padding: 0 1.5rem 1.25rem;
  border-top: 1px solid rgba(44, 26, 14, 0.06);
}

.module-item.open .module-item__body {
  display: block;
}

.module-item__body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-top: 0.875rem;
  line-height: 1.65;
}

/* --- For Whom --- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.audience-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(247, 242, 234, 0.15);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: background var(--transition);
}

.audience-card:hover {
  background: rgba(255,255,255,0.1);
}

.audience-card__icon {
  font-size: 1.75rem;
  margin-bottom: 0.875rem;
}

.audience-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--cream);
}

.audience-card__desc {
  font-size: 0.875rem;
  color: var(--beige);
  line-height: 1.6;
}

/* --- Showcase / Results --- */
.showcase-intro {
  max-width: 600px;
  margin-bottom: 3rem;
}

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

.showcase-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.showcase-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.showcase-item--wide {
  grid-column: span 2;
}

.showcase-item--wide img {
  height: 340px;
}

/* --- Process --- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 1rem);
  right: calc(12.5% + 1rem);
  height: 1px;
  background: var(--beige);
  z-index: 0;
}

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

.process-step__dot {
  width: 56px;
  height: 56px;
  background: var(--cream);
  border: 2px solid var(--terracotta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.25rem;
}

.process-step__num {
  position: absolute;
  top: -8px;
  right: calc(50% - 36px);
  width: 20px;
  height: 20px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.process-step__desc {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Form Section --- */
.form-section {
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(184, 100, 74, 0.06);
  pointer-events: none;
}

.form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.form-left h2 {
  margin-bottom: 1rem;
}

.form-left p {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.form-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.form-benefits li::before {
  content: '';
  flex-shrink: 0;
  margin-top: 6px;
  width: 8px;
  height: 8px;
  background: var(--terracotta);
  border-radius: 50%;
}

.lead-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.lead-form__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-family: var(--ff-serif);
}

.lead-form__subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--beige);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  font-family: var(--ff-sans);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(184, 100, 74, 0.12);
  background: var(--white);
}

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

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

.form-checkbox input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: var(--terracotta);
  cursor: pointer;
}

.form-checkbox label {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}

.form-checkbox label a {
  color: var(--terracotta);
  text-decoration: underline;
}

.form-submit .btn {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
}

/* --- FAQ --- */
.faq-list {
  max-width: 780px;
  margin: 3rem auto 0;
}

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

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
  transition: color var(--transition);
  gap: 1rem;
}

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

.faq-item__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--terracotta);
  transition: background var(--transition), transform var(--transition);
}

.faq-item.open .faq-item__icon {
  background: var(--terracotta);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-item__answer {
  display: none;
  padding-bottom: 1.5rem;
}

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

.faq-item__answer p {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- CTA Band --- */
.cta-band {
  background: var(--terracotta);
  padding: 4rem 0;
  text-align: center;
}

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

.cta-band p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* --- Footer --- */
.footer {
  background: var(--brown);
  color: var(--beige);
  padding: 3.5rem 0 2rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(247, 242, 234, 0.1);
}

.footer__logo {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  color: var(--cream);
  letter-spacing: 0.06em;
  margin-bottom: 0.875rem;
}

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

.footer__desc {
  font-size: 0.85rem;
  color: var(--warm-gray-light);
  line-height: 1.7;
  max-width: 260px;
}

.footer__col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray-light);
  margin-bottom: 1rem;
}

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

.footer__links a {
  font-size: 0.875rem;
  color: var(--beige);
  transition: color var(--transition);
}

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

.footer__contact {
  font-size: 0.875rem;
  color: var(--beige);
  line-height: 1.8;
}

.footer__contact a {
  color: var(--terracotta-light);
}

.footer__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer__legal {
  font-size: 0.775rem;
  color: var(--warm-gray);
  line-height: 1.7;
  max-width: 600px;
}

.footer__copy {
  font-size: 0.775rem;
  color: var(--warm-gray);
  white-space: nowrap;
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 560px;
  background: var(--brown);
  color: var(--beige);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  display: none;
  align-items: flex-start;
  gap: 1.25rem;
}

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

.cookie-banner__text {
  flex: 1;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--beige);
}

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

.cookie-banner__actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
  align-items: center;
}

.cookie-btn {
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background var(--transition);
}

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

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

.cookie-btn--decline {
  background: transparent;
  color: var(--warm-gray-light);
  border: 1.5px solid rgba(247, 242, 234, 0.2);
}

.cookie-btn--decline:hover {
  background: rgba(255,255,255,0.08);
}

/* --- Success / Legal page shared styles --- */
.page-hero {
  padding: calc(68px + 3rem) 0 3rem;
  background: var(--cream-dark);
  border-bottom: 1px solid var(--beige);
}

.page-content {
  padding: 3rem 0 5rem;
}

.prose {
  max-width: 760px;
}

.prose h2 {
  font-size: 1.3rem;
  margin-top: 2.5rem;
  margin-bottom: 0.875rem;
}

.prose h3 {
  font-size: 1.05rem;
  margin-top: 1.75rem;
  margin-bottom: 0.6rem;
}

.prose p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-mid);
}

.prose ul {
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

.prose ul li {
  list-style: disc;
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
  line-height: 1.65;
}

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

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
  transition: gap var(--transition);
}

.back-link:hover {
  gap: 0.65rem;
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* --- Mobile menu overlay --- */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--cream);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

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

.mobile-nav a {
  font-size: 1.3rem;
  font-family: var(--ff-serif);
  color: var(--text-dark);
  transition: color var(--transition);
}

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

.mobile-nav__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 2.5rem;
    text-align: center;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__image-wrap img {
    height: 380px;
  }

  .program-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .program-image {
    position: static;
  }

  .program-image img {
    height: 320px;
  }

  .form-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

  .nav__links,
  .nav__cta .btn {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  .hero__image-wrap img {
    height: 280px;
  }

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

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

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

  .showcase-item--wide {
    grid-column: span 1;
  }

  .showcase-item--wide img {
    height: 280px;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

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

  .footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
  }

  .cookie-banner {
    flex-direction: column;
    max-width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: var(--radius) var(--radius) 0 0;
  }

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

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

  .lead-form {
    padding: 1.75rem 1.25rem;
  }

  .hero__actions .btn:last-child {
    display: none;
  }
}
