/* ============================================
   GANZALA & GANZALA ADVOCATES — MAIN STYLES
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --navy:      #0B1F3A;
  --gold:      #C9A84C;
  --gold-lt:   #DFC07A;
  --cream:     #F8F5EE;
  --charcoal:  #2C2C2C;
  --mid-grey:  #6B6B6B;
  --lt-grey:   #E8E4DC;
  --white:     #FFFFFF;

  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans:  'Inter', system-ui, sans-serif;

  --fs-hero:   clamp(2.4rem, 6vw, 5rem);
  --fs-h1:     clamp(2rem, 4vw, 3.2rem);
  --fs-h2:     clamp(1.6rem, 3vw, 2.4rem);
  --fs-h3:     clamp(1.2rem, 2vw, 1.5rem);
  --fs-body:   1rem;
  --fs-small:  0.875rem;

  --max-w: 1240px;
  --radius: 2px;
  --transition: 0.3s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-sans);
  font-size: var(--fs-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Utility ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section-pad { padding: 5rem 0; }
.section-pad-sm { padding: 3rem 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.bg-navy { background: var(--navy); }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 64px; width: auto; display: block; object-fit: contain; max-width: 200px; }
.footer-logo-img { height: 68px; width: auto; display: block; object-fit: contain; margin-bottom: 1rem; max-width: 220px; }

/* Keep old text logo styles as fallback */
.eyebrow {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ── Section headings ── */
.section-title {
  font-family: var(--ff-serif);
  font-size: var(--fs-h2);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title span { color: var(--gold); }
.section-lead {
  font-size: 1.05rem;
  color: var(--mid-grey);
  max-width: 640px;
  line-height: 1.8;
}
.section-lead.centered { margin: 0 auto; }

/* ── Gold rule ── */
.gold-rule {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 1.25rem 0;
}
.gold-rule.centered { margin: 1.25rem auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }
.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--navy); }
.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 1.4rem 0;
}
#main-nav.scrolled {
  background: var(--navy);
  box-shadow: 0 4px 32px rgba(0,0,0,0.18);
  padding: 0.8rem 0;
}
#main-nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo .logo-main {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-logo .logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0.9rem; right: 0.9rem;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links .btn { margin-left: 0.75rem; padding: 0.55rem 1.4rem; }

/* Dropdown */
.nav-item { position: relative; }
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: var(--white);
  min-width: 240px;
  border-radius: 4px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
  border-top: 3px solid var(--gold);
  padding: 0.6rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
}
.dropdown a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 0.8rem;
  color: var(--charcoal) !important;
  letter-spacing: 0.03em;
  text-transform: none;
}
.dropdown a::after { display: none; }
.dropdown a:hover { color: var(--gold) !important; background: var(--cream); padding-left: 1.5rem; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.4rem;
}
.nav-hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
  display: block;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  padding: 6rem 2rem 2rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  display: block;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: var(--ff-serif);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .mobile-sub {
  padding-left: 1rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
}
.mobile-nav .mobile-sub:hover { color: var(--gold-lt); }
.mobile-nav .mobile-contact {
  margin-top: 2rem;
  padding-top: 1.5rem;
}
.mobile-nav .mobile-contact p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
}
.mobile-nav .mobile-contact a {
  border: none;
  font-size: 1rem;
  padding: 0.3rem 0;
  color: var(--gold);
  font-family: var(--ff-sans);
}

/* ═══════════════════════════════════════════
   HERO SLIDER
═══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }

/* Slide backgrounds with overlay */
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(11,31,58,0.88) 0%, rgba(11,31,58,0.55) 60%, rgba(11,31,58,0.3) 100%);
  z-index: 1;
}
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 6s ease;
}
.hero-slide.active .slide-bg { transform: scale(1); }

/* Slide 1 */
.slide-1 .slide-bg { background-image: url('https://images.unsplash.com/photo-1589994965851-a8f479c573a9?w=1600&q=80'); }
/* Slide 2 */
.slide-2 .slide-bg { background-image: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1600&q=80'); }

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  width: 40px; height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero-eyebrow span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-title {
  font-family: var(--ff-serif);
  font-size: var(--fs-hero);
  font-weight: 600;
  color: var(--white);
  line-height: 1.12;
  max-width: 780px;
  margin-bottom: 1.5rem;
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-style: italic;
  font-family: var(--ff-serif);
}
.hero-desc:not(em) { font-style: normal; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Slider controls */
.hero-controls {
  position: absolute;
  bottom: 2.5rem;
  left: 0; right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all var(--transition);
}
.hero-dot.active { background: var(--gold); border-color: var(--gold); width: 24px; border-radius: 4px; }
.hero-arrows {
  position: absolute;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}
.hero-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 1.1rem;
}
.hero-arrow:hover { border-color: var(--gold); background: var(--gold); color: var(--navy); }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 6px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollWheel 1.6s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%,100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: 0.3; }
}

/* ═══════════════════════════════════════════
   INTRO / STATS BAR
═══════════════════════════════════════════ */
.stats-bar {
  background: var(--navy);
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}
.stat-num {
  font-family: var(--ff-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   ABOUT PREVIEW
═══════════════════════════════════════════ */
.about-preview {
  padding: 6rem 0;
}
.about-preview .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  padding-bottom: 2rem;
  padding-right: 2rem;
}
.about-img-wrap .main-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
}
.about-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  aspect-ratio: 1;
  background: var(--navy);
  border: 6px solid var(--white);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
}
.about-img-accent .accent-num {
  font-family: var(--ff-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.about-img-accent .accent-text {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 0.4rem;
}
.about-text .section-title { margin-bottom: 0.5rem; }
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
}
.pillar-card {
  background: var(--cream);
  padding: 1.4rem;
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
}
.pillar-card h4 {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.pillar-card p { font-size: 0.84rem; color: var(--mid-grey); line-height: 1.6; }

/* ═══════════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════════ */
.services-section { padding: 5.5rem 0; background: var(--cream); }
.services-header { text-align: center; margin-bottom: 3.5rem; }
.services-header .section-lead { margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  padding: 2.2rem 1.8rem;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  border-bottom: 3px solid transparent;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: 0;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(11,31,58,0.12); border-bottom-color: var(--gold); }
.service-card:hover::before { transform: translateY(0); }
.service-card > * { position: relative; z-index: 1; }
.service-icon {
  width: 52px; height: 52px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  transition: background var(--transition);
  font-size: 1.4rem;
}
.service-card:hover .service-icon { background: rgba(201,168,76,0.2); }
.service-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}
.service-card:hover h3 { color: var(--gold); }
.service-card p {
  font-size: 0.87rem;
  color: var(--mid-grey);
  line-height: 1.7;
  flex: 1;
  transition: color var(--transition);
}
.service-card:hover p { color: rgba(255,255,255,0.7); }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--transition);
}
.service-card:hover .service-link { color: var(--gold-lt); gap: 0.7rem; }
.service-card:hover .service-link svg { transform: translateX(3px); }

/* ═══════════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════════ */
.why-us {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '"';
  position: absolute;
  top: -2rem;
  left: -1rem;
  font-family: var(--ff-serif);
  font-size: 24rem;
  color: var(--cream);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}
.why-us .container { position: relative; z-index: 1; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-features { display: flex; flex-direction: column; gap: 1.8rem; }
.why-feat {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.why-feat-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.why-feat-text h4 {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.why-feat-text p { font-size: 0.88rem; color: var(--mid-grey); line-height: 1.7; }

.why-visual {
  position: relative;
}
.why-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
}
.why-quote-card {
  position: absolute;
  bottom: -1.5rem;
  left: -2rem;
  background: var(--gold);
  padding: 2rem;
  max-width: 280px;
  border-radius: 2px;
}
.why-quote-card p {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  font-style: italic;
  line-height: 1.5;
}
.why-quote-card cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-style: normal;
  color: rgba(11,31,58,0.7);
}

/* ═══════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════ */
.cta-banner {
  background: var(--navy);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, transparent 60%);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner .section-title { color: var(--white); font-size: var(--fs-h2); margin-bottom: 1rem; }
.cta-banner .section-lead { color: rgba(255,255,255,0.65); margin: 0 auto 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════
   CONTACT STRIP / PAGE
═══════════════════════════════════════════ */
.contact-section { padding: 5.5rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
}
.contact-info h2 {
  font-family: var(--ff-serif);
  font-size: var(--fs-h2);
  color: var(--navy);
  margin-bottom: 1rem;
}
.contact-items { margin: 2rem 0; display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item-icon {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.contact-item-text strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.contact-item-text p, .contact-item-text a {
  font-size: 0.93rem;
  color: var(--charcoal);
  line-height: 1.6;
}
.contact-item-text a:hover { color: var(--gold); }

.contact-form {
  background: var(--cream);
  padding: 2.5rem;
  border-radius: 2px;
}
.contact-form h3 {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; margin-bottom: 1rem; }
.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--lt-grey);
  border-radius: var(--radius);
  font-family: var(--ff-sans);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { min-height: 130px; resize: vertical; }

/* Map */
.map-wrap {
  margin-top: 3rem;
  border-radius: 2px;
  overflow: hidden;
  height: 320px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ═══════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════ */
.page-hero {
  padding: 10rem 0 5rem;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.1) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--ff-serif);
  font-size: var(--fs-h1);
  color: var(--white);
  margin-bottom: 1rem;
}
.page-hero p {
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

.about-full { padding: 5.5rem 0; }
.about-full-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 4rem;
}
.about-full-grid.reverse { direction: rtl; }
.about-full-grid.reverse > * { direction: ltr; }

.values-section {
  background: var(--cream);
  padding: 5rem 0;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.value-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 2px;
  border-top: 3px solid var(--gold);
  text-align: center;
}
.value-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.value-card h4 {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.value-card p { font-size: 0.86rem; color: var(--mid-grey); line-height: 1.7; }

.focus-areas { padding: 5rem 0; }
.focus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.focus-card {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.8rem;
  background: var(--cream);
  border-radius: 2px;
  border-left: 3px solid var(--gold);
}
.focus-num {
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}
.focus-card h4 {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.focus-card p { font-size: 0.86rem; color: var(--mid-grey); line-height: 1.7; }

/* ═══════════════════════════════════════════
   SERVICE DETAIL PAGE
═══════════════════════════════════════════ */
.service-detail { padding: 5rem 0; }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3.5rem;
  align-items: start;
}
.service-detail-content h2 {
  font-family: var(--ff-serif);
  font-size: var(--fs-h2);
  color: var(--navy);
  margin-bottom: 1rem;
}
.service-detail-content p {
  color: var(--mid-grey);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.service-detail-content h3 {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  color: var(--navy);
  margin: 2rem 0 1rem;
}
.service-detail-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.service-detail-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--charcoal);
}
.service-detail-content ul li::before {
  content: '▸';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.1em;
}

.service-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-widget {
  background: var(--cream);
  padding: 1.8rem;
  border-radius: 2px;
}
.sidebar-widget h4 {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1.5px solid var(--lt-grey);
}
.sidebar-service-list { display: flex; flex-direction: column; gap: 0.2rem; }
.sidebar-service-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0.9rem;
  font-size: 0.85rem;
  color: var(--charcoal);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.sidebar-service-list a:hover,
.sidebar-service-list a.active { background: var(--navy); color: var(--gold); padding-left: 1.1rem; }
.sidebar-cta {
  background: var(--navy);
  text-align: center;
}
.sidebar-cta h4 { color: var(--white); border-bottom-color: rgba(255,255,255,0.1); }
.sidebar-cta p { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 1.2rem; }
.sidebar-cta a:not(.btn) { color: var(--gold); font-size: 0.9rem; font-weight: 600; display: block; margin-bottom: 0.4rem; }
.sidebar-cta .btn-gold { color: var(--navy); }

/* ═══════════════════════════════════════════
   OUR SERVICES PAGE
═══════════════════════════════════════════ */
.services-page-intro {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 4rem;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
}

.services-list-item {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2.5rem;
  background: var(--cream);
  border-radius: 2px;
  border-left: 4px solid var(--gold);
  overflow: hidden;
}

.services-list-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.services-list-body {
  width: 100%;
  min-width: 0;
}

.services-list-title {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  word-break: break-word;
}

.services-list-desc {
  color: var(--mid-grey);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.services-list-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  list-style: none;
  width: 100%;
}

.services-list-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.83rem;
  color: var(--charcoal);
  line-height: 1.5;
  min-width: 0;
  word-break: break-word;
}

.highlight-arrow {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.15em;
}

/* ═══════════════════════════════════════════
   CAREERS PAGE
═══════════════════════════════════════════ */
.careers-section { padding: 5rem 0; }
.careers-intro { max-width: 700px; margin-bottom: 3.5rem; }
.job-card {
  background: var(--white);
  border: 1.5px solid var(--lt-grey);
  border-radius: 2px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: all var(--transition);
}
.job-card:hover { border-color: var(--gold); box-shadow: 0 8px 32px rgba(0,0,0,0.07); }
.job-info h3 {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.job-meta { display: flex; gap: 1.2rem; font-size: 0.8rem; color: var(--mid-grey); flex-wrap: wrap; }
.job-meta span { display: flex; align-items: center; gap: 0.3rem; }
.careers-cta {
  background: var(--cream);
  padding: 3rem;
  border-radius: 2px;
  margin-top: 3rem;
  text-align: center;
}
.careers-cta h3 {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.careers-cta p { color: var(--mid-grey); margin-bottom: 1.5rem; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: #070F1E;
  color: rgba(255,255,255,0.65);
  padding: 4.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo-main {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 0.3rem;
}
.footer-brand .logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.2rem;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.8; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 0.7rem; margin-bottom: 0.9rem; align-items: flex-start; font-size: 0.85rem; }
.footer-contact-item svg { flex-shrink: 0; margin-top: 0.15em; color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom a { color: var(--gold); }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
/* ── Global overflow fix ── */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}
* { box-sizing: border-box; }

/* Home contact grid */
.home-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-preview .grid { gap: 3rem; }
  .why-quote-card { left: 0; max-width: 240px; }
  .services-list-highlights { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Our Services page */
  .services-list-highlights { grid-template-columns: 1fr 1fr; }
  .services-list-item { padding: 1.5rem; }

  /* Nav */
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-nav { display: block; }
  .nav-logo-img { height: 50px; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero-title { font-size: clamp(1.8rem, 8vw, 3rem); }
  .hero-desc { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-arrows { display: none; }
  .scroll-indicator { display: none; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after,
  .stat-item:nth-child(4)::after { display: none; }

  /* About preview */
  .about-preview .grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap { max-width: 100%; }
  .about-img-accent {
    position: relative;
    bottom: auto; right: auto;
    width: 100%;
    margin-top: 1rem;
    flex-direction: row;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border: none;
    border-top: 3px solid var(--gold);
  }
  .about-pillars { grid-template-columns: 1fr; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Why us */
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .why-us::before { display: none; }

  /* CTA */
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* Homepage inline contact grid */
  .section-pad .container > div[style*="grid-template-columns:1fr 1fr"] {
    display: block !important;
  }
  .section-pad .container > div[style*="grid-template-columns:1fr 1fr"] > * {
    width: 100% !important;
    margin-bottom: 2rem;
  }

  /* About page */
  .about-full-grid { grid-template-columns: 1fr !important; direction: ltr !important; }
  .about-full-grid > * { direction: ltr !important; }
  .about-full-grid img { max-height: 320px; object-fit: cover; width: 100%; }

  /* Values / Focus */
  .values-grid { grid-template-columns: 1fr; }
  .focus-grid { grid-template-columns: 1fr; }

  /* Service detail */
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-sidebar { order: -1; }
  .service-detail-grid > div[style*="grid-template-columns:repeat(3"] {
    grid-template-columns: 1fr !important;
  }

  /* Related services grid on service pages */
  div[style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* Our services listing page highlights grid */
  div[style*="grid-template-columns:repeat(3,1fr)"],
  div[style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr 1fr !important;
  }

  /* About page strategic focus inline grid */
  div[style*="grid-template-columns:repeat(4,1fr)"],
  div[style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Careers perks grid */
  div[style*="grid-template-columns:1fr 1fr"][style*="gap:5rem"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  /* Why quote card */
  .why-quote-card { display: none; }

  /* Job cards */
  .job-card { flex-direction: column; align-items: flex-start; }
  .job-card .btn { width: 100%; justify-content: center; }

  /* Page hero */
  .page-hero { padding: 8rem 0 3rem; }
  .page-hero h1 { font-size: clamp(1.6rem, 6vw, 2.4rem); }

  /* Homepage contact grid */
  .home-contact-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Contact form */
  .contact-form { padding: 1.5rem; }

  /* Map */
  .map-wrap { height: 240px; }

  /* General inline grids used in pages */
  div[style*="display:grid"][style*="grid-template-columns:1fr 1fr"],
  div[style*="display:grid"][style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}

@media (max-width: 480px) {
  .services-list-highlights { grid-template-columns: 1fr; }
  .services-list-item { padding: 1.2rem; }

  .container { padding: 0 1rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 1.8rem; }

  .hero-title { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .section-title { font-size: clamp(1.4rem, 5vw, 1.8rem); }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-social { justify-content: flex-start; }

  .btn { padding: 0.8rem 1.4rem; font-size: 0.78rem; }

  .service-card { padding: 1.6rem 1.2rem; }
  .contact-form { padding: 1.2rem; }

  div[style*="grid-template-columns:repeat(2,1fr)"],
  div[style*="grid-template-columns: repeat(2, 1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* Careers values row */
  div[style*="grid-template-columns:repeat(4,1fr)"],
  div[style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: 1fr 1fr !important;
  }
}
