/* ===========================
   HERO SLIDER — hero.css
=========================== */

:root {
  --orange: #F47B20;
  --navy: #1B2A4A;
  --teal: #2D5059;
  --white: #ffffff;
  --slide-h: 88vh;
  /* desktop height */
  --slide-min: 500px;
  --trans: 0.8s cubic-bezier(0.77, 0, 0.18, 1);
}

/* ── Wrapper ── */
.hero-slider {
  position: relative;
  width: 100%;
  height: var(--slide-h);
  min-height: var(--slide-min);
  overflow: hidden;
  background: var(--navy);
}

/* ── Slides container ── */
.slides-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ── FAQ ── */
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(.4, 0, .2, 1),
    padding 0.35s cubic-bezier(.4, 0, .2, 1);
  padding: 0 20px;
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.7;
}

.faq-a.open {
  max-height: 300px;
  padding: 0 20px 16px;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans), transform var(--trans);
}

.faq-icon svg {
  width: 16px;
  height: 16px;
  color: var(--gold-d);
  transition: transform var(--trans);
}

.faq-q.open .faq-icon {
  background: var(--gold);
}

.faq-q.open .faq-icon svg {
  transform: rotate(180deg);
}

.faq-item {
  border: 1.5px solid var(--gold-light);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
  transition: border-color var(--trans), box-shadow var(--trans);
}

.faq-item:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 18px rgba(255, 196, 12, .12);
}

/* ── Individual slide ── */
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity var(--trans), transform var(--trans);
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* ── Dark gradient overlay ── */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
      rgba(14, 26, 54, 0.82) 0%,
      rgba(14, 26, 54, 0.55) 55%,
      rgba(14, 26, 54, 0.20) 100%);
}

/* ── Content block ── */
.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 7vw;
  max-width: 760px;
}

/* Animate content IN when slide is active */
.slide.active .slide-content>* {
  animation: fadeUp 0.7s ease both;
}

.slide.active .hero-tag {
  animation-delay: 0.15s;
}

.slide.active .hero-title {
  animation-delay: 0.30s;
}

.slide.active .hero-btns {
  animation-delay: 0.50s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Tag line ── */
.hero-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  color:
    var(--gold);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 8px;
  width: fit-content;
}

/* ── Main heading ── */
.hero-title {
  color: var(--white);
  font-size: clamp(28px, 4.2vw, 56px);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 36px;
}

.hero-title .highlight {
  color: var(--gold);
}

/* ── CTA Buttons ── */
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, background 0.25s, color 0.25s;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
}

.btn-primary:hover {
  background: #ffc40c;
  border-color: #ffc40c;
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--teal);
  color: var(--white);
  border: 2px solid var(--teal);
}

.btn-secondary:hover {
  background: transparent;
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ── Arrows ── */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffc40c;
  border: 2px solid #ffc40c;
  color: var(--white);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
  backdrop-filter: blur(4px);
}

.arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.08);
}

.arrow-prev {
  left: 18px;
}

.arrow-next {
  right: 64px;
}

/* clear of the FAB panel */

/* ── Dots ── */
.dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
}

.dot.active {
  background: var(--orange);
  width: 48px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #FFC40C;
  --gold-d: #e0aa00;
  --gold-light: #FFF3C4;
  --gold-pale: #FFFBEA;
  --white: #ffffff;
  --text: #3a3000;
  --text-mid: #6b5800;
  --text-light: #a08500;
  --radius: 10px;
  --trans: 0.26s cubic-bezier(.4, 0, .2, 1);
}

body {
  font-family: 'Outfit', sans-serif;
  background: #f5f0e0;
}

/* ══════════════════════════════════════════
       FOOTER
    ══════════════════════════════════════════ */
footer {
  background: var(--white);
  border-top: 4px solid var(--gold);
  box-shadow: 0 -4px 30px rgba(255, 196, 12, .12);
}

/* ── MAIN FOOTER BODY ── */
.footer-body {
  max-width: 1320px;
  margin: 0 auto;
  padding: 60px 36px 44px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
}

/* ── BRAND COLUMN ── */
.footer-brand {}

.brand-row {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  margin-bottom: 20px;
}

.f-logo-wrap {
  width: 70px;
  height: 70px;
  border-radius: 13px;
  /* background: var(--gold); */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 0 0 3px var(--gold-light);
  flex-shrink: 0;
  transition: box-shadow var(--trans);
}

.brand-row:hover .f-logo-wrap {
  box-shadow: 0 0 0 5px rgba(255, 196, 12, .4);
}

.f-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.f-logo-wrap .monogram {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--text);
  letter-spacing: .04em;
}

.f-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.f-brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: .12em;
  color: var(--text);
  margin-left: 30px;
}

.f-brand-name span {
  color: var(--gold-d);
}

.f-brand-tagline {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-top: 3px;
}

.footer-desc {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 310px;
}

/* Social icons */
.social-row {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--gold-pale);
  border: 1.5px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  text-decoration: none;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
}

.social-btn:hover {
  background: var(--gold);
  color: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(255, 196, 12, .4);
  border-color: var(--gold);
}

.social-btn svg {
  width: 15px;
  height: 15px;
}

/* ── COLUMN HEADINGS ── */
.footer-col {}

.col-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  letter-spacing: .12em;
  color: var(--text);
  margin-bottom: 6px;
}

.col-underline {
  width: 36px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
  margin-bottom: 20px;
}

/* ── LINKS ── */
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-links li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 7px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: background var(--trans), color var(--trans), padding-left var(--trans);
}

.footer-links li a:hover {
  background: var(--gold-pale);
  color: var(--text);
  padding-left: 14px;
}

.footer-links li a .fl-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  transition: transform var(--trans);
}

.footer-links li a:hover .fl-dot {
  transform: scale(1.4);
}

/* ── CONTACT COLUMN ── */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-icon svg {
  width: 14px;
  height: 14px;
  color: var(--gold-d);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.contact-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-light);
}

.contact-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  line-height: 1.5;
  transition: color var(--trans);
}

a.contact-value:hover {
  color: var(--text);
}

/* ── NEWSLETTER STRIP ── */
.newsletter-strip {
  background: var(--gold-pale);
  border-top: 1.5px solid var(--gold-light);
  border-bottom: 1.5px solid var(--gold-light);
  padding: 22px 36px;
}

.newsletter-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.newsletter-text {
  flex: 1;
  min-width: 200px;
}

.newsletter-text h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: .1em;
  color: var(--text);
  margin-bottom: 2px;
}

.newsletter-text p {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 500;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex: 1;
  min-width: 280px;
  max-width: 420px;
}

.newsletter-input {
  flex: 1;
  padding: 0 16px;
  height: 42px;
  border: 1.5px solid var(--gold-light);
  border-radius: var(--radius);
  background: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  color: var(--text);
  outline: none;
  transition: border-color var(--trans), box-shadow var(--trans);
}

.newsletter-input::placeholder {
  color: var(--text-light);
}

.newsletter-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 196, 12, .15);
}

.newsletter-btn {
  padding: 0 20px;
  height: 42px;
  background: var(--gold);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  box-shadow: 0 2px 10px rgba(255, 196, 12, .35);
}

.newsletter-btn:hover {
  background: var(--gold-d);
  transform: translateY(-1px);
  box-shadow: 0 5px 16px rgba(255, 196, 12, .45);
}

/* ── BOTTOM BAR ── */
.footer-bottom {
  background: var(--gold);
  padding: 14px 36px;
}

.footer-bottom-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-copy {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .03em;
}

.footer-copy span {
  opacity: .65;
  font-weight: 500;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  letter-spacing: .04em;
  opacity: .7;
  transition: opacity var(--trans);
}

.footer-bottom-links a:hover {
  opacity: 1;
}

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .footer-body {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 600px) {
  .footer-body {
    grid-template-columns: 1fr;
    padding: 40px 20px 30px;
  }

  .newsletter-strip {
    padding: 20px;
  }

  .footer-bottom {
    padding: 12px 20px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}


/* ══════════════════════════════════════════════════════════
     ROOT VARIABLES
  ══════════════════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #FFC40C;
  --gold-d: #e0aa00;
  --gold-light: #FFF3C4;
  --gold-pale: #FFFBEA;
  --white: #ffffff;
  --cream: #fdf8ee;
  --cream2: #f7f1e0;
  --text: #3a3000;
  --text-mid: #6b5800;
  --text-light: #a08500;
  --radius: 12px;
  --trans: 0.28s cubic-bezier(.4, 0, .2, 1);
  /* hero vars */
  --orange: #F47B20;
  --navy: #1B2A4A;
  --teal: #2D5059;
  --slide-h: 88vh;
  --slide-min: 520px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--text);
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

/* ══════════════════════════════════════════════════════════
     SECTION UTILITIES
  ══════════════════════════════════════════════════════════ */
.section {
  padding: 90px 0;
}

.section-alt {
  background: var(--white);
}

.section-cream {
  background: var(--cream);
}

.section-gold {
  background: var(--gold-pale);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Section heading */
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-d);
  margin-bottom: 12px;
}

.sec-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
}

.sec-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: .06em;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 16px;
}

.sec-title span {
  color: var(--gold-d);
}

.sec-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 600px;
  margin-left: 230px;
}

.sec-head-center {
  text-align: center;
}

.sec-head-center .sec-label {
  justify-content: center;
}

.sec-head-center .sec-desc {
  margin: 0 auto;
}

/* Gold underline bar */
.gold-bar {
  width: 48px;
  height: 4px;
  background: var(--gold);
  border-radius: 4px;
  margin: 14px 0 28px;
}

.gold-bar.center {
  margin: 14px auto 28px;
}

/* ══════════════════════════════════════════════════════════
     ── TOP STRIP ──
  ══════════════════════════════════════════════════════════ */
.top-strip {
  background: var(--gold);
  padding: 6px 40px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.top-strip a {
  color: var(--text);
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  letter-spacing: .03em;
  transition: opacity var(--trans);
}

.top-strip a:hover {
  opacity: .65;
}

.top-strip .sep {
  color: var(--text);
  opacity: .35;
}

/* ══════════════════════════════════════════════════════════
     ── HEADER ──
  ══════════════════════════════════════════════════════════ */
header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 4px 24px rgba(255, 196, 12, .13);
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 36px;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  /* background: var(--gold); */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 0 0 3px var(--gold-light);
  transition: box-shadow var(--trans), transform var(--trans);
}

.brand:hover .logo-wrap {
  box-shadow: 0 0 0 5px rgba(255, 196, 12, .45);
  transform: scale(1.04);
}

.logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-wrap .monogram {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--text);
  letter-spacing: .04em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 27px;
  letter-spacing: .12em;
  color: var(--text);
}

.brand-name span {
  color: var(--gold-d);
}

.brand-tagline {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-top: 3px;
}

nav {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 15px;
  height: 76px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: .05em;
  text-transform: uppercase;
  border-bottom: 3px solid transparent;
  transition: color var(--trans), border-color var(--trans), background var(--trans);
  white-space: nowrap;
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: 'Outfit', sans-serif;
}

.nav-link:hover,
.nav-item:hover>.nav-link {
  color: var(--text);
  background: var(--gold-pale);
  border-bottom-color: var(--gold);
}

.nav-link.active {
  color: var(--text);
  border-bottom-color: var(--gold);
  background: var(--gold-pale);
}

.chev {
  width: 14px;
  height: 14px;
  transition: transform var(--trans);
  color: var(--gold-d);
}

.nav-item:hover>.nav-link .chev {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  border: 1.5px solid var(--gold-light);
  border-top: 3px solid var(--gold);
  border-radius: 0 0 var(--radius) var(--radius);
  min-width: 240px;
  padding: 8px 0 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans), transform var(--trans);
  box-shadow: 0 16px 50px rgba(255, 196, 12, .18), 0 4px 12px rgba(0, 0, 0, .06);
  z-index: 999;
}

.nav-item:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.drop-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--gold-d);
  text-transform: uppercase;
  padding: 10px 18px 4px;
}

.drop-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: background var(--trans), color var(--trans), padding-left var(--trans);
}

.drop-link:hover {
  background: var(--gold-pale);
  color: var(--text);
  padding-left: 24px;
}

.drop-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--trans);
}

.drop-link:hover .drop-icon {
  background: var(--gold);
}

.drop-icon svg {
  width: 13px;
  height: 13px;
  color: var(--gold-d);
}

.drop-link:hover .drop-icon svg {
  color: var(--text);
}

.drop-divider {
  height: 1px;
  background: var(--gold-light);
  margin: 6px 0;
}

.btn-enquiry {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 18px;
  padding: 0 22px;
  height: 43px;
  background: var(--gold);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  box-shadow: 0 3px 14px rgba(255, 196, 12, .4);
  white-space: nowrap;
}

.btn-enquiry:hover {
  background: var(--gold-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 196, 12, .5);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: var(--gold-pale);
  border: 1.5px solid var(--gold-light);
  border-radius: 9px;
  cursor: pointer;
  margin-left: auto;
  padding: 9px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 2px solid var(--gold-light);
  padding: 10px 0 20px;
}

.mobile-menu.open {
  display: flex;
}

.mob-link {
  display: block;
  padding: 12px 28px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: color var(--trans), background var(--trans);
}

.mob-link:hover {
  color: var(--text);
  background: var(--gold-pale);
}

.mob-section {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--gold-d);
  text-transform: uppercase;
  padding: 14px 28px 4px;
}

.mob-sub {
  display: block;
  padding: 9px 28px 9px 42px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-light);
  text-decoration: none;
  transition: color var(--trans), background var(--trans);
}

.mob-sub:hover {
  color: var(--text);
  background: var(--gold-pale);
}

.mob-divider {
  height: 1px;
  background: var(--gold-light);
  margin: 8px 0;
}

.mob-enquiry {
  margin: 14px 28px 0;
  padding: 13px;
  background: var(--gold);
  color: var(--text);
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  display: block;
}

@media (max-width: 920px) {

  nav,
  .btn-enquiry {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .top-strip {
    display: none;
  }
}

/* ══════════════════════════════════════════════════════════
     ── HERO SLIDER ──
  ══════════════════════════════════════════════════════════ */
.hero-slider {
  position: relative;
  width: 100%;
  height: var(--slide-h);
  min-height: var(--slide-min);
  overflow: hidden;
  background: var(--navy);
}

.slides-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.18, 1), transform 0.8s cubic-bezier(0.77, 0, 0.18, 1);
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(14, 26, 54, .85) 0%, rgba(14, 26, 54, .55) 55%, rgba(14, 26, 54, .15) 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 7vw;
  max-width: 780px;
}

.slide.active .slide-content>* {
  animation: fadeUp 0.7s ease both;
}

.slide.active .hero-tag {
  animation-delay: .15s;
}

.slide.active .hero-title {
  animation-delay: .30s;
}

.slide.active .hero-desc {
  animation-delay: .42s;
}

.slide.active .hero-btns {
  animation-delay: .55s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 8px;
  width: fit-content;
}

.hero-tag svg {
  width: 16px;
  height: 16px;
}

.hero-title {
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 18px;
  letter-spacing: .05em;
}

.hero-title .highlight {
  color: var(--gold);
}

.hero-desc {
  color: rgba(255, 255, 255, .78);
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.72;
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 30px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  background: var(--gold);
  color: var(--text);
  border: 2px solid var(--gold);
  transition: transform .2s, background .25s, box-shadow .25s;
  box-shadow: 0 4px 18px rgba(255, 196, 12, .4);
}

.btn-primary:hover {
  background: var(--gold-d);
  border-color: var(--gold-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 196, 12, .5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 30px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .55);
  transition: transform .2s, background .25s, border-color .25s;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, .1);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--gold);
  color: var(--text);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(255, 196, 12, .4);
}

.arrow:hover {
  background: var(--gold-d);
  transform: translateY(-50%) scale(1.1);
}

.arrow-prev {
  left: 22px;
}

.arrow-next {
  right: 22px;
}

.arrow svg {
  width: 20px;
  height: 20px;
}

/* dots */
.dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, .35);
  cursor: pointer;
  transition: background .3s, width .3s;
}

.dot.active {
  background: var(--gold);
  width: 52px;
}

/* ══════════════════════════════════════════════════════════
     ── STATS TICKER ──
  ══════════════════════════════════════════════════════════ */
.stats-ticker {
  background: var(--gold);
  padding: 22px 0;
}

.stats-ticker-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  letter-spacing: .06em;
  color: var(--text);
  line-height: 1;
}

.stat-num sup {
  font-size: 22px;
  vertical-align: super;
}

.stat-lbl {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-top: 3px;
}

.stat-sep {
  width: 1px;
  height: 44px;
  background: rgba(58, 48, 0, .2);
}

/* ══════════════════════════════════════════════════════════
     ── LEGACY / ABOUT ──
  ══════════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-grid.reverse {
  direction: rtl;
}

.about-grid.reverse>* {
  direction: ltr;
}

.about-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(255, 196, 12, .18), 0 6px 20px rgba(0, 0, 0, .07);
}

.about-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.about-img-wrap:hover img {
  transform: scale(1.04);
}

.about-img-badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: var(--gold);
  padding: 12px 20px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
}

.about-img-badge strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: .08em;
  color: var(--text);
  display: block;
  line-height: 1;
}

.about-img-badge span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.about-text {}

.about-text p {
  font-size: 16px;
  line-height: 1.82;
  color: var(--text-mid);
  margin-bottom: 18px;
}

.about-text p:first-of-type {
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-pale);
  border: 1.5px solid var(--gold-light);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
  margin: 4px 4px 0 0;
  transition: background var(--trans), transform var(--trans);
}

.contact-chip:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.contact-chip svg {
  width: 14px;
  height: 14px;
  color: var(--gold-d);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
     ── FOUNDER ──
  ══════════════════════════════════════════════════════════ */
.founder-section {
  background: var(--white);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.founder-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(45deg,
      rgba(255, 196, 12, .04) 0px,
      rgba(255, 196, 12, .04) 1px,
      transparent 1px,
      transparent 28px);
}

.founder-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.founder-img-col {
  position: relative;
}

.founder-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(255, 196, 12, .22);
  border: 4px solid var(--gold-light);
  position: relative;
}

.founder-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top;
}

.founder-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255, 196, 12, .12) 0%, transparent 50%);
}

.founder-ribbon {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  padding: 10px 24px;
  border-radius: 30px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: .15em;
  color: var(--text);
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(255, 196, 12, .4);
  z-index: 2;
}

.founder-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.8vw, 36px);
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 28px;
  position: relative;
  padding-left: 28px;
}

.founder-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 80px;
  line-height: 1;
  color: var(--gold);
  opacity: .4;
  font-family: 'Playfair Display', serif;
}

.founder-bio {
  font-size: 18px;
  line-height: 1.82;
  color: var(--text-mid);
  margin-bottom: 14px;
}

.founder-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: .1em;
  color: var(--text);
  margin-top: 30px;
}

.founder-role {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-light);
}

.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.founder-tag {
  background: var(--gold-light);
  border-radius: 6px;
  padding: 5px 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-mid);
}

/* ══════════════════════════════════════════════════════════
     ── SERVICES / COMPANIES ──
  ══════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(255, 196, 12, .1), 0 2px 8px rgba(0, 0, 0, .04);
  transition: transform var(--trans), box-shadow var(--trans);
  border: 1.5px solid var(--gold-light);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(255, 196, 12, .2);
}

.service-card-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform .5s ease;
}

.service-card:hover .service-card-img {
  transform: scale(1.05);
}

.service-card-img-wrap {
  overflow: hidden;
}

.service-card-body {
  padding: 24px 24px 28px;
}

.service-card-tag {
  display: inline-block;
  background: var(--gold-light);
  border-radius: 5px;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-d);
  margin-bottom: 12px;
}

.service-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: .08em;
  color: var(--text);
  margin-bottom: 10px;
}

.service-card-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-d);
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: gap var(--trans), color var(--trans);
}

.service-card-link:hover {
  gap: 10px;
  color: var(--text);
}

.service-card-link svg {
  width: 14px;
  height: 14px;
}

/* ══════════════════════════════════════════════════════════
     ── WHY CHOOSE US ──
  ══════════════════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 52px;
}

.why-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 26px;
  border: 1.5px solid var(--gold-light);
  text-align: center;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(255, 196, 12, .18);
  border-color: var(--gold);
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background var(--trans);
}

.why-card:hover .why-icon {
  background: var(--gold);
}

.why-icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold-d);
}

.why-card:hover .why-icon svg {
  color: var(--text);
}

.why-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 19px;
  letter-spacing: .08em;
  color: var(--text);
  margin-bottom: 10px;
}

.why-desc {
  font-size: 18px;
  line-height: 1.72;
  color: var(--text-mid);
}

/* ══════════════════════════════════════════════════════════
     ── PROJECTS ──
  ══════════════════════════════════════════════════════════ */
.project-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.project-feature.reverse {
  direction: rtl;
}

.project-feature.reverse>* {
  direction: ltr;
}

.project-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.project-gallery img {
  border-radius: 12px;
  height: 200px;
  width: 100%;
  object-fit: cover;
  transition: transform .4s ease, box-shadow .4s ease;
  border: 2px solid var(--gold-light);
}

.project-gallery img:first-child {
  grid-column: span 2;
  height: 280px;
}

.project-gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 32px rgba(255, 196, 12, .22);
}

.project-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 14px;
}

.project-badge.completed {
  background: var(--gold-light);
  color: var(--text-mid);
}

.project-info p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.project-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 26px;
}

.project-chip {
  background: var(--gold-light);
  border-radius: 6px;
  padding: 5px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 5px;
}

.project-chip svg {
  width: 12px;
  height: 12px;
  color: var(--gold-d);
}

.project-divider {
  height: 1px;
  background: var(--gold-light);
  margin: 60px 0;
}

/* ══════════════════════════════════════════════════════════
     ── TESTIMONIALS ──
  ══════════════════════════════════════════════════════════ */
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 30px 28px;
  border: 1.5px solid var(--gold-light);
  position: relative;
  transition: transform var(--trans), box-shadow var(--trans);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(255, 196, 12, .16);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 14px;
  right: 22px;
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  line-height: 1;
  color: var(--gold);
  opacity: .25;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.stars svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  fill: var(--gold);
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.78;
  color: var(--text-mid);
  margin-bottom: 22px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold-light);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  color: var(--gold-d);
  flex-shrink: 0;
}

.author-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.author-role {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
}

/* ══════════════════════════════════════════════════════════
     ── CTA BANNER ──
  ══════════════════════════════════════════════════════════ */
.cta-section {
  background: var(--gold);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-inner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: .08em;
  color: var(--text);
  margin-bottom: 14px;
}

.cta-inner p {
  font-size: 17px;
  color: var(--text-mid);
  font-weight: 500;
  margin-bottom: 36px;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: var(--radius);
  background: var(--text);
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--trans), transform var(--trans);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .15);
}

.btn-cta-primary:hover {
  background: var(--text-mid);
  transform: translateY(-2px);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: var(--radius);
  background: transparent;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--text);
  transition: background var(--trans), transform var(--trans);
}

.btn-cta-secondary:hover {
  background: rgba(58, 48, 0, .1);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════
     ── FOOTER ──
  ══════════════════════════════════════════════════════════ */
footer {
  background: var(--white);
  border-top: 4px solid var(--gold);
  box-shadow: 0 -4px 30px rgba(255, 196, 12, .12);
}

.footer-body {
  max-width: 1320px;
  margin: 0 auto;
  padding: 60px 36px 44px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  margin-bottom: 20px;
}

.f-logo-wrap {
  width: 70px;
  height: 70px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 0 0 3px var(--gold-light);
  flex-shrink: 0;
  transition: box-shadow var(--trans);
}

.brand-row:hover .f-logo-wrap {
  box-shadow: 0 0 0 5px rgba(255, 196, 12, .4);
}

.f-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.f-logo-wrap .monogram {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--text);
  letter-spacing: .04em;
}

.f-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.f-brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: .12em;
  color: var(--text);
}

.f-brand-name span {
  color: var(--gold-d);
}

.f-brand-tagline {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-top: 3px;
}

.footer-desc {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 310px;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--gold-pale);
  border: 1.5px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  text-decoration: none;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
}

.social-btn:hover {
  background: var(--gold);
  color: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(255, 196, 12, .4);
  border-color: var(--gold);
}

.social-btn svg {
  width: 15px;
  height: 15px;
}

.col-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  letter-spacing: .12em;
  color: var(--text);
  margin-bottom: 6px;
}

.col-underline {
  width: 36px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-links li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 7px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: background var(--trans), color var(--trans), padding-left var(--trans);
}

.footer-links li a:hover {
  background: var(--gold-pale);
  color: var(--text);
  padding-left: 14px;
}

.footer-links li a .fl-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  transition: transform var(--trans);
}

.footer-links li a:hover .fl-dot {
  transform: scale(1.4);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-icon svg {
  width: 14px;
  height: 14px;
  color: var(--gold-d);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.contact-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-light);
}

.contact-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  line-height: 1.5;
  transition: color var(--trans);
}

a.contact-value:hover {
  color: var(--text);
}

.newsletter-strip {
  background: var(--gold-pale);
  border-top: 1.5px solid var(--gold-light);
  border-bottom: 1.5px solid var(--gold-light);
  padding: 22px 36px;
}

.newsletter-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.newsletter-text {
  flex: 1;
  min-width: 200px;
}

.newsletter-text h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: .1em;
  color: var(--text);
  margin-bottom: 2px;
}

.newsletter-text p {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 500;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex: 1;
  min-width: 280px;
  max-width: 420px;
}

.newsletter-input {
  flex: 1;
  padding: 0 16px;
  height: 42px;
  border: 1.5px solid var(--gold-light);
  border-radius: var(--radius);
  background: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  color: var(--text);
  outline: none;
  transition: border-color var(--trans), box-shadow var(--trans);
}

.newsletter-input::placeholder {
  color: var(--text-light);
}

.newsletter-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 196, 12, .15);
}

.newsletter-btn {
  padding: 0 20px;
  height: 42px;
  background: var(--gold);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
}

.newsletter-btn:hover {
  background: var(--gold-d);
  transform: translateY(-1px);
  box-shadow: 0 5px 16px rgba(255, 196, 12, .45);
}

.footer-bottom {
  background: var(--gold);
  padding: 14px 36px;
}

.footer-bottom-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-copy {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .03em;
}

.footer-copy span {
  opacity: .65;
  font-weight: 500;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  letter-spacing: .04em;
  opacity: .7;
  transition: opacity var(--trans);
}

.footer-bottom-links a:hover {
  opacity: 1;
}

/* ══════════════════════════════════════════════════════════
     ── FAB BACK TO TOP ──
  ══════════════════════════════════════════════════════════ */
#fabTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--gold-d);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(255, 196, 12, .4);
  transition: transform var(--trans), opacity var(--trans), box-shadow var(--trans);
  opacity: 0;
  pointer-events: none;
}

#fabTop.show {
  opacity: 1;
  pointer-events: auto;
}

#fabTop:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 196, 12, .5);
}

#fabTop svg {
  width: 20px;
  height: 20px;
  color: var(--text);
}

/* ══════════════════════════════════════════════════════════
     ── SCROLL REVEAL ──
  ══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ══════════════════════════════════════════════════════════
     ── RESPONSIVE ──
  ══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {

  .about-grid,
  .project-feature,
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-grid.reverse,
  .project-feature.reverse {
    direction: ltr;
  }

  .founder-grid {
    grid-template-columns: 1fr;
  }

  .founder-frame img {
    height: 340px;
  }

  .footer-body {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    padding: 0 20px;
  }

  .section {
    padding: 60px 0;
  }

  .stats-ticker-inner {
    gap: 14px;
  }

  .stat-sep {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .project-gallery img:first-child {
    height: 200px;
  }

  .footer-body {
    grid-template-columns: 1fr;
    padding: 40px 20px 28px;
  }

  .newsletter-strip {
    padding: 20px;
  }

  .footer-bottom {
    padding: 12px 20px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}


/* ══════════════════════════════════════════════════════════
   CONSTRUCTION CAPABILITIES SECTION
══════════════════════════════════════════════════════════ */
.section-construction {
  background: var(--text);
  position: relative;
  overflow: hidden;
}

/* Subtle diagonal pattern overlay */
.section-construction::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-55deg,
      rgba(255, 196, 12, .04) 0px,
      rgba(255, 196, 12, .04) 1px,
      transparent 1px,
      transparent 36px);
  pointer-events: none;
}

/* ── TOP ROW ── */
.constr-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.constr-heading-block {
  flex: 1;
  min-width: 280px;
}

.constr-heading-block .sec-label {
  color: var(--gold);
}

.constr-heading-block .sec-label::before {
  background: var(--gold);
}

.constr-heading-block .sec-title {
  color: var(--white);
}

.constr-heading-block .sec-title span {
  color: var(--gold);
}

.constr-heading-block .sec-desc {
  color: rgba(255, 255, 255, .65);
  max-width: 580px;
}

.constr-badge-col {
  flex-shrink: 0;
}

.constr-big-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  background: rgba(255, 196, 12, .08);
  box-shadow: 0 0 0 10px rgba(255, 196, 12, .06);
  text-align: center;
}

.cbb-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  letter-spacing: .04em;
  color: var(--gold);
  line-height: 1;
}

.cbb-num sup {
  font-size: 22px;
  vertical-align: super;
}

.cbb-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-top: 4px;
  line-height: 1.4;
}

/* ── CARDS GRID ── */
.constr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.constr-card {
  background: rgba(255, 255, 255, .05);
  border: 1.5px solid rgba(255, 196, 12, .2);
  border-radius: 18px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: background var(--trans), border-color var(--trans), transform var(--trans), box-shadow var(--trans);
}

.constr-card:hover {
  background: rgba(255, 196, 12, .08);
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
}

.constr-card-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  letter-spacing: .04em;
  color: rgba(255, 196, 12, .1);
  line-height: 1;
  transition: color var(--trans);
}

.constr-card:hover .constr-card-num {
  color: rgba(255, 196, 12, .18);
}

.constr-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 196, 12, .12);
  border: 1.5px solid rgba(255, 196, 12, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--trans), border-color var(--trans);
}

.constr-card:hover .constr-card-icon {
  background: var(--gold);
  border-color: var(--gold);
}

.constr-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
  transition: color var(--trans);
}

.constr-card:hover .constr-card-icon svg {
  color: var(--text);
}

.constr-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: .08em;
  color: var(--white);
  margin-bottom: 12px;
}

.constr-card-desc {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 20px;
}

.constr-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.constr-card-tags span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-d);
  background: rgba(255, 196, 12, .1);
  border: 1px solid rgba(255, 196, 12, .2);
  border-radius: 5px;
  padding: 4px 10px;
  transition: background var(--trans), border-color var(--trans);
}

.constr-card:hover .constr-card-tags span {
  background: rgba(255, 196, 12, .18);
  border-color: rgba(255, 196, 12, .4);
}

/* ── BOTTOM STRIP ── */
.constr-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 28px 32px;
  background: rgba(255, 196, 12, .08);
  border: 1.5px solid rgba(255, 196, 12, .25);
  border-radius: 14px;
}

.constr-bottom-text {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, .8);
  letter-spacing: .02em;
}

.constr-bottom-text svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 680px) {
  .constr-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .constr-big-badge {
    width: 100px;
    height: 100px;
  }

  .cbb-num {
    font-size: 34px;
  }

  .constr-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ══════════════════════════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════════════════════════ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  align-items: start;
}

.faq-col {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1.5px solid var(--gold-light);
}

.faq-item:first-child {
  border-top: 1.5px solid var(--gold-light);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 17px;
  padding: 20px 4px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .01em;
  transition: color var(--trans);
}

.faq-q:hover {
  color: var(--gold-d);
}

.faq-q.open {
  color: var(--gold-d);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold-light);
  border: 1.5px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--trans), border-color var(--trans), transform var(--trans);
}

.faq-q:hover .faq-icon,
.faq-q.open .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
}

.faq-icon svg {
  width: 16px;
  height: 16px;
  color: var(--gold-d);
  transition: transform var(--trans), color var(--trans);
}

.faq-q.open .faq-icon svg {
  transform: rotate(180deg);
  color: var(--text);
}

.faq-a {
  display: none;
  padding: 0 4px 20px;
}

.faq-a.open {
  display: block;
}

.faq-a p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-mid);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .faq-col:last-child .faq-item:first-child {
    border-top: none;
  }
}

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS CAROUSEL
══════════════════════════════════════════════════════════ */
.testi-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
}

.testi-track-outer {
  overflow: hidden;
  width: 100%;
  border-radius: 16px;
}

.testi-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

/* Each card — fixed width so 3 show at once on desktop */
.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 30px 28px;
  border: 1.5px solid var(--gold-light);
  position: relative;
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  box-sizing: border-box;
  transition: transform var(--trans), box-shadow var(--trans);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(255, 196, 12, .16);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 14px;
  right: 22px;
  font-family: Georgia, serif;
  font-size: 72px;
  line-height: 1;
  color: var(--gold);
  opacity: .2;
  pointer-events: none;
}

/* Arrows */
.testi-arrow {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--trans), border-color var(--trans), transform var(--trans), box-shadow var(--trans);
  box-shadow: 0 3px 12px rgba(255, 196, 12, .2);
  z-index: 2;
}

.testi-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(255, 196, 12, .4);
}

.testi-arrow svg {
  width: 20px;
  height: 20px;
  color: var(--gold-d);
  transition: color var(--trans);
}

.testi-arrow:hover svg {
  color: var(--text);
}

.testi-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Dots */
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.testi-dot {
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: var(--gold-light);
  border: none;
  cursor: pointer;
  transition: background .3s, width .3s;
  padding: 0;
}

.testi-dot.active {
  background: var(--gold);
  width: 44px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

@media (max-width: 640px) {
  .testimonial-card {
    flex: 0 0 100%;
  }

  .testi-arrow {
    width: 38px;
    height: 38px;
  }
}


/* ══════════════════════════════════════════════════
     1. PAGE HERO BANNER
  ══════════════════════════════════════════════════ */
.about-hero {
  position: relative;
  background: var(--white);
  padding: 80px 0 0;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg,
      rgba(255, 196, 12, .055) 0px, rgba(255, 196, 12, .055) 1px,
      transparent 1px, transparent 30px);
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-hero-text {
  padding-bottom: 80px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: var(--gold-d);
  transition: color var(--trans);
}

.breadcrumb a:hover {
  color: var(--text);
}

.breadcrumb svg {
  width: 12px;
  height: 12px;
  color: var(--gold);
}

.hero-page-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 88px);
  letter-spacing: .06em;
  line-height: .98;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-page-title span {
  color: var(--gold-d);
  display: block;
}

.hero-page-subtitle {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gold-light);
  border: 1.5px solid var(--gold);
  border-radius: 30px;
  padding: 7px 16px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.hero-chip svg {
  width: 13px;
  height: 13px;
  color: var(--gold-d);
}

/* Hero image collage */
.about-hero-img {
  position: relative;
  height: 520px;
  align-self: stretch;
}

.hero-img-main {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-badge {
  position: absolute;
  top: 24px;
  right: -18px;
  background: var(--gold);
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 12px 36px rgba(255, 196, 12, .35);
  text-align: center;
  z-index: 2;
}

.hero-img-badge strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px;
  letter-spacing: .06em;
  color: var(--text);
  display: block;
  line-height: 1;
}

.hero-img-badge small {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-mid);
}

/* Gold bottom wave */
.about-hero-wave {
  position: relative;
  margin-top: -1px;
  height: 60px;
  background: var(--cream);
}

.about-hero-wave::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 0%);
}

.hero-gold-line {
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
}

/* ══════════════════════════════════════════════════
     2. QUICK STATS ROW
  ══════════════════════════════════════════════════ */
.stats-row {
  background: var(--gold);
  padding: 28px 0;
}

.stats-row-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.stat-block {
  text-align: center;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  letter-spacing: .05em;
  color: var(--text);
  line-height: 1;
}

.stat-num sup {
  font-size: 24px;
  vertical-align: super;
}

.stat-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-top: 4px;
}

.stat-vsep {
  width: 1px;
  height: 50px;
  background: rgba(58, 48, 0, .18);
}

/* ══════════════════════════════════════════════════
     3. OUR LEGACY – NARRATIVE
  ══════════════════════════════════════════════════ */
.legacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.legacy-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(255, 196, 12, .18), 0 4px 16px rgba(0, 0, 0, .07);
}

.legacy-img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform .6s ease;
}

.legacy-img-wrap:hover img {
  transform: scale(1.04);
}

.legacy-img-badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: var(--gold);
  padding: 12px 20px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
}

.legacy-img-badge strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: .07em;
  color: var(--text);
  display: block;
  line-height: 1;
}

.legacy-img-badge span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.legacy-text p {
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 18px;
}

.legacy-text p.lead {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
}

/* ══════════════════════════════════════════════════
     4. TIMELINE
  ══════════════════════════════════════════════════ */
.timeline {
  position: relative;
  padding: 12px 0;
  margin-top: 52px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold-light);
  transform: translateX(-50%);
  border-radius: 3px;
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  width: 47%;
  position: relative;
  padding-bottom: 52px;
}

.timeline-item:nth-child(even) {
  margin-left: 53%;
  justify-content: flex-start;
}

.timeline-card {
  background: var(--white);
  border-radius: 14px;
  padding: 24px 26px;
  border: 1.5px solid var(--gold-light);
  max-width: 440px;
  box-shadow: 0 6px 24px rgba(255, 196, 12, .1);
  position: relative;
  transition: transform var(--trans), box-shadow var(--trans);
}

.timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(255, 196, 12, .2);
}

/* Dot on the line */
.timeline-item::after {
  content: '';
  position: absolute;
  top: 22px;
  right: -7%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--gold-light);
  z-index: 1;
}

.timeline-item:nth-child(even)::after {
  right: auto;
  left: -7%;
}

.tl-year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: .1em;
  color: var(--gold-d);
  line-height: 1;
  margin-bottom: 6px;
}

.tl-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.tl-desc {
  font-size: 16px;
  line-height: 1.72;
  color: var(--text-mid);
}

.tl-tag {
  display: inline-block;
  margin-top: 10px;
  background: var(--gold-light);
  border-radius: 5px;
  padding: 3px 10px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-d);
}

/* ══════════════════════════════════════════════════
     5. FOUNDER
  ══════════════════════════════════════════════════ */
.founder-wrap {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 68px;
  align-items: start;
}

.founder-img-col {
  position: relative;
}

.founder-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 4px solid var(--gold-light);
  box-shadow: 0 24px 70px rgba(255, 196, 12, .2);
}

.founder-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top;
  transition: transform .6s ease;
}

.founder-frame:hover img {
  transform: scale(1.04);
}

.founder-ribbon {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  padding: 10px 22px;
  border-radius: 30px;
  white-space: nowrap;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: .15em;
  color: var(--text);
  box-shadow: 0 8px 24px rgba(255, 196, 12, .4);
  z-index: 2;
}

.founder-quote-block {
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 22px 26px;
  margin-bottom: 26px;
  position: relative;
}

.founder-quote-block::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 18px;
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  line-height: 1;
  color: var(--gold);
  opacity: .3;
}

.founder-quote-text {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  padding-top: 10px;
}

.founder-bio-text {
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.founder-name-block {
  margin-top: 28px;
}

.founder-full-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: .1em;
  color: var(--text);
}

.founder-role-txt {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 3px;
}

.founder-achievement-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.f-tag {
  background: var(--gold-light);
  border-radius: 7px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-mid);
}

/* ══════════════════════════════════════════════════
     6. LEADERSHIP TEAM (sons)
  ══════════════════════════════════════════════════ */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 52px;
}

.team-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid var(--gold-light);
  box-shadow: 0 6px 28px rgba(255, 196, 12, .1);
  transition: transform var(--trans), box-shadow var(--trans);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(255, 196, 12, .2);
}

.team-img-wrap {
  height: 300px;
  overflow: hidden;
  position: relative;
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform .5s ease;
}

.team-card:hover .team-img-wrap img {
  transform: scale(1.05);
}

.team-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255, 196, 12, .18) 0%, transparent 60%);
}

.team-body {
  padding: 26px 26px 30px;
}

.team-badge {
  display: inline-block;
  background: var(--gold-light);
  border-radius: 5px;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-d);
  margin-bottom: 12px;
}

.team-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: .08em;
  color: var(--text);
  margin-bottom: 4px;
}

.team-role {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
}

.team-desc {
  font-size: 16.5px;
  line-height: 1.78;
  color: var(--text-mid);
  margin-bottom: 18px;
}

.team-divider {
  height: 1px;
  background: var(--gold-light);
  margin: 16px 0;
}

.team-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.team-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-pale);
  border: 1.5px solid var(--gold-light);
  border-radius: 8px;
  padding: 7px 13px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
  transition: background var(--trans), transform var(--trans);
}

.team-link:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.team-link svg {
  width: 13px;
  height: 13px;
  color: var(--gold-d);
}

/* ══════════════════════════════════════════════════
     7. MISSION / VALUES
  ══════════════════════════════════════════════════ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  background: var(--white);
  border-radius: 18px;
  padding: 34px 26px;
  border: 1.5px solid var(--gold-light);
  text-align: center;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(255, 196, 12, .2);
  border-color: var(--gold);
}

.value-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background var(--trans);
}

.value-card:hover .value-icon {
  background: var(--gold);
}

.value-icon svg {
  width: 30px;
  height: 30px;
  color: var(--gold-d);
}

.value-card:hover .value-icon svg {
  color: var(--text);
}

.value-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: .1em;
  color: var(--text);
  margin-bottom: 10px;
}

.value-desc {
  font-size: 16px;
  line-height: 1.74;
  color: var(--text-mid);
}

/* ══════════════════════════════════════════════════
     8. OUR VENTURES OVERVIEW
  ══════════════════════════════════════════════════ */
.ventures-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.venture-row {
  display: grid;
  grid-template-columns: 72px 1fr 200px;
  gap: 28px;
  align-items: center;
  background: var(--white);
  border: 1.5px solid var(--gold-light);
  border-radius: 16px;
  padding: 26px 28px;
  box-shadow: 0 4px 18px rgba(255, 196, 12, .08);
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}

.venture-row:hover {
  transform: translateX(6px);
  box-shadow: 0 10px 36px rgba(255, 196, 12, .16);
  border-color: var(--gold);
}

.venture-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  letter-spacing: .05em;
  color: var(--gold-light);
  line-height: 1;
  user-select: none;
  transition: color var(--trans);
}

.venture-row:hover .venture-num {
  color: var(--gold);
}

.venture-info {}

.venture-tag {
  display: inline-block;
  background: var(--gold-light);
  border-radius: 5px;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-d);
  margin-bottom: 7px;
}

.venture-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: .08em;
  color: var(--text);
  margin-bottom: 6px;
}

.venture-desc {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text-mid);
}

.venture-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.venture-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  transition: background var(--trans), transform var(--trans);
  box-shadow: 0 3px 12px rgba(255, 196, 12, .35);
}

.venture-link:hover {
  background: var(--gold-d);
  transform: translateY(-1px);
}

.venture-link svg {
  width: 13px;
  height: 13px;
}

/* ══════════════════════════════════════════════════
     9. WHAT WE STAND FOR (Mission / Vision)
  ══════════════════════════════════════════════════ */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}

.mission-card {
  border-radius: 18px;
  padding: 38px 32px;
  position: relative;
  overflow: hidden;
}

.mission-card.mission {
  background: var(--gold);
}

.mission-card.vision {
  background: var(--white);
  border: 1.5px solid var(--gold-light);
}

.mission-card::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
}

.mission-card.vision::after {
  background: rgba(255, 196, 12, .07);
}

.mc-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mission-card.vision .mc-icon {
  background: var(--gold-light);
}

.mc-icon svg {
  width: 26px;
  height: 26px;
  color: var(--text);
}

.mission-card.vision .mc-icon svg {
  color: var(--gold-d);
}

.mc-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(58, 48, 0, .65);
  margin-bottom: 8px;
}

.mission-card.vision .mc-label {
  color: var(--text-light);
}

.mc-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: .08em;
  color: var(--text);
  margin-bottom: 14px;
}

.mc-text {
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--text-mid);
}

/* third card full width */
.mission-card.values {
  background: var(--gold-pale);
  border: 1.5px solid var(--gold-light);
}

.values-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.val-pill {
  background: var(--gold);
  border-radius: 30px;
  padding: 7px 18px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--text);
}

/* ══════════════════════════════════════════════════
     10. CONTACT CHIPS ROW
  ══════════════════════════════════════════════════ */
.contact-bar {
  background: var(--gold);
  padding: 40px 0;
}

.contact-bar-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.cbar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .35);
  border-radius: 10px;
  padding: 12px 20px;
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  transition: background var(--trans), transform var(--trans);
}

.cbar-item:hover {
  background: rgba(255, 255, 255, .6);
  transform: translateY(-2px);
}

.cbar-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cbar-icon svg {
  width: 16px;
  height: 16px;
  color: var(--text);
}

.cbar-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-mid);
  display: block;
}

.cbar-val {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

/* ══════════════════════════════════════════════════
     RESPONSIVE
  ══════════════════════════════════════════════════ */
@media (max-width: 1024px) {

  .about-hero-inner,
  .legacy-grid,
  .founder-wrap {
    grid-template-columns: 1fr;
  }

  .about-hero-img {
    height: 340px;
  }

  .hero-img-badge {
    right: 16px;
  }

  .about-hero-text {
    padding-bottom: 20px;
  }

  .team-grid,
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    margin-left: 0 !important;
    justify-content: flex-start !important;
    padding-left: 52px;
  }

  .timeline-item::after {
    left: 12px !important;
    right: auto !important;
  }

  .venture-row {
    grid-template-columns: 52px 1fr;
  }

  .venture-action {
    display: none;
  }
}

@media (max-width: 680px) {
  .container {
    padding: 0 20px;
  }

  .section {
    padding: 60px 0;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .hero-chips {
    gap: 8px;
  }

  .stat-vsep {
    display: none;
  }

  .venture-row {
    grid-template-columns: 1fr;
  }

  .venture-num {
    font-size: 34px;
  }
}

/* ══════════════════════════════════════════════════════════
   QUOTE BANNER
══════════════════════════════════════════════════════════ */
.quote-banner {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background image */
.quote-banner-bg {
  position: absolute;
  inset: 0;
  background: var(--text);
  /* fallback if image missing */
}

.quote-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Dark blue overlay — matches the style in your screenshot */
.quote-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(14, 26, 54, 0.88) 0%,
      rgba(14, 26, 54, 0.78) 100%);
}

/* Text content */
.quote-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.quote-banner-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 64px);
  letter-spacing: .06em;
  color: var(--white);
  line-height: 1.2;
}

.quote-banner-text span {
  color: var(--gold);
}

/* ── Responsive ── */
@media (max-width: 680px) {
  .quote-banner {
    height: 240px;
  }
}



/* ════════════════════════════════════════════
     ROOT — matches your existing site
  ════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #FFC40C;
  --gold-d: #e0aa00;
  --gold-light: #FFF3C4;
  --gold-pale: #FFFBEA;
  --white: #ffffff;
  --cream: #fdf8ee;
  --text: #3a3000;
  --text-mid: #6b5800;
  --text-light: #a08500;
  --radius: 12px;
  --trans: 0.28s cubic-bezier(.4, 0, .2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--text);
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

/* ── Layout helpers ── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 44px;
}

.section {
  padding: 88px 0;
}

.section-white {
  background: var(--white);
}

.section-cream {
  background: var(--cream);
}

.section-gold {
  background: var(--gold-pale);
}

/* ── Section labels ── */
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-d);
  margin-bottom: 12px;
}

.sec-label::before {
  content: '';
  display: block;
  width: 26px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
}

.sec-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: .06em;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 14px;
}

.sec-title span {
  color: var(--gold-d);
}

.gold-bar {
  width: 48px;
  height: 4px;
  background: var(--gold);
  border-radius: 4px;
  margin: 14px 0 26px;
}

.gold-bar.center {
  margin: 14px auto 26px;
}

.center {
  text-align: center;
}

.center .sec-label {
  justify-content: center;
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.on,
.reveal-left.on,
.reveal-right.on {
  opacity: 1;
  transform: none;
}

/* ════════════════════════════════════════════
     1. PAGE HERO BANNER
  ════════════════════════════════════════════ */
.page-hero {
  position: relative;
  min-height: 420px;
  background: #1B2A4A;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Hero BG image */
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/md-enterprises-1.jpg');
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}

.page-hero:hover .page-hero-bg {
  transform: scale(1.04);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(108deg, rgba(14, 26, 54, .92) 0%, rgba(14, 26, 54, .65) 55%, rgba(14, 26, 54, .25) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 70px 44px 80px;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 22px;
}

.breadcrumb a {
  color: var(--gold);
  transition: opacity var(--trans);
}

.breadcrumb a:hover {
  opacity: .7;
}

.breadcrumb svg {
  width: 11px;
  height: 11px;
  color: var(--gold);
}

.hero-tag-line {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gold);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 7px;
  margin-bottom: 18px;
  width: fit-content;
}

.hero-tag-line svg {
  width: 14px;
  height: 14px;
}

.page-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 6vw, 82px);
  letter-spacing: .06em;
  line-height: 1.0;
  color: #fff;
  margin-bottom: 20px;
}

.page-hero-title span {
  color: var(--gold);
}

.page-hero-desc {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.78;
  color: rgba(255, 255, 255, .78);
  max-width: 580px;
  margin-bottom: 34px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 28px;
  border-radius: 9px;
  background: var(--gold);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  transition: background var(--trans), transform .2s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(255, 196, 12, .4);
}

.btn-gold:hover {
  background: var(--gold-d);
  border-color: var(--gold-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(255, 196, 12, .5);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 28px;
  border-radius: 9px;
  background: transparent;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, .45);
  transition: background var(--trans), border-color var(--trans), transform .2s;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .1);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-gold svg,
.btn-ghost svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* Hero stat chips */
.hero-stat-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gold);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.hero-stat {
  padding: 14px 36px;
  text-align: center;
  border-right: 1px solid rgba(58, 48, 0, .15);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: .07em;
  color: var(--text);
  display: block;
  line-height: 1;
}

.hero-stat span {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-mid);
}

/* ════════════════════════════════════════════
     2. INTRO — text left, image right
  ════════════════════════════════════════════ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 68px;
  align-items: center;
}

.intro-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(255, 196, 12, .18), 0 6px 18px rgba(0, 0, 0, .07);
}

.intro-img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform .6s ease;
}

.intro-img-wrap:hover img {
  transform: scale(1.04);
}

.img-badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: var(--gold);
  padding: 12px 20px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
}

.img-badge strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: .07em;
  color: var(--text);
  display: block;
  line-height: 1;
}

.img-badge span {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.intro-text p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 17px;
}

.intro-text p.lead {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 22px 0 28px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  flex-shrink: 0;
  background: var(--gold-light);
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans);
}

.feature-item:hover .feature-icon {
  background: var(--gold);
}

.feature-icon svg {
  width: 16px;
  height: 16px;
  color: var(--gold-d);
}

.feature-item:hover .feature-icon svg {
  color: var(--text);
}

.feature-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.feature-desc {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.5;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gold-pale);
  border: 1.5px solid var(--gold-light);
  border-radius: 8px;
  padding: 9px 16px;
  margin: 4px 4px 0 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-mid);
  transition: background var(--trans), transform var(--trans);
}

.contact-chip:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.contact-chip svg {
  width: 13px;
  height: 13px;
  color: var(--gold-d);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════
     3. PHOTO GALLERY — 5 images
     Layout: 1 big hero + 4 in 2x2 grid
  ════════════════════════════════════════════ */
.gallery-section {
  background: var(--white);
  padding: 88px 0;
}

.gallery-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 48px;
}

/* First image spans full width */
.gal-hero {
  grid-column: 1 / -1;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 40px rgba(255, 196, 12, .16);
  border: 2px solid var(--gold-light);
}

.gal-hero img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform .55s ease;
}

.gal-hero:hover img {
  transform: scale(1.03);
}

/* 2x2 sub-grid for images 2-5 */
.gallery-sub {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 16px;
}

.gal-item {
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--gold-light);
  box-shadow: 0 6px 24px rgba(255, 196, 12, .1);
  position: relative;
  cursor: pointer;

}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.gal-item:hover img {
  transform: scale(1.06);
}

.gal-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255, 196, 12, .22) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--trans);
}

.gal-item:hover .gal-item-overlay {
  opacity: 1;
}

/* Floating label on hero */
.gal-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--gold);
  padding: 8px 16px;
  border-radius: 8px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: .1em;
  color: var(--text);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .12);
  display: flex;
  align-items: center;
  gap: 7px;
}

.gal-label svg {
  width: 14px;
  height: 14px;
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(20, 15, 0, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  backdrop-filter: blur(6px);
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lb-inner {
  position: relative;
  max-width: 88vw;
  max-height: 88vh;
}

.lb-inner img {
  border-radius: 12px;
  max-width: 88vw;
  max-height: 82vh;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .5);
}

.lb-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--gold-d);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: var(--text);
  box-shadow: 0 4px 14px rgba(255, 196, 12, .4);
  transition: transform var(--trans);
}

.lb-close:hover {
  transform: scale(1.1) rotate(90deg);
}

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--gold-d);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(255, 196, 12, .4);
  transition: transform var(--trans), background var(--trans);
}

.lb-nav:hover {
  background: var(--gold-d);
}

.lb-nav svg {
  width: 20px;
  height: 20px;
  color: var(--text);
}

.lb-prev {
  left: -60px;
}

.lb-next {
  right: -60px;
}

.lb-counter {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
}

/* ════════════════════════════════════════════
     4. UNITS — Unit 1 & Unit 2
  ════════════════════════════════════════════ */
.units-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}

.unit-card {
  background: var(--white);
  border-radius: 20px;
  border: 1.5px solid var(--gold-light);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(255, 196, 12, .1);
  transition: transform var(--trans), box-shadow var(--trans);
}

.unit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(255, 196, 12, .2);
}

.unit-card-header {
  background: var(--gold);
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.unit-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  letter-spacing: .06em;
  color: var(--text);
  line-height: 1;
}

.unit-badge {
  background: rgba(255, 255, 255, .35);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text);
}

.unit-body {
  padding: 26px 28px 30px;
}

.unit-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: .08em;
  color: var(--text);
  margin-bottom: 10px;
}

.unit-desc {
  font-size: 16px;
  line-height: 1.78;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.unit-specs {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.unit-spec {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--text-mid);
}

.spec-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.unit-spec strong {
  color: var(--text);
  font-weight: 600;
}

/* ════════════════════════════════════════════
     5. WHY CHOOSE US — Icon cards row
  ════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.why-card {
  background: var(--white);
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  border: 1.5px solid var(--gold-light);
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(255, 196, 12, .18);
  border-color: var(--gold);
}

.why-icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: background var(--trans);
}

.why-card:hover .why-icon {
  background: var(--gold);
}

.why-icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold-d);
}

.why-card:hover .why-icon svg {
  color: var(--text);
}

.why-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: .08em;
  color: var(--text);
  margin-bottom: 8px;
}

.why-desc {
  font-size: 16px;
  line-height: 1.72;
  color: var(--text-mid);
}

/* ════════════════════════════════════════════
     6. LOCATION & CONTACT SECTION
  ════════════════════════════════════════════ */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}

.map-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid var(--gold-light);
  box-shadow: 0 10px 36px rgba(255, 196, 12, .14);
}

.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  background: var(--white);
  border: 1.5px solid var(--gold-light);
  border-radius: 14px;
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}

.contact-card:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 28px rgba(255, 196, 12, .16);
  border-color: var(--gold);
}

.cc-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  flex-shrink: 0;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans);
}

.contact-card:hover .cc-icon {
  background: var(--gold);
}

.cc-icon svg {
  width: 18px;
  height: 18px;
  color: var(--gold-d);
}

.contact-card:hover .cc-icon svg {
  color: var(--text);
}

.cc-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 3px;
}

.cc-val {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-mid);
}

.cc-val a {
  color: var(--text-mid);
  transition: color var(--trans);
}

.cc-val a:hover {
  color: var(--text);
}

/* ════════════════════════════════════════════
     7. CTA BANNER
  ════════════════════════════════════════════ */
.cta-banner {
  background: var(--gold);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-inner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 58px);
  letter-spacing: .08em;
  color: var(--text);
  margin-bottom: 12px;
}

.cta-inner p {
  font-size: 16px;
  color: var(--text-mid);
  font-weight: 500;
  margin-bottom: 32px;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 32px;
  border-radius: 9px;
  background: var(--text);
  color: var(--gold);
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  border: 2px solid var(--text);
  transition: background var(--trans), transform .2s;
  box-shadow: 0 5px 18px rgba(0, 0, 0, .15);
}

.btn-dark:hover {
  background: var(--text-mid);
  transform: translateY(-2px);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 32px;
  border-radius: 9px;
  background: transparent;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  border: 2px solid var(--text);
  transition: background var(--trans), transform .2s;
}

.btn-outline-dark:hover {
  background: rgba(58, 48, 0, .1);
  transform: translateY(-2px);
}

.btn-dark svg,
.btn-outline-dark svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════
     RESPONSIVE
  ════════════════════════════════════════════ */
@media (max-width: 1000px) {

  .intro-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .units-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lb-prev {
    left: -50px;
  }

  .lb-next {
    right: -50px;
  }
}

@media (max-width: 680px) {
  .container {
    padding: 0 20px;
  }

  .section {
    padding: 60px 0;
  }

  .page-hero-content {
    padding: 60px 20px 70px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .gallery-sub {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-sub .gal-item {
    height: 400px;
  }

  .gal-hero img {
    height: 260px;
  }

  .hero-stat-bar {
    position: relative;
  }

  .hero-stat {
    padding: 12px 20px;
  }

  .lb-prev {
    left: -44px;
  }

  .lb-next {
    right: -44px;
  }
}


/* ════════════════════════════════════════════
   JOY ENTERPRISES — Additional Styles
   (All other styles reuse md-enterprises CSS)
════════════════════════════════════════════ */

/* Leader section grid */
.joy-leader-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 68px;
  align-items: start;
}

.joy-img-col {
  position: relative;
}

/* Services grid — dark cards like construction section */
.joy-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.joy-service-card {
  background: var(--white);
  border: 1.5px solid var(--gold-light);
  border-radius: 18px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}

.joy-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(255, 196, 12, .18);
  border-color: var(--gold);
}

.joy-service-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  letter-spacing: .04em;
  color: var(--gold-light);
  line-height: 1;
  transition: color var(--trans);
}

.joy-service-card:hover .joy-service-num {
  color: var(--gold);
}

.joy-service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--gold-light);
  border: 1.5px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--trans);
}

.joy-service-card:hover .joy-service-icon {
  background: var(--gold);
}

.joy-service-icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold-d);
  transition: color var(--trans);
}

.joy-service-card:hover .joy-service-icon svg {
  color: var(--text);
}

.joy-service-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: .08em;
  color: var(--text);
  margin-bottom: 12px;
}

.joy-service-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.joy-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.joy-service-tags span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-d);
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  border-radius: 5px;
  padding: 4px 10px;
  transition: background var(--trans);
}

.joy-service-card:hover .joy-service-tags span {
  background: var(--gold-light);
}

/* Responsive */
@media (max-width: 1024px) {
  .joy-leader-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}







/* ════════════════════════════════════════════
   JABAMALAI AVENUE — Additional Styles
════════════════════════════════════════════ */

/* Location Advantages Grid */
.jab-advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.jab-advantage-card {
  background: var(--white);
  border-radius: 18px;
  padding: 32px 26px;
  border: 1.5px solid var(--gold-light);
  text-align: center;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}

.jab-advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 44px rgba(255, 196, 12, .18);
  border-color: var(--gold);
}

.jab-adv-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: background var(--trans);
}

.jab-advantage-card:hover .jab-adv-icon {
  background: var(--gold);
}

.jab-adv-icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold-d);
  transition: color var(--trans);
}

.jab-advantage-card:hover .jab-adv-icon svg {
  color: var(--text);
}

.jab-adv-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 19px;
  letter-spacing: .08em;
  color: var(--text);
  margin-bottom: 10px;
}

.jab-adv-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-mid);
}

/* Responsive */
@media (max-width: 1024px) {
  .jab-advantages-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .jab-advantages-grid {
    grid-template-columns: 1fr;
  }
}





/* ════════════════════════════════
       PAGE HERO
    ════════════════════════════════ */
.page-hero {
  position: relative;
  min-height: 420px;
  background: #1B2A4A;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}

.page-hero:hover .page-hero-bg {
  transform: scale(1.04);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(108deg, rgba(14, 26, 54, .88) 0%, rgba(14, 26, 54, .6) 55%, rgba(10, 40, 10, .3) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 70px 44px 100px;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 22px;
}

.breadcrumb a {
  color: var(--gold);
  transition: opacity var(--trans);
}

.breadcrumb a:hover {
  opacity: .7;
}

.breadcrumb svg {
  width: 11px;
  height: 11px;
  color: var(--gold);
}

.hero-tag-line {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gold);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 7px;
  margin-bottom: 18px;
  width: fit-content;
}

.hero-tag-line svg {
  width: 14px;
  height: 14px;
}

.page-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 6vw, 82px);
  letter-spacing: .06em;
  line-height: 1.0;
  color: #fff;
  margin-bottom: 20px;
}

.page-hero-title span {
  color: var(--gold);
}

.page-hero-desc {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.78;
  color: rgba(255, 255, 255, .78);
  max-width: 580px;
  margin-bottom: 34px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 28px;
  border-radius: 9px;
  background: var(--gold);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  transition: background var(--trans), transform .2s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(255, 196, 12, .4);
}

.btn-gold:hover {
  background: var(--gold-d);
  border-color: var(--gold-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(255, 196, 12, .5);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 28px;
  border-radius: 9px;
  background: transparent;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, .45);
  transition: background var(--trans), border-color var(--trans), transform .2s;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .1);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-gold svg,
.btn-ghost svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.hero-stat-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gold);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stat {
  padding: 14px 36px;
  text-align: center;
  border-right: 1px solid rgba(58, 48, 0, .15);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: .07em;
  color: var(--text);
  display: block;
  line-height: 1;
}

.hero-stat span {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-mid);
}

/* ════════════════════════════════
       INTRO GRID
    ════════════════════════════════ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 68px;
  align-items: center;
}

.intro-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(255, 196, 12, .18), 0 6px 18px rgba(0, 0, 0, .07);
}

.intro-img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform .6s ease;
}

.intro-img-wrap:hover img {
  transform: scale(1.04);
}

.img-badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: var(--gold);
  padding: 12px 20px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
}

.img-badge strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: .07em;
  color: var(--text);
  display: block;
  line-height: 1;
}

.img-badge span {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.intro-text p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 17px;
}

.intro-text p.lead {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 22px 0 28px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  flex-shrink: 0;
  background: var(--gold-light);
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans);
}

.feature-item:hover .feature-icon {
  background: var(--gold);
}

.feature-icon svg {
  width: 16px;
  height: 16px;
  color: var(--gold-d);
}

.feature-item:hover .feature-icon svg {
  color: var(--text);
}

.feature-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.feature-desc {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.5;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gold-pale);
  border: 1.5px solid var(--gold-light);
  border-radius: 8px;
  padding: 9px 16px;
  margin: 4px 4px 0 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-mid);
  transition: background var(--trans), transform var(--trans);
}

.contact-chip:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.contact-chip svg {
  width: 13px;
  height: 13px;
  color: var(--gold-d);
  flex-shrink: 0;
}

/* ════════════════════════════════
       FRUITS GRID
    ════════════════════════════════ */
.fruits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.fruit-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid var(--gold-light);
  box-shadow: 0 6px 24px rgba(255, 196, 12, .1);
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  text-align: center;
}

.fruit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(255, 196, 12, .2);
  border-color: var(--gold);
}

.fruit-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .5s ease;
}

.fruit-card:hover .fruit-card-img {
  transform: scale(1.06);
}

.fruit-card-img-wrap {
  overflow: hidden;
}

.fruit-card-body {
  padding: 22px 20px 26px;
}

.fruit-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: background var(--trans);
}

.fruit-card:hover .fruit-card-icon {
  background: var(--gold);
}

.fruit-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold-d);
}

.fruit-card:hover .fruit-card-icon svg {
  color: var(--text);
}

.fruit-card-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: .08em;
  color: var(--text);
  margin-bottom: 8px;
}

.fruit-card-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-mid);
}

.fruit-card-tag {
  display: inline-block;
  background: var(--gold-light);
  border-radius: 5px;
  padding: 3px 10px;
  margin-top: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-d);
}

/* ════════════════════════════════
       GALLERY
    ════════════════════════════════ */
.gallery-section {
  background: var(--white);
  padding: 88px 0;
}

.gallery-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}

.gal-hero {
  grid-column: 1 / -1;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 12px 40px rgba(255, 196, 12, .16);
  border: 2px solid var(--gold-light);
}

.gal-hero img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform .55s ease;
}

.gal-hero:hover img {
  transform: scale(1.03);
}

.gallery-sub {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 16px;
}

.gal-item {
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--gold-light);
  box-shadow: 0 6px 24px rgba(255, 196, 12, .1);
  position: relative;
  cursor: pointer;
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.gal-item:hover img {
  transform: scale(1.06);
}

.gal-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255, 196, 12, .22) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--trans);
}

.gal-item:hover .gal-item-overlay {
  opacity: 1;
}

.gal-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--gold);
  padding: 8px 16px;
  border-radius: 8px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: .1em;
  color: var(--text);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .12);
  display: flex;
  align-items: center;
  gap: 7px;
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(20, 15, 0, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  backdrop-filter: blur(6px);
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lb-inner {
  position: relative;
  max-width: 88vw;
  max-height: 88vh;
}

.lb-inner img {
  border-radius: 12px;
  max-width: 88vw;
  max-height: 82vh;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .5);
}

.lb-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--gold-d);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: var(--text);
  box-shadow: 0 4px 14px rgba(255, 196, 12, .4);
  transition: transform var(--trans);
}

.lb-close:hover {
  transform: scale(1.1) rotate(90deg);
}

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--gold-d);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(255, 196, 12, .4);
  transition: transform var(--trans), background var(--trans);
}

.lb-nav:hover {
  background: var(--gold-d);
}

.lb-nav svg {
  width: 20px;
  height: 20px;
  color: var(--text);
}

.lb-prev {
  left: -60px;
}

.lb-next {
  right: -60px;
}

.lb-counter {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
}

/* ════════════════════════════════
       LOCATIONS — TWO FARMS
    ════════════════════════════════ */
.farms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}

.farm-card {
  background: var(--white);
  border-radius: 20px;
  border: 1.5px solid var(--gold-light);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(255, 196, 12, .1);
  transition: transform var(--trans), box-shadow var(--trans);
}

.farm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(255, 196, 12, .2);
}

.farm-card-header {
  background: var(--gold);
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.farm-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: .08em;
  color: var(--text);
  line-height: 1;
}

.farm-badge {
  background: rgba(255, 255, 255, .35);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text);
}

.farm-body {
  padding: 26px 28px 28px;
}

.farm-map {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1.5px solid var(--gold-light);
}

.farm-map iframe {
  width: 100%;
  height: 220px;
  border: none;
  display: block;
}

.farm-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.farm-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 17px;
  color: var(--text-mid);
}

.farm-detail-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}

.farm-detail strong {
  color: var(--text);
  font-weight: 600;
}

/* ════════════════════════════════
       WHY GRID
    ════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.why-card {
  background: var(--white);
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  border: 1.5px solid var(--gold-light);
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(255, 196, 12, .18);
  border-color: var(--gold);
}

.why-icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: background var(--trans);
}

.why-card:hover .why-icon {
  background: var(--gold);
}

.why-icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold-d);
}

.why-card:hover .why-icon svg {
  color: var(--text);
}

.why-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: .08em;
  color: var(--text);
  margin-bottom: 8px;
}

.why-desc {
  font-size: 16px;
  line-height: 1.72;
  color: var(--text-mid);
}

/* ════════════════════════════════
       CTA BANNER
    ════════════════════════════════ */
.cta-banner {
  background: var(--gold);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-inner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 58px);
  letter-spacing: .08em;
  color: var(--text);
  margin-bottom: 12px;
}

.cta-inner p {
  font-size: 16px;
  color: var(--text-mid);
  font-weight: 500;
  margin-bottom: 32px;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 32px;
  border-radius: 9px;
  background: var(--text);
  color: var(--gold);
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  border: 2px solid var(--text);
  transition: background var(--trans), transform .2s;
  box-shadow: 0 5px 18px rgba(0, 0, 0, .15);
}

.btn-dark:hover {
  background: var(--text-mid);
  transform: translateY(-2px);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 32px;
  border-radius: 9px;
  background: transparent;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  border: 2px solid var(--text);
  transition: background var(--trans), transform .2s;
}

.btn-outline-dark:hover {
  background: rgba(58, 48, 0, .1);
  transform: translateY(-2px);
}

.btn-dark svg,
.btn-outline-dark svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* ════════════════════════════════
       FOOTER (reuse your existing)
    ════════════════════════════════ */
footer {
  background: var(--white);
  border-top: 4px solid var(--gold);
  box-shadow: 0 -4px 30px rgba(255, 196, 12, .12);
}

.footer-body {
  max-width: 1320px;
  margin: 0 auto;
  padding: 60px 36px 44px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  margin-bottom: 20px;
}

.f-logo-wrap {
  width: 70px;
  height: 70px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 0 0 3px var(--gold-light);
  flex-shrink: 0;
  transition: box-shadow var(--trans);
}

.brand-row:hover .f-logo-wrap {
  box-shadow: 0 0 0 5px rgba(255, 196, 12, .4);
}

.f-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.f-logo-wrap .monogram {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--text);
  letter-spacing: .04em;
}

.f-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.f-brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: .12em;
  color: var(--text);
  margin-left: 30px;
}

.f-brand-name span {
  color: var(--gold-d);
}

.f-brand-tagline {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-top: 3px;
}

.footer-desc {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 310px;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--gold-pale);
  border: 1.5px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  text-decoration: none;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
}

.social-btn:hover {
  background: var(--gold);
  color: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(255, 196, 12, .4);
  border-color: var(--gold);
}

.social-btn svg {
  width: 15px;
  height: 15px;
}

.col-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  letter-spacing: .12em;
  color: var(--text);
  margin-bottom: 6px;
}

.col-underline {
  width: 36px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-links li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 7px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: background var(--trans), color var(--trans), padding-left var(--trans);
}

.footer-links li a:hover {
  background: var(--gold-pale);
  color: var(--text);
  padding-left: 14px;
}

.footer-links li a .fl-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  transition: transform var(--trans);
}

.footer-links li a:hover .fl-dot {
  transform: scale(1.4);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-icon svg {
  width: 14px;
  height: 14px;
  color: var(--gold-d);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.contact-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-light);
}

.contact-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  line-height: 1.5;
  transition: color var(--trans);
}

a.contact-value:hover {
  color: var(--text);
}

.newsletter-strip {
  background: var(--gold-pale);
  border-top: 1.5px solid var(--gold-light);
  border-bottom: 1.5px solid var(--gold-light);
  padding: 22px 36px;
}

.newsletter-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.newsletter-text {
  flex: 1;
  min-width: 200px;
}

.newsletter-text h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: .1em;
  color: var(--text);
  margin-bottom: 2px;
}

.newsletter-text p {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 500;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex: 1;
  min-width: 280px;
  max-width: 420px;
}

.newsletter-input {
  flex: 1;
  padding: 0 16px;
  height: 42px;
  border: 1.5px solid var(--gold-light);
  border-radius: var(--radius);
  background: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  color: var(--text);
  outline: none;
  transition: border-color var(--trans), box-shadow var(--trans);
}

.newsletter-input::placeholder {
  color: var(--text-light);
}

.newsletter-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 196, 12, .15);
}

.newsletter-btn {
  padding: 0 20px;
  height: 42px;
  background: var(--gold);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--trans), transform var(--trans);
}

.newsletter-btn:hover {
  background: var(--gold-d);
  transform: translateY(-1px);
}

.footer-bottom {
  background: var(--gold);
  padding: 14px 36px;
}

.footer-bottom-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-copy {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .03em;
}

.footer-copy span {
  opacity: .65;
  font-weight: 500;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  letter-spacing: .04em;
  opacity: .7;
  transition: opacity var(--trans);
}

.footer-bottom-links a:hover {
  opacity: 1;
}

/* ════════════════════════════════
       RESPONSIVE
    ════════════════════════════════ */
@media (max-width: 1024px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .fruits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .farms-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-body {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    padding: 0 20px;
  }

  .section {
    padding: 60px 0;
  }

  .page-hero-content {
    padding: 60px 20px 70px;
  }

  .fruits-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .gallery-sub {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-sub .gal-item {
    height: 400px;
  }

  .gal-hero img {
    height: 260px;
  }

  .hero-stat-bar {
    position: relative;
  }

  .hero-stat {
    padding: 12px 20px;
  }

  .footer-body {
    grid-template-columns: 1fr;
    padding: 40px 20px 28px;
  }

  .newsletter-strip {
    padding: 20px;
  }

  .footer-bottom {
    padding: 12px 20px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}




/* ── Layout ── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 44px;
}

.section {
  padding: 88px 0;
}

.section-white {
  background: var(--white);
}

.section-cream {
  background: var(--cream);
}

.section-gold {
  background: var(--gold-pale);
}

/* ── Labels & headings ── */
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-d);
  margin-bottom: 12px;
}

.sec-label::before {
  content: '';
  display: block;
  width: 26px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
}

.sec-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: .06em;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 14px;
}

.sec-title span {
  color: var(--gold-d);
}

.gold-bar {
  width: 48px;
  height: 4px;
  background: var(--gold);
  border-radius: 4px;
  margin: 14px 0 26px;
}

.gold-bar.center {
  margin: 14px auto 26px;
}

.center {
  text-align: center;
}

.center .sec-label {
  justify-content: center;
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.on,
.reveal-left.on,
.reveal-right.on {
  opacity: 1;
  transform: none;
}

/* ════════════════════════════════════════
     1. PAGE HERO
  ════════════════════════════════════════ */
.career-hero {
  position: relative;
  background: #1B2A4A;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.career-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/career-hero.jpg');
  background-size: cover;
  background-position: center;
}

.career-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(108deg, rgba(14, 26, 54, .92) 0%, rgba(14, 26, 54, .62) 55%, rgba(14, 26, 54, .28) 100%);
}

.career-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 44px 90px;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 22px;
}

.breadcrumb a {
  color: var(--gold);
}

.breadcrumb svg {
  width: 11px;
  height: 11px;
  color: var(--gold);
}

.hero-tag-line {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 7px;
  margin-bottom: 18px;
  width: fit-content;
}

.hero-tag-line svg {
  width: 14px;
  height: 14px;
}

.career-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 6.5vw, 84px);
  letter-spacing: .06em;
  line-height: 1.0;
  color: #fff;
  margin-bottom: 20px;
}

.career-hero-title span {
  color: var(--gold);
}

.career-hero-desc {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.78;
  color: rgba(255, 255, 255, .78);
  max-width: 560px;
  margin-bottom: 34px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 28px;
  border-radius: 9px;
  background: var(--gold);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  transition: background var(--trans), transform .2s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(255, 196, 12, .4);
}

.btn-gold:hover {
  background: var(--gold-d);
  border-color: var(--gold-d);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 28px;
  border-radius: 9px;
  background: transparent;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, .45);
  transition: background var(--trans), border-color var(--trans), transform .2s;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .1);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-gold svg,
.btn-ghost svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* Gold bottom bar */
.hero-gold-line {
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
}

/* ════════════════════════════════════════
     2. WHY JOIN US
  ════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.why-card {
  background: var(--white);
  border-radius: 18px;
  padding: 32px 26px;
  border: 1.5px solid var(--gold-light);
  text-align: center;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(255, 196, 12, .2);
  border-color: var(--gold);
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: background var(--trans);
}

.why-card:hover .why-icon {
  background: var(--gold);
}

.why-icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold-d);
}

.why-card:hover .why-icon svg {
  color: var(--text);
}

.why-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 19px;
  letter-spacing: .08em;
  color: var(--text);
  margin-bottom: 10px;
}

.why-desc {
  font-size: 16px;
  line-height: 1.74;
  color: var(--text-mid);
}

/* ════════════════════════════════════════
     3. CURRENT OPENINGS
  ════════════════════════════════════════ */
/* Filter tabs */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-tab {
  padding: 9px 22px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid var(--gold-light);
  background: var(--white);
  color: var(--text-mid);
  transition: background var(--trans), color var(--trans), border-color var(--trans), transform .15s;
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--gold);
  color: var(--text);
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255, 196, 12, .35);
}

/* Job cards */
.jobs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.job-card {
  background: var(--white);
  border-radius: 18px;
  border: 1.5px solid var(--gold-light);
  padding: 28px 28px 24px;
  box-shadow: 0 4px 18px rgba(255, 196, 12, .08);
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  position: relative;
  overflow: hidden;
}

.job-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold-light);
  border-radius: 4px 0 0 4px;
  transition: background var(--trans);
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(255, 196, 12, .18);
  border-color: var(--gold);
}

.job-card:hover::before {
  background: var(--gold);
}

.job-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.job-dept {
  display: inline-block;
  background: var(--gold-light);
  border-radius: 6px;
  padding: 3px 11px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-d);
  margin-bottom: 8px;
}

.job-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: .07em;
  color: var(--text);
}

.job-type-badge {
  background: var(--gold);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
}

.job-type-badge.part-time {
  background: var(--gold-light);
  color: var(--text-mid);
}

.job-type-badge.internship {
  background: #d4f5d4;
  color: #1a6b1a;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.job-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-light);
}

.job-meta-item svg {
  width: 13px;
  height: 13px;
  color: var(--gold-d);
}

.job-desc {
  font-size: 17px;
  line-height: 1.72;
  color: var(--text-mid);
  margin-bottom: 18px;
}

.job-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 20px;
}

.skill-tag {
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  border-radius: 5px;
  padding: 3px 10px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-mid);
}

.job-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.job-posted {
  font-size: 11.5px;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: .04em;
}

.btn-apply {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background var(--trans), transform .15s, box-shadow .15s;
  box-shadow: 0 3px 12px rgba(255, 196, 12, .35);
}

.btn-apply:hover {
  background: var(--gold-d);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255, 196, 12, .45);
}

.btn-apply svg {
  width: 13px;
  height: 13px;
}

/* No openings state */
.no-jobs {
  display: none;
  text-align: center;
  padding: 60px 20px;
}

.no-jobs.show {
  display: block;
}

.no-jobs svg {
  width: 56px;
  height: 56px;
  color: var(--gold-light);
  margin: 0 auto 16px;
}

.no-jobs h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: .08em;
  color: var(--text);
  margin-bottom: 8px;
}

.no-jobs p {
  font-size: 14px;
  color: var(--text-mid);
}

/* ════════════════════════════════════════
     4. LIFE AT MD GROUPS
  ════════════════════════════════════════ */
.life-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.life-img-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  position: relative;
}

.life-img {
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid var(--gold-light);
  box-shadow: 0 6px 22px rgba(255, 196, 12, .12);
}

.life-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform .5s ease;
}

.life-img:hover img {
  transform: scale(1.06);
}

.life-img.tall {
  grid-row: span 2;
}

.life-img.tall img {
  height: 100%;
  min-height: 374px;
}

.life-text p {
  font-size: 17px;
  line-height: 1.84;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.life-text p.lead {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
}

.culture-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.culture-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-light);
  border-radius: 7px;
  padding: 7px 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: .05em;
}

.culture-tag svg {
  width: 13px;
  height: 13px;
  color: var(--gold-d);
}

/* ════════════════════════════════════════
     5. APPLICATION FORM
  ════════════════════════════════════════ */
.form-wrap {
  background: var(--white);
  border-radius: 22px;
  border: 1.5px solid var(--gold-light);
  box-shadow: 0 12px 48px rgba(255, 196, 12, .12);
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
}

.form-header {
  background: var(--gold);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.form-header-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-header-icon svg {
  width: 24px;
  height: 24px;
  color: var(--text);
}

.form-header h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: .1em;
  color: var(--text);
  line-height: 1;
}

.form-header p {
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 500;
  margin-top: 3px;
}

.form-body {
  padding: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.form-row.full {
  grid-template-columns: 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-light);
}

.form-input,
.form-select,
.form-textarea {
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1.5px solid var(--gold-light);
  background: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
  width: 100%;
  transition: border-color var(--trans), box-shadow var(--trans);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 196, 12, .15);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-light);
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

/* File upload */
.file-drop {
  border: 2px dashed var(--gold-light);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--trans), background var(--trans);
  background: var(--gold-pale);
}

.file-drop:hover {
  border-color: var(--gold);
  background: var(--gold-light);
}

.file-drop svg {
  width: 32px;
  height: 32px;
  color: var(--gold-d);
  margin: 0 auto 10px;
}

.file-drop p {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-mid);
}

.file-drop span {
  font-size: 11.5px;
  color: var(--text-light);
}

.file-drop input {
  display: none;
}

#fileName {
  font-size: 12px;
  color: var(--gold-d);
  font-weight: 600;
  margin-top: 6px;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 6px;
}

.form-note {
  font-size: 12.5px;
  color: var(--text-light);
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--trans), transform .2s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(255, 196, 12, .4);
}

.btn-submit:hover {
  background: var(--gold-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(255, 196, 12, .5);
}

.btn-submit svg {
  width: 16px;
  height: 16px;
}

/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: 48px 36px;
}

.form-success.show {
  display: block;
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold-light);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.success-icon svg {
  width: 34px;
  height: 34px;
  color: var(--gold-d);
}

.form-success h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: .08em;
  color: var(--text);
  margin-bottom: 10px;
}

.form-success p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ════════════════════════════════════════
     6. HIRING PROCESS STEPS
  ════════════════════════════════════════ */
.steps-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 52px;
  position: relative;
}

.steps-row::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 3px;
  background: var(--gold-light);
  z-index: 0;
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 8px;
}

.step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--text-light);
  letter-spacing: .06em;
  transition: background var(--trans), border-color var(--trans), color var(--trans), box-shadow var(--trans);
}

.step-item:hover .step-circle,
.step-item.active .step-circle {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--text);
  box-shadow: 0 6px 20px rgba(255, 196, 12, .4);
}

.step-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
}

.step-desc {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.55;
}

/* ════════════════════════════════════════
     7. FAQ
  ════════════════════════════════════════ */
.faq-list {
  max-width: 820px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--gold-light);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow var(--trans), border-color var(--trans);
}

.faq-item:hover {
  box-shadow: 0 6px 24px rgba(255, 196, 12, .14);
  border-color: var(--gold);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  gap: 12px;
  user-select: none;
}

.faq-q-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--gold-light);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans), transform var(--trans);
}

.faq-icon svg {
  width: 16px;
  height: 16px;
  color: var(--gold-d);
  transition: transform var(--trans);
}

.faq-item.open .faq-icon {
  background: var(--gold);
}

.faq-item.open .faq-icon svg {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  padding: 0 22px;
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.78;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 22px 20px;
}

/* ════════════════════════════════════════
     8. CTA BANNER
  ════════════════════════════════════════ */
.cta-banner {
  background: var(--gold);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-inner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 58px);
  letter-spacing: .08em;
  color: var(--text);
  margin-bottom: 12px;
}

.cta-inner p {
  font-size: 16px;
  color: var(--text-mid);
  font-weight: 500;
  margin-bottom: 32px;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 32px;
  border-radius: 9px;
  background: var(--text);
  color: var(--gold);
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  border: 2px solid var(--text);
  transition: background var(--trans), transform .2s;
  box-shadow: 0 5px 18px rgba(0, 0, 0, .15);
}

.btn-dark:hover {
  background: var(--text-mid);
  transform: translateY(-2px);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 32px;
  border-radius: 9px;
  background: transparent;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  border: 2px solid var(--text);
  transition: background var(--trans), transform .2s;
}

.btn-outline-dark:hover {
  background: rgba(58, 48, 0, .1);
  transform: translateY(-2px);
}

.btn-dark svg,
.btn-outline-dark svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* ════════════════════════════════════════
     RESPONSIVE
  ════════════════════════════════════════ */
@media (max-width: 1000px) {
  .life-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .steps-row {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .steps-row::before {
    display: none;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    padding: 0 20px;
  }

  .section {
    padding: 60px 0;
  }

  .career-hero-content {
    padding: 60px 20px 70px;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-body {
    padding: 24px 20px;
  }

  .form-header {
    padding: 22px 20px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .steps-row {
    grid-template-columns: 1fr;
  }

  .life-img-collage {
    grid-template-columns: 1fr;
  }

  .life-img.tall img {
    min-height: 220px;
  }
}



/* ══════════════════════
     HERO — compact
  ══════════════════════ */
.contact-hero {
  background: var(--white);
  border-bottom: 4px solid var(--gold);
  padding: 56px 0 52px;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg,
      rgba(255, 196, 12, .05) 0px, rgba(255, 196, 12, .05) 1px,
      transparent 1px, transparent 28px);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 14px;
}

.breadcrumb a {
  color: var(--gold-d);
}

.breadcrumb svg {
  width: 10px;
  height: 10px;
  color: var(--gold);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-d);
  margin-bottom: 12px;
}

.hero-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
}

.contact-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: .07em;
  line-height: 1;
  color: var(--text);
  margin-bottom: 12px;
}

.contact-hero h1 span {
  color: var(--gold-d);
}

.contact-hero p {
  font-size: 16px;
  line-height: 1.74;
  color: var(--text-mid);
  max-width: 420px;
}

/* Quick contact pill row */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-pale);
  border: 1.5px solid var(--gold-light);
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  transition: background var(--trans), transform var(--trans);
}

.hero-pill:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.hero-pill svg {
  width: 14px;
  height: 14px;
  color: var(--gold-d);
  flex-shrink: 0;
}

/* ══════════════════════
     MAIN GRID
  ══════════════════════ */
.contact-main {
  padding: 64px 0 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

/* ── Left: info cards + map ── */
.info-col {}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.info-card {
  background: var(--white);
  border-radius: 14px;
  border: 1.5px solid var(--gold-light);
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 4px 16px rgba(255, 196, 12, .08);
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}

.info-card:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 28px rgba(255, 196, 12, .16);
  border-color: var(--gold);
}

.ic-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  flex-shrink: 0;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans);
}

.info-card:hover .ic-icon {
  background: var(--gold);
}

.ic-icon svg {
  width: 17px;
  height: 17px;
  color: var(--gold-d);
}

.info-card:hover .ic-icon svg {
  color: var(--text);
}

.ic-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 3px;
}

.ic-val {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-mid);
  line-height: 1.5;
}

.ic-val a {
  color: var(--text-mid);
  transition: color var(--trans);
}

.ic-val a:hover {
  color: var(--text);
}

/* Venture contacts */
.venture-contacts {
  background: var(--white);
  border-radius: 16px;
  border: 1.5px solid var(--gold-light);
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 4px 16px rgba(255, 196, 12, .08);
}

.vc-header {
  background: var(--gold);
  padding: 13px 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: .12em;
  color: var(--text);
}

.vc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  gap: 12px;
  border-bottom: 1px solid var(--gold-light);
  transition: background var(--trans);
}

.vc-row:last-child {
  border-bottom: none;
}

.vc-row:hover {
  background: var(--gold-pale);
}

.vc-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
}

.vc-links {
  display: flex;
  gap: 8px;
}

.vc-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  border-radius: 6px;
  padding: 5px 11px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
  transition: background var(--trans);
}

.vc-link:hover {
  background: var(--gold);
  color: var(--text);
  border-color: var(--gold);
}

.vc-link svg {
  width: 11px;
  height: 11px;
}

/* Map */
.map-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid var(--gold-light);
  box-shadow: 0 6px 22px rgba(255, 196, 12, .12);
}

.map-wrap iframe {
  width: 100%;
  height: 240px;
  border: none;
  display: block;
}

/* ── Right: form ── */
.form-col {}

.form-box {
  background: var(--white);
  border-radius: 20px;
  border: 1.5px solid var(--gold-light);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(255, 196, 12, .12);
}

.form-hdr {
  background: var(--gold);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-hdr-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(255, 255, 255, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-hdr-icon svg {
  width: 22px;
  height: 22px;
  color: var(--text);
}

.form-hdr h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: .1em;
  color: var(--text);
  line-height: 1;
}

.form-hdr p {
  font-size: 12.5px;
  color: var(--text-mid);
  margin-top: 3px;
  font-weight: 500;
}

.form-body {
  padding: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-row.full {
  grid-template-columns: 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-light);
}

.form-input,
.form-select,
.form-textarea {
  padding: 11px 14px;
  border-radius: 9px;
  border: 1.5px solid var(--gold-light);
  background: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
  width: 100%;
  transition: border-color var(--trans), box-shadow var(--trans);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 196, 12, .15);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-light);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  background: var(--gold);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background var(--trans), transform .2s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(255, 196, 12, .4);
  margin-top: 4px;
}

.btn-submit:hover {
  background: var(--gold-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(255, 196, 12, .5);
}

.btn-submit svg {
  width: 16px;
  height: 16px;
}

/* Success */
.form-success {
  display: none;
  text-align: center;
  padding: 44px 28px;
}

.form-success.show {
  display: block;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-light);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.success-icon svg {
  width: 30px;
  height: 30px;
  color: var(--gold-d);
}

.form-success h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: .08em;
  color: var(--text);
  margin-bottom: 8px;
}

.form-success p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ══════════════════════
     SOCIAL ROW
  ══════════════════════ */
.social-section {
  background: var(--gold);
  padding: 28px 0;
}

.social-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.social-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-right: 4px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .3);
  border: 1.5px solid rgba(255, 255, 255, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  text-decoration: none;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
}

.social-btn:hover {
  background: rgba(255, 255, 255, .6);
  transform: translateY(-2px);
  box-shadow: 0 5px 16px rgba(0, 0, 0, .1);
}

.social-btn svg {
  width: 18px;
  height: 18px;
}

/* ══════════════════════
     RESPONSIVE
  ══════════════════════ */
@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    flex-direction: column;
  }
}

@media (max-width: 580px) {
  .container {
    padding: 0 20px;
  }

  .contact-main {
    padding: 44px 0 60px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-body {
    padding: 20px;
  }

  .hero-pills {
    gap: 8px;
  }
}


/* ════════════════════════════════
       ENQUIRY PAGE
    ════════════════════════════════ */

/* Hero Banner */
.enq-hero {
  background: var(--text);
  position: relative;
  overflow: hidden;
  padding: 64px 0 60px;
  text-align: center;
}

.enq-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-55deg, rgba(255, 196, 12, .04) 0px, rgba(255, 196, 12, .04) 1px, transparent 1px, transparent 36px);
}

.enq-hero-inner {
  position: relative;
  z-index: 1;
}

.enq-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 20px;
}

.enq-breadcrumb a {
  color: var(--gold);
  transition: opacity var(--trans);
}

.enq-breadcrumb a:hover {
  opacity: .7;
}

.enq-breadcrumb svg {
  width: 11px;
  height: 11px;
  color: var(--gold);
}

.enq-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 6vw, 72px);
  letter-spacing: .08em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 14px;
}

.enq-hero h1 span {
  color: var(--gold);
}

.enq-hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, .65);
  font-weight: 500;
  max-width: 480px;
  margin: 0 auto;
}

/* Main section */
.enq-section {
  padding: 72px 0 80px;
  background: var(--cream);
}

.enq-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 52px;
  align-items: start;
}

/* ── Left: Quick Contact Cards ── */
.enq-contact-col {}

.enq-col-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: .08em;
  color: var(--text);
  margin-bottom: 6px;
}

.enq-col-sub {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 28px;
}

.enq-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.enq-contact-card {
  background: var(--white);
  border: 1.5px solid var(--gold-light);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}

.enq-contact-card:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 28px rgba(255, 196, 12, .16);
  border-color: var(--gold);
}

.enq-cc-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  flex-shrink: 0;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans);
}

.enq-contact-card:hover .enq-cc-icon {
  background: var(--gold);
}

.enq-cc-icon svg {
  width: 20px;
  height: 20px;
  color: var(--gold-d);
}

.enq-contact-card:hover .enq-cc-icon svg {
  color: var(--text);
}

.enq-cc-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2px;
}

.enq-cc-val {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-mid);
}

/* Venture quick links */
.enq-ventures {
  margin-top: 28px;
}

.enq-ventures-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-d);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.enq-ventures-title::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.enq-venture-chips {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.enq-venture-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--gold-light);
  border-radius: 9px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  transition: background var(--trans), border-color var(--trans);
  cursor: pointer;
}

.enq-venture-chip:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
}

.enq-venture-chip svg {
  width: 14px;
  height: 14px;
  color: var(--gold-d);
  flex-shrink: 0;
}

/* ── Right: Form ── */
.enq-form-col {}

.enq-form-card {
  background: var(--white);
  border: 1.5px solid var(--gold-light);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 8px 36px rgba(255, 196, 12, .1);
}

.enq-form-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: .08em;
  color: var(--text);
  margin-bottom: 6px;
}

.enq-form-sub {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group:last-of-type {
  margin-bottom: 0;
}

.form-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gold-light);
  border-radius: 9px;
  background: var(--cream);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color var(--trans), box-shadow var(--trans), background var(--trans);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-light);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 196, 12, .15);
  background: var(--white);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a08500' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

.form-submit {
  width: 100%;
  padding: 15px;
  margin-top: 24px;
  background: var(--gold);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background var(--trans), transform .2s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(255, 196, 12, .4);
}

.form-submit:hover {
  background: var(--gold-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(255, 196, 12, .5);
}

.form-submit svg {
  width: 16px;
  height: 16px;
}

/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold-light);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.success-icon svg {
  width: 34px;
  height: 34px;
  color: var(--gold-d);
}

.success-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: .08em;
  color: var(--text);
  margin-bottom: 10px;
}

.success-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── Footer ── */
footer {
  background: var(--white);
  border-top: 4px solid var(--gold);
  box-shadow: 0 -4px 30px rgba(255, 196, 12, .12);
}

.footer-bottom {
  background: var(--gold);
  padding: 14px 36px;
}

.footer-bottom-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-copy {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .03em;
}

.footer-copy span {
  opacity: .65;
  font-weight: 500;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  letter-spacing: .04em;
  opacity: .7;
  transition: opacity var(--trans);
}

.footer-bottom-links a:hover {
  opacity: 1;
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .enq-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .enq-form-card {
    padding: 28px 22px;
  }
}

@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .enq-container {
    padding: 0 20px;
  }

  .enq-section {
    padding: 48px 0 60px;
  }
}

.image-gallery {
  padding: 60px 40px;
  background: #fffdf5;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.gallery-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Hover effect */
.gallery-item:hover img {
  transform: scale(1.08);
}

/* 📱 Mobile Responsive */
@media (max-width: 900px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .gallery-container {
    grid-template-columns: 1fr;
  }
}