/* ========================================
   JSR INFRA - Global Styles
   Design: Deep charcoal + Rich gold palette
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&family=Bebas+Neue&display=swap');

:root {
  --gold:        #C9A84C;
  --gold-light:  #E4C270;
  --gold-dark:   #9A7A2E;
  --charcoal:    #1A1A1A;
  --charcoal-2:  #252525;
  --charcoal-3:  #2E2E2E;
  --off-white:   #F5F2EC;
  --warm-gray:   #8A8580;
  --light-gray:  #E8E4DC;
  --white:       #FFFFFF;
  --text-dark:   #1A1A1A;
  --text-light:  #F5F2EC;

  --font-display: 'Playfair Display', serif;
  --font-body:    'Inter', sans-serif;
  --font-accent:  'Bebas Neue', cursive;

  --shadow-gold:  0 4px 30px rgba(201,168,76,0.18);
  --shadow-dark:  0 8px 40px rgba(0,0,0,0.35);
  --transition:   all 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  --radius:       4px;
  --radius-lg:    12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--charcoal); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); font-weight: 600; }
p  { font-size: 1rem; color: var(--warm-gray); }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── SECTION SPACING ── */
.section { padding: 100px 0; }
.section-dark { background: var(--charcoal); color: var(--text-light); }
.section-dark p { color: rgba(245,242,236,0.65); }

/* ── EYEBROW LABEL ── */
.eyebrow {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

/* ── GOLD UNDERLINE ── */
.gold-line {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 20px 0 32px;
  border-radius: 2px;
}
.gold-line.center { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 36px;
  font-family: var(--font-body);
  font-weight: 600; font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative; overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--charcoal);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(201,168,76,0.35);
}

.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-2px);
}

.btn-ghost {
  border: 2px solid rgba(245,242,236,0.3);
  color: var(--off-white);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ──────────────────────────────────────
   NAVBAR
──────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(26,26,26,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 90px;
  gap: 16px;
}

.nav-logo {
  display: flex; align-items: center; gap: 14px;
}

.nav-logo img {
  height: 72px; width: auto;
  max-width: 160px;
  padding: 8px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.logo-text-block { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--font-accent);
  font-size: 1.9rem;
  color: var(--gold);
  letter-spacing: 3px;
}
.logo-tagline {
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(245,242,236,0.55);
  font-family: var(--font-body);
}

.nav-links {
  display: flex; align-items: center; gap: 28px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1.25px;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
  color: #ffffff;
}

.navbar.scrolled {
  background: rgba(26,26,26,0.97);
}

.nav-cta {
  padding: 10px 24px !important;
  letter-spacing: 1px !important;
}

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 6px;
  position: relative;
  z-index: 1002;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--off-white);
  transition: var(--transition);
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ──────────────────────────────────────
   HERO
──────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--charcoal);
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,26,26,0.92) 0%,
    rgba(26,26,26,0.6) 50%,
    rgba(201,168,76,0.08) 100%
  );
}

.hero-grid-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: 32px;
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 { color: var(--off-white); margin-bottom: 24px; }
.hero h1 span { color: var(--gold); }

.hero-desc {
  font-size: 1.1rem;
  color: rgba(245,242,236,0.7);
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  position: absolute; bottom: 48px; right: 0; left: 0;
  z-index: 2;
}

.hero-stats .container {
  display: flex; justify-content: flex-end; gap: 0;
}

.stat-card {
  background: rgba(26,26,26,0.85);
  border: 1px solid rgba(201,168,76,0.2);
  backdrop-filter: blur(12px);
  padding: 28px 36px;
  text-align: center;
  border-right: none;
}
.stat-card:last-child { border-right: 1px solid rgba(201,168,76,0.2); }

.stat-number {
  font-family: var(--font-accent);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245,242,236,0.55);
  margin-top: 6px;
}

/* ──────────────────────────────────────
   ABOUT STRIP
──────────────────────────────────────── */
.about-strip {
  background: var(--charcoal-2);
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  padding: 28px 0;
}

.strip-inner {
  display: flex; align-items: center; gap: 48px;
  overflow: hidden;
  white-space: nowrap;
}

.strip-item {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245,242,236,0.5);
  font-weight: 500;
  flex-shrink: 0;
}
.strip-item svg { color: var(--gold); }
.strip-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold-dark);
  opacity: 0.5;
  flex-shrink: 0;
}

/* ──────────────────────────────────────
   SERVICES GRID
──────────────────────────────────────── */
.services-section { background: var(--off-white); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header .gold-line { margin-left: auto; margin-right: auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--light-gray);
  border: 1px solid var(--light-gray);
}

.service-card {
  background: var(--white);
  padding: 48px 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 0;
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  transition: var(--transition);
}

.service-card:hover { background: var(--charcoal); }
.service-card:hover .service-title { color: var(--off-white); }
.service-card:hover p { color: rgba(245,242,236,0.6); }
.service-card:hover .service-icon-wrap { background: rgba(201,168,76,0.15); border-color: rgba(201,168,76,0.3); }
.service-card:hover .service-icon-wrap svg { color: var(--gold); }
.service-card:hover::before { height: 100%; }

.service-icon-wrap {
  width: 64px; height: 64px;
  border-radius: var(--radius);
  border: 1px solid var(--light-gray);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  transition: var(--transition);
  background: var(--off-white);
}
.service-icon-wrap svg { width: 28px; height: 28px; color: var(--charcoal-3); transition: var(--transition); }

.service-tag {
  font-size: 0.7rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 10px;
  display: block;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 14px;
  transition: var(--transition);
  line-height: 1.3;
}

/* ──────────────────────────────────────
   WHY CHOOSE US
──────────────────────────────────────── */
.why-section { background: var(--charcoal); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-image-block {
  position: relative;
}

.why-image-main {
  width: 100%; aspect-ratio: 4/5;
  background: var(--charcoal-3);
  border: 1px solid rgba(201,168,76,0.15);
  overflow: hidden;
}

.why-image-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.why-exp-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 140px; height: 140px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 16px;
}

.why-exp-badge .num {
  font-family: var(--font-accent);
  font-size: 3rem;
  color: var(--charcoal);
  line-height: 1;
}
.why-exp-badge .label {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(26,26,26,0.7);
  font-weight: 600;
  line-height: 1.3;
  margin-top: 4px;
}

.why-features { display: flex; flex-direction: column; gap: 28px; margin-top: 40px; }

.why-feature {
  display: flex; gap: 20px;
  padding: 24px;
  border: 1px solid rgba(201,168,76,0.1);
  transition: var(--transition);
}
.why-feature:hover {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.04);
}

.why-feature-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(201,168,76,0.1);
  display: flex; align-items: center; justify-content: center;
}
.why-feature-icon svg { width: 22px; height: 22px; color: var(--gold); }

.why-feature-text h4 {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 600;
  color: var(--off-white);
  margin-bottom: 6px;
}
.why-feature-text p { font-size: 0.88rem; color: rgba(245,242,236,0.5); line-height: 1.6; }

/* ──────────────────────────────────────
   DIVISIONS (page-level)
──────────────────────────────────────── */
.divisions-hero {
  min-height: 55vh;
  background: var(--charcoal);
  display: flex; align-items: flex-end;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.divisions-hero .hero-bg { opacity: 0.18; }

.divisions-hero-content {
  position: relative; z-index: 2;
}

.divisions-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--charcoal-3);
  margin-top: 80px;
}

.division-item {
  background: var(--white);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border-left: 4px solid transparent;
}

.division-item:hover {
  border-left-color: var(--gold);
  background: var(--charcoal);
  color: var(--off-white);
}
.division-item:hover .div-desc { color: rgba(245,242,236,0.6); }
.division-item:hover .div-number { color: rgba(201,168,76,0.15); }

.div-number {
  font-family: var(--font-accent);
  font-size: 5rem;
  color: rgba(26,26,26,0.06);
  position: absolute; top: 20px; right: 32px;
  line-height: 1;
  transition: var(--transition);
  user-select: none;
}

.div-icon {
  width: 56px; height: 56px;
  background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.division-item:hover .div-icon {
  background: rgba(201,168,76,0.15);
}
.div-icon svg { width: 26px; height: 26px; color: var(--charcoal); transition: var(--transition); }
.division-item:hover .div-icon svg { color: var(--gold); }

.div-title {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700;
  margin-bottom: 16px;
  color: var(--charcoal);
  transition: var(--transition);
}
.division-item:hover .div-title { color: var(--off-white); }

.div-desc { font-size: 0.92rem; line-height: 1.75; color: var(--warm-gray); transition: var(--transition); }

.div-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.div-tag {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--light-gray);
  padding: 5px 12px;
  border-radius: 100px;
  transition: var(--transition);
}
.division-item:hover .div-tag {
  background: rgba(201,168,76,0.15);
  color: var(--gold);
}

/* ──────────────────────────────────────
   SERVICES (full page)
──────────────────────────────────────── */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.sf-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  padding: 44px 36px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.sf-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.sf-card:hover { box-shadow: var(--shadow-dark); transform: translateY(-6px); }
.sf-card:hover::after { transform: scaleX(1); }

.sf-num {
  font-family: var(--font-accent);
  font-size: 3.5rem;
  color: rgba(201,168,76,0.12);
  line-height: 1;
  margin-bottom: 20px;
}

.sf-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.sf-desc {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--warm-gray);
}

.sf-includes {
  margin-top: 20px;
  display: flex; flex-direction: column; gap: 8px;
}
.sf-includes li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; color: var(--warm-gray);
}
.sf-includes li::before {
  content: '';
  width: 16px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ──────────────────────────────────────
   CTA BAND
──────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--charcoal), var(--charcoal-2));
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: 'JSR';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-accent);
  font-size: 18rem;
  color: rgba(201,168,76,0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.cta-band h2 { color: var(--off-white); margin-bottom: 16px; position: relative; }
.cta-band p { font-size: 1rem; color: rgba(245,242,236,0.6); margin-bottom: 40px; position: relative; }
.cta-band .btn { position: relative; }

/* ──────────────────────────────────────
   CONTACT PAGE
──────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 32px; }

.contact-card {
  display: flex; gap: 20px;
  padding: 28px;
  border: 1px solid var(--light-gray);
  background: var(--white);
  transition: var(--transition);
}
.contact-card:hover {
  border-color: rgba(201,168,76,0.4);
  box-shadow: var(--shadow-gold);
}

.contact-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 22px; height: 22px; color: var(--gold); }

.contact-card-label {
  font-size: 0.7rem; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold); font-weight: 600;
  margin-bottom: 6px;
}
.contact-card-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.5;
}

/* Contact Form */
.contact-form {
  background: var(--charcoal);
  padding: 56px 48px;
  border: 1px solid rgba(201,168,76,0.12);
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--off-white);
  margin-bottom: 8px;
}
.contact-form > p {
  font-size: 0.88rem;
  color: rgba(245,242,236,0.5);
  margin-bottom: 36px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label {
  font-size: 0.72rem; letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(245,242,236,0.5);
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(245,242,236,0.05);
  border: 1px solid rgba(245,242,236,0.1);
  color: var(--off-white);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
  border-radius: var(--radius);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
}
.form-group select option { background: var(--charcoal); }
.form-group textarea { min-height: 120px; resize: vertical; }

/* ──────────────────────────────────────
   FLOATING BUTTONS
──────────────────────────────────────── */
.floating-btns {
  position: fixed;
  bottom: 32px; right: 28px;
  z-index: 999;
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 14px;
}

.float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 30px rgba(0,0,0,0.25);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}
.float-btn:hover { transform: translateY(-4px) scale(1.05); }

.float-btn-wa { background: #25D366; }
.float-btn-call { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }

.float-btn svg { width: 26px; height: 26px; color: white; }
.float-btn-call svg { color: var(--charcoal); }

.float-label {
  position: absolute; right: 68px;
  background: var(--charcoal);
  color: var(--off-white);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  pointer-events: none;
  border: 1px solid rgba(201,168,76,0.2);
}
.float-btn:hover .float-label {
  opacity: 1;
  transform: translateX(0);
}

/* ──────────────────────────────────────
   PAGE HERO (inner pages)
──────────────────────────────────────── */
.page-hero {
  min-height: 50vh;
  background: var(--charcoal);
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.page-hero .hero-bg { opacity: 0.18; }

.page-hero-content {
  position: relative; z-index: 2;
  padding: 80px 0;
}

.breadcrumb {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: rgba(245,242,236,0.45);
  letter-spacing: 1px;
}
.breadcrumb a { color: var(--gold); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb-sep { color: rgba(201,168,76,0.4); }

/* ──────────────────────────────────────
   FOOTER
──────────────────────────────────────── */
.footer {
  background: #111111;
  color: var(--off-white);
  border-top: 1px solid rgba(201,168,76,0.12);
}

.footer-main {
  padding: 80px 0 56px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-brand .logo-name { font-size: 2.2rem; }
.footer-brand > p {
  font-size: 0.88rem;
  color: rgba(245,242,236,0.45);
  line-height: 1.8;
  margin-top: 20px;
  margin-bottom: 28px;
}

.footer-socials { display: flex; gap: 12px; }
.social-btn {
  width: 40px; height: 40px;
  border: 1px solid rgba(245,242,236,0.12);
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
  transition: var(--transition);
}
.social-btn:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
}
.social-btn svg { width: 16px; height: 16px; color: rgba(245,242,236,0.5); transition: var(--transition); }
.social-btn:hover svg { color: var(--gold); }

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 24px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(245,242,236,0.45);
  transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.footer-col ul li a::before {
  content: '';
  width: 12px; height: 1px;
  background: var(--gold-dark);
  transition: var(--transition);
}
.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact-list { display: flex; flex-direction: column; gap: 16px; }
.footer-contact-item {
  display: flex; gap: 12px;
  font-size: 0.85rem;
  color: rgba(245,242,236,0.45);
  line-height: 1.5;
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(245,242,236,0.07);
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
}

.footer-bottom-left {
  font-size: 0.78rem;
  color: rgba(245,242,236,0.3);
}

.footer-bottom-right {
  font-size: 0.78rem;
  color: rgba(245,242,236,0.3);
}
.footer-bottom-right a {
  color: var(--gold);
  font-weight: 600;
  transition: var(--transition);
}
.footer-bottom-right a:hover { color: var(--gold-light); }

/* ══════════════════════════════════════
   RESPONSIVE — LAPTOP  (≤ 1200px)
══════════════════════════════════════ */
@media (max-width: 1200px) {
  .container { padding: 0 32px; }

  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
  }

  .services-full-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .contact-grid {
    gap: 48px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET LANDSCAPE  (≤ 1024px)
══════════════════════════════════════ */
@media (max-width: 1024px) {
  /* Layout */
  .container { padding: 0 28px; }
  .section { padding: 80px 0; }

  /* Navbar */
  .nav-inner { height: 80px; }
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 0.84rem; letter-spacing: 1px; }
  .nav-logo img { height: 58px; }
  .nav-cta { padding: 9px 18px !important; font-size: 0.82rem !important; }

  /* Hero */
  .hero-content { max-width: 600px; }
  .hero-desc { font-size: 1rem; }
  .hero-stats {
    position: static;
    margin-top: 40px;
    padding-bottom: 12px;
  }
  .hero-stats .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0;
  }
  .stat-card { flex: 1; min-width: 130px; }

  /* Grids — 2 columns */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
  }
  .divisions-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
  }
  .services-full-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Why section */
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-image-block { display: none; }
  .why-features { margin-top: 24px; gap: 20px; }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr 1.4fr;
    gap: 36px;
  }
  .contact-form { padding: 44px 36px; }

  /* Footer */
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 64px 0 48px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand > p { max-width: 480px; }

  /* Divisions page */
  .division-item { padding: 44px 36px; }
  .div-title { font-size: 1.4rem; }

  /* CTA band */
  .cta-band::before { font-size: 12rem; }
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET PORTRAIT  (≤ 768px)
══════════════════════════════════════ */
@media (max-width: 768px) {
  /* Container */
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }

  /* Typography */
  h1 { font-size: clamp(2rem, 8vw, 3.2rem); }
  h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  h3 { font-size: clamp(1.1rem, 3.5vw, 1.4rem); }

  /* Navbar — hamburger mode */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-inner { height: 72px; }
  .nav-logo img { height: 52px; }
  body.menu-open { overflow: hidden; }
  body.menu-open .navbar {
    background: rgba(26,26,26,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    right: 0;
    bottom: 0;
    left: 0;
    height: calc(100svh - 72px);
    padding: 28px 20px 36px;
    background: rgba(26,26,26,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    z-index: 999;
    overflow-y: auto;
    text-align: center;
  }
  .nav-links.open a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    font-size: 1.12rem;
    letter-spacing: 2px;
    width: 100%;
    max-width: 300px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(201,168,76,0.1);
  }
  .nav-links.open .nav-cta {
    border-bottom: none;
    margin-top: 8px;
    padding: 14px 40px !important;
    font-size: 1rem !important;
  }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero-content { max-width: 100%; padding: 0; }
  .hero-badge { font-size: 0.7rem; padding: 7px 16px; }
  .hero-desc { font-size: 0.95rem; margin-bottom: 36px; }
  .hero-actions { flex-direction: column; gap: 12px; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { position: static; margin-top: 48px; }
  .hero-stats .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0;
  }
  .stat-card { flex: 1; min-width: 140px; padding: 22px 20px; }
  .stat-number { font-size: 1.9rem; }

  /* About strip */
  .strip-inner { gap: 28px; }
  .strip-item { font-size: 0.72rem; letter-spacing: 1.5px; }

  /* Grids — 1 column */
  .services-grid { grid-template-columns: 1fr; gap: 1px; }
  .divisions-list { grid-template-columns: 1fr; gap: 2px; }
  .services-full-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Service cards */
  .service-card { padding: 36px 28px; }
  .sf-card { padding: 36px 28px; }

  /* Division items */
  .division-item { padding: 40px 28px; }
  .div-title { font-size: 1.35rem; }
  .div-number { font-size: 4rem; top: 16px; right: 24px; }

  /* Why section */
  .why-image-block { display: none; }
  .why-feature { padding: 20px; gap: 16px; }
  .why-feature-icon { width: 42px; height: 42px; flex-shrink: 0; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .contact-info { gap: 20px; }
  .contact-card { padding: 22px 20px; gap: 16px; }

  /* Section headers */
  .section-header { margin-bottom: 48px; }
  .section-header p { font-size: 0.9rem; }

  /* Footer */
  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 0 40px;
  }
  .footer-brand { grid-column: auto; }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 20px 0;
  }
  .footer-socials { gap: 10px; }

  /* CTA band */
  .cta-band { padding: 64px 0; }
  .cta-band::before { font-size: 7rem; }
  .cta-band .btn { width: 100%; justify-content: center; }
  .cta-band > .container > div { flex-direction: column; }

  /* Page hero (inner pages) */
  .page-hero { min-height: 40vh; padding-top: 72px; }
  .page-hero-content { padding: 56px 0; }

  /* Floating buttons */
  .floating-btns { bottom: 20px; right: 16px; gap: 10px; }
  .float-btn { width: 50px; height: 50px; }
  .float-btn svg { width: 22px; height: 22px; }
  .float-label { display: none; }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 480px)
══════════════════════════════════════ */
@media (max-width: 480px) {
  /* Container tighter */
  .container { padding: 0 16px; }
  .section { padding: 52px 0; }

  /* Typography */
  h1 { font-size: clamp(1.85rem, 9vw, 2.6rem); }
  h2 { font-size: clamp(1.5rem, 6vw, 2rem); }

  /* Navbar */
  .nav-inner { height: 64px; padding: 0 16px; }
  .nav-logo img { height: 44px; }
  .nav-links.open {
    top: 64px;
    height: calc(100svh - 64px);
    padding-top: 22px;
  }

  /* Hero */
  .hero-badge { font-size: 0.65rem; padding: 6px 14px; letter-spacing: 1.5px; }
  .hero-desc { font-size: 0.9rem; margin-bottom: 28px; max-width: 100%; }
  .stat-card { min-width: 120px; padding: 18px 14px; }
  .stat-number { font-size: 1.7rem; }
  .stat-label { font-size: 0.65rem; letter-spacing: 1.5px; }

  /* Service cards */
  .service-card { padding: 32px 22px; }
  .service-icon-wrap { width: 56px; height: 56px; margin-bottom: 22px; }
  .service-title { font-size: 1.15rem; }

  /* Division items */
  .division-item { padding: 36px 22px; }
  .div-title { font-size: 1.2rem; }
  .div-number { font-size: 3.5rem; }
  .div-tags { gap: 6px; }
  .div-tag { font-size: 0.68rem; padding: 4px 10px; }

  /* Why features */
  .why-features { gap: 16px; }
  .why-feature { padding: 18px 16px; flex-direction: row; }
  .why-feature-icon { width: 40px; height: 40px; }
  .why-feature-text h4 { font-size: 0.95rem; }
  .why-feature-text p { font-size: 0.82rem; }

  /* Contact form */
  .contact-form { padding: 28px 18px; }
  .contact-form h3 { font-size: 1.2rem; }
  .form-group input,
  .form-group select,
  .form-group textarea { padding: 12px 14px; font-size: 0.88rem; }

  /* SF Cards (services page) */
  .sf-card { padding: 32px 22px; }
  .sf-num { font-size: 2.8rem; margin-bottom: 14px; }
  .sf-title { font-size: 1.1rem; }

  /* Footer */
  .footer-main { padding: 48px 0 32px; gap: 32px; }
  .footer-brand .logo-name { font-size: 1.8rem; }
  .footer-brand > p { font-size: 0.82rem; }
  .footer-col h5 { font-size: 0.68rem; margin-bottom: 18px; }
  .footer-col ul { gap: 10px; }
  .footer-col ul li a { font-size: 0.84rem; }
  .footer-bottom-left,
  .footer-bottom-right { font-size: 0.72rem; }

  /* Floating buttons — smaller on small phones */
  .floating-btns { bottom: 16px; right: 12px; gap: 8px; }
  .float-btn { width: 46px; height: 46px; }

  /* CTA band */
  .cta-band { padding: 52px 0; }
  .cta-band::before { font-size: 5rem; }

  /* Page hero */
  .page-hero { min-height: 36vh; }
  .page-hero-content { padding: 44px 0; }
  .breadcrumb { font-size: 0.72rem; gap: 8px; }

  /* Buttons full-width in stacked layouts */
  .btn { padding: 13px 28px; font-size: 0.85rem; }

  /* Section header tighten */
  .section-header { margin-bottom: 36px; }
  .gold-line { margin: 16px 0 24px; }
}

/* ══════════════════════════════════════
   ABOUT PAGE — responsive grids
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .elevations-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .interiors-layout { grid-template-columns: 1fr; }
  .interior-card:nth-child(3) { grid-column: auto; }
  .interior-card img { height: 260px; }
  .interior-card:nth-child(3) img { height: 260px; }
  .gallery-masonry {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 200px 200px;
  }
  .gallery-item:nth-child(1) { grid-column: 1 / 4; grid-row: 1; }
  .gallery-item:nth-child(2) { grid-column: 4 / 7; grid-row: 1; }
  .gallery-item:nth-child(3) { grid-column: 1 / 4; grid-row: 2; }
  .gallery-item:nth-child(4) { grid-column: 4 / 7; grid-row: 2; }
  .gallery-item:nth-child(5) { display: none; }
}

@media (max-width: 768px) {
  .elevations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 36px;
  }
  .elevation-card img { height: 220px; }

  .interiors-layout { grid-template-columns: 1fr; gap: 10px; margin-top: 36px; }
  .interior-card img { height: 230px; }
  .interior-card:nth-child(3) img { height: 200px; }

  .gallery-masonry {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px;
    gap: 10px;
    margin-top: 36px;
  }
  .gallery-item:nth-child(1) { grid-column: 1 / 2; grid-row: 1; }
  .gallery-item:nth-child(2) { grid-column: 2 / 3; grid-row: 1; }
  .gallery-item:nth-child(3) { grid-column: 1 / 2; grid-row: 2; }
  .gallery-item:nth-child(4) { grid-column: 2 / 3; grid-row: 2; }
  .gallery-item:nth-child(5) { display: block; grid-column: 1 / -1; grid-row: 3; }
}

@media (max-width: 480px) {
  .elevations-grid { grid-template-columns: 1fr; gap: 10px; }
  .elevation-card img { height: 200px; }

  .gallery-masonry {
    grid-template-columns: 1fr;
    grid-template-rows: unset;
    gap: 8px;
  }
  .gallery-item { height: 200px; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
    display: block;
  }
  .gallery-item img { height: 200px; width: 100%; }
}

/* ══════════════════════════════════════
   TESTIMONIALS GRID — responsive
══════════════════════════════════════ */
@media (max-width: 900px) {
  /* inline grid in about.html testimonials */
  [style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-badge::before { animation: none; }
}
