/* ═══════════════════════════════════════════════════════════════
   RAUMWERK – Main Stylesheet
═══════════════════════════════════════════════════════════════ */

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

:root {
  --navy:   #263547;
  --navy2:  #1e2c3a;
  --navy3:  #3d5166;
  --red:    #cc2229;
  --red2:   #e8272f;
  --white:  #ffffff;
  --off:    #f8fafc;
  --muted:  #64748b;
  --border: #e2e8f0;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.14);
  /* aliases so existing references still work */
  --gold:  var(--red);
  --gold2: var(--red2);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── TYPOGRAPHY ─── */
h1 { font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 800; line-height: 1.1; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.2rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--muted); }
a  { color: inherit; text-decoration: none; }

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

/* ─── SECTIONS ─── */
.section       { padding: 6rem 0; }
.section-dark  { background: var(--navy); color: var(--white); }
.section-dark p { color: #94a3b8; }
.section-light { background: var(--off); }

.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-head p {
  max-width: 560px;
  margin: 1rem auto 0;
}

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(204,34,41,.08);
  border: 1px solid rgba(204,34,41,.25);
  padding: .3rem .9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.section-label.light { background: rgba(204,34,41,.12); }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  padding: .85rem 1.8rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  font-size: .95rem;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--red2); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  padding: .85rem 1.8rem;
  border-radius: 100px;
  border: 2px solid var(--border);
  cursor: pointer;
  font-size: .95rem;
  transition: border-color .2s, background .2s;
}
.btn-ghost:hover { border-color: var(--navy3); background: var(--off); }

/* ═══════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.08); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--navy);
}
.logo-img {
  height: 78px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-fallback { display: none; }
.logo-r {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  width: 1.5rem;
  height: 1.5rem;
  line-height: 1.5rem;
  text-align: center;
  border-radius: 4px;
  margin-right: .15rem;
  font-size: 1.1rem;
}
.footer-logo-img {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
  background: white;
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: .75rem;
}
.logo-fallback-footer { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: .9rem;
  font-weight: 500;
}
.nav-links a { color: var(--navy3); transition: color .2s; }
.nav-links a:hover { color: var(--navy); }

.btn-nav {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: .55rem 1.3rem !important;
  border-radius: 100px;
  font-weight: 600 !important;
  font-size: .85rem !important;
  transition: background .2s !important;
}
.btn-nav:hover { background: var(--navy3) !important; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: .3s;
}

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 10rem 0 6rem;
  background: var(--navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% -20%, rgba(204,34,41,.22) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at -10% 80%, rgba(204,34,41,.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content { position: relative; max-width: 780px; }

.hero-badge {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(204,34,41,.45);
  background: rgba(204,34,41,.1);
  padding: .35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero h1 { color: var(--white); margin-bottom: 1.25rem; }

.hero-sub {
  font-size: 1.1rem;
  color: #94a3b8;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }
.hero-actions .btn-ghost { color: var(--white); border-color: rgba(255,255,255,.3); }
.hero-actions .btn-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6); }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: .1rem; }
.stat-n {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat span:last-child { font-size: .8rem; color: #64748b; }

/* ═══════════════════════════════════════════════════
   SERVICES GRID
═══════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.service-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.service-icon svg { width: 26px; height: 26px; color: white; }

.service-brand {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .35rem;
}

.service-card h3 { margin-bottom: .6rem; font-size: 1.25rem; }
.service-card p { font-size: .9rem; margin-bottom: 1rem; }

.service-list {
  list-style: none;
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .3rem .5rem;
}
.service-list li {
  font-size: .82rem;
  color: var(--muted);
  padding-left: 1rem;
  position: relative;
}
.service-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.btn-service {
  background: none;
  border: none;
  color: var(--navy);
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  padding: 0;
  transition: color .2s;
}
.btn-service:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text h2 { color: var(--white); margin-bottom: 1rem; }
.about-text p { margin-bottom: 1rem; }

.usp-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.1rem; }
.usp { display: flex; gap: 1rem; align-items: flex-start; }
.usp-check {
  width: 24px; height: 24px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: .1rem;
}
.usp div strong { color: var(--white); font-size: .95rem; }
.usp div { font-size: .88rem; }

.about-brands { display: flex; flex-direction: column; gap: 1rem; }
.brand-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.brand-card:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); }
.brand-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; margin-top: .4rem; }
.brand-card strong { color: var(--white); font-size: .95rem; display: block; }
.brand-card span { color: #64748b; font-size: .82rem; }

/* ═══════════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.gallery-item { border-radius: var(--radius); overflow: hidden; }
.gallery-large { grid-row: 1 / 3; }

.gallery-placeholder {
  width: 100%;
  height: 100%;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 2rem;
}
.gallery-large .gallery-placeholder { min-height: 360px; }
.gallery-placeholder span {
  color: white;
  font-size: .85rem;
  font-weight: 600;
  text-align: center;
  opacity: .9;
}

.gallery-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: .85rem;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════════
   REVIEWS
═══════════════════════════════════════════════════ */
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-top: 1rem;
}
.big-star  { font-size: 1.8rem; color: var(--gold); }
.big-score { font-size: 1.5rem; font-weight: 800; color: var(--navy); }
.big-count { font-size: .85rem; color: var(--muted); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: box-shadow .2s;
}
.review-card:hover { box-shadow: var(--shadow); }

.review-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: .75rem; }
.review-card p { font-size: .9rem; margin-bottom: 1.25rem; font-style: italic; }

.review-author { display: flex; align-items: center; gap: .85rem; }
.review-avatar {
  width: 40px; height: 40px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .8rem;
  flex-shrink: 0;
}
.review-author strong { font-size: .9rem; color: var(--navy); }
.review-author span   { font-size: .78rem; color: var(--muted); }

/* ═══════════════════════════════════════════════════
   ANFRAGE FORM
═══════════════════════════════════════════════════ */
.form-wrapper {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.form-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 2rem;
}
.progress-step {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--border);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  transition: background .3s, color .3s;
}
.progress-step.active {
  background: var(--gold);
  color: var(--navy);
}
.progress-step.done {
  background: var(--navy);
  color: var(--white);
}
.progress-line {
  flex: 1;
  max-width: 80px;
  height: 2px;
  background: var(--border);
}

.form-step { display: none; }
.form-step.active { display: block; }

.form-step h3 {
  font-size: 1.1rem;
  margin-bottom: 1.75rem;
  color: var(--navy);
}

.service-select-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: .75rem;
}

.service-radio-card input { display: none; }
.service-radio-card { cursor: pointer; }
.src-inner {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem .75rem;
  text-align: center;
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy3);
  transition: border-color .2s, background .2s, color .2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  line-height: 1.3;
}
.src-inner svg { width: 28px; height: 28px; color: var(--clr); }
.service-radio-card input:checked + .src-inner {
  border-color: var(--clr);
  background: color-mix(in srgb, var(--clr) 8%, white);
  color: var(--navy);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: .7rem 1rem;
  font-size: .9rem;
  font-family: inherit;
  color: var(--navy);
  background: var(--white);
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }

.form-group textarea { resize: vertical; }

.form-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.checkbox-group .checkbox-label {
  display: flex;
  gap: .75rem;
  font-size: .85rem;
  color: var(--muted);
  align-items: flex-start;
  cursor: pointer;
}
.checkbox-label input { margin-top: .2rem; }
.checkbox-label a { color: var(--gold); }

/* Result box */
.result-box { text-align: center; }
.result-check {
  width: 72px; height: 72px;
  background: #dcfce7;
  color: #16a34a;
  border-radius: 50%;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.result-check.error { background: #fee2e2; color: var(--red); }
.result-box h3 { margin-bottom: .75rem; font-size: 1.4rem; }
.result-box p { font-size: .95rem; max-width: 480px; margin: 0 auto 1.5rem; }

.estimate-box {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem auto;
  max-width: 500px;
  text-align: left;
}
.estimate-row {
  display: flex;
  justify-content: space-between;
  font-size: .9rem;
  padding: .4rem 0;
  border-bottom: 1px solid var(--border);
}
.estimate-row:last-child { border-bottom: none; font-weight: 700; font-size: 1rem; }
.estimate-note { font-size: .78rem; color: var(--muted); margin-top: .75rem; }

.contact-options { margin-top: 1.5rem; }
.contact-options h4 { margin-bottom: 1rem; font-size: .95rem; }
.contact-btns { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.4rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: .88rem;
  transition: opacity .2s, transform .15s;
}
.contact-btn:hover { opacity: .85; transform: translateY(-1px); }
.contact-btn svg { width: 16px; height: 16px; }
.contact-btn.phone    { background: var(--navy); color: white; }
.contact-btn.email    { background: #f97316; color: white; }
.contact-btn.whatsapp { background: #25d366; color: white; }

/* ═══════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-grid h2 { color: var(--white); margin-bottom: 1rem; }

.contact-info-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.ci { display: flex; gap: 1rem; align-items: flex-start; }
.ci svg { flex-shrink: 0; margin-top: .15rem; color: var(--gold); }
.ci strong { color: var(--white); display: block; font-size: .9rem; }
.ci a, .ci div { color: #94a3b8; font-size: .88rem; }

.contact-subcompanies { display: flex; flex-direction: column; gap: .85rem; }
.contact-subcompanies h4 { color: var(--white); margin-bottom: .5rem; }
.sub-contact {
  display: block;
  border-left: 3px solid;
  padding: .75rem 1rem;
  background: rgba(255,255,255,.04);
  border-radius: 0 8px 8px 0;
  transition: background .2s;
}
.sub-contact:hover { background: rgba(255,255,255,.08); }
.sub-contact strong { display: block; font-size: .9rem; margin-bottom: .15rem; }
.sub-contact span { font-size: .82rem; color: #64748b; }

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.footer { background: #050d1a; color: var(--white); padding: 4rem 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand p { margin-top: .75rem; color: #475569; font-size: .88rem; max-width: 280px; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-links div { display: flex; flex-direction: column; gap: .6rem; }
.footer-links strong { color: var(--white); font-size: .85rem; margin-bottom: .25rem; }
.footer-links a { color: #475569; font-size: .82rem; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  padding: 1.25rem 0;
  font-size: .8rem;
  color: #334155;
}

/* ═══════════════════════════════════════════════════
   MODAL
═══════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -46%) scale(.97);
  z-index: 1200;
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 700px;
  width: calc(100% - 2rem);
  max-height: 85vh;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  box-shadow: 0 24px 80px rgba(0,0,0,.25);
}
.modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.modal-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: var(--off);
  border: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: .9rem;
  color: var(--navy);
  transition: background .2s;
}
.modal-close:hover { background: var(--border); }

.modal-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.modal-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.modal-icon svg { width: 26px; height: 26px; color: white; }
.modal-brand { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.modal h2 { font-size: 1.5rem; margin-top: .2rem; }

.modal-section { margin: 1.5rem 0; }
.modal-section h4 { margin-bottom: .75rem; color: var(--navy); }

.modal-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem .75rem;
}
.ms-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  color: var(--navy3);
  padding: .5rem .75rem;
  background: var(--off);
  border-radius: 8px;
}
.ms-item::before {
  content: '✓';
  font-size: .75rem;
  font-weight: 800;
  color: var(--gold);
}

.modal-cta {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-large { grid-row: auto; grid-column: 1 / -1; }
  .gallery-large .gallery-placeholder { min-height: 220px; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 700px) {
  .nav-inner { height: 72px; }
  .logo-img { height: 58px; }
  .nav-links { display: none; flex-direction: column; align-items: stretch; position: absolute; top: 72px; left: 0; right: 0; background: white; padding: 1.5rem; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); gap: 1rem; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links .btn-nav { text-align: center; }
  .burger { display: flex; }
  .hero { padding: 7rem 0 4rem; }
  .hero-stats { gap: 1.5rem 2rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { justify-content: center; }
  .section { padding: 4rem 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-list { grid-template-columns: 1fr; }
  .about-brands { gap: .75rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-wrapper { padding: 1.5rem; }
  .form-buttons { flex-direction: column-reverse; }
  .form-buttons .btn-primary,
  .form-buttons .btn-ghost { width: 100%; justify-content: center; }
  .service-select-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-large { grid-column: auto; }
  .modal { padding: 1.75rem 1.25rem; max-height: 90vh; }
  .modal-header { flex-wrap: wrap; }
  .modal-services { grid-template-columns: 1fr; }
  .modal-cta { flex-direction: column; align-items: stretch; }
  .modal-cta .btn-primary,
  .modal-cta .btn-ghost { justify-content: center; }
  .contact-btns { flex-direction: column; align-items: stretch; }
  .contact-btn { justify-content: center; }
  .footer-links { grid-template-columns: 1fr 1fr; }
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ─── Selection ─── */
::selection { background: rgba(204,34,41,.2); }
