/* ==========================================================================
   1A Viana's Haushaltshilfe & Alltagsbegleitung
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500;1,9..144,600&family=Work+Sans:wght@400;500;600;700&display=swap');

:root{
  --pink: #E31C79;
  --pink-dark: #A9105A;
  --pink-soft: #FBD9E7;
  --blush: #FDF0F5;
  --gold: #C08A1E;
  --gold-light: #E8C468;
  --cream: #FDF6EC;
  --plum: #3A1730;
  --plum-soft: #6b4a5e;
  --white: #FFFFFF;

  --font-display: 'Fraunces', serif;
  --font-body: 'Work Sans', sans-serif;

  --radius-img: 18px;
  --shadow-soft: 0 18px 40px -18px rgba(58, 23, 48, 0.28);
  --shadow-card: 0 12px 30px -14px rgba(58, 23, 48, 0.22);
  --max-width: 1180px;
}

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

html{ scroll-behavior: smooth; }

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

html{ overflow-x: hidden; }

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

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

h1, h2, h3, h4{
  font-family: var(--font-display);
  color: var(--plum);
  margin: 0 0 0.5em;
  line-height: 1.15;
  font-weight: 600;
}

h1{ font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2{ font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
h3{ font-size: 1.35rem; }

p{ margin: 0 0 1em; }

.container{
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow-tag{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--pink-dark);
  font-size: 1.05rem;
  margin-bottom: 0.6em;
}

.eyebrow-tag svg{ width: 18px; height: 18px; flex-shrink: 0; }

.section{ padding: 88px 0; }
.section--tight{ padding: 64px 0; }
.section--blush{ background: var(--blush); }
.section--plum{ background: var(--plum); color: #F6E9EF; }
.section--plum h2, .section--plum h3{ color: #FBEFF4; }

.section-head{ max-width: 640px; margin-bottom: 48px; }
.section-head.centered{ margin-left: auto; margin-right: auto; text-align: center; }

/* Buttons ------------------------------------------------------------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px); }

.btn--primary{
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 12px 26px -10px rgba(227, 28, 121, 0.55);
}
.btn--primary:hover{ background: var(--pink-dark); box-shadow: 0 14px 30px -10px rgba(169, 16, 90, 0.6); }

.btn--ghost{
  background: transparent;
  border-color: var(--plum);
  color: var(--plum);
}
.btn--ghost:hover{ background: var(--plum); color: var(--white); }

.btn--gold{
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 12px 26px -10px rgba(192, 138, 30, 0.55);
}
.btn--gold:hover{ background: #a3760f; }

.btn--on-dark{
  background: var(--white);
  color: var(--pink-dark);
}
.btn--on-dark:hover{ background: var(--gold-light); color: var(--plum); }

.btn--outline-on-dark{
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.btn--outline-on-dark:hover{ background: rgba(255,255,255,0.14); }

.btn-row{ display: flex; flex-wrap: wrap; gap: 14px; }

/* Header ---------------------------------------------------------------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--white);
  border-bottom: 1px solid rgba(58,23,48,0.08);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.header-actions .btn--primary{
  padding: 10px 20px;
  font-size: 0.9rem;
}

.brand{ display: flex; align-items: center; }
.brand img{ height: 130px; width: auto; }

.main-nav{ display: flex; align-items: center; gap: 34px; }
.main-nav a{
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--plum);
  position: relative;
  padding: 6px 0;
}
.main-nav a::after{
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after{ transform: scaleX(1); }
.main-nav a[aria-current="page"]{ color: var(--pink-dark); }

.header-actions{ display: flex; align-items: center; gap: 14px; }
.header-phone{
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--plum);
  font-size: 0.95rem;
}
.header-phone svg{ width: 18px; height: 18px; color: var(--pink); flex-shrink: 0; }

.nav-toggle{
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: none;
  background: var(--blush);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle svg{ width: 22px; height: 22px; color: var(--pink-dark); }

/* Mobile nav panel is a SIBLING of header, not nested inside, and both
   header + panel stay fully opaque (no backdrop-filter) to avoid the
   Safari/WebKit fixed-inside-sticky rendering bug. */
.mobile-nav{
  display: none;
  position: fixed;
  inset: 0;
  top: 76px;
  background: var(--cream);
  z-index: 55;
  padding: 30px 24px;
  overflow-y: auto;
}
.mobile-nav.is-open{ display: block; }
.mobile-nav a:not(.btn){
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  padding: 16px 0;
  border-bottom: 1px solid rgba(58,23,48,0.1);
  color: var(--plum);
}
.mobile-nav .btn{ margin-top: 24px; width: 100%; justify-content: center; text-align: center; color: var(--white); }

/* Hero -------------------------------------------------------------------
   Full-bleed cinematic photo banner with a floating stat card that
   overlaps the bottom edge into the next section. */
.hero{
  position: relative;
  overflow: hidden;
  background: var(--plum);
  color: var(--white);
  min-height: 640px;
  display: flex;
  align-items: center;
  padding-bottom: 90px;
}
.hero-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img{
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-bg::after{
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(58,23,48,0.92) 0%, rgba(58,23,48,0.72) 38%, rgba(58,23,48,0.32) 68%, rgba(58,23,48,0.15) 100%),
    linear-gradient(0deg, rgba(58,23,48,0.55) 0%, rgba(58,23,48,0) 30%);
}
.hero-content{
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding-top: 40px;
}
.hero-content .eyebrow-tag{ color: var(--gold-light); }
.hero h1{ color: var(--white); }
.hero h1 em{
  font-style: italic;
  color: var(--gold-light);
}
.hero-lede{
  font-size: 1.15rem;
  color: #F0DCE6;
  max-width: 46ch;
}

.hero-float-card{
  position: relative;
  z-index: 2;
  margin-top: -64px;
}
.hero-float-inner{
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  padding: 30px 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 26px 30px;
  width: 100%;
  box-sizing: border-box;
}
.hero-stat{
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1 1 190px;
  min-width: 0;
  max-width: 100%;
}
.hero-stat .stat-icon{
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--blush);
  color: var(--pink-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-stat .stat-icon svg{ width: 22px; height: 22px; }
.hero-stat > div{ min-width: 0; overflow-wrap: anywhere; }
.hero-stat strong{
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--plum);
}
.hero-stat span{ font-size: 0.86rem; color: var(--plum-soft); }

/* Page hero (secondary pages) --------------------------------------------
   Same full-bleed photo-banner language as the homepage hero, at a
   shorter height, so the "hero concept" is consistent site-wide. */
.page-hero{
  position: relative;
  background: var(--plum);
  color: var(--white);
  min-height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero-bg{ position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img{ width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.page-hero-bg::after{
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(58,23,48,0.94) 0%, rgba(58,23,48,0.78) 42%, rgba(58,23,48,0.4) 75%, rgba(58,23,48,0.2) 100%);
}
.page-hero .container{ position: relative; z-index: 1; max-width: 640px; padding-top: 20px; padding-bottom: 20px; }
.page-hero h1{ color: var(--white); }
.page-hero p{ color: #EAD3DF; font-size: 1.1rem; max-width: 52ch; }

/* Trust strip ------------------------------------------------------------*/
.trust-strip{
  background: var(--white);
  border-bottom: 1px solid rgba(58,23,48,0.08);
}
.trust-strip .container{
  display: flex;
  flex-wrap: wrap;
  gap: 20px 44px;
  justify-content: center;
  padding: 26px 24px;
}
.trust-item{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--plum-soft);
}
.trust-item svg{ width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }

/* Service cards ---------------------------------------------------------*/
.card-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.service-card{
  background: var(--white);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease;
}
.service-card:hover{ transform: translateY(-6px); }
.service-card .card-media{ aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius-img) var(--radius-img) 0 0; }
.service-card .card-media img{ width: 100%; height: 100%; object-fit: cover; }
.service-card .card-body{ padding: 22px 22px 26px; }
.service-card .card-icon{
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--pink-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.service-card .card-icon svg{ width: 22px; height: 22px; }
.service-card h3{ font-size: 1.15rem; margin-bottom: 6px; }
.service-card p{ font-size: 0.95rem; color: var(--plum-soft); margin-bottom: 0; }

/* Split feature sections --------------------------------------------------*/
.split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split.reverse .split-media{ order: 2; }
.split-media{ position: relative; }
.split-media img{
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  border-radius: var(--radius-img);
  box-shadow: var(--shadow-card);
  position: relative;
  z-index: 1;
}
.split-media::before{
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: var(--radius-img);
  background: var(--pink-soft);
  z-index: 0;
}
.split-media.dot-tl::before{ transform: translate(-18px, -18px); }
.split-media.dot-br::before{ transform: translate(18px, 18px); background: #F3E1B8; }

.value-list{ list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 16px; }
.value-list li{
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.value-list .val-icon{
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--blush);
  color: var(--pink-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.value-list .val-icon svg{ width: 18px; height: 18px; }
.value-list strong{ display: block; font-family: var(--font-display); font-size: 1.05rem; }
.value-list p{ margin: 2px 0 0; color: var(--plum-soft); font-size: 0.95rem; }

/* Values grid (3-up) ------------------------------------------------------*/
.values-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.value-card{
  background: var(--white);
  border-radius: 22px;
  padding: 32px 26px;
  box-shadow: var(--shadow-card);
  text-align: left;
}
.value-card .card-icon{
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--pink-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.value-card .card-icon svg{ width: 24px; height: 24px; }

/* Process steps (genuine sequence, numbering is meaningful) -------------- */
.process-list{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.process-step{
  position: relative;
  padding: 30px 22px 24px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
}
.process-step::before{
  counter-increment: step;
  content: counter(step);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--white);
  background: var(--pink);
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.process-step h3{ font-size: 1.05rem; margin-bottom: 6px; }
.process-step p{ font-size: 0.92rem; color: var(--plum-soft); margin: 0; }

/* Long service list (leistungen page) -------------------------------------*/
.service-row{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
  padding: 54px 0;
  border-bottom: 1px solid rgba(58,23,48,0.08);
}
.service-row:last-child{ border-bottom: none; }
.service-row.reverse .service-row-media{ order: 2; }
.service-row-media{ position: relative; }
.service-row-media img{
  width: 100%;
  aspect-ratio: 6/5;
  object-fit: cover;
  border-radius: var(--radius-img);
  box-shadow: var(--shadow-card);
  position: relative;
  z-index: 1;
}
.service-row-media::before{
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: var(--radius-img);
  background: var(--gold-light);
  opacity: 0.55;
  transform: translate(16px, 16px);
  z-index: 0;
}
.service-row-number{
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 6px;
  display: block;
}

/* CTA banner ---------------------------------------------------------------*/
.cta-banner{
  background: linear-gradient(120deg, var(--pink) 0%, var(--pink-dark) 100%);
  color: var(--white);
  border-radius: 32px;
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-banner::before{
  content: '';
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  top: -100px; right: -60px;
}
.cta-banner h2{ color: var(--white); margin-bottom: 8px; }
.cta-banner p{ color: #FCE1EC; margin-bottom: 0; max-width: 46ch; }
.cta-banner-text{ position: relative; z-index: 1; flex: 1 1 320px; }
.cta-banner .btn-row{ position: relative; z-index: 1; }

/* FAQ accordion ------------------------------------------------------------*/
.faq-wrap{
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}
.faq-item{
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  padding: 4px 26px;
}
.faq-item summary{
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--plum);
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary .faq-icon{
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--pink-dark);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.faq-item summary .faq-icon svg{ width: 16px; height: 16px; }
.faq-item[open] summary .faq-icon{
  transform: rotate(45deg);
  background: var(--pink);
  color: var(--white);
}
.faq-item p{
  padding: 0 0 22px;
  margin: 0;
  color: var(--plum-soft);
  font-size: 0.98rem;
  max-width: 62ch;
}

/* Contact page ------------------------------------------------------------*/
.contact-grid{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: start;
}
.contact-card{
  background: var(--white);
  border-radius: 26px;
  padding: 34px;
  box-shadow: var(--shadow-card);
}
.contact-list{ list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 20px; }
.contact-list li{ display: flex; gap: 14px; align-items: flex-start; }
.contact-list .val-icon{
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--blush);
  color: var(--pink-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-list .val-icon svg{ width: 20px; height: 20px; }
.contact-list a{ font-weight: 600; }
.contact-list a:hover{ color: var(--pink-dark); }

.hours-table{ width: 100%; border-collapse: collapse; margin-top: 12px; }
.hours-table td{ padding: 7px 0; font-size: 0.95rem; border-bottom: 1px dashed rgba(58,23,48,0.15); }
.hours-table td:last-child{ text-align: right; font-weight: 600; }

.form-card{
  background: var(--white);
  border-radius: 26px;
  padding: 38px;
  box-shadow: var(--shadow-card);
}
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field{ margin-bottom: 18px; }
.field label{ display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; }
.field input, .field select, .field textarea{
  width: 100%;
  padding: 13px 16px;
  border-radius: 14px;
  border: 1.5px solid rgba(58,23,48,0.16);
  font-family: var(--font-body);
  font-size: 0.98rem;
  background: var(--cream);
  color: var(--plum);
  transition: border-color 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline: none;
  border-color: var(--pink);
}
.field textarea{ resize: vertical; min-height: 120px; }
.form-note{ font-size: 0.85rem; color: var(--plum-soft); margin-top: 4px; }

.map-embed{
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-top: 28px;
  border: none;
}
.map-embed iframe{ width: 100%; height: 320px; border: none; display: block; }

/* Footer -------------------------------------------------------------------*/
.site-footer{
  background: var(--plum);
  color: #EAD3DF;
  padding: 64px 0 28px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.footer-brand img{
  height: 130px;
  width: auto;
  margin-bottom: 18px;
  background: var(--white);
  padding: 14px 22px;
  border-radius: 16px;
  display: inline-block;
}
.footer-brand p{ color: #D9B4C6; font-size: 0.92rem; max-width: 30ch; }
.footer-col h4{ color: var(--gold-light); font-size: 1rem; margin-bottom: 16px; font-family: var(--font-display); }
.footer-col ul{ list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a{ font-size: 0.94rem; color: #EAD3DF; }
.footer-col a:hover{ color: var(--gold-light); }
.footer-social{ display: flex; gap: 12px; margin-top: 6px; }
.footer-social a{
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover{ background: var(--pink); }
.footer-social svg{ width: 18px; height: 18px; }
.footer-bottom{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 24px;
  font-size: 0.85rem;
  color: #C79AB0;
}
.footer-legal-links{ display: flex; gap: 16px; }
.footer-legal-links a{ color: #C79AB0; }
.footer-legal-links a:hover{ color: var(--gold-light); }

/* Floating action buttons ---------------------------------------------- */
.floating-actions{
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fab{
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px -8px rgba(58,23,48,0.45);
  transition: transform 0.2s ease;
}
.fab:hover{ transform: scale(1.08); }
.fab svg{ width: 26px; height: 26px; }
.fab--call{ background: var(--pink); color: var(--white); }
.fab--whatsapp{ background: #25D366; color: var(--white); }

/* Utility ------------------------------------------------------------------*/
.text-center{ text-align: center; }
.mt-0{ margin-top: 0; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px){
  .hero{ min-height: 560px; }
  .hero-content{ max-width: 100%; }
  .hero-float-inner{ padding: 26px; gap: 22px 24px; }
  .card-grid{ grid-template-columns: repeat(2, 1fr); }
  .split{ grid-template-columns: 1fr; gap: 34px; }
  .split.reverse .split-media{ order: 0; }
  .values-grid{ grid-template-columns: repeat(2, 1fr); }
  .process-list{ grid-template-columns: repeat(2, 1fr); }
  .service-row{ grid-template-columns: 1fr; gap: 26px; }
  .service-row.reverse .service-row-media{ order: 0; }
  .contact-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .page-hero{ min-height: 300px; }
}

@media (max-width: 720px){
  .main-nav{ display: none; }
  .header-phone{ display: none; }
  .nav-toggle{ display: flex; }
  .brand img{ height: 90px; }
  .header-actions .btn--primary{ padding: 9px 16px; font-size: 0.85rem; }
  .section{ padding: 60px 0; }
  .card-grid{ grid-template-columns: 1fr; }
  .values-grid{ grid-template-columns: 1fr; }
  .process-list{ grid-template-columns: 1fr; }
  .cta-banner{ padding: 40px 26px; flex-direction: column; align-items: flex-start; }
  .footer-grid{ grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom{ flex-direction: column; }
  .form-row{ grid-template-columns: 1fr; }

  /* Hero: anchor content to the bottom of the photo and switch the
     scrim to a vertical gradient so the image still reads on a
     narrow screen instead of being mostly covered. */
  .hero{
    min-height: 78vh;
    align-items: flex-end;
    padding-bottom: 60px;
  }
  .hero-bg img{ object-position: center 22%; }
  .hero-bg::after{
    background: linear-gradient(180deg, rgba(58,23,48,0.15) 0%, rgba(58,23,48,0.55) 45%, rgba(58,23,48,0.94) 78%, var(--plum) 100%);
  }
  .hero-content{ padding-top: 0; }
  .hero h1{ font-size: 2.15rem; }
  .hero-lede{ font-size: 1rem; }
  .hero .btn-row{ flex-direction: column; }
  .hero .btn-row .btn{ width: 100%; justify-content: center; }
  .hero-float-inner{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 20px;
    padding: 24px;
    width: 100%;
  }
  .hero-stat{
    flex: 0 0 auto;
    width: 100%;
  }
  .hero-float-card{ margin-top: -46px; }

  /* Page hero: same vertical-scrim fix for consistency */
  .page-hero{ min-height: 42vh; align-items: flex-end; padding-bottom: 36px; }
  .page-hero-bg img{ object-position: center 25%; }
  .page-hero-bg::after{
    background: linear-gradient(180deg, rgba(58,23,48,0.2) 0%, rgba(58,23,48,0.65) 50%, rgba(58,23,48,0.95) 100%);
  }
  .page-hero .container{ padding-top: 10px; }

  .contact-card, .form-card{ padding: 26px; }
}

@media (max-width: 420px){
  .hero h1{ font-size: 1.85rem; }
  .hero{ min-height: 82vh; }
  .hero-float-inner{ padding: 20px; }
  .hero-stat strong{ font-size: 1.05rem; }
  .eyebrow-tag{ font-size: 0.95rem; }
}
