/* Privacy Forms Studio — shared stylesheet for all pages (en + de) */

:root {
  color-scheme: light;
  --ink: #0d1416;
  --ink-soft: #1f2a2f;
  --sage: #dce3dc;
  --fog: #f3f4f2;
  --moss: #0f6b5f;
  --moss-dark: #0c534a;
  --ember: #e06a3b;
  --ember-dark: #c55327;
  --sky: #a9c7d0;
  --gold: #f0c75e;
  --paper: #fbfaf7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  min-height: 100vh;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 8% 10%, rgba(15, 107, 95, 0.16), transparent 45%),
    radial-gradient(circle at 85% 5%, rgba(224, 106, 59, 0.2), transparent 40%),
    radial-gradient(circle at 60% 90%, rgba(169, 199, 208, 0.3), transparent 50%),
    linear-gradient(180deg, rgba(251, 250, 247, 0.8), rgba(243, 244, 242, 0.9));
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(13, 20, 22, 0.08) 0.6px, transparent 0.6px);
  background-size: 28px 28px;
  opacity: 0.2;
  z-index: -1;
  pointer-events: none;
}

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: white;
  padding: 10px 18px;
  border-radius: 0 0 12px 0;
  font-weight: 600;
}

.skip-link:focus {
  left: 0;
}

.surveyjs-link {
  text-decoration: underline;
  text-decoration-color: rgba(13, 20, 22, 0.25);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease;
}

.surveyjs-link:hover {
  text-decoration-color: rgba(13, 20, 22, 0.5);
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

/* ---------- Header / navigation ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(251, 250, 247, 0.9);
  border-bottom: 1px solid rgba(13, 20, 22, 0.08);
  transition: transform 0.25s ease;
}

.nav.is-hidden {
  transform: translateY(-110%);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  transition: opacity 0.2s ease;
}

.brand:hover {
  opacity: 0.85;
}

.brand img {
  width: 156px;
  height: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
  color: rgba(13, 20, 22, 0.7);
}

.nav-links a {
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

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

.nav-links a[aria-current="page"] {
  color: var(--moss-dark);
  font-weight: 600;
  border-bottom-color: var(--moss);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:where(a, button):focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 0;
}

.nav-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffd36a, #ff6b6b);
  color: #2b1400;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px -16px rgba(255, 107, 107, 0.9), 0 0 0 1px rgba(255, 255, 255, 0.7) inset;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -18px rgba(255, 107, 107, 0.95), 0 0 0 1px rgba(255, 255, 255, 0.85) inset;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 4px 6px;
  border-radius: 7px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(13, 20, 22, 0.55);
  transition: color 0.2s ease;
}

.lang-switch:hover {
  color: var(--ink);
}

.lang-switch.is-current {
  background: rgba(15, 107, 95, 0.1);
  color: var(--moss-dark);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(13, 20, 22, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* ---------- Pills & badges ---------- */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(15, 107, 95, 0.12);
  color: var(--moss-dark);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pill span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--moss);
  box-shadow: 0 0 0 6px rgba(15, 107, 95, 0.15);
  animation: pulse 2.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
}

.partner-badge {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(169, 199, 208, 0.2);
  border: 1px solid rgba(15, 107, 95, 0.25);
  color: var(--moss-dark);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.partner-badge:hover {
  background: rgba(169, 199, 208, 0.35);
  border-color: rgba(15, 107, 95, 0.4);
}

/* ---------- YouTube link ---------- */

.yt-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #4b0f0f;
  transition: color 0.2s ease;
}

.yt-link:hover {
  color: #c81d1d;
}

.yt-icon {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff4b4b, #c81d1d);
  box-shadow: 0 4px 10px -6px rgba(200, 29, 29, 0.9);
  flex: 0 0 18px;
}

.yt-icon::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 5px;
  width: 0;
  height: 0;
  border-left: 6px solid #fff6f6;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

.yt-link.is-footer {
  color: rgba(255, 255, 255, 0.7);
}

.yt-link.is-footer:hover {
  color: white;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn-primary {
  background: var(--ink);
  color: white;
  box-shadow: 0 18px 40px -26px rgba(13, 20, 22, 0.8);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #000;
}

.btn-ghost {
  border-color: rgba(13, 20, 22, 0.2);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(13, 20, 22, 0.4);
}

.btn-accent {
  background: #b84f25;
  color: white;
}

.btn-accent:hover {
  background: var(--ember-dark);
  transform: translateY(-2px);
}

.calendly-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(15, 107, 95, 0.18);
  color: var(--moss-dark);
  font-weight: 600;
  border: 1px solid rgba(15, 107, 95, 0.25);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.calendly-link:hover {
  transform: translateY(-2px);
  background: rgba(15, 107, 95, 0.28);
  border-color: rgba(15, 107, 95, 0.4);
}

/* ---------- Hero ---------- */

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  padding: 70px 0 40px;
  align-items: center;
}

.hero h1 {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  line-height: 1.05;
  margin: 18px 0;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(13, 20, 22, 0.7);
  margin: 18px 0 30px;
}

.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  font-size: 0.95rem;
  color: rgba(13, 20, 22, 0.75);
}

.hero-highlights div {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(13, 20, 22, 0.08);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-panel {
  background: linear-gradient(135deg, rgba(15, 107, 95, 0.12), rgba(255, 255, 255, 0.9));
  border-radius: 28px;
  border: 1px solid rgba(13, 20, 22, 0.1);
  padding: 24px;
  box-shadow: 0 40px 90px -60px rgba(13, 20, 22, 0.7);
  position: relative;
  overflow: hidden;
}

.hero-panel::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(224, 106, 59, 0.2);
  top: -120px;
  right: -80px;
  filter: blur(4px);
}

.panel-card {
  background: white;
  border-radius: 20px;
  padding: 18px 20px;
  border: 1px solid rgba(13, 20, 22, 0.08);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.panel-card:last-child {
  margin-bottom: 0;
}

.panel-card h2,
.panel-card h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.panel-card p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(13, 20, 22, 0.7);
}

/* ---------- Sections ---------- */

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.section-title h2 {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0 0 12px;
}

.section-title p {
  color: rgba(13, 20, 22, 0.65);
  margin: 0;
  font-size: 1.05rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 22px;
  padding: 24px;
  border: 1px solid rgba(13, 20, 22, 0.08);
  box-shadow: 0 20px 60px -50px rgba(13, 20, 22, 0.7);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px -60px rgba(13, 20, 22, 0.8);
}

.card span {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 107, 95, 0.12);
  color: var(--moss-dark);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.card p {
  margin: 0;
  color: rgba(13, 20, 22, 0.65);
}

.note {
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(13, 20, 22, 0.08);
  background: rgba(243, 244, 242, 0.85);
  color: rgba(13, 20, 22, 0.75);
}

/* ---------- Flow steps ---------- */

.flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.flow-step {
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(220, 227, 220, 0.6));
  border: 1px solid rgba(13, 20, 22, 0.08);
  position: relative;
}

.flow-step strong {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--ink);
  color: white;
  margin-bottom: 14px;
}

/* ---------- Split / CTA panel ---------- */

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: center;
  padding: 50px;
  border-radius: 28px;
  background: linear-gradient(120deg, rgba(13, 20, 22, 0.96), rgba(15, 83, 74, 0.9));
  color: white;
  position: relative;
  overflow: hidden;
}

.split::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(240, 199, 94, 0.18), transparent 50%);
  opacity: 0.9;
}

.split > * {
  position: relative;
  z-index: 1;
}

.split h2 {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 2.6rem;
  margin: 0 0 16px;
}

.split p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 20px;
}

.split ul {
  padding-left: 18px;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.split li {
  margin-bottom: 8px;
}

.cta-panel {
  padding: 32px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ---------- Comparison matrix ---------- */

.matrix {
  overflow-x: auto;
  border-radius: 24px;
  border: 1px solid rgba(13, 20, 22, 0.1);
  background: rgba(255, 255, 255, 0.85);
}

.matrix table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.matrix th,
.matrix td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid rgba(13, 20, 22, 0.08);
  vertical-align: top;
  font-size: 0.95rem;
}

.matrix th {
  font-weight: 600;
  background: rgba(243, 244, 242, 0.9);
}

.matrix tr:last-child td {
  border-bottom: none;
}

.badge-yes,
.badge-mid,
.badge-no {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-yes {
  background: rgba(15, 107, 95, 0.12);
  color: var(--moss-dark);
}

.badge-mid {
  background: rgba(240, 199, 94, 0.2);
  color: #7a5a12;
}

.badge-no {
  background: rgba(224, 106, 59, 0.15);
  color: #8a3e1c;
}

/* ---------- Screenshot gallery ---------- */

.gallery {
  display: grid;
  gap: 26px;
  margin-top: 32px;
}

.gallery-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: 24px;
  padding: 26px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(13, 20, 22, 0.08);
  box-shadow: 0 18px 34px rgba(13, 20, 22, 0.12);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(15, 107, 95, 0.14), transparent 40%),
    radial-gradient(circle at 100% 0%, rgba(224, 106, 59, 0.12), transparent 40%);
  opacity: 0.6;
  z-index: 0;
}

.gallery-card:nth-child(even)::before {
  background:
    radial-gradient(circle at 0% 0%, rgba(169, 199, 208, 0.25), transparent 40%),
    radial-gradient(circle at 100% 0%, rgba(240, 199, 94, 0.18), transparent 40%);
}

.gallery-card:hover {
  transform: translateY(-4px);
}

.gallery-card-content,
.gallery-card figure {
  position: relative;
  z-index: 1;
}

.gallery-card .eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--moss-dark);
  font-weight: 600;
  margin-bottom: 12px;
}

.gallery-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.gallery-card p {
  color: rgba(13, 20, 22, 0.7);
  line-height: 1.65;
}

.gallery-card figure {
  margin: 0;
  align-self: start;
}

.gallery-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  border: 1px solid rgba(13, 20, 22, 0.1);
  box-shadow: 0 16px 28px rgba(13, 20, 22, 0.16);
}

/* ---------- Contact ---------- */

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  padding: 36px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  border: 1px solid rgba(13, 20, 22, 0.08);
}

.contact-card {
  padding: 24px;
  border-radius: 22px;
  background: rgba(243, 244, 242, 0.8);
  border: 1px solid rgba(13, 20, 22, 0.08);
}

.contact-card h4 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.contact-item {
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  border: 1px solid rgba(13, 20, 22, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.68);
}

.contact-label {
  color: rgba(13, 20, 22, 0.58);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-item a {
  width: fit-content;
  color: var(--moss-dark);
  font-weight: 600;
  overflow-wrap: anywhere;
}

.contact-item a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-card.is-highlight {
  background: linear-gradient(140deg, rgba(15, 107, 95, 0.15), rgba(224, 106, 59, 0.18));
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 107, 95, 0.12);
  color: var(--moss-dark);
  font-size: 0.8rem;
  font-weight: 600;
}

/* ---------- Footer ---------- */

footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 0 30px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

footer h2 {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: white;
  margin: 0 0 12px;
}

footer a {
  color: rgba(255, 255, 255, 0.7);
  display: inline-block;
  padding: 4px 0;
}

.footer-grid img {
  height: auto;
}

.logos span {
  color: rgba(13, 20, 22, 0.82);
}

footer a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 24px;
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.8rem;
}

/* ---------- Video ---------- */

.video-embed {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px -50px rgba(13, 20, 22, 0.5);
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
  color: #fff;
  background: linear-gradient(135deg, var(--moss-dark), var(--ink));
  cursor: pointer;
  font: inherit;
}

.video-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 20, 22, 0.08), rgba(13, 20, 22, 0.72));
}

.video-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-placeholder span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ember);
  font-size: 1.5rem;
}

.video-placeholder strong {
  position: relative;
  z-index: 1;
}

.video-placeholder:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.9s ease forwards;
  animation-delay: var(--delay, 0s);
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .pill span {
    animation: none;
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 4vw 22px;
    background: rgba(251, 250, 247, 0.98);
    border-bottom: 1px solid rgba(13, 20, 22, 0.08);
  }

  .nav-menu.is-open {
    display: flex;
    box-shadow: 0 30px 60px -30px rgba(13, 20, 22, 0.35);
  }

  .nav-links {
    flex-direction: column;
    gap: 12px;
  }

  .nav-ctas {
    flex-wrap: wrap;
  }

  .brand img {
    width: 160px;
  }

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

  .hero {
    padding: 50px 0 20px;
  }

  .split {
    padding: 30px;
  }

  .contact {
    padding: 24px;
  }
}
