/* =========================================================================
   Pladsleje.dk — H.F. Gruppen ApS
   Brand: Black (#000) + Green (#C7F141) gradient. Display: Anton. Body: DM Sans.
   (Original theme was Yellow #FFCD00 — restore from /site_BACKUP_original-yellow.)
   Multi-file static site. All colors driven by CSS custom properties.
   ========================================================================= */

:root {
  /* Brand — GREEN theme.
     The --yellow* token names are kept so the whole stylesheet stays in sync;
     their values are now green. --brand-grad is the linear gradient used on
     primary fills (buttons, badges, chips). */
  --yellow:        #C7F141;   /* brand green */
  --yellow-600:    #6F9C17;   /* deep green — for icons/text on white (contrast) */
  --yellow-soft:   #EEFBC9;   /* pale green tint — chip/success backgrounds */
  --brand-grad:    linear-gradient(135deg, #D6F56E 0%, #C7F141 45%, #A9D92E 100%);
  --black:         #0A0A0A;
  --ink:           #121212;
  --brown:         #6B4E1E;   /* warm secondary card, echoes reference */
  --brown-soft:    #8A6A2E;

  /* Neutrals */
  --white:         #FFFFFF;
  --bg:            #FBFAF7;   /* warm off-white page */
  --surface:       #FFFFFF;
  --muted:         #6B6B6B;
  --line:          #E7E4DC;
  --line-dark:     rgba(255,255,255,.14);

  /* Semantic */
  --text:          #141414;
  --text-invert:   #FFFFFF;
  --focus:         #8FCE1F;

  /* Type */
  --font-display: "Anton", "Arial Narrow", system-ui, sans-serif;
  --font-body:    "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Radius / shadow */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;
  --shadow-sm: 0 2px 10px rgba(0,0,0,.06);
  --shadow-md: 0 12px 30px rgba(0,0,0,.10);
  --shadow-lg: 0 30px 60px rgba(0,0,0,.22);

  /* Spacing scale (8pt) */
  --s-1: 8px;  --s-2: 16px; --s-3: 24px; --s-4: 32px;
  --s-5: 48px; --s-6: 64px; --s-7: 96px; --s-8: 128px;

  --maxw: 1200px;
  --nav-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; border-radius: 4px; }

/* ---------- Typography ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: .98;
  letter-spacing: .5px;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.6rem, 6.2vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.9rem); }
p { max-width: 65ch; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: #33322e; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(20px, 5vw, 40px); }
.section { padding-block: clamp(56px, 9vw, 112px); }
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 2.5px; font-size: .8rem;
  color: #4F6F12;
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; background: var(--yellow); border-radius: 2px; }
.section-head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head p { margin-top: 16px; color: var(--muted); }
.center { text-align: center; margin-inline: auto; }
.center p { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--brand-grad);
  --btn-fg: #101010;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px; border: 2px solid transparent;
  border-radius: var(--r-pill); background: var(--btn-bg); color: var(--btn-fg);
  font-weight: 700; font-size: 1rem; letter-spacing: .2px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  will-change: transform;
}
.btn svg { width: 20px; height: 20px; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(199,241,65,.55); }
.btn:active { transform: translateY(0); }
.btn--dark  { --btn-bg: var(--ink);  --btn-fg: #fff; }
.btn--dark:hover { box-shadow: 0 10px 24px rgba(0,0,0,.28); }
.btn--ghost { --btn-bg: transparent; --btn-fg: #fff; border-color: rgba(255,255,255,.55); }
.btn--ghost:hover { background: rgba(255,255,255,.10); box-shadow: none; }
.btn--outline { --btn-bg: transparent; --btn-fg: #141414; border-color: #141414; }
.btn--outline:hover { background: #141414; color: #fff; box-shadow: none; }
.btn--lg { padding: 18px 34px; font-size: 1.05rem; }
.btn--block { width: 100%; justify-content: center; }

/* ================= HEADER / NAV ================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(10,10,10,.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-dark);
  transition: background .25s ease;
}
.nav { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 40px; width: auto; } /* green-gradient wordmark on dark bar */
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a { color: rgba(255,255,255,.82); font-weight: 500; font-size: .98rem; position: relative; padding: 6px 0; transition: color .18s ease; }
.nav-links a:hover { color: #fff; }
.nav-links a::after { content:""; position:absolute; left:0; bottom:0; height:2px; width:0; background: var(--yellow); transition: width .2s ease; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 700; font-size: 1rem; white-space: nowrap; }
.nav-phone svg { width: 18px; height: 18px; color: var(--yellow); }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: #fff; border-radius: 2px; margin: 5px 0; transition: .25s; }

/* ================= HERO ================= */
.hero { position: relative; min-height: calc(100dvh - var(--nav-h)); display: flex; align-items: stretch; color: #fff; padding-block: clamp(40px, 6vw, 72px); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img, .hero-bg video { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content:""; position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(8,8,8,.55) 0%, rgba(8,8,8,.35) 40%, rgba(8,8,8,.82) 100%),
    linear-gradient(90deg, rgba(8,8,8,.75) 0%, rgba(8,8,8,.25) 55%, rgba(8,8,8,.15) 100%);
}
/* fallback texture when no photo present */
.hero-bg--fallback { background: radial-gradient(120% 90% at 20% 10%, #2a2a2a 0%, #101010 55%, #050505 100%); }
.hero-bg--fallback::before {
  content:""; position:absolute; inset:0;
  background-image: linear-gradient(rgba(199,241,65,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(199,241,65,.06) 1px, transparent 1px);
  background-size: 46px 46px; mask-image: radial-gradient(70% 70% at 30% 30%, #000, transparent);
}
.hero .container { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; width: 100%; }
.hero-badge-row { display: inline-flex; align-items:center; gap:12px; margin-bottom: 22px; }
.tag { display:inline-flex; align-items:center; gap:8px; background: rgba(199,241,65,.18); color: var(--yellow); border:1px solid rgba(199,241,65,.55); padding:8px 14px; border-radius: var(--r-pill); font-weight:600; font-size:.82rem; letter-spacing:.4px; }
.tag svg { width:15px; height:15px; }
.hero h1 { max-width: 15ch; text-shadow: 0 4px 30px rgba(0,0,0,.4); }
.hero h1 .hl { color: var(--yellow); }
.hero-sub { margin-top: 22px; max-width: 46ch; font-size: clamp(1.05rem,1.5vw,1.25rem); color: rgba(255,255,255,.9); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-facts { display:flex; flex-wrap:wrap; gap: 28px 40px; margin-top: 44px; }
.hero-fact { display:flex; flex-direction:column; }
.hero-fact b { font-family: var(--font-display); font-size: clamp(1.8rem,3vw,2.5rem); color:#fff; line-height:1; letter-spacing:.5px; }
.hero-fact span { font-size:.82rem; text-transform:uppercase; letter-spacing:1.5px; color: rgba(255,255,255,.65); margin-top:8px; }

/* price bubble floating in hero */
.hero-bubble { position:absolute; right: clamp(16px,4vw,60px); top: clamp(20px,6vw,70px); z-index: 3; width: clamp(120px, 16vw, 190px); animation: floaty 5s ease-in-out infinite; }
@keyframes floaty { 0%,100%{ transform: translateY(0) rotate(-3deg);} 50%{ transform: translateY(-10px) rotate(-3deg);} }

/* scroll hint */
.scroll-hint { display:inline-flex; align-items:center; gap:10px; margin-top: 40px; color: rgba(255,255,255,.7); font-size:.8rem; letter-spacing:1.5px; text-transform:uppercase; }
.scroll-hint .dot { width:30px; height:30px; border:1px solid rgba(255,255,255,.4); border-radius:50%; display:grid; place-items:center; }
.scroll-hint svg { width:14px; height:14px; animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 0%,100%{transform:translateY(-2px);} 50%{transform:translateY(3px);} }

/* ================= FEATURE CARDS (reference row) ================= */
.features { margin-top: -70px; position: relative; z-index: 5; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.fcard {
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  padding: 26px; min-height: 210px; display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff; box-shadow: var(--shadow-md);
  transition: transform .2s ease, box-shadow .2s ease;
}
.fcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.fcard--photo { background: #1c1c1c; }
.fcard--photo img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }
.fcard--photo::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.75)); z-index:1; }
.fcard--yellow { background: var(--brand-grad); color: #141414; }
.fcard--dark { background: linear-gradient(160deg, #2a2a2a, #141414); }
.fcard--brown { background: linear-gradient(160deg, var(--brown-soft), var(--brown)); }
.fcard > * { position: relative; z-index: 2; }
.fcard .fchip { align-self:flex-start; margin-bottom: auto;
  display:inline-flex; align-items:center; gap:8px; background: rgba(0,0,0,.35); color:#fff;
  padding:7px 13px; border-radius: var(--r-pill); font-size:.75rem; font-weight:600; letter-spacing:.3px; backdrop-filter: blur(4px); }
.fcard--yellow .fchip { background: rgba(0,0,0,.14); color:#141414; }
.fcard h3 { font-size: 1.35rem; letter-spacing:.4px; }
.fcard p { font-size:.92rem; opacity:.9; margin-top:6px; }
.fcard .farrow { position:absolute; top:22px; right:22px; z-index:3; width:44px; height:44px; border-radius:50%; background:#fff; color:#141414; display:grid; place-items:center; transition: transform .2s ease; }
.fcard:hover .farrow { transform: rotate(-45deg); }
.fcard--yellow .farrow { background:#141414; color:#fff; }

/* ================= ABOUT ================= */
.about { display:grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 6vw, 72px); align-items:center; }
.about-media { position:relative; }
.about-media img { width:100%; height:100%; object-fit:cover; border-radius: var(--r-lg); box-shadow: var(--shadow-md); aspect-ratio: 4/3; background:#1a1a1a; }
.about-media .stat-chip {
  position:absolute; left:-16px; bottom:-20px; background: var(--brand-grad); color:#141414;
  padding:20px 26px; border-radius: var(--r-md); box-shadow: var(--shadow-md); max-width: 230px;
}
.about-media .stat-chip b { font-family: var(--font-display); font-size:2.4rem; display:block; line-height:1; }
.about-media .stat-chip span { font-size:.85rem; font-weight:600; }
/* text variant: a name/phrase instead of a big number */
.about-media .stat-chip--text { max-width: 262px; }
.about-media .stat-chip--text b { font-size: 1.4rem; letter-spacing:.4px; margin-bottom:6px; line-height:1.05; }
.checklist { list-style:none; margin-top: 28px; display:grid; gap:14px; }
.checklist li { display:flex; gap:14px; align-items:flex-start; }
.checklist .ico { flex:none; width:28px; height:28px; border-radius:8px; background: var(--yellow-soft); color:#4F6F12; display:grid; place-items:center; }
.checklist .ico svg { width:16px; height:16px; }
.checklist b { display:block; font-size: 1rem; }
.checklist span { color: var(--muted); font-size:.94rem; }

/* trust strip */
.trust { display:flex; flex-wrap:wrap; gap: 14px 34px; margin-top: 34px; padding-top: 28px; border-top:1px solid var(--line); }
.trust div { display:flex; flex-direction:column; }
.trust b { font-family: var(--font-display); font-size:1.9rem; color:#141414; line-height:1; }
.trust span { font-size:.8rem; color: var(--muted); text-transform:uppercase; letter-spacing:1px; margin-top:6px; }

/* ================= UNITS / PRICING ================= */
.units-grid { display:grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.unit {
  background: var(--surface); border:1px solid var(--line); border-radius: var(--r-lg);
  overflow:hidden; display:flex; flex-direction:column; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.unit:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #ddd7c8; }
.unit-media { position:relative; aspect-ratio: 16/10; background:#1c1c1c; }
.unit-media img { width:100%; height:100%; object-fit:cover; }
.unit-media .size { position:absolute; top:16px; left:16px; background: var(--brand-grad); color:#141414; font-family:var(--font-display); font-size:1.1rem; padding:6px 14px; border-radius: var(--r-pill); letter-spacing:.5px; }
.unit-body { padding: 26px; display:flex; flex-direction:column; gap:14px; flex:1; }
.unit-body h3 { font-size:1.5rem; }
.unit-body .price { display:flex; align-items:baseline; gap:8px; }
.unit-body .price b { font-family: var(--font-display); font-size:2.2rem; color:#141414; }
.unit-body .price span { color: var(--muted); font-weight:600; font-size:.9rem; }
.unit-feats { list-style:none; display:grid; gap:10px; margin-top:4px; }
.unit-feats li { display:flex; gap:10px; align-items:center; font-size:.95rem; color:#333; }
.unit-feats svg { width:18px; height:18px; color: var(--yellow-600); flex:none; }
.unit .btn { margin-top:auto; }
.units-note { margin-top: 24px; text-align:center; color:var(--muted); font-size:.92rem; }

/* ================= MEDIA / VIDEO ================= */
.media-wrap { display:grid; grid-template-columns: 1.4fr 1fr; gap: 18px; }
.video-frame { position:relative; border-radius: var(--r-lg); overflow:hidden; background:#000; aspect-ratio: 16/9; box-shadow: var(--shadow-md); }
.video-frame video, .video-frame iframe { width:100%; height:100%; object-fit:cover; border:0; }
.video-frame .play {
  position:absolute; inset:0; display:grid; place-items:center; background: rgba(0,0,0,.25); border:0; color:#141414;
}
.video-frame .play .circle { width:82px; height:82px; border-radius:50%; background: var(--brand-grad); display:grid; place-items:center; box-shadow: 0 10px 30px rgba(0,0,0,.4); transition: transform .2s ease; }
.video-frame .play:hover .circle { transform: scale(1.06); }
.video-frame .play svg { width:30px; height:30px; margin-left:4px; }
.gallery-col { display:grid; grid-template-rows: repeat(2, 1fr); gap:18px; }
.gallery-col img { width:100%; height:100%; object-fit:cover; border-radius: var(--r-lg); background:#1c1c1c; min-height: 150px; }
.gallery-strip { display:grid; grid-template-columns: repeat(4,1fr); gap:14px; margin-top:18px; }
.gallery-strip img { aspect-ratio: 1/1; object-fit:cover; border-radius: var(--r-md); background:#1c1c1c; cursor:pointer; transition: transform .2s ease; }
.gallery-strip img:hover { transform: scale(1.03); }

/* ================= FAQ ================= */
.faq { max-width: 820px; margin-inline:auto; }
.acc { border-bottom:1px solid var(--line); }
.acc-q { width:100%; text-align:left; background:none; border:0; padding: 22px 0; display:flex; justify-content:space-between; align-items:center; gap:20px; font-weight:600; font-size:1.08rem; color:#141414; }
.acc-q .pm { flex:none; width:34px; height:34px; border-radius:50%; background: var(--yellow-soft); color:#4F6F12; display:grid; place-items:center; transition: background .2s ease, transform .2s ease; }
.acc-q[aria-expanded="true"] .pm { background: var(--brand-grad); color:#141414; transform: rotate(180deg); }
.acc-q svg { width:16px; height:16px; }
.acc-a { overflow:hidden; max-height:0; transition: max-height .3s ease; }
.acc-a-inner { padding: 0 0 22px; color: var(--muted); }
.acc-a-inner p { max-width: 68ch; }

/* ================= CONTACT ================= */
.contact-grid { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px); }
.contact-info { display:flex; flex-direction:column; }
.contact-cards { display:grid; gap:14px; margin: 24px 0 8px; }
.cc {
  display:flex; align-items:center; gap:16px; padding:18px 20px; border:1px solid var(--line);
  border-radius: var(--r-md); background: var(--surface); transition: border-color .2s ease, transform .2s ease;
}
.cc:hover { border-color: var(--yellow); transform: translateX(3px); }
.cc .ico { flex:none; width:48px; height:48px; border-radius:12px; background:#141414; color: var(--yellow); display:grid; place-items:center; }
.cc .ico svg { width:22px; height:22px; }
.cc small { display:block; color: var(--muted); font-size:.78rem; text-transform:uppercase; letter-spacing:1px; }
.cc b { font-size:1.05rem; color:#141414; }
.map-embed { margin-top:auto; border-radius: var(--r-md); overflow:hidden; border:1px solid var(--line); aspect-ratio: 16/9; }
.map-embed iframe { width:100%; height:100%; border:0; }

.form-card { background: var(--surface); border:1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px,4vw,40px); box-shadow: var(--shadow-sm); }
.form-card h3 { font-size:1.6rem; margin-bottom:6px; }
.form-card > p { color:var(--muted); margin-bottom:22px; font-size:.95rem; }
.field { margin-bottom:18px; }
.field label { display:block; font-weight:600; font-size:.9rem; margin-bottom:8px; }
.field label .req { color:#c0392b; }
.field input, .field select, .field textarea {
  width:100%; padding:14px 16px; border:1.5px solid var(--line); border-radius: var(--r-sm);
  font: inherit; font-size:1rem; background:#fff; color:#141414; transition: border-color .18s ease, box-shadow .18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline:none; border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(199,241,65,.3); }
.field textarea { resize: vertical; min-height: 120px; }
.field .hint { font-size:.82rem; color:var(--muted); margin-top:6px; }
.field .error { display:none; color:#c0392b; font-size:.85rem; margin-top:6px; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color:#c0392b; }
.field.invalid .error { display:block; }
.row-2 { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-callback { display:flex; gap:12px; align-items:flex-start; font-size:.92rem; color:#2f3a12; background: var(--yellow-soft); border:1px solid rgba(199,241,65,.7); border-radius: var(--r-md); padding:14px 16px; margin-bottom:16px; cursor:pointer; }
.form-callback input { margin-top:3px; width:18px; height:18px; accent-color: var(--yellow-600); flex:none; }
.form-callback b { color:#141414; }
.form-consent { display:flex; gap:10px; align-items:flex-start; font-size:.85rem; color:var(--muted); margin-bottom:20px; }
.form-consent input { margin-top:3px; }
.form-success { display:none; background: var(--yellow-soft); border:1px solid var(--yellow); border-radius: var(--r-md); padding:18px 20px; color:#3F5510; font-weight:600; margin-top:16px; }
.form-success.show { display:block; }
.form-error { display:none; background:#fdecea; border:1px solid #e0b4b0; border-radius: var(--r-md); padding:16px 18px; color:#a5271b; font-weight:600; margin-top:16px; font-size:.95rem; }
.form-error.show { display:block; }

/* ================= CTA BANNER ================= */
.cta-banner { background: var(--ink); color:#fff; border-radius: var(--r-xl); padding: clamp(36px, 6vw, 68px); position:relative; overflow:hidden; text-align:center; }
.cta-banner::before { content:""; position:absolute; width:340px; height:340px; background: radial-gradient(circle, rgba(199,241,65,.3), transparent 70%); top:-120px; right:-80px; }
.cta-banner::after { content:""; position:absolute; width:260px; height:260px; background: radial-gradient(circle, rgba(199,241,65,.18), transparent 70%); bottom:-120px; left:-60px; }
.cta-banner > * { position:relative; z-index:2; }
.cta-banner h2 { color:#fff; }
.cta-banner h2 .hl { color: var(--yellow); }
.cta-banner p { color: rgba(255,255,255,.8); margin: 16px auto 30px; }
.cta-actions { display:flex; flex-wrap:wrap; gap:14px; justify-content:center; }

/* ================= FOOTER ================= */
.site-footer { background: var(--black); color: rgba(255,255,255,.72); padding-top: clamp(56px,8vw,88px); }
.footer-top { display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand img { height: 34px; margin-bottom:18px; } /* green-gradient wordmark on black footer */
.footer-brand p { font-size:.92rem; max-width: 34ch; }
.footer-social { display:flex; gap:12px; margin-top:20px; }
.footer-social a { width:42px; height:42px; border-radius:50%; border:1px solid rgba(255,255,255,.18); display:grid; place-items:center; color:#fff; transition: background .2s ease, border-color .2s ease; }
.footer-social a:hover { background: var(--yellow); color:#141414; border-color: var(--yellow); }
.footer-social svg { width:19px; height:19px; }
.footer-col h4 { font-family: var(--font-body); font-size:.85rem; text-transform:uppercase; letter-spacing:1.5px; color:#fff; margin-bottom:18px; }
.footer-col ul { list-style:none; display:grid; gap:12px; }
.footer-col a { font-size:.95rem; transition: color .18s ease; }
.footer-col a:hover { color: var(--yellow); }
.footer-contact li { display:flex; gap:10px; align-items:flex-start; font-size:.95rem; }
.footer-contact svg { width:17px; height:17px; color: var(--yellow); flex:none; margin-top:3px; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.12); padding: 22px 0; display:flex; flex-wrap:wrap; justify-content:space-between; gap:12px; font-size:.85rem; color: rgba(255,255,255,.55); }

/* ================= FLOATING CALL (mobile) ================= */
.fab-call { display:none; position:fixed; right:18px; bottom:18px; z-index:90; background: var(--brand-grad); color:#141414; padding:14px 20px; border-radius: var(--r-pill); font-weight:700; box-shadow: var(--shadow-lg); align-items:center; gap:10px; }
.fab-call svg { width:20px; height:20px; }

/* ================= REVEAL ANIMATION ================= */
.reveal { opacity:0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity:1; transform:none; } }

/* ================= RESPONSIVE ================= */
@media (max-width: 960px) {
  .about, .media-wrap, .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-bubble { width: 120px; }
}
@media (max-width: 760px) {
  .nav-links, .nav-phone { display:none; }
  .nav-toggle { display:block; }
  .brand img { height: 32px; }  /* keep larger logo from crowding the phone header */
  .nav.open .nav-links {
    display:flex; position:absolute; top: var(--nav-h); left:0; right:0; flex-direction:column;
    background: rgba(10,10,10,.98); padding: 20px 24px; gap:18px; border-bottom:1px solid var(--line-dark);
  }
  .feature-grid { grid-template-columns: 1fr; }
  .features { margin-top: 24px; }
  .units-grid { grid-template-columns: 1fr; }
  .row-2 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .fab-call { display:inline-flex; }
  .about-media .stat-chip { left: 12px; }
}
