/* ==========================================================================
   Rümpel Ruedi — Design System
   ========================================================================== */

:root {
  /* Color palette — beige & warm grey */
  --ink: #30302e;
  --ink-soft: #67645f;
  --paper: #f4f0e9;
  --paper-alt: #e9e2d8;
  --paper-deep: #d9d0c4;
  --card: #fbfaf7;
  --line: #d8d1c8;
  --accent: #77736d;       /* warm grey — primary actions */
  --accent-dark: #57534e;
  --accent-ink: #f1ede7;
  --stone: #a49a8e;        /* beige / taupe — secondary areas */
  --stone-dark: #746d65;
  --stone-ink: #eee9e1;
  --gold: #b7aa98;
  --shadow: 0 12px 32px -16px rgba(48, 48, 46, 0.22);
  --shadow-sm: 0 4px 14px -8px rgba(48, 48, 46, 0.18);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;

  --font-display: Georgia, 'Iowan Old Style', 'Palatino Linotype', 'Book Antiqua', 'PT Serif', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

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

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

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

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

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

h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { margin: 0 0 1em; color: var(--ink-soft); }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.eyebrow.stone { color: var(--stone); }
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: currentColor;
  display: inline-block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-stone { background: var(--stone); color: #fff; box-shadow: var(--shadow-sm); }
.btn-stone:hover { background: var(--stone-dark); }
.btn-outline { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-outline:hover { border-color: var(--ink); }
.btn-ghost-light { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.4); color: #fff; }
.btn-ghost-light:hover { background: rgba(255,255,255,0.22); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 240, 233, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
}
.brand-mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.footer-brand .brand-mark { width: 38px; height: 38px; }
.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
}
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--ink); border-color: var(--accent); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; }

.header-cta { display: flex; align-items: center; gap: 18px; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}
.header-phone svg { width: 18px; height: 18px; color: var(--accent); }

@media (max-width: 920px) {
  .main-nav ul { display: none; }
  .header-phone span { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header.nav-open .main-nav ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--line);
    gap: 16px;
  }
}

@media (max-width: 560px) {
  .site-header .container { height: 68px; }
  .brand { gap: 10px; font-size: 1.02rem; }
  .brand-mark { width: 36px; height: 36px; font-size: 1rem; border-radius: 10px; }
  .brand small { display: none; }
  .header-cta { gap: 10px; }
  .header-phone { display: none; }
  .header-cta .btn-primary { padding: 10px 14px; font-size: 0.82rem; }
  .nav-toggle { width: 38px; height: 38px; flex-shrink: 0; }
  .site-header.nav-open .main-nav ul { top: 68px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 100px;
  background: radial-gradient(ellipse at 15% 20%, #fbfaf7 0%, var(--paper) 55%), var(--paper);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { margin-bottom: 20px; }
.hero-lede { font-size: 1.12rem; max-width: 46ch; }
.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 34px; margin-top: 46px; flex-wrap: wrap; }
.hero-stats div { min-width: 110px; }
.hero-stats strong { display: block; font-family: var(--font-display); font-size: 1.7rem; color: var(--accent); }
.hero-stats span { font-size: 0.82rem; color: var(--ink-soft); }

.hero-art {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-art img { width: 100%; height: 100%; object-fit: cover; }
.hero-art figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px 24px;
  background: linear-gradient(0deg, rgba(48,48,46,0.68), transparent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; aspect-ratio: 16/10; }
}

/* ---------- Split panel (home) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.split-panel {
  position: relative;
  padding: 90px 48px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.split-panel.warm {
  background:
    linear-gradient(160deg, rgba(71,69,65,0.90), rgba(126,119,110,0.78) 70%),
    url('../images/wohnzimmer-nachher.jpg') center/cover no-repeat;
}
.split-panel.stone { background: linear-gradient(160deg, var(--stone-dark), var(--stone) 65%); }
.split-panel .eyebrow { color: rgba(255,255,255,0.85); }
.split-panel .eyebrow::before { background: rgba(255,255,255,0.7); }
.split-panel h2 { color: #fff; }
.split-panel p { color: rgba(255,255,255,0.86); max-width: 42ch; }
.split-panel .btn-outline { border-color: rgba(255,255,255,0.55); color: #fff; }
.split-panel .btn-outline:hover { background: rgba(255,255,255,0.14); border-color: #fff; }
.split-inner { position: relative; z-index: 2; max-width: 460px; }
.split-deco { position: absolute; inset: 0; opacity: 0.5; z-index: 1; }

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split-panel { padding: 64px 28px; }
}

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section.tight { padding: 64px 0; }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-alt { background: var(--paper-alt); }

/* ---------- Cards / grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
@media (max-width: 860px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.service-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: var(--accent-ink);
  color: var(--accent);
}
.service-icon.stone { background: var(--stone-ink); color: var(--stone); }
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.service-card p { margin: 0; font-size: 0.95rem; }

.pill-list { display: flex; flex-wrap: wrap; gap: 12px; margin: 20px 0 0; padding: 0; list-style: none; }
.pill-list li {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pill-list li svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; }
.pill-list.stone li svg { color: var(--stone); }

/* ---------- Strengths ---------- */
.strength {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.strength:last-child { border-bottom: 1px solid var(--line); }
.strength .num { font-family: var(--font-display); font-size: 1.3rem; color: var(--accent); flex-shrink: 0; width: 40px; }
.strength h4 { margin: 0 0 6px; font-size: 1.05rem; }
.strength p { margin: 0; font-size: 0.95rem; }

/* ---------- Testimonials ---------- */
.testimonial {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}
.testimonial .quote-mark { font-family: var(--font-display); font-size: 3rem; color: var(--accent); line-height: 1; opacity: 0.5; }
.testimonial p.quote { font-size: 1.02rem; color: var(--ink); margin: 10px 0 20px; }
.testimonial .who { font-size: 0.86rem; font-weight: 600; color: var(--ink-soft); display: flex; align-items: center; gap: 10px; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 0.85rem; }

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  cursor: pointer;
}
.faq-q svg { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.25s ease; color: var(--accent); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a p { padding-bottom: 22px; margin: 0; }
.faq-item.open .faq-a { max-height: 320px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.78); margin: 0; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
}
.field textarea { min-height: 120px; resize: vertical; }
.field .hint { font-size: 0.78rem; color: var(--ink-soft); margin-top: 4px; }
.form-note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 14px; }
.form-success {
  display: none;
  background: var(--stone-ink);
  color: var(--stone-dark);
  border-radius: 12px;
  padding: 18px 20px;
  font-size: 0.92rem;
  margin-top: 18px;
}
.form-success.show { display: block; }

/* ---------- Contact page layout ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: flex-start;
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---------- Contact info list ---------- */
.info-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 20px; }
.info-list li { display: flex; gap: 16px; align-items: flex-start; }
.info-list .ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent-ink); color: var(--accent);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.info-list .ico svg { width: 20px; height: 20px; }
.info-list strong { display: block; font-size: 0.95rem; }
.info-list span, .info-list a { font-size: 0.92rem; color: var(--ink-soft); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.72);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-grid h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-grid a { font-size: 0.92rem; transition: color 0.15s ease; }
.footer-grid a:hover { color: #fff; }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.92rem; max-width: 32ch; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom ul { list-style: none; display: flex; gap: 22px; margin: 0; padding: 0; }
.footer-legal-links a:hover { color: #fff; }

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Legal pages ---------- */
.legal-doc h2 { margin-top: 2em; font-size: 1.3rem; }
.legal-doc h3 { font-size: 1.05rem; margin-top: 1.6em; }
.legal-doc p, .legal-doc li { color: var(--ink-soft); font-size: 0.98rem; }
.legal-doc ul { padding-left: 1.2em; }
.legal-hero {
  padding: 60px 0 20px;
  border-bottom: 1px solid var(--line);
}
.legal-updated { font-size: 0.85rem; color: var(--ink-soft); }

/* ---------- Breadcrumb / page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: 70px 0 84px;
  overflow: hidden;
}
.page-hero.warm {
  background:
    linear-gradient(155deg, rgba(71,69,65,0.92), rgba(126,119,110,0.82) 75%),
    url('../images/wohnzimmer-nachher.jpg') center/cover no-repeat;
  color: #fff;
}
.page-hero.stone { background: linear-gradient(155deg, var(--stone-dark), var(--stone) 80%); color: #fff; }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,0.86); max-width: 52ch; font-size: 1.05rem; }
.page-hero .eyebrow { color: rgba(255,255,255,0.85); }
.page-hero .eyebrow::before { background: rgba(255,255,255,0.7); }
.breadcrumb { font-size: 0.82rem; color: rgba(255,255,255,0.75); margin-bottom: 18px; display: flex; gap: 8px; align-items: center; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 20px; right: 20px; bottom: 20px;
  max-width: 560px;
  margin: 0 auto;
  background: var(--ink);
  color: rgba(255,255,255,0.9);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  box-shadow: var(--shadow);
  z-index: 1000;
  transform: translateY(140%);
  transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { color: rgba(255,255,255,0.78); font-size: 0.88rem; margin: 0 0 16px; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 10px 20px; font-size: 0.85rem; }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.badge-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--card); border: 1px solid var(--line);
  padding: 9px 16px; border-radius: 999px; font-size: 0.82rem; font-weight: 600;
}
.badge svg { width: 15px; height: 15px; color: var(--accent); }

@media (max-width: 720px) {
  .cta-band { padding: 40px 28px; flex-direction: column; align-items: flex-start; }
  .form-card { padding: 26px; }
}

/* ---------- Before / After gallery ---------- */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.ba-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.ba-card h3 {
  padding: 22px 26px 6px;
  font-size: 1.2rem;
}
.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: var(--line);
}
.ba-pair figure {
  margin: 0;
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: zoom-in;
}
.ba-pair.landscape figure { aspect-ratio: 16/10; }
.ba-pair img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.35s ease;
}
.ba-pair figure:hover img { transform: scale(1.04); }
.ba-pair figcaption {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(48,48,46,0.72);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.ba-pair figure.after figcaption { background: var(--accent); }
.ba-pair figure .zoom-hint {
  position: absolute;
  right: 12px; bottom: 12px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(48,48,46,0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.ba-pair figure:hover .zoom-hint { opacity: 1; }
.ba-pair figure .zoom-hint svg { width: 16px; height: 16px; }

@media (max-width: 640px) {
  .ba-pair { grid-template-columns: 1fr; }
  .ba-pair figure, .ba-pair.landscape figure { aspect-ratio: 4/3; }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(40, 40, 38, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}
.lightbox.show { display: flex; }
.lightbox-figure { max-width: min(1100px, 92vw); max-height: 84vh; margin: 0; text-align: center; }
.lightbox-figure img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-caption {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  margin-top: 16px;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.22); }
.lightbox-close svg, .lightbox-prev svg, .lightbox-next svg { width: 20px; height: 20px; }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) {
  .lightbox { padding: 20px 16px 90px; }
  .lightbox-close { top: 14px; right: 14px; width: 42px; height: 42px; }
  .lightbox-prev { left: 14px; width: 42px; height: 42px; }
  .lightbox-next { right: 14px; width: 42px; height: 42px; }
}

/* ---------- Demoted / side-business note ---------- */
.side-note {
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  background: var(--paper);
}
.side-note .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
  background: var(--stone-ink);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.side-note h3 { margin-bottom: 8px; font-size: 1.15rem; }
.side-note p { margin-bottom: 14px; font-size: 0.93rem; }
.side-note .pill-list { margin-top: 0; }
.side-note .pill-list li { background: var(--card); font-size: 0.82rem; padding: 7px 14px; }

/* ---------- Google review badge ---------- */
.review-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px 26px;
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
}
.review-badge .g-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 10px;
  background: var(--paper-alt);
  display: flex; align-items: center; justify-content: center;
}
.review-badge .g-icon svg { width: 22px; height: 22px; }
.review-badge .stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.review-badge strong { font-size: 1rem; }
.review-badge span { font-size: 0.85rem; color: var(--ink-soft); display: block; }
.review-badge .btn { margin-left: auto; }
@media (max-width: 560px) { .review-badge .btn { margin-left: 0; width: 100%; } }

/* ========================================================================== 
   V2 conversion & UX enhancements
   ========================================================================== */
.skip-link { position: fixed; left: 18px; top: -70px; z-index: 9999; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px; transition: top .2s ease; }
.skip-link:focus { top: 18px; }
.btn-lg { padding: 15px 27px; min-height: 52px; }
.footer-logo { color:#fff; margin-bottom:14px; display:flex; }
.hero-v2 { padding: 78px 0 86px; }
.hero-v2 .hero-grid { grid-template-columns: 1.06fr .94fr; gap: 68px; }
.hero-v2 h1 { font-size: clamp(2.7rem, 5.2vw, 4.7rem); max-width: 11.8ch; letter-spacing: -0.035em; }
.hero-v2 .hero-lede { font-size: 1.1rem; max-width: 55ch; }
.hero-copy { position: relative; z-index: 2; }
.hero-proof { display:flex; flex-wrap:wrap; gap:12px 22px; margin-top: 32px; color:var(--ink-soft); font-size:.86rem; font-weight:600; }
.hero-proof span { display:flex; align-items:center; gap:7px; }
.hero-proof svg { width:16px; height:16px; fill:none; stroke:var(--accent); stroke-width:2.2; }
.hero-photo-v2 { aspect-ratio: 4 / 3; overflow: visible; box-shadow:none; border-radius: 30px; }
.hero-photo-v2 > img { border-radius:30px; box-shadow:0 28px 70px -28px rgba(48,48,46,.30); object-fit:cover; }
.hero-photo-v2 figcaption { display:none; }
.hero-float-card { position:absolute; z-index:4; background:rgba(251,250,247,.95); backdrop-filter: blur(10px); border:1px solid rgba(216,209,200,.9); border-radius:14px; box-shadow:0 14px 32px -18px rgba(48,48,46,.34); display:flex; align-items:center; gap:9px; color:var(--ink); }
.hero-float-top { top:22px; right:-22px; padding:12px 15px; }
.hero-float-top strong { font-family:var(--font-display); font-size:1.55rem; color:var(--accent); line-height:1; }
.hero-float-top span { font-size:.77rem; color:var(--ink-soft); max-width:70px; line-height:1.25; }
.hero-float-bottom { left:-26px; bottom:26px; padding:13px 16px; font-size:.82rem; }
.hero-float-bottom .dot { width:9px; height:9px; border-radius:50%; background:#8b8780; box-shadow:0 0 0 5px rgba(139,135,128,.14); }
.trust-strip { border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:var(--card); }
.trust-grid { display:grid; grid-template-columns:repeat(4,1fr); padding-top:0; padding-bottom:0; }
.trust-grid > div { padding:24px 24px; border-right:1px solid var(--line); }
.trust-grid > div:first-child { padding-left:0; }
.trust-grid > div:last-child { border-right:0; }
.trust-grid strong,.trust-grid span { display:block; }
.trust-grid strong { font-family:var(--font-display); font-size:1.08rem; font-weight:400; }
.trust-grid span { color:var(--ink-soft); font-size:.78rem; margin-top:3px; }
.section-head-wide { max-width:none; display:grid; grid-template-columns:1.15fr .85fr; gap:50px; align-items:end; }
.section-head-wide > p { margin:0 0 7px; max-width:46ch; }
.service-feature-grid { display:grid; grid-template-columns:1.3fr .7fr; gap:24px; }
.service-feature { min-height:410px; border:1px solid var(--line); border-radius:26px; overflow:hidden; background:var(--card); display:grid; transition:transform .2s ease, box-shadow .2s ease; }
.service-feature:hover { transform:translateY(-4px); box-shadow:var(--shadow); }
.service-feature-main { grid-template-columns:1fr .72fr; }
.service-feature-content { padding:42px 40px; display:flex; flex-direction:column; align-items:flex-start; justify-content:flex-end; }
.service-feature h3 { font-size:clamp(1.55rem,2.5vw,2.2rem); margin:.45rem 0 .7rem; }
.service-feature p { max-width:42ch; }
.service-feature-image { min-height:100%; overflow:hidden; }
.service-feature-image img { width:100%; height:100%; object-fit:cover; }
.service-feature-secondary { background:linear-gradient(150deg,var(--stone-ink),#f8f6ef 70%); }
.service-feature-secondary .service-feature-content { justify-content:center; }
.service-kicker,.mini-label { display:inline-flex; font-size:.72rem; font-weight:700; text-transform:uppercase; letter-spacing:.11em; color:var(--accent); }
.stone-text { color:var(--stone); }
.text-link { margin-top:12px; font-weight:700; font-size:.9rem; color:var(--ink); }
.process-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.process-card { position:relative; background:var(--card); border:1px solid var(--line); border-radius:20px; padding:34px 30px 30px; }
.process-num { font-family:var(--font-display); color:var(--accent); font-size:1rem; }
.process-card h3 { margin:20px 0 10px; }
.process-card p { margin:0; font-size:.92rem; }
.home-ba-grid { display:grid; grid-template-columns:.85fr .85fr 1fr; gap:12px; align-items:stretch; }
.home-ba-item { position:relative; margin:0; min-height:440px; border-radius:20px; overflow:hidden; }
.home-ba-item img { width:100%; height:100%; object-fit:cover; }
.home-ba-item figcaption { position:absolute; left:14px; top:14px; border-radius:999px; padding:6px 11px; background:rgba(48,48,46,.76); color:#fff; text-transform:uppercase; letter-spacing:.08em; font-size:.68rem; font-weight:700; }
.home-ba-item.after figcaption { background:var(--accent); }
.home-ba-copy { margin-left:12px; border-radius:20px; background:var(--paper-alt); padding:40px; display:flex; flex-direction:column; justify-content:center; align-items:flex-start; }
.home-ba-copy h3 { font-size:1.7rem; margin:.7rem 0; }
.section-dark { background:var(--ink); color:#fff; }
.section-dark h2,.section-dark h3 { color:#fff; }
.section-dark p { color:rgba(255,255,255,.7); }
.eyebrow.light { color:#d5cabd; }
.eyebrow.light::before { background:currentColor; }
.btn-light { background:#fff; color:var(--ink); }
.btn-light:hover { background:var(--paper-alt); }
.why-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:88px; align-items:center; }
.why-grid > div:first-child > p:not(.eyebrow) { max-width:47ch; margin-bottom:26px; }
.why-list { border-top:1px solid rgba(255,255,255,.14); }
.why-list > div { display:grid; grid-template-columns:50px 1fr; gap:20px; padding:26px 0; border-bottom:1px solid rgba(255,255,255,.14); }
.why-list > div > span { color:#d5cabd; font-family:var(--font-display); }
.why-list h3 { font-size:1.18rem; margin:0 0 5px; }
.why-list p { margin:0; font-size:.9rem; }
.review-badge-v2 { max-width:680px; margin:0 auto; padding:24px 28px; }
.final-cta-section { padding-top:72px; padding-bottom:72px; }
.cta-band-v2 { border-radius:28px; padding:58px 62px; }
.mini-label-light { color:#d5cabd; margin-bottom:10px; }
.cta-actions { display:flex; flex-wrap:wrap; gap:12px; }
.mobile-contact-bar { display:none; }

@media (max-width: 980px) {
  .hero-v2 .hero-grid { gap:40px; }
  .hero-v2 h1 { font-size:clamp(2.4rem,5vw,3.7rem); }
  .service-feature-grid { grid-template-columns:1fr; }
  .service-feature-secondary { min-height:300px; }
  .why-grid { gap:48px; }
}
@media (max-width: 860px) {
  body { padding-bottom:68px; }
  .hero-v2 { padding:46px 0 62px; }
  .hero-v2 .hero-grid { grid-template-columns:1fr; }
  .hero-v2 .hero-art { order:0; }
  .hero-v2 h1 { max-width:14ch; }
  .hero-photo-v2 { aspect-ratio:16/10; margin-top:14px; }
  .hero-float-top { right:14px; top:14px; }
  .hero-float-bottom { left:14px; bottom:14px; }
  .trust-grid { grid-template-columns:1fr 1fr; }
  .trust-grid > div { border-right:0; border-bottom:1px solid var(--line); padding:20px 14px; }
  .trust-grid > div:nth-child(odd) { border-right:1px solid var(--line); }
  .trust-grid > div:nth-last-child(-n+2) { border-bottom:0; }
  .section-head-wide { grid-template-columns:1fr; gap:8px; }
  .service-feature-main { grid-template-columns:1fr .62fr; }
  .process-grid { grid-template-columns:1fr; }
  .home-ba-grid { grid-template-columns:1fr 1fr; }
  .home-ba-copy { grid-column:1 / -1; margin-left:0; min-height:280px; }
  .home-ba-item { min-height:400px; }
  .why-grid { grid-template-columns:1fr; }
  .mobile-contact-bar { display:grid; position:fixed; left:0; right:0; bottom:0; z-index:990; grid-template-columns:.85fr 1.15fr; background:#fff; border-top:1px solid var(--line); padding:8px 10px calc(8px + env(safe-area-inset-bottom)); box-shadow:0 -8px 24px rgba(48,48,46,.08); }
  .mobile-contact-bar a { min-height:48px; display:flex; align-items:center; justify-content:center; gap:7px; font-weight:700; font-size:.9rem; border-radius:999px; }
  .mobile-contact-bar a.primary { background:var(--accent); color:#fff; }
  .mobile-contact-bar svg { width:18px; height:18px; }
}
@media (max-width: 620px) {
  .header-offer { display:none; }
  .hero-v2 h1 { font-size:2.55rem; }
  .hero-v2 .hero-lede { font-size:1rem; }
  .hero-v2 .hero-actions { flex-direction:column; align-items:stretch; }
  .hero-v2 .hero-actions .btn { width:100%; }
  .hero-proof { display:grid; grid-template-columns:1fr; gap:9px; }
  .service-feature-main { grid-template-columns:1fr; }
  .service-feature-image { height:230px; order:-1; }
  .service-feature-content { padding:30px 26px; }
  .home-ba-item { min-height:300px; }
  .home-ba-copy { padding:30px 26px; }
  .cta-band-v2 { padding:38px 26px; }
  .cta-actions { width:100%; }
  .cta-actions .btn { width:100%; }
}

/* Contact V2 */
.contact-hero-v2 { padding:72px 0 64px; background:linear-gradient(150deg,#fbf8f3,var(--paper) 60%,var(--paper-alt)); border-bottom:1px solid var(--line); }
.contact-hero-grid { display:grid; grid-template-columns:1.25fr .75fr; gap:70px; align-items:end; }
.contact-hero-v2 h1 { max-width:12ch; font-size:clamp(2.6rem,4.8vw,4.3rem); letter-spacing:-.03em; }
.contact-hero-v2 p:not(.eyebrow) { max-width:57ch; font-size:1.05rem; }
.contact-hero-note { background:var(--card); border:1px solid var(--line); border-radius:18px; padding:24px; box-shadow:var(--shadow-sm); }
.contact-hero-note strong,.contact-hero-note span { display:block; }
.contact-hero-note strong { font-family:var(--font-display); font-size:1.2rem; }
.contact-hero-note span { color:var(--ink-soft); margin-top:6px; font-size:.9rem; }
.contact-grid-v2 { display:grid; grid-template-columns:1.16fr .84fr; gap:44px; align-items:start; }
.form-card-v2 { padding:42px; }
.form-intro { margin-bottom:28px; }
.form-intro h2 { margin:.45rem 0 .35rem; }
.form-intro p { font-size:.84rem; margin:0; }
.form-contact-tip { display:flex; gap:12px; padding:15px 16px; margin:3px 0 20px; background:var(--accent-ink); border-radius:12px; color:var(--ink-soft); font-size:.84rem; }
.form-contact-tip svg { width:20px; height:20px; color:var(--accent); flex:0 0 auto; margin-top:2px; }
.form-contact-tip a,.form-note a { text-decoration:underline; }
.form-error { display:none; margin-top:14px; padding:12px 14px; border-radius:10px; background:#f8e6df; color:#7d3320; font-size:.86rem; }
.form-error.show { display:block; }
.contact-aside-v2 { display:grid; gap:20px; position:sticky; top:102px; }
.contact-card-v2 { background:var(--ink); color:#fff; padding:34px 32px; border-radius:22px; }
.contact-card-v2 h2 { color:#fff; margin:.5rem 0 .6rem; }
.contact-card-v2 p { color:rgba(255,255,255,.68); }
.contact-big-link { display:block; color:#fff; font-family:var(--font-display); font-size:1.7rem; margin:22px 0 6px; }
.contact-mail-link { color:#d5cabd; font-size:.94rem; }
.contact-details-v2 { background:var(--card); border:1px solid var(--line); border-radius:20px; padding:10px 28px; }
.contact-details-v2 > div { padding:19px 0; border-bottom:1px solid var(--line); }
.contact-details-v2 > div:last-child { border-bottom:0; }
.contact-details-v2 span,.contact-details-v2 strong { display:block; }
.contact-details-v2 span { font-size:.72rem; text-transform:uppercase; letter-spacing:.09em; color:var(--ink-soft); margin-bottom:5px; }
.contact-details-v2 strong { font-size:.92rem; }
.contact-promise-v2 { display:flex; gap:13px; align-items:center; border:1px solid var(--line); border-radius:16px; padding:18px; background:var(--paper-alt); }
.contact-promise-v2 svg { width:30px; height:30px; color:var(--accent); flex:0 0 auto; }
.contact-promise-v2 strong,.contact-promise-v2 span { display:block; }
.contact-promise-v2 span { color:var(--ink-soft); font-size:.8rem; margin-top:2px; }
@media (max-width:860px) { .contact-hero-grid,.contact-grid-v2 { grid-template-columns:1fr; gap:28px; } .contact-aside-v2 { position:static; } }
@media (max-width:620px) { .contact-hero-v2 { padding:46px 0; } .contact-hero-v2 h1 { font-size:2.45rem; } .form-card-v2 { padding:28px 22px; } }

/* ========================================================================== 
   Swiss Premium Refinement — cleaner, quieter, more architectural
   ========================================================================== */

:root {
  --ink: #292927;
  --ink-soft: #686660;
  --paper: #f4f1eb;
  --paper-alt: #ebe7df;
  --paper-deep: #ddd7cd;
  --card: #fbfaf7;
  --line: #d5d0c7;
  --accent: #6f6d68;
  --accent-dark: #4d4c48;
  --accent-ink: #efebe4;
  --stone: #9a948b;
  --stone-dark: #68645f;
  --stone-ink: #ece7df;
  --gold: #aaa094;
  --shadow: 0 24px 70px -42px rgba(26, 26, 24, 0.34);
  --shadow-sm: 0 12px 34px -26px rgba(26, 26, 24, 0.28);
  --radius-lg: 12px;
  --radius-md: 8px;
  --radius-sm: 4px;
  --font-display: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

html { background: var(--paper); }

body {
  font-size: 16px;
  line-height: 1.62;
  letter-spacing: -0.005em;
  background: var(--paper);
}

::selection {
  background: var(--ink);
  color: #fff;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

h1 { font-size: clamp(2.8rem, 5.4vw, 5rem); }
h2 { font-size: clamp(2rem, 3.4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }

p { line-height: 1.7; }

.container {
  max-width: 1240px;
  padding-left: clamp(22px, 4vw, 52px);
  padding-right: clamp(22px, 4vw, 52px);
}

.eyebrow,
.service-kicker,
.mini-label,
.mini-label-light {
  font-size: 0.69rem;
  font-weight: 650;
  letter-spacing: 0.16em;
}

.eyebrow {
  gap: 10px;
  margin-bottom: 18px;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
}

/* Buttons: flatter, quieter, more precise */
.btn {
  min-height: 50px;
  padding: 13px 24px;
  border-radius: 4px;
  font-size: 0.83rem;
  font-weight: 650;
  letter-spacing: 0.045em;
  transition: background .2s ease, border-color .2s ease, color .2s ease, opacity .2s ease;
}

.btn:hover { transform: none; }
.btn-primary,
.btn-stone {
  background: var(--ink);
  color: #fff;
  box-shadow: none;
}
.btn-primary:hover,
.btn-stone:hover { background: var(--accent-dark); }
.btn-outline {
  background: transparent;
  border-color: #aaa69f;
}
.btn-outline:hover {
  background: rgba(41,41,39,.035);
  border-color: var(--ink);
}
.btn-light { border-radius: 4px; }
.btn-lg { min-height: 54px; padding: 15px 26px; }

/* Header */
.site-header {
  background: rgba(244, 241, 235, 0.965);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: rgba(120, 116, 108, .22);
}

.site-header .container { height: 88px; }

.brand { gap: 14px; font-size: 1.22rem; }
.brand-mark { width: 44px; height: 44px; }
.brand small {
  margin-top: 3px;
  font-size: 0.62rem;
  letter-spacing: .15em;
  font-weight: 650;
}

.main-nav ul { gap: 30px; }
.main-nav a {
  font-size: .82rem;
  font-weight: 560;
  letter-spacing: .025em;
  border-bottom-width: 1px;
  padding: 9px 0;
}

.header-cta { gap: 20px; }
.header-phone { font-size: .82rem; font-weight: 560; }
.header-phone svg { color: var(--ink-soft); }

/* Hero */
.hero,
.hero-v2 {
  background: var(--paper);
}

.hero-v2 {
  padding: clamp(72px, 8vw, 118px) 0 clamp(78px, 9vw, 128px);
}

.hero-v2 .hero-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, .88fr);
  gap: clamp(56px, 7vw, 104px);
}

.hero-v2 h1 {
  max-width: 11.5ch;
  font-size: clamp(3rem, 5.6vw, 5.25rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: .98;
  margin-bottom: 28px;
}

.hero-v2 .hero-lede,
.hero-lede {
  max-width: 54ch;
  font-size: 1.06rem;
  line-height: 1.75;
}

.hero-actions { margin-top: 34px; gap: 12px; }
.hero-proof {
  margin-top: 38px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
  gap: 12px 26px;
  font-size: .78rem;
  font-weight: 560;
}
.hero-proof svg { stroke: var(--ink-soft); }

.hero-photo-v2,
.hero-art {
  border-radius: 8px;
}

.hero-photo-v2 > img,
.hero-art img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-float-card {
  background: rgba(251,250,247,.97);
  border: 1px solid rgba(158,153,144,.4);
  border-radius: 6px;
  box-shadow: 0 14px 38px -28px rgba(25,25,24,.35);
}
.hero-float-top { right: -18px; }
.hero-float-top strong {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--ink);
}
.hero-float-bottom .dot {
  background: var(--stone-dark);
  box-shadow: 0 0 0 4px rgba(104,100,95,.12);
}

/* Trust strip */
.trust-strip {
  background: #f8f6f1;
  border-color: var(--line);
}
.trust-grid > div { padding: 27px 28px; }
.trust-grid strong {
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: -.01em;
}
.trust-grid span { font-size: .72rem; line-height: 1.5; }

/* Sections */
.section { padding: clamp(82px, 9vw, 126px) 0; }
.section.tight { padding: clamp(58px, 7vw, 82px) 0; }
.section-alt { background: var(--paper-alt); }
.section-head { margin-bottom: 58px; }
.section-head-wide { gap: 72px; }
.section-head-wide > p { font-size: .96rem; }

/* Home service feature */
.service-feature-grid { gap: 18px; }
.service-feature {
  border-radius: 8px;
  border-color: rgba(125,121,113,.30);
  box-shadow: none;
  min-height: 430px;
}
.service-feature:hover {
  transform: none;
  box-shadow: 0 0 0 1px rgba(41,41,39,.32);
}
.service-feature-content { padding: 46px; }
.service-feature h3 {
  font-size: clamp(1.65rem, 2.6vw, 2.35rem);
  letter-spacing: -.04em;
}
.service-feature-secondary {
  background: #e6e1d9;
}
.text-link {
  font-size: .79rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 650;
}

/* Generic cards */
.service-card,
.testimonial,
.form-card,
.ba-card,
.review-badge,
.contact-hero-note,
.contact-details-v2,
.contact-promise-v2,
.process-card {
  border-radius: 8px;
  box-shadow: none;
}

.service-card {
  padding: 34px 30px;
  border-color: rgba(125,121,113,.28);
}
.service-card:hover {
  transform: none;
  box-shadow: 0 0 0 1px rgba(41,41,39,.24);
}
.service-icon,
.info-list .ico,
.review-badge .g-icon {
  border-radius: 4px;
}
.service-icon { width: 46px; height: 46px; }

.process-grid { gap: 14px; }
.process-card { padding: 36px 30px; }
.process-num {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: .14em;
}
.process-card h3 { margin-top: 36px; }

/* Before / after */
.home-ba-grid { gap: 8px; }
.home-ba-item,
.home-ba-copy,
.ba-card { border-radius: 8px; }
.home-ba-item figcaption,
.ba-pair figcaption {
  border-radius: 3px;
  padding: 6px 9px;
  letter-spacing: .12em;
  font-size: .63rem;
}
.home-ba-copy { background: #e4ded5; }
.ba-pair figure:hover img { transform: scale(1.015); }
.ba-pair figure.after figcaption,
.home-ba-item.after figcaption { background: var(--ink); }

/* Dark / credibility sections */
.section-dark,
.site-footer,
.cta-band,
.contact-card-v2,
.cookie-banner {
  background: #30302d;
}
.section-dark p { color: rgba(255,255,255,.68); }
.eyebrow.light,
.mini-label-light,
.contact-mail-link { color: #d2ccc2; }
.why-grid { gap: clamp(56px, 8vw, 104px); }
.why-list > div {
  padding: 29px 0;
  border-color: rgba(255,255,255,.13);
}
.why-list > div > span {
  font-family: var(--font-body);
  font-size: .74rem;
  letter-spacing: .12em;
  color: #c4bdb2;
}

/* CTA */
.cta-band,
.cta-band-v2 {
  border-radius: 8px;
  padding: 58px 62px;
}
.cta-band h2 { letter-spacing: -.04em; }

/* Forms */
.form-card { padding: 44px; }
.field label {
  font-size: .73rem;
  letter-spacing: .045em;
  font-weight: 650;
}
.field input,
.field select,
.field textarea {
  min-height: 50px;
  border-radius: 4px;
  background: #f8f6f1;
  border-color: #ccc7be;
  padding: 13px 14px;
}
.field textarea { min-height: 136px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  background: #fff;
  border-color: var(--ink);
  box-shadow: 0 0 0 1px var(--ink);
}
.form-contact-tip,
.form-success,
.form-error { border-radius: 4px; }

/* Inner page hero */
.page-hero { padding: 82px 0 94px; }
.page-hero.warm {
  background:
    linear-gradient(100deg, rgba(41,41,39,.90), rgba(70,68,64,.66)),
    url('../images/wohnzimmer-nachher.jpg') center/cover no-repeat;
}
.page-hero.stone {
  background: linear-gradient(135deg, #4b4a46, #77736d);
}
.page-hero h1 {
  max-width: 13ch;
  letter-spacing: -.05em;
}
.breadcrumb {
  font-size: .7rem;
  letter-spacing: .055em;
  text-transform: uppercase;
}

/* Side services / badges */
.side-note {
  border-style: solid;
  border-radius: 8px;
  background: #f6f3ed;
}
.side-note .tag,
.pill-list li,
.badge {
  border-radius: 4px;
}
.side-note .tag {
  background: transparent;
  padding: 0;
  color: var(--ink-soft);
}
.pill-list { gap: 8px; }
.pill-list li,
.badge {
  background: rgba(251,250,247,.68);
  padding: 9px 13px;
  font-size: .78rem;
  font-weight: 560;
}

/* Contact */
.contact-hero-v2 {
  background: #eee9e1;
  padding: 84px 0 76px;
}
.contact-hero-v2 h1 {
  letter-spacing: -.055em;
  max-width: 13ch;
}
.contact-hero-note { padding: 26px; }
.contact-big-link {
  font-family: var(--font-body);
  font-size: 1.45rem;
  font-weight: 560;
  letter-spacing: -.025em;
}
.contact-promise-v2 { background: #e6e1d8; }

/* Footer */
.site-footer { padding-top: 84px; }
.footer-grid { gap: 54px; }
.footer-grid h4 {
  font-size: .67rem;
  letter-spacing: .15em;
  font-weight: 650;
}
.footer-grid a { font-size: .86rem; }
.footer-brand p { font-size: .86rem; }
.footer-bottom { font-size: .74rem; }

/* Cookie */
.cookie-banner {
  border-radius: 6px;
  max-width: 620px;
}

/* Mobile */
@media (max-width: 980px) {
  .hero-v2 .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }
}

@media (max-width: 860px) {
  .site-header .container { height: 76px; }
  .site-header.nav-open .main-nav ul { top: 76px; }
  .hero-v2 { padding: 52px 0 72px; }
  .hero-v2 .hero-grid { grid-template-columns: 1fr; }
  .hero-photo-v2 { margin-top: 10px; }
  .section-head-wide { gap: 14px; }
  .trust-grid > div { padding: 21px 16px; }
  .mobile-contact-bar {
    background: #f8f6f1;
    box-shadow: 0 -1px 0 var(--line);
  }
  .mobile-contact-bar a { border-radius: 4px; }
  .mobile-contact-bar a.primary { background: var(--ink); }
}

@media (max-width: 620px) {
  .container { padding-left: 20px; padding-right: 20px; }
  .site-header .container { height: 68px; }
  .site-header.nav-open .main-nav ul { top: 68px; }
  .brand { font-size: 1.02rem; }
  .brand-mark { width: 36px; height: 36px; }
  .hero-v2 h1 { font-size: clamp(2.65rem, 12vw, 3.6rem); }
  .hero-v2 .hero-lede { font-size: .98rem; }
  .hero-float-card { display: none; }
  .service-feature-content { padding: 32px 26px; }
  .section { padding: 74px 0; }
  .cta-band,
  .cta-band-v2 { padding: 36px 26px; }
  .form-card,
  .form-card-v2 { padding: 28px 22px; }
  .contact-hero-v2 { padding: 54px 0; }
  .footer-grid { gap: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ========================================================================== 
   Final production polish
   ========================================================================== */

body { overflow-x: hidden; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.skip-link { border-radius: 2px; }

.site-header .brand span:last-child { line-height: 1.08; }
.header-phone:hover { color: var(--accent-dark); }

.hero-v2 .hero-photo-v2 { position: relative; }
.hero-v2 .hero-photo-v2 > img { width: 100%; height: 100%; object-fit: cover; }

.clean-list {
  list-style: none;
  margin: 26px 0 4px;
  padding: 0;
  width: 100%;
  border-top: 1px solid rgba(41,41,39,.15);
}
.clean-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(41,41,39,.15);
  color: var(--ink);
  font-size: .91rem;
  position: relative;
  padding-left: 18px;
}
.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 5px;
  height: 5px;
  background: var(--ink-soft);
}

.side-service-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(32px, 7vw, 100px);
  align-items: center;
  padding: 42px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.side-service-row > div { max-width: 780px; }
.side-service-row h2 { margin: 8px 0 12px; }
.side-service-row p { margin: 0; max-width: 64ch; }

.faq-wrap { max-width: 900px; }

.contact-hero-note {
  border: 1px solid var(--line);
  background: rgba(251,250,247,.72);
  padding: 28px 30px;
  border-radius: 6px;
}
.contact-hero-note > span,
.contact-hero-note > small { display: block; }
.contact-hero-note > span {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--ink-soft);
  font-weight: 650;
}
.contact-hero-note > small { color: var(--ink-soft); line-height: 1.55; }

.form-intro { font-size: .92rem; color: var(--ink-soft); }
.form-intro strong { color: var(--ink); font-weight: 600; }
.form-contact-tip {
  display: block;
  border-left: 2px solid var(--ink-soft);
  background: #eeebe4;
  padding: 14px 16px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.form-contact-tip a { color: var(--ink); }
.form-error {
  background: #f4e9e5;
  color: #6f3025;
  border: 1px solid #dfc3bb;
  line-height: 1.55;
}
.form-error a { text-decoration: underline; }
.form-success {
  background: #e8ece7;
  color: #344237;
  border: 1px solid #c9d3c8;
  line-height: 1.55;
}
.form-success strong { color: inherit; }
.submit-btn:disabled { opacity: .6; cursor: wait; }
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.field [aria-invalid="true"] { border-color: #8d4738; box-shadow: 0 0 0 1px #8d4738; }

.contact-card-v2 .contact-mail-link {
  display: inline-block;
  margin-top: 12px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.contact-promise-v2 > svg { width: 24px; height: 24px; flex: 0 0 auto; }

.page-hero .hero-actions { margin-top: 30px; }
.page-hero .btn-light { background: #fff; color: var(--ink); }
.page-hero .btn-ghost-light { border-color: rgba(255,255,255,.55); }

.ba-card h3 { font-family: var(--font-body); font-size: .92rem; font-weight: 600; letter-spacing: -.01em; padding: 18px 20px 14px; }
.ba-pair figure { cursor: zoom-in; }

.review-badge-v2 { border-color: rgba(125,121,113,.28); }

.legal-doc a { text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 860px) {
  .side-service-row { grid-template-columns: 1fr; gap: 24px; }
  .side-service-row .btn { justify-self: start; }
  .hero-v2 .hero-photo-v2 { aspect-ratio: 16 / 10; }
}

@media (max-width: 620px) {
  .hero-v2 h1 { line-height: 1.01; }
  .hero-v2 .hero-proof { margin-top: 28px; }
  .trust-grid strong { font-size: .84rem; }
  .trust-grid span { font-size: .68rem; }
  .home-ba-grid { grid-template-columns: 1fr; }
  .home-ba-copy { grid-column: auto; }
  .home-ba-item { min-height: 270px; }
  .contact-hero-note { padding: 22px; }
  .contact-big-link { font-size: 1.25rem; }
  .form-row { gap: 0; }
  .side-service-row .btn { width: 100%; }
}


/* ========================================================================== 
   Density & Composition Refinement — premium, but not empty
   ========================================================================== */

/* Reduce unused vertical space while preserving the Swiss editorial rhythm. */
.hero-v2 {
  padding: clamp(48px, 5.1vw, 74px) 0 clamp(56px, 5.8vw, 84px);
}
.hero-v2 .hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  gap: clamp(44px, 5.5vw, 76px);
  align-items: center;
}
.hero-v2 h1 {
  font-size: clamp(2.85rem, 4.9vw, 4.65rem);
  max-width: 12.8ch;
  margin-bottom: 22px;
}
.hero-v2 .hero-lede { line-height: 1.66; }
.hero-actions { margin-top: 27px; }
.hero-proof {
  margin-top: 28px;
  padding-top: 18px;
}
.hero-service-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-top: 15px;
  color: var(--ink-soft);
  font-size: .72rem;
  letter-spacing: .035em;
}
.hero-service-line i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #aaa59d;
}
.hero-photo-v2 { aspect-ratio: 1.12 / 1; }

/* Main content: tighter but still generous. */
.section { padding: clamp(68px, 7vw, 92px) 0; }
.section.tight { padding: clamp(46px, 5vw, 64px) 0; }
.section-head { margin-bottom: 42px; }
.section-head-wide { gap: 50px; }
.service-feature { min-height: 370px; }
.service-feature-content { padding: 38px; }
.process-card { padding: 30px 28px; }
.process-card h3 { margin-top: 24px; }
.home-ba-item { min-height: 380px; }
.home-ba-copy { padding: 34px; }
.why-list > div { padding: 23px 0; }
.final-cta-section { padding-top: 54px; padding-bottom: 54px; }
.cta-band-v2 { padding: 46px 50px; }
.site-footer { padding-top: 64px; }

/* Contact: bring valuable information above the fold and remove dead space. */
.contact-hero-v2 {
  padding: 48px 0 44px;
}
.contact-hero-grid {
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(38px, 5vw, 68px);
  align-items: center;
}
.contact-hero-v2 h1 {
  max-width: 13.5ch;
  font-size: clamp(2.6rem, 4.15vw, 3.85rem);
  margin-bottom: 18px;
}
.contact-hero-v2 p:not(.eyebrow) {
  line-height: 1.62;
  margin-bottom: 0;
}
.contact-hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  margin-top: 28px;
  border-top: 1px solid #cbc5bc;
  border-bottom: 1px solid #cbc5bc;
}
.contact-hero-facts > div {
  padding: 15px 16px 15px 0;
  border-right: 1px solid #cbc5bc;
}
.contact-hero-facts > div + div { padding-left: 16px; }
.contact-hero-facts > div:last-child { border-right: 0; }
.contact-hero-facts strong,
.contact-hero-facts span { display: block; }
.contact-hero-facts strong {
  font-size: .88rem;
  font-weight: 650;
  color: var(--ink);
}
.contact-hero-facts span {
  margin-top: 2px;
  font-size: .69rem;
  line-height: 1.35;
  color: var(--ink-soft);
}
.contact-hero-note {
  padding: 30px 32px;
  background: #353431;
  color: #fff;
  border-color: #353431;
}
.contact-hero-note .mini-label { color: #d7d0c6; }
.contact-hero-note h2 {
  color: #fff;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  margin: 10px 0 18px;
}
.contact-hero-note .contact-big-link {
  color: #fff;
  font-size: clamp(1.45rem, 2.1vw, 1.82rem);
  margin: 0 0 5px;
}
.contact-hero-mail {
  display: inline-block;
  color: #ddd6cb;
  font-size: .86rem;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.28);
}
.contact-hero-note small {
  display: block;
  max-width: 42ch;
  color: rgba(255,255,255,.64);
  line-height: 1.55;
}
.contact-grid-v2 { gap: 32px; }
.form-card-v2 { padding: 36px; }
.contact-card-v2 { padding: 29px 28px; }
.contact-details-v2 > div { padding: 15px 0; }

/* Inner service-page heroes: compact and information-rich. */
.page-hero { padding: 58px 0 62px; }
.page-hero .container { position: relative; }
.page-hero p { line-height: 1.62; }
.page-hero .hero-actions { margin-top: 24px; }
.page-hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 720px;
  margin-top: 34px;
  border-top: 1px solid rgba(255,255,255,.28);
  border-bottom: 1px solid rgba(255,255,255,.28);
}
.page-hero-facts > div {
  padding: 14px 18px 14px 0;
  border-right: 1px solid rgba(255,255,255,.22);
}
.page-hero-facts > div + div { padding-left: 18px; }
.page-hero-facts > div:last-child { border-right: 0; }
.page-hero-facts strong,
.page-hero-facts span { display: block; }
.page-hero-facts strong {
  color: #fff;
  font-size: .82rem;
  font-weight: 650;
}
.page-hero-facts span {
  color: rgba(255,255,255,.68);
  font-size: .68rem;
  line-height: 1.35;
  margin-top: 2px;
}

/* More compact legal / information pages as well. */
.legal-page .section,
.legal-content { padding-top: 60px; padding-bottom: 60px; }

@media (max-width: 980px) {
  .hero-v2 .hero-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-v2 h1 { font-size: clamp(2.65rem, 5vw, 3.75rem); }
}

@media (max-width: 860px) {
  .hero-v2 { padding: 40px 0 52px; }
  .hero-v2 .hero-grid { grid-template-columns: 1fr; }
  .hero-photo-v2 { aspect-ratio: 16 / 9; }
  .contact-hero-v2 { padding: 38px 0 34px; }
  .contact-hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-hero-facts { margin-top: 22px; }
  .page-hero { padding: 46px 0 50px; }
  .page-hero-facts { margin-top: 26px; }
}

@media (max-width: 620px) {
  .hero-v2 h1 { font-size: clamp(2.45rem, 11vw, 3.3rem); }
  .hero-service-line { display: none; }
  .section { padding: 60px 0; }
  .section.tight { padding: 44px 0; }
  .contact-hero-facts,
  .page-hero-facts { grid-template-columns: 1fr; }
  .contact-hero-facts > div,
  .page-hero-facts > div,
  .contact-hero-facts > div + div,
  .page-hero-facts > div + div {
    padding: 11px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(125,121,113,.22);
  }
  .contact-hero-facts > div:last-child,
  .page-hero-facts > div:last-child { border-bottom: 0; }
  .page-hero-facts > div { border-bottom-color: rgba(255,255,255,.18); }
  .form-card-v2 { padding: 26px 20px; }
  .cta-band-v2 { padding: 32px 24px; }
}


/* ========================================================================== 
   Zusatzarbeiten — visual portfolio from the former live site
   ========================================================================== */
.sanierung-visual-section .section-head-wide {
  margin-bottom: 38px;
}
.sanierung-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.sanierung-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: var(--card);
  border: 1px solid rgba(125,121,113,.28);
  border-radius: 8px;
}
.sanierung-card-wide {
  grid-column: span 2;
}
.sanierung-card-media {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ded9d1;
  border-bottom: 1px solid rgba(125,121,113,.18);
}
.sanierung-card-media-tall {
  aspect-ratio: 4 / 3;
}
.sanierung-card-media-wide {
  aspect-ratio: 2.1 / 1;
}
.sanierung-card-media img,
.sanierung-editorial figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.84) contrast(.98);
  transition: transform .45s cubic-bezier(.2,.7,.2,1), filter .3s ease;
}
.sanierung-card:hover img,
.sanierung-editorial:hover figure img {
  transform: scale(1.018);
  filter: saturate(.92) contrast(1);
}
.sanierung-card-copy {
  padding: 24px 24px 26px;
}
.sanierung-card-copy .mini-label {
  display: block;
  margin-bottom: 13px;
}
.sanierung-card-copy h3 {
  margin: 0 0 9px;
  font-size: 1.12rem;
  letter-spacing: -.025em;
}
.sanierung-card-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .9rem;
  line-height: 1.62;
}

.sanierung-editorial-grid {
  display: grid;
  gap: 18px;
}
.sanierung-editorial {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(0, 1.02fr);
  min-height: 430px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid rgba(125,121,113,.28);
  border-radius: 8px;
}
.sanierung-editorial-reverse figure {
  order: 2;
}
.sanierung-editorial-reverse .sanierung-editorial-copy {
  order: 1;
}
.sanierung-editorial figure {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: #ddd8cf;
}
.sanierung-editorial-copy {
  align-self: center;
  padding: clamp(34px, 5vw, 64px);
}
.sanierung-editorial-copy h2 {
  margin: 9px 0 16px;
  max-width: 13ch;
  font-size: clamp(1.9rem, 3.4vw, 3.05rem);
  letter-spacing: -.045em;
}
.sanierung-editorial-copy p {
  max-width: 48ch;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.66;
}
.editorial-checks {
  list-style: none;
  margin: 25px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.editorial-checks li {
  position: relative;
  padding: 12px 0 12px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: .82rem;
}
.editorial-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 5px;
  height: 5px;
  background: var(--ink);
}

@media (max-width: 960px) {
  .sanierung-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sanierung-card-wide { grid-column: span 2; }
}
@media (max-width: 760px) {
  .sanierung-gallery { grid-template-columns: 1fr; }
  .sanierung-card-wide { grid-column: auto; }
  .sanierung-card-media,
  .sanierung-card-media-tall,
  .sanierung-card-media-wide { aspect-ratio: 16 / 10; }
  .sanierung-editorial { grid-template-columns: 1fr; min-height: 0; }
  .sanierung-editorial figure,
  .sanierung-editorial-reverse figure { order: 1; min-height: 280px; aspect-ratio: 16 / 10; }
  .sanierung-editorial-copy,
  .sanierung-editorial-reverse .sanierung-editorial-copy { order: 2; padding: 32px 24px 36px; }
  .sanierung-editorial-copy h2 { max-width: none; }
}
