/* ============================================================
   Eugene Coal Kwame Gbedemah — Website Stylesheet
   Font: Cormorant Garamond (display) + Jost (body)
   Palette: Deep Charcoal, Warm Ivory, Gold Accent
   ============================================================ */

:root {
  --dark: #243649;
  --dark-2: #222220;
  --dark-3: #2e2e2b;
  --mid: #4a4a46;
  --muted: #8a8a84;
  --ivory: #f5f2ec;
  --ivory-2: #ede8df;
  --white: #ffffff;
  --gold: #b8963e;
  --gold-light: #d4af60;
  --gold-pale: #f0e4c4;
  --accent: #7a3b1e;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', system-ui, sans-serif;

  --radius: 2px;
  --radius-lg: 4px;
  --shadow: 0 4px 24px rgba(26,26,24,0.10);
  --shadow-lg: 0 12px 48px rgba(26,26,24,0.16);
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── BASE ── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--dark);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

img { max-width: 100%; height: auto; display: block; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
}

em { font-style: italic; color: var(--gold); }

/* ── TOPBAR ── */
.topbar {
  background: var(--dark);
  color: var(--muted);
  font-size: 0.75rem;
  font-family: var(--font-body);
  letter-spacing: 0.04em;
  padding: 9px 0;
  border-bottom: 1px solid rgba(184,150,62,0.15);
}
.topbar a {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.topbar a:hover { color: var(--gold-light); }
.topbar .nav-label {
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── NAVBAR ── */
.main-nav {
  background: var(--dark);
  padding: 0;
  border-bottom: 1px solid rgba(184,150,62,0.18);
  transition: box-shadow var(--transition);
  z-index: 1000;
}
.main-nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.3); }

.navbar-brand.brand-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  padding: 14px 0;
  max-width: 70%;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}
.brand-sub {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-link {
  color: rgba(255,255,255,0.8) !important;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 1.5rem 0.75rem !important;
  transition: color var(--transition) !important;
}
.nav-link:hover { color: var(--gold-light) !important; }

.dropdown-menu {
  background: var(--dark-2);
  border: 1px solid rgba(184,150,62,0.2);
  border-radius: var(--radius);
  min-width: 220px;
  padding: 0.5rem 0;
  box-shadow: var(--shadow-lg);
}
.dropdown-item {
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 0.6rem 1.25rem;
  transition: all var(--transition);
}
.dropdown-item:hover {
  background: rgba(184,150,62,0.12);
  color: var(--gold-light);
}

.navbar-toggler {
  border-color: rgba(184,150,62,0.4);
  padding: 6px 10px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(184,150,62,0.9)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ── BUTTONS ── */
.btn-primary-custom {
  background: var(--gold);
  color: var(--dark) !important;
  border: 2px solid var(--gold);
  padding: 10px 26px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-body);
  border-radius: var(--radius);
  transition: all var(--transition);
  display: inline-block;
}
.btn-primary-custom:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184,150,62,0.35);
}

.btn-outline-custom {
  background: transparent;
  color: var(--white) !important;
  border: 2px solid rgba(255,255,255,0.4);
  padding: 10px 26px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-body);
  border-radius: var(--radius);
  transition: all var(--transition);
  display: inline-block;
}
.btn-outline-custom:hover {
  border-color: var(--gold);
  color: var(--gold) !important;
}

.btn-outline-light {
  background: transparent;
  color: var(--white) !important;
  border: 2px solid rgba(255,255,255,0.5);
  padding: 10px 26px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-body);
  border-radius: var(--radius);
  transition: all var(--transition);
  display: inline-block;
}
.btn-outline-light:hover {
  border-color: var(--gold-light);
  color: var(--gold-light) !important;
}

.btn-lg-custom { padding: 13px 34px; font-size: 0.82rem; }

/* ── SECTION UTILITIES ── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.15;
}
.section-link {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition), color var(--transition);
}
.section-link:hover { gap: 10px; color: var(--gold-light); }

/* ── HERO ── */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #243649d4; /* Dark overlay for text readability */
  z-index: 1;
}

.container-xl.position-relative {
  position: relative;
  z-index: 2;
}

/* Adjust text colors if needed for video background */
.hero-section .hero-title,
.hero-section .hero-desc,
.hero-section .hero-eyebrow {
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  
}.min-vh-hero {
  min-height: calc(100vh - 120px);
  padding: 25px 0 0px;
}
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-title em { color: var(--gold-light); }
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}
.hero-desc strong { color: rgba(255,255,255,0.95); font-weight: 500; }

.hero-portrait-placeholder {
  /*width: 360px;
  height: 440px;*/
  background: linear-gradient(160deg, rgba(184,150,62,0.15) 0%, rgba(184,150,62,0.04) 100%);
  border: 1px solid rgba(184,150,62,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(184,150,62,0.3);
  font-size: 8rem;
}
.hero-portrait-placeholder.small {
  width: 260px;
  height: 320px;
  font-size: 6rem;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 8px auto 0;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.8); }
}

/* ── PILLARS ── */
.pillars-section {
  background: var(--ivory);
  padding: 100px 0;
}
.pillars-row {
  gap: 0;
  border: 1px solid var(--ivory-2);
}
.pillar-item {
  border-right: 1px solid var(--ivory-2);
}
.pillar-item:last-child { border-right: none; }
.pillar-inner { height: 100%; }

.pillar-img {
  height: 240px;
  background: var(--dark-3);
  position: relative;
  overflow: hidden;
}
.pillar-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(26,26,24,0.5));
}
.pillar-img-1 {
  background: linear-gradient(135deg, #2c2416 0%, #4a3520 50%, #6b4e30 100%);
}
.pillar-img-2 {
  background: linear-gradient(135deg, #1a2835 0%, #243545 50%, #2e4560 100%);
}
.pillar-img-3 {
  background: linear-gradient(135deg, #1f2a1a 0%, #2e3f28 50%, #3d5535 100%);
}
.pillar-content {
  padding: 2rem;
  background: var(--white);
}
.pillar-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--dark);
}
.pillar-content p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.75;
  margin: 0;
}

/* ── SERVICES ── */
.services-section {
/*  background: var(--dark);*/
  background-image: url(../img/pattern.png);
  padding: 100px 0;
}
.services-section .section-title { color: var(--white); }
.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,150,62,0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  background: rgba(184,150,62,0.07);
  border-color: rgba(184,150,62,0.35);
  transform: translateY(-3px);
}
.service-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.service-card h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}
.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 auto 0;
}
.service-list li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  padding: 5px 0 5px 16px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 1px;
  background: var(--gold);
  transform: translateY(-50%);
}
.service-badge {
  display: inline-block;
  background: rgba(184,150,62,0.2);
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  margin: 1rem 0;
  font-weight: 600;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-top: 1.25rem;
  transition: gap var(--transition), color var(--transition);
}
.service-link:hover { gap: 10px; color: var(--gold-light); }

/* ── PROCESS ── */
.process-section {
  background: var(--ivory-2);
  padding: 100px 0;
}
.process-card {
  background: var(--white);
  border: 1px solid var(--ivory-2);
  border-top: 3px solid var(--gold);
  padding: 2.5rem 2rem;
  height: 100%;
  transition: box-shadow var(--transition);
}
.process-card:hover { box-shadow: var(--shadow-lg); }
.process-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.process-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--dark);
}
.process-card p { font-size: 0.88rem; color: var(--mid); line-height: 1.75; }
.process-meta {
  display: flex;
  flex-direction: column;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--ivory-2);
  gap: 2px;
}
.process-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 600;
}
.process-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
}

/* ── BLOG ── */
.blog-section {
  background: var(--ivory);
  padding: 100px 0;
}
.blog-card-link { display: block; color: inherit; }
.blog-card-link:hover .blog-card { border-color: var(--gold); transform: translateY(-3px); }
.blog-card {
  background: var(--white);
  border: 1px solid var(--ivory-2);
  padding: 2rem;
  height: 100%;
  transition: all var(--transition);
}
.blog-date {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.blog-card h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.blog-card p { font-size: 0.85rem; color: var(--mid); line-height: 1.75; margin: 0; }

/* ── TESTIMONIALS ── */
.testimonials-section {
  background: var(--dark-2);
  background-image: url(../img/pattern2.png);
  padding: 100px 0;
}
.testimonials-section .section-title { color: var(--white); }
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,150,62,0.2);
  padding: 3rem;
  border-radius: var(--radius-lg);
}
.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 4px; }
.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin: 0 0 1.5rem 0;
  border: none;
  padding: 0;
  quotes: "\201C" "\201D";
}
.testimonial-card cite {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  font-style: normal;
}
.carousel-ctrl-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(184,150,62,0.3);
  color: var(--gold);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
}
.carousel-ctrl-btn:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ── CTA ── */
.cta-section {
  background-image: url("hero bg2.jpg");
  padding: 40px 0 0px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(184,150,62,0.2);
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 20% 50%, rgba(184,150,62,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.cta-sub {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  max-width: 560px;
}
.cta-sub strong { color: var(--white); font-weight: 500; }

/* ── FOOTER ── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 0;
  border-top: 1px solid rgba(184,150,62,0.18);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.footer-brand .brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
}
.footer-brand .brand-sub {
  font-size: 0.68rem;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0;
}
.footer-contact p { font-size: 0.82rem; margin-bottom: 4px; }
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--gold-light); }
.footer-heading {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 2rem;
  font-size: 0.78rem;
  color: var(--muted);
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ── PAGE HERO (Inner Pages) ── */
.page-hero {
  background: var(--dark);
  padding: 100px 0 70px;
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(184,150,62,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
}
.page-hero p.lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
}

/* ── INNER PAGE CONTENT ── */
.inner-content {
  padding: 80px 0;
  background: var(--ivory);
}
.content-card {
  background: var(--white);
  border: 1px solid var(--ivory-2);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition);
}
.content-card:hover { box-shadow: var(--shadow); }

/* Book Cards */
.book-card {
  background: var(--white);
  border: 1px solid var(--ivory-2);
  border-top: 3px solid var(--gold);
  padding: 2rem;
  height: 100%;
  transition: all var(--transition);
}
.book-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.book-cover-placeholder {
/*  height: 200px;*/
/*  background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark) 100%);*/
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 3rem;
  margin-bottom: 1.25rem;
  border-radius: var(--radius);
}
.book-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.75rem;
}
.book-card p { font-size: 0.85rem; color: var(--mid); line-height: 1.7; }

/* Speaking Topics */
.topic-chip {
  display: inline-block;
  background: var(--ivory-2);
  color: var(--dark);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 100px;
  margin: 4px;
  border: 1px solid var(--ivory-2);
  transition: all var(--transition);
}
.topic-chip:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
  color: var(--accent);
}

/* Gallery Grid */
.gallery-item {
  height: 220px;
  background: var(--dark-3);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(184,150,62,0.4);
  transition: all var(--transition);
}
.gallery-item:hover .gallery-item-inner {
  color: rgba(184,150,62,0.7);
  transform: scale(1.05);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
}

/* Courses */
.course-card {
  background: var(--white);
  border: 1px solid var(--ivory-2);
  padding: 2rem;
  height: 100%;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.course-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.course-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.course-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.course-card h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--dark);
}
.course-card p { font-size: 0.85rem; color: var(--mid); line-height: 1.75; }

/* Contact Form */
.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid var(--ivory-2);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: var(--ivory);
  color: var(--dark);
  transition: border-color var(--transition);
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,150,62,0.12);
  background: var(--white);
}
.contact-form label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--mid);
  margin-bottom: 6px;
}

/* ── RESPONSIVE ── */
@media (max-width: 991.98px) {
  .main-nav .navbar-collapse {
    background: var(--dark-2);
    padding: 1rem;
    border-top: 1px solid rgba(184,150,62,0.15);
  }
  .nav-link { padding: 0.75rem 0.5rem !important; }
  .hero-section .min-vh-hero { min-height: 80vh; padding: 20px 0 0px; }
}
@media (max-width: 767.98px) {
  .pillars-row .pillar-item { border-right: none; border-bottom: 1px solid var(--ivory-2); }
  .pillars-row .pillar-item:last-child { border-bottom: none; }
  .hero-title { font-size: 2.4rem; }
  .section-title { font-size: 2rem; }
  .cta-title { font-size: 2rem; }
  .testimonial-card { padding: 2rem 1.5rem; }
  .process-card { padding: 1.75rem 1.5rem; }
}

.foot{
  justify-items: center;
}

@media (max-width: 767.98px) {
  .foot{justify-items: normal;}
}