/* ==========================================================================
   AJILA GROUP — COMPONENTS STYLESHEET (components.css)
   100% Exact Content, Clean Corporate Editorial, 100% Mobile Responsive
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. MAIN NAVIGATION HEADER (Clean White Background for Natural Logo Pop)
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ffffff;
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: all var(--transition-normal);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.brand-name-wrap {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 800;
  color: #1e2920 !important; /* Soft deep charcoal slate - easy on the eyes */
  letter-spacing: 0.03em;
  line-height: 1.1;
}

.brand-subtitle {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4a554d !important; /* Soft muted charcoal */
  font-weight: 700;
}

/* Desktop Navigation Links */
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-body);
  padding: 0.35rem 0;
  position: relative;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background-color: var(--color-gold);
  transition: width var(--transition-normal);
  border-radius: var(--radius-full);
}

.nav-link.active::after,
.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  background-color: var(--color-accent) !important;
  color: #ffffff !important;
  border-radius: var(--radius-full);
  padding: 0.55rem 1.35rem !important;
  font-weight: 700 !important;
  box-shadow: 0 3px 10px rgba(235, 92, 0, 0.25);
  transition: all var(--transition-fast);
}
.nav-cta:hover {
  background-color: var(--color-accent-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(235, 92, 0, 0.35);
}
.nav-cta::after {
  display: none !important;
}

/* Mobile Hamburger Button */
.mobile-toggle {
  display: none;
  background: var(--color-bg-muted);
  border: 1px solid var(--color-border);
  color: var(--color-text-heading);
  cursor: pointer;
  padding: 0.6rem;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-fast);
  min-width: 44px;
  min-height: 44px;
}
.mobile-toggle:hover {
  background: var(--color-border);
}

/* Mobile Drawer Menu (Clean White Surface with Crisp Dark Typography) */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85%;
  max-width: 340px;
  background-color: #ffffff;
  padding: 1.5rem 1.5rem 2.5rem;
  box-shadow: -8px 0 35px rgba(0, 0, 0, 0.25);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  overflow-y: auto;
}

.mobile-nav-drawer.open {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.mobile-drawer-header .brand-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 800;
  color: #1e2920 !important; /* Soft deep charcoal slate - easy on the eyes */
  letter-spacing: 0.03em;
  line-height: 1.1;
}

.mobile-drawer-header .brand-subtitle {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4a554d !important; /* Soft muted charcoal */
  font-weight: 700;
}

.mobile-nav-close {
  background: var(--color-bg-muted);
  border: 1px solid var(--color-border);
  color: #111111;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}
.mobile-nav-close:hover {
  background-color: var(--color-accent);
  color: #ffffff;
  border-color: var(--color-accent);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.mobile-nav-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-heading);
  padding: 0.8rem 0.85rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-border-subtle);
  transition: all var(--transition-fast);
  text-decoration: none;
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--color-primary);
  background: var(--color-primary-subtle);
  padding-left: 1.15rem;
}

.mobile-sublink {
  padding-left: 2rem !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: #1e2920 !important;
  background: var(--color-bg-muted) !important;
  border-bottom: 1px solid var(--color-border-subtle) !important;
}
.mobile-sublink:hover,
.mobile-sublink.active {
  color: var(--color-primary) !important;
  background: var(--color-primary-subtle) !important;
  padding-left: 2.25rem !important;
}


.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* --------------------------------------------------------------------------
   2. HERO SECTIONS
   -------------------------------------------------------------------------- */
.hero-editorial {
  position: relative;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  color: #ffffff;
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-title {
  color: #ffffff;
  margin-bottom: 1.25rem;
  line-height: 1.18;
}

.hero-desc {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--color-text-inverse-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid rgba(255, 255, 255, 0.15);
}

.hero-image-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Internal Page Hero Banner — Clean Title Only (No Subtext) */
.page-hero {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  color: #ffffff;
  padding: clamp(3rem, 5vw, 4.5rem) 0;
  text-align: center;
  position: relative;
}

.page-hero .section-title {
  color: #ffffff;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   3. "WHO WE ARE" PICTURE SLIDER
   -------------------------------------------------------------------------- */
.who-we-are-slider {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--color-border);
  background-color: var(--color-bg-dark);
}

.slider-track {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  pointer-events: none;
}

.slider-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-controls {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
}

.slider-btn {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-fast);
}
.slider-btn:hover {
  background-color: var(--color-accent);
}

.slider-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 1.5rem;
  display: flex;
  gap: 0.4rem;
  z-index: 10;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.slider-dot.active {
  background: var(--color-gold);
  width: 24px;
  border-radius: var(--radius-full);
}

/* --------------------------------------------------------------------------
   4. SERVICES GRID (No division badges)
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(56, 125, 45, 0.25);
}

.service-card-media {
  position: relative;
  height: 220px;
  overflow: hidden;
  background-color: var(--color-bg-muted);
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.service-card:hover .service-card-media img {
  transform: scale(1.06);
}

.service-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-heading);
}

.service-card-desc {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-card-footer {
  border-top: 1px solid var(--color-border-subtle);
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-link-action {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.card-link-action:hover {
  color: var(--color-accent);
}

/* --------------------------------------------------------------------------
   5. CORE VALUES SECTION
   -------------------------------------------------------------------------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.value-box {
  background-color: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.value-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.value-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background-color: var(--color-primary-subtle);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.value-title {
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
}

.value-text {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   6. VISION & MISSION CARDS & ABOUT 2-IMAGE GRID
   -------------------------------------------------------------------------- */
.vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.vm-card {
  padding: 2.5rem 2rem;
  border-radius: var(--radius-xl);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.vm-card-vision {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.vm-card-mission {
  background: linear-gradient(135deg, #c44d00 0%, #78350f 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.vm-title {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.vm-text {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
}

/* About Us 2-Image Grid */
.about-two-images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.about-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--color-border);
  background-color: var(--color-bg-muted);
}
.about-img-frame img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.about-img-frame:hover img {
  transform: scale(1.03);
}

/* Modern Left-Aligned CTA Banner on Homepage (Requested) */
.cta-banner-modern {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  text-align: left; /* Strictly left-aligned */
}

/* Left-Aligned Team of Experts on About Us (Requested) */
.team-experts-about-box {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3.5rem);
  box-shadow: var(--shadow-xl);
  color: #ffffff;
  text-align: left; /* Strictly left-aligned */
}

.team-experts-about-box h2 {
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.team-experts-about-box p {
  color: var(--color-text-inverse-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* --------------------------------------------------------------------------
   7. LEADERSHIP ROSTER & MODAL
   -------------------------------------------------------------------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.75rem;
}

.team-card {
  background-color: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(56, 125, 45, 0.3);
}

.team-photo-wrap {
  position: relative;
  height: 260px;
  background-color: var(--color-bg-muted);
  overflow: hidden;
}

.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--transition-slow);
}
.team-card:hover .team-photo-wrap img {
  transform: scale(1.04);
}

.team-card-body {
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}

.team-name {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
  color: var(--color-text-heading);
}

.team-role {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-accent-dark);
  margin-bottom: 1rem;
}

.team-read-bio-btn {
  margin-top: auto;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
  background: var(--color-primary-subtle);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.team-read-bio-btn:hover {
  background-color: var(--color-primary);
  color: #ffffff;
}

/* Modal Popup Styles */
.bio-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(10, 20, 12, 0.75);
  backdrop-filter: blur(4px);
  z-index: 3000;
  padding: 1rem;
  align-items: center;
  justify-content: center;
}
.bio-modal-overlay.active {
  display: flex;
}

.bio-modal-container {
  background-color: var(--color-bg-surface);
  width: 100%;
  max-width: 740px;
  max-height: 85vh;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  animation: modalScaleUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalScaleUp {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}

.bio-modal-header {
  padding: 1.25rem 1.75rem;
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bio-modal-header-info h3 {
  color: #ffffff;
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}
.bio-modal-header-info p {
  color: var(--color-gold);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bio-modal-close {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: background-color var(--transition-fast);
}
.bio-modal-close:hover {
  background-color: var(--color-accent);
}

.bio-modal-body {
  padding: 1.75rem;
  overflow-y: auto;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--color-text-body);
}

/* --------------------------------------------------------------------------
   8. PARTNERS & CLIENTS (Text-Only, No Icons)
   -------------------------------------------------------------------------- */
.partners-tabs-nav {
  display: flex;
  gap: 0.5rem;
  border-bottom: 2px solid var(--color-border);
  margin-bottom: 2rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
}

.partner-tab-btn {
  background: transparent;
  border: none;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-muted);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.partner-tab-btn:hover {
  color: var(--color-primary);
  background-color: var(--color-primary-subtle);
}

.partner-tab-btn.active {
  color: #ffffff;
  background-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.partner-tab-pane {
  display: none;
  animation: fadeIn 0.3s ease;
}
.partner-tab-pane.active {
  display: block;
}

.partner-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.partner-item-card {
  background-color: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}
.partner-item-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.partner-item-name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text-heading);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   9. CONTACT PAGE (Horizontal Aligned Cards)
   -------------------------------------------------------------------------- */
.contact-horizontal-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

.contact-info-card {
  background-color: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform var(--transition-fast);
}
.contact-info-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.contact-info-title {
  font-size: 1.15rem;
  color: var(--color-text-heading);
  margin-bottom: 0.25rem;
}

.contact-info-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.map-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  background-color: var(--color-bg-surface);
}

.map-frame-container {
  height: 400px;
  width: 100%;
}
.map-frame-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-directions-bar {
  padding: 1.25rem 1.5rem;
  background-color: var(--color-bg-surface);
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

/* --------------------------------------------------------------------------
   10. SITE FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--color-bg-dark);
  color: var(--color-text-inverse-muted);
  padding-top: clamp(3.5rem, 5vw, 5rem);
  border-top: 4px solid var(--color-primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1.1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-col-title {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background-color: var(--color-gold) !important; /* Yellow Brand Dash */
  border-radius: var(--radius-full);
}

.footer-about p {
  color: var(--color-text-inverse-muted);
  font-size: 0.875rem;
  line-height: 1.65;
  margin-top: 0.85rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-link {
  color: var(--color-text-inverse-muted);
  font-size: 0.875rem;
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.footer-link:hover {
  color: var(--color-gold);
  transform: translateX(3px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  font-size: 0.875rem;
}
.footer-contact-item a {
  color: var(--color-text-inverse-muted);
}
.footer-contact-item a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  font-size: 0.8125rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* --------------------------------------------------------------------------
   11. RESPONSIVE BREAKPOINTS (100% Mobile Optimized)
   -------------------------------------------------------------------------- */
@media (max-width: 1180px) {
  .main-nav {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-image-card img {
    height: 300px;
  }
  .about-two-images-grid {
    grid-template-columns: 1fr;
  }
  .about-img-frame img {
    height: 240px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta-group .btn {
    width: 100%;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .slider-track {
    height: 260px;
  }
  .map-frame-container {
    height: 260px;
  }
}

/* --------------------------------------------------------------------------
   3. BESPOKE HOMEPAGE 'ABOUT US' SHOWCASE
   -------------------------------------------------------------------------- */
.about-home-section {
  position: relative;
  background-color: var(--color-bg-surface);
  padding: clamp(3.5rem, 6vw, 6rem) 0;
  border-bottom: 1px solid var(--color-border-subtle);
}

.about-home-header {
  max-width: 840px;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.about-home-header .section-eyebrow {
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.about-home-header .about-home-lead {
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  font-weight: 500;
  color: var(--color-text-heading);
  line-height: 1.55;
  margin-top: 0.75rem;
}

.about-home-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: stretch;
}

.about-story-card {
  background: var(--color-bg-muted);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-accent);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

.about-story-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-body);
  margin-bottom: 1.5rem;
}

.about-core-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
}

.about-pillar-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary-dark);
}

.about-pillar-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-accent);
  flex-shrink: 0;
}

.about-slider-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background-color: var(--color-bg-dark);
  min-height: 380px;
  display: flex;
  flex-direction: column;
}

.about-slider-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(20, 62, 17, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-slider-frame .slider-track {
  height: 100%;
  min-height: 380px;
  position: relative;
}

@media (max-width: 900px) {
  .about-home-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .about-slider-frame {
    min-height: 280px;
  }
  .about-slider-frame .slider-track {
    min-height: 280px;
    height: 280px;
  }
}


/* --------------------------------------------------------------------------
   3. MODERN 'WHO WE ARE' SECTION (DISTINCT FROM HERO)
   -------------------------------------------------------------------------- */
.who-we-are-section {
  background-color: var(--color-bg-surface);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  border-bottom: 1px solid var(--color-border-subtle);
}

.who-we-are-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4.5vw, 4rem);
  align-items: center;
}

.who-we-are-text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.who-we-are-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--color-text-heading);
  margin-bottom: 1.25rem;
  line-height: 1.2;
  position: relative;
  padding-bottom: 0.75rem;
}

.who-we-are-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 54px;
  height: 3px;
  background-color: var(--color-accent);
  border-radius: var(--radius-full);
}

.who-we-are-desc {
  font-size: clamp(1rem, 1.3vw, 1.075rem);
  line-height: 1.8;
  color: var(--color-text-body);
  margin-bottom: 2rem;
}

.who-we-are-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background-color: var(--color-bg-dark);
  aspect-ratio: 4 / 3;
  width: 100%;
}

.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
  z-index: 1;
}

.slider-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider-dots {
  position: absolute;
  bottom: 1rem;
  left: 1.25rem;
  display: flex;
  gap: 0.45rem;
  z-index: 10;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition-fast);
}

.slider-dot.active {
  background: var(--color-gold);
  width: 24px;
  border-radius: var(--radius-full);
}

.slider-controls {
  position: absolute;
  bottom: 0.85rem;
  right: 1.25rem;
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.slider-btn {
  background: rgba(20, 62, 17, 0.7);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background-color var(--transition-fast);
}

.slider-btn:hover {
  background: var(--color-accent);
}

@media (max-width: 900px) {
  .who-we-are-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .who-we-are-slider {
    aspect-ratio: 16 / 11;
  }
}


/* ==========================================================================
   HOMEPAGE 'WHO WE ARE' — 3 DESIGN OPTIONS FOR COMPARISON
   ========================================================================== */

.concept-divider-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: var(--color-primary-dark);
  color: var(--color-gold);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

/* --- OPTION A: Editorial Asymmetric Frame --- */
.concept-a-section {
  background-color: var(--color-bg-surface);
  padding: clamp(3.5rem, 5vw, 5rem) 0;
  border-bottom: 2px dashed var(--color-border);
}

.concept-a-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.concept-a-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.concept-a-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  color: var(--color-text-heading);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.concept-a-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--color-accent);
  border-radius: var(--radius-full);
}

.concept-a-desc {
  font-size: clamp(1.025rem, 1.25vw, 1.1rem);
  line-height: 1.8;
  color: var(--color-text-body);
  margin-bottom: 2rem;
}

.concept-a-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  background-color: var(--color-bg-dark);
}

/* --- OPTION B: Panoramic Showcase with Floating Narrative Card --- */
.concept-b-section {
  background-color: var(--color-bg-muted);
  padding: clamp(3.5rem, 5vw, 5rem) 0;
  border-bottom: 2px dashed var(--color-border);
}

.concept-b-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background-color: var(--color-bg-dark);
  min-height: 520px;
}

.concept-b-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.concept-b-slider .slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.concept-b-floating-card {
  position: relative;
  z-index: 10;
  max-width: 540px;
  margin: clamp(2rem, 4vw, 3.5rem);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-lg);
}

.concept-b-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  color: var(--color-text-heading);
  margin-bottom: 1rem;
}

.concept-b-desc {
  font-size: 0.975rem;
  line-height: 1.75;
  color: var(--color-text-body);
  margin-bottom: 1.5rem;
}

/* --- OPTION C: Wide Top Headline with Cinema Panoramic Slider --- */
.concept-c-section {
  background-color: var(--color-bg-surface);
  padding: clamp(3.5rem, 5vw, 5rem) 0;
  border-bottom: 1px solid var(--color-border);
}

.concept-c-header-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(1.5rem, 3.5vw, 3.5rem);
  align-items: center;
  margin-bottom: 2.5rem;
}

.concept-c-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--color-text-heading);
  line-height: 1.15;
}

.concept-c-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-body);
  margin-bottom: 1.25rem;
}

.concept-c-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
  max-height: 480px;
  background-color: var(--color-bg-dark);
}

@media (max-width: 900px) {
  .concept-a-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .concept-a-slider {
    aspect-ratio: 16 / 11;
  }
  .concept-b-wrapper {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }
  .concept-b-slider {
    position: relative;
    height: 280px;
  }
  .concept-b-floating-card {
    margin: 1rem;
    max-width: 100%;
  }
  .concept-c-header-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .concept-c-slider {
    aspect-ratio: 16 / 10;
  }
}


/* ==========================================================================
   SELECTED 'WHO WE ARE' SECTION — OPTION 2 (TEXT ABOVE PANORAMIC SLIDER)
   ========================================================================== */
.who-we-are-opt2-section {
  background-color: var(--color-bg-surface);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  border-bottom: 1px solid var(--color-border-subtle);
}

.who-we-are-opt2-header {
  max-width: 900px;
  margin-bottom: clamp(2rem, 3.5vw, 3rem);
}

.who-we-are-opt2-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  color: var(--color-text-heading);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}



.who-we-are-opt2-desc {
  font-size: clamp(1.025rem, 1.3vw, 1.125rem);
  line-height: 1.8;
  color: var(--color-text-body);
  margin-bottom: 1.75rem;
}

.who-we-are-opt2-panoramic-slider {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background-color: var(--color-bg-dark);
  aspect-ratio: 16 / 9;
  max-height: 540px;
  width: 100%;
}

.who-we-are-opt2-panoramic-slider .slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.who-we-are-opt2-panoramic-slider .slider-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  pointer-events: none;
  z-index: 1;
}

.who-we-are-opt2-panoramic-slider .slider-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.who-we-are-opt2-panoramic-slider .slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .who-we-are-opt2-panoramic-slider {
    aspect-ratio: 16 / 10;
    max-height: 360px;
  }
}


/* --------------------------------------------------------------------------
   NAVBAR DROPDOWN STYLING (LEADERSHIP UNDER ABOUT US)
   -------------------------------------------------------------------------- */
.nav-dropdown-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-wrap .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.dropdown-chevron {
  transition: transform var(--transition-fast);
}

.nav-dropdown-wrap:hover .dropdown-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
  z-index: 1000;
}

.nav-dropdown-wrap:hover .nav-dropdown-menu,
.nav-dropdown-wrap:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 0.65rem 1.25rem;
  color: var(--color-text-heading);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.nav-dropdown-item:hover,
.nav-dropdown-item.active {
  background-color: var(--color-primary-subtle);
  color: var(--color-primary);
}






/* ==========================================================================
   SERVICES PAGE — 3 DISTINCT REDESIGN CONCEPTS FOR USER COMPARISON
   ========================================================================== */

/* --- SERVICES OPTION 1: Alternating Large-Format Editorial Spreads --- */
.services-opt1-list {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 4vw, 4rem);
}

.services-opt1-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  background-color: var(--color-bg-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  padding: clamp(1.25rem, 2.5vw, 2rem);
}

.services-opt1-item.reverse {
  grid-template-columns: 1fr 1fr;
}
.services-opt1-item.reverse .services-opt1-media {
  order: 2;
}
.services-opt1-item.reverse .services-opt1-content {
  order: 1;
}

.services-opt1-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 16 / 11;
  background-color: var(--color-bg-dark);
}

.services-opt1-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.services-opt1-item:hover .services-opt1-media img {
  transform: scale(1.03);
}

.services-opt1-content {
  padding: clamp(1rem, 2vw, 1.5rem);
}

.services-opt1-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  color: var(--color-text-heading);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.services-opt1-text {
  font-size: 1.025rem;
  line-height: 1.75;
  color: var(--color-text-body);
}

/* --- SERVICES OPTION 2: Interactive Filterable / Master-Stage Showcase --- */
.services-opt2-showcase {
  background: var(--color-bg-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.services-opt2-nav-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.services-opt2-pill-btn {
  background: var(--color-bg-muted);
  border: 1px solid var(--color-border);
  color: var(--color-text-body);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.65rem 1.15rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.services-opt2-pill-btn:hover,
.services-opt2-pill-btn.active {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(56, 125, 45, 0.25);
}

.services-opt2-pane {
  display: none;
  animation: fadeIn 0.4s ease;
}
.services-opt2-pane.active {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.services-opt2-stage-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 10;
}
.services-opt2-stage-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- SERVICES OPTION 3: 2-Column Broad Asymmetric Editorial Cards --- */
.services-opt3-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.75rem, 3vw, 2.5rem);
}

.services-opt3-card {
  background: var(--color-bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}
.services-opt3-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.services-opt3-media {
  height: 240px;
  width: 100%;
  overflow: hidden;
  background-color: var(--color-bg-dark);
}
.services-opt3-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.services-opt3-card:hover .services-opt3-media img {
  transform: scale(1.05);
}

.services-opt3-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.services-opt3-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--color-text-heading);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.services-opt3-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-body);
}

@media (max-width: 900px) {
  .services-opt1-item,
  .services-opt1-item.reverse {
    grid-template-columns: 1fr;
  }
  .services-opt1-item.reverse .services-opt1-media {
    order: 1;
  }
  .services-opt1-item.reverse .services-opt1-content {
    order: 2;
  }
  .services-opt2-pane.active {
    grid-template-columns: 1fr;
  }
  .services-opt3-grid {
    grid-template-columns: 1fr;
  }
}


/* Brand Logo & Name Typography */
.brand-name-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 800;
  color: #1e2920 !important; /* Soft deep charcoal slate - easy on the eyes */
  letter-spacing: 0.03em;
  line-height: 1.1;
}

.brand-subtitle {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4a554d !important; /* Soft muted charcoal */
  font-weight: 700;
}

/* Mobile Hero Buttons Sizing */
@media (max-width: 640px) {
  .hero-cta-group {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }
  .hero-cta-group .btn {
    width: 100%;
    padding: 0.75rem 1.25rem !important;
    font-size: 0.925rem !important;
    min-height: 44px !important;
  }
}


/* Footer Branding & Yellow Accents */
.site-footer {
  background-color: var(--color-bg-dark);
  color: var(--color-text-inverse);
  padding-top: clamp(3.5rem, 5vw, 5rem);
  border-top: 3px solid var(--color-gold);
}

.site-footer .brand-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 800;
  color: #1e2920 !important; /* Soft deep charcoal slate - easy on the eyes */
  letter-spacing: 0.03em;
  line-height: 1.1;
}

.site-footer .brand-subtitle {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4a554d !important; /* Soft muted charcoal */
  font-weight: 700;
}

.footer-link:hover {
  color: var(--color-gold);
  transform: translateX(3px);
}

.footer-links li a span,
.footer-link::before {
  color: var(--color-gold);
}

.footer-contact-item svg {
  fill: var(--color-gold) !important;
  flex-shrink: 0;
}

.mobile-drawer-header .brand-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 800;
  color: #1e2920 !important; /* Soft deep charcoal slate - easy on the eyes */
  letter-spacing: 0.03em;
  line-height: 1.1;
}

.mobile-drawer-header .brand-subtitle {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4a554d !important; /* Soft muted charcoal */
  font-weight: 700;
}


/* High-Visibility Footer Brand Typography */
.site-footer .brand-logo-wrap {
  display: flex !important;
  align-items: center !important;
  gap: 0.85rem !important;
  text-decoration: none !important;
}

.site-footer .brand-name-wrap {
  display: flex !important;
  flex-direction: column !important;
}

.site-footer .brand-title,
.site-footer a .brand-title {
  color: #ffffff !important; /* Pure White on Dark Footer */
  font-family: var(--font-serif) !important;
  font-size: 1.35rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  line-height: 1.1 !important;
  display: block !important;
}

.site-footer .brand-subtitle,
.site-footer a .brand-subtitle {
  color: var(--color-gold) !important; /* Brand Yellow/Gold on Dark Footer */
  font-family: var(--font-sans) !important;
  font-size: 0.65rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.09em !important;
  font-weight: 800 !important;
  display: block !important;
}
