/* ==========================================================================
   Galmendo Umzüge — Soft Modern Stylesheet
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  
  --primary: #1F3D3B;
  --accent: #FF6B4A;
  --ink: #23211D;
  --surface: #FAF7F2;

  
  --primary-10: color-mix(in oklch, var(--primary), white 92%);
  --primary-20: color-mix(in oklch, var(--primary), white 82%);
  --primary-30: color-mix(in oklch, var(--primary), white 70%);
  --primary-50: color-mix(in oklch, var(--primary), white 50%);
  --primary-dark: color-mix(in oklch, var(--primary), black 18%);
  --primary-darker: color-mix(in oklch, var(--primary), black 32%);

  --accent-10: color-mix(in oklch, var(--accent), white 88%);
  --accent-light: color-mix(in oklch, var(--accent), white 25%);
  --accent-dark: color-mix(in oklch, var(--accent), black 15%);

  --surface-alt: color-mix(in oklch, var(--surface), var(--primary) 5%);
  --surface-deep: color-mix(in oklch, var(--surface), var(--primary) 12%);
  --surface-card: color-mix(in oklch, white, var(--surface) 30%);

  --border-soft: color-mix(in oklch, var(--primary), white 80%);
  --border-soft-2: color-mix(in oklch, var(--primary), white 70%);
  --text-muted: color-mix(in oklch, var(--ink), white 38%);
  --text-faint: color-mix(in oklch, var(--ink), white 55%);

  
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  
  --shadow-sm: 0 1px 2px color-mix(in oklch, var(--primary), transparent 88%), 0 1px 1px color-mix(in oklch, var(--primary), transparent 92%);
  --shadow-md: 0 8px 20px color-mix(in oklch, var(--primary), transparent 85%), 0 3px 8px color-mix(in oklch, var(--primary), transparent 90%);
  --shadow-lg: 0 24px 48px color-mix(in oklch, var(--primary), transparent 82%), 0 10px 20px color-mix(in oklch, var(--primary), transparent 88%), 0 2px 6px color-mix(in oklch, var(--primary), transparent 92%);
  --shadow-accent: 0 16px 32px color-mix(in oklch, var(--accent), transparent 68%), 0 6px 14px color-mix(in oklch, var(--accent), transparent 78%);

  --ease: cubic-bezier(.25,.8,.35,1);
}

body {
  margin: 0;
  font-family: 'Instrument Sans', sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-weight: 600; line-height: 1.15; margin: 0 0 .5em; color: var(--primary-darker); }
h1 { font-size: clamp(2.4rem, 4.5vw + 1rem, 4.2rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 2vw + 1rem, 2.6rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.15rem, 1vw + 0.9rem, 1.4rem); }
p { margin: 0 0 1em; color: var(--text-muted); }

.eyebrow-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: var(--accent-10);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.section-lead { max-width: 62ch; }
.section-heading-group { margin-bottom: 40px; }
.section-heading-group.centered-heading { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading-group.centered-heading .section-lead { margin-left: auto; margin-right: auto; }

.highlight-text { color: var(--accent-dark); font-weight: 600; }


.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: color-mix(in oklch, var(--surface), transparent 8%);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
  transition: transform .4s var(--ease);
}
.site-header.nav-hidden { transform: translateY(-100%); }

.nav-bar {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary-darker);
}
.brand-mark strong { font-weight: 700; }
.brand-icon { width: 34px; height: 34px; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a:not(.primary-action) {
  font-weight: 500;
  font-size: 0.96rem;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color .25s var(--ease);
}
.nav-links a:not(.primary-action)::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width .3s var(--ease);
}
.nav-links a:not(.primary-action):hover { color: var(--accent-dark); }
.nav-links a:not(.primary-action):hover::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--accent-dark); }
.nav-action { margin-left: 8px; }

.mobile-toggle {
  display: none;
  background: var(--primary-10);
  border: none;
  width: 46px; height: 46px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary-darker);
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.mobile-toggle:hover { background: var(--primary-20); }
.mobile-toggle.toggle-active { transform: rotate(90deg); }

.dropdown-panel {
  max-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--surface-alt);
  transition: max-height .4s var(--ease);
}
.dropdown-panel a {
  padding: 16px 24px;
  border-top: 1px solid var(--border-soft);
  font-weight: 500;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: background .2s var(--ease);
}
.dropdown-panel a:hover { background: var(--primary-10); }
.dropdown-panel a.primary-action { justify-content: center; margin: 12px 24px 20px; border-top: none; }


.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: white;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  border: none;
  box-shadow: var(--shadow-accent);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  min-height: 44px;
}
.primary-action:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 22px 40px color-mix(in oklch, var(--accent), transparent 62%), 0 8px 18px color-mix(in oklch, var(--accent), transparent 74%);
}

.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--surface-card);
  color: var(--primary-darker);
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-soft-2);
  transition: all .25s var(--ease);
  min-height: 44px;
}
.secondary-action:hover {
  background: var(--primary-10);
  border-color: var(--primary-30);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--primary-darker);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
  transition: gap .25s var(--ease), color .25s var(--ease);
}
.text-link:hover { gap: 14px; color: var(--accent-dark); }


.hero-section {
  position: relative;
  padding: 100px 0 160px;
  overflow: hidden;
  isolation: isolate;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, var(--primary-darker), var(--primary), var(--accent-dark), var(--primary));
  background-size: 300% 300%;
  animation: gradientShift 18s ease infinite;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero-inner { display: flex; justify-content: center; }
.content-panel {
  background: color-mix(in oklch, white, transparent 6%);
  backdrop-filter: blur(6px);
  max-width: 720px;
  padding: 56px 48px;
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.hero-heading { margin-bottom: 20px; }
.hero-subtext { font-size: 1.1rem; max-width: 56ch; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

.hero-floating-image {
  position: relative;
  z-index: 2;
  max-width: 820px;
  width: 88%;
  margin: -110px auto 0;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9;
  object-fit: cover;
}


.hero-heading .word { display: inline-block; }
.hero-heading .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(.6em);
  animation: charReveal .7s var(--ease) forwards;
  animation-delay: calc(var(--char-index) * 0.028s);
}
@keyframes charReveal {
  to { opacity: 1; transform: translateY(0); }
}


.content-block { padding: 100px 0; }
.surface-alt-block { background: var(--surface-alt); }

.scroll-reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.scroll-reveal.reveal-active { opacity: 1; transform: translateY(0); }


.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.feature-card {
  background: var(--surface-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-30);
}
.feature-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: var(--primary-10);
  color: var(--primary-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.feature-card:hover .feature-icon { background: var(--accent); color: white; }


.overlap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  align-items: center;
}
.overlap-image-wrap { position: relative; }
.overlap-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}
.overlap-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
  margin: 0 -40px 0 0;
}
.reverse-layout .overlap-grid { direction: rtl; }
.reverse-layout .overlap-card, .reverse-layout .overlap-image-wrap { direction: ltr; }
.reverse-layout .overlap-card { margin: 0 0 0 -40px; }


.teaser-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.teaser-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.reverse-order { direction: rtl; }
.reverse-order > * { direction: ltr; }

.teaser-steps { display: flex; flex-direction: column; gap: 22px; }
.mini-step { display: flex; gap: 18px; align-items: flex-start; }
.step-number {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
  background: var(--accent-10);
  min-width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mini-step h4 { margin: 0 0 4px; font-size: 1.05rem; }
.mini-step p { margin: 0; font-size: .95rem; }


.process-list { display: flex; flex-direction: column; gap: 48px; }
.process-step {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.process-step:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.step-visual img { border-radius: var(--radius-md); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.step-visual { display: flex; align-items: center; justify-content: center; }
.step-number-lg {
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--primary-20);
}


.cta-banner {
  background: linear-gradient(120deg, var(--primary-darker), var(--primary));
  padding: 70px 0;
  border-radius: var(--radius-xl);
  margin: 0 24px;
  color: white;
  box-shadow: var(--shadow-lg);
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: white; }
.cta-banner p { color: color-mix(in oklch, white, transparent 20%); margin: 0; max-width: 46ch; }


.page-hero {
  padding: 90px 0 60px;
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border-soft);
}


.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}
.comparison-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.comparison-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }


.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}
.form-panel, .contact-details {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-soft);
}
.form-lead { font-size: .95rem; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field-group { display: flex; flex-direction: column; gap: 8px; }
.field-group.full-width { grid-column: 1 / -1; }
.field-group label { font-weight: 600; font-size: .92rem; }
.field-group input, .field-group textarea {
  border: 1px solid var(--border-soft-2);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 1rem;
  background: white;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
  min-height: 44px;
}
.field-group textarea { min-height: 140px; resize: vertical; }
.field-group input:focus, .field-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-10);
}
.field-group input.field-error, .field-group textarea.field-error { border-color: var(--accent-dark); }

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 26px 0;
  font-size: .92rem;
}
.checkbox-group input { width: 20px; height: 20px; margin-top: 3px; accent-color: var(--accent); flex-shrink: 0; }
.checkbox-group a { text-decoration: underline; }

.submit-action { display: flex; justify-content: flex-start; }

.contact-details h2 { margin-bottom: 24px; }
.detail-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.detail-item i { width: 40px; height: 40px; border-radius: var(--radius-sm); background: var(--primary-10); color: var(--primary-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.detail-item p { margin: 0; }
.map-frame { border-radius: var(--radius-md); overflow: hidden; margin-top: 12px; box-shadow: var(--shadow-sm); }


.footer-section {
  background: var(--primary-darker);
  color: color-mix(in oklch, white, transparent 12%);
  margin-top: 60px;
  padding-top: 70px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid color-mix(in oklch, white, transparent 85%);
}
.footer-column { display: flex; flex-direction: column; gap: 12px; }
.footer-column h4 { color: white; font-size: 1rem; margin-bottom: 4px; }
.footer-column a { color: color-mix(in oklch, white, transparent 20%); font-size: .95rem; transition: color .25s var(--ease); }
.footer-column a:hover { color: var(--accent-light); }
.footer-brand .brand-mark { color: white; }
.footer-brand p { color: color-mix(in oklch, white, transparent 30%); font-size: .92rem; }
.footer-column p { color: color-mix(in oklch, white, transparent 20%); font-size: .92rem; margin: 0; }
.footer-column p a { display: inline; }
.footer-column i { margin-right: 6px; color: var(--accent-light); }

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .85rem;
  color: color-mix(in oklch, white, transparent 35%);
}

.lang-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in oklch, white, transparent 90%);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  color: white;
}


.thanks-section { padding: 160px 0; }
.thanks-inner { text-align: center; }
.thanks-inner h1 { margin-bottom: 24px; }
.thanks-inner p { font-size: 1.1rem; margin-bottom: 40px; }


.legal-content { max-width: 840px; margin: 0 auto; }
.legal-content h2 { margin-top: 2.2em; }
.legal-content p { font-size: 1rem; }
.narrative-legal p { margin-bottom: 1.6em; }
.table-block {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 32px;
  background: var(--surface-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.table-block td { padding: 14px 20px; border-bottom: 1px solid var(--border-soft); font-size: .95rem; }
.table-block td:first-child { font-weight: 600; width: 40%; color: var(--primary-darker); }
.table-block tr:last-child td { border-bottom: none; }


.consent-panel {
  position: fixed;
  top: 24px;
  left: 24px;
  z-index: 999;
  max-width: 340px;
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-soft);
  padding: 22px;
  transform: translateX(-140%);
  transition: transform .5s var(--ease);
}
.consent-panel.panel-visible { transform: translateX(0); }
.consent-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--primary-10);
  color: var(--primary-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  font-size: 1.1rem;
}
.consent-title { font-weight: 700; margin: 0 0 6px; font-size: 1rem; }
.consent-text { font-size: .87rem; margin: 0 0 16px; }
.consent-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.consent-settings-btn, .consent-accept-btn {
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: .85rem;
  padding: 10px 16px;
  min-height: 40px;
  transition: all .25s var(--ease);
}
.consent-settings-btn { background: var(--primary-10); color: var(--primary-darker); }
.consent-settings-btn:hover { background: var(--primary-20); }
.consent-accept-btn { background: var(--accent); color: white; box-shadow: var(--shadow-accent); }
.consent-accept-btn:hover { background: var(--accent-dark); transform: translateY(-2px); }

.modal-overlay {
  position: fixed;
  inset: 0;
  background: color-mix(in oklch, var(--primary-darker), transparent 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
  padding: 24px;
}
.modal-overlay.overlay-active { opacity: 1; pointer-events: auto; }
.consent-modal {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 520px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.consent-modal h3 { margin-top: 0; }
.category-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--border-soft);
}
.category-row p { font-size: .87rem; margin: 4px 0 0; }
.category-toggle { position: relative; display: inline-block; width: 46px; height: 26px; flex-shrink: 0; }
.category-toggle input { opacity: 0; width: 0; height: 0; }
.category-toggle span {
  position: absolute; inset: 0;
  background: var(--border-soft-2);
  border-radius: var(--radius-pill);
  transition: background .25s var(--ease);
  cursor: pointer;
}
.category-toggle span::before {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  left: 3px; top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform .25s var(--ease);
  box-shadow: var(--shadow-sm);
}
.category-toggle input:checked + span { background: var(--accent); }
.category-toggle input:checked + span::before { transform: translateX(20px); }
.category-toggle.disabled span { opacity: .6; cursor: not-allowed; }
.consent-modal-actions { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }
.consent-save-btn, .consent-accept-all-btn {
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 600;
  padding: 12px 22px;
  min-height: 44px;
  transition: all .25s var(--ease);
}
.consent-save-btn { background: var(--primary-10); color: var(--primary-darker); }
.consent-save-btn:hover { background: var(--primary-20); }
.consent-accept-all-btn { background: var(--accent); color: white; box-shadow: var(--shadow-accent); }
.consent-accept-all-btn:hover { background: var(--accent-dark); transform: translateY(-2px); }


@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-step { grid-template-columns: 1fr; }
  .step-visual { max-width: 320px; margin: 0 auto; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .overlap-grid, .teaser-layout, .contact-layout, .form-grid { grid-template-columns: 1fr; }
  .overlap-card { margin: -30px 20px 0; }
  .reverse-layout .overlap-card { margin: -30px 20px 0; }
  .reverse-order { direction: ltr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .hero-floating-image { margin-top: -70px; }
  .content-panel { padding: 40px 28px; }
}

@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .content-block { padding: 70px 0; }
  .cta-banner { margin: 0 12px; padding: 50px 0; border-radius: var(--radius-lg); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .consent-panel { left: 12px; top: 12px; max-width: calc(100% - 24px); }
  .hero-section { padding: 70px 0 120px; }
  .field-group.phone-field { grid-column: 1 / -1; }
}