/* =====================================================================
   OLIGATI GROUP — Stylesheet
   Palette:  Navy #0B1F3A · Gold #C89A3D / #D19729 · Pale Gold #FCE496
             Platinum #E5E4E2 · White #FFFFFF · Light Grey #F6F7F9
             Charcoal text #333333
   Type:     Playfair Display (headings) · Inter (body)
   Motif:    Rotated-square "diamond" drawn from the logo mark, used as
             icon frames, step markers, dividers and card corners.
   ===================================================================== */

:root{
  --ink-deep: #0B1F3A;
  --ink-deep-rgb: 11,31,58;
  --gold: #C89A3D;
  --gold-deep: #D19729;
  --gold-pale: #FCE496;
  --platinum: #E5E4E2;
  --white: #FFFFFF;
  --light-grey: #F6F7F9;
  --charcoal: #333333;
  --success: #2E7D32;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container-pad: 1.5rem;
}

*{ box-sizing:border-box; }

html{ scroll-behavior:smooth; }

body{
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6{
  font-family: var(--font-display);
  color: var(--ink-deep);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

h2{ font-size: clamp(1.8rem, 3vw, 2.5rem); }
h4{ font-size: 1.2rem; }

p{ margin: 0; }

a{ color: inherit; text-decoration: none; }

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

section{ padding: 100px 0; position: relative; }

.section-alt{ background: var(--light-grey); }

.section-dark{
  background: var(--ink-deep);
  color: rgba(255,255,255,.85);
}

/* =========================================================
   MOTION — respects reduced-motion preference
   ========================================================= */
.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .reveal{ opacity:1; transform:none; transition:none; }
}

/* =========================================================
   EYEBROW / SECTION HEAD
   ========================================================= */
.eyebrow{
  display:flex;
  align-items:center;
  gap:10px;
  font-family: var(--font-body);
  font-weight:700;
  font-size:.78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.eyebrow::before{
  content:'';
  width: 28px; height: 2px;
  background: var(--gold-deep);
  display:inline-block;
}

.section-head{ max-width: 680px; margin-bottom: 56px; }
.section-head h2{ margin-bottom: 12px; }
.section-head p{ color:#5b5b5b; font-size:1.02rem; }

/* =========================================================
   DIAMOND MOTIF
   Content stays upright; the frame rotates via ::before so
   both SVG icons and plain step numbers work inside it.
   ========================================================= */
.diamond{
  position: relative;
  width: 58px; height: 58px;
  margin: 0 auto 22px;
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--gold-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}
.diamond::before{
  content:'';
  position:absolute;
  inset:0;
  border: 1.5px solid var(--gold);
  transform: rotate(45deg);
  background: linear-gradient(135deg, rgba(200,154,61,.10), rgba(200,154,61,0));
  transition: transform .35s ease, background .35s ease;
}
.diamond svg{
  position:relative;
  z-index:1;
  width: 24px; height: 24px;
  stroke: var(--gold-deep);
}
.diamond-lg{
  position:absolute;
  top: -34px; right: 6%;
  width: 90px; height: 90px;
  border: 1.5px solid rgba(255,255,255,.25);
  transform: rotate(45deg);
  opacity:.8;
}
.diamond-divider{
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  display:inline-block;
  flex-shrink:0;
}
.diamond-divider-row{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 14px;
  margin: 28px 0;
}
.diamond-divider-row .line{
  width: 60px; height: 1px;
  background: rgba(255,255,255,.3);
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn-gold, .btn-outline-cream, .btn-dark-outline{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-family: var(--font-body);
  font-weight:700;
  font-size:.82rem;
  letter-spacing:1px;
  text-transform:uppercase;
  padding: 15px 30px;
  border: 1.5px solid transparent;
  border-radius: 0;
  cursor:pointer;
  transition: all .3s ease;
  white-space: nowrap;
}
.btn-gold{
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  color: var(--ink-deep);
  border-color: var(--gold-deep);
}
.btn-gold:hover{
  background: transparent;
  color: var(--gold-pale);
  border-color: var(--gold-pale);
}
.section-dark .btn-gold:hover,
.final-cta .btn-gold:hover,
.careers-band .btn-gold:hover{
  color: var(--gold-pale);
  border-color: var(--gold-pale);
}
.btn-outline-cream{
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.55);
}
.btn-outline-cream:hover{
  background: rgba(255,255,255,.12);
  border-color: #fff;
}
.btn-dark-outline{
  background: transparent;
  color: var(--ink-deep);
  border-color: var(--ink-deep);
}
.btn-dark-outline:hover{
  background: var(--ink-deep);
  color: var(--gold-pale);
}

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar-oligati{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 1000;
  padding: 22px 0;
  background: linear-gradient(180deg, rgba(11,31,58,.75), rgba(11,31,58,0));
  transition: all .35s ease;
}
.navbar-oligati.is-scrolled{
  background: rgba(255,255,255,.97);
  box-shadow: 0 4px 24px rgba(11,31,58,.08);
  padding: 12px 0;
  backdrop-filter: blur(6px);
}
/* Force the brand hard to the left edge of the container and the nav
   group hard to the right, with a guaranteed gutter between them so
   the wordmark can never collide with the language pill or nav links. */
.navbar-oligati > .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:nowrap;
  gap: 24px;
}
.navbar-brand{
  display:flex;
  align-items:center;
  gap:12px;
  flex-shrink:0;
  margin-right:0;
}
.navbar-brand img{ height: 40px; width:auto; flex-shrink:0; }
.brand-word{
  font-family: var(--font-display);
  font-weight:700;
  font-size: 1.15rem;
  letter-spacing:.5px;
  color:#fff;
  display:flex;
  flex-direction:column;
  line-height:1.15;
  white-space:nowrap;
  transition: color .35s ease;
}
.brand-word small{
  font-family: var(--font-body);
  font-weight:600;
  font-size:.6rem;
  letter-spacing:2px;
  color: var(--gold-pale);
  text-transform:uppercase;
  white-space:nowrap;
}
.navbar-oligati.is-scrolled .brand-word{ color: var(--ink-deep); }
.navbar-collapse{
  flex-grow:0;
}
.navbar-nav{
  flex-wrap: wrap;
  justify-content:flex-end;
}

.navbar-oligati .nav-link{
  color: rgba(255,255,255,.85);
  font-weight:600;
  font-size:.88rem;
  letter-spacing:.3px;
  padding: 8px 14px !important;
  position:relative;
  transition: color .3s ease;
}
.navbar-oligati.is-scrolled .nav-link{ color: rgba(11,31,58,.8); }
.navbar-oligati .nav-link::after{
  content:'';
  position:absolute;
  left:14px; right:14px; bottom:2px;
  height:2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.navbar-oligati .nav-link:hover,
.navbar-oligati .nav-link.active{ color: var(--gold-pale); }
.navbar-oligati.is-scrolled .nav-link:hover,
.navbar-oligati.is-scrolled .nav-link.active{ color: var(--gold-deep); }
.navbar-oligati .nav-link:hover::after,
.navbar-oligati .nav-link.active::after{ transform: scaleX(1); }

.navbar-oligati .btn-gold{ padding: 10px 22px; font-size:.75rem; }
.navbar-toggler{ border:none; box-shadow:none !important; }
.navbar-oligati .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(255,255,255,0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-oligati.is-scrolled .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(11,31,58,0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
@media (max-width: 1199.98px){
  .navbar-oligati > .container{ flex-wrap: wrap; }
  .navbar-collapse{
    background: var(--ink-deep);
    margin-top: 16px;
    padding: 20px;
    flex-basis: 100%;
  }
}

/* ---------------------------------------------------------
   Language toggle — themed pill switch (replaces the old
   flat "EN | FR" text links)
   --------------------------------------------------------- */
.lang-toggle-item{
  order:-1;
  flex-shrink:0;
}
.lang-toggle{
  display:inline-flex;
  align-items:center;
  gap:2px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 999px;
  padding: 3px;
  transition: background .35s ease, border-color .35s ease;
}
.lang-toggle .lang-sep{ display:none; }
.lang-toggle .lang-btn{
  appearance:none;
  border:none;
  background:transparent;
  min-width: 38px;
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight:700;
  font-size:.7rem;
  letter-spacing:1px;
  line-height:1;
  color: rgba(255,255,255,.68);
  cursor:pointer;
  transition: background .3s ease, color .3s ease, box-shadow .3s ease;
}
.lang-toggle .lang-btn:hover{ color:#fff; }
.lang-toggle .lang-btn.active{
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  color: var(--ink-deep);
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
}
.lang-toggle .lang-btn.active:hover{ color: var(--ink-deep); }

.navbar-oligati.is-scrolled .lang-toggle{
  background: rgba(11,31,58,.07);
  border-color: rgba(11,31,58,.16);
}
.navbar-oligati.is-scrolled .lang-toggle .lang-btn{ color: rgba(11,31,58,.55); }
.navbar-oligati.is-scrolled .lang-toggle .lang-btn:hover{ color: var(--ink-deep); }
.navbar-oligati.is-scrolled .lang-toggle .lang-btn.active{ color: var(--ink-deep); }

@media (max-width: 1199.98px){
  .lang-toggle-item{
    order:0;
    margin-bottom:.75rem;
  }
}

/* =========================================================
   HERO
   ========================================================= */
header#home{ position:relative; }
.hero-carousel, .hero-carousel .carousel-inner, .hero-carousel .carousel-item{
  height: 100vh;
  min-height: 620px;
}
.hero-slide{
  height:100%;
  display:flex;
  align-items:center;
  position:relative;
  background-size: cover;
  background-position: center;
}
.hero-slide::before{
  content:'';
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(11,31,58,.88) 0%, rgba(11,31,58,.55) 55%, rgba(11,31,58,.35) 100%);
  z-index:1;
}
.hero-slide-video{ background: var(--ink-deep); }
.hero-video{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover;
  z-index:0;
}
.hero-content{
  position:relative;
  z-index:2;
  max-width: 680px;
  color:#fff;
}
.hero-content .eyebrow{ color: var(--gold-pale); }
.hero-content .eyebrow::before{ background: var(--gold-pale); }
.hero-title{
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  color:#fff;
  margin-bottom: 20px;
}
.hero-title .accent{ color: var(--gold-pale); font-style: italic; }
.hero-sub{
  color: rgba(255,255,255,.82);
  font-size: 1.08rem;
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; }

.video-sound-toggle{
  position:absolute;
  right: 32px; bottom: 100px;
  z-index:3;
  width: 46px; height:46px;
  border-radius:50%;
  border: 1px solid rgba(255,255,255,.4);
  background: rgba(11,31,58,.4);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  transition: all .3s ease;
}
.video-sound-toggle:hover{ background: rgba(11,31,58,.7); border-color: var(--gold); }
.video-sound-toggle svg{ width:20px; height:20px; }
.video-sound-toggle .icon-unmuted{ display:none; }
.video-sound-toggle[aria-pressed="true"] .icon-muted{ display:none; }
.video-sound-toggle[aria-pressed="true"] .icon-unmuted{ display:block; }

.carousel-indicators-oligati{
  position:absolute;
  bottom: 40px;
  z-index: 3;
  gap: 10px;
}
/* The visible bar is 3px tall, but each button gets a much taller
   invisible hit area so it's actually easy to click/tap. */
.carousel-indicators-oligati button{
  width: 34px !important;
  height: 22px !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0;
  background: transparent !important;
  border: none !important;
  opacity: 1 !important;
  cursor: pointer;
  position: relative;
}
.carousel-indicators-oligati button::after{
  content:'';
  position:absolute;
  left:0; right:0; top:50%;
  transform: translateY(-50%);
  height:3px;
  background: rgba(255,255,255,.4);
  transition: background .3s ease;
}
.carousel-indicators-oligati button.active::after{ background: var(--gold); }
.carousel-indicators-oligati button:hover::after{ background: var(--gold-pale); }

/* ---------------------------------------------------------
   Hero prev/next arrows
   --------------------------------------------------------- */
.hero-arrow{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  z-index:4;
  width:52px; height:52px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.4);
  background: rgba(11,31,58,.35);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition: all .3s ease;
}
.hero-arrow:hover{
  background: rgba(11,31,58,.7);
  border-color: var(--gold);
  color: var(--gold-pale);
}
.hero-arrow svg{ width:22px; height:22px; pointer-events:none; }
.hero-arrow-prev{ left:24px; }
.hero-arrow-next{ right:24px; }
@media (max-width: 767.98px){
  .hero-arrow{ width:40px; height:40px; }
  .hero-arrow svg{ width:18px; height:18px; }
  .hero-arrow-prev{ left:12px; }
  .hero-arrow-next{ right:12px; }
}

/* =========================================================
   ABOUT / OVERVIEW
   ========================================================= */
.overview-figure{ position:relative; }
.overview-figure img{
  width:100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.badge-years{
  position:absolute;
  right: -18px; bottom: -18px;
  background: var(--ink-deep);
  color:#fff;
  padding: 22px 28px;
  border: 1px solid var(--gold);
  text-align:center;
  min-width:130px;
}
.badge-years .num{
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight:700;
  color: var(--gold-pale);
  line-height:1;
}
.badge-years .lbl{
  font-size: .72rem;
  letter-spacing:1px;
  text-transform:uppercase;
  color: rgba(255,255,255,.75);
  margin-top:6px;
}
@media (max-width: 991.98px){
  .badge-years{ right: 10px; bottom: -18px; }
}

/* =========================================================
   VALUE CARDS (Why Choose Us)
   ========================================================= */
.value-card{
  background:#fff;
  border: 1px solid rgba(11,31,58,.08);
  padding: 40px 30px;
  text-align:center;
  height:100%;
  transition: all .35s ease;
}
.section-alt .value-card{ background:#fff; }
.value-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(11,31,58,.08);
  border-color: var(--gold);
}
.value-card:hover .diamond::before{ transform: rotate(225deg); }
.value-card h4{ margin-bottom: 10px; font-size:1.1rem; }
.value-card p{ color:#5b5b5b; font-size:.92rem; }

/* =========================================================
   SERVICES
   ========================================================= */
.service-card{
  background:#fff;
  border: 1px solid rgba(11,31,58,.08);
  padding: 40px 32px;
  height:100%;
  position:relative;
  transition: all .35s ease;
}
.service-card:hover{
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(11,31,58,.08);
  transform: translateY(-6px);
}
.service-card .idx{
  display:block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--platinum);
  font-weight:700;
  margin-bottom: 14px;
}
.service-card h4{ margin-bottom: 12px; }
.service-card p{ color:#5b5b5b; font-size:.94rem; margin-bottom: 20px; }
.service-card .learn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:700;
  font-size:.8rem;
  letter-spacing:.5px;
  text-transform:uppercase;
  color: var(--gold-deep);
}
.service-card .learn svg{ width:16px; height:16px; transition: transform .3s ease; }
.service-card .learn:hover svg{ transform: translateX(4px); }

/* =========================================================
   PROCESS
   ========================================================= */
.process-track{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position:relative;
}
.process-track::before{
  content:'';
  position:absolute;
  top: 29px; left: 12%; right: 12%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 16px);
  z-index:0;
}
.process-step{ position:relative; z-index:1; text-align:center; }
.process-step h5{
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--ink-deep);
}
.process-step p{ color:#5b5b5b; font-size:.9rem; }
@media (max-width: 767.98px){
  .process-track{ grid-template-columns: 1fr; gap: 48px; }
  .process-track::before{ display:none; }
}

/* =========================================================
   STATS
   ========================================================= */
.stat-item{ text-align:center; }
.stat-item .num{
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight:700;
  color: var(--gold-pale);
  line-height:1;
}
.stat-item .lbl{
  margin-top: 10px;
  font-size:.82rem;
  letter-spacing:1px;
  text-transform:uppercase;
  color: rgba(255,255,255,.65);
}

/* =========================================================
   PROJECTS
   ========================================================= */
.project-card{
  position:relative;
  overflow:hidden;
  aspect-ratio: 4/3;
}
.project-card img{
  width:100%; height:100%;
  object-fit:cover;
  transition: transform .6s ease;
}
.project-card:hover img{ transform: scale(1.08); }
.project-card .overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(11,31,58,0) 30%, rgba(11,31,58,.92) 100%);
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding: 28px;
  color:#fff;
}
.project-card .tag{
  align-self:flex-start;
  background: var(--gold);
  color: var(--ink-deep);
  font-size:.7rem;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  padding: 5px 12px;
  margin-bottom: 12px;
}
.project-card h4{ color:#fff; margin-bottom:8px; }
.project-card p{
  color: rgba(255,255,255,.8);
  font-size:.9rem;
  max-height:0;
  overflow:hidden;
  opacity:0;
  transition: all .35s ease;
}
.project-card:hover p{ max-height: 100px; opacity:1; margin-top:4px; }

/* =========================================================
   TEAM
   ========================================================= */
.team-card{ text-align:center; }
.team-photo{
  aspect-ratio: 1/1;
  overflow:hidden;
  margin-bottom: 18px;
  position:relative;
}
.team-photo::after{
  content:'';
  position:absolute; inset:0;
  border: 1px solid var(--gold);
  transform: scale(.92);
  opacity:0;
  transition: all .35s ease;
}
.team-card:hover .team-photo::after{ opacity:1; transform: scale(1); }
.team-photo img{ width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.team-card:hover .team-photo img{ transform: scale(1.05); }
.team-card h5{ font-size:1.05rem; margin-bottom:4px; }
.team-card .role{
  font-size:.8rem;
  letter-spacing:.5px;
  text-transform:uppercase;
  color: var(--gold-deep);
  font-weight:600;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonial-card{
  background: var(--light-grey);
  padding: 40px 34px;
  height:100%;
  position:relative;
  border-left: 3px solid var(--gold);
}
.testimonial-card .quote-mark{
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--gold);
  line-height:1;
  display:block;
  margin-bottom: 6px;
}
.testimonial-card p{
  color:#4a4a4a;
  font-size:.98rem;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-card .who{ display:flex; align-items:center; gap:12px; }
.testimonial-card .dot{
  width:40px; height:40px;
  border-radius:50%;
  background: var(--ink-deep);
  color: var(--gold-pale);
  font-family: var(--font-display);
  font-weight:700;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.testimonial-card .name{ font-weight:700; color: var(--ink-deep); font-size:.92rem; }
.testimonial-card .org{ font-size:.8rem; color:#777; }

/* =========================================================
   NEWS
   ========================================================= */
.news-card{
  background:#fff;
  border: 1px solid rgba(11,31,58,.08);
  padding: 32px;
  height:100%;
  transition: all .35s ease;
}
.news-card:hover{ box-shadow: 0 20px 40px rgba(11,31,58,.08); transform: translateY(-6px); }
.date-badge{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:.78rem;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  color: var(--gold-deep);
  margin-bottom: 16px;
}
.news-card h4{ margin-bottom: 12px; font-size:1.1rem; }
.news-card p{ color:#5b5b5b; font-size:.92rem; margin-bottom: 18px; }
.news-card .read-more{
  font-weight:700;
  font-size:.8rem;
  letter-spacing:.5px;
  text-transform:uppercase;
  color: var(--ink-deep);
  border-bottom: 1px solid var(--gold);
  padding-bottom:2px;
}

/* =========================================================
   CAREERS BAND
   ========================================================= */
.careers-band{
  background: linear-gradient(120deg, var(--ink-deep), #142a4d);
  padding: 64px 56px;
  position:relative;
  overflow:hidden;
}
@media (max-width: 767.98px){
  .careers-band{ padding: 48px 28px; }
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact-info-item{
  display:flex;
  align-items:flex-start;
  gap:20px;
  margin-bottom: 30px;
}
.contact-info-item .diamond{ margin: 0; flex-shrink:0; }
.contact-info-item h6{
  font-family: var(--font-body);
  font-weight:700;
  font-size:.78rem;
  letter-spacing:1px;
  text-transform:uppercase;
  color: var(--ink-deep);
  margin-bottom:4px;
}
.contact-info-item p{ color:#5b5b5b; font-size:.95rem; }

.form-control-oligati{
  border: 1px solid rgba(11,31,58,.15);
  border-radius:0;
  padding: 12px 16px;
  font-size:.95rem;
  background:#fff;
}
.form-control-oligati:focus{
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,154,61,.15);
}
textarea.form-control-oligati{ resize: vertical; }

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta{
  background: var(--ink-deep);
  text-align:center;
  padding: 110px 0;
}
.final-cta h2{ color:#fff; margin-bottom: 14px; }
.final-cta p{
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin: 0 auto;
}

/* =========================================================
   FOOTER
   ========================================================= */
footer{
  background: #081627;
  color: rgba(255,255,255,.65);
  padding: 72px 0 0;
  font-size:.92rem;
}
.foot-brand{ display:flex; align-items:center; gap:12px; margin-bottom:16px; }
.foot-brand img{ height:34px; }
.foot-brand span{
  font-family: var(--font-display);
  font-weight:700;
  font-size:1.1rem;
  color:#fff;
  letter-spacing:.5px;
}
footer h6{
  color:#fff;
  font-family: var(--font-body);
  font-weight:700;
  font-size:.82rem;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom: 18px;
}
footer ul{ list-style:none; padding:0; margin:0; }
footer ul li{ margin-bottom: 12px; }
footer ul a{ color: rgba(255,255,255,.65); transition: color .25s ease; }
footer ul a:hover{ color: var(--gold-pale); }
.social-row{ display:flex; gap:12px; }
.social-row a{
  width:38px; height:38px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  transition: all .3s ease;
}
.social-row a svg{ width:16px; height:16px; }
.social-row a:hover{ border-color: var(--gold); color: var(--gold-pale); }
.foot-bottom{
  margin-top: 56px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px;
  font-size:.82rem;
  color: rgba(255,255,255,.45);
}

/* =========================================================
   FLOATING CTA
   ========================================================= */
.floating-cta{
  position:fixed;
  right: 28px; bottom: 28px;
  z-index: 999;
  width: 58px; height:58px;
  border-radius:50%;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  color: var(--ink-deep);
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 10px 30px rgba(200,154,61,.4);
  transition: all .3s ease;
}
.floating-cta:hover{ transform: translateY(-4px) scale(1.05); }
.floating-cta svg{ width:24px; height:24px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991.98px){
  section{ padding: 72px 0; }
  .final-cta{ padding: 80px 0; }
}
