/* ============================================================
   HOLTEX HAUSTECHNIK — shared stylesheet
   Montserrat · #b8734a accent · dark/light contrast rhythm
   ============================================================ */

/* ── Google Fonts loaded non-blocking in each HTML <head> ── */

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

/* ── Design tokens ───────────────────────────────────────── */
:root {
  --dark:         #15120e;
  --dark-2:       #1e1a14;
  --dark-3:       #2a241c;
  --light:        #f8f4ee;
  --white:        #ffffff;
  --accent:       #b8734a;
  --accent-hover: #a5633d;
  --accent-light: #f4ebe2;
  --copper:       #c98a5e;
  --copper-soft:  rgba(184,115,74,0.12);
  --text:         #1b1814;
  --text-mid:     #4c463f;
  --text-muted:   #8b8278;
  --border:       #e7dfd4;
  --border-dark:  #322b23;

  --font: 'Montserrat', sans-serif;
  --font-display: 'Montserrat', sans-serif;

  --nav-h: 72px;

  /* spacing scale */
  --s-xs:  0.5rem;
  --s-sm:  1rem;
  --s-md:  2rem;
  --s-lg:  4rem;
  --s-xl:  7rem;
  --s-2xl: 10rem;
}

/* ── Base ────────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol { list-style: none; }

/* ── Typography helpers ──────────────────────────────────── */
/* Display headings use Montserrat (bold) — element + class selectors
   so inline-styled headings inherit the heading font too */
h1, h2, h3,
.display, .h1, .h2, .h3 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
}

.display {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
}

.h1 {
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.018em;
}

.h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.012em;
}

.h3 {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.005em;
}

.h4 {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 700;
  letter-spacing: -0.005em;
}

.lead {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-mid);
}

.label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.label--light {
  color: rgba(255,255,255,0.5);
}

/* ── Layout ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

.section {
  padding-block: clamp(64px, 9vw, 120px);
}

.section--sm {
  padding-block: clamp(40px, 6vw, 72px);
}

.section--dark {
  background: var(--dark);
  color: var(--white);
}

.section--dark-2 {
  background: var(--dark-2);
  color: var(--white);
}

.section--light {
  background: var(--light);
}

/* ── Navigation ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--dark);
  border-bottom: 1px solid var(--border-dark);
  transition: background 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  background: rgba(15,15,15,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 32px rgba(0,0,0,0.4);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo img {
  height: 36px;
  width: auto;
  display: block;
  border-radius: 4px;
  background: #fff;
  padding: 3px 6px;
}

.nav__drawer-logo img {
  height: 32px;
  width: auto;
  display: block;
  border-radius: 4px;
  background: #fff;
  padding: 3px 6px;
}

.footer__logo img,
.footer__logo-mark[src="logo.png"] {
  height: 32px;
  width: auto;
  display: block;
  border-radius: 4px;
  background: #fff;
  padding: 3px 6px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav__link:hover,
.nav__link.active {
  color: var(--white);
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}

.nav__phone-icon {
  width: 16px;
  height: 16px;
  opacity: 0.6;
}

/* ── Hamburger ───────────────────────────────────────────── */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav__drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--dark-2);
  border-top: 1px solid var(--border-dark);
  padding: 24px clamp(20px, 5vw, 60px) 32px;
  z-index: 99;
  transform: translateY(-110%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}

.nav__drawer.open {
  transform: translateY(0);
}

.nav__drawer-logo {
  display: block;
  padding: 4px 0 20px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--border-dark);
}

.nav__drawer-logo img {
  height: 36px;
  width: auto;
  display: block;
}

.nav__drawer-link {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-dark);
  letter-spacing: -0.01em;
}

.nav__drawer-phone {
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: var(--accent);
  padding: 20px 0 0;
  letter-spacing: -0.02em;
}

/* ── Page offset for fixed nav ───────────────────────────── */
.page-top {
  padding-top: var(--nav-h);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,115,74,0.35);
}

.btn--primary:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn--outline:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
}

.btn--outline-dark {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn--outline-dark:hover {
  border-color: var(--text);
}

.btn--lg {
  padding: 18px 40px;
  font-size: 15px;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 13px;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 8vw, 100px) clamp(20px, 5vw, 60px) clamp(48px, 8vw, 100px) clamp(20px, 5vw, 60px);
  max-width: 760px;
}

.hero__label {
  margin-bottom: 20px;
}

.hero__title {
  color: var(--white);
  margin-bottom: 28px;
}

.hero__title em {
  font-style: normal;
  color: var(--accent);
}

.hero__sub {
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero__trust {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  align-items: center;
}

.hero__trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__trust-val {
  font-size: 26px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero__trust-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero__divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}

.hero__image {
  position: relative;
  overflow: hidden;
}

.hero__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15,15,15,0.5) 0%, transparent 40%);
  pointer-events: none;
}

/* ── Trust bar ───────────────────────────────────────────── */
.trust-bar {
  background: var(--dark-2);
  border-bottom: 1px solid var(--border-dark);
  padding: 20px 0;
}

.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 32px;
  border-right: 1px solid var(--border-dark);
  flex: 1;
  min-width: 160px;
}

.trust-bar__item:first-child { padding-left: 0; }
.trust-bar__item:last-child { border-right: none; }

.trust-bar__icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-bar__icon svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-bar__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.trust-bar__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.trust-bar__sub {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
}

/* ── Section intro ───────────────────────────────────────── */
.section-intro {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.section-intro--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.section-intro__label {
  margin-bottom: 12px;
}

.section-intro__heading {
  flex: 1;
}

.section-intro__body {
  flex: 1;
  padding-top: 8px;
  color: var(--text-mid);
  font-size: 16px;
  line-height: 1.7;
}

/* ── Services list ───────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  background: var(--border);
}

.service-item {
  background: var(--white);
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s;
  text-decoration: none;
  color: var(--text);
}

.service-item:hover {
  background: var(--light);
}

.service-item__icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.service-item__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-item__title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.service-item__desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
}

.service-item__link {
  margin-top: auto;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 8px;
}

.service-item__link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s;
}

.service-item:hover .service-item__link svg {
  transform: translateX(4px);
}

/* ── Before/after ────────────────────────────────────────── */
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  height: clamp(480px, 60vw, 820px);
  overflow: hidden;
}

.before-after__panel {
  position: relative;
  overflow: hidden;
}

.before-after__panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.before-after__panel:hover img {
  transform: scale(1.03);
}

.before-after__badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  z-index: 2;
}

.before-after__badge--before {
  background: rgba(0,0,0,0.7);
  color: rgba(255,255,255,0.7);
}

.before-after__badge--after {
  background: var(--accent);
  color: var(--white);
}

.before-after__divider {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--white);
  z-index: 3;
}

/* ── Fullbleed quote / CTA dark block ────────────────────── */
.fullbleed-dark {
  background: var(--dark);
  padding: clamp(64px, 10vw, 120px) clamp(20px, 5vw, 60px);
  text-align: center;
}

.fullbleed-dark .display {
  color: var(--white);
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: 40px;
}

.fullbleed-dark .lead {
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 40px;
}

/* ── Process steps ───────────────────────────────────────── */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(32px, 4vw, 48px);
}

.process__step {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process__num {
  font-size: 56px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.04em;
  opacity: 0.25;
}

.process__title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.process__desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── Testimonials ────────────────────────────────────────── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.testimonial {
  background: var(--dark-3);
  border: 1px solid var(--border-dark);
  padding: clamp(24px, 3vw, 36px);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial__stars {
  display: flex;
  gap: 3px;
}

.testimonial__star {
  color: #f59e0b;
  font-size: 14px;
}

.testimonial__text {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  flex: 1;
}

.testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 8px;
  border-top: 1px solid var(--border-dark);
}

.testimonial__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}

.testimonial__meta {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
}

/* ── CTA section ─────────────────────────────────────────── */
.cta-section {
  background: var(--accent);
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 60px);
}

.cta-section__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.cta-section__heading {
  color: var(--white);
  max-width: 560px;
}

.cta-section__sub {
  color: var(--white);
  font-size: 16px;
  margin-top: 12px;
  line-height: 1.6;
}

.cta-section__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  flex-shrink: 0;
}

.btn--white {
  background: var(--white);
  color: var(--accent);
}

.btn--white:hover {
  background: var(--light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.cta-section__phone {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
}

.cta-section__phone a {
  color: var(--white);
  font-weight: 700;
}

/* ── Contact form ────────────────────────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.field--dark input,
.field--dark select,
.field--dark textarea {
  background: var(--dark-3);
  border-color: var(--border-dark);
  color: var(--white);
}

.field--dark input:focus,
.field--dark select:focus,
.field--dark textarea:focus {
  border-color: var(--accent);
}

.field--dark label {
  color: rgba(255,255,255,0.4);
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.55);
  padding: clamp(48px, 7vw, 80px) 0 0;
  border-top: 1px solid var(--border-dark);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: clamp(48px, 7vw, 80px);
}

.footer__brand {
  max-width: 320px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  text-decoration: none;
}

.footer__logo-mark {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  color: #fff;
}

.footer__logo-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
}

.footer__desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer__contact-icon {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.5;
}

.footer__contact-icon svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer__col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.footer__link {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  padding: 5px 0;
  transition: color 0.2s;
}

.footer__link:hover {
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid var(--border-dark);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

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

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer__legal a:hover {
  color: rgba(255,255,255,0.6);
}

/* ── Image blocks ─────────────────────────────────────────── */
.img-full {
  width: 100%;
  height: clamp(300px, 45vw, 580px);
  object-fit: cover;
}

.img-aspect {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ── Highlight / callout ─────────────────────────────────── */
.highlight-box {
  border-left: 3px solid var(--accent);
  padding: 20px 24px;
  background: var(--accent-light);
  border-radius: 0 4px 4px 0;
}

.highlight-box--dark {
  background: rgba(184,115,74,0.12);
  border-left-color: var(--accent);
}

/* ── Feature list ────────────────────────────────────────── */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
}

.feature-list__item--light {
  color: rgba(255,255,255,0.8);
}

.feature-list__check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.feature-list__check svg {
  width: 10px;
  height: 10px;
  stroke: #fff;
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Two-col layout helper ───────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }

/* ── Scarcity banner ─────────────────────────────────────── */
.scarcity {
  background: var(--dark-2);
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  padding: clamp(24px, 4vw, 40px) clamp(28px, 5vw, 52px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.scarcity__text {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: -0.01em;
  max-width: 540px;
}

.scarcity__accent {
  color: var(--accent);
}

/* ── Sticky phone ────────────────────────────────────────── */
.sticky-phone {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
}

.sticky-phone.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.sticky-phone__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--white);
  padding: 13px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(184,115,74,0.4);
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}

.sticky-phone__btn:hover {
  background: var(--accent-hover);
  transform: scale(1.04);
}

.sticky-phone__btn svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Scroll-reveal animation ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* ── Gallery grid ────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 4px;
}

.gallery-grid__item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-grid__item:hover img {
  transform: scale(1.05);
}

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

.gallery-grid__item--tall {
  grid-row: span 2;
}

/* ── Breadcrumb ──────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.breadcrumb a:hover { color: rgba(255,255,255,0.8); }

.breadcrumb__sep {
  color: rgba(255,255,255,0.2);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: span 2;
    max-width: 100%;
  }

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

  .hero__image {
    display: none;
  }

  .hero__content {
    min-height: calc(100svh - var(--nav-h));
    max-width: 100%;
    padding-inline: clamp(20px, 5vw, 60px);
  }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__phone { display: none; }
  .nav__hamburger { display: flex; }
  .nav__drawer { display: block; }

  /* Mobile nav must fit: smaller logo + compact CTA so the hamburger is visible
     (logo img has an inline height:40px, so !important is required to override it) */
  .nav__inner { gap: 12px; }
  .nav__logo img { height: 28px !important; padding: 2px 5px; }
  .nav__right { gap: 10px; }
  .nav__right .btn { padding: 9px 14px; font-size: 13px; }

  /* Two-column section intro must stack on mobile (was clipping the body text) */
  .section-intro { flex-direction: column; gap: 16px; }

  .two-col {
    grid-template-columns: 1fr;
  }

  .two-col--reverse { direction: ltr; }

  .before-after {
    grid-template-columns: 1fr;
    height: auto;
  }

  .before-after__panel {
    height: 260px;
  }

  .cta-section__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer__brand {
    grid-column: span 1;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid__item--wide {
    grid-column: span 1;
  }

  .trust-bar__item {
    padding-inline: 16px;
    min-width: 130px;
  }
}

/* Inline fixed-column grids (set via inline styles on some pages) don't collapse
   on their own and clip on phones. Force them mobile-friendly. */
@media (max-width: 600px) {
  [style*="grid-template-columns:repeat(4,1fr)"] { grid-template-columns: repeat(2, 1fr) !important; }
  [style*="grid-template-columns:1fr 1fr 1fr"]   { grid-template-columns: repeat(2, 1fr) !important; }
  [style*="grid-template-columns:repeat(3,1fr)"] { grid-template-columns: repeat(2, 1fr) !important; }
  [style*="grid-template-columns:1fr auto"]      { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:1fr 2fr auto"]  { grid-template-columns: 1fr !important; }

  /* Long button labels must wrap instead of overflowing the screen */
  .btn { max-width: 100%; white-space: normal; }
}

@media (max-width: 480px) {
  /* Tightest phones: shrink logo + CTA a touch more so nothing clips */
  .nav__inner { gap: 8px; }
  .nav__logo img { height: 26px !important; }
  .nav__right .btn { padding: 8px 12px; font-size: 12px; letter-spacing: 0; }

  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .hero__trust {
    gap: 14px 20px;
  }
  .hero__trust-val {
    font-size: 22px;
  }
  .hero__divider {
    display: none;
  }
  .trust-bar__inner {
    justify-content: center;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid__item--tall {
    grid-row: span 1;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .trust-bar__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .trust-bar__item {
    border-right: none;
    border-bottom: 1px solid var(--border-dark);
    padding: 14px 0;
  }

  .trust-bar__item:last-child { border-bottom: none; }
}

/* ============================================================
   BRAND POLISH · Graphite & Copper luxury layer
   ============================================================ */

/* Eyebrow labels: refined, with a copper hairline accent */
.label {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  letter-spacing: 0.18em;
}
.label::before {
  content: "";
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, currentColor, transparent);
  opacity: 0.75;
  flex-shrink: 0;
}

/* Primary button: copper gradient + premium depth */
.btn--primary {
  background: linear-gradient(135deg, #c98a5e 0%, var(--accent) 52%, #a5633d 100%);
  box-shadow: 0 6px 18px rgba(184,115,74,0.26);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #cf9268 0%, #a5633d 100%);
  box-shadow: 0 12px 30px rgba(184,115,74,0.42);
  transform: translateY(-2px);
}

/* Nav links: copper underline reveal */
.nav__link { position: relative; }
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  height: 1.5px; width: 0;
  background: var(--copper);
  transition: width 0.28s ease;
}
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }

/* Copper hairline divider */
.lux-line {
  width: 56px; height: 1px;
  background: linear-gradient(90deg, var(--copper), transparent);
}

/* ── Leistungen dropdown (injected by app.js) ────────────── */
.nav__item { position: relative; display: inline-flex; }
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 248px;
  background: rgba(24,20,15,0.98);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-dark);
  border-top: 2px solid var(--accent);
  border-radius: 8px;
  padding: 9px;
  box-shadow: 0 28px 64px rgba(0,0,0,0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 120;
}
.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-link {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 11px 13px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
}
.nav__dropdown-link:hover {
  background: var(--copper-soft);
  color: #fff;
}
.nav__dropdown-link svg {
  width: 19px; height: 19px;
  color: var(--copper);
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .scarcity {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── Page hero (subpages) ─────────────────────────────────── */
.page-hero {
  background: var(--dark);
  padding: clamp(56px, 8vw, 100px) clamp(20px, 5vw, 60px) clamp(48px, 7vw, 80px);
}

.page-hero__title {
  color: var(--white);
  margin-bottom: 20px;
}

.page-hero__sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 32px;
}

/* ── Utility ─────────────────────────────────────────────── */
.text-accent { color: var(--accent); }
.text-white  { color: var(--white); }
.text-muted  { color: var(--text-muted); }
.text-mid    { color: var(--text-mid); }
.mt-sm       { margin-top: var(--s-sm); }
.mt-md       { margin-top: var(--s-md); }
.mt-lg       { margin-top: var(--s-lg); }
.mb-sm       { margin-bottom: var(--s-sm); }
.mb-md       { margin-bottom: var(--s-md); }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
