/* WERKRAUM Möbelmontage Wien – Stylesheet */

:root {
  --ink: #20221f;
  --paper: #f3f0e8;
  --cream: #e8e2d6;
  --line: #cbc6ba;
  --orange: #ef5b2a;
  --green: #26382f;
  --muted: #696b65;
  --shadow: 0 18px 55px rgba(24, 26, 22, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

h1, h2, h3, h4 { font-weight: 650; letter-spacing: -0.035em; margin-top: 0; }
p { margin-top: 0; }
img { display: block; max-width: 100%; }
svg { flex: 0 0 auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.sec { padding: clamp(70px, 8vw, 110px) max(6vw, 24px); }
.eyebrow {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--orange);
}
.lead { color: var(--muted); font-size: 18px; line-height: 1.7; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  background: transparent;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-orange { background: var(--orange); border-color: var(--orange); color: #fff; }
.btn-orange:hover { background: #d94a1c; }
.btn-dark { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn-light { border-color: rgba(255, 255, 255, 0.5); color: #fff; }
.btn-light:hover { background: #fff; color: var(--ink); }

.tlink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

/* ---------- Header ---------- */
.topbar {
  position: relative;
  z-index: 30;
  display: flex;
  align-items: center;
  height: 82px;
  padding: 0 max(4vw, 22px);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 20px;
  font-weight: 850;
  letter-spacing: -0.04em;
  text-decoration: none;
}
.brand span.thin { font-weight: 350; }
.bars { display: flex; align-items: flex-end; gap: 2px; height: 27px; transform: skewX(-10deg); }
.bars i { display: block; width: 8px; background: var(--orange); }
.bars i:nth-child(1) { height: 15px; }
.bars i:nth-child(2) { height: 27px; }
.bars i:nth-child(3) { height: 21px; }

.mainnav { margin: 0 auto; display: flex; align-items: center; gap: clamp(16px, 2.6vw, 44px); }
.mainnav a {
  padding: 31px 0 27px;
  border-bottom: 3px solid transparent;
  color: #55574f;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}
.mainnav a:hover { color: var(--ink); }
.mainnav a.is-active { color: var(--ink); border-color: var(--orange); }
.tel { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 800; text-decoration: none; }
.burger { display: none; border: 0; background: transparent; padding: 6px; cursor: pointer; }

/* ---------- Startseite Hero ---------- */
.hero { display: grid; grid-template-columns: 50% 50%; border-bottom: 1px solid var(--line); }
.hero-copy { padding: 100px 4vw 80px 7vw; display: flex; flex-direction: column; justify-content: center; }
.kicker {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
}
.kicker i { width: 38px; height: 3px; background: var(--orange); }
.hero-copy h1 { font-size: clamp(50px, 5.2vw, 86px); line-height: 0.95; margin: 34px 0; }
.hero-copy h1 em { font-style: normal; font-weight: 300; color: var(--orange); }
.hero-copy .lead { max-width: 520px; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; flex-wrap: wrap; }
.proof { display: flex; align-items: center; gap: 14px; margin-top: 58px; }
.dots { display: flex; }
.dots span {
  width: 34px; height: 34px; margin-left: -7px; border: 2px solid var(--paper); border-radius: 50%;
  background: var(--green); color: #fff; font-size: 9px; font-weight: 700;
  display: grid; place-items: center;
}
.dots span:first-child { margin-left: 0; background: var(--orange); }
.stars { color: var(--orange); font-size: 12px; letter-spacing: 2px; }
.proof small { display: block; color: var(--muted); font-size: 11px; }

.hero-visual { position: relative; display: flex; align-items: center; background: var(--cream); padding: 42px 5vw 55px 14px; }
.frame { position: relative; z-index: 2; width: min(100%, 600px); height: 530px; overflow: hidden; }
.frame img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.78) contrast(1.04); }
.vlabel {
  position: absolute; top: 0; right: 0; bottom: 0; width: 42px;
  background: var(--ink); color: #fff; font-size: 9px; letter-spacing: 0.2em;
  writing-mode: vertical-rl; display: flex; align-items: center; justify-content: center;
}
.block { position: absolute; right: 0; bottom: 0; width: 33%; height: 170px; background: var(--orange); }
.hero-card {
  position: absolute; left: -55px; bottom: 72px; z-index: 3; width: 272px;
  display: flex; gap: 15px; padding: 24px; background: #fff; box-shadow: var(--shadow);
}
.hero-card svg { color: var(--orange); }
.hero-card strong { display: block; font-size: 14px; margin-bottom: 5px; }
.hero-card span { color: var(--muted); font-size: 11px; line-height: 1.45; }

/* ---------- Trust ---------- */
.trust { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line); }
.trust div { display: flex; align-items: center; gap: 18px; padding: 30px 5vw; border-right: 1px solid var(--line); }
.trust div:last-child { border-right: 0; }
.trust b { color: var(--orange); font-size: 12px; }
.trust span { font-size: 12px; font-weight: 750; line-height: 1.3; }

/* ---------- Abschnittkopf + Kacheln ---------- */
.sec-head { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 40px; align-items: end; }
.sec-head h2 { font-size: clamp(40px, 5vw, 72px); line-height: 1; margin: 0; }
.sec-head p { color: var(--muted); line-height: 1.7; max-width: 420px; margin: 0; }

.tiles { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.tile {
  position: relative; overflow: hidden; min-height: 310px; padding: 34px;
  display: flex; flex-direction: column; justify-content: space-between;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  text-decoration: none; transition: background 0.3s ease, color 0.3s ease;
}
.tile:nth-child(3n) { border-right: 0; }
.tile > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.38) saturate(0.6); }
.tile b, .tile h3, .tile p, .tile .tarrow { position: relative; z-index: 2; }
.tile b { color: var(--orange); font-size: 11px; font-weight: 800; letter-spacing: 0.1em; }
.tile h3 { font-size: 28px; margin: 0 0 12px; }
.tile p { max-width: 320px; color: var(--muted); font-size: 13px; line-height: 1.6; margin: 0; }
.tile .tarrow { position: absolute; top: 32px; right: 34px; }
.tile.dark { color: #fff; }
.tile.dark p { color: #d8d6cf; }
.tile:hover { background: var(--ink); color: #fff; }
.tile:hover p { color: #c9c7c0; }

/* ---------- Ablauf ---------- */
.process { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; background: var(--green); color: #fff; }
.process-img { position: relative; min-height: 620px; }
.process-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.62); }
.process-img span {
  position: absolute; left: -18px; bottom: 30px; padding: 15px 21px; background: var(--orange);
  font-size: 10px; font-weight: 800; letter-spacing: 0.18em;
}
.process-copy { display: flex; flex-direction: column; justify-content: center; }
.process-copy h2 { font-size: clamp(38px, 4vw, 62px); line-height: 1.02; margin: 0 0 40px; }
.prow { display: grid; grid-template-columns: 46px 120px 1fr; gap: 10px; align-items: baseline; padding: 20px 0; border-top: 1px solid rgba(255, 255, 255, 0.2); }
.prow b { color: var(--orange); font-size: 10px; font-weight: 800; }
.prow strong { font-size: 14px; }
.prow p { margin: 0; color: #bbc3bd; font-size: 12px; line-height: 1.55; }
.process-copy .tlink { align-self: flex-start; margin-top: 28px; }

/* ---------- Stimme ---------- */
.voice { background: var(--cream); padding: clamp(70px, 8vw, 110px) max(6vw, 24px); text-align: center; }
.voice .qmark { color: var(--orange); font: 140px/1 Georgia, "Times New Roman", serif; height: 82px; }
.voice blockquote { max-width: 980px; margin: 12px auto 32px; font: 400 clamp(24px, 3vw, 42px)/1.35 Georgia, "Times New Roman", serif; }
.voice strong { display: block; font-size: 12px; margin-bottom: 5px; }
.voice small { color: var(--muted); font-size: 11px; }

/* ---------- CTA-Streifen ---------- */
.cta-strip { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 62px 7vw; background: var(--orange); color: #fff; }
.cta-strip b { font-size: 10px; font-weight: 800; letter-spacing: 0.2em; }
.cta-strip h2 { font-size: clamp(32px, 5vw, 62px); margin: 10px 0 0; }
.circle { display: grid; place-items: center; width: 74px; height: 74px; border: 1px solid #fff; border-radius: 50%; flex: 0 0 auto; transition: 0.25s ease; }
.circle:hover { background: #fff; color: var(--orange); transform: rotate(-30deg); }

/* ---------- Seitenkopf ---------- */
.phero { display: grid; grid-template-columns: 55% 45%; border-bottom: 1px solid var(--line); }
.phero > div:first-child { padding: clamp(70px, 8vw, 100px) 7vw; display: flex; flex-direction: column; justify-content: center; }
.phero h1 { font-size: clamp(46px, 5.6vw, 86px); line-height: 0.96; margin: 0 0 30px; }
.phero p { max-width: 600px; }
.phero .btn { align-self: flex-start; margin-top: 32px; }
.phero-img { position: relative; min-height: 480px; overflow: hidden; background: var(--cream); }
.phero-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.72); }
.phero-img b { position: absolute; left: -8px; bottom: -32px; color: #fff; font-size: 148px; font-weight: 900; opacity: 0.72; line-height: 1; }

/* ---------- Leistungsliste ---------- */
.rows { padding: clamp(50px, 6vw, 80px) max(6vw, 24px); }
.rows a {
  display: grid; grid-template-columns: 70px 1fr 1fr 30px; gap: 28px; align-items: center;
  padding: 30px 0; border-top: 1px solid var(--line); text-decoration: none; transition: 0.2s ease;
}
.rows a:last-child { border-bottom: 1px solid var(--line); }
.rows a:hover { padding-left: 14px; color: var(--orange); }
.rows b { color: var(--orange); font-size: 11px; font-weight: 800; }
.rows h2 { font-size: 28px; margin: 0; }
.rows p { margin: 0; color: var(--muted); font-size: 13px; }

/* ---------- Leistungsdetail ---------- */
.duo { display: grid; grid-template-columns: 1fr 0.8fr; gap: 8vw; }
.duo h2 { font-size: clamp(34px, 4vw, 56px); line-height: 1.06; }
.duo p { color: var(--muted); line-height: 1.8; }
.checks { align-self: start; padding: 42px; background: var(--cream); }
.checks div { display: flex; align-items: center; gap: 15px; padding: 17px 0; border-bottom: 1px solid var(--line); font-size: 14px; font-weight: 700; }
.checks svg { color: var(--orange); }
.checks p { margin: 24px 0 0; color: var(--muted); font-size: 12px; line-height: 1.6; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; padding: 0 max(6vw, 24px) clamp(70px, 8vw, 110px); }
.steps article { padding: 30px; border: 1px solid var(--line); }
.steps b { color: var(--orange); font-size: 11px; font-weight: 800; }
.steps h3 { font-size: 19px; margin: 18px 0 10px; }
.steps p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }

.split { display: grid; grid-template-columns: 1fr 1fr; background: var(--cream); }
.split img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; filter: saturate(0.62); }
.split > div { padding: clamp(60px, 7vw, 100px) 7vw; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.split h2 { font-size: clamp(32px, 4vw, 54px); line-height: 1.04; }
.split p { color: var(--muted); line-height: 1.8; margin-bottom: 26px; }

/* ---------- Preise ---------- */
.prices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding: clamp(70px, 8vw, 110px) max(6vw, 24px) 30px; }
.prices article { display: flex; flex-direction: column; padding: 38px; border: 1px solid var(--line); }
.prices article.hot { background: var(--green); color: #fff; transform: translateY(-16px); }
.prices article.hot p { color: #c6cec8; }
.prices article.hot ul { border-color: rgba(255, 255, 255, 0.25); }
.prices b { color: var(--orange); font-size: 10px; font-weight: 800; letter-spacing: 0.18em; }
.prices h2 { font-size: 28px; margin: 26px 0 8px; }
.prices strong { display: block; margin-bottom: 22px; color: var(--orange); font-size: 24px; }
.prices p { color: var(--muted); line-height: 1.6; font-size: 14px; }
.prices ul { list-style: none; margin: auto 0 0; padding: 24px 0 0; border-top: 1px solid var(--line); }
.prices li { display: flex; gap: 10px; margin: 14px 0; font-size: 13px; }
.prices li svg { color: var(--orange); }
.note { padding: 0 max(6vw, 24px) clamp(70px, 8vw, 100px); color: var(--muted); font-size: 12px; text-align: center; }

/* ---------- Zeitachse ---------- */
.timeline { max-width: 1080px; margin: 0 auto; padding: clamp(60px, 7vw, 100px) max(6vw, 24px); }
.timeline article { display: grid; grid-template-columns: 130px 1fr; padding: 44px 0; border-top: 1px solid var(--line); }
.timeline article:last-child { border-bottom: 1px solid var(--line); }
.timeline b { color: var(--orange); font-size: 40px; font-weight: 300; }
.timeline h2 { font-size: 30px; margin-bottom: 12px; }
.timeline p { max-width: 680px; color: var(--muted); line-height: 1.75; margin: 0; }

/* ---------- Über uns ---------- */
.manifest { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; }
.manifest h2 { font-size: clamp(34px, 4vw, 58px); line-height: 1.04; margin: 0; }
.manifest p { color: var(--muted); line-height: 1.85; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--green); color: #fff; }
.values article { padding: clamp(50px, 6vw, 70px) 5vw; border-right: 1px solid rgba(255, 255, 255, 0.16); }
.values article:last-child { border-right: 0; }
.values svg { color: var(--orange); margin-bottom: 32px; }
.values h3 { font-size: 24px; }
.values p { margin: 0; color: #bec5c0; font-size: 13px; line-height: 1.65; }

.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: clamp(60px, 7vw, 100px) max(6vw, 24px); }
.team article img { width: 100%; height: 340px; object-fit: cover; filter: saturate(0.68); }
.team h3 { font-size: 22px; margin: 22px 0 4px; }
.team b { display: block; margin-bottom: 12px; color: var(--orange); font-size: 11px; letter-spacing: 0.14em; }
.team p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

/* ---------- Referenzen ---------- */
.projects { display: grid; grid-template-columns: 1fr 1fr; gap: 55px 24px; padding: clamp(60px, 7vw, 100px) max(6vw, 24px); }
.projects article:nth-child(even) { margin-top: 70px; }
.projects img { width: 100%; height: 420px; object-fit: cover; filter: saturate(0.7); }
.projects div { display: grid; grid-template-columns: 46px 1fr; padding-top: 22px; }
.projects b { grid-row: span 2; color: var(--orange); font-size: 11px; font-weight: 800; }
.projects h2 { font-size: 26px; margin: 0 0 6px; }
.projects p { margin: 0; color: var(--muted); font-size: 13px; }

/* ---------- Ratgeber ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: clamp(60px, 7vw, 100px) max(6vw, 24px); }
.cards article { display: flex; flex-direction: column; min-height: 360px; padding: 34px; border: 1px solid var(--line); }
.cards b { color: var(--orange); font-size: 10px; font-weight: 800; letter-spacing: 0.16em; }
.cards .idx { margin: 22px 0 -10px; color: var(--cream); font-size: 72px; font-weight: 900; line-height: 1; }
.cards h2 { font-size: 25px; }
.cards p { color: var(--muted); font-size: 13px; line-height: 1.65; }
.cards a { display: flex; align-items: center; gap: 8px; margin-top: auto; font-size: 12px; font-weight: 800; text-decoration: none; }

.ahero { padding: clamp(70px, 8vw, 110px) max(6vw, 24px) 70px; border-bottom: 1px solid var(--line); }
.ahero h1 { max-width: 1000px; font-size: clamp(40px, 5.5vw, 78px); line-height: 1; margin: 0 0 28px; }
.ahero p { max-width: 720px; }
.prose { width: min(760px, 100%); margin: 0 auto; padding: 60px max(6vw, 24px) clamp(70px, 8vw, 110px); }
.prose h2 { font-size: 30px; margin: 52px 0 16px; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--muted); line-height: 1.85; }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 10px; }
.tip { display: flex; gap: 18px; margin: 38px 0; padding: 26px; background: var(--cream); }
.tip svg { color: var(--orange); }
.tip p { margin: 0; color: var(--ink); font-size: 14px; line-height: 1.7; }
.prose .btn { margin-top: 42px; }

/* ---------- FAQ ---------- */
.faq { max-width: 1040px; margin: 0 auto; padding: clamp(60px, 7vw, 100px) max(6vw, 24px); }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-of-type { border-bottom: 1px solid var(--line); }
.faq summary {
  display: grid; grid-template-columns: 66px 1fr 30px; align-items: center; gap: 8px;
  padding: 30px 0; cursor: pointer; font-size: 20px; font-weight: 650; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary b { color: var(--orange); font-size: 11px; font-weight: 800; }
.faq summary svg { transition: transform 0.2s ease; }
.faq details[open] summary svg { transform: rotate(180deg); }
.faq details > p { max-width: 720px; margin: -8px 0 32px 66px; color: var(--muted); line-height: 1.8; }

/* ---------- Kontakt ---------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; }
.cinfo { padding: clamp(70px, 8vw, 100px) 7vw; background: var(--green); color: #fff; }
.cinfo h1 { font-size: clamp(40px, 4.6vw, 70px); line-height: 1; margin: 0 0 26px; }
.cinfo > p { max-width: 540px; color: #c0c9c3; line-height: 1.75; }
.clines { margin-top: 56px; }
.clines > * { display: flex; align-items: center; gap: 20px; padding: 22px 0; border-top: 1px solid rgba(255, 255, 255, 0.16); text-decoration: none; }
.clines svg { color: var(--orange); }
.clines span { display: flex; flex-direction: column; gap: 6px; font-size: 15px; }
.clines small { color: #8f9b94; font-size: 9px; font-weight: 800; letter-spacing: 0.16em; }
.cform { padding: clamp(70px, 8vw, 95px) 7vw; background: var(--cream); }
.cform label { display: block; margin-bottom: 22px; font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.cform input:not([type="checkbox"]), .cform select, .cform textarea {
  width: 100%; margin-top: 8px; padding: 12px 0; border: 0; border-bottom: 1px solid #9c9a92;
  border-radius: 0; background: transparent; outline: 0;
}
.cform input:focus, .cform select:focus, .cform textarea:focus { border-color: var(--orange); }
.duo-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.cform .check { display: flex; align-items: flex-start; gap: 10px; font-size: 12px; font-weight: 500; letter-spacing: 0; text-transform: none; line-height: 1.55; }
.cform .check input { margin-top: 3px; }
.sent { padding: 42px; background: #fff; box-shadow: var(--shadow); }
.sent svg { color: var(--orange); margin-bottom: 18px; }
.sent h2 { font-size: 30px; margin-bottom: 10px; }
.sent p { margin: 0; color: var(--muted); }

.areas { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; padding: clamp(50px, 6vw, 90px) max(6vw, 24px); }
.areas div { padding: 26px; background: var(--cream); }
.areas b { display: block; margin-bottom: 8px; font-size: 15px; }
.areas span { color: var(--muted); font-size: 12px; }

/* ---------- Rechtstexte ---------- */
.legal { max-width: 940px; margin: 0 auto; padding: clamp(50px, 6vw, 80px) max(6vw, 24px) clamp(70px, 8vw, 110px); }
.legal section { display: grid; grid-template-columns: 80px 1fr; padding: 34px 0; border-top: 1px solid var(--line); }
.legal section > b { color: var(--orange); font-size: 11px; font-weight: 800; }
.legal h2 { font-size: 24px; }
.legal p { margin-bottom: 8px; color: var(--muted); line-height: 1.8; white-space: pre-line; }
.legal .date { margin-top: 26px; font-size: 11px; }

/* ---------- Footer ---------- */
footer { padding: 72px 6vw 24px; background: #1d201e; color: #fff; }
.fmain { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 5vw; padding-bottom: 60px; }
.fmain .brand { margin-bottom: 26px; }
.fmain p { color: #929a94; font-size: 12px; line-height: 1.75; }
.fmain h4 { margin-bottom: 22px; color: #838b85; font-size: 9px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; }
.fmain nav { display: flex; flex-direction: column; align-items: flex-start; }
.fmain nav a { margin-bottom: 13px; font-size: 12px; text-decoration: none; }
.fmain nav a:hover { color: var(--orange); }
.fbottom { display: flex; justify-content: space-between; gap: 18px; padding-top: 22px; border-top: 1px solid #373b38; color: #777f79; font-size: 10px; }
.fbottom div { display: flex; gap: 24px; }
.fbottom a { text-decoration: none; }
.fbottom a:hover { color: var(--orange); }

/* ---------- Cookie-Banner ---------- */
.cookie {
  position: fixed; z-index: 60; left: 26px; right: 26px; bottom: 22px;
  display: grid; grid-template-columns: 46px 1fr auto; gap: 20px; align-items: center;
  padding: 22px 26px; background: #fff; border-left: 5px solid var(--orange); box-shadow: var(--shadow);
}
.cookie[hidden] { display: none; }
.cookie .cicon { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; place-content: center; width: 42px; height: 42px; border-radius: 50%; background: var(--cream); }
.cookie .cicon i { width: 5px; height: 5px; border-radius: 50%; background: var(--orange); }
.cookie strong { font-size: 14px; }
.cookie p { margin: 6px 0 0; color: var(--muted); font-size: 11px; line-height: 1.6; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-actions button { padding: 12px 16px; border: 1px solid var(--ink); background: transparent; font-size: 11px; font-weight: 750; cursor: pointer; }
.cookie-actions button.yes { background: var(--orange); border-color: var(--orange); color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .topbar { height: 70px; }
  .burger { display: block; margin-left: 18px; }
  .tel { margin-left: auto; }
  .mainnav {
    display: none; position: absolute; top: 70px; left: 0; right: 0; flex-direction: column;
    align-items: flex-start; gap: 0; padding: 10px 24px 22px; background: var(--paper);
    border-bottom: 1px solid var(--line);
  }
  .mainnav.open { display: flex; }
  .mainnav a { width: 100%; padding: 15px 0; border-bottom: 0; }
  .hero, .phero, .contact, .process, .duo, .split, .manifest, .sec-head { grid-template-columns: 1fr; }
  .hero-copy { padding: 70px 7vw; }
  .hero-visual { padding: 40px 7vw 70px; }
  .hero-card { left: 8vw; bottom: 34px; }
  .process { gap: 40px; }
  .process-img { min-height: 460px; }
  .trust, .steps, .areas { grid-template-columns: 1fr 1fr; }
  .tiles, .cards, .prices, .values, .team, .projects { grid-template-columns: 1fr 1fr; }
  .tile:nth-child(3n) { border-right: 1px solid var(--line); }
  .tile:nth-child(2n) { border-right: 0; }
  .prices article.hot { transform: none; }
  .values article { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.16); }
  .fmain { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .tel span { display: none; }
  .hero-copy { padding: 58px 24px; }
  .hero-copy h1 { font-size: 46px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero-visual { padding: 22px 0 66px 24px; }
  .frame { height: 420px; }
  .hero-card { left: 24px; right: 24px; width: auto; bottom: 26px; }
  .trust, .tiles, .cards, .prices, .values, .team, .projects, .steps, .areas, .fmain { grid-template-columns: 1fr; }
  .trust div, .tile { border-right: 0 !important; }
  .phero-img { min-height: 340px; }
  .phero-img b { font-size: 96px; bottom: -20px; }
  .rows a { grid-template-columns: 36px 1fr 24px; gap: 12px; }
  .rows a p { display: none; }
  .rows h2 { font-size: 22px; }
  .checks { padding: 28px 24px; }
  .split img { min-height: 320px; }
  .timeline article { grid-template-columns: 60px 1fr; padding: 32px 0; }
  .timeline b { font-size: 26px; }
  .timeline h2 { font-size: 26px; }
  .projects article:nth-child(even) { margin-top: 0; }
  .projects img { height: 300px; }
  .faq summary { grid-template-columns: 34px 1fr 24px; font-size: 17px; }
  .faq details > p { margin-left: 34px; }
  .cinfo, .cform { padding: 64px 24px; }
  .duo-fields { grid-template-columns: 1fr; gap: 0; }
  .legal section { grid-template-columns: 38px 1fr; }
  .fbottom { flex-direction: column; }
  .fbottom div { flex-wrap: wrap; gap: 12px 20px; }
  .cookie { left: 12px; right: 12px; bottom: 12px; grid-template-columns: 1fr; padding: 20px; }
  .cookie .cicon { display: none; }
  .cookie-actions { flex-direction: column; }
}

@media (max-width: 400px) {
  .hero-copy h1 { font-size: 40px; }
  .phero h1, .ahero h1 { font-size: 38px; }
  .voice blockquote { font-size: 21px; }
  .cta-strip { flex-direction: column; align-items: flex-start; gap: 24px; }
  .frame { height: 360px; }
  .hero-card { padding: 18px; }
  .brand { font-size: 18px; }
}
