:root {
  --dark: #273032;
  --charcoal: #3B4446;
  --gold: #DEB762;
  --cream: #F7F5EF;
  --white: #fff;
  --muted: #6f7779;
  --shadow: 0 20px 50px rgba(39, 48, 50, .12);
}

/* =========================
   Base
========================= */
* {
  box-sizing: border-box;
}

body {
  font-family: Lato, Arial, sans-serif;
  color: var(--dark);
  background: #fff;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: -.02em;
}

h3 {
  font-weight: 800;
}

/* =========================
   Navbar
========================= */
.site-navbar {
  background: rgba(39, 48, 50, .96);
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .12);
  padding: 10px 0;
}

.navbar-brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: #fff;
  border-radius: 4px;
}

.brand-copy {
  line-height: 1;
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
}

.brand-copy small {
  display: block;
  font-family: Lato, sans-serif;
  font-size: .62rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(247, 245, 239, .7);
  margin-top: .2rem;
}

.navbar .nav-link {
  color: rgba(255, 255, 255, .82);
  font-size: .92rem;
  font-weight: 700;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--gold);
}

.navbar-toggler {
  border-color: rgba(222, 183, 98, .55);
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* =========================
   Buttons
========================= */
.btn {
  font-weight: 800;
  border-radius: 999px;
  padding: .85rem 1.25rem;
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border: 1px solid var(--gold);
}

.btn-gold:hover {
  background: #fff;
  color: var(--dark);
  border-color: #fff;
}

.btn-dark-efs {
  background: var(--dark);
  color: #fff;
  border: 1px solid var(--dark);
}

.btn-dark-efs:hover {
  background: var(--charcoal);
  color: #fff;
}

.btn-outline-light-efs {
  border: 1px solid rgba(255, 255, 255, .8);
  color: #fff;
}

.btn-outline-light-efs:hover {
  background: #fff;
  color: var(--dark);
}

.btn-outline-dark-efs {
  border: 1px solid var(--dark);
  color: var(--dark);
}

.btn-outline-dark-efs:hover {
  background: var(--dark);
  color: #fff;
}

/* =========================
   Hero
========================= */
.hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  position: relative;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(39, 48, 50, .92), rgba(39, 48, 50, .76)),
    url("https://images.unsplash.com/photo-1560520653-9e0e4c89eb11?q=85&w=1800&h=1100&fit=crop") center / cover no-repeat;
}

.hero .container {
  position: relative;
  z-index: 2;
  max-width: 1120px;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: .95;
  max-width: 900px;
}

.hero p {
  max-width: 680px;
  color: rgba(247, 245, 239, .86);
  font-size: 1.2rem;
  line-height: 1.7;
}

/* Hero video background */
.hero-video {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(39, 48, 50, .94), rgba(39, 48, 50, .76)),
    radial-gradient(circle at 15% 30%, rgba(222, 183, 98, .18), transparent 28%);
}

.hero-video .container {
  position: relative;
  z-index: 2;
}

/* =========================
   Shared Section Styles
========================= */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: var(--gold);
}

.section {
  padding: 96px 0;
}

.bg-cream {
  background: var(--cream);
}

.section-dark {
  background: var(--dark);
  color: #fff;
}

.section-title {
  font-size: clamp(2.4rem, 4.6vw, 4rem);
  line-height: 1.06;
  margin-bottom: 1rem;
}

.section-copy {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 680px;
}

.text-cream {
  color: rgba(247, 245, 239, .8) !important;
}

/* =========================
   Stats
========================= */
.stats-section {
  padding: 0 0 70px;
}

.stats-section .container {
  position: relative;
  margin-top: -58px;
  z-index: 5;
}

.stat-card {
  background: #fff;
  border-radius: 18px;
  padding: 34px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(39, 48, 50, .06);
  height: 100%;
}

.stat-card .number {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3.1rem;
  line-height: 1;
  color: var(--dark);
  font-weight: 700;
}

.stat-card .label {
  font-size: .9rem;
  line-height: 1.45;
  color: var(--charcoal);
  font-weight: 800;
  margin-top: .65rem;
}

/* =========================
   Image Frame / Mission Card
========================= */
.image-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  min-height: 480px;
  object-fit: cover;
  display: block;
}

.floating-note {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  background: rgba(39, 48, 50, .94);
  color: #fff;
  border-left: 4px solid var(--gold);
  padding: 22px;
  border-radius: 16px;
}

.floating-note h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
}

.floating-note p {
  color: rgba(247, 245, 239, .83);
  margin: 0;
}

/* =========================
   Lists
========================= */
.check-list {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0;
}

.check-list li {
  margin: .78rem 0;
  font-weight: 700;
}

.check-list li::before {
  content: "\F26E";
  font-family: "bootstrap-icons";
  color: var(--gold);
  margin-right: .65rem;
}

.mini-list {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.7;
  margin: 1rem 0 1.2rem;
}

/* =========================
   Cards
========================= */
.card-efs,
.content-block,
.testimonial-card,
.blog-card,
.audience-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(39, 48, 50, .07);
}

.card-efs,
.content-block,
.testimonial-card,
.audience-card {
  padding: 34px;
}

/* Service cards */
.service-card {
  transition: .25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(39, 48, 50, .16);
}

.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(222, 183, 98, .16);
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: 1.3rem;
}

.text-muted-efs {
  color: var(--muted);
  line-height: 1.65;
}

.card-link {
  color: var(--gold);
  font-weight: 900;
  text-decoration: none;
}

.card-link:hover {
  color: var(--dark);
}

/* Audience cards */
.audience-card {
  height: 100%;
  background: var(--cream);
  border-left: 4px solid var(--gold);
}

.audience-card i {
  color: var(--gold);
  font-size: 2rem;
}

/* Process cards */
.process-card {
  height: 100%;
  background: var(--charcoal);
  color: #fff;
  border: 1px solid rgba(222, 183, 98, .25);
  border-radius: 18px;
  padding: 30px;
}

.process-card.light {
  background: #fff;
  color: var(--dark);
}

.process-card span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.3rem;
  color: var(--gold);
  font-weight: 700;
}

.process-card p {
  color: rgba(247, 245, 239, .78);
}

.process-card.light p {
  color: var(--muted);
}

/* Testimonials */
.testimonial-card {
  height: 100%;
  padding: 34px;
}

.quote-mark {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--gold);
  font-size: 4rem;
  line-height: .65;
}

.testimonial-card p,
blockquote {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--charcoal);
}

.testimonial-card small,
.testimonial-meta span {
  display: block;
  color: var(--muted);
  margin-top: .35rem;
}

/* Blog cards */
.blog-card {
  overflow: hidden;
  height: 100%;
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.tag {
  font-size: .72rem;
  letter-spacing: .18em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 900;
}

/* =========================
   Page Hero
========================= */
.page-hero {
  color: #fff;
  padding: 130px 0 90px;
  background:
    linear-gradient(90deg, rgba(39, 48, 50, .96), rgba(59, 68, 70, .86)),
     url("https://images.unsplash.com/photo-1554224154-26032ffc0d07?q=85&w=1800&h=800&fit=crop") center / cover no-repeat;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 1;
  max-width: 940px;
}

.page-hero p {
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 760px;
  color: rgba(247, 245, 239, .82);
}

/* =========================
   Gallery
========================= */
.gallery-section {
  overflow: hidden;
}

.gallery-marquee {
  width: 100%;
  overflow: hidden;
  padding-bottom: 10px;
}

.gallery-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: galleryScroll 38s linear infinite;
}

.gallery-track:hover {
  animation-play-state: paused;
}

.gallery-track img {
  width: 360px;
  height: 250px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 4px solid #fff;
}

@keyframes galleryScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* =========================
   CTA
========================= */
.cta-section {
  background: var(--gold);
  padding: 82px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.08;
  max-width: 920px;
  margin: 0 auto 1rem;
}

.cta-section p {
  font-size: 1.1rem;
  max-width: 690px;
  margin: 0 auto 1.6rem;
}

/* =========================
   Timeline / Forms
========================= */
.timeline > div {
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin-bottom: 28px;
}

.timeline span {
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  font-weight: 900;
  margin-left: -42px;
  margin-right: 10px;
}

.form-control,
.form-select {
  border-radius: 12px;
  padding: .85rem 1rem;
}

/* =========================
   Footer
========================= */
.site-footer {
  background: var(--dark);
  color: rgba(247, 245, 239, .78);
}

.footer-logo {
  width: 140px;
  background: #fff;
  border-radius: 6px;
}

.site-footer h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: #fff;
  font-size: 1.7rem;
}

.site-footer a {
  color: rgba(247, 245, 239, .78);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: .75rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(222, 183, 98, .35);
  color: var(--gold);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--dark);
}

.footer-bottom {
  border-top: 1px solid rgba(222, 183, 98, .28);
  background: #222b2d;
}

.legal-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.disclaimer {
  font-size: .82rem;
  color: rgba(247, 245, 239, .55);
  max-width: 900px;
}

/* =========================
   Modal / Calendly
========================= */
.calendly-frame {
  width: 100%;
  height: 720px;
  border: 0;
}

.modal-content {
  background: var(--dark);
}

/* =========================
   Reveal Animation
========================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   Responsive
========================= */
@media (max-width: 991px) {
  .brand-copy {
    font-size: 1.1rem;
  }

  .site-navbar .navbar-collapse {
    padding: 1rem 0;
  }

  .hero {
    min-height: 650px;
  }

  .stats-section .container {
    margin-top: 0;
    padding-top: 50px;
  }

  .section {
    padding: 72px 0;
  }

  .image-frame img {
    min-height: 360px;
  }

  .floating-note {
    position: static;
    border-radius: 0;
  }

  .navbar-brand img {
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 767px) {
  .gallery-track {
    gap: 16px;
    animation-duration: 32s;
  }

  .gallery-track img {
    width: 280px;
    height: 200px;
  }
}

@media (max-width: 575px) {
  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1.02rem;
  }

  .brand-copy small {
    display: none;
  }

  .navbar-brand img {
    width: 48px;
    height: 48px;
  }

  .section-title {
    font-size: 2.4rem;
  }

  .page-hero {
    padding: 100px 0 70px;
  }

  .stat-card .number {
    font-size: 2.5rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-logo {
    width: 120px;
  }
}
