/* ═══════════════════════════════════════
   RJM INTERIORS — Main Stylesheet
   Dark hero + Light content + Rounded modern
═══════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  /* ── Colours injected dynamically from Django admin ── */
  /* fallback defaults only — overridden by base.html <style> block */
  --teal: #0ab4c8;
  --teal-hover: #0891a0;
  --teal-light: #e6f9fb;
  --dark: #0a0a0a;
  --dark2: #111;
  --dark-border: #1e1e1e;
  --d1: #f5f0ea;
  --d2: #c8c4bc;
  --d3: #888;
  /* ── Static ── */
  --l1: #111;
  --l2: #555;
  --l3: #999;
  --light-border: #ebebeb;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 40px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.10);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: #fff; color: var(--l1); font-size: 15px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img, video { max-width: 100%; display: block; }

/* ── UTILITIES ── */
.teal { color: var(--teal); }
.serif { font-family: var(--font-serif); }
.eyebrow { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--teal); font-weight: 500; }
.section-tag { display: block; margin-bottom: 12px; }
.btn-teal { background: var(--teal); color: #fff; padding: 13px 28px; border: none; border-radius: var(--radius-pill); font-size: 13px; font-weight: 500; cursor: pointer; font-family: var(--font-sans); letter-spacing: .3px; transition: background .2s, transform .15s; display: inline-flex; align-items: center; gap: 8px; }
.btn-teal:hover { background: #0891a0; transform: translateY(-1px); }
.btn-teal-pill { background: var(--teal); color: #fff !important; padding: 9px 20px; border-radius: var(--radius-pill); font-size: 12px; font-weight: 500; letter-spacing: .3px; transition: background .2s; }
.btn-teal-pill:hover { background: #0891a0; }
.btn-outline { background: transparent; color: var(--d2); padding: 12px 24px; border: 1px solid var(--dark-border); border-radius: var(--radius-pill); font-size: 13px; font-weight: 400; cursor: pointer; font-family: var(--font-sans); display: inline-flex; align-items: center; gap: 8px; transition: border-color .2s, color .2s; }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }
.ph { background: #f0f0f0; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px; }
.ph i { font-size: 40px; color: #ccc; }
.ph span { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: #ccc; }
.ph-dark { background: #111; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px; }
.ph-dark i { font-size: 40px; color: #222; }
.ph-dark span { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: #222; }

/* ── TOP BAR ── */
.top-bar { background: var(--dark); padding: 8px 28px; display: flex; align-items: center; gap: 12px; font-size: 11px; color: var(--d3); }
.top-bar a { color: var(--d3); transition: color .2s; display: flex; align-items: center; gap: 5px; }
.top-bar a:hover { color: var(--teal); }
.top-bar-item { display: flex; align-items: center; gap: 5px; }
.top-bar-sep { color: #222; }
.top-bar-socials { margin-left: auto; display: flex; gap: 12px; }
.top-bar-socials a { font-size: 15px; }

/* ── NAV ── */
.nav { background: var(--dark); display: flex; align-items: center; justify-content: space-between; padding: 0 28px; height: 64px; border-bottom: 1px solid var(--dark-border); position: sticky; top: 0; z-index: 100; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-circle { width: 40px; height: 40px; background: #141414; border-radius: 50%; border: 1px solid #222; display: flex; flex-direction: column; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-rjm { font-size: 11px; font-weight: 600; color: var(--teal); line-height: 1.2; }
.logo-sub { font-size: 5px; color: #555; letter-spacing: 1.5px; text-transform: uppercase; line-height: 1; }
.logo-text { font-size: 15px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--d1); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 12px; color: var(--d3); transition: color .2s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-dropdown { position: relative; }
.nav-drop-trigger { display: flex; align-items: center; gap: 4px; cursor: pointer; user-select: none; }
.nav-drop-trigger .ti-chevron-down { transition: transform .2s; }
.nav-dropdown.open .nav-drop-trigger .ti-chevron-down { transform: rotate(180deg); }
.nav-dropdown-menu { display: none; position: absolute; top: calc(100% + 10px); left: 0; background: #111; border: 1px solid var(--dark-border); border-radius: var(--radius-md); padding: 8px; min-width: 200px; z-index: 200; box-shadow: var(--shadow-md); }
.nav-dropdown.open .nav-dropdown-menu { display: flex; flex-direction: column; }
.nav-dropdown-menu a { padding: 11px 14px; font-size: 13px; color: var(--d2); border-radius: var(--radius-sm); transition: background .15s, color .15s; display: flex; align-items: center; gap: 10px; }
.nav-dropdown-menu a:hover { background: #1a1a1a; color: var(--teal); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--d2); border-radius: 2px; transition: .3s; }

/* ── TICKER ── */
.ticker-wrap { overflow: hidden; background: #0f0f0f; border-top: 1px solid #222; border-bottom: 1px solid #222; padding: 14px 0; }
@keyframes ticker { 0% { transform: translateX(0) } 100% { transform: translateX(-50%) } }
.ticker-inner { display: inline-flex; animation: ticker 28s linear infinite; white-space: nowrap; }
.ticker-item { padding: 0 28px; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: #888; font-weight: 500; display: inline-flex; align-items: center; gap: 28px; }
.ticker-item::after { content: '·'; color: var(--teal); font-size: 18px; }

/* ── HERO ── */
.hero { background: var(--dark); display: grid; grid-template-columns: 1fr 1fr; height: 460px; max-height: 460px; overflow: hidden; }
.hero-text { padding: 44px 40px 44px 28px; display: flex; flex-direction: column; justify-content: center; gap: 28px; border-right: 1px solid var(--dark-border); height: 100%; overflow: hidden; }
.hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 32px; }
.hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--teal); flex-shrink: 0; }
.hero-h1 { font-family: var(--font-serif); font-size: 44px; font-weight: 700; line-height: 1.12; letter-spacing: -1px; color: var(--d1); }
.hero-h1 em { color: var(--teal); font-weight: 400; font-style: italic; display: block; font-size: 48px; }
.hero-sub { font-size: 16px; color: var(--d2); line-height: 1.85; max-width: 420px; margin: 20px 0 32px; font-weight: 300; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-photos { display: grid; grid-template-rows: 1fr 1fr; gap: 10px; padding: 16px 16px 16px 10px; height: 100%; overflow: hidden; }
.hero-photo-main { border-radius: var(--radius-lg); overflow: hidden; position: relative; height: 100%; }
.hero-photo-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-tag { position: absolute; bottom: 12px; right: 12px; background: var(--teal); padding: 5px 14px; border-radius: var(--radius-pill); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: #fff; font-weight: 500; }
.hero-photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hero-photo-small { border-radius: var(--radius-md); overflow: hidden; height: 100%; }
.hero-photo-small img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── CONTACT STRIP ── */
.contact-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 20px 28px; background: #fff; border-bottom: 1px solid var(--light-border); }
.contact-strip-item { display: flex; align-items: center; gap: 14px; padding: 16px 20px; border: 1px solid var(--light-border); border-radius: var(--radius-lg); transition: box-shadow .2s, border-color .2s; }
.contact-strip-item:hover { box-shadow: var(--shadow); border-color: var(--teal); }
.cs-icon { width: 48px; height: 48px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 22px; }
.cs-icon.wa { background: #e8faf5; color: #25D366; }
.cs-icon.teal-bg { background: var(--teal-light); color: var(--teal); }
.cs-label { font-size: 14px; font-weight: 500; color: var(--l1); }
.cs-sub { font-size: 12px; color: var(--l3); margin-top: 2px; font-weight: 300; }

/* ── SECTIONS ── */
.section { padding: 64px 28px; }
.section-light { background: #fff; }
.section-off { background: #f8f8f8; }
.section-dark { background: var(--dark); }
.section-header { margin-bottom: 44px; }
.section-header h2 { font-family: var(--font-serif); font-size: 36px; font-weight: 700; letter-spacing: -.5px; margin-top: 10px; }
.section-header-row { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-bottom: 36px; }
.section-header-row h2 { font-family: var(--font-serif); font-size: 36px; font-weight: 700; letter-spacing: -.5px; margin-top: 10px; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-bottom: 1px solid var(--light-border); }
.about-content { padding: 60px 40px 60px 28px; border-right: 1px solid var(--light-border); }
.ghost-num { font-family: var(--font-serif); font-size: 90px; font-weight: 700; color: #f0f0f0; letter-spacing: -5px; line-height: 1; display: flex; align-items: flex-end; gap: 0; }
.ghost-num sup { font-size: 26px; color: var(--teal); font-weight: 600; margin-bottom: 16px; font-family: var(--font-sans); }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--light-border); border-radius: var(--radius-lg); overflow: hidden; margin-top: 36px; }
.stat-item { padding: 18px 14px; text-align: center; border-right: 1px solid var(--light-border); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-serif); font-size: 26px; font-weight: 700; color: var(--teal); }
.stat-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--l3); margin-top: 5px; }
.about-image { overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 14px; }
.services-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.svc-card { background: #fff; border: 1px solid var(--light-border); padding: 32px 24px; border-radius: var(--radius-lg); border-top: 3px solid var(--light-border); transition: border-top-color .2s, box-shadow .2s, transform .2s; }
.svc-card:hover, .svc-card.active { border-top-color: var(--teal); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.svc-icon { width: 48px; height: 48px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 24px; }
.svc-icon.on { background: var(--teal-light); color: var(--teal); }
.svc-icon.off { background: #f5f5f5; color: #bbb; }
.svc-num { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--l3); margin-bottom: 8px; }
.svc-card h3 { font-family: var(--font-serif); font-size: 20px; font-weight: 700; color: var(--l1); margin-bottom: 10px; }
.svc-card p { font-size: 14px; line-height: 1.85; color: var(--l2); font-weight: 300; }
.svc-link { display: inline-flex; align-items: center; gap: 5px; margin-top: 18px; font-size: 12px; color: var(--teal); font-weight: 500; transition: gap .2s; }
.svc-link:hover { gap: 8px; }
.svc-row { display: flex; gap: 16px; align-items: flex-start; }
.svc-row .svc-icon { flex-shrink: 0; margin-bottom: 0; margin-top: 2px; width: 44px; height: 44px; }

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; grid-template-rows: 200px 200px; gap: 10px; }
.gallery-item { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: #e8ecee; }
.gallery-item.large { grid-row: 1 / 3; }
.gallery-item img, .gallery-item video { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img, .gallery-item:hover video { transform: scale(1.04); }
.gallery-cap { position: absolute; bottom: 0; left: 0; right: 0; background: var(--dark); padding: 12px 14px; border-top: 2px solid var(--teal); }
.gallery-cap h4 { font-family: var(--font-serif); font-size: 13px; color: #fff; font-weight: 700; }
.gallery-cap span { font-size: 11px; color: var(--teal); margin-top: 2px; display: block; }
.gallery-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-full-item { border-radius: var(--radius-lg); overflow: hidden; position: relative; aspect-ratio: 4/3; background: #e8ecee; }
.gallery-full-item img, .gallery-full-item video { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-full-item:hover img, .gallery-full-item:hover video { transform: scale(1.04); }
.gallery-filter { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn { padding: 8px 18px; border-radius: var(--radius-pill); font-size: 11px; font-weight: 500; border: 1px solid var(--light-border); color: var(--l3); cursor: pointer; background: #fff; transition: .2s; }
.filter-btn.active, .filter-btn:hover { background: var(--teal); color: #fff; border-color: var(--teal); }

/* ── PROCESS ── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.process-card { background: #fff; border: 1px solid var(--light-border); padding: 28px 20px; border-radius: var(--radius-lg); }
.process-num { font-family: var(--font-serif); font-size: 80px; font-weight: 700; color: #f5f5f5; line-height: 1; letter-spacing: -3px; }
.process-line { width: 28px; height: 2px; margin: 6px 0 16px; }
.process-line.on { background: var(--teal); }
.process-line.off { background: var(--light-border); }
.process-card h4 { font-family: var(--font-serif); font-size: 15px; font-weight: 700; color: var(--l1); margin-bottom: 8px; }
.process-card p { font-size: 13px; color: var(--l2); line-height: 1.8; font-weight: 300; }

/* ── TESTIMONIALS ── */
.testimonial-section { background: var(--dark); padding: 68px 28px; text-align: center; }
.quote-mark { font-family: var(--font-serif); font-size: 80px; font-weight: 700; color: #161616; line-height: 0.6; margin-bottom: 28px; }
.testimonial-quote { font-family: var(--font-serif); font-size: 22px; font-weight: 400; color: var(--d1); line-height: 1.75; max-width: 560px; margin: 0 auto 24px; font-style: italic; }
.testimonial-author { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--d3); margin-bottom: 14px; }
.stars { display: flex; justify-content: center; gap: 4px; }
.stars i { font-size: 15px; color: var(--teal); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.t-card { background: #111; border: 1px solid var(--dark-border); padding: 28px 24px; border-radius: var(--radius-lg); text-align: left; }
.t-card .stars { justify-content: flex-start; margin-bottom: 16px; }
.t-card p { font-family: var(--font-serif); font-size: 14px; color: var(--d2); line-height: 1.8; font-style: italic; margin-bottom: 20px; }
.t-card .author { font-size: 11px; color: var(--d3); letter-spacing: 1px; text-transform: uppercase; }

/* ── CTA BAND ── */
.cta-band { background: var(--teal); padding: 40px 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.cta-band h3 { font-family: var(--font-serif); font-size: 30px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.cta-band p { font-size: 13px; color: rgba(255,255,255,0.8); font-weight: 300; }
.cta-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.cta-btn-white { background: #fff; color: var(--teal); padding: 12px 22px; border-radius: var(--radius-pill); font-size: 13px; font-weight: 500; display: flex; align-items: center; gap: 7px; transition: background .2s; }
.cta-btn-white:hover { background: #f0f0f0; }
.cta-btn-ghost { border: 1.5px solid rgba(255,255,255,0.6); color: #fff; padding: 11px 20px; border-radius: var(--radius-pill); font-size: 13px; display: flex; align-items: center; gap: 7px; transition: background .2s; }
.cta-btn-ghost:hover { background: rgba(255,255,255,0.1); }

/* ── FOOTER ── */
.footer { background: var(--dark); border-top: 1px solid var(--dark-border); }
.footer-inner { padding: 52px 28px 28px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand p { font-size: 14px; line-height: 1.85; max-width: 240px; margin-bottom: 24px; font-weight: 300; color: var(--d2); }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 38px; height: 38px; border: 1px solid #222; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--d3); font-size: 16px; transition: border-color .2s, color .2s; }
.footer-socials a:hover { border-color: var(--teal); color: var(--teal); }
.footer-col h5 { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--teal); font-weight: 500; margin-bottom: 18px; }
.footer-col a, .footer-col span { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--d2); line-height: 2.5; font-weight: 300; transition: color .2s; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom { padding: 16px 28px; border-top: 1px solid var(--dark-border); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom span { font-size: 11px; color: var(--d3); }

/* ── CONTACT FORM ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 12px; font-weight: 500; color: var(--l2); letter-spacing: .5px; }
.form-group input, .form-group select, .form-group textarea { padding: 12px 16px; border: 1px solid var(--light-border); border-radius: var(--radius-md); font-size: 14px; font-family: var(--font-sans); color: var(--l1); background: #fff; transition: border-color .2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { background: var(--dark); padding: 56px 28px 52px; border-bottom: 1px solid var(--dark-border); }
.page-hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.page-hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--teal); flex-shrink: 0; }
.page-hero h1 { font-family: var(--font-serif); font-size: 44px; font-weight: 700; line-height: 1.1; color: var(--d1); letter-spacing: -0.5px; margin-bottom: 16px; }
.page-hero p { font-size: 15px; color: var(--d2); line-height: 1.95; max-width: 560px; font-weight: 300; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--d3); margin-bottom: 24px; }
.breadcrumb a { color: var(--d3); transition: color .2s; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb i { font-size: 10px; }

/* ── TOAST ── */
.toast-wrap { position: fixed; top: 80px; right: 20px; z-index: 999; }
.toast { background: #111; border: 1px solid var(--teal); color: var(--d1); padding: 14px 20px; border-radius: var(--radius-md); font-size: 13px; display: flex; align-items: center; gap: 8px; box-shadow: var(--shadow-md); animation: fadeInSlide .3s ease; }
.toast i { color: var(--teal); }
@keyframes fadeInSlide { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

/* ── SERVICE PAGE ── */
.service-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.service-hero-img { min-height: 360px; overflow: hidden; }
.service-hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── ABOUT PAGE ── */
.team-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 64px 28px; }

/* ── RESPONSIVE ── */

/* ══════════════════════════════════════
   RESPONSIVE — TABLET (max 1024px)
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .gallery-full-grid { grid-template-columns: 1fr 1fr; }
  .hero-h1 { font-size: 40px; }
  .about-grid { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE (max 768px)
══════════════════════════════════════ */
@media (max-width: 768px) {

  /* Top bar hidden on mobile */
  .top-bar { display: none; }

  /* Nav */
  .nav { padding: 0 16px; height: 58px; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 58px; left: 0; right: 0;
    background: var(--dark);
    padding: 16px 20px 24px;
    border-bottom: 1px solid var(--dark-border);
    gap: 2px;
    z-index: 200;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 14px; padding: 10px 0; border-bottom: 1px solid #1a1a1a; color: var(--d2); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links .btn-teal-pill { margin-top: 12px; width: 100%; text-align: center; justify-content: center; padding: 12px; font-size: 14px; }
  .nav-hamburger { display: flex; }
  .logo-text { font-size: 13px; }
  .logo-circle { width: 34px; height: 34px; }

  /* Dropdown on mobile — static position under trigger */
  .nav-dropdown-menu { position: static; border: none; padding: 4px 0 4px 16px; box-shadow: none; margin-top: 4px; background: transparent; border-radius: 0; }
  .nav-dropdown.open .nav-dropdown-menu { display: flex; }
  .nav-dropdown-menu a { font-size: 13px; color: var(--d3); border-bottom: none; padding: 8px 12px; }

  /* Hero */
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 36px 20px 36px 20px; border-right: none; border-bottom: 1px solid var(--dark-border); }
  .hero-h1 { font-size: 34px; letter-spacing: -0.5px; line-height: 1.1; }
  .hero-h1 em { font-size: 36px; }
  .hero-sub { font-size: 14px; margin: 16px 0 24px; }
  .hero-eyebrow { margin-bottom: 20px; }
  .hero-photos { display: none; }
  .hero-ctas { gap: 10px; }
  .hero-ctas .btn-teal, .hero-ctas .btn-outline { padding: 11px 18px; font-size: 12px; }

  /* Ticker */
  .ticker-item { font-size: 9px; letter-spacing: 2px; padding: 0 18px; }

  /* Contact strip */
  .contact-strip { grid-template-columns: 1fr; gap: 10px; padding: 16px; }
  .contact-strip-item { padding: 14px 16px; }
  .cs-label { font-size: 13px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; }
  .about-content { padding: 36px 20px; border-right: none; border-bottom: 1px solid var(--light-border); }
  .ghost-num { font-size: 72px; }
  .about-image { min-height: 260px; margin: 0 !important; border-radius: 0 !important; }

  /* Sections */
  .section { padding: 40px 16px; }
  .section-header { margin-bottom: 28px; }
  .section-header h2,
  .section-header-row h2 { font-size: 28px; }
  .section-header-row { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 24px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 12px; margin-bottom: 12px; }
  .services-row2 { grid-template-columns: 1fr; gap: 12px; }
  .svc-card { padding: 24px 18px; }

  /* Gallery home */
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; gap: 8px; }
  .gallery-item.large { grid-row: auto; grid-column: 1 / -1; height: 220px; }
  .gallery-item { height: 180px; }

  /* Gallery full */
  .gallery-full-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .gallery-filter { gap: 6px; }
  .filter-btn { padding: 7px 12px; font-size: 11px; }

  /* Process */
  .process-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .process-card { padding: 20px 16px; }
  .process-num { font-size: 56px; }

  /* Testimonial */
  .testimonial-section { padding: 48px 20px; }
  .testimonial-quote { font-size: 18px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 12px; }

  /* CTA Band */
  .cta-band { flex-direction: column; padding: 32px 20px; gap: 20px; }
  .cta-band h3 { font-size: 22px; }
  .cta-btns { flex-direction: column; width: 100%; }
  .cta-btn-white, .cta-btn-ghost { justify-content: center; padding: 13px 20px; font-size: 14px; }

  /* Footer — slim on mobile */
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 28px 16px 16px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { display: none; } /* hide tagline on mobile — saves space */
  .footer-col h5 { margin-bottom: 10px; }
  .footer-col a, .footer-col span { line-height: 2.0; font-size: 13px; }
  .footer-socials { margin-top: 8px; }
  .footer-socials a { width: 32px; height: 32px; font-size: 14px; }
  .footer-bottom {
    padding: 12px 16px;
    flex-direction: column;
    gap: 2px;
    text-align: center;
  }
  .footer-bottom span { font-size: 10px; }
  /* Hide "Explore" column on mobile — redundant with nav */
  .footer-col:nth-child(3) { display: none; }

  /* Forms */
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }

  /* Contact page */
  section > div[style*="grid-template-columns:1fr 1.2fr"] { display: flex !important; flex-direction: column !important; gap: 28px !important; }

  /* Page hero */
  .page-hero { padding: 36px 20px 32px; }
  .page-hero h1 { font-size: 32px; }
  .page-hero p { font-size: 14px; }

  /* Service page */
  .service-hero-grid,
  [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
  .service-hero-img { min-height: 220px; }

  /* About page */
  .team-section { grid-template-columns: 1fr; padding: 36px 20px; gap: 28px; }
  [style*="grid-template-columns:repeat(4,1fr)"] { grid-template-columns: 1fr 1fr !important; }

  /* Other services on service page */
  [style*="grid-template-columns:repeat(4"] { grid-template-columns: 1fr 1fr !important; }

  /* Stat row */
  .stat-row { border-radius: 12px; }
  .stat-num { font-size: 22px; }
}

/* ══════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (max 480px)
══════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-h1 { font-size: 30px; }
  .hero-h1 em { font-size: 32px; }
  .process-grid { grid-template-columns: 1fr; }
  .gallery-full-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .contact-strip { gap: 8px; }
  .section { padding: 36px 14px; }
  .nav { padding: 0 14px; }
  .hero-text { padding: 28px 14px; }
  .hero-h1 { font-size: 28px; }
  .hero-h1 em { font-size: 30px; }
  .page-hero { padding: 28px 14px; }
  .page-hero h1 { font-size: 28px; }
  .cta-band { padding: 28px 14px; }
  .about-content { padding: 28px 14px; }
  [style*="grid-template-columns:repeat(4"] { grid-template-columns: 1fr !important; }
  .stat-item { padding: 14px 8px; }
  .section-header h2, .section-header-row h2 { font-size: 24px; }
}

/* ── Floating WhatsApp button (mobile only) ── */
@media (max-width: 768px) {
  .whatsapp-float {
    display: flex !important;
  }
}
.whatsapp-float {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform .2s;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ══════════════════════════════════════
   TESTIMONIAL SLIDER
══════════════════════════════════════ */
.testimonial-slider { position: relative; max-width: 680px; margin: 0 auto; }
.testimonial-slides { overflow: hidden; }
.testimonial-slide { display: none; animation: fadeSlide .4s ease; }
.testimonial-slide.active { display: block; }
@keyframes fadeSlide { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: #2a2a2a; border: none; cursor: pointer; transition: background .2s, transform .2s; padding: 0; }
.slider-dot.active { background: var(--teal); transform: scale(1.2); }
.slider-arrows { display: flex; justify-content: center; gap: 12px; margin-top: 20px; }
.slider-arrow { width: 40px; height: 40px; border-radius: 50%; border: 1px solid #2a2a2a; background: transparent; color: #888; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 16px; transition: border-color .2s, color .2s; }
.slider-arrow:hover { border-color: var(--teal); color: var(--teal); }

/* ══════════════════════════════════════
   GROUP BADGE
══════════════════════════════════════ */
.gallery-group-card { position: relative; }
.group-badge {
  position: absolute; top: 12px; right: 12px;
  background: rgba(10,10,10,0.85);
  border: 1px solid var(--teal);
  color: var(--teal); font-size: 12px; font-weight: 500;
  padding: 4px 10px; border-radius: var(--radius-pill);
  display: flex; align-items: center; gap: 5px;
  backdrop-filter: blur(4px);
}
.gallery-group-card::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(10,180,200,0.08);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  transition: border-color .2s;
  pointer-events: none;
}
.gallery-group-card:hover::after { border-color: var(--teal); }

/* ══════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════ */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.95);
  align-items: center; justify-content: center;
  flex-direction: column;
}
.lightbox.open { display: flex; animation: fadeIn .2s ease; }
.lb-content {
  max-width: 90vw; max-height: 80vh;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.lb-content img {
  max-width: 90vw; max-height: 75vh;
  object-fit: contain; border-radius: var(--radius-md);
  box-shadow: 0 20px 80px rgba(0,0,0,0.8);
}
.lb-info {
  display: flex; align-items: center; gap: 0;
  width: 100%; font-size: 13px; color: var(--d2); padding: 0 4px;
}
.lb-close {
  position: absolute; top: 20px; right: 20px;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid #333; background: rgba(0,0,0,0.6);
  color: #fff; font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s; z-index: 10;
}
.lb-close:hover { border-color: var(--teal); color: var(--teal); }
.lb-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid #333; background: rgba(0,0,0,0.6);
  color: #fff; font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, color .2s; z-index: 10;
}
.lb-arrow:hover { border-color: var(--teal); color: var(--teal); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-dots {
  display: flex; gap: 6px; margin-top: 8px;
  flex-wrap: wrap; justify-content: center; max-width: 80vw;
}
.lb-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #333; border: none; cursor: pointer;
  transition: background .2s, transform .2s; padding: 0;
}
.lb-dot.active { background: var(--teal); transform: scale(1.3); }

/* ══════════════════════════════════════
   SERVICE MOBILE CAROUSEL
══════════════════════════════════════ */
.service-mobile-carousel {
  position: relative; overflow: hidden;
  height: 280px; background: #0a0a0a;
}
.smc-track {
  display: flex; height: 100%;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94);
}
.smc-slide {
  min-width: 100%; height: 100%; position: relative; flex-shrink: 0;
}
.smc-slide img {
  width: 100%; height: 100%; object-fit: cover;
}
.smc-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 32px 16px 14px;
  font-size: 13px; color: #fff; font-weight: 400;
}
.smc-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3); background: rgba(0,0,0,0.5);
  color: #fff; font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; z-index: 5;
}
.smc-prev { left: 10px; }
.smc-next { right: 10px; }
.smc-dots {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 5px; z-index: 5;
}
.smc-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.4); border: none; cursor: pointer; padding: 0;
  transition: background .2s;
}
.smc-dot.active { background: var(--teal); }

/* Show/hide helpers */
.desktop-only { display: grid; }
.mobile-only { display: none; }
@media (max-width: 768px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: block !important; }
}

/* ── MOBILE FEATURE IMAGE ── */
.mobile-feature-img {
  width: 100%;
  height: 280px;
  overflow: hidden;
  display: none;
}
.mobile-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── CONTACT STRIP — hide on mobile, show compact bar instead ── */
@media (max-width: 768px) {
  .desktop-contact-strip { display: none; }
  .mobile-feature-img { display: block; }

  /* Compact contact bar at bottom of hero on mobile */
  .mobile-contact-bar {
    display: flex;
    background: #111;
    border-top: 1px solid #1e1e1e;
  }
  .mobile-contact-bar a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    font-size: 11px;
    color: var(--d2);
    text-decoration: none;
    gap: 4px;
    border-right: 1px solid #1e1e1e;
    transition: color .2s;
  }
  .mobile-contact-bar a:last-child { border-right: none; }
  .mobile-contact-bar a:hover { color: var(--teal); }
  .mobile-contact-bar i { font-size: 20px; }
  .mobile-contact-bar span { font-size: 10px; letter-spacing: .5px; }
}
@media (min-width: 769px) {
  .mobile-contact-bar { display: none; }
}
