/* ============================================
   Malereibetrieb Thorsten Lentz — Stylesheet
   ============================================ */

:root {
  --dark: #1c1727;
  --dark-2: #282035;
  --cream: #faf9fc;
  --cream-2: #efe7f8;
  --paper: #ffffff;
  --accent: #7b4fb0;
  --accent-2: #5d3a8a;
  --lilac: #cbb4e8;
  --text: #292432;
  --text-muted: #6f6580;
  --text-light: #f8f5fc;
  --border: #e7defa;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 20px 50px -20px rgba(28, 23, 39, 0.25);
  --shadow-sm: 0 10px 25px -12px rgba(28, 23, 39, 0.2);
  --font-serif: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.02em;
}

p { margin: 0 0 1em; }

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 0.9em;
}

section { position: relative; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 25px -10px rgba(93, 58, 138, 0.5);
}
.btn-accent:hover { background: var(--accent-2); }

.btn-dark {
  background: var(--dark);
  color: var(--text-light);
}
.btn-dark:hover { background: var(--dark-2); }

.btn-light {
  background: #fff;
  color: var(--dark);
}
.btn-light:hover { background: var(--cream-2); }

.btn-outline-light {
  border-color: rgba(255,255,255,0.55);
  color: #fff;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(6px);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.18); }

.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-full { width: 100%; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--dark);
  color: rgba(247,244,238,0.75);
  font-size: 0.8rem;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-contact { display: flex; gap: 20px; }
.topbar-contact a:hover { color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: background-color 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.site-header.scrolled {
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px -18px rgba(0,0,0,0.35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  transition: padding 0.35s ease;
}
.site-header.scrolled .header-inner { padding: 10px 24px; }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  width: 92px;
  height: 92px;
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
  padding: 5px;
  box-shadow: var(--shadow-sm);
  transition: width 0.35s ease, height 0.35s ease;
}
.site-header.scrolled .brand-logo {
  width: 54px;
  height: 54px;
}
.brand-text {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.2;
  color: var(--dark);
  display: flex;
  flex-direction: column;
}
.brand-text.light { color: var(--text-light); }
.brand-text small {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.hero .site-header,
.site-header:not(.scrolled) .brand-text { color: #fff; }
.site-header:not(.scrolled) .brand-text { color: #fff; }
.site-header:not(.scrolled) .brand-text small { color: #d9c2f2; }
.site-header:not(.scrolled) .main-nav a { color: rgba(255,255,255,0.92); }

.main-nav {
  display: flex;
  gap: 32px;
}
.main-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.main-nav a:hover::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(20, 16, 28, 0.55);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.site-header.scrolled .nav-toggle {
  background: rgba(41, 36, 50, 0.07);
  border-color: rgba(41, 36, 50, 0.12);
  box-shadow: none;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 20px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.site-header.scrolled .nav-toggle span { background: var(--dark); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: -124px;
  padding-top: 124px;
  background: var(--dark);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,15,16,0.22) 0%, rgba(15,15,16,0.05) 35%, rgba(15,15,16,0.12) 75%, rgba(15,15,16,0.37) 100%),
    linear-gradient(90deg, rgba(15,15,16,0.16) 0%, rgba(15,15,16,0.02) 45%, rgba(15,15,16,0.02) 55%, rgba(15,15,16,0.16) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 90px;
  max-width: 880px;
}
.hero .eyebrow { color: #d9c2f2; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.3rem, 5.2vw, 4rem);
  margin-bottom: 0.4em;
}
.hero h1 span { color: #e6d5f7; }
.hero-sub {
  color: rgba(255,255,255,0.88);
  font-size: 1.15rem;
  max-width: 620px;
  margin-bottom: 2em;
}
.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-anniversary {
  position: absolute;
  top: 8px;
  right: 4%;
  width: clamp(120px, 13vw, 190px);
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.55));
  pointer-events: none;
  z-index: 3;
}
@media (max-width: 900px) {
  .hero-anniversary {
    position: static;
    width: 130px;
    margin-bottom: 18px;
  }
}

.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 30px;
  height: 46px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 20px;
}
.scroll-hint span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 5px;
  height: 5px;
  margin-left: -2.5px;
  background: #fff;
  border-radius: 50%;
  animation: scrollDot 1.8s ease infinite;
}
@keyframes scrollDot {
  0% { opacity: 1; transform: translateY(0); }
  70% { opacity: 0; transform: translateY(18px); }
  100% { opacity: 0; transform: translateY(0); }
}

/* ---------- Stats ---------- */
.stats {
  background: var(--dark);
  padding: 46px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat { color: var(--text-light); }
.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 600;
  color: #fff;
}
.stat-num::after { content: "+"; color: var(--accent); }
.stat-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(247,244,238,0.65);
  margin-top: 4px;
}

/* ---------- Section head ---------- */
.section-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head .eyebrow { justify-content: center; }
.section-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
}

section.services, section.gallery, section.testimonials, section.contact {
  padding: 110px 0;
}
.partners { padding: 60px 0 100px; background: var(--paper); }

/* ---------- Team ---------- */
section.team { padding: 100px 0 110px; background: var(--paper); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 24px;
}
.team-card { text-align: center; }
.team-photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 14px;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.5s ease;
}
.team-card:hover .team-photo img { transform: scale(1.06); }
.team-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-photo-placeholder span {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 2.2rem;
  color: #fff;
  opacity: 0.9;
}
.team-photo-hiring {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(150deg, var(--dark), var(--dark-2));
  border: 1.5px dashed rgba(255,255,255,0.25);
}
.team-photo-hiring svg {
  width: 54px;
  height: 54px;
  color: rgba(255,255,255,0.45);
}
.team-photo-hiring-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  padding: 0 20px;
  text-align: center;
}
.team-card-hiring .team-role a { color: var(--accent); font-weight: 600; }
.team-card-hiring .team-role a:hover { color: var(--accent-2); }
.team-card h3 { font-size: 1rem; margin-bottom: 0.2em; }
.team-role {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0;
}

/* ---------- About (parallax) ---------- */
section.about { padding: 0; }
.about { position: relative; overflow: hidden; }
.about-parallax {
  height: 78vh;
  min-height: 460px;
  background-image: url('../img/team.jpg');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  position: relative;
}
.about-parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,23,39,0.12) 0%, rgba(28,23,39,0.08) 55%, rgba(28,23,39,0.4) 100%);
}
.about-panel {
  position: relative;
  z-index: 2;
  margin-top: -140px;
  background: #f2f0f4;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -25px 60px rgba(20,16,28,0.18);
  padding: 76px 0 90px;
}
.about-logo-badge {
  position: absolute;
  top: -68px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 140px;
  object-fit: contain;
  border-radius: 22px;
  box-shadow: var(--shadow);
  background: #fff;
  padding: 8px;
  z-index: 3;
}
.about-panel-inner { max-width: 880px; margin: 0 auto; text-align: center; }
@media (hover: none) and (pointer: coarse) {
  .about-parallax { background-attachment: scroll; }
}
.about-copy .eyebrow { justify-content: center; }
.about-copy h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.about-copy p { text-align: left; }
.check-list { text-align: left; max-width: 620px; margin-left: auto; margin-right: auto; }
.about-copy > .btn { display: inline-flex; }
.check-list {
  list-style: none;
  padding: 0;
  margin: 1.6em 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--text);
  font-size: 0.98rem;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* ---------- Services ---------- */
.services { background: var(--paper); }
.service-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  padding: 46px 0;
  border-bottom: 1px solid var(--border);
}
.service-row:first-child { padding-top: 0; }
.service-row:last-child { border-bottom: none; padding-bottom: 0; }
.service-row:nth-child(even) { direction: rtl; }
.service-row:nth-child(even) > * { direction: ltr; }
.service-row-media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 5/4;
  box-shadow: var(--shadow-sm);
}
.service-row-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.service-row:hover .service-row-media img { transform: scale(1.05); }
.service-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 0.8em;
}
.service-row-body h3 { font-size: 1.7rem; margin-bottom: 0.5em; }
.service-row-body p { color: var(--text-muted); font-size: 1.02rem; max-width: 440px; margin-bottom: 0; }

.service-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--accent);
}
.service-toggle:hover { color: var(--accent-2); }
.service-toggle .chevron {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  position: relative;
  transition: transform 0.3s ease;
}
.service-toggle .chevron::before,
.service-toggle .chevron::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.service-toggle .chevron::before { width: 9px; height: 1.5px; transform: translate(-50%,-50%); }
.service-toggle .chevron::after { width: 1.5px; height: 9px; transform: translate(-50%,-50%); }
.service-toggle[aria-expanded="true"] .chevron { transform: rotate(180deg); }
.service-toggle[aria-expanded="true"] .chevron::after { opacity: 0; }

.service-panel {
  grid-column: 1 / -1;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s ease;
}
.service-panel.open { max-height: 1100px; }
.service-panel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 30px;
}
.service-panel-grid .gallery-item {
  aspect-ratio: 1/1;
  border-radius: var(--radius-sm);
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  padding: 34px 0;
  text-align: center;
  color: #fff;
}
.cta-banner-inner h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.4rem); }

/* ---------- Renovation parallax band ---------- */
.renovation-parallax {
  height: 92vh;
  min-height: 680px;
  background-image: url('../img/renovation-parallax.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
.renovation-parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,23,39,0.1) 0%, rgba(28,23,39,0.05) 45%, rgba(28,23,39,0.35) 100%);
}
@media (hover: none) and (pointer: coarse) {
  .renovation-parallax { background-attachment: scroll; }
}
@media (max-width: 768px) {
  .renovation-parallax { background-attachment: scroll; height: 56vh; min-height: 380px; }
}
.cta-banner-inner p {
  max-width: 560px;
  margin: 0 auto 1.6em;
  color: rgba(255,255,255,0.92);
}

/* ---------- Gallery ---------- */
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 34px;
}
.gallery-preview-grid .gallery-item {
  aspect-ratio: 1/1;
  border-radius: var(--radius-sm);
}
.gallery-more-wrap { text-align: center; }
.gallery-more-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  padding: 10px 4px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent);
}
.gallery-more-toggle:hover { color: var(--accent-2); }
.gallery-more-toggle .chevron {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  position: relative;
  transition: transform 0.3s ease;
}
.gallery-more-toggle .chevron::before,
.gallery-more-toggle .chevron::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.gallery-more-toggle .chevron::before { width: 9px; height: 1.5px; transform: translate(-50%,-50%); }
.gallery-more-toggle .chevron::after { width: 1.5px; height: 9px; transform: translate(-50%,-50%); }
.gallery-more-toggle[aria-expanded="true"] .chevron { transform: rotate(180deg); }
.gallery-more-toggle[aria-expanded="true"] .chevron::after { opacity: 0; }

.gallery-all {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease;
}
.gallery-all.open { max-height: 6000px; }
.gallery-all .gallery-grid { margin-top: 34px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 110px;
  grid-auto-flow: dense;
  gap: 18px;
}
.gallery-item {
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}
.gallery-grid .gallery-item { grid-column: span 2; grid-row: span 2; }
.gallery-grid .gallery-item:nth-child(1) { grid-column: span 4; grid-row: span 4; }
.gallery-grid .gallery-item:nth-child(4) { grid-column: span 2; grid-row: span 4; }
.gallery-grid .gallery-item:nth-child(7) { grid-column: span 4; grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(23,24,27,0);
  transition: background 0.3s ease;
}
.gallery-item:hover::after { background: rgba(23,24,27,0.12); }

/* ---------- Testimonials (Google reviews) ---------- */
.testimonials { background: var(--cream-2); }

.reviews-summary {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: 40px;
}
.reviews-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--paper);
  border-radius: var(--radius-sm);
  padding: 14px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
a.reviews-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.reviews-badge-static { opacity: 0.9; }
.google-g { width: 26px; height: 26px; flex-shrink: 0; }
.reviews-badge-text { display: flex; flex-direction: column; gap: 1px; }
.reviews-badge-text strong { font-size: 0.95rem; color: var(--text); }
.reviews-stars { color: #FBBC05; font-size: 0.85rem; letter-spacing: 1px; }
.reviews-count { font-size: 0.8rem; color: var(--text-muted); }

.reviews-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
}
.reviews-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 4px 4px 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--lilac) transparent;
}
.review-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.review-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}
.review-card-id { display: flex; flex-direction: column; min-width: 0; }
.review-card-id strong {
  font-size: 0.92rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.review-stars { color: #FBBC05; letter-spacing: 1px; }
.review-card p {
  font-size: 0.92rem;
  color: var(--text);
  margin-bottom: 0;
  line-height: 1.55;
}
.reviews-nav {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.reviews-nav:hover { background: var(--accent); color: #fff; }
.reviews-more { text-align: center; margin: 30px 0 0; }
.reviews-more a { font-weight: 600; color: var(--accent); }
.reviews-more a:hover { color: var(--accent-2); }

/* ---------- FAQ ---------- */
.faq { background: var(--paper); padding: 110px 0; }
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--cream);
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.faq-item.open {
  background: var(--paper);
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--text);
}
.faq-question .chevron {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  position: relative;
  transition: transform 0.3s ease;
}
.faq-question .chevron::before,
.faq-question .chevron::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.faq-question .chevron::before { width: 9px; height: 1.5px; transform: translate(-50%,-50%); }
.faq-question .chevron::after { width: 1.5px; height: 9px; transform: translate(-50%,-50%); }
.faq-question[aria-expanded="true"] .chevron { transform: rotate(180deg); }
.faq-question[aria-expanded="true"] .chevron::after { opacity: 0; }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s ease;
}
.faq-answer.open { max-height: 900px; }
.faq-answer-inner {
  padding: 0 24px 22px;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.65;
}
.faq-answer-inner p { margin: 0 0 12px; }
.faq-answer-inner p:last-child { margin-bottom: 0; }
.faq-answer-inner ul { margin: 4px 0 12px; padding-left: 20px; }
.faq-answer-inner li { margin-bottom: 6px; }
.faq-answer-inner li:last-child { margin-bottom: 0; }

/* ---------- Partners ---------- */
.partners-label {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 26px;
}
.partners-logos {
  display: block;
  max-width: 720px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  opacity: 0.9;
}
.partners-label-second { margin-top: 44px; }
.partners-logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px 44px;
  max-width: 900px;
  margin: 0 auto;
}
.partners-logo-grid a {
  display: flex;
  align-items: center;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.partners-logo-grid a:hover { opacity: 1; transform: translateY(-2px); }
.partners-logo-grid img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

/* ---------- Contact ---------- */
.contact { background: var(--paper); }
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 2em 0;
  display: grid;
  gap: 22px;
}
.contact-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.contact-list a:hover { color: var(--accent); }
.social-icon {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px 10px 10px;
  border-radius: 999px;
  background: var(--cream-2);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.92rem;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.social-icon svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  padding: 4px;
  box-sizing: content-box;
}
.social-icon:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}
.social-icon-footer {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  color: var(--text-light);
  margin-top: 18px;
}
.social-icon-footer svg { padding: 0; }
.social-icon-footer:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }

.contact-form {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: #fff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(193,96,46,0.14);
}
.form-field textarea { resize: vertical; }
.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin: 14px 0 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  color: rgba(247,244,238,0.75);
  padding-top: 70px;
}
.footer-brand .brand-logo { width: 112px; height: 112px; border-radius: 16px; }
.footer-brand .brand { align-items: center; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p { margin-top: 16px; font-size: 0.9rem; max-width: 280px; }
.footer-col h4 {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.2em;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 0.92rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 24px;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a:hover { color: #fff; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  transform: translateY(120%);
  transition: transform 0.4s ease;
  background: var(--dark);
  color: rgba(247,244,238,0.92);
  box-shadow: 0 -12px 30px rgba(0,0,0,0.35);
}
.cookie-banner.open { transform: translateY(0); }
.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  flex-wrap: wrap;
}
.cookie-banner-text { flex: 1 1 420px; font-size: 0.9rem; line-height: 1.55; }
.cookie-banner-text a { color: #e6d5f7; text-decoration: underline; }
.cookie-banner-actions { flex-shrink: 0; }
@media (max-width: 768px) {
  .cookie-banner { bottom: 54px; }
  .cookie-banner-inner { padding: 16px 0; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .btn { width: 100%; }
}

/* ---------- Mobile call bar ---------- */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: 14px;
  font-weight: 600;
  box-shadow: 0 -10px 25px -10px rgba(0,0,0,0.35);
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15,15,16,0.94);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 88vh;
  border-radius: 10px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.lightbox-close, .lightbox-nav {
  position: absolute;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-close {
  top: 24px; right: 24px;
  width: 46px; height: 46px;
  font-size: 1.6rem;
  line-height: 1;
}
.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  font-size: 1.1rem;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1080px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 140px; }
  .gallery-grid .gallery-item:nth-child(1) { grid-column: span 4; grid-row: span 3; }
  .gallery-grid .gallery-item:nth-child(4) { grid-column: span 2; grid-row: span 2; }
  .gallery-grid .gallery-item:nth-child(7) { grid-column: span 4; grid-row: span 2; }
  .gallery-preview-grid { grid-template-columns: repeat(3, 1fr); }
  .service-panel-grid { grid-template-columns: repeat(3, 1fr); }
  .service-panel.open { max-height: 1700px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 780px) {
  .about-parallax { background-attachment: scroll; height: 46vh; min-height: 280px; }
  .about-panel { margin-top: -70px; border-radius: 24px 24px 0 0; padding: 74px 0 70px; }
  .about-logo-badge { width: 100px; height: 100px; top: -50px; }
}

@media (max-width: 900px) {
  .service-row, .service-row:nth-child(even) {
    direction: ltr;
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 34px 0;
  }
  .service-row-media { aspect-ratio: 16/10; }
  .service-row-body h3 { font-size: 1.4rem; }
  .service-row-body p { max-width: none; }
  .service-panel-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .service-panel.open { max-height: 1800px; }
}

@media (max-width: 860px) {
  .topbar span:first-child { display: none; }
  .main-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 82vw);
    background: var(--dark);
    flex-direction: column;
    padding: 110px 36px 40px;
    gap: 26px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 99;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { color: #fff !important; font-size: 1.1rem; }
  .nav-toggle { display: flex; }
  .header-actions .btn-accent { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .mobile-call-bar { display: block; }
  body { padding-bottom: 54px; }
  section.services, section.gallery, section.testimonials, section.contact, section.team { padding: 80px 0; }
  .review-card { flex-basis: 260px; }
  .reviews-nav { display: none; }
}

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-grid .gallery-item,
  .gallery-grid .gallery-item:nth-child(1),
  .gallery-grid .gallery-item:nth-child(4),
  .gallery-grid .gallery-item:nth-child(7) { grid-column: span 1; grid-row: span 1; }
  .gallery-preview-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 26px; }
  .hero { margin-top: -120px; padding-top: 120px; }
  .header-inner { padding: 14px 20px; }
  .brand-text { font-size: 0.92rem; }
}

/* ---------- Legal pages ---------- */
.legal-hero {
  background: var(--dark);
  color: var(--text-light);
  padding: 160px 0 60px;
  text-align: center;
}
.legal-hero h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.6rem); }
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 70px 24px 110px;
}
.legal-content h2 {
  font-size: 1.3rem;
  margin-top: 2em;
}
.legal-content p, .legal-content li { color: var(--text); }
.legal-content ul { padding-left: 1.2em; }
.legal-note {
  background: var(--cream-2);
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 1.6em 0;
}
