/* ── TOKENS ── */
:root {
  --cream:  #f8f5f0;
  --paper:  #ffffff;
  --warm:   #f2ebe1;
  --line:   #e0d5c8;
  --ink:    #1e1c1a;
  --stone:  #8a8278;
  --coral:  #b6876b;
  --sand:   #c8a67e;
  --display:'Cormorant Garamond', Georgia, serif;
  --body:   'Raleway', 'Avenir Next', sans-serif;
  --max:    1200px;
}
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:17px; }
body {
  font-family:var(--body); color:var(--ink);
  background:var(--cream); font-weight:300;
  line-height:1.75; -webkit-font-smoothing:antialiased;
  /* Sticky footer: Seite füllt mind. Bildschirmhöhe, Footer bleibt unten */
  display:flex; flex-direction:column; min-height:100vh;
}
a { text-decoration:none; color:inherit; }
img { display:block; width:100%; height:100%; object-fit:cover; }

/* ── KORALLE ── */
.koral { display:block; }
.koral-nat   { opacity:1; }                                      /* cream bg */
.koral-white { filter:brightness(0) invert(1); opacity:.38; }     /* dark bg  */
.koral-warm  { opacity:.88; }                                      /* warm bg  */
.koral-ghost { opacity:.08; }                                     /* watermark*/


/* ── BILD-BADGE (Logo + Homelund.de auf jedem Bild) ── */
.img-badge {
  position:absolute; top:16px; right:18px; z-index:5;
  display:flex; align-items:center; gap:7px;
  pointer-events:none;
}
.img-badge img { width:18px !important; height:auto !important; opacity:.75; object-fit:contain !important; }
.img-badge span {
  font-family:var(--body); font-size:.55rem;
  letter-spacing:2.5px; font-weight:400;
  text-transform:uppercase; color:rgba(255,255,255,.80);
  white-space:nowrap;
  text-shadow:0 1px 6px rgba(0,0,0,.5);
}
.img-wrap { position:relative; }
.img-badge-dark span { color:rgba(60,55,48,.75) !important; text-shadow:none !important; }

/* ── NAV ── */
#nav {
  position:fixed; inset:0 0 auto; z-index:300;
  display:flex; justify-content:space-between; align-items:center;
  padding:28px 6%;
  transition:background .5s, padding .4s, box-shadow .4s;
  /* Subtle gradient so nav is always visually separated from hero */
  background: linear-gradient(to bottom, rgba(20,18,16,.55) 0%, transparent 100%);
}
#nav.scrolled {
  background:rgba(248,245,240,.97) !important;
}
#nav.scrolled {
  backdrop-filter:blur(18px);
  padding:16px 6%;
  box-shadow:0 1px 0 var(--line);
}
.nav-brand { display:flex; align-items:center; gap:10px; }
/* Koralle in Nav: groß genug um als Motiv erkennbar zu sein */
.nav-koral {
  width:58px; height:auto; object-fit:contain; flex-shrink:0;
  opacity:1;
  filter:drop-shadow(0 1px 4px rgba(0,0,0,.5));
  transition:filter .4s;
}
#nav.scrolled .nav-koral {
  filter:none;
}
.nav-text { line-height:1.3; }
.nav-name {
  font-family:var(--body); font-size:.95rem;
  letter-spacing:5px; font-weight:500;
  text-transform:uppercase; color:#fff;
  transition:color .4s;
}
.nav-sep {
  width:1px; height:22px; background:rgba(255,255,255,.35);
  margin:0 4px; transition:background .4s; flex-shrink:0;
}
#nav.scrolled .nav-sep { background:var(--line); }
.nav-sub {
  font-family:var(--body);
  font-size:.82rem; letter-spacing:3px; font-weight:300;
  text-transform:uppercase; color:rgba(255,255,255,.88);
  transition:color .4s; white-space:nowrap;
}
#nav.scrolled .nav-name { color:var(--ink); }
#nav.scrolled .nav-sub  { color:var(--stone); }
#nav.scrolled .nav-sep  { background:var(--line); }
/* Nav links – on dark hero: white; after scroll: ink */
.nav-links {
  display:flex; gap:34px;
  font-size:.82rem; letter-spacing:2.5px; font-weight:400;
  text-transform:uppercase; color:#fff;
  transition:color .4s;
}
#nav.scrolled .nav-links { color:var(--ink); text-shadow:none; }
.nav-links a { transition:color .3s; }
.nav-links a { position:relative; padding-bottom:4px; transition:color .3s; }
.nav-links a::after {
  content:''; position:absolute; left:0; bottom:0;
  width:0; height:1px; background:var(--coral); transition:width .3s;
}
.nav-links a:hover { color:var(--coral) !important; }
.nav-links a:hover::after { width:100%; }
.nav-burger { display:none; background:none; border:none; cursor:pointer; color:#fff; font-size:1.4rem; transition:color .4s; }
#nav.scrolled .nav-burger { color:var(--ink); }

/* ── HERO ── */
.hero {
  position:relative; height:100vh; min-height:680px;
  display:flex; align-items:flex-end; overflow:hidden; padding:0;
}
.hero-bg { position:absolute; inset:0; }
.hero-bg img {
  width:100%; height:100%; object-fit:cover;
  animation:zoom 20s ease-out forwards;
}
@keyframes zoom { from{transform:scale(1.06)} to{transform:scale(1)} }
/* Multi-stop gradient: dark bottom, clear middle, subtle top */
.hero-bg::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(to top,
    rgba(20,18,16,.72) 0%,
    rgba(20,18,16,.32) 42%,
    rgba(20,18,16,.10) 66%,
    rgba(20,18,16,.18) 100%);
}
/* Koralle – hero bottom right */
.hero-koral {
  position:absolute; bottom:36px; right:48px; z-index:3;
  width:130px; pointer-events:none;
}
/* Hero content */
.hero-inner {
  position:relative; z-index:2;
  padding:0 6% 7vh; max-width:860px;
  animation:fadeUp 1.1s .15s both;
  margin-top: 10vh;
}
@keyframes fadeUp { from{opacity:0;transform:translateY(26px)} to{opacity:1;transform:translateY(0)} }
.hero-kicker {
  display:block;
  font-family:var(--body); font-size:.76rem;
  letter-spacing:6px; font-weight:400;
  text-transform:uppercase; color:rgba(255,255,255,.88);
  margin-bottom:28px;
  text-shadow: 0 1px 12px rgba(0,0,0,.5);
}
.hero h1 {
  font-family:var(--display);
  font-size:clamp(3rem,6.8vw,6.2rem);
  font-weight:300; line-height:1.08;
  color:#fff; margin-bottom:26px;
  letter-spacing:-.5px;
}
.hero h1 em { font-style:italic; color:var(--coral); }
.hero-lead {
  font-size:clamp(.95rem,1.5vw,1.12rem);
  color:rgba(255,255,255,.88); font-weight:300;
  max-width:520px; line-height:1.9; margin-bottom:14px;
}
.hero-lead-2 { margin-bottom:34px; }
.hero-actions { display:flex; gap:16px; flex-wrap:wrap; }

/* ── BUTTONS ── */
.btn {
  display:inline-block; padding:13px 36px;
  font-family:var(--body); font-size:.64rem;
  letter-spacing:3px; font-weight:400;
  text-transform:uppercase; border:1.5px solid currentColor;
  transition:.3s; cursor:pointer; background:transparent;
}
.btn-outline-w { color:#fff; border-color:rgba(255,255,255,.75); }
.btn-outline-w:hover { background:var(--coral); color:#fff; border-color:var(--coral); }
.btn-ghost-w   { color:rgba(255,255,255,.8); border-color:rgba(255,255,255,.75); }
.btn-ghost-w:hover { background:var(--coral); color:#fff; border-color:var(--coral); }
.btn-ink       { color:var(--ink); border-color:var(--ink); }
.btn-ink:hover { background:var(--coral); color:#fff; border-color:var(--coral); }
.btn-coral     { color:var(--coral); border-color:var(--coral); }
.btn-coral:hover { background:var(--coral); color:#fff; border-color:var(--coral); }
.btn-outline-w-sm { color:rgba(255,255,255,.85); border-color:rgba(255,255,255,.4); font-size:.6rem; padding:11px 28px; }
.btn-outline-w-sm:hover { background:var(--coral); color:#fff; border-color:var(--coral); }

/* ── SHARED LAYOUT ── */
.wrap { max-width:var(--max); margin:0 auto; }
section { padding:130px 6%; }
.eyebrow {
  font-size:.88rem; letter-spacing:7px; font-weight:300;
  text-transform:uppercase; color:var(--coral);
  margin-bottom:28px; display:flex; align-items:center; gap:18px;
}
.eyebrow::before { content:''; width:36px; height:1px; background:var(--coral); flex-shrink:0; }
.eyebrow.c { justify-content:center; }
.eyebrow.c::before { display:none; }
.eyebrow.lt { color:var(--sand); }
.eyebrow.lt::before { background:var(--sand); }
.h-display {
  font-family:var(--display);
  font-size:clamp(2.4rem,5.5vw,4.2rem);
  font-weight:300; line-height:1.15; letter-spacing:.2px;
}
.h-display em { font-style:italic; color:var(--coral); }
.h-display.wh { color:#fff; }
.h-display.wh em { color:var(--sand); }

/* ── STATEMENT (Victoria Hagan-inspired: huge type, generous space) ── */
.statement {
  background:var(--paper);
  padding:140px 6%;
  text-align:center;
}
.statement-quote {
  font-family:var(--display);
  font-size:clamp(2rem,4.5vw,3.6rem);
  font-weight:300; line-height:1.45;
  max-width:900px; margin:0 auto 36px;
  color:var(--ink); letter-spacing:.2px;
}
.statement-quote em { font-style:italic; color:var(--coral); }
.statement-body {
  font-size:1rem; color:var(--stone);
  max-width:620px; margin:0 auto;
  font-weight:300; line-height:2;
}

/* ── SERVICES (editorial list – Hagan-style) ── */
.services { background:var(--cream); }
.srv-list { max-width:var(--max); margin:80px auto 0; }
.srv-row {
  display:grid;
  grid-template-columns:80px 260px 1fr auto;
  gap:0 52px;
  align-items:start;
  padding:48px 0 48px 24px;
  border-top:1px solid var(--line);
  border-left:2px solid transparent;
  cursor:default;
  transition:border-left-color .3s, background .3s;
  position:relative;
}
.srv-row:hover {
  border-left-color:var(--coral);
  background:rgba(182,135,107,.04);
}
.srv-row:last-child { border-bottom:1px solid var(--line); }
.srv-n {
  font-family:var(--display);
  font-size:3.5rem; color:var(--line);
  font-weight:300; line-height:1; padding-top:4px;
}
.srv-title {
  margin:0;
  font-family:var(--display);
  font-size:clamp(1.6rem,2.4vw,2.1rem);
  font-weight:300; line-height:1.2;
  padding-top:6px;
}
.srv-tag {
  font-size:.58rem; letter-spacing:3.5px;
  text-transform:uppercase; color:var(--coral);
  font-weight:400; margin-bottom:10px; display:block;
}
.srv-body {
  font-size:1rem; color:#6a625a;
  font-weight:300; line-height:1.85; margin-top:8px;
}
.srv-cta {
  padding-top:10px; white-space:nowrap;
}
.srv-arrow {
  font-size:.62rem; letter-spacing:3px;
  text-transform:uppercase; color:var(--ink);
  border-bottom:1px solid var(--coral);
  padding-bottom:3px; display:inline-block; transition:color .3s;
}
.srv-arrow:hover { color:var(--coral); }

/* ── FEATURE SPLIT ── */
.feature {
  display:grid; grid-template-columns:1fr 1fr;
  min-height:92vh; padding:0; background:var(--ink);
}
.feature-img { position:relative; overflow:hidden; }
.feature-img img { height:100%; min-height:560px; }
.feature-panel {
  display:flex; flex-direction:column; justify-content:center;
  padding:90px 8%; position:relative; overflow:hidden;
}
.feature-koral {
  position:absolute; bottom:32px; right:32px;
  width:130px; height:auto; pointer-events:none;
  opacity:.18;
}
.feature-body {
  font-size:.97rem; color:rgba(232,224,214,.72);
  max-width:440px; margin:28px 0 0;
  font-weight:300; line-height:1.95;
}
/* Promise cards */
.promises {
  display:grid; grid-template-columns:1fr 1fr;
  gap:1px; margin:44px 0;
  border:1px solid rgba(255,255,255,.1);
}
.prom {
  padding:26px 24px;
  background:rgba(255,255,255,.04);
  border:none;
}
.prom-label {
  font-size:.6rem; letter-spacing:3px; text-transform:uppercase;
  color:var(--sand); margin-bottom:12px; font-weight:400;
}
.prom-text {
  font-size:.88rem; color:rgba(232,224,214,.62);
  font-weight:300; line-height:1.78;
}

/* ── GALLERY ── */
.gal-wrap { padding:0; background:var(--cream); }
.gal-head { padding:96px 6% 56px; }
.gal-head p {
  font-size:.96rem; color:var(--stone);
  max-width:460px; margin-top:18px;
  font-weight:300; line-height:1.88;
}
/* Category label */
.gal-cat {
  margin:0; font-weight:inherit;
  padding:36px 6% 0;
  font-size:.6rem; letter-spacing:4px;
  text-transform:uppercase; color:var(--coral);
  display:flex; align-items:center; gap:12px;
}
.gal-cat::before { content:''; width:24px; height:1px; background:var(--coral); }
/* Three equal columns */
.g3 { display:grid; grid-template-columns:1fr 1fr 1fr; gap:3px; }
.g3 figure { height:460px; }
/* Wide + narrow */
.g2 { display:grid; grid-template-columns:1.6fr 1fr; gap:3px; margin-top:3px; }
.g2 figure { height:380px; }
/* Garden row */
.g3g { display:grid; grid-template-columns:1fr 1fr 1fr; gap:3px; margin-top:3px; }
.g3g figure { height:300px; }
/* Shared */
.g3 figure, .g2 figure, .g3g figure {
  position:relative; overflow:hidden;
}
.g3 figure img, .g2 figure img, .g3g figure img {
  width:100%; height:100%; object-fit:cover;
  transition:transform 1.2s ease, filter .55s;
  filter:saturate(.85) brightness(.99);
}
.g3 figure:hover img, .g2 figure:hover img, .g3g figure:hover img {
  transform:scale(1.055); filter:saturate(1.03) brightness(1.01);
}
figure::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(180deg,transparent 55%,rgba(18,16,14,.46));
  opacity:0; transition:opacity .42s;
}
figure:hover::after { opacity:1; }
figcaption {
  position:absolute; bottom:18px; left:20px; z-index:2;
  font-size:.6rem; letter-spacing:3.5px; text-transform:uppercase;
  color:#fff; opacity:0; transition:opacity .36s; font-weight:400;
}
figure:hover figcaption { opacity:1; }

/* ── ABOUT ── */
.about { display:grid; grid-template-columns:1fr 1fr; min-height:680px; padding:0; background:var(--warm); }
.about-img { position:relative; overflow:hidden; min-height:520px; }
.about-img img { height:100%; }
.about-panel { display:flex; flex-direction:column; justify-content:center; padding:90px 8%; position:relative; }
.about-koral { 
  position:absolute; top:44px; right:44px; 
  width:96px; height:auto; pointer-events:none; opacity:.20;
}
.about-panel h2 {
  font-family:var(--display);
  font-size:clamp(2.1rem,4vw,3.2rem);
  font-weight:300; line-height:1.2; margin-bottom:32px;
}
.about-panel h2 em { font-style:italic; color:var(--coral); }
.about-panel p {
  font-size:.95rem; color:#6a6058;
  font-weight:300; line-height:1.95;
  margin-bottom:18px; max-width:450px;
}

/* ── TESTIMONIALS ── */
/* Victoria Hagan style: large pull-quote, minimal decoration */
.testi { background:var(--paper); padding:130px 6%; }
.testi-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:60px; max-width:var(--max); margin:80px auto 0;
}
.testi-item { border-top:1px solid var(--line); padding-top:36px; }
.stars { color:var(--coral); letter-spacing:4px; font-size:.82rem; margin-bottom:20px; }
.testi-q {
  font-family:var(--display); font-style:italic;
  font-size:1.1rem; color:#3e3a36;
  line-height:1.75; margin-bottom:24px;
}
.testi-who { font-size:.61rem; letter-spacing:3px; text-transform:uppercase; color:var(--coral); font-weight:400; }

/* Featured testimonial – Schwenzer, larger */
.testi-feature {
  grid-column:1/-1;
  display:grid; grid-template-columns:1fr 2px 2fr;
  gap:52px; align-items:center;
  border-top:1px solid var(--line); padding-top:56px;
  margin-top:20px;
}
.testi-feature-name { }
.testi-feature-name .stars { font-size:1rem; letter-spacing:5px; }
.testi-feature-name .who-large {
  font-family:var(--display);
  font-size:1.6rem; font-weight:300;
  line-height:1.3; margin-top:12px; color:var(--ink);
}
.testi-feature-name .who-sub {
  font-size:.62rem; letter-spacing:3px; text-transform:uppercase;
  color:var(--coral); margin-top:8px; font-weight:400;
}
.testi-divider { width:2px; height:100%; background:var(--line); }
.testi-feature-q {
  font-family:var(--display); font-style:italic;
  font-size:clamp(1.3rem,2.2vw,1.75rem);
  color:#3e3a36; line-height:1.65; font-weight:300;
}

/* ── CTA BAND ── */
.cta {
  position:relative; overflow:hidden;
  background:var(--ink);
  padding:150px 6%; text-align:center;
}
.cta-koral-bg {
  position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:440px; height:auto; pointer-events:none; opacity:.07;
}
.cta-inner { position:relative; z-index:2; max-width:660px; margin:0 auto; }
.cta-inner h2 {
  font-family:var(--display);
  font-size:clamp(2.4rem,5.5vw,4.2rem);
  font-weight:300; color:#fff;
  line-height:1.12; margin-bottom:24px; letter-spacing:.2px;
}
.cta-inner h2 em { font-style:italic; color:var(--sand); }
.cta-inner p {
  color:rgba(255,255,255,.60); font-size:.97rem;
  font-weight:300; line-height:1.95; margin-bottom:50px;
}

/* ── CONTACT ── */
.contact { background:var(--cream); padding-bottom:130px; }
.contact-grid {
  display:grid; grid-template-columns:1fr 1.8fr;
  gap:100px; max-width:var(--max); margin:88px auto 0;
}
.contact-info { }
.contact-koral { width:78px; height:auto; margin-bottom:14px; opacity:1; }
.contact-info h3 {
  font-family:var(--display);
  font-size:1.9rem; font-weight:300; margin-bottom:28px;
}
.contact-info p {
  font-size:.92rem; color:var(--stone);
  font-weight:300; line-height:1.9; margin-bottom:10px;
}
.hi { color:var(--coral); }
.contact-form { display:flex; flex-direction:column; gap:26px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width:100%; padding:13px 0;
  border:none; border-bottom:1px solid var(--line);
  background:transparent; font-family:var(--body);
  font-size:.93rem; font-weight:300; color:var(--ink);
  outline:none; transition:border-color .3s; -webkit-appearance:none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color:var(--stone); }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color:var(--coral); }
.contact-form select { color:var(--stone); cursor:pointer; }
.contact-form select option { color:var(--ink); }
.contact-form textarea { resize:none; }
.contact-form button { align-self:flex-start; margin-top:4px; }
.contact-form .hp { position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }
.consent { display:flex; gap:12px; align-items:flex-start; font-size:.8rem; color:var(--stone); line-height:1.6; cursor:pointer; font-weight:300; }
.consent input {
  /* Globale .contact-form-Regel entfernt per appearance:none die native
     Checkbox-Optik — hier wieder herstellen, sonst ist der Haken unsichtbar. */
  -webkit-appearance:checkbox; appearance:auto;
  width:16px; height:16px; padding:0; border:none;
  margin-top:3px; accent-color:var(--coral); flex:0 0 auto;
}
.consent a { color:var(--coral); text-decoration:underline; }
.form-status { font-size:.85rem; min-height:1.2em; margin-top:-10px; }
.form-status.error { color:#b0402f; }
.form-status.ok { color:var(--coral); }


/* ── IMPRESSUM ── */
.impressum { background:var(--paper); flex:1 0 auto; }
.impressum-inner { max-width:760px; margin:0 auto; }
.impressum-body { margin-top:40px; }
.impressum-body p {
  font-size:1rem; color:#6a625a; font-weight:300;
  line-height:1.9; margin-bottom:28px;
}
.impressum-body strong {
  color:var(--ink); font-weight:500;
  display:block; margin-bottom:6px;
  font-size:.7rem; letter-spacing:2px; text-transform:uppercase;
}
/* Gliederung fuer laengere Rechtstexte (Datenschutz-Vollversion) */
.impressum-body h2 { font-family:var(--display); font-size:1.5rem; font-weight:400; color:var(--ink); margin:48px 0 16px; }
.impressum-body h2:first-child { margin-top:0; }
.impressum-body h3 { font-size:.95rem; font-weight:600; color:var(--ink); margin:26px 0 8px; }
.impressum-body h4 { font-size:.88rem; font-weight:600; color:var(--stone); margin:16px 0 6px; }
.impressum-body ul { margin:0 0 28px 1.3em; color:#6a625a; font-weight:300; line-height:1.9; }
.impressum-body ul li { margin-bottom:8px; list-style:disc; }
.impressum-body a { color:var(--coral); }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  padding: 72px 6% 40px;
}
.ft {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 32px;
  align-items: start;
}
/* Spalte 1: Marke */
.ft-brand {}
.ft-brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.ft-koral {
  width: 52px;
  height: auto;
  display: block;
  opacity: 1;
  flex-shrink: 0;
}
.ft-name {
  font-family: var(--body);
  font-size: .72rem;
  letter-spacing: 5px;
  font-weight: 500;
  text-transform: uppercase;
  color: rgba(255,255,255,.95);
  margin-bottom:0;
}
.ft-tagline {
  font-family: var(--display);
  font-style: italic;
  font-size: .95rem;
  color: var(--sand);
  font-weight: 300;
}
/* Spalten 2+3: Label + Inhalt */
.ft-col {}
.ft-label {
  font-size: .62rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 400;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.ft-col p {
  font-size: .76rem;
  color: #a89e92;
  line-height: 1.85;
  margin: 0;
}
.ft-col a {
  font-size: .76rem;
  color: #a89e92;
  line-height: 1.85;
  display: block;
  transition: color .3s;
  text-decoration: none;
}
.ft-col a:hover { color: var(--coral); }
.ft-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ft-nav a {
  font-size: .64rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #a89e92;
  transition: color .3s;
  text-decoration: none;
}
.ft-nav a:hover { color: var(--coral); }
/* Unterzeile */
.ft-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .64rem;
  letter-spacing: 1.5px;
  color: #8a8076;
}
.ft-bottom a {
  color: #8a8076;
  transition: color .3s;
  text-decoration: none;
}
.ft-bottom a:hover { color: var(--coral); }

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  /* Burger-Menü für alle Tablets/iPads (Desktop-Nav passt erst > 1024px sauber) */
  .nav-links { display:none; flex-direction:column; }
  .nav-burger { display:block; }
  .srv-row { grid-template-columns:60px 1fr; grid-template-rows:auto auto auto; gap:0 24px; }
  .srv-row > div:nth-child(3) { grid-column:2; }
  .srv-cta { grid-column:2; }
  .feature { grid-template-columns:1fr; }
  .feature-img { min-height:56vw; max-height:500px; }
  .about { grid-template-columns:1fr; }
  .about-img { min-height:52vw; max-height:440px; }
  .testi-grid { grid-template-columns:1fr 1fr; }
  .testi-feature { grid-template-columns:1fr; gap:28px; }
  .testi-divider { display:none; }
  .contact-grid { grid-template-columns:1fr; gap:56px; }
}
@media(max-width:768px){
  section { padding:80px 6%; }
  .ft { grid-template-columns:1fr; gap:40px; }
  .gal-head { padding:72px 5% 44px; }
  .g3, .g3g { grid-template-columns:1fr; }
  .g3 figure, .g3g figure { height:62vw; }
  .g2 { grid-template-columns:1fr; }
  .g2 figure { height:56vw; }
  .testi-grid { grid-template-columns:1fr; }
  .testi-feature { grid-template-columns:1fr; }
  .hero-actions { flex-direction:column; }
  .ft { grid-template-columns:1fr; gap:36px; }
  .promises { grid-template-columns:1fr; }
  .cta-koral-bg { width:300px; }
}

/* ── RESPONSIVE: kleine Handys (Hochformat) ── */
@media(max-width:480px){
  html { font-size:16px; }
  section { padding:64px 6%; }
  .hero { min-height:560px; }
  .hero h1 { font-size:clamp(2.6rem,12vw,3.6rem); }
  .hero-inner { padding:0 6% 12vh; }
  .nav-name { font-size:.8rem; letter-spacing:3px; }
  .nav-sub { display:none; }
  .nav-sep { display:none; }
  .nav-koral { width:46px; }
  .img-badge span { font-size:.55rem; }
  .img-badge img { width:20px !important; }
  .srv-n { font-size:2.4rem; padding-top:8px; }
  .srv-row { grid-template-columns:48px 1fr; gap:0 16px; padding:36px 0; }
  .srv-row > div:nth-child(3) { grid-column:1 / -1; }
  .srv-cta { grid-column:1 / -1; padding-top:0; }
  .statement-quote { font-size:clamp(1.5rem,7vw,2rem); }
  .h-display { font-size:clamp(2rem,9vw,2.8rem); }
  .feature-panel, .about-panel { padding:56px 8%; }
  .contact-koral { width:64px; }
  .testi-feature-q { font-size:1.15rem; }
}

/* ── RESPONSIVE: Querformat Handy / kleine Tablets ── */
@media(min-width:481px) and (max-width:900px) and (orientation:landscape){
  .hero { min-height:100vh; }
  .hero h1 { font-size:clamp(2.8rem,7vw,4.5rem); }
}

/* ── RESPONSIVE: Tablet ── */
@media(min-width:769px) and (max-width:1024px){
  .g3, .g3g { grid-template-columns:1fr 1fr; }
  .g3 figure, .g3g figure { height:38vw; }
  .testi-grid { grid-template-columns:1fr 1fr; }
  section { padding:96px 6%; }
}

@media(prefers-reduced-motion:reduce){
  *, *::before, *::after { animation-duration:.01ms !important; transition-duration:.01ms !important; }
}
