:root {
  --brand: #be0a26;
  --brand-bright: #d61230;
  --brand-deep: #8e0a1e;
  --ink: #2b2723;
  --ink-soft: #4a453e;
  --muted: #6d675e;
  --bg: #f7f6f2;
  --surface: #ffffff;
  --surface-2: #eeece5;
  --line: rgba(43, 39, 35, 0.12);
  --line-soft: rgba(43, 39, 35, 0.08);
  --gold: #9a7d3f;
  --shadow: 0 18px 44px rgba(43, 39, 35, 0.12);
  --radius: 2px;
  --header-h: 4.75rem;
  --font-display: "Oswald", "Arial Narrow", Impact, sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  --space: clamp(1.25rem, 4vw, 2.5rem);
  --wide: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  font-size: clamp(1.02rem, 0.95rem + 0.3vw, 1.125rem);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg) url("../img/muster-streu.svg");
  padding-top: var(--header-h);
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--brand);
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0 0 0.6em;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
}

h2 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  background: var(--brand);
  color: #fff;
  padding: 0.6rem 1rem;
  font-weight: 700;
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(calc(100% - 2 * var(--space)), var(--wide));
  margin-inline: auto;
}

.kicker {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.85rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 42rem;
}

.muted {
  color: var(--muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.7rem 1.35rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-solid {
  background: var(--brand);
  color: #fff;
}

.btn-solid:hover {
  background: var(--brand-bright);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}

.btn-ghost:hover {
  background: var(--brand);
  color: #fff;
}

.btn-line {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-line:hover {
  background: var(--ink);
  color: var(--bg);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

/* Fixed header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(43, 39, 35, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}

.brand:hover {
  color: var(--ink);
}

.brand-lock {
  height: 2.4rem;
  width: auto;
  flex: none;
}

.brand-k {
  color: var(--brand);
}

.brand-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1;
}

.brand-sub {
  display: none;
  margin-top: 0.25rem;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav {
  display: none;
}

.nav ul {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  display: block;
  padding: 0.45rem 0.8rem;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--brand);
}

.nav a.nav-jobs {
  color: var(--brand);
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  margin-left: 0.4rem;
}

.nav a.nav-jobs:hover {
  background: var(--brand);
  color: #fff;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--brand);
  white-space: nowrap;
}

.header-phone svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
}

.header-phone:hover {
  color: var(--brand-deep);
}

.nav-toggle {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.nav-toggle svg {
  width: 1.8rem;
  height: auto;
  display: block;
  transition: transform 0.35s var(--ease);
}

body.nav-open .nav-toggle {
  color: var(--brand);
}

body.nav-open .nav-toggle svg {
  transform: rotate(-90deg);
}

.nav-panel {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--surface);
  padding: 1.5rem var(--space) 2rem;
  z-index: 40;
  overflow-y: auto;
}

body.nav-open .nav-panel {
  display: block;
}

.nav-panel a {
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-panel a:hover,
.nav-panel a[aria-current="page"] {
  color: var(--brand);
}

/* Hero ohne Bild */
.hero-plain {
  background:
    radial-gradient(ellipse at 85% 0%, rgba(158, 35, 24, 0.07), transparent 55%),
    linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line-soft);
}

.hero-plain .wrap {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(2.8rem, 6vw, 5rem);
}

.hero-plain .kicker,
.hero-plain h1 {
  max-width: none;
  text-align: center;
}

.hero-plain h1 span {
  display: block;
  color: var(--muted);
  font-size: 0.38em;
  letter-spacing: 0.28em;
  margin-bottom: 0.45rem;
}

.hero-copy {
  max-width: 36rem;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

/* Badges (Meisterbetrieb, Bezirksaward, Seit 2020) */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  list-style: none;
  margin: 2.2rem 0 0;
  padding: 0;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 6px 18px rgba(43, 39, 35, 0.06);
}

.badge svg {
  width: 1.9rem;
  height: 1.9rem;
  flex: none;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.badge-crest img {
  width: 4.75rem;
  height: auto;
  flex: none;
}

.badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.2;
}

.badge small {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.3;
}

/* Unterseiten-Kopf (ohne Bild) */
.page-hero {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line-soft);
}

.page-hero .wrap {
  padding: clamp(2.8rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
}

.page-hero .hero-copy {
  color: var(--muted);
}

/* Ticker */
.ticker {
  overflow: hidden;
  background: var(--brand);
  color: #fff;
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: ticker 36s linear infinite;
}

.ticker span {
  padding: 0.7rem 0;
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Schlüssel-Zierband */
.divider-keys {
  height: 52px;
  margin: clamp(1.2rem, 3vw, 2rem) 0;
  background: url("../img/muster-schluessel.svg") repeat-x center center;
  background-size: auto 52px;
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

.section-alt {
  background: var(--surface-2) url("../img/muster-streu-hell.svg");
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.4rem;
}

.split {
  display: grid;
  gap: 2rem;
}

.split-visual {
  position: relative;
  min-height: 18rem;
}

.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 18rem;
}

.split-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 6px;
  background: var(--brand);
}

/* Seit 2020 im Geschäft */
.since-band {
  margin-top: 2.6rem;
  padding: clamp(1.8rem, 4vw, 2.6rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 6px solid var(--brand);
  display: grid;
  gap: 0.4rem;
}

.since-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--brand);
}

.since-label {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 38rem;
}

/* Service cards */
.service-grid {
  display: grid;
  gap: 1rem;
}

.service-card {
  position: relative;
  display: grid;
  gap: 0.8rem;
  padding: 1.4rem 1.3rem 1.3rem;
  background: var(--surface);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  min-height: 100%;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.service-card:hover {
  color: inherit;
  transform: translateY(-4px);
  border-color: var(--brand);
  box-shadow: var(--shadow);
}

.service-card svg {
  width: 1.7rem;
  height: 1.7rem;
  stroke: var(--brand);
  fill: none;
  stroke-width: 1.6;
}

.service-no {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.service-card p {
  color: var(--muted);
  font-size: 0.98rem;
}

.focus-grid {
  display: grid;
  gap: 1rem;
}

.focus-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 100%;
  padding: clamp(1.6rem, 3vw, 2.5rem);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.focus-card:hover {
  color: inherit;
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.focus-card svg {
  width: 2.1rem;
  height: 2.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.focus-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin: 0;
}

.focus-card p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
}

.focus-more {
  margin-top: auto;
  padding-top: 0.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reviews-intro {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.6rem;
}

.reviews-intro .section-head {
  margin-bottom: 0;
}

.review-score {
  display: grid;
  justify-items: start;
  gap: 0.15rem;
  align-self: end;
  padding: 1.2rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 6px solid var(--brand);
  text-decoration: none;
  color: inherit;
}

.review-score:hover {
  color: inherit;
  border-color: var(--brand);
}

.review-score strong {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--brand);
}

.review-score span:last-child {
  color: var(--muted);
}

.stars {
  color: var(--brand);
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  line-height: 1;
}

.review-grid {
  display: grid;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.review-grid blockquote {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  height: 100%;
  margin: 0;
  padding: 1.4rem 1.3rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--line);
}

.review-grid p {
  margin: 0;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.55;
}

.review-grid footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.8rem;
  margin-top: auto;
}

.review-grid cite {
  font-style: normal;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.focus-card-warm {
  background: #e4dfd4;
  color: var(--ink);
}

.focus-card-warm p {
  color: var(--ink-soft);
}

.focus-card-brand {
  background: var(--brand);
  color: #fff;
}

.focus-card-brand p {
  color: rgba(255, 255, 255, 0.92);
}

.service-detail {
  display: grid;
  gap: 1.25rem;
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--line);
}

.service-detail:last-child {
  border-bottom: 0;
}

.service-detail h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.service-detail img {
  width: 100%;
  height: 100%;
  min-height: 16rem;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.service-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}

.service-photos img {
  min-height: 0;
  height: auto;
}

@media (min-width: 800px) {
  .service-detail {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 2.5rem;
  }
  .service-detail:nth-child(even) .service-detail-copy {
    order: -1;
  }
}

/* Jobs / Wir stellen ein */
.jobs-card {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.8rem, 4vw, 2.8rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 6px solid var(--brand);
  box-shadow: 0 10px 30px rgba(43, 39, 35, 0.07);
}

.jobs-card ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--ink-soft);
}

.jobs-card li {
  margin-bottom: 0.35rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.gallery-grid a {
  position: relative;
  overflow: hidden;
  background: var(--surface-2);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  transition: transform 0.6s var(--ease);
}

.gallery-grid a:hover img {
  transform: scale(1.06);
}

.gallery-grid a.tall img {
  aspect-ratio: 3 / 4;
}

.gallery-grid a.wide {
  grid-column: span 2;
}

.gallery-grid a.wide img {
  aspect-ratio: 16 / 9;
}

.gallery-page .gallery-grid {
  grid-template-columns: 1fr;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 16, 0.94);
  display: none;
  place-items: center;
  z-index: 80;
  padding: 1.5rem;
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 86vh;
  object-fit: contain;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  font-size: 1.4rem;
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-nav.prev { left: 1rem; }
.lightbox-nav.next { right: 1rem; }

/* Video */
.video-frame {
  position: relative;
  background: var(--surface-2);
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2rem;
}

.contact-card {
  background: var(--surface);
  padding: 1.5rem;
  border: 1px solid var(--line);
}

.contact-card h3 {
  margin-bottom: 0.35rem;
}

.contact-card a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
}

.contact-card a:hover {
  text-decoration: underline;
}

.phone-xl {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--ink);
}

.phone-xl:hover {
  color: var(--brand);
}

.form {
  display: grid;
  gap: 0.9rem;
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius);
}

.form input:focus,
.form textarea:focus {
  outline: 2px solid var(--brand);
  outline-offset: 1px;
}

.form textarea {
  min-height: 8rem;
  resize: vertical;
}

.hp {
  position: absolute;
  left: -9999px;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-weight: 400;
  font-size: 0.92rem;
}

.check input {
  width: auto;
  margin-top: 0.3rem;
}

.form-status {
  min-height: 1.4em;
  font-size: 0.95rem;
}

.form-status.is-ok { color: #1d6b3a; }
.form-status.is-err { color: var(--brand); }

.map-wrap {
  min-height: 18rem;
  background: var(--surface-2);
  color: var(--ink);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
  border-block: 1px solid var(--line);
}

.map-wrap iframe {
  width: 100%;
  min-height: 18rem;
  height: 100%;
  border: 0;
}

#kontakt {
  padding-bottom: 0;
}

.after-map {
  margin: 0;
}

.after-map img {
  display: block;
  width: 100%;
  height: clamp(16rem, 46vw, 32rem);
  object-fit: cover;
  object-position: center 68%;
}

/* Footer */
.site-footer {
  background: var(--surface-2);
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding: 3rem 0 1.4rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.site-footer h2,
.site-footer h3 {
  color: var(--ink);
}

.site-footer a {
  color: var(--ink);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--brand);
}

.footer-links {
  display: grid;
  gap: 0.45rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 1.2rem;
  font-size: 0.88rem;
  color: var(--muted);
}

/* Cookie */
.cookie {
  position: fixed;
  inset: auto 0.8rem 0.8rem;
  z-index: 90;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 1.1rem 1.15rem;
  box-shadow: var(--shadow);
  display: none;
  max-width: 40rem;
  margin-left: auto;
}

.cookie.is-visible {
  display: block;
}

.cookie h3 {
  margin-bottom: 0.35rem;
}

.cookie p {
  font-size: 0.95rem;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.call-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 45;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.call-fab:hover {
  background: var(--brand-bright);
  color: #fff;
}

.call-fab svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: currentColor;
}

body.nav-open .call-fab,
body.cookie-open .call-fab {
  bottom: 6.5rem;
}

/* Legal */
.legal {
  max-width: 46rem;
}

.legal h2 {
  font-size: 1.4rem;
  margin-top: 2rem;
}

.legal h3 {
  font-size: 1.05rem;
  margin-top: 1.4rem;
  text-transform: none;
  letter-spacing: 0.02em;
}

.legal code {
  font-size: 0.9em;
}

.thanks {
  min-height: 70svh;
  display: grid;
  align-items: center;
}

/* Focus */
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

@media (min-width: 700px) {
  .brand-sub { display: block; }
  .header-phone { display: inline-flex; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .focus-grid { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .reviews-intro { grid-template-columns: 1fr auto; align-items: end; }
  .gallery-page .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .split { grid-template-columns: 1.05fr 0.95fr; align-items: center; }
  .contact-grid { grid-template-columns: 0.9fr 1.1fr; }
  .since-band {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 2rem;
  }
  .jobs-card { grid-template-columns: 1.2fr 0.8fr; align-items: center; }
}

@media (min-width: 1060px) {
  .nav-toggle,
  .nav-panel { display: none !important; }
  .nav { display: block; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .review-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid a.wide { grid-column: span 2; }
  .gallery-page .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .call-fab { display: none; }
  .cookie { inset: auto 1.5rem 1.5rem auto; width: min(28rem, calc(100% - 3rem)); }
}

@media (max-width: 699px) {
  .cookie {
    padding: 0.85rem 0.95rem;
  }
  .cookie p {
    font-size: 0.86rem;
    line-height: 1.45;
  }
  .cookie .btn {
    min-height: 2.6rem;
    padding: 0.5rem 0.85rem;
    font-size: 0.78rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track,
  .gallery-grid img,
  .btn,
  .service-card {
    animation: none;
    transition: none;
  }
}
