/* ==========================================================================
   Sandra's Mobile Fußpflege — Stylesheet
   ========================================================================== */

/* --- Fonts (self-hosted, latin subset incl. äöüß) ---------------------- */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url('fonts/CormorantGaramond-Variable.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/CormorantGaramond-Italic500.woff2') format('woff2');
}
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('fonts/WorkSans-Variable.woff2') format('woff2');
}

/* --- Design tokens ------------------------------------------------------ */
:root {
  /* Color */
  --ink: #1e1f24;
  --ink-soft: #2b2d34;
  --ink-line: rgba(247, 243, 232, 0.14);
  --gold: #c9a85c;
  --gold-light: #e7d8ac;
  --gold-deep: #6e5420;
  --magenta: #b8175f;
  --cream: #f7f3e8;
  --cream-warm: #efe6d2;
  --paper: #fbf9f3;

  --text: #26262b;
  --text-muted: rgba(38, 38, 43, 0.68);
  --text-on-ink: var(--paper);
  --text-on-ink-muted: rgba(251, 249, 243, 0.72);

  /* Type */
  --font-display: 'Cormorant Garamond', 'Iowan Old Style', 'Palatino Linotype', Georgia, serif;
  --font-body: 'Work Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --space-8: 6rem;
  --space-9: 8rem;
  --section-py: clamp(4rem, 9vw, 8rem);

  /* Layout */
  --container-w: 1180px;
  --container-pad: clamp(1.25rem, 5vw, 4rem);
  --radius-sm: 2px;
  --radius-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- Reset ---------------------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

/* --- Accessibility -------------------------------------------------------*/
.skip-link {
  position: absolute;
  left: var(--space-3);
  top: -60px;
  z-index: 200;
  background: var(--ink);
  color: var(--paper);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: var(--space-3);
}

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

.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;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* --- Layout helpers --------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section {
  padding-block: var(--section-py);
  position: relative;
}

.section-on-ink {
  background: var(--ink);
  color: var(--text-on-ink);
}

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

.section-head {
  max-width: 46ch;
  margin-bottom: var(--space-7);
}

.section-head--center {
  max-width: 52ch;
  margin-inline: auto;
  text-align: center;
}

.kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--gold-deep);
  margin-bottom: var(--space-2);
}

.section-on-ink .kicker {
  color: var(--gold-light);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

.split--reverse .split-media {
  order: 2;
}

.split--reverse .split-body {
  order: 1;
}

/* --- Typography ----------------------------------------------------------*/
h1,
h2,
h3,
.font-display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.section-on-ink h1,
.section-on-ink h2,
.section-on-ink h3 {
  color: var(--paper);
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.05;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 2.75rem);
  line-height: 1.12;
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 600;
}

p {
  max-width: 60ch;
}

.lede {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.section-on-ink .lede {
  color: var(--text-on-ink-muted);
}

.eyebrow-note {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* --- Buttons ---------------------------------------------------------- */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease),
    border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.btn svg {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-on-ink);
  border: 1.5px solid var(--ink-line);
}

.section:not(.section-on-ink) .btn-outline {
  color: var(--ink);
  border-color: rgba(30, 31, 36, 0.2);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-text {
  font-weight: 600;
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 0.15rem;
  border-radius: 0;
}

.btn-text:hover {
  color: var(--gold);
}

/* --- Header ------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 232, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(30, 31, 36, 0.08);
  transition: box-shadow 0.3s var(--ease), padding 0.3s var(--ease);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(30, 31, 36, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: var(--space-4);
  transition: padding 0.3s var(--ease);
}

.is-scrolled .header-inner {
  padding-block: var(--space-2);
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-first {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.55rem;
  color: var(--ink);
}

.logo-second {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 0.15rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav-links {
  display: flex;
  gap: var(--space-5);
}

.nav-links a {
  font-size: 0.98rem;
  font-weight: 600;
  position: relative;
  padding-block: var(--space-1);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 1.5px;
  background: var(--gold);
  transition: right 0.3s var(--ease);
}

.nav-links a:hover::after {
  right: 0;
}

.nav-cta {
  display: inline-flex;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Hero ---------------------------------------------------------------*/
.hero {
  background: var(--ink);
  color: var(--text-on-ink);
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.5rem, 11vw, 8rem) clamp(5rem, 12vw, 9rem);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.hero-art {
  position: absolute;
  top: 50%;
  right: -8%;
  transform: translateY(-50%);
  width: min(48vw, 640px);
  color: var(--gold);
  opacity: 0.9;
  z-index: 1;
  pointer-events: none;
}

.hero-art .draw-path {
  stroke-dasharray: 2600;
  stroke-dashoffset: 2600;
  animation: draw-line 2.6s var(--ease) 0.3s forwards;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-light);
  font-size: 1.05rem;
  margin-bottom: var(--space-4);
  opacity: 0;
  animation: fade-up 0.9s var(--ease) 0.15s forwards;
}

.hero h1 {
  opacity: 0;
  animation: fade-up 0.9s var(--ease) 0.35s forwards;
}

.hero-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  color: var(--text-on-ink-muted);
  margin-top: var(--space-4);
  opacity: 0;
  animation: fade-up 0.9s var(--ease) 0.55s forwards;
}

.hero-area {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin-top: var(--space-3);
  opacity: 0;
  animation: fade-up 0.9s var(--ease) 0.7s forwards;
}

.hero .btn-row {
  justify-content: center;
  margin-top: var(--space-6);
  opacity: 0;
  animation: fade-up 0.9s var(--ease) 0.9s forwards;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes draw-line {
  to {
    stroke-dashoffset: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow,
  .hero h1,
  .hero-sub,
  .hero-area,
  .hero .btn-row {
    opacity: 1;
    animation: none;
  }
  .hero-art .draw-path {
    stroke-dashoffset: 0;
    animation: none;
  }
}

/* --- Ornament dividers -------------------------------------------------- */
.divider {
  display: flex;
  justify-content: center;
  padding-block: var(--space-3);
  color: var(--gold);
  opacity: 0.8;
}

.divider svg {
  width: 180px;
  height: auto;
}

.section-on-ink .divider {
  color: var(--gold-light);
}

/* --- Media / ornament frames -------------------------------------------- */
.split-media {
  display: flex;
  justify-content: center;
  color: var(--gold);
}

.split-media svg {
  width: 100%;
  max-width: 360px;
  height: auto;
}

/* --- Über Sandra ----------------------------------------------------- */
.credentials {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(30, 31, 36, 0.14);
}

.credential {
  display: flex;
  gap: var(--space-4);
  align-items: baseline;
}

.credential-year {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--gold-deep);
  min-width: 4.5ch;
}

.credential-text {
  font-weight: 600;
  color: var(--text);
}

/* --- Mobile Fußpflege highlights ---------------------------------------*/
.highlight-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-weight: 600;
  font-size: 0.98rem;
}

.highlight-item svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- Leistungen ----------------------------------------------------------*/
.services-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: var(--space-6);
  align-items: stretch;
}

.service-main {
  background: var(--ink);
  color: var(--text-on-ink);
  border-radius: var(--radius-sm);
  padding: var(--space-7);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.service-main-icon {
  width: 46px;
  height: 46px;
  color: var(--gold);
  margin-bottom: var(--space-5);
}

.service-main-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--paper);
}

.service-main-includes {
  color: var(--text-on-ink-muted);
  font-size: 1.05rem;
  margin-top: var(--space-3);
}

.service-main-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-4);
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid var(--ink-line);
}

.service-main-price {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  color: var(--gold-light);
  line-height: 1;
}

.service-main-extra {
  text-align: right;
  color: var(--text-on-ink-muted);
  font-size: 0.92rem;
  max-width: 18ch;
}

.service-main-extra strong {
  display: block;
  color: var(--gold-light);
  font-size: 1.15rem;
  font-family: var(--font-display);
}

.services-side {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.services-side-label {
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
}

.service-card {
  background: var(--paper);
  border: 1px solid rgba(201, 168, 92, 0.35);
  border-radius: var(--radius-sm);
  padding: var(--space-5);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

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

.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-3);
}

.service-card svg {
  width: 30px;
  height: 30px;
  color: var(--gold);
  flex-shrink: 0;
}

.service-card-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.service-card-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--ink);
  white-space: nowrap;
}

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

/* --- Reflexzonenmassage ---------------------------------------------- */
.reflex {
  text-align: center;
  overflow: hidden;
}

.reflex-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(90vw, 780px);
  color: var(--gold);
  opacity: 0.1;
  z-index: 0;
}

.reflex-inner {
  position: relative;
  z-index: 1;
  max-width: 56ch;
  margin-inline: auto;
}

.reflex-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1.15rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-top: var(--space-6);
}

.reflex-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--magenta);
}

.reflex-center-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 24px 6px rgba(184, 23, 95, 0.45);
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* --- Ablauf ------------------------------------------------------------- */
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  position: relative;
}

.process-connector {
  position: absolute;
  top: 26px;
  left: 12%;
  right: 12%;
  height: 42px;
  color: var(--gold);
  opacity: 0.55;
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.process-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.process-step:nth-child(2) {
  transition-delay: 0.12s;
}

.process-step:nth-child(3) {
  transition-delay: 0.24s;
}

.process-number {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  background: var(--cream);
  margin-bottom: var(--space-4);
}

.process-step h3 {
  margin-bottom: var(--space-2);
}

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

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

/* --- Kontakt -------------------------------------------------------------*/
.contact {
  background: var(--ink);
  color: var(--text-on-ink);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin-inline: auto;
}

.contact .btn-row {
  justify-content: center;
  margin-top: var(--space-6);
}

.contact-direct {
  margin-top: var(--space-7);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid var(--ink-line);
}

.contact-direct a {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-light);
}

.contact-direct a:hover {
  color: var(--gold);
}

/* --- Footer ---------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: var(--text-on-ink-muted);
  padding-top: var(--space-8);
  border-top: 1px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: var(--space-6);
  padding-bottom: var(--space-7);
}

.footer-brand .logo-first {
  color: var(--paper);
}

.footer-brand p {
  margin-top: var(--space-3);
  max-width: 32ch;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: var(--space-4);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-flourish {
  display: flex;
  justify-content: center;
  padding-block: var(--space-5);
  color: var(--gold);
}

.footer-flourish svg {
  width: 130px;
  height: auto;
}

.footer-bottom {
  border-top: 1px solid var(--ink-line);
  padding-block: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-6);
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
}

.footer-legal {
  display: flex;
  gap: var(--space-5);
}

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

/* --- Legal pages (Impressum / Datenschutz) ------------------------------ */
.legal-page {
  padding-block: var(--space-8);
}

.legal-page .container {
  max-width: 780px;
}

.legal-page h1 {
  margin-bottom: var(--space-6);
}

.legal-page h2 {
  font-size: 1.5rem;
  margin-top: var(--space-7);
  margin-bottom: var(--space-3);
}

.legal-page p,
.legal-page li {
  color: var(--text-muted);
  margin-bottom: var(--space-3);
}

.legal-todo {
  display: block;
  background: var(--cream-warm);
  border-left: 3px solid var(--magenta);
  padding: var(--space-4) var(--space-5);
  font-weight: 600;
  color: var(--ink);
  border-radius: var(--radius-sm);
}

.back-home {
  display: inline-block;
  margin-bottom: var(--space-6);
  font-weight: 600;
}

/* --- Responsive ----------------------------------------------------------*/
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-side {
    flex-direction: row;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 880px) {
  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(340px, 82vw);
    height: 100vh;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: var(--space-7);
    padding: 6.5rem var(--space-5) var(--space-5);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    box-shadow: -12px 0 32px rgba(30, 31, 36, 0.14);
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .nav-links {
    flex-direction: column;
    gap: var(--space-5);
    width: 100%;
  }

  .nav-links a {
    font-size: 1.25rem;
    font-family: var(--font-display);
  }

  .nav-cta {
    width: 100%;
  }

  .nav-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .nav-toggle {
    display: flex;
  }

  .split,
  .split--reverse {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .split-media,
  .split--reverse .split-media {
    order: -1;
  }

  .split-media svg {
    max-width: 260px;
  }

  .hero-art {
    width: min(70vw, 420px);
    opacity: 0.5;
    right: -20%;
  }

  .highlight-list {
    grid-template-columns: 1fr;
  }

  .process {
    grid-template-columns: 1fr;
    gap: var(--space-7);
  }

  .process-connector {
    display: none;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .btn-row {
    flex-direction: column;
    align-items: stretch;
  }

  .service-main-foot {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }

  .service-main-extra {
    text-align: left;
  }

  .contact-direct {
    flex-direction: column;
    gap: var(--space-4);
  }

  .services-side {
    flex-direction: column;
  }
}
