/* ==========================================
   MAVORQEN HUB - RETRO MODERN STYLESHEET
   ========================================== */


:root {
  --clr-cream: #f5f0e8;
  --clr-parchment: #ede6d6;
  --clr-mustard: #c8922a;
  --clr-mustard-light: #e0a83d;
  --clr-mustard-dark: #9e7220;
  --clr-terracotta: #b85c38;
  --clr-terracotta-light: #d06b45;
  --clr-olive: #5c6b3a;
  --clr-olive-light: #7a8f50;
  --clr-dusty-rose: #c4857a;
  --clr-ink: #2a2318;
  --clr-ink-light: #3d3427;
  --clr-text: #3a3020;
  --clr-text-muted: #6b5f4a;
  --clr-white-warm: #fdfaf4;

  --shadow-sm: 0 2px 4px rgba(42,35,24,0.08), 0 1px 2px rgba(42,35,24,0.05);
  --shadow-md: 0 4px 12px rgba(42,35,24,0.10), 0 2px 6px rgba(42,35,24,0.07);
  --shadow-lg: 0 8px 32px rgba(42,35,24,0.14), 0 4px 12px rgba(42,35,24,0.08), 0 1px 3px rgba(42,35,24,0.05);
  --shadow-xl: 0 20px 60px rgba(42,35,24,0.18), 0 8px 24px rgba(42,35,24,0.10);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 2rem;
  --sp-lg: 4rem;
  --sp-xl: 7rem;

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;

  --hdr-h: 72px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--clr-cream);
  color: var(--clr-text);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--clr-mustard-dark); transition: color var(--transition); text-decoration: none; }
a:hover { color: var(--clr-terracotta); }
ul { list-style: none; }
address { font-style: normal; }


h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--clr-ink);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 600; }
p { color: var(--clr-text); line-height: 1.75; }


.hero-grad {
  background: linear-gradient(135deg, var(--clr-mustard) 0%, var(--clr-terracotta) 60%, var(--clr-dusty-rose) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  min-height: 48px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--clr-mustard) 0%, var(--clr-terracotta) 100%);
  color: var(--clr-white-warm);
  box-shadow: var(--shadow-md), 0 0 0 0 rgba(200,146,42,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 0 0 4px rgba(200,146,42,0.2);
  color: var(--clr-white-warm);
  background: linear-gradient(135deg, var(--clr-mustard-light) 0%, var(--clr-terracotta-light) 100%);
}
.btn-ghost {
  background: transparent;
  color: var(--clr-ink);
  border-color: var(--clr-ink);
}
.btn-ghost:hover {
  background: var(--clr-ink);
  color: var(--clr-cream);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }


.hdr {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(245,240,232,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,146,42,0.18);
  box-shadow: 0 2px 20px rgba(42,35,24,0.07);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.hdr.hdr--hidden { transform: translateY(-100%); }

.hdr-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
  height: var(--hdr-h);
}
.hdr-nav-left,
.hdr-nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
}
.hdr-nav-right { justify-content: flex-end; }
.hdr-nav-left a,
.hdr-nav-right a:not(.hdr-cta) {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--clr-ink);
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 2px;
}
.hdr-nav-left a::after,
.hdr-nav-right a:not(.hdr-cta)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-mustard), var(--clr-terracotta));
  transition: width var(--transition);
}
.hdr-nav-left a:hover::after,
.hdr-nav-right a:not(.hdr-cta):hover::after,
.hdr-nav-left a.active::after,
.hdr-nav-right a.active::after { width: 100%; }
.hdr-nav-left a:hover,
.hdr-nav-right a:not(.hdr-cta):hover { color: var(--clr-mustard-dark); }

.hdr-logo { flex-shrink: 0; transition: opacity var(--transition); }
.hdr-logo:hover { opacity: 0.8; }
.hdr-logo img { height: 40px; width: auto; }

.hdr-cta {
  padding: 0.55rem 1.4rem;
  background: linear-gradient(135deg, var(--clr-mustard), var(--clr-terracotta));
  color: var(--clr-white-warm) !important;
  border-radius: var(--radius-md);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.hdr-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  opacity: 1;
  background: linear-gradient(135deg, var(--clr-mustard-light), var(--clr-terracotta-light));
}
.hdr-cta::after { display: none !important; }


.hdr-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hdr-burger:hover { background: var(--clr-parchment); }
.hdr-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-ink);
  border-radius: 2px;
  transition: all var(--transition);
}


.mob-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--clr-ink);
  clip-path: polygon(100% 0, 100% 0, 100% 0, 100% 0);
  transition: clip-path 0.55s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mob-menu.mob-menu--open {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.mob-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--clr-cream);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mob-close:hover { background: var(--clr-mustard); }
.mob-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease 0.3s;
}
.mob-menu.mob-menu--open .mob-nav {
  opacity: 1;
  transform: translateY(0);
}
.mob-nav a {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--clr-cream);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.mob-nav a:hover { color: var(--clr-mustard-light); }


.sec { padding: var(--sp-xl) 0; position: relative; }
.sec-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
}
.sec-head { text-align: center; margin-bottom: 3.5rem; }
.sec-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-mustard-dark);
  background: rgba(200,146,42,0.1);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.sec-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
  font-weight: 800;
}
.sec-intro {
  max-width: 600px;
  margin: 0 auto;
  color: var(--clr-text-muted);
  font-size: 1.05rem;
}


.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--hdr-h) + 2rem);
  padding-bottom: 0;
  background: var(--clr-cream);
  position: relative;
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  top: -100px;
  right: -150px;
  background: radial-gradient(ellipse, rgba(200,146,42,0.22) 0%, rgba(184,92,56,0.12) 50%, transparent 70%);
  border-radius: 50%;
  animation: blobMove 12s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes blobMove {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(-40px, 30px) scale(1.08); }
  66%  { transform: translate(25px, -20px) scale(0.95); }
  100% { transform: translate(0, 0) scale(1); }
}
.hero > * { position: relative; z-index: 1; }
.hero .sec-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
  width: 100%;
}
.hero-inner { grid-column: 1; }
.hero-img-wrap { grid-column: 2; position: relative; }
.hero-eyebrow {
  display: block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-mustard-dark);
  margin-bottom: 1.25rem;
}
.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--clr-ink);
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--clr-text-muted);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center;
}
.hero-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: -1.5rem;
  background: var(--clr-white-warm);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-lg);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-ink);
}
.hero-img-badge i { color: var(--clr-mustard); font-size: 1.1rem; }


.flow-bar {
  background: var(--clr-ink);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.flow-bar span {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-cream);
  opacity: 0.85;
}
.flow-bar i { color: var(--clr-mustard); font-size: 0.5rem; }


.crd-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.crd {
  background: var(--clr-white-warm);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200,146,42,0.12);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.crd::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-mustard), var(--clr-terracotta));
  opacity: 0;
  transition: opacity var(--transition);
}
.crd:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,146,42,0.25);
}
.crd:hover::before { opacity: 1; }
.crd--accent {
  background: linear-gradient(145deg, var(--clr-ink) 0%, var(--clr-ink-light) 100%);
  border-color: transparent;
}
.crd--accent .crd-ico { background: rgba(200,146,42,0.2); color: var(--clr-mustard-light); }
.crd--accent .crd-title,
.crd--accent .crd-txt { color: var(--clr-cream); }
.crd--accent .crd-link { color: var(--clr-mustard-light); }
.crd--accent .crd-link:hover { color: var(--clr-mustard); }
.crd-ico {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(200,146,42,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--clr-mustard-dark);
  margin-bottom: 1.25rem;
  transition: all var(--transition);
}
.crd:hover .crd-ico {
  background: linear-gradient(135deg, var(--clr-mustard), var(--clr-terracotta));
  color: white;
  transform: scale(1.05);
}
.crd--accent:hover .crd-ico {
  background: rgba(200,146,42,0.35);
  color: var(--clr-mustard-light);
}
.crd-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--clr-ink);
}
.crd-txt {
  font-size: 0.93rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.crd-link {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-mustard-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition), color var(--transition);
}
.crd-link:hover { gap: 0.7rem; color: var(--clr-terracotta); }


.sec-gallery { background: var(--clr-parchment); }
.gal-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  display: block;
  background: var(--clr-ink);
}
.gal-item--lg { grid-row: 1 / 3; }
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  aspect-ratio: auto;
  min-height: 200px;
}
.gal-item--lg img { min-height: 400px; }
.gal-item:hover img { transform: scale(1.05); }
.gal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(42,35,24,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  color: white;
  font-size: 1.5rem;
}
.gal-item:hover .gal-overlay { opacity: 1; }


.sec-process { background: var(--clr-ink); }
.sec-process .sec-label { background: rgba(200,146,42,0.2); color: var(--clr-mustard-light); }
.sec-process .sec-title { color: var(--clr-cream); }
.proc-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.proc-step {
  flex: 1;
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}
.proc-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(200,146,42,0.18);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.proc-ico {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(200,146,42,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--clr-mustard-light);
  margin: 0 auto 1.25rem;
  transition: all var(--transition);
}
.proc-step:hover .proc-ico {
  background: var(--clr-mustard);
  color: white;
  transform: scale(1.1);
}
.proc-step h4 { color: var(--clr-cream); margin-bottom: 0.75rem; }
.proc-step p { color: rgba(245,240,232,0.65); font-size: 0.92rem; }
.proc-conn {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-mustard), var(--clr-terracotta));
  margin-top: 5rem;
  flex-shrink: 0;
  opacity: 0.5;
}


.sec-why { background: var(--clr-parchment); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.why-crd {
  background: var(--clr-white-warm);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200,146,42,0.1);
  transition: all var(--transition);
}
.why-crd:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-ico {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(200,146,42,0.15), rgba(184,92,56,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--clr-terracotta);
  margin-bottom: 1rem;
  transition: all var(--transition);
}
.why-crd:hover .why-ico {
  background: linear-gradient(135deg, var(--clr-mustard), var(--clr-terracotta));
  color: white;
}
.why-crd h4 { margin-bottom: 0.6rem; color: var(--clr-ink); }
.why-crd p { font-size: 0.92rem; color: var(--clr-text-muted); }


.cmp-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: start;
}
.cmp-col {
  background: var(--clr-white-warm);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200,146,42,0.12);
}
.cmp-col--a { border-top: 4px solid var(--clr-mustard); }
.cmp-col--b { border-top: 4px solid var(--clr-text-muted); }
.cmp-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--clr-parchment);
}
.cmp-head i { font-size: 1.5rem; color: var(--clr-mustard); }
.cmp-head h3 { font-size: 1.1rem; margin: 0; }
.cmp-list { display: flex; flex-direction: column; gap: 0.75rem; }
.cmp-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.93rem;
  color: var(--clr-text);
}
.cmp-list .fa-check { color: var(--clr-olive); flex-shrink: 0; margin-top: 3px; }
.cmp-list .fa-minus { color: var(--clr-text-muted); flex-shrink: 0; margin-top: 3px; }
.cmp-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
}
.cmp-divider span {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--clr-text-muted);
  background: var(--clr-parchment);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cmp-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
}


.sec-cta-banner { background: var(--clr-cream); }
.cta-banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: linear-gradient(135deg, var(--clr-ink) 0%, var(--clr-ink-light) 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.cta-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}
.cta-banner-txt {
  padding: 3rem;
}
.cta-banner-txt .sec-label { background: rgba(200,146,42,0.2); color: var(--clr-mustard-light); }
.cta-banner-txt h2 { color: var(--clr-cream); margin-bottom: 1rem; }
.cta-banner-txt p { color: rgba(245,240,232,0.75); margin-bottom: 2rem; }


.pg-hero {
  background: linear-gradient(145deg, var(--clr-cream) 60%, var(--clr-parchment) 100%);
  padding-top: calc(var(--hdr-h) + 4rem);
  padding-bottom: 4rem;
  text-align: center;
}
.pg-hero-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
}
.pg-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.pg-hero p { color: var(--clr-text-muted); font-size: 1.1rem; }


.team-intro {
  max-width: 760px;
  margin: 0 auto 4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.team-intro p { font-size: 1.05rem; color: var(--clr-text-muted); }
.team-grid { display: flex; flex-direction: column; gap: 3rem; }
.team-crd {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: center;
  background: var(--clr-white-warm);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(200,146,42,0.1);
}
.team-crd--rev { grid-template-columns: 1.4fr 1fr; }
.team-crd--rev .team-img-wrap { order: 2; }
.team-crd--rev .team-info { order: 1; }
.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
}
.team-info { padding: 2.5rem; }
.team-info h3 { font-size: 1.6rem; margin-bottom: 0.25rem; }
.team-role {
  display: block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-mustard-dark);
  margin-bottom: 1rem;
}
.team-info p { color: var(--clr-text-muted); margin-bottom: 1.5rem; }
.team-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.team-tags span {
  background: rgba(200,146,42,0.1);
  color: var(--clr-mustard-dark);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  border: 1px solid rgba(200,146,42,0.2);
}


.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.approach-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--clr-white-warm);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200,146,42,0.1);
  transition: all var(--transition);
}
.approach-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.approach-item > i {
  font-size: 1.4rem;
  color: var(--clr-mustard);
  flex-shrink: 0;
  margin-top: 3px;
  transition: color var(--transition);
}
.approach-item:hover > i { color: var(--clr-terracotta); }
.approach-item h4 { margin-bottom: 0.5rem; }
.approach-item p { font-size: 0.92rem; color: var(--clr-text-muted); }
.approach-close {
  text-align: center;
  font-size: 1.2rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--clr-ink);
  font-style: italic;
  margin-top: 2rem;
}


.biz-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.biz-intro-txt h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 1rem; }
.biz-intro-txt p { color: var(--clr-text-muted); margin-bottom: 1rem; }
.biz-intro-img img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.fmt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.fmt-crd {
  background: var(--clr-white-warm);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200,146,42,0.12);
  position: relative;
  transition: all var(--transition);
}
.fmt-crd:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.fmt-crd--featured {
  background: linear-gradient(145deg, var(--clr-ink), var(--clr-ink-light));
  border-color: transparent;
}
.fmt-crd--featured h3,
.fmt-crd--featured p,
.fmt-crd--featured li { color: var(--clr-cream); }
.fmt-crd--featured li { color: rgba(245,240,232,0.8); }
.fmt-crd--featured .fmt-num { color: rgba(200,146,42,0.3); }
.fmt-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--clr-mustard), var(--clr-terracotta));
  color: white;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
}
.fmt-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(200,146,42,0.2);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.fmt-crd h3 { margin-bottom: 0.75rem; }
.fmt-crd p { color: var(--clr-text-muted); font-size: 0.93rem; margin-bottom: 1.25rem; }
.fmt-crd ul { display: flex; flex-direction: column; gap: 0.6rem; }
.fmt-crd li {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  padding-left: 1.2rem;
  position: relative;
}
.fmt-crd li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--clr-mustard);
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
.use-item {
  background: var(--clr-white-warm);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200,146,42,0.1);
  transition: all var(--transition);
}
.use-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.use-item > i {
  font-size: 1.8rem;
  color: var(--clr-mustard);
  display: block;
  margin-bottom: 1rem;
  transition: color var(--transition);
}
.use-item:hover > i { color: var(--clr-terracotta); }
.use-item h4 { font-size: 0.95rem; margin-bottom: 0.5rem; }
.use-item p { font-size: 0.85rem; color: var(--clr-text-muted); }

.biz-proc-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.biz-proc-step {
  flex: 1;
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--clr-white-warm);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200,146,42,0.1);
}
.biz-proc-num {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-mustard), var(--clr-terracotta));
  color: white;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.biz-proc-step h4 { margin-bottom: 0.5rem; font-size: 1rem; }
.biz-proc-step p { font-size: 0.88rem; color: var(--clr-text-muted); }
.biz-proc-arr {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.5rem;
  margin-top: 1.5rem;
  color: var(--clr-mustard);
  font-size: 1rem;
}


.facts-strip {
  background: var(--clr-ink);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.fact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.fact-item > i { color: var(--clr-mustard); font-size: 1.1rem; }
.fact-item strong { display: block; color: var(--clr-cream); font-family: var(--font-head); font-size: 0.9rem; }
.fact-item span { color: rgba(245,240,232,0.65); font-size: 0.82rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { color: var(--clr-text-muted); margin-bottom: 1.5rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-detail-item > i { color: var(--clr-mustard); font-size: 1rem; margin-top: 3px; }
.contact-detail-item strong { display: block; font-family: var(--font-head); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--clr-text-muted); margin-bottom: 0.2rem; }
.contact-detail-item span,
.contact-detail-item a { font-size: 1rem; color: var(--clr-text); }
.contact-detail-item a:hover { color: var(--clr-mustard-dark); }
.map-wrap { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }
.contact-form-wrap { background: var(--clr-white-warm); border-radius: var(--radius-xl); padding: 2.5rem; box-shadow: var(--shadow-lg); border: 1px solid rgba(200,146,42,0.1); }
.contact-form-wrap h2 { margin-bottom: 1.5rem; }


.frm label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 0.4rem;
}
.req { color: var(--clr-terracotta); }
.frm input[type="text"],
.frm input[type="email"],
.frm input[type="tel"],
.frm textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid rgba(200,146,42,0.2);
  border-radius: var(--radius-md);
  background: var(--clr-cream);
  color: var(--clr-ink);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--transition);
  outline: none;
}
.frm input:focus,
.frm textarea:focus {
  border-color: var(--clr-mustard);
  box-shadow: 0 0 0 3px rgba(200,146,42,0.15);
  background: var(--clr-white-warm);
}
.frm textarea { resize: vertical; min-height: 140px; }
.frm-field { margin-bottom: 1.25rem; }
.frm-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.frm-check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.frm-check-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  accent-color: var(--clr-mustard);
  margin-top: 2px;
  cursor: pointer;
}
.frm-check { margin-bottom: 1.5rem; }

.frm-footer .frm-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.frm-footer input[type="email"] {
  flex: 1;
  min-width: 200px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
  color: var(--clr-cream);
}
.frm-footer input[type="email"]::placeholder { color: rgba(245,240,232,0.5); }
.frm-footer input[type="email"]:focus { border-color: var(--clr-mustard-light); background: rgba(255,255,255,0.15); }


.ftr {
  background: var(--clr-ink);
  color: var(--clr-cream);
  padding-top: 5rem;
}
.ftr-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-md) 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.ftr-cta-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--clr-cream);
  margin-bottom: 0.75rem;
  font-weight: 800;
}
.ftr-cta > p { color: rgba(245,240,232,0.65); margin-bottom: 1.5rem; }
.ftr-addr {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: rgba(245,240,232,0.55);
  line-height: 2;
}
.ftr-addr a { color: rgba(245,240,232,0.7); }
.ftr-addr a:hover { color: var(--clr-mustard-light); }
.ftr-links {
  display: flex;
  gap: 2.5rem;
}
.ftr-col h4 {
  color: var(--clr-cream);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.ftr-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.ftr-col a { color: rgba(245,240,232,0.6); font-size: 0.93rem; transition: color var(--transition); }
.ftr-col a:hover { color: var(--clr-mustard-light); }
.ftr-bottom {
  border-top: 1px solid rgba(245,240,232,0.1);
  padding: 1.25rem var(--sp-md);
  text-align: center;
}
.ftr-bottom p { color: rgba(245,240,232,0.4); font-size: 0.85rem; margin: 0; }


.thanks-hero {
  background: linear-gradient(135deg, var(--clr-mustard) 0%, var(--clr-terracotta) 60%, var(--clr-dusty-rose) 100%);
  padding: calc(var(--hdr-h) + 5rem) 2rem 6rem;
  text-align: center;
}
.thanks-hero-inner { max-width: 600px; margin: 0 auto; }
.thanks-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin: 0 auto 2rem;
}
.thanks-hero h1 { color: white; margin-bottom: 1rem; font-size: clamp(1.8rem, 4vw, 3rem); }
.thanks-hero p { color: rgba(255,255,255,0.85); font-size: 1.1rem; }
.thanks-next { background: var(--clr-white-warm); }
.thanks-next-inner { text-align: center; }
.thanks-next-inner h2 { margin-bottom: 2.5rem; }
.thanks-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.thanks-step {
  background: var(--clr-cream);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1px solid rgba(200,146,42,0.12);
}
.thanks-step > i { font-size: 1.8rem; color: var(--clr-mustard); display: block; margin-bottom: 1rem; }
.thanks-step h4 { margin-bottom: 0.5rem; }
.thanks-step p { font-size: 0.92rem; color: var(--clr-text-muted); }


.legal-wrap {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: calc(var(--hdr-h) + 3rem) var(--sp-md) 5rem;
  align-items: start;
}
.impressum-wrap { grid-template-columns: 1fr; max-width: 900px; }

.legal-toc {
  position: sticky;
  top: calc(var(--hdr-h) + 1rem);
  background: var(--clr-white-warm);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200,146,42,0.1);
}
.toc-mobile-toggle { display: none; }
.toc-nav { display: flex; flex-direction: column; gap: 0.25rem; }
.toc-link {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  transition: all var(--transition);
}
.toc-link:hover { background: rgba(200,146,42,0.08); color: var(--clr-mustard-dark); }
.toc-link.toc-active {
  background: linear-gradient(135deg, rgba(200,146,42,0.15), rgba(184,92,56,0.1));
  color: var(--clr-mustard-dark);
  font-weight: 600;
}

.legal-content h1 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 0.5rem; }
.legal-date { color: var(--clr-text-muted); font-size: 0.9rem; margin-bottom: 2rem; }
.legal-content section { margin-bottom: 2.5rem; scroll-margin-top: calc(var(--hdr-h) + 1.5rem); }
.legal-content h2 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--clr-ink);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--clr-parchment);
}
.legal-content p { color: var(--clr-text-muted); margin-bottom: 0.75rem; font-size: 0.95rem; }
.legal-content ul { margin: 0.75rem 0; padding-left: 1.5rem; list-style: disc; }
.legal-content li { color: var(--clr-text-muted); font-size: 0.95rem; margin-bottom: 0.5rem; }
.legal-content address { color: var(--clr-text-muted); font-size: 0.95rem; line-height: 1.8; margin: 0.75rem 0; }

.imp-table { width: 100%; border-collapse: collapse; margin: 0.75rem 0 1.5rem; }
.imp-table td { padding: 0.6rem 0.75rem; font-size: 0.93rem; color: var(--clr-text-muted); border-bottom: 1px solid var(--clr-parchment); vertical-align: top; }
.imp-table td:first-child { color: var(--clr-ink); font-weight: 500; width: 40%; }
.imp-table tr:last-child td { border-bottom: none; }

.cookie-table { width: 100%; border-collapse: collapse; margin: 1rem 0; border-radius: var(--radius-md); overflow: hidden; }
.cookie-table th { background: var(--clr-ink); color: var(--clr-cream); padding: 0.75rem 1rem; text-align: left; font-family: var(--font-head); font-size: 0.82rem; font-weight: 700; }
.cookie-table td { padding: 0.75rem 1rem; font-size: 0.9rem; color: var(--clr-text-muted); border-bottom: 1px solid var(--clr-parchment); }
.cookie-table tr:last-child td { border-bottom: none; }
.cookie-table tr:nth-child(even) td { background: var(--clr-cream); }


#ck-consent {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: 90%;
  max-width: 480px;
  background: var(--clr-ink);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(200,146,42,0.2);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
#ck-consent.ck-hidden { opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(20px); }
.ck-compact { padding: 1.5rem 1.75rem; }
.ck-compact p { color: rgba(245,240,232,0.8); font-size: 0.9rem; margin-bottom: 1rem; line-height: 1.6; }
.ck-compact p a { color: var(--clr-mustard-light); }
.ck-btns { display: flex; gap: 0.75rem; }
.ck-btn-accept {
  flex: 1;
  padding: 0.65rem 1rem;
  background: linear-gradient(135deg, var(--clr-mustard), var(--clr-terracotta));
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--transition);
}
.ck-btn-accept:hover { opacity: 0.9; transform: translateY(-1px); }
.ck-btn-settings {
  padding: 0.65rem 1rem;
  background: transparent;
  color: rgba(245,240,232,0.7);
  border: 1px solid rgba(245,240,232,0.25);
  border-radius: var(--radius-md);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--transition);
}
.ck-btn-settings:hover { background: rgba(255,255,255,0.1); color: var(--clr-cream); }

.ck-expanded { padding: 1.75rem; display: none; }
.ck-expanded h4 {
  color: var(--clr-cream);
  font-family: var(--font-head);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.ck-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ck-category:last-of-type { border-bottom: none; }
.ck-cat-info strong { display: block; color: var(--clr-cream); font-size: 0.9rem; margin-bottom: 0.2rem; }
.ck-cat-info span { color: rgba(245,240,232,0.55); font-size: 0.82rem; }
.ck-toggle { position: relative; width: 44px; height: 24px; flex-shrink: 0; }
.ck-toggle input { opacity: 0; width: 0; height: 0; }
.ck-slider {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 100px;
  cursor: pointer;
  transition: background var(--transition);
}
.ck-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform var(--transition);
}
.ck-toggle input:checked + .ck-slider { background: var(--clr-mustard); }
.ck-toggle input:checked + .ck-slider::before { transform: translateX(20px); }
.ck-toggle input:disabled + .ck-slider { opacity: 0.6; cursor: not-allowed; }
.ck-expanded-btns { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.ck-btn-save {
  flex: 1;
  padding: 0.65rem 1rem;
  background: linear-gradient(135deg, var(--clr-mustard), var(--clr-terracotta));
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--transition);
}
.ck-btn-save:hover { opacity: 0.9; }

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

@media (max-width: 1100px) {
  .crd-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .use-grid { grid-template-columns: repeat(3, 1fr); }
  .proc-grid { flex-wrap: wrap; }
  .proc-conn { display: none; }
  .proc-step { flex: 0 0 45%; }
}

@media (max-width: 960px) {
  .hdr-nav-left,
  .hdr-nav-right { display: none; }
  .hdr-burger { display: flex; }
  .hdr-nav { justify-content: space-between; }
  .hdr-logo { position: absolute; left: 50%; transform: translateX(-50%); }

  .hero .sec-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-img-wrap { order: -1; }
  .hero-img { max-height: 400px; }
  .hero-img-badge { left: 1rem; }
  .hero-inner { text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-sub { margin: 0 auto 2rem; }

  .cta-banner-inner { grid-template-columns: 1fr; }
  .cta-banner-img img { min-height: 250px; max-height: 300px; }

  .team-crd { grid-template-columns: 1fr; }
  .team-crd--rev .team-img-wrap { order: 0; }
  .team-crd--rev .team-info { order: 0; }
  .team-img-wrap img { min-height: 300px; max-height: 350px; }

  .biz-intro-grid { grid-template-columns: 1fr; }
  .fmt-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .use-grid { grid-template-columns: repeat(2, 1fr); }

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

  .cmp-wrap { grid-template-columns: 1fr; }
  .cmp-divider { padding: 1rem 0; }

  .ftr-inner { grid-template-columns: 1fr; gap: 2rem; }
  .ftr-links { flex-wrap: wrap; }

  .legal-wrap { grid-template-columns: 1fr; padding-top: calc(var(--hdr-h) + 2rem); }
  .legal-toc { position: static; }
  .toc-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--clr-ink);
  }
  .toc-nav { display: none; margin-top: 1rem; }
  .toc-nav.toc-open { display: flex; }

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

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

  .biz-proc-grid { flex-direction: column; }
  .biz-proc-arr { transform: rotate(90deg); }
}

@media (max-width: 640px) {
  :root { --sp-xl: 4rem; --sp-lg: 3rem; }

  .crd-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .use-grid { grid-template-columns: 1fr 1fr; }
  .gal-grid { grid-template-columns: 1fr 1fr; }
  .gal-item--lg { grid-row: auto; }

  .flow-bar { gap: 0.75rem; padding: 1rem; }
  .flow-bar span { font-size: 0.72rem; }
  .flow-bar i { display: none; }

  .facts-strip { gap: 1.5rem; justify-content: flex-start; }
  .frm-two-col { grid-template-columns: 1fr; }

  .cta-banner-txt { padding: 2rem 1.5rem; }
  .proc-step { flex: 0 0 100%; }

  .pg-hero { padding-bottom: 2rem; }
  #ck-consent { bottom: 0; border-radius: var(--radius-xl) var(--radius-xl) 0 0; width: 100%; max-width: 100%; }
}