/* =========================================================
   MÖBELTRANSPORTE WEISS — Traditionell, klar, lesbar
   ========================================================= */

/* ---------- TOKENS ---------- */
:root{
  /* Farben */
  --white:  #FFFFFF;       /* Hauptfarbe: reines Weiß */
  --cream:  #F5EFE3;       /* Akzent-Boxen, Sektionen */
  --cream-2:#FAF6EE;       /* zarter Creme für Cards in dunklen Sektionen */
  --ink:    #1A1A1A;       /* Haupttext */
  --ink-2:  #3A3A3A;       /* Sekundärtext */
  --ink-3:  #6B6B6B;       /* Schwacher Text */
  --line:   #E5DFD3;       /* Linienfarbe (warm) */
  --line-2: #D9D2C3;
  --orange: #E85D04;       /* Akzentfarbe */
  --orange-2:#C84F00;      /* Tiefer */
  --dark:   #1A1A1A;       /* dunkle Sektion (Kontakt) */
  --gruen:   #2a9d62;       /* Grün für Erfolgsmeldungen */

  /* Schriftarten */
  --ff-display: "Open Sans", sans-serif;
  --ff-body:    "Open Sans", sans-serif;

  /* Layout */
  --maxw: 1200px;
  --pad-x: clamp(1.25rem, 5vw, 3rem);
}

/* ---------- BASE ---------- */
*,*::before,*::after{ box-sizing: border-box; }
html, body{ margin: 0; padding: 0; }
html{ scroll-behavior: smooth; }

/* Font Face */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local('Open Sans Light'), local('OpenSans-Light'), url(/fonts/OpenSans-Light.woff2) format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: local('Open Sans Light Italic'), local('OpenSans-LightItalic'), url(/fonts/OpenSans-LightItalic.woff2) format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Open Sans Regular'), local('OpenSans-Regular'), url(/fonts/OpenSans-Regular.woff2) format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: local('Open Sans Italic'), local('OpenSans-Italic'), url(/fonts/OpenSans-Italic.woff2) format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'), url(/fonts/OpenSans-Semibold.woff2) format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 500 600;
  font-display: swap;
  src: local('Open Sans SemiBold Italic'), local('OpenSans-SemiBoldItalic'), url(/fonts/OpenSans-SemiboldItalic.woff2) format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local('Open Sans Bold'), local('OpenSans-Bold'), url(/fonts/OpenSans-Bold.woff2) format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: local('Open Sans Bold Italic'), local('OpenSans-BoldItalic'), url(/fonts/OpenSans-BoldItalic.woff2) format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: local('Open Sans ExtraBold'), local('OpenSans-ExtraBold'), url(/fonts/OpenSans-ExtraBold.woff2) format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: local('Open Sans ExtraBold Italic'), local('OpenSans-ExtraBoldItalic'), url(/fonts/OpenSans-ExtraBoldItalic.woff2) format('woff2');
}

body{
  background: var(--white);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  cursor: default;
}

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

::selection{ background: var(--orange); color: #fff; }

.container{
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--pad-x);
}


/* ============================================================
   HEADER / NAV
   ============================================================ */
.header{
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
.header__inner{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand{
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand__name{
  font-family: var(--ff-display);
    font-weight: 700;
    font-size: 23px;
    letter-spacing: -0.005em;
    color: var(--orange);
    display: flex;
    align-items: center;
    gap: 5px;
    flex-flow: wrap;
}
span.brand__suffix {
    color: var(--ink-3);
    font-size: 10px;
    margin-top: 3px;
}
.brand__sub{
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 2px;
}

.nav{
  display: flex;
  justify-content: center;
  gap: 32px;
}
.nav a{
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.nav a:hover,
.nav a:focus-visible{
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.nav__phone-mobile{ display: none; }

.nav-toggle{
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  background: var(--white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  cursor: pointer;
}
.nav-toggle__bar{
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
}
.nav-toggle:hover,
.nav-toggle:focus-visible{
  border-color: var(--orange);
}

.header__phone{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-decoration: none;
  color: var(--ink);
  line-height: 1.15;
}
.header__phone-label{
  font-size: 12px;
  color: var(--ink-3);
  font-family: var(--ff-body);
}
.header__phone-number{
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--orange);
  letter-spacing: -0.005em;
}


/* ============================================================
   HERO
   ============================================================ */
.hero{
  background: var(--white);
  padding: clamp(48px, 8vw, 96px) 0;
  border-bottom: 1px solid var(--line);
}
.hero.section--dark{
  background: var(--dark);
  border-bottom-color: rgba(255,255,255,0.16);
}
.hero__grid{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.hero__eyebrow{
  margin: 0 0 18px 0;
  font-family: var(--ff-body);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
}

.hero__title{
  margin: 0 0 24px 0;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 5.4vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.hero.section--dark .hero__title{ color: var(--white); }
.hero__title .accent{
  color: var(--orange);
  font-style: italic;
  font-weight: 400;
  white-space: nowrap;
}

.hero__lede{
  margin: 0 0 32px 0;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 560px;
}
.hero.section--dark .hero__lede{ color: rgba(255,255,255,0.85); }

.hero__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero__points{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero__points li{
  position: relative;
  padding-left: 32px;
  font-size: 17px;
  color: var(--ink-2);
}
.hero.section--dark .hero__points li{ color: rgba(255,255,255,0.9); }
.hero__points li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.hero__visual{
  position: relative;
}
.hero__visual img{
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
}
.hero.section--dark .hero__visual img{  }

.hero__seal{
  position: absolute;
  top: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px var(--line);
}
.hero.section--dark .hero__seal{ box-shadow: 0 0 0 1px rgba(255,255,255,0.25); }

.hero.section--dark .btn--outline{
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.75);
}
.hero.section--dark .btn--outline:hover,
.hero.section--dark .btn--outline:focus-visible{
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.hero__seal-top,
.hero__seal-bot{
  font-family: var(--ff-body);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.hero__seal-year{
  font-family: var(--ff-display);
  font-weight: 700;
  font-style: italic;
  font-size: 42px;
  line-height: 1;
  margin: 4px 0 2px;
}


/* ============================================================
   BUTTONS
   ============================================================ */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid transparent;
  letter-spacing: -0.005em;
}
.btn--primary{
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn--primary:hover,
.btn--primary:focus-visible{
  background: var(--orange-2);
  border-color: var(--orange-2);
}
.btn--outline{
  background: var(--white);
  color: var(--ink);
  border-color: var(--ink);
}
.btn--outline:hover,
.btn--outline:focus-visible{
  background: var(--ink);
  color: var(--white);
}
.btn--large{
  padding: 20px 36px;
  font-size: 20px;
}


/* ============================================================
   SECTION SHARED
   ============================================================ */
.section{
  padding: clamp(64px, 10vw, 120px) 0;
  background: var(--white);
}
.section--cream{ background: var(--cream); }
.section--dark{ background: var(--dark); color: var(--white); }

.section__head{
  margin-bottom: clamp(40px, 6vw, 64px);
  max-width: 800px;
}
.section__head--center{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section__eyebrow{
  margin: 0 0 14px 0;
  font-family: var(--ff-body);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
}
.section__eyebrow--light{ color: var(--orange); }

.section__title{
  margin: 0;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.section__title--light{ color: var(--white); }

.section__lede{
  margin: 18px auto 0;
  max-width: 680px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-2);
}
.section__lede--light{ color: rgba(255,255,255,0.85); }


/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal{
  max-width: 860px;
}

.legal__content h2{
  margin: 0 0 10px 0;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  color: var(--ink);
}

.legal__content p{
  margin: 0 0 28px 0;
  color: var(--ink-2);
}

.legal__content a{
  color: var(--orange);
}

.legal__content a:hover,
.legal__content a:focus-visible{
  color: var(--orange-2);
}


/* ============================================================
   LEGAL MODALS
   ============================================================ */
body.modal-open{
  overflow: hidden;
}

.legal-modal{
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(12px, 3vw, 28px);
}

.legal-modal[hidden]{
  display: none;
}

.legal-modal__overlay{
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, 0.72);
}

.legal-modal__panel{
  position: relative;
  width: min(920px, 100%);
  max-height: min(88vh, 100%);
  overflow: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.3);
  padding: clamp(24px, 4vw, 40px);
}

.legal-modal__close{
  position: sticky;
  top: 0;
  margin-left: auto;
  display: block;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.legal-modal__close:hover,
.legal-modal__close:focus-visible{
  border-color: var(--orange);
  color: var(--orange);
}

.legal--modal{
  max-width: none;
}


/* ============================================================
   ABOUT
   ============================================================ */
.about__grid{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  margin-bottom: clamp(48px, 6vw, 72px);
}
.about__copy p{
  margin: 0 0 18px 0;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
}
.about__copy p:last-child{ margin-bottom: 0; }
.about__copy strong{ color: var(--ink); font-weight: 600; }

.about__lede{
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 22px !important;
  line-height: 1.45 !important;
  color: var(--ink) !important;
  font-style: italic;
  margin-top: 15px !important;
}

.about__image{ margin: 0; }
.about__image img{
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
}

.about__stats{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
}
.stat{
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid var(--line);
}
.stat:last-child{ border-right: none; }
.stat__num{
  display: block;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  color: var(--orange);
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}
.stat__label{
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--ink-2);
  font-weight: 500;
}


/* ============================================================
   SERVICES
   ============================================================ */
.services{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service{
  background: var(--cream);
  border: 1px solid var(--line);
  border-top: 4px solid var(--orange);
  border-radius: 4px;
  padding: 36px 32px;
}
.service__title{
  margin: 0 0 14px 0;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 25px;
  line-height: 1.2;
  color: var(--ink);
}
.service__desc{
  margin: 0 0 24px 0;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
}
.service__list{
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.service__list li{
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 17px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.service__list li:last-child{ border-bottom: none; }
.service__list li::before{
  content: "•";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
  font-size: 22px;
  top: 4px;
}


/* ============================================================
   STEPS / ABLAUF
   ============================================================ */
.steps{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  counter-reset: step;
}
.step{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 30px 15px;
  text-align: center;
}
.step__num{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
}
.step__title{
  margin: 0 0 14px 0;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
  color: var(--ink);
}
.step__desc{
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.testimonial{
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 36px 32px;
  margin: 0;
  position: relative;
}
.testimonial__stars{
  color: var(--orange);
  font-size: 20px;
  letter-spacing: 4px;
  margin-bottom: 18px;
}
.testimonial__text{
  margin: 0 0 22px 0;
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink);
  font-style: italic;
}
.testimonial__author{
  display: flex;
  align-items: center;
  gap: 14px;
  font-style: normal;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.testimonial__avatar{
  width: 54px;
  height: 54px;
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url('/bilder/profilbilder.png');
  background-size: 200% 200%;
  background-repeat: no-repeat;
  background-position: 0 0;
}
.testimonial__avatar--heinz{
  background-position: 0 0;
}
.testimonial__avatar--hoffmann{
  background-position: 100% 0;
}
.testimonial__avatar--brendel{
  background-position: 0 100%;
}
.testimonial__avatar--schulz{
  background-position: 100% 100%;
}
.testimonial__author-meta{
  display: flex;
  flex-direction: column;
}
.testimonial__author strong{
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 2px;
}
.testimonial__author span{
  font-size: 14px;
  color: var(--ink-3);
}


/* ============================================================
   KONTAKT
   ============================================================ */
.contact{
  margin: 0 auto;
    max-width: 700px;
}
.contact__card{
  display: flex;
  flex-direction: column;
  padding: 48px 40px;
  background: var(--cream-2);
  color: var(--ink);
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.15);
  text-decoration: none;
  text-align: center;
  justify-content: center;
}
.contact__card:hover,
.contact__card:focus-visible{
  /* background: var(--white); */
}
.contact__label{
  font-family: var(--ff-body);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 14px;
}
.contact__value{
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.015em;
  word-break: break-word;
}
.contact__value--email{
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-style: italic;
  font-weight: 600;
}
.contact__hint{
  font-size: 15px;
  color: var(--ink-3);
}

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

.contact__note{
  text-align: center;
  margin: 40px 0 0 0;
  font-size: 17px;
  color: rgba(255,255,255,0.85);
}
.contact__note strong{ color: var(--white); }


/* ============================================================
   KONTAKTFORMULAR
   ============================================================ */
.cf {
  margin-top: 48px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: clamp(24px, 5vw, 44px);
}
.cf__hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
.cf__step-label {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin: 0 0 20px;
  letter-spacing: 0.02em;
}
.cf__step-label strong { color: var(--white); }

.cf__subjects {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.cf__subject-btn { cursor: pointer; }
.cf__subject-btn input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.cf__subject-btn span {
  display: block;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 4px;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  transition: border-color .15s, background .15s, color .15s;
  user-select: none;
}
.cf__subject-btn:hover span,
.cf__subject-btn:focus-within span {
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}
.cf__subject-btn input:checked + span {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.cf__field {
  display: block;
  width: 100%;
  padding: 13px 15px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 16px;
  margin-bottom: 12px;
  outline: none;
  transition: border-color .15s, background .15s;
}
.cf__field::placeholder { color: rgba(255,255,255,0.38); }
.cf__field:focus {
  border-color: var(--orange);
  background: rgba(255,255,255,0.10);
}
.cf__field--textarea {
  resize: none;
  min-height: 120px;
}

.cf__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.cf__row .cf__field { margin-bottom: 0; }

.cf__actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.cf__btn-back {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.cf__btn-back:hover,
.cf__btn-back:focus-visible {
  background: rgba(255,255,255,0.10);
  color: var(--white);
}

.cf__error {
  margin: 10px 0 0;
  padding: 10px 14px;
  background: rgba(232,93,4,0.15);
  border: 1px solid rgba(232,93,4,0.6);
  border-radius: 4px;
  color: var(--white);
  font-size: 15px;
}

.cf__success {
  text-align: center;
  padding: 40px 20px;
  font-size: 18px;
  color: var(--white);
  line-height: 1.7;
}

@media (max-width: 600px) {
  .cf__row { grid-template-columns: 1fr; }
  .cf__actions { flex-direction: column; }
  .cf__actions .btn { width: 100%; justify-content: center; }
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer{
  background: var(--ink);
  color: var(--white);
  padding: 48px 0 32px;
  border-top: 4px solid var(--orange);
}
.footer__inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.footer__brand{
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  gap: 4px;
}
.footer__brand-name{
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 22px;
}
.footer__brand-sub{
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}

.footer__contact{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  font-size: 17px;
}
.footer__contact a{
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
}
.footer__contact a:hover,
.footer__contact a:focus-visible{
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.footer__legal{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.65);
}
.footer__legal a{
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}
.footer__legal a:hover,
.footer__legal a:focus-visible{
  color: var(--orange);
}

.footer__copy{
  margin: 12px 0 0 0;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px){
  .header__inner{
    grid-template-columns: 1fr auto auto;
    gap: 16px 24px;
  }

  .header__phone{
    grid-column: 2;
    grid-row: 1;
    align-items: flex-end;
  }

  .nav-toggle{
    display: inline-flex;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .nav{
    grid-column: 1 / -1;
    grid-row: 2;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    width: 100%;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    margin-top: 2px;
  }

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

  .nav a{
    width: 100%;
    padding: 10px 0;
  }

  .hero__grid{ grid-template-columns: 1fr; gap: 50px; }
  .hero__visual{ max-width: 520px; margin: 0 auto; }
  .hero__seal{ width: 110px; height: 110px; top: -15px; right: -15px; }
  .hero__seal-year{ font-size: 32px; }

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

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

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

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

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

@media (max-width: 720px){
  body{ font-size: 16px; }

  .header{ padding: 16px 0; }
  .brand__name{ font-size: 20px; }
  .brand__sub{ font-size: 12px; }
  .header__phone-label{ display: none; }
  .header__phone-number{ font-size: 16px; }
  .nav{ font-size: 14px; gap: 6px 16px; }
  .nav a{ font-size: 15px; }

  .hero__title{ font-size: clamp(2.6rem, 8.2vw, 2.5rem); }
  .hero__lede{ font-size: 16px; }
  .hero__actions{ flex-direction: column; align-items: stretch; }
  .hero__actions .btn{ width: 100%; }
  .hero__points li{ font-size: 16px; }

  .about__stats{
    grid-template-columns: repeat(2, 1fr);
    padding: 24px;
    gap: 28px 16px;
  }
  .stat{ padding: 0; border-right: none; }
  .stat:nth-child(odd){
    border-right: 1px solid var(--line);
    padding-right: 16px;
  }

  .service{ padding: 28px 24px; }
  .service__title{ font-size: 22px; }

  .step{ padding: 30px 15px; }

  .testimonial{ padding: 28px 24px; }
  .testimonial__text{ font-size: 17px; }

  .contact__card{ padding: 36px 24px; }
  .contact__value{ font-size: clamp(1.75rem, 7vw, 2.25rem); }
  .contact__value--email{ font-size: 18px; }

  .legal-modal__panel{ max-height: 92vh; }
  .legal-modal__close{ width: 36px; height: 36px; font-size: 24px; }

  .footer__contact{ font-size: 16px; gap: 8px 16px; }
}

@media (max-width: 420px){
  .header__inner{ grid-template-columns: 1fr auto auto; gap: 12px; }
  .header__phone-number{ font-size: 15px; }
  .hero__seal{ width: 88px; height: 88px; border-width: 1px; }
  .hero__seal-top, .hero__seal-bot{ font-size: 10px; }
  .hero__seal-year{ font-size: 24px; }
  .footer__legal{ font-size: 13px; }
}

@media (max-width: 440px){
  .header__phone{ display: none; }

  .nav__phone-mobile{
    display: block;
    font-family: var(--ff-display);
    font-weight: 700;
    color: var(--orange);
    border-top: 1px solid var(--line);
    margin-top: 6px;
    padding-top: 14px !important;
  }
}
