/* ============================================================
   Dream Searches — Shared Theme
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --gold-dark: #9a7a45;
  --dark: #0a0c0f;
  --dark-2: #111418;
  --dark-3: #1a1e24;
  --text: #f0ece4;
  --text-muted: #8a8070;
  --white: #ffffff;
  --green: #1f3d2b;
  --wa: #25d366;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

a { color: inherit; }
img { max-width: 100%; height: auto; } /* safety: images never overflow their container */

/* ── Background ── */
.bg-wrap { position: fixed; inset: 0; z-index: 0; overflow: hidden; }

.bg-image {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(10,12,15,0.94) 0%, rgba(10,12,15,0.80) 50%, rgba(10,12,15,0.94) 100%),
    url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1920&q=80') center/cover no-repeat fixed;
}

.bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.bg-orb { position: absolute; border-radius: 50%; filter: blur(110px); opacity: 0.16; }
.bg-orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, var(--gold), transparent 70%); top: -150px; right: -100px; }
.bg-orb-2 { width: 420px; height: 420px; background: radial-gradient(circle, #4a6fa5, transparent 70%); bottom: -100px; left: -80px; }

/* ── Page wrapper ── */
.page { position: relative; z-index: 1; min-height: 100vh; display: flex; flex-direction: column; }

/* ── Header ── */
header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 48px;
  border-bottom: 1px solid rgba(201,169,110,0.12);
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,12,15,0.75);
  backdrop-filter: blur(14px);
}

.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-img { height: 54px; width: auto; border-radius: 8px; display: block; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  text-decoration: none; font-size: 13px; font-weight: 500; letter-spacing: 0.5px;
  color: var(--text-muted); transition: color 0.25s;
}
.nav a:hover, .nav a.active { color: var(--gold); }

.btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--wa); color: #04240f;
  padding: 10px 18px; border-radius: 50px;
  font-size: 13px; font-weight: 600; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(37,211,102,0.25);
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(37,211,102,0.4); }
.btn-wa svg { width: 17px; height: 17px; fill: currentColor; }

/* ── Section helpers ── */
.section { position: relative; z-index: 1; padding: 90px 48px; max-width: 1240px; margin: 0 auto; width: 100%; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px;
  font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold);
}
.section-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--gold); opacity: 0.6; }
.section-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(34px, 5vw, 60px); line-height: 1.1; margin-bottom: 16px; letter-spacing: -0.5px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-sub { color: var(--text-muted); max-width: 620px; font-size: 16px; margin-bottom: 50px; }

/* ── Project cards ── */
.projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; max-width: 880px; margin: 0 auto; }

.project-card {
  position: relative; border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(201,169,110,0.18);
  background: rgba(255,255,255,0.025);
  text-decoration: none; color: var(--text);
  display: flex; flex-direction: column;
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.project-card:hover { transform: translateY(-8px); border-color: rgba(201,169,110,0.5); box-shadow: 0 24px 50px rgba(0,0,0,0.5); }

.project-media { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--dark-3); }
.project-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.project-card:hover .project-media img { transform: scale(1.06); }
.project-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,12,15,0.85), transparent 55%); }

.project-tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 50px;
  font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  background: rgba(10,12,15,0.7); border: 1px solid rgba(201,169,110,0.35); color: var(--gold-light);
  backdrop-filter: blur(8px);
}

.project-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.project-name { font-family: 'Cormorant Garamond', serif; font-size: 25px; font-weight: 600; color: var(--gold); line-height: 1.15; margin-bottom: 5px; }
.project-loc { font-size: 12.5px; color: var(--text-muted); margin-bottom: 13px; display: flex; align-items: center; gap: 6px; }
.project-desc { font-size: 13px; color: var(--text); opacity: 0.82; margin-bottom: 17px; flex: 1; }

.project-stats { display: flex; gap: 18px; margin-bottom: 18px; flex-wrap: wrap; }
.project-stat .num { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--gold-light); font-weight: 600; line-height: 1; }
.project-stat .lbl { font-size: 9.5px; letter-spacing: 1.3px; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; }

.project-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.5px; color: var(--gold);
}
.project-link svg { width: 15px; height: 15px; transition: transform 0.25s; }
.project-card:hover .project-link svg { transform: translateX(4px); }

/* ── Buttons ── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark); border: none; cursor: pointer;
  padding: 14px 28px; border-radius: 12px;
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: 0.3px;
  text-decoration: none; transition: transform 0.2s, opacity 0.2s;
}
.btn-gold:hover { transform: translateY(-2px); opacity: 0.94; }
.btn-gold svg { width: 17px; height: 17px; fill: currentColor; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 9px;
  background: transparent; color: var(--gold);
  border: 1px solid rgba(201,169,110,0.4); cursor: pointer;
  padding: 13px 26px; border-radius: 12px;
  font-size: 14px; font-weight: 500; text-decoration: none; transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(201,169,110,0.08); }

/* ── Contact form ── */
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start;
  border: 1px solid rgba(201,169,110,0.16); border-radius: 24px;
  background: rgba(255,255,255,0.025); padding: 50px; backdrop-filter: blur(10px);
}
.contact-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 34px; font-weight: 400; margin-bottom: 14px; }
.contact-info h3 em { font-style: italic; color: var(--gold); }
.contact-info p { color: var(--text-muted); font-size: 15px; margin-bottom: 28px; }

.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.contact-detail .ico {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 10px;
  border: 1px solid rgba(201,169,110,0.3); display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 18px;
}
.contact-detail .meta .k { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 3px; }
.contact-detail .meta .v { font-size: 15px; color: var(--text); }
.contact-detail .meta a { color: var(--gold-light); text-decoration: none; }

.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 12px; letter-spacing: 0.5px; color: var(--text-muted); margin-bottom: 7px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(201,169,110,0.2);
  border-radius: 11px; padding: 13px 16px; color: var(--text); font-family: 'Inter', sans-serif; font-size: 14px;
  outline: none; transition: border-color 0.25s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: rgba(201,169,110,0.6); }
.form-field textarea { resize: vertical; min-height: 90px; }
.form-field select option { background: var(--dark-2); }
.form-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }

/* ── Footer ── */
footer {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(201,169,110,0.1);
  background: rgba(10,12,15,0.6);
  padding: 50px 48px 30px;
}
.footer-inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 40px; }
.footer-col h4 { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col p, .footer-col a { font-size: 14px; color: var(--text-muted); text-decoration: none; display: block; margin-bottom: 10px; }
.footer-col a:hover { color: var(--gold-light); }
.footer-logo { height: 56px; margin-bottom: 16px; border-radius: 8px; }
.footer-bottom {
  max-width: 1240px; margin: 36px auto 0; padding-top: 22px; border-top: 1px solid rgba(201,169,110,0.08);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
  font-size: 12px; color: var(--text-muted);
}
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px; border: 1px solid rgba(201,169,110,0.2); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; color: var(--text-muted);
  text-decoration: none; transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,169,110,0.08); }

/* ── Floating WhatsApp ── */
.wa-float {
  position: fixed; right: 26px; bottom: 26px; z-index: 100;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 26px rgba(37,211,102,0.45); text-decoration: none;
  animation: waPulse 2.4s ease-in-out infinite;
}
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
@keyframes waPulse { 0%,100% { box-shadow: 0 8px 26px rgba(37,211,102,0.45); } 50% { box-shadow: 0 8px 36px rgba(37,211,102,0.75); } }

/* ── Reveal ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Toast ── */
.toast {
  position: fixed; left: 50%; bottom: 34px; transform: translateX(-50%) translateY(120px);
  background: rgba(26,30,36,0.97); border: 1px solid rgba(201,169,110,0.4); color: var(--gold-light);
  padding: 14px 26px; border-radius: 12px; font-size: 14px; z-index: 200;
  transition: transform 0.4s cubic-bezier(.2,.9,.3,1.2); box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ============================================================
   IMAGE SIZE PROTOCOL
   Wrap every content image in <div class="img-frame ratio-XX">.
   The frame fixes the aspect ratio; the image fills it with
   object-fit:cover so ALL images look uniform regardless of the
   source dimensions. Standard ratios used across the site:
     • ratio-16-9  → project / banner thumbnails
     • ratio-4-3   → gallery & content images
     • ratio-3-2   → about / feature images
     • ratio-1-1   → square logos / avatars / icons-as-image
   ============================================================ */
.img-frame { position: relative; width: 100%; overflow: hidden; border-radius: 14px; background: #e9e6df; }
.img-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ratio-16-9 { aspect-ratio: 16 / 9; }
.ratio-4-3  { aspect-ratio: 4 / 3; }
.ratio-3-2  { aspect-ratio: 3 / 2; }
.ratio-1-1  { aspect-ratio: 1 / 1; }
.img-frame.contain img { object-fit: contain; }

/* ── Logo visibility (black-bg logo sits in a soft chip) ── */
.logo-img {
  height: 56px; width: auto; display: block; border-radius: 10px;
  background: #0a0c0f; padding: 4px 8px;
  box-shadow: 0 0 0 1px rgba(201,169,110,0.25);
}

/* ============================================================
   FULL-WIDTH BANDS (alternating dark / light backgrounds)
   <section class="band band-light"><div class="section">…</div></section>
   ============================================================ */
.band { position: relative; z-index: 1; width: 100%; }
.band-light { background: #f6f4ef; color: #1c1f24; }
.band-cream { background: #efe9dd; color: #1c1f24; }
.band-light .section-title, .band-cream .section-title { color: #15181d; }
.band-light .section-title em, .band-cream .section-title em { color: var(--gold-dark); }
.band-light .section-sub, .band-cream .section-sub { color: #5c574e; }
.band-light .section-eyebrow, .band-cream .section-eyebrow { color: var(--gold-dark); }
.band-light .section-eyebrow::before, .band-cream .section-eyebrow::before { background: var(--gold-dark); }

/* Project cards adapt to light bands */
.band-light .project-card, .band-cream .project-card {
  background: #fff; border-color: rgba(0,0,0,0.08); color: #1c1f24;
  box-shadow: 0 12px 34px rgba(0,0,0,0.07);
}
.band-light .project-card:hover, .band-cream .project-card:hover { box-shadow: 0 22px 50px rgba(0,0,0,0.12); border-color: rgba(201,169,110,0.55); }
.band-light .project-name, .band-cream .project-name { color: var(--gold-dark); }
.band-light .project-desc, .band-cream .project-desc { color: #4a463f; opacity: 1; }
.band-light .project-loc, .band-cream .project-loc, .band-light .project-stat .lbl, .band-cream .project-stat .lbl { color: #8a8378; }
.band-light .project-stat .num, .band-cream .project-stat .num { color: #1c1f24; }

/* ── About / split feature row ── */
.about-row { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-row .about-text h2 { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(30px, 4vw, 50px); line-height: 1.12; margin-bottom: 18px; }
.about-row .about-text h2 em { font-style: italic; color: var(--gold-dark); }
.about-row p { font-size: 15.5px; margin-bottom: 16px; line-height: 1.7; }
.about-check { list-style: none; margin-top: 18px; }
.about-check li { position: relative; padding-left: 30px; padding-block: 7px; font-size: 15px; }
.about-check li::before { content: '✓'; position: absolute; left: 0; top: 7px; width: 20px; height: 20px; border-radius: 50%; background: var(--gold); color: #1a1a1a; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; }

/* ── Trust stat strip ── */
.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.trust-stat .num { font-family: 'Cormorant Garamond', serif; font-size: clamp(38px, 5vw, 58px); font-weight: 600; color: var(--gold-dark); line-height: 1; }
.trust-stat .lbl { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: #6f6a60; margin-top: 8px; }

/* ── Why-choose feature grid ── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.why-card { padding: 30px 26px; border-radius: 16px; border: 1px solid rgba(201,169,110,0.16); background: rgba(255,255,255,0.025); }
.why-card .ico { width: 52px; height: 52px; border-radius: 12px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 16px; }
.why-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 23px; color: var(--gold-light); margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--text-muted); }

/* ── Process steps ── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.step { position: relative; padding: 30px 24px; border-radius: 16px; background: #fff; border: 1px solid rgba(0,0,0,0.07); box-shadow: 0 10px 28px rgba(0,0,0,0.05); }
.step .n { font-family: 'Cormorant Garamond', serif; font-size: 46px; font-weight: 600; color: var(--gold); line-height: 1; opacity: 0.5; margin-bottom: 8px; }
.step h4 { font-size: 18px; color: #1c1f24; margin-bottom: 8px; }
.step p { font-size: 14px; color: #5c574e; }

/* ── Location cards ── */
.loc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.loc-card { border-radius: 16px; overflow: hidden; border: 1px solid rgba(201,169,110,0.16); background: rgba(255,255,255,0.025); }
.loc-card .loc-body { padding: 20px 22px 24px; }
.loc-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 24px; color: var(--gold-light); margin-bottom: 6px; }
.loc-card p { font-size: 13.5px; color: var(--text-muted); }

/* ── Testimonials ── */
.tst-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.tst-card { padding: 30px 28px; border-radius: 16px; background: #fff; border: 1px solid rgba(0,0,0,0.07); box-shadow: 0 10px 28px rgba(0,0,0,0.05); }
.tst-stars { color: #e0a93b; font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.tst-card p { font-size: 15px; color: #3f3b34; font-style: italic; line-height: 1.7; margin-bottom: 18px; }
.tst-who { display: flex; align-items: center; gap: 12px; }
.tst-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); display: flex; align-items: center; justify-content: center; color: #1a1a1a; font-weight: 700; font-size: 16px; }
.tst-who .nm { font-size: 14px; font-weight: 600; color: #1c1f24; }
.tst-who .rl { font-size: 12px; color: #8a8378; }

/* ── CTA band ── */
.cta-band { background: linear-gradient(135deg, #151515, #0a0c0f); border-top: 1px solid rgba(201,169,110,0.2); border-bottom: 1px solid rgba(201,169,110,0.2); }
.cta-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.cta-inner h2 { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(32px, 5vw, 56px); line-height: 1.1; margin-bottom: 16px; }
.cta-inner h2 em { font-style: italic; color: var(--gold); }
.cta-inner p { color: var(--text-muted); font-size: 16px; margin-bottom: 30px; }
.cta-inner .hero-cta { justify-content: center; }

@media (max-width: 800px) {
  .about-row { grid-template-columns: 1fr; gap: 30px; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); gap: 30px 18px; }
}

/* ── Lead Popup ── */
.popup-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(6,8,11,0.72); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; visibility: hidden; transition: opacity 0.35s ease, visibility 0.35s ease;
}
.popup-overlay.open { opacity: 1; visibility: visible; }

.popup {
  position: relative; width: 100%; max-width: 420px;
  background: linear-gradient(160deg, #15181d, #0d1014);
  border: 1px solid rgba(201,169,110,0.3); border-radius: 22px;
  padding: 40px 34px 34px; text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  transform: translateY(24px) scale(0.97); transition: transform 0.4s cubic-bezier(.2,.9,.3,1.2);
}
.popup-overlay.open .popup { transform: translateY(0) scale(1); }

.popup-close {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.25); background: rgba(255,255,255,0.04);
  color: var(--text-muted); font-size: 18px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
}
.popup-close:hover { color: var(--gold); border-color: var(--gold); transform: rotate(90deg); }

.popup-icon {
  width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
}
.popup-icon svg { width: 30px; height: 30px; fill: var(--dark); }

.popup h3 { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 400; margin-bottom: 8px; }
.popup h3 em { font-style: italic; color: var(--gold); }
.popup p { font-size: 14px; color: var(--text-muted); margin-bottom: 22px; }

.popup-form { display: flex; flex-direction: column; gap: 11px; margin-bottom: 16px; }
.popup-form input {
  width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(201,169,110,0.2);
  border-radius: 11px; padding: 12px 15px; color: var(--text); font-family: 'Inter', sans-serif; font-size: 14px; outline: none;
  transition: border-color 0.25s;
}
.popup-form input:focus { border-color: rgba(201,169,110,0.6); }

.popup-actions { display: flex; gap: 10px; }
.popup-actions .btn-gold, .popup-actions .btn-call { flex: 1; justify-content: center; }
.btn-call {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--wa); color: #04240f; border: none; cursor: pointer;
  padding: 14px 20px; border-radius: 12px; font-size: 14px; font-weight: 600; text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
}
.btn-call:hover { transform: translateY(-2px); opacity: 0.94; }
.btn-call svg { width: 16px; height: 16px; fill: currentColor; }
.popup-note { font-size: 11px; color: var(--text-muted); margin-top: 14px; }

@media (max-width: 420px) {
  .popup-actions { flex-direction: column; }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .contact-wrap { grid-template-columns: 1fr; padding: 34px; gap: 34px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 640px) {
  header { padding: 16px 20px; }
  .nav { display: none; }
  .section { padding: 60px 20px; }
  footer { padding: 40px 20px 24px; }
}
