/* Lokal eingebundene Schriftarten (Montserrat/Open Sans, DSGVO-konform ohne
   Verbindung zu Google-Servern) statt Google-Fonts-CDN-Import. Dateien
   liegen in fonts/, jeweils nur der "latin"-Subset (ausreichend fuer
   deutsche Texte inkl. Umlaute/ß). */
@font-face{
  font-family:'Montserrat';
  font-style:normal;
  font-weight:400;
  font-display:swap;
  src:url('../fonts/montserrat-400.woff2') format('woff2');
}
@font-face{
  font-family:'Montserrat';
  font-style:normal;
  font-weight:500;
  font-display:swap;
  src:url('../fonts/montserrat-500.woff2') format('woff2');
}
@font-face{
  font-family:'Montserrat';
  font-style:normal;
  font-weight:600;
  font-display:swap;
  src:url('../fonts/montserrat-600.woff2') format('woff2');
}
@font-face{
  font-family:'Montserrat';
  font-style:normal;
  font-weight:700;
  font-display:swap;
  src:url('../fonts/montserrat-700.woff2') format('woff2');
}
@font-face{
  font-family:'Open Sans';
  font-style:normal;
  font-weight:400;
  font-display:swap;
  src:url('../fonts/open-sans-400.woff2') format('woff2');
}
@font-face{
  font-family:'Open Sans';
  font-style:normal;
  font-weight:600;
  font-display:swap;
  src:url('../fonts/open-sans-600.woff2') format('woff2');
}

:root{
  /* RAL 2004 Reinorange (Button-Akzent) */
  --orange: #e75b12;
  --orange-light: #ee8c59;
  --blue: #5b8fc7;
  --blue-light: #7fb0e0;
  /* RAL 5011 Stahlblau (Website-Hintergrund: Hero/Footer/dunkle Kacheln) */
  --dark: #193278;
  /* RAL 5017 Verkehrsblau (Überschrift-Farbe auf hellem Grund) */
  --heading: #0e518d;
  /* rgb(25,50,120) - Hintergrundfarbe Topbar & Footer (Nutzerwunsch 2026-09-04) */
  --header-footer-bg: #193278;
  --grey: #5a5f66;
  --grey-light: #f4f6f8;
  --white: #ffffff;
  --border: #e4e7eb;
  --shadow: 0 2px 4px rgba(35,38,43,0.05);
  --radius: 14px;
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin:0;
  font-family:'Open Sans', 'Segoe UI', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height:1.6;
}

h1,h2,h3,h4{
  font-family:'Montserrat','Segoe UI',sans-serif;
  font-weight:600;
  line-height:1.25;
  margin:0 0 .6em;
  color: var(--heading);
}
h1{ margin-top:38px; } /* ~1cm Abstand ueber jeder H1 */

a{ color: var(--blue); text-decoration:none; }
a:hover{ color: var(--orange); }

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

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

/* ---------- Topbar ---------- */
.topbar{
  background: var(--header-footer-bg);
  color:#cfd3d8;
  font-size:.88rem;
}
.topbar .container{
  display:flex;
  flex-wrap:wrap;
  gap:10px 28px;
  justify-content:space-between;
  align-items:center;
  padding-top:8px;
  padding-bottom:8px;
}
.topbar a{ color:#e9ebee; }
.topbar a:hover{ color: var(--orange-light); }
.topbar span{ display:inline-flex; align-items:center; gap:6px; }

/* ---------- Header / Nav ---------- */
header.site-header{
  border-bottom:1px solid var(--border);
  position:sticky;
  top:0;
  background:var(--white);
  z-index:100;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top:14px;
  padding-bottom:14px;
  gap:20px;
}
.logo-link{
  display:block;
  height:48px;
}
.logo-link img{
  height:48px;
  width:auto;
}

nav.main-nav ul{
  list-style:none;
  display:flex;
  gap:6px;
  margin:0;
  padding:0;
}
nav.main-nav a{
  display:block;
  padding:10px 16px;
  color: var(--dark);
  font-weight:600;
  font-size:.98rem;
  border-radius:8px;
  text-decoration:none;
  text-underline-offset:4px;
  transition: color .15s, text-decoration-color .15s;
}
nav.main-nav > ul > li > a{
  min-width:140px;
  text-align:center;
}
nav.main-nav a:hover,
nav.main-nav a.active{
  text-decoration:underline;
  text-decoration-color: var(--orange);
}

/* Dropdown submenu (desktop hover, mobile always expanded) */
nav.main-nav li.has-sub{ position:relative; }
nav.main-nav .sub-nav{
  list-style:none;
  margin:0;
  padding:8px;
  display:none;
  flex-direction:column;
  gap:2px;
  position:absolute;
  top:100%;
  left:0;
  min-width:240px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:10px;
  box-shadow: var(--shadow);
  z-index:50;
}
nav.main-nav li.has-sub:hover > .sub-nav,
nav.main-nav li.has-sub.open > .sub-nav,
nav.main-nav li.has-sub:focus-within > .sub-nav{ display:flex; }
nav.main-nav .sub-nav a{
  font-weight:500;
  font-size:.92rem;
  padding:9px 14px;
  white-space:nowrap;
}
nav.main-nav li.has-sub > a::after{
  content:'▾';
  font-size:.7em;
  margin-left:5px;
  opacity:.6;
}

/* Verschachteltes Untermenue (z.B. "Eventservice & Verleih" innerhalb von
   "Leistungen"): klappt seitlich statt nach unten auf. */
nav.main-nav .sub-nav.sub-flyout{
  top:-9px;
  left:100%;
  margin-left:8px;
}
nav.main-nav .sub-nav li.has-sub > a::after{
  content:'▸';
}

.nav-toggle{
  display:none;
  background:none;
  border:2px solid var(--dark);
  border-radius:8px;
  width:44px;
  height:40px;
  cursor:pointer;
  position:relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after{
  content:'';
  position:absolute;
  left:9px;
  right:9px;
  height:2px;
  background: var(--dark);
}
.nav-toggle span{ top:19px; }
.nav-toggle span::before{ top:-7px; }
.nav-toggle span::after{ top:7px; }

/* ---------- Hero ---------- */
.hero{
  background: var(--dark);
  color:#fff;
  position:relative;
  overflow:hidden;
  padding:76px 0 92px;
  margin-bottom:38px; /* ~1cm Abstand zum folgenden Inhalt */
}
.hero::after{
  content:'';
  position:absolute;
  left:0; right:0; bottom:-2px; height:70px;
  background:
    linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 100%);
}
.hero-waves{
  position:absolute;
  inset:0;
  opacity:.5;
  background-repeat:no-repeat;
  background-size:cover;
  background-position:center bottom;
}
.hero .container{ position:relative; z-index:2; }
.hero h1{
  font-size:2.5rem;
  max-width:780px;
  margin-bottom:.4em;
  color:#fff;
}
.hero p.lead{
  font-size:1.15rem;
  max-width:640px;
  color:#dfe4ea;
  margin-bottom:1.6em;
}
.hero .hero-subhead{
  color: var(--orange-light);
  font-size:1.25rem;
  max-width:640px;
  margin-bottom:.6em;
}
.hero-tagline{
  display:inline-block;
  color: var(--orange-light);
  font-weight:600;
  letter-spacing:.5px;
  margin-bottom:14px;
}

.page-hero{
  background: var(--dark);
  color:#fff;
  padding:56px 0;
  margin-bottom:38px; /* ~1cm Abstand zum folgenden Inhalt */
  position:relative;
  overflow:hidden;
  min-height:380px;
  display:flex;
  align-items:center;
}
.page-hero .container{ position:relative; z-index:2; width:100%; }
.page-hero h1{ margin:38px 0 0; font-size:2.1rem; color:#fff; }
.page-hero p{ color:#dfe4ea; max-width:680px; margin:.6em 0 0; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-block;
  padding:13px 26px;
  border-radius:999px;
  font-weight:600;
  font-size:.98rem;
  cursor:pointer;
  border:2px solid transparent;
  transition: transform .15s, box-shadow .15s, background .15s, color .15s;
}
.btn-primary{
  background: var(--orange);
  color:#fff;
}
.btn-primary:hover{
  background: var(--orange-light);
  color:#fff;
  transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(237,125,49,.35);
}
.btn-outline{
  border-color: rgba(255,255,255,.6);
  color:#fff;
}
.btn-outline:hover{
  border-color:#fff;
  background:rgba(255,255,255,.08);
  color:#fff;
}
.btn-dark{
  background: var(--dark);
  color:#fff;
}
.btn-dark:hover{ background:#000; color:#fff; }

.btn-outline-dark{
  border-color: var(--border);
  color: var(--dark);
}
.btn-outline-dark:hover{
  border-color: var(--dark);
  background: var(--grey-light);
  color: var(--dark);
}

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

/* ---------- Sections ---------- */
section{ padding:70px 0; }
section.alt{ background: var(--grey-light); }
.section-head{ max-width:720px; margin-bottom:40px; }
.section-head .eyebrow{
  color: var(--orange);
  font-weight:700;
  letter-spacing:.6px;
  text-transform:uppercase;
  font-size:.8rem;
  display:block;
  margin-bottom:8px;
}
.section-head h2{ font-size:2rem; margin-bottom:.3em; }
.section-head p{ color: var(--grey); font-size:1.05rem; }

/* ---------- Tiles / Cards grid ---------- */
.tile-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:22px;
}
.tile{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:28px 26px;
  box-shadow: var(--shadow);
  display:flex;
  flex-direction:column;
  gap:10px;
}
.tile .icon{
  width:52px; height:52px;
  border-radius:12px;
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:1.5rem;
  margin-bottom:6px;
}
.tile h3{ font-size:1.15rem; margin-bottom:2px; }
.tile p{ color: var(--grey); font-size:.96rem; margin:0; flex:1; }
.tile .tile-link{ font-weight:600; font-size:.92rem; }

.tile.tile-compact{ padding:22px 22px; }

/* ---------- Category tiles (big overview, e.g. top of Leistungen) ---------- */
.category-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:24px;
}
.category-tile{
  display:block;
  background: var(--dark);
  color:#fff;
  border-radius: var(--radius);
  padding:34px 28px;
  position:relative;
  overflow:hidden;
  min-height:190px;
  box-shadow: var(--shadow);
}
.category-tile::before{
  content:'';
  position:absolute;
  right:-30px; bottom:-30px;
  width:140px; height:140px;
  border-radius:50%;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  opacity:.28;
}
.category-tile .icon{
  font-size:2rem;
  margin-bottom:14px;
  display:block;
}
.category-tile h3{ color:#fff; font-size:1.25rem; margin-bottom:8px; }
.category-tile p{ color:#c7ccd3; font-size:.94rem; margin:0; position:relative; z-index:1; }
.category-tile .tile-link{ color: var(--orange-light); font-weight:600; font-size:.9rem; display:inline-block; margin-top:14px; position:relative; z-index:1; }

/* ---------- Reference cards (Referenzen page) ---------- */
.reference-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:26px;
}
.reference-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.reference-card .ref-image{
  height:170px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:2.4rem;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  color:#fff;
}
.reference-card .ref-body{ padding:20px 22px; }
.reference-card .ref-tag{
  display:inline-block;
  font-size:.74rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.5px;
  color: var(--orange);
  margin-bottom:6px;
}
.reference-card h3{ font-size:1.08rem; margin-bottom:6px; }
.reference-card p{ color: var(--grey); font-size:.92rem; margin:0; }

/* ---------- Map placeholder ---------- */
.map-embed{
  height:380px;
  border-radius: var(--radius);
  border:1px solid var(--border);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.map-embed iframe{ display:block; }

/* ---------- Group divider label ---------- */
.group-label{
  font-size:.82rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.6px;
  color: var(--blue);
  margin:44px 0 18px;
  padding-top:20px;
  border-top:1px dashed var(--border);
}
.group-label:first-of-type{ border-top:none; padding-top:0; margin-top:0; }

/* ---------- Leistungen detail blocks ---------- */
.service-block{
  padding:46px 0;
  border-bottom:1px solid var(--border);
  scroll-margin-top:90px;
}
.service-block:last-child{ border-bottom:none; }
.service-block .service-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:40px;
  align-items:start;
}
.service-block h2{ font-size:1.6rem; display:flex; align-items:center; gap:14px; }
.service-block > p{ max-width:760px; }
.service-block h2 .num{
  display:inline-flex; align-items:center; justify-content:center;
  width:38px; height:38px; border-radius:10px;
  background: var(--grey-light);
  color: var(--orange);
  font-size:1rem;
  flex-shrink:0;
}
.service-block ul.feature-list{
  margin:14px 0 0;
  padding:0;
  list-style:none;
  max-width:760px;
}
.service-block ul.feature-list li{
  padding:8px 0 8px 28px;
  position:relative;
  color: var(--grey);
  border-bottom:1px dashed var(--border);
}
.service-block ul.feature-list li:last-child{ border-bottom:none; }
.service-block ul.feature-list li::before{
  content:'✓';
  position:absolute; left:0; top:8px;
  color: var(--orange);
  font-weight:700;
}
.side-note{
  background: var(--grey-light);
  border-radius: var(--radius);
  padding:22px 24px;
  font-size:.95rem;
  color: var(--grey);
}
.side-note strong{ color: var(--dark); }

/* ---------- Foto-Platzhalter (Team/Werkstatt) ----------
   Solange noch kein echtes Bild vorliegt: Farbverlauf-Box mit Icon,
   analog zu .reference-card .ref-image. Sobald ein Foto da ist, hier
   einfach durch <img src="img/..."> ersetzen. */
.about-photo{
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.about-photo-icon{ font-size:1em; line-height:1; }
.about-photo-intro{
  width:160px;
  height:160px;
  border-radius:50%;
  font-size:2.6rem;
  color:#fff;
  flex-shrink:0;
}
.about-photo-hero{
  width:150px;
  height:104px;
  border-radius: var(--radius);
  font-size:2rem;
  color:#fff;
  border:3px solid rgba(255,255,255,.25);
}
.page-hero-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  flex-wrap:wrap;
}
.about-intro-text{ max-width:760px; }
.about-photo-quote-row{
  display:flex;
  align-items:center;
  gap:28px;
  margin-top:36px;
  flex-wrap:wrap;
}

/* ---------- Zitat-Kachel (persönliches Statement) ---------- */
.about-quote{
  flex:1;
  min-width:240px;
  margin:0;
  padding:20px 24px 20px 28px;
  border-left:3px solid var(--orange);
  background: var(--grey-light);
  border-radius:0 var(--radius) var(--radius) 0;
}
.about-quote p{
  margin:0;
  font-size:1.02rem;
  font-style:italic;
  color: var(--dark);
}

/* ---------- Doc list (Hinweise/Vorschriften) ---------- */
.doc-list{
  list-style:none;
  margin:16px 0 0;
  padding:0;
  display:grid;
  gap:12px;
}
.doc-list li{
  background:#fff;
  border:1px solid var(--border);
  border-radius:10px;
  padding:14px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.doc-list .doc-name{ font-weight:600; }
.doc-list small{ color: var(--grey); display:block; font-weight:400; }

/* ---------- Shop ---------- */
.product-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.product-card img{ width:100%; height:260px; object-fit:cover; background:#111; }
.product-card .product-body{ padding:22px 24px; }

table.price-table{
  width:100%;
  border-collapse:collapse;
  background:#fff;
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
}
table.price-table th, table.price-table td{
  padding:14px 18px;
  text-align:left;
  border-bottom:1px solid var(--border);
}
table.price-table th{
  background: var(--dark);
  color:#fff;
  font-family:'Montserrat',sans-serif;
  font-weight:500;
}
table.price-table tr:last-child td{ border-bottom:none; }
table.price-table tr:hover td{ background: var(--grey-light); }

.accessory-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:16px;
}
.accessory-grid .tile{ padding:20px; }

.notice-box{
  background:#fff4e6;
  border:1px solid #f3c98f;
  border-radius: var(--radius);
  padding:20px 24px;
  color:#7a4a10;
}

/* ---------- Kontakt ---------- */
.contact-grid{
  display:grid;
  grid-template-columns: .95fr 1.3fr;
  gap:40px;
  align-items:start;
}
.contact-info-card{
  background: var(--dark);
  color:#fff;
  border-radius: var(--radius);
  padding:32px;
}
.contact-info-card h3{ color:#fff; }
.contact-info-card .item{
  display:flex; gap:14px; margin-bottom:20px;
}
.contact-info-card .item .icon{
  width:40px;height:40px;border-radius:10px;
  background:rgba(255,255,255,.22);
  font-size:1.3rem;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.contact-info-card a{ color:#fff; font-weight:600; }
.contact-info-card a:hover{ color: var(--orange-light); }
.contact-info-card .regions{ color:#c7ccd3; font-size:.92rem; }

form.contact-form{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:32px;
  box-shadow: var(--shadow);
  display:grid;
  gap:16px;
}
form.contact-form .row2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
form.contact-form label{
  font-weight:600;
  font-size:.92rem;
  margin-bottom:6px;
  display:block;
}
form.contact-form input,
form.contact-form select,
form.contact-form textarea{
  width:100%;
  padding:12px 14px;
  border:1px solid var(--border);
  border-radius:8px;
  font-family:inherit;
  font-size:.98rem;
  background: var(--grey-light);
}
form.contact-form textarea{ min-height:130px; resize:vertical; }
form.contact-form input:focus,
form.contact-form select:focus,
form.contact-form textarea:focus{
  outline:2px solid var(--blue-light);
  background:#fff;
}
.form-hint{ font-size:.85rem; color: var(--grey); }
.hp-field{ position:absolute; left:-5000px; width:1px; height:1px; overflow:hidden; }

/* ---------- Hero-Grid: Text links, USP-Marker rechts als eigene Spalte ---------- */
.hero-grid{
  display:grid;
  grid-template-columns:1.3fr .9fr;
  gap:48px;
  align-items:center;
}
.hero-usp{
  display:flex;
  flex-direction:column;
  gap:18px;
}
.hero-photo-slider{
  position:absolute;
  inset:0;
  z-index:0;
  overflow:hidden;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background: var(--dark);
  opacity:.82;
  z-index:1;
}
.hero-photo-slider img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  transition:opacity 1.2s ease;
}
.hero-photo-slider img.active{ opacity:1; }
.hero-photo-slider .slider-dots{
  position:absolute;
  left:0; right:0; bottom:16px;
  display:flex;
  justify-content:center;
  gap:9px;
  z-index:2;
}
.hero-photo-slider .slider-dots button{
  width:10px; height:10px;
  border-radius:50%;
  border:2px solid #fff;
  background:rgba(255,255,255,.35);
  padding:0;
  cursor:pointer;
  transition: background .2s;
}
.hero-photo-slider .slider-dots button.active{ background:#fff; }
.usp-item{
  display:flex;
  flex-direction:row;
  align-items:center;
  gap:16px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  border-radius:12px;
  padding:16px 20px;
}
.usp-item .usp-check{
  font-family:'Montserrat',sans-serif;
  font-weight:700;
  font-size:1.6rem;
  color: var(--orange-light);
  margin:0;
  flex-shrink:0;
}
.usp-item .usp-label{
  margin:0;
  color:#dfe4ea;
  font-size:.96rem;
  font-weight:600;
}
@media (max-width:900px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-usp{ flex-direction:row; flex-wrap:wrap; margin-top:8px; }
  .usp-item{ flex:1 1 calc(50% - 9px); }
}
@media (max-width:560px){
  .usp-item{ flex:1 1 100%; }
}

/* ---------- USP strip ---------- */
.usp-strip{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:24px;
  margin-top:44px;
}
.usp-strip div{ text-align:center; }
.usp-strip .num{
  font-family:'Montserrat',sans-serif;
  font-weight:700;
  font-size:1.9rem;
  color: var(--orange);
}
.usp-strip p{ margin:.2em 0 0; color: var(--grey); font-size:.95rem; }

/* ---------- CTA band ---------- */
.cta-band{
  background: linear-gradient(120deg, var(--orange) 0%, var(--orange-light) 100%);
  color:#fff;
  text-align:center;
  padding:56px 0;
}
.cta-band h2{ color:#fff; }
.cta-band p{ color:#fff7ee; max-width:600px; margin:0 auto 24px; }
.cta-band .btn-primary{ background:#fff; color: var(--orange); }
.cta-band .btn-primary:hover{ background: var(--dark); color:#fff; }

/* ---------- Footer ---------- */
footer.site-footer{
  background: var(--header-footer-bg);
  color:#c7ccd3;
  padding:52px 0 24px;
  font-size:.94rem;
  margin-top:38px; /* ~1cm Abstand zum vorherigen Inhalt, unabhaengig davon, was die Seite direkt vor dem Footer hat */
}
.cta-band + footer.site-footer{ margin-top:0; } /* CTA-Band bringt bereits eigenen Innenabstand mit, direkter Anschluss gewuenscht */
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.1fr;
  gap:30px;
  padding-bottom:30px;
  border-bottom:1px solid rgba(255,255,255,.1);
}
.footer-grid h4{ color:#fff; font-size:1rem; }
.footer-grid ul{ list-style:none; margin:0; padding:0; }
.footer-grid li{ margin-bottom:9px; }
.footer-grid a{ color:#c7ccd3; }
.footer-grid a:hover{ color: var(--orange-light); }
.footer-logo img{ width:286px; height:auto; margin-bottom:16px; }
.footer-bottom{
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
  padding-top:20px; font-size:.85rem; color:#8b909a;
}
.footer-bottom a{ color:#8b909a; }

/* ---------- Responsive ---------- */
@media (max-width: 900px){
  .service-block .service-grid{ grid-template-columns:1fr; }
  .about-photo-intro{ width:120px; height:120px; font-size:2rem; }
  .contact-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
}

@media (max-width: 760px){
  nav.main-nav{
    position:fixed;
    inset:64px 0 0 0;
    background:#fff;
    padding:10px 20px 30px;
    display:none;
    overflow:auto;
  }
  nav.main-nav.open{ display:block; }
  nav.main-nav ul{ flex-direction:column; }
  nav.main-nav a{ padding:14px 10px; border-bottom:1px solid var(--border); border-radius:0; }
  nav.main-nav > ul > li > a{ min-width:0; text-align:left; }
  .nav-toggle{ display:block; }
  nav.main-nav .sub-nav{
    display:flex;
    position:static;
    box-shadow:none;
    border:none;
    border-radius:0;
    background: var(--grey-light);
    min-width:0;
    padding:4px 0 4px 16px;
  }
  nav.main-nav li.has-sub > a::after{ display:none; }
  nav.main-nav .sub-nav .sub-nav{ padding-left:32px; }
  .hero h1{ font-size:1.85rem; }
  .hero{ padding:56px 0 70px; }
  section{ padding:50px 0; }
  form.contact-form .row2{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; }
  .topbar .container{ justify-content:center; text-align:center; }
}
