/* ============================================================
   TMF Tischlerei - Design-System
   Stil: hell, warm, natürlich | Premium-Handwerk
   Schriften: Fraunces / Hanken Grotesk / IBM Plex Mono
   (selbst gehostet, DSGVO-konform - gelten auf allen Seiten)
   ============================================================ */

@font-face {
  font-family: 'Fraunces';
  font-style: normal; font-weight: 600; font-display: swap;
  src: url('../assets/fonts/fraunces-v38-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal; font-weight: 700; font-display: swap;
  src: url('../assets/fonts/fraunces-v38-latin-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic; font-weight: 500; font-display: swap;
  src: url('../assets/fonts/fraunces-v38-latin-500italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url('../assets/fonts/hanken-grotesk-v12-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal; font-weight: 500; font-display: swap;
  src: url('../assets/fonts/hanken-grotesk-v12-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal; font-weight: 700; font-display: swap;
  src: url('../assets/fonts/hanken-grotesk-v12-latin-700.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url('../assets/fonts/ibm-plex-mono-v20-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal; font-weight: 500; font-display: swap;
  src: url('../assets/fonts/ibm-plex-mono-v20-latin-500.woff2') format('woff2');
}

:root {
  --bg:          #FAF7F2;
  --bg-alt:      #F3EDE4;
  --card:        #FFFFFF;
  --ink:         #2B2A27;
  --ink-soft:    #55504A;
  --muted:       #837C72;
  --accent:      #BE9243;   /* Gold aus Logo/Bestandsseite - CTAs */
  --accent-dark: #A0762F;
  --brand:       #7C221B;   /* Ziegelrot aus Logo/Bestandsseite */
  --brand-dark:  #641B15;
  --green:       #7C221B;   /* Alias: frühere Grün-Nutzungen -> Markenrot */
  --green-dark:  #641B15;
  --line:        #E5DED4;
  --footer-bg:   #5C1813;

  --serif: 'Fraunces', "Iowan Old Style", Palatino, Georgia, serif;
  --sans:  'Hanken Grotesk', -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --mono:  'IBM Plex Mono', 'SF Mono', Menlo, monospace;

  --maxw: 1200px;
  --radius: 6px;
  --shadow: 0 10px 30px rgba(43, 42, 39, 0.08);
  --shadow-soft: 0 4px 14px rgba(43, 42, 39, 0.06);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--accent-dark); text-decoration: none; }
a:hover { color: var(--accent); }

/* ---------- Typografie ---------- */

h1, h2, h3, .serif {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
}

h1, h2 { color: var(--brand); }

h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.9rem;
}

.lead { font-size: 1.15rem; color: var(--ink-soft); }

/* ---------- Layout-Helfer ---------- */

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section.alt { background: var(--bg-alt); }
.section-head { max-width: 720px; margin-bottom: 3rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 1rem; color: var(--ink-soft); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 15px 32px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.22s ease;
  text-align: center;
}

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); color: #fff; transform: translateY(-1px); }

.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.btn-ghost:hover { background: rgba(255,255,255,0.14); color: #fff; }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }

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

/* ---------- Topbar (Kontaktleiste wie Bestandsseite) ---------- */

.topbar { background: var(--brand); color: rgba(255,255,255,0.88); font-size: 0.78rem; }
.topbar-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 7px 24px;
  display: flex;
  justify-content: flex-end;
  gap: 26px;
  flex-wrap: wrap;
}
.topbar a { color: #fff; }
.topbar a:hover { color: #F1E4D4; }

@media (max-width: 560px) {
  .topbar-hours { display: none; }
  .topbar-inner { justify-content: center; gap: 16px; }
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

.logo-img { height: 60px; width: auto; }
.footer-logo { height: 90px; width: auto; margin-bottom: 1.1rem; }

.logo-mark {
  width: 44px; height: 44px;
  background: var(--ink);
  color: #fff;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

.main-nav { display: flex; gap: 26px; align-items: center; }
.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--ink); }
.main-nav a.active { color: var(--ink); border-bottom-color: var(--accent); }

.header-actions { display: flex; align-items: center; gap: 18px; }
.header-phone { font-weight: 600; font-size: 0.95rem; color: var(--ink); white-space: nowrap; }
.header-phone svg { vertical-align: -3px; margin-right: 6px; }
.header-cta { padding: 11px 22px; font-size: 0.92rem; }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 44px; height: 44px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); transition: 0.25s; }

/* ---------- Hero (Startseite) ---------- */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: #fff;
  isolation: isolate;
}

.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(30,26,20,0.72) 0%, rgba(30,26,20,0.38) 55%, rgba(30,26,20,0.15) 100%);
}

.hero-content { max-width: 680px; }
.hero-content h1 { color: #fff; margin-bottom: 1.4rem; }
.hero-content .lead { color: rgba(255,255,255,0.92); margin-bottom: 2.2rem; font-size: 1.2rem; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1.6rem;
  backdrop-filter: blur(4px);
}

/* ---------- Page-Header (Unterseiten) ---------- */

.page-header {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  isolation: isolate;
  padding-bottom: 56px;
}
.page-header .hero-bg::after {
  background: linear-gradient(180deg, rgba(30,26,20,0.18) 0%, rgba(30,26,20,0.66) 100%);
}
.page-header h1 { color: #fff; max-width: 800px; }
.page-header .lead { color: rgba(255,255,255,0.92); max-width: 680px; margin-top: 1rem; }
.breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,0.9); }

/* ---------- Trust-Bar ---------- */

.trust-bar { background: var(--brand); color: #fff; padding: 26px 0; }
.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-items strong { display: block; font-family: var(--serif); font-size: 1.25rem; color: #fff; }
.trust-items span { font-size: 0.85rem; color: rgba(255,255,255,0.72); }

/* ---------- Karten (Leistungen) ---------- */

.card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.card-img { aspect-ratio: 4 / 3; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card-img img { transform: scale(1.04); }

.card-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: 0.6rem; }
.card-body p { color: var(--ink-soft); font-size: 0.95rem; flex: 1; }
.card-link {
  margin-top: 1.2rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--accent-dark);
}
.card-link::after { content: " →"; }

.cards-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.cards-services .card:nth-child(4),
.cards-services .card:nth-child(5) { }
@media (min-width: 901px) {
  .cards-services { grid-template-columns: repeat(6, 1fr); }
  .cards-services .card:nth-child(1),
  .cards-services .card:nth-child(2) { grid-column: span 3; }
  .cards-services .card:nth-child(3),
  .cards-services .card:nth-child(4),
  .cards-services .card:nth-child(5) { grid-column: span 2; }
}

/* ---------- Split-Sektionen ---------- */

.split-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }

.feature-list { list-style: none; margin-top: 1.6rem; }
.feature-list li {
  padding-left: 34px;
  position: relative;
  margin-bottom: 0.9rem;
  color: var(--ink-soft);
}
.feature-list li::before {
  content: "";
  position: absolute; left: 0; top: 7px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3.4"><path d="M20 6L9 17l-5-5"/></svg>') center / 100% no-repeat;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3.4"><path d="M20 6L9 17l-5-5"/></svg>') center / 100% no-repeat;
}
.feature-list li strong { color: var(--ink); }

/* ---------- Produkt-Highlight ---------- */

.product-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.product-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  isolation: isolate;
}
.product-tile .tile-bg {
  position: absolute; inset: 0; z-index: -1;
  background-size: cover; background-position: center;
  transition: transform 0.45s ease;
}
.product-tile:hover .tile-bg { transform: scale(1.045); }
.product-tile .tile-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30,26,20,0.05) 30%, rgba(30,26,20,0.78) 100%);
}
.tile-body { padding: 34px; }
.tile-body h3 { color: #fff; font-size: 1.7rem; margin-bottom: 0.4rem; }
.tile-body .price { font-size: 1.05rem; font-weight: 600; color: #F1E4D4; margin-bottom: 0.7rem; }
.tile-body p { color: rgba(255,255,255,0.88); font-size: 0.95rem; max-width: 440px; }
.tile-body .card-link { color: #F1E4D4; display: inline-block; margin-top: 1rem; }

/* ---------- Prozess ---------- */

.process { counter-reset: step; display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.process.six { grid-template-columns: repeat(3, 1fr); }
.process-step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
}
.process .process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--serif);
  font-size: 1.9rem;
  color: var(--accent);
  margin-bottom: 0.7rem;
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 0.45rem; }
.process-step p { font-size: 0.88rem; color: var(--ink-soft); }

.process-note {
  margin-top: 2rem;
  text-align: center;
  font-size: 1.02rem;
  color: var(--ink-soft);
}
.process-note strong { color: var(--ink); }

/* ---------- Galerie ---------- */

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery a {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-soft);
}
.gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery a:hover img { transform: scale(1.05); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(20, 18, 15, 0.93);
  display: none;
  align-items: center; justify-content: center;
  padding: 4vh 4vw;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: 4px; }
.lightbox-close {
  position: absolute; top: 22px; right: 28px;
  background: none; border: none;
  color: #fff; font-size: 2.2rem;
  cursor: pointer; line-height: 1;
}

/* ---------- Tabellen (Preise) ---------- */

.price-table-wrap { overflow-x: auto; }
table.price {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  font-size: 0.97rem;
}
table.price th {
  background: var(--brand);
  color: #fff;
  text-align: left;
  padding: 14px 20px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}
table.price td { padding: 15px 20px; border-bottom: 1px solid var(--line); color: var(--ink-soft); }
table.price tr:last-child td { border-bottom: none; }
table.price td:last-child { font-weight: 700; color: var(--ink); white-space: nowrap; }

.price-anchor {
  background: var(--card);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-soft);
  padding: 26px 30px;
  margin: 2rem 0;
}
.price-anchor strong { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); }
.price-anchor p { color: var(--ink-soft); font-size: 0.95rem; margin-top: 0.4rem; }

/* ---------- FAQ / Akkordeon ---------- */

.faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq summary {
  padding: 18px 24px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 52px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 24px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--accent);
}
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 24px 20px; color: var(--ink-soft); }

/* ---------- Zitat / Dennis ---------- */

.founder {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 56px;
  align-items: center;
}
.founder-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.founder blockquote {
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--ink);
  border-left: 3px solid var(--accent);
  padding-left: 24px;
  margin: 1.4rem 0;
}
.founder .sig { font-weight: 600; }
.founder .sig span { display: block; font-weight: 400; font-size: 0.88rem; color: var(--muted); }

/* ---------- CTA-Band ---------- */

.cta-band {
  background: var(--green);
  color: #fff;
  padding: 72px 0;
  text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 0.8rem; }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 620px; margin: 0 auto 2rem; }
.cta-band .btn-primary { background: #fff; color: var(--green-dark); }
.cta-band .btn-primary:hover { background: var(--bg); }

/* ---------- Kontakt ---------- */

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

.contact-form {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
}
.form-row { margin-bottom: 20px; }
.form-row label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 7px; }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 1rem;
  background: var(--bg);
  color: var(--ink);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { outline: 2px solid var(--accent); outline-offset: 0; border-color: var(--accent); }
.form-hint { font-size: 0.8rem; color: var(--muted); margin-top: 1rem; }

.contact-info h3 { margin: 1.6rem 0 0.5rem; }
.contact-info p { color: var(--ink-soft); }
.placeholder-chip {
  display: inline-block;
  background: #F6E8D8;
  border: 1px dashed var(--accent);
  color: var(--accent-dark);
  border-radius: 4px;
  padding: 2px 10px;
  font-size: 0.88rem;
  font-weight: 600;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,0.78);
  padding: 64px 0 0;
  font-size: 0.93rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.site-footer h4 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.site-footer a { color: rgba(255,255,255,0.78); display: block; margin-bottom: 0.55rem; }
.site-footer a:hover { color: #fff; }
.footer-brand .logo-mark { background: #fff; color: var(--ink); margin-bottom: 1rem; }
.footer-brand p { max-width: 320px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* ---------- Consent-Banner ---------- */

.consent {
  position: fixed;
  left: 20px; bottom: 20px;
  z-index: 200;
  max-width: 420px;
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 24px;
}
.consent-text { font-size: 0.9rem; line-height: 1.55; color: var(--ink-soft); margin-bottom: 16px; }
.consent-text strong { color: var(--ink); }
.consent-buttons { display: flex; gap: 10px; }
.consent-buttons .btn { padding: 10px 20px; font-size: 0.88rem; }

@media (max-width: 560px) {
  .consent { left: 12px; right: 12px; bottom: 64px; max-width: none; }
  .consent-buttons .btn { flex: 1; }
}

/* ---------- Scroll-Animation ---------- */

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1240px) {
  .main-nav { gap: 18px; }
  .header-phone { display: none; }
}

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .founder { grid-template-columns: 300px 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 18px 24px 26px;
    gap: 4px;
    align-items: flex-start;
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 10px 0; font-size: 1.05rem; width: 100%; }
  .nav-toggle { display: flex; }
  .header-phone { display: none; }

  .grid-2, .contact-grid, .founder { grid-template-columns: 1fr; }
  .grid-3, .cards-services { grid-template-columns: 1fr 1fr; }
  .product-highlight { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .trust-items { grid-template-columns: 1fr 1fr; gap: 18px; }
  .founder-img { max-width: 340px; }
  .section { padding: 64px 0; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .grid-3, .grid-4, .cards-services, .gallery, .process, .process.six { grid-template-columns: 1fr; }
  .hero { min-height: 76vh; }
  .hero-actions .btn { width: 100%; }
  .header-cta { display: none; }
  .tile-body { padding: 24px; }
  .contact-form { padding: 26px; }

  /* Sticky Mobile-CTA */
  .mobile-cta {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 90;
    display: block;
    background: var(--accent);
    color: #fff;
    text-align: center;
    padding: 15px;
    font-weight: 700;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
  }
  .mobile-cta:hover { color: #fff; background: var(--accent-dark); }
  body { padding-bottom: 54px; }
}

.mobile-cta { display: none; }
