/* ============================================================
   JO & CO — Global Stylesheet  |  www.joandco.ae
   100% self-contained — no external requests
   ============================================================ */

.visually-hidden { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

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

:root {
  --cream:      #F5F0E8;
  --warm-white: #FAFAF7;
  --gold:       #C4A96B;
  --gold-light: #D4BC8A;
  --charcoal:   #1A1814;
  --card-bg:    #221F1A;
  --card-hover: #2A2620;
  --mid:        #3D3930;
  --muted:      #7A7468;
  --border:     rgba(196,169,107,0.25);
  --border-lt:  rgba(196,169,107,0.12);
  --ff-display: 'DisplayFont', Georgia, 'Times New Roman', serif;
  --ff-body:    'BodyFont', Arial, Helvetica, sans-serif;
  --nav-h:      76px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--warm-white);
  color: var(--charcoal);
  font-family: var(--ff-body);
  font-weight: 300;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ── NAVIGATION ─────────────────────────────── */
#sitenav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4rem;
  background: transparent;
  transition: background 0.5s, backdrop-filter 0.5s, padding 0.4s;
  height: var(--nav-h);
}
#sitenav.scrolled, #sitenav.solid {
  background: rgba(26,24,20,0.93);
  backdrop-filter: blur(18px);
  padding: 1rem 4rem;
}
.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo-img { height: 44px; width: auto; filter: brightness(0) invert(1); transition: opacity 0.3s; }
.nav-logo:hover .nav-logo-img { opacity: 0.8; }
.footer-logo-img { height: 48px; width: auto; filter: brightness(0) invert(1); display: block; margin-bottom: 1rem; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: var(--ff-body);
  font-size: 0.7rem; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cream); text-decoration: none;
  opacity: 0.7; transition: opacity 0.3s, color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width 0.35s;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  font-size: 0.65rem; font-weight: 400; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 0.65rem 1.6rem;
  border: 1px solid var(--gold); color: var(--gold);
  text-decoration: none; transition: background 0.3s, color 0.3s;
}
.nav-cta:hover { background: var(--gold); color: var(--charcoal); }

/* Mobile */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--cream); transition: 0.35s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-menu {
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: rgba(26,24,20,0.98); backdrop-filter: blur(18px);
  z-index: 199; padding: 2rem 4rem 3rem;
  border-top: 1px solid var(--border); display: none;
  opacity: 0; transform: translateY(-8px);
  transition: opacity 0.35s, transform 0.35s; pointer-events: none;
}
.mobile-menu.open { display: block; opacity: 1; transform: translateY(0); pointer-events: all; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li a {
  display: block; padding: 0.9rem 0;
  font-family: var(--ff-display); font-size: 1.8rem; font-weight: 300;
  color: var(--cream); text-decoration: none;
  border-bottom: 1px solid var(--border-lt); transition: color 0.3s, padding-left 0.3s;
}
.mobile-menu ul li a:hover { color: var(--gold); padding-left: 0.6rem; }
.mobile-menu-contacts { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.8rem; }
.mobile-menu-wa {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.85rem; color: #25D366; text-decoration: none;
  padding: 0.8rem 0; border-bottom: 1px solid var(--border-lt); transition: opacity 0.3s;
}
.mobile-menu-wa:hover { opacity: 0.8; }
.mobile-menu-phone { display: block; margin-top: 1rem; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); text-decoration: none; }

/* Nav WhatsApp */
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-wa {
  display: flex; align-items: center; gap: 0.45rem;
  font-family: var(--ff-body); font-size: 0.65rem; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #25D366; text-decoration: none;
  padding: 0.55rem 1rem; border: 1px solid rgba(37,211,102,0.35);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.nav-wa:hover { background: rgba(37,211,102,0.12); border-color: #25D366; }

/* Floating CTA — mobile/tablet only */
.float-cta {
  position: fixed; bottom: 1.5rem; right: 1.2rem; z-index: 999;
  display: none; flex-direction: column; gap: 0.75rem;
  animation: floatSlideIn 0.5s 1.2s both;
}
.float-btn {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}
.float-btn:active { transform: scale(0.93); }
.float-btn::before {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0;
  animation: floatPulse 2s ease-in-out infinite;
}
.float-call {
  background: var(--gold); color: var(--charcoal);
}
.float-call::before { border-color: var(--gold); }
.float-wa {
  background: #25D366; color: #fff;
}
.float-wa::before { border-color: #25D366; }
.float-wa svg { width: 24px; height: 24px; }
.float-call svg { width: 22px; height: 22px; }
@keyframes floatPulse { 0%{transform:scale(1);opacity:0.6;} 50%{transform:scale(1.35);opacity:0;} 100%{transform:scale(1);opacity:0;} }
@keyframes floatSlideIn { from{opacity:0;transform:translateY(20px);}to{opacity:1;transform:translateY(0);} }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  min-height: 55vh; display: flex; align-items: flex-end;
  padding: 0 max(4rem, calc((100vw - 1320px) / 2)) 5rem; position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.35); transform: scale(1.03);
  animation: subtleZoom 12s ease-out forwards;
}
@keyframes subtleZoom { to { transform: scale(1.0); } }
.page-hero-content { position: relative; z-index: 2; }

/* ── PORTFOLIO HERO MARQUEE ── */
.portfolio-hero { padding-bottom: 5rem; }
.portfolio-marquee-wrap {
  position: absolute; inset: 0; overflow: hidden; z-index: 0;
}
.portfolio-marquee {
  display: flex; height: 100%; gap: 6px;
  animation: marqueeScroll 40s linear infinite;
  width: max-content;
}
.portfolio-marquee img {
  height: 100%; width: auto; object-fit: cover;
  flex-shrink: 0; display: block;
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.page-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(20, 18, 16, 0.55);
}
.page-eyebrow {
  font-size: 0.65rem; font-weight: 400; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
  opacity: 0; animation: fadeUp 1s 0.4s forwards;
}
.page-title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300; line-height: 1.0; color: var(--cream);
  opacity: 0; animation: fadeUp 1s 0.6s forwards;
}
.page-title em { font-style: italic; color: var(--gold-light); }

/* ── SHARED SECTIONS ── */
section { padding: 5rem max(4rem, calc((100vw - 1320px) / 2)); }
.section-tag {
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem; display: block;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 300; line-height: 1.15;
  color: var(--charcoal); margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; }
.section-title.light { color: var(--cream); }
.section-body { font-size: 0.88rem; line-height: 1.9; color: var(--muted); max-width: 560px; }
.section-body.light { color: rgba(245,240,232,0.5); }
.gold-rule { width: 44px; height: 1px; background: var(--gold); margin: 1.5rem 0; }
.cta-wrap { margin-top: 2.5rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.process-intro { margin: 0 auto; max-width: 500px; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; padding: 1rem 2.5rem;
  background: var(--gold); color: var(--charcoal);
  font-family: var(--ff-body); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  display: inline-block; padding: 1rem 2.5rem;
  border: 1px solid rgba(245,240,232,0.4); color: var(--cream);
  font-family: var(--ff-body); font-size: 0.65rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none;
  transition: border-color 0.3s, color 0.3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-gold-outline {
  display: inline-block; padding: 1rem 2.5rem;
  border: 1px solid var(--gold); color: var(--gold);
  font-family: var(--ff-body); font-size: 0.65rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.btn-gold-outline:hover { background: var(--gold); color: var(--charcoal); }
.btn-dark {
  display: inline-block; padding: 1rem 2.5rem;
  background: var(--charcoal); color: var(--cream);
  font-family: var(--ff-body); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}
.btn-dark:hover { background: #2A2620; transform: translateY(-2px); }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--charcoal); border-top: 1px solid var(--border);
  display: flex; justify-content: center;
}
.stat { flex: 1; max-width: 220px; padding: 2.5rem 2rem; text-align: center; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat-number { font-family: var(--ff-display); font-size: 2.8rem; font-weight: 300; color: var(--gold); display: block; line-height: 1; }
.stat-label { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,240,232,0.6); margin-top: 0.5rem; display: block; }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5px; background: var(--border); }
.service-card { background: var(--card-bg); padding: 2rem 1.8rem; position: relative; overflow: hidden; transition: background 0.4s; }
.service-card::before { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.5s ease; }
.service-card:hover { background: var(--card-hover); }
.service-card:hover::before { width: 100%; }
.service-num { font-family: var(--ff-display); font-size: 2.8rem; font-weight: 300; color: rgba(196,169,107,0.12); line-height: 1; margin-bottom: 1rem; }
.service-icon-wrap { width: 40px; height: 40px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; color: var(--gold); }
.service-icon-wrap svg { width: 22px; height: 22px; }
.about-feature-icon svg { color: var(--gold); }
.val-icon svg { color: var(--gold); }
.why-card-icon svg { color: var(--gold); }
.service-name { font-family: var(--ff-display); font-size: 1.15rem; font-weight: 400; color: var(--cream); margin-bottom: 0.6rem; }
.service-desc { font-size: 0.75rem; line-height: 1.75; color: rgba(245,240,232,0.65); }
.service-link { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.2rem; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); text-decoration: none; opacity: 0.6; transition: opacity 0.3s; }
.service-card:hover .service-link { opacity: 1; }

/* ── PORTFOLIO ── */
.portfolio-item { position: relative; overflow: hidden; background: var(--charcoal); cursor: pointer; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s ease, filter 0.5s ease; filter: brightness(0.85); }
.portfolio-item:hover img { transform: scale(1.06); filter: brightness(0.5); }
.portfolio-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem; opacity: 0; transition: opacity 0.4s; }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-cat { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.portfolio-title { font-family: var(--ff-display); font-size: 1.4rem; color: var(--cream); font-weight: 300; }
.portfolio-location { font-size: 0.68rem; color: rgba(245,240,232,0.5); margin-top: 0.3rem; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.testimonial-card { background: var(--cream); padding: 3rem 2.5rem; position: relative; }
.testimonial-card::before { content: '\201C'; font-family: var(--ff-display); font-size: 6rem; color: var(--gold); opacity: 0.2; position: absolute; top: 1rem; left: 2rem; line-height: 1; }
.testimonial-text { font-family: var(--ff-display); font-size: 1.05rem; font-weight: 300; font-style: italic; line-height: 1.7; color: var(--mid); margin-bottom: 2rem; }
.testimonial-author { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--charcoal); }
.testimonial-role { font-size: 0.65rem; color: var(--muted); margin-top: 0.2rem; }
.stars { color: var(--gold); font-size: 0.7rem; letter-spacing: 0.1em; margin-bottom: 1.5rem; }

/* ── WHY SPLIT ── */
.why-split { display: grid; grid-template-columns: 1fr 1fr; }
.why-visual { position: relative; min-height: 560px; background-size: cover; background-position: center; }
.why-visual::after { content: ''; position: absolute; inset: 0; background: rgba(26,24,20,0.1); }
.why-content { padding: 5.5rem 4rem; background: #1A1814; }
.why-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 2rem; }
.why-item { display: flex; gap: 1.5rem; align-items: flex-start; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.why-item:last-child { border-bottom: none; padding-bottom: 0; }
.why-num { font-family: var(--ff-display); font-size: 1.8rem; color: var(--gold); font-weight: 300; line-height: 1; flex-shrink: 0; }
.why-text strong { display: block; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream); margin-bottom: 0.4rem; }
.why-text p { font-size: 0.8rem; line-height: 1.75; color: rgba(245,240,232,0.65); }

/* ── FORMS ── */
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,240,232,0.6); margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  color: var(--cream); font-family: var(--ff-body); font-size: 0.85rem; font-weight: 300;
  padding: 0.9rem 1rem; outline: none; transition: border-color 0.3s; appearance: none; border-radius: 0;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(245,240,232,0.22); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { height: 120px; resize: vertical; }
.form-group select option { background: var(--charcoal); color: var(--cream); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit {
  width: 100%; padding: 1.1rem; background: var(--gold); border: none; color: var(--charcoal);
  font-family: var(--ff-body); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; cursor: pointer; transition: background 0.3s; margin-top: 0.5rem;
}
.btn-submit:hover { background: var(--gold-light); }

/* ── PROCESS STEPS (shared: home + about) ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 3.5rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--border);
}

.process-step { padding: 0 1rem; }

.step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.step-title { font-family: var(--ff-display); font-size: 1.1rem; font-weight: 400; color: var(--charcoal); margin-bottom: .6rem; }
.step-desc { font-size: .75rem; line-height: 1.7; color: var(--muted); }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1{transition-delay:.08s;} .d2{transition-delay:.16s;} .d3{transition-delay:.24s;}
.d4{transition-delay:.32s;} .d5{transition-delay:.4s;}
@keyframes fadeUp { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

/* ── FOOTER ── */
.site-footer { background: var(--charcoal); }

/* Pre-footer CTA */
.footer-cta { display: flex; align-items: center; justify-content: space-between; gap: 3rem; padding: 4.5rem 4rem; border-top: 1px solid rgba(196,169,107,0.15); }
.footer-cta-eyebrow { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); opacity: 0.7; margin-bottom: 0.9rem; }
.footer-cta-heading { font-family: var(--ff-display); font-size: clamp(1.8rem, 3.2vw, 2.7rem); font-weight: 300; color: var(--cream); line-height: 1.2; margin: 0; }
.footer-cta-heading em { color: var(--gold); font-style: italic; }
.footer-cta-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.9rem 2.2rem; border: 1px solid rgba(196,169,107,0.45); color: var(--gold); font-size: 0.67rem; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; white-space: nowrap; flex-shrink: 0; transition: background 0.3s, color 0.3s, border-color 0.3s; }
.footer-cta-btn:hover { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }

/* Gold rule */
.footer-rule { height: 1px; background: rgba(196,169,107,0.1); margin: 0 4rem; }

/* Main columns */
.footer-main { display: grid; grid-template-columns: 1.5fr 1fr 0.8fr 0.85fr; gap: 3.5rem; padding: 3.5rem 4rem; }
.footer-brand-col .footer-logo-img { height: 42px; width: auto; filter: brightness(0) invert(1); opacity: 0.8; display: block; margin-bottom: 1.4rem; }
.footer-tagline { font-size: 0.72rem; color: rgba(245,240,232,0.5); line-height: 1.85; margin-bottom: 1.8rem; }
.footer-socials { display: flex; gap: 0.45rem; }
.footer-social { width: 44px; height: 44px; border: 1px solid rgba(196,169,107,0.18); display: flex; align-items: center; justify-content: center; color: rgba(245,240,232,0.3); text-decoration: none; transition: border-color 0.3s, color 0.3s; }
.footer-social:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h3 { font-size: 0.57rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); opacity: 0.6; margin-bottom: 1.4rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.72rem; }
.footer-col ul li a,
.footer-col ul li span { font-size: 0.74rem; color: rgba(245,240,232,0.38); text-decoration: none; transition: color 0.3s; display: block; }
.footer-col ul li a:hover { color: var(--cream); }
.footer-more { display: inline-block; margin-top: 1.1rem; font-size: 0.63rem; letter-spacing: 0.08em; color: rgba(196,169,107,0.4); text-decoration: none; transition: color 0.3s; }
.footer-more:hover { color: var(--gold); }

/* Bottom bar */
.footer-bottom { padding: 1.4rem 4rem; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(196,169,107,0.08); }
.footer-bottom p { font-size: 0.62rem; color: rgba(245,240,232,0.45); }
.footer-bottom a { color: rgba(196,169,107,0.4); text-decoration: none; transition: color 0.3s; }
.footer-bottom a:hover { color: var(--gold); }

/* ── SCROLL INDICATOR ── */
.scroll-indicator {
  position: fixed;
  bottom: 2.5rem; right: 1.5rem;
  z-index: 100; pointer-events: none;
  writing-mode: vertical-rl;
  font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(196,169,107,0.7);
  text-shadow: 0 0 12px rgba(26,24,20,0.6);
  display: flex; align-items: center; gap: 1rem;
  opacity: 0; animation: fadeIn 1s 1.5s forwards;
  transition: opacity 0.5s ease;
}
.scroll-indicator::after {
  content: ''; width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(196,169,107,0.7), transparent);
  filter: drop-shadow(0 0 4px rgba(26,24,20,0.5));
}
.scroll-indicator.hidden { opacity: 0 !important; }

/* ── BREADCRUMB ── */
.breadcrumb { padding: 1rem 4rem; background: var(--cream); border-bottom: 1px solid var(--border-lt); font-size: 0.65rem; letter-spacing: 0.1em; color: var(--muted); }
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb span { margin: 0 0.4rem; color: var(--border); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  section { padding: 5rem 3rem; }
  #sitenav, #sitenav.scrolled, #sitenav.solid { padding-left: 3rem; padding-right: 3rem; }
  .page-hero { padding: 0 3rem 4rem; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-cta { padding: 3.5rem 3rem; }
  .footer-rule { margin: 0 3rem; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2.5rem; padding: 3rem 3rem; }
  .footer-bottom { padding: 1.2rem 3rem; }
  .breadcrumb { padding: 1rem 3rem; }
}
@media (max-width: 900px) {
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .process-steps::before { display: none; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  section { padding: 4rem 1.5rem; }
  #sitenav, #sitenav.scrolled, #sitenav.solid { padding-left: 1.5rem; padding-right: 1.5rem; }
  .page-hero { padding: 0 1.5rem 3.5rem; min-height: 45vh; }
  .stats-bar { flex-wrap: wrap; }
  .stat { flex: 1 1 50%; max-width: none; border-bottom: 1px solid var(--border); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-cta { flex-direction: column; align-items: flex-start; gap: 2rem; padding: 3rem 1.5rem; }
  .footer-rule { margin: 0 1.5rem; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; padding: 2.5rem 1.5rem; }
  .footer-brand-col { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; padding: 1.2rem 1.5rem; }
  .why-split { grid-template-columns: 1fr; }
  .why-visual { min-height: 280px; }
  .why-content { padding: 4rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .breadcrumb { padding: 1rem 1.5rem; }
  .nav-wa { display: none; }
  .float-cta { display: flex; }
  .nav-right { gap: 0.5rem; }
}
@media (max-width: 600px) {
  .process-steps { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stat { flex: 1 1 100%; }
  .footer-main { grid-template-columns: 1fr; }
}
