/* ═══════════════════════════════════════════════════
   MN Contracting GTA — Shared Styles v3
   Typography: Space Grotesk (headings/stats) + Manrope (body)
   mncontractinggta.ca
═══════════════════════════════════════════════════ */

/* Fonts loaded via <link> preconnect in HTML head for performance */

/* ─── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

/* ─── Accessibility: focus-visible ──────────────── */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid rgba(201,168,76,0.8);
  outline-offset: 3px;
  border-radius: 2px;
}
.skip-link:focus-visible {
  position: fixed !important;
  top: 12px; left: 12px;
  width: auto !important; height: auto !important;
  overflow: visible !important;
  z-index: 9999;
  background: var(--gold); color: #0A0A0C;
  padding: 10px 20px;
  font-weight: 700; font-size: 13px;
  border-radius: 4px;
  text-decoration: none;
}

:root {
  --gold:         #C9A84C;
  --gold-light:   #F0D080;
  --gold-dark:    #7A5C1E;
  --steel:        #9AAABB;
  --bg:           #0A0A0C;
  --bg-2:         #13131A;
  --bg-3:         #1A1A24;
  --bg-4:         #222230;
  --white:        #F0EEE8;
  --muted:        #555566;
  --nav-h:        200px;
}

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Manrope', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

.grain {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
}

/* ═══ NAV ═══ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(16px, 3vw, 48px);
  background: rgba(10,10,12,0.95);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: background 0.3s ease;
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }

.nav-logo img {
  height: 200px; width: 300px; object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(1.05) drop-shadow(0 0 20px rgba(201,168,76,0.2));
  transition: filter 0.3s ease;
}
.nav-logo img:hover { filter: brightness(1.1) drop-shadow(0 0 32px rgba(201,168,76,0.4)); }

.nav-links { display: flex; align-items: center; gap: clamp(14px,2vw,30px); list-style: none; flex-wrap: nowrap; }

.nav-links a {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(10px, 1vw, 13px);
  font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--steel); position: relative; padding-bottom: 3px; white-space: nowrap;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); text-shadow: 0 0 16px rgba(240,208,128,0.5); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-burger span { display: block; width: 26px; height: 1.5px; background: var(--gold); transition: all 0.3s ease; }
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none; position: fixed; top: 90px; left: 0; right: 0;
  background: rgba(10,10,12,0.98); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 24px clamp(20px,5vw,48px) 32px;
  z-index: 99; flex-direction: column; gap: 0;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Manrope', sans-serif;
  font-size: 13px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--steel); padding: 16px 0; border-bottom: 1px solid rgba(201,168,76,0.08);
  transition: color 0.3s;
}
.nav-mobile a:hover { color: var(--gold-light); }

/* ═══ PAGE WRAPPER ═══ */
.page-wrap { padding-top: var(--nav-h); position: relative; z-index: 1; min-height: 100vh; }

/* ═══ SECTIONS ═══ */
section { position: relative; }
.section-pad { padding: clamp(60px,8vw,120px) clamp(20px,6vw,80px); }
.container { max-width: 1200px; margin: 0 auto; width: 100%; }

.section-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px; display: flex; align-items: center; gap: 12px;
  white-space: nowrap;
}
.section-label::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); flex-shrink: 0; }

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(30px, 4.5vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #F0D080 0%, #C9A84C 55%, #E8CB80 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--gold);
  margin-bottom: 20px;
}
.section-subtitle {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(14px,1.6vw,17px); font-weight: 300;
  color: var(--steel); max-width: 580px; line-height: 1.9;
}

/* ═══ BUTTONS ═══ */
.btn-primary {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--bg); padding: 16px 36px; border: none; cursor: pointer;
  box-shadow: 0 0 14px rgba(201,168,76,0.3), 0 0 30px rgba(201,168,76,0.1);
  transition: filter 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  position: relative; overflow: hidden;
}
.btn-primary:hover { filter: brightness(1.12); transform: translateY(-2px); color: var(--bg); box-shadow: 0 0 24px rgba(201,168,76,0.65), 0 0 55px rgba(201,168,76,0.3), 0 0 90px rgba(201,168,76,0.12); }

.btn-outline {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  white-space: nowrap;
  background: transparent; color: var(--gold); padding: 15px 36px;
  border: 1px solid rgba(201,168,76,0.5); cursor: pointer;
  transition: all 0.3s ease, box-shadow 0.3s ease;
}
.btn-outline:hover { background: rgba(201,168,76,0.08); border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 0 20px rgba(201,168,76,0.4), 0 0 50px rgba(201,168,76,0.15), inset 0 0 20px rgba(201,168,76,0.05); }

/* ═══ CARDS ═══ */
.card {
  background: var(--bg-2); border: 1px solid rgba(201,168,76,0.1);
  padding: 36px 32px; position: relative; overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0; transition: opacity 0.3s; }
.card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 20px rgba(201,168,76,0.08); }
.card:hover::before { opacity: 1; }

/* ═══ PAGE HERO ═══ */
.page-hero {
  min-height: 280px; display: flex; align-items: center;
  background: linear-gradient(160deg, var(--bg-3) 0%, var(--bg) 100%);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  position: relative; overflow: hidden;
  padding: clamp(48px,6vw,80px) clamp(20px,6vw,80px);
}
.page-hero::before { content: ''; position: absolute; top: -80px; left: 50%; transform: translateX(-50%); width: 900px; height: 300px; background: radial-gradient(ellipse, rgba(201,168,76,0.09) 0%, transparent 70%); pointer-events: none; }

/* ═══ STATS ═══ */
.stats-bar { background: var(--bg-3); border-top: 1px solid rgba(201,168,76,0.12); border-bottom: 1px solid rgba(201,168,76,0.12); padding: 36px clamp(20px,6vw,80px); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--gold);
}
.stat-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted); margin-top: 10px; white-space: nowrap;
}

/* ═══ GRIDS ═══ */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* ═══ FORMS ═══ */
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold-dark);
}
.form-control {
  background: var(--bg-3); border: 1px solid rgba(201,168,76,0.2);
  border-radius: 0; color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-size: 14px; font-weight: 300; padding: 14px 18px;
  outline: none; width: 100%; -webkit-appearance: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-control:focus { border-color: rgba(201,168,76,0.6); box-shadow: 0 0 0 3px rgba(201,168,76,0.06); }
.form-control::placeholder { color: var(--muted); }
textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control { cursor: pointer; }
select.form-control option { background: var(--bg-3); color: var(--white); }

/* ═══ FOOTER ═══ */
.footer { background: var(--bg-2); border-top: 1px solid rgba(201,168,76,0.15); padding: clamp(50px,6vw,80px) clamp(20px,6vw,80px) 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; max-width: 1200px; margin: 0 auto 48px; }
.footer-logo img { height: 200px; width: auto; mix-blend-mode: screen; filter: brightness(1.05); margin-bottom: 16px; }
.footer-tagline { font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.8; max-width: 260px; }
.footer-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px; white-space: nowrap;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 300; color: var(--steel); transition: color 0.3s ease; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.footer-contact-icon { width: 16px; height: 16px; fill: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-contact-text { font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 300; color: var(--steel); line-height: 1.6; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 28px; border-top: 1px solid rgba(201,168,76,0.08); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-family: 'Manrope', sans-serif; font-size: 11px; font-weight: 300; color: var(--muted); letter-spacing: 0.05em; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-family: 'Manrope', sans-serif; font-size: 11px; color: var(--muted); transition: color 0.3s; }
.footer-legal a:hover { color: var(--gold); }

/* ═══ ANIMATIONS ═══ */
@keyframes fadeUp   { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeDown { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:translateY(0)} }
.anim-up   { animation: fadeUp 0.8s cubic-bezier(.16,1,.3,1) both; }
.anim-up-2 { animation: fadeUp 0.8s 0.15s cubic-bezier(.16,1,.3,1) both; }
.anim-up-3 { animation: fadeUp 0.8s 0.3s  cubic-bezier(.16,1,.3,1) both; }
.anim-up-4 { animation: fadeUp 0.8s 0.45s cubic-bezier(.16,1,.3,1) both; }

/* ═══ TABLET ≤1024px ═══ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .nav-logo img { width: 240px; height: 126px; }
}

/* ═══ MOBILE ≤768px ═══ */
@media (max-width: 768px) {
  :root { --nav-h: 90px; }
  .nav { height: 90px; padding: 0 20px; }
  .nav-logo img { width: 200px; height: 60px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .page-wrap { padding-top: 90px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .section-pad { padding: 48px clamp(16px,5vw,32px); }
  .grid-2 > *[style*="order:1"] { order: unset !important; }
  .grid-2 > *[style*="order:2"] { order: unset !important; }
}

/* ═══ SMALL MOBILE ≤480px ═══ */
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; }
  .card { padding: 24px 20px; }
}

/* ─── Hero Canvas ──────────────────────────────── */
#hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 1;
}

/* ─── Page Hero Enhanced ───────────────────────── */
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
}

/* ─── Scroll to Top ────────────────────────────── */
.scroll-top {
  position: fixed; bottom: 96px; right: 24px;
  width: 44px; height: 44px;
  background: rgba(13,13,20,0.9); border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold); display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 90;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease, background 0.3s ease, transform 0.2s ease;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: rgba(201,168,76,0.15); transform: translateY(-3px); }
.scroll-top svg { width: 18px; height: 18px; fill: var(--gold); }

/* ─── Floating Phone ───────────────────────────── */
.float-phone {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 90; display: flex; align-items: center; gap: 12px;
}
.float-phone-btn {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--bg); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; text-decoration: none;
  box-shadow: 0 4px 24px rgba(201,168,76,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: phonePulse 3s ease-in-out infinite;
}
.float-phone-btn:hover { transform: scale(1.1); box-shadow: 0 6px 36px rgba(201,168,76,0.7); animation: none; }
.float-phone-btn svg { width: 24px; height: 24px; fill: var(--bg); }
.float-phone-label {
  background: rgba(10,10,12,0.96); border: 1px solid rgba(201,168,76,0.25);
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-size: 12px; font-weight: 400; letter-spacing: 0.05em;
  padding: 8px 16px; white-space: nowrap;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  opacity: 0; transform: translateX(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.float-phone:hover .float-phone-label { opacity: 1; transform: translateX(0); }
@keyframes phonePulse {
  0%,100%{ box-shadow: 0 4px 24px rgba(201,168,76,0.5); }
  50%     { box-shadow: 0 4px 36px rgba(201,168,76,0.8), 0 0 0 8px rgba(201,168,76,0.08); }
}

/* ─── Cookie Banner ────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: rgba(13,13,20,0.98); border-top: 1px solid rgba(201,168,76,0.2);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  padding: 16px clamp(20px,5vw,60px);
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(.16,1,.3,1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-text { font-family: 'Manrope', sans-serif; flex: 1; font-size: 13px; color: var(--steel); line-height: 1.7; min-width: 200px; }
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-accept {
  font-family: 'Manrope', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--bg); border: none; padding: 11px 28px;
  cursor: pointer; white-space: nowrap; flex-shrink: 0;
  transition: filter 0.3s ease;
}
.cookie-accept:hover { filter: brightness(1.12); }
.cookie-decline {
  font-family: 'Manrope', sans-serif;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); background: none; border: none;
  cursor: pointer; white-space: nowrap; flex-shrink: 0;
  transition: color 0.3s;
}
.cookie-decline:hover { color: var(--steel); }

/* ─── Certification Badges ─────────────────────── */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px; margin-top: 40px;
}
.cert-badge {
  background: var(--bg-3); border: 1px solid rgba(201,168,76,0.15);
  padding: 24px 20px; display: flex; align-items: center; gap: 16px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.cert-badge:hover { border-color: rgba(201,168,76,0.35); transform: translateY(-2px); }
.cert-icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold);
}
.cert-icon svg { width: 22px; height: 22px; fill: var(--gold); }
.cert-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 5px;
}
.cert-desc { font-family: 'Manrope', sans-serif; font-size: 12px; color: var(--muted); line-height: 1.6; }

/* ─── Team Cards ───────────────────────────────── */
.team-card {
  background: var(--bg-3); border: 1px solid rgba(201,168,76,0.12);
  padding: 40px 32px; text-align: center;
  transition: border-color 0.3s ease;
}
.team-card:hover { border-color: rgba(201,168,76,0.28); }
.team-avatar {
  width: 110px; height: 110px;
  border: 1px solid rgba(201,168,76,0.3); border-radius: 50%;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-4); overflow: hidden;
}
.team-avatar svg { width: 48px; height: 48px; fill: rgba(201,168,76,0.3); }
.team-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px; font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--gold-light); margin-bottom: 6px;
}
.team-role {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
}
.team-bio { font-family: 'Manrope', sans-serif; font-size: 13px; color: var(--steel); line-height: 1.9; }

/* ─── Service SVG Icons ────────────────────────── */
.svc-icon {
  width: 52px; height: 52px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(201,168,76,0.2);
  background: rgba(201,168,76,0.04);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.card:hover .svc-icon { border-color: rgba(201,168,76,0.4); background: rgba(201,168,76,0.08); }
.svc-icon svg { width: 26px; height: 26px; fill: var(--gold); }

/* ─── Tender Form ──────────────────────────────── */
.tender-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 768px) { .tender-grid { grid-template-columns: 1fr; } }

/* ─── Cookie + float hidden on mobile below xs ─── */
@media (max-width: 480px) {
  .float-phone-label { display: none; }
  .scroll-top { bottom: 88px; right: 16px; }
  .float-phone { bottom: 16px; right: 16px; }
}
