@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ==========================================================================
   OFFICIAL MEDIA — assets/css/style.css
   1. Root tokens
   2. Base / resets
   3. Navbar (40vh)
   4. Hero
   5. Section utilities (headings, buttons, minimal-margin containers)
   6. Parallax sections (image + video + quote variants)
   7. Bento gallery grid
   8. Video grid
   9. Services / process / stats
   10. About page
   11. Contact page
   12. Footer
   13. Responsive
   ========================================================================== */

/* ---------- 1. ROOT TOKENS ---------- */
:root {
  --color-black: #0a0a0a;
  --color-white: #ffffff;
  --color-ivory: #f7f6f2;
  --color-gold: #d4af37;
  --color-gold-soft: #e7d8a3;
  --color-grey-100: #f1f0ec;
  --color-grey-300: #d9d7cf;
  --color-grey-500: #9a988f;
  --color-grey-700: #57564f;

  --overlay-dark: rgba(0, 0, 0, 0.45);
  --overlay-darker: rgba(0, 0, 0, 0.62);

  --font-display: 'Futura PT', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --nav-height: 40vh;
  --gutter: clamp(1rem, 3.5vw, 2.75rem);   /* minimal side margin for full-bleed sections */
  --radius-sm: 6px;
  --radius-md: 10px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- 2. BASE / RESETS ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

img, video { max-width: 100%; display: block; }
a { text-decoration: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

:focus-visible { outline: 2px solid var(--color-gold); outline-offset: 3px; }

/* ---------- 3. NAVBAR (40vh) ---------- */
.navbar {
  width: 100%;
  height: var(--nav-height);
  background: var(--color-black);
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.nav-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { width: 240px; height: auto; display: block; }

.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-menu > li { position: relative; }

.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 16px 20px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: var(--color-white); }
.nav-menu > li > a.active { color: var(--color-white); }

.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  min-width: 220px;
  padding: 8px 0;
  margin: 0;
  list-style: none;
  background: var(--color-black);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 45px rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  display: none;
  z-index: 999;
}
.dropdown:hover > .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a {
  display: block;
  width: 100%;
  padding: 12px 18px;
  color: var(--color-white);
  font-size: 15px;
  white-space: nowrap;
  transition: 0.25s ease;
}
.dropdown-menu li a:hover { background: rgba(255,255,255,0.06); color: var(--color-gold); }

@media (min-width: 992px) {
  .dropdown:hover > .dropdown-menu,
  .dropdown.open > .dropdown-menu { display: block; }
}

.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  border: none; background: transparent; cursor: pointer; padding: 5px;
}
.menu-toggle span {
  display: block; width: 26px; height: 2px; margin: 5px auto;
  background: var(--color-white); transition: all 0.3s ease;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.social-links {
  display: flex; align-items: center;
  margin-left: 12px; padding-left: 15px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.social-links a {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  color: var(--color-white); font-size: 15px; border-radius: 50%;
  transition: all 0.3s ease;
}
.social-links a:hover { color: var(--color-gold); background: rgba(255,255,255,0.08); transform: translateY(-2px); }

@media (max-width: 991px) {
  .menu-toggle { display: block; }
  .nav-menu {
    position: absolute; top: var(--nav-height); left: 0; width: 100%;
    display: none; flex-direction: column; align-items: stretch;
    background: var(--color-black); padding: 10px var(--gutter) 20px; z-index: 999;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-menu.active { display: flex; }
  .nav-menu > li > a { width: 100%; padding: 16px 10px; }
  .dropdown-menu {
    position: static; width: 100%; display: none; opacity: 1; visibility: visible;
    transform: none; box-shadow: none; background: rgba(255,255,255,0.06); border: none; border-radius: 0;
  }
  .dropdown.open > .dropdown-menu { display: block; }
  .social-links {
    margin: 10px 0 0; padding: 12px 0 0; border-left: none;
    border-top: 1px solid rgba(255,255,255,0.2); justify-content: flex-start; gap: 5px;
  }
}

@media (max-width: 1366px) {
  .nav-menu > li > a { font-size: 15px; }
}

/* ---------- 4. HERO ---------- */
.hero-section {
  position: relative; width: 100%; height: 60vh; min-height: 500px;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.hero-video, .hero-poster {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; z-index: 1;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, var(--overlay-dark), var(--overlay-darker)); z-index: 2; }
.hero-content { position: relative; z-index: 3; text-align: center; padding: 20px var(--gutter); max-width: 900px; margin: 0 auto; }
.hero-eyebrow { color: var(--color-gold-soft); font-size: 0.85rem; letter-spacing: 0.08em; margin-bottom: 1rem; }
.hero-content h1 {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  color: var(--color-white); font-size: clamp(38px, 6vw, 76px); line-height: 1.1; margin-bottom: 0.9rem;
}
.hero-sub { color: rgba(255,255,255,0.82); font-size: 1.05rem; max-width: 52ch; margin: 0 auto 1.8rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

@media (max-width: 767px) {
  .hero-section { height: 60vh; min-height: 420px; }
  .hero-content h1 { font-size: 38px; }
}

/* ---------- 5. SECTION UTILITIES ---------- */
.section-pad { padding: clamp(3rem, 7vw, 6.5rem) 0; }
.section-alt { background: var(--color-ivory); }

/* Minimal-margin full-bleed wrapper — used instead of a boxed .container
   for any section whose main content is imagery or video. */
.section-fluid { width: 100%; padding: 0 var(--gutter); margin: 0 auto; max-width: 1800px; }

.section-kicker { font-size: 1rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-gold); margin-bottom: 0.8rem; }
.section-heading { font-family: var(--font-display); font-size: clamp(1.8rem, 3.2vw, 2.6rem); line-height: 1.2; }
.section-lead { color: var(--color-grey-700); max-width: 62ch; font-size: 1.02rem; }
.gold-rule { width: 54px; height: 2px; background: var(--color-gold); margin: 1rem 0 1.6rem; border: none; }

.btn-gold, .btn-outline-light-pill, .btn-dark-pill {
  display: inline-block; padding: 0.85rem 2rem; border-radius: 999px;
  font-size: 0.92rem; font-weight: 600; letter-spacing: 0.02em;
  transition: transform 0.25s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn-gold { background: var(--color-gold); color: var(--color-black); border: 1px solid var(--color-gold); }
.btn-gold:hover { background: transparent; color: var(--color-gold); transform: translateY(-2px); }
.btn-outline-light-pill { background: transparent; color: var(--color-white); border: 1px solid rgba(255,255,255,0.55); }
.btn-outline-light-pill:hover { background: var(--color-white); color: var(--color-black); transform: translateY(-2px); }
.btn-dark-pill { background: var(--color-black); color: var(--color-white); border: 1px solid var(--color-black); }
.btn-dark-pill:hover { background: var(--color-gold); border-color: var(--color-gold); color: var(--color-black); transform: translateY(-2px); }

/* ---------- 6. PARALLAX SECTIONS (reusable: image / video / quote) ---------- */
.parallax-section {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.parallax-section.parallax-compact { min-height: 60vh; }

.parallax-bg {
  position: absolute;
  top: -15%; left: 0;
  width: 100%; height: 130%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  will-change: transform;
}
.parallax-video-bg {
  position: absolute;
  top: -15%; left: 0;
  width: 100%; height: 130%;
  object-fit: cover;
  z-index: 1;
  will-change: transform;
}
.parallax-overlay { 
  position: absolute; 
  inset: 0; 
  /* background: rgba(0,0,0,0.5);  */
  z-index: 2; 
}
.parallax-content { position: relative; z-index: 3; width: 100%; padding: 70px 0; text-align: center; }
.parallax-content.text-start { text-align: left; }

.section-title { color: var(--color-white); font-family: var(--font-display); font-size: clamp(32px, 5vw, 52px); font-weight: 500; margin-bottom: 10px; }
.section-subtitle { color: rgba(255,255,255,0.65); font-size: 16px; margin-bottom: 44px; }

/* Text-only quote parallax */
.parallax-quote { max-width: 780px; margin: 0 auto; }
.parallax-quote p { color: rgba(255,255,255,0.9); font-family: var(--font-display); font-style: italic; font-size: clamp(22px, 3vw, 34px); line-height: 1.5; }
.parallax-quote cite { display: block; margin-top: 1.4rem; color: var(--color-gold-soft); font-style: normal; font-size: 0.9rem; }

@media (max-width: 991px) {
  .parallax-section { min-height: 70vh; }
}

@media (max-width: 768px){
    .parallax-quote p { margin: 10px;}
}

/* ---------- 7. BENTO GALLERY GRID ---------- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.bento-item { position: relative; overflow: hidden; border-radius: var(--radius-md); cursor: pointer; }
.bento-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.bento-item:hover img { transform: scale(1.06); }
.bento-large { grid-column: span 2; grid-row: span 2; }
.bento-wide  { grid-column: span 2; grid-row: span 1; }
.bento-tall  { grid-column: span 1; grid-row: span 2; }

.bento-item .gallery-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.4rem;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.55) 100%);
  color: var(--color-white); font-size: 22px; opacity: 0; transition: opacity 0.3s ease;
}
.bento-item:hover .gallery-overlay { opacity: 1; }
.bento-item .gallery-caption { font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.04em; align-self: flex-start; margin: 0 0 0 1rem; }

@media (max-width: 991px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
}
@media (max-width: 576px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; gap: 8px; }
  .bento-large, .bento-wide, .bento-tall { grid-column: span 2; grid-row: span 1; }
}

.bento-view-all {
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-black);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.view-all-gallery {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: gap 0.35s ease;
}

.view-all-gallery i {
    font-size: 1.8rem;
    transition: transform 0.35s ease;
}

.view-all-gallery:hover {
    color: var(--color-white);
    gap: 1.4rem;
}

.view-all-gallery:hover i {
    transform: translateX(4px);
}

/* ---------- 8. VIDEO GRID ---------- */
.video-item { position: relative; aspect-ratio: 16/9; overflow: hidden; border-radius: var(--radius-md); cursor: pointer; }
.video-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.play-icon {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 40px; color: var(--color-white); background: rgba(0,0,0,0.35); transition: all 0.3s ease;
}
.video-item:hover img { transform: scale(1.06); }
.video-item:hover .play-icon { background: rgba(212,175,55,0.35); }

/* ---------- 9. SERVICES / PROCESS / STATS ---------- */
.services-grid, .process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.service-card, .process-step { border-top: 1px solid var(--color-grey-300); padding-top: 1.4rem; }
.service-card h3, .process-step h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.6rem; }
.service-card p, .process-step p { color: var(--color-grey-700); font-size: 0.96rem; }
.step-num { font-family: var(--font-display); color: var(--color-gold); font-size: 1.1rem; margin-bottom: 0.5rem; }

.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 2.4rem; }
.stat-num { font-family: var(--font-display); font-size: clamp(2rem, 3vw, 2.7rem); color: var(--color-black); }
.stat-label { color: var(--color-black); font-size: 0.85rem; }

@media (max-width: 767px) {
  .services-grid, .process-grid, .stat-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- 10. ABOUT PAGE ---------- */
.page-banner {
  position: relative; min-height: 46vh; display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.page-banner-content { position: relative; z-index: 3; text-align: center; color: var(--color-white); }
.page-banner-content .section-kicker { color: var(--color-black); }
.page-banner-content h1 { font-family: var(--font-display); font-style: italic; font-size: clamp(2.2rem, 5vw, 3.6rem); }

.story-media { border-radius: var(--radius-md); overflow: hidden; }
.story-media img { width: 100%; height: 100%; object-fit: cover; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.value-card { background: var(--color-white); border: 1px solid var(--color-grey-300); border-radius: var(--radius-md); padding: 2rem;
transition: 
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--color-grey-700);
}
.value-card h3 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 0.6rem; transition: transform 0.35s ease;}
.value-card:hover h3 {
    transform: translateX(4px);
}
.value-card p { color: var(--color-grey-700); font-size: 0.95rem; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.team-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--radius-md); margin-bottom: 0.9rem; }
.team-card h3 { font-family: var(--font-display); font-size: 1.05rem; }
.team-card p { color: var(--color-grey-500); font-size: 0.85rem; }

@media (max-width: 991px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .values-grid, .team-grid { grid-template-columns: 1fr; }
}

/* ---------- 11. CONTACT PAGE ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 3rem; }
.contact-info-list { list-style: none; margin: 1.6rem 0 0; padding: 0; }
.contact-info-list li { padding: 1rem 0; border-top: 1px solid var(--color-grey-300); }
.contact-info-list li:last-child { border-bottom: 1px solid var(--color-grey-300); }
.contact-info-list .label { display: block; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-gold); margin-bottom: 0.3rem; }
.contact-info-list a, .contact-info-list span { color: var(--color-black); font-size: 1rem; }

.contact-form .form-label { font-size: 0.82rem; color: var(--color-grey-700); margin-bottom: 0.4rem; display: block; }
.contact-form .form-control, .contact-form .form-select {
  border-radius: var(--radius-sm); border: 1px solid var(--color-grey-300);
  padding: 0.75rem 0.95rem; width: 100%; font-family: var(--font-body); background: var(--color-white);
}
.contact-form .form-control:focus, .contact-form .form-select:focus { border-color: var(--color-black); outline: none; box-shadow: 0 0 0 3px rgba(212,175,55,0.18); }
.form-status { margin-top: 1rem; font-size: 0.9rem; color: var(--color-gold); }
.invalid-feedback { display: none; font-size: 0.8rem; color: #b3261e; margin-top: 0.3rem; }
.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .form-select:invalid ~ .invalid-feedback { display: block; }
.was-validated .form-control:invalid, .was-validated .form-select:invalid { border-color: #b3261e; }

.map-embed { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--color-grey-300); }
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; filter: grayscale(0.3) contrast(1.05); }

@media (max-width: 991px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---------- 12. FOOTER (60vh) ---------- */
.site-footer {
  position: relative; width: 100%; min-height: 520px;
  background: var(--color-black); color: var(--color-white); overflow: hidden;
  display: flex; align-items: center;
}
.site-footer::before {
  content: ""; position: absolute; width: 500px; height: 500px; top: -250px; right: -180px;
  background: rgba(212, 175, 55, 0.10); border-radius: 50%; filter: blur(90px); pointer-events: none;
}
.site-footer::after {
  content: ""; position: absolute; width: 400px; height: 400px; bottom: -250px; left: -150px;
  background: rgba(255, 255, 255, 0.04); border-radius: 50%; filter: blur(90px); pointer-events: none;
}
.footer-shell { position: relative; z-index: 2; width: 100%; padding: 80px var(--gutter) 30px; max-width: 1400px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr 1.4fr; gap: 2.4rem; width: 100%; }

.brand-footer { display: inline-flex; text-decoration: none; margin-bottom: 1.4rem; }
.footer-logo { 
  width: 220px; 
  height: auto; 
  object-fit: contain; 
  /* filter: invert(1) brightness(2);  */
}
.footer-tagline { max-width: 380px; color: rgba(255,255,255,0.6); font-size: 15px; line-height: 1.8; }

.footer-heading { margin-bottom: 22px; color: var(--color-white); font-size: 16px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 13px; color: rgba(255,255,255,0.55); font-size: 16px; }
.footer-links a { color: rgba(255,255,255,0.65); transition: color 0.3s ease; }
.footer-links a:hover { color: var(--color-white); }

.footer-social { display: flex; align-items: center; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.footer-social a {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.18); border-radius: 50%; color: rgba(255,255,255,0.7); font-size: 16px;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.footer-social a:hover { color: var(--color-black); background: var(--color-white); border-color: var(--color-gold); transform: translateY(-3px); }

.footer-bottom {
  width: 100%; margin-top: 60px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 16px; }
.footer-fine { text-align: right; }

@media (max-width: 991px) {
  .site-footer { min-height: auto; padding: 0; }
  .footer-shell { padding: 70px var(--gutter) 30px; }
  .footer-top { grid-template-columns: 1fr 1fr; row-gap: 2.6rem; }
}
@media (max-width: 576px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-fine { text-align: left; }
}

/* ---------- 13. GENERAL RESPONSIVE ---------- */
@media (max-width: 767px) {
  .services-grid, .process-grid { gap: 1.4rem; }
  .hero-actions { flex-direction: column; align-items: center; }
}

/* ---------- 6. GALLERY SECTIONS  ---------- */
.gallery-category-section {
    position: relative;
    min-height: 92vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-category-section-bg {
    position: absolute;
    top: -15%;
    left: 0;
    width: 100%;
    height: 130%;
    background-image: url('https://fastly.picsum.photos/id/17/2500/1667.jpg?hmac=HD-JrnNUZjFiP2UZQvWcKrgLoC_pc_ouUSWv8kHsJJY');
    background-size: cover;
    background-position: center;
    z-index: 1;
    will-change: transform;
}

/* Dark overlay */
.gallery-category-section::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(0, 0, 0, 0.55); */
    z-index: 2;
}

.gallery-category-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 70px 0;
    text-align: center;
}

/* Grid */
.gallery-category-grid {
    margin-left: -12px;
    margin-right: -12px;
}

/* Category */
.category-item {
    position: relative;
    display: block;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 14px;
    text-decoration: none;
    background: #111;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* Image */
.category-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

/* Gradient overlay */
.category-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85),
        rgba(0, 0, 0, 0.05) 65%
    );
    transition: background 0.4s ease;
}

/* Text */
.category-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 25px;
    text-align: left;
}

.category-overlay h5 {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    transform: translateY(5px);
    transition: transform 0.4s ease;
}

/* Hover */
.category-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.category-item:hover .category-image img {
    transform: scale(1.1);
}

.category-item:hover::after {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9),
        rgba(0, 0, 0, 0.2)
    );
}

.category-item:hover .category-overlay h5 {
    transform: translateY(0);
}

/* Smooth card movement */
.category-item {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Tablet */
@media (max-width: 991px) {
    .gallery-category-content {
        padding: 60px 0;
    }

    .category-item {
        height: 280px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .gallery-category-content {
        padding: 50px 0;
    }

    .category-item {
        height: 230px;
        border-radius: 10px;
    }

    .category-overlay {
        padding: 18px;
    }

    .category-overlay h5 {
        font-size: 20px;
    }
}


/* =========================================
   GALLERY DETAIL SECTION
========================================= */

.gallery-detail-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.gallery-detail-bg {
    position: absolute;
    top: -15%;
    left: 0;

    width: 100%;
    height: 130%;

    background-image:
        /* linear-gradient(
            rgba(0, 0, 0, 0.68),
            rgba(0, 0, 0, 0.68)
        ), */
        url("https://fastly.picsum.photos/id/53/1280/1280.jpg?hmac=QP5opo-oENp5iFwsSiWH8azQuR0w0bwps6MT6yvhKwA");

    background-size: cover;
    background-position: center;

    z-index: 1;
    will-change: transform;
}

.gallery-detail-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 90px 0;
}

/* =========================================
   STORY
========================================= */

.gallery-story {
    max-width: 850px;
    margin: 0 auto 75px;
    text-align: center;
}

.gallery-story p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.8;
    margin: 20px auto 0;
}

/* =========================================
   GALLERY BLOCK
========================================= */

.gallery-block {
    width: 100%;
    margin-bottom: 80px;
}

.gallery-block-heading {
    text-align: left;
    margin-bottom: 25px;
}

.gallery-block-heading h3 {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    margin: 0;
}

/* =========================================
   GALLERY GRID
========================================= */

.gallery-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 18px;
}

/* =========================================
   IMAGE ITEM
========================================= */

.gallery-image-item {
    position: relative;

    display: block;

    width: 100%;
    height: 360px;

    overflow: hidden;

    /* border-radius: 12px; */

    background: #111;

    text-decoration: none;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.22);

    cursor: pointer;

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}

.gallery-image-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition:
        transform 0.7s cubic-bezier(0.2, 0.65, 0.3, 1);
}

/* Hover */

.gallery-image-item:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.38);
}

.gallery-image-item:hover img {
    transform: scale(1.06);
}

/* =========================================
   VIDEO ITEM
========================================= */

.gallery-video-item {
    position: relative;

    display: block;

    width: 100%;
    height: 360px;

    overflow: hidden;

    /* border-radius: 12px; */

    background: #111;

    text-decoration: none;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.22);

    cursor: pointer;

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}

.video-thumbnail {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.7s cubic-bezier(0.2, 0.65, 0.3, 1);
}

.gallery-video-item:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.38);
}

.gallery-video-item:hover .video-thumbnail img {
    transform: scale(1.06);
}

/* =========================================
   PLAY BUTTON
========================================= */

.video-play {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.95);

    color: #111;

    font-size: 38px;

    padding-left: 4px;

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.35);

    transition:
        transform 0.35s ease,
        background 0.35s ease;
}

.gallery-video-item:hover .video-play {
    transform: translate(-50%, -50%) scale(1.1);
}

/* =========================================
   MODAL
========================================= */

.gallery-modal {
    position: fixed;

    inset: 0;

    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    background: rgba(0, 0, 0, 0.94);

    z-index: 9999;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.gallery-modal.active {
    opacity: 1;
    visibility: visible;
}


/* =========================================
   MODAL CLOSE
========================================= */

.gallery-modal-close {
    position: absolute;

    top: 25px;
    right: 30px;

    width: 48px;
    height: 48px;

    border: none;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.12);

    color: #fff;

    font-size: 34px;
    line-height: 1;

    cursor: pointer;

    z-index: 5;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.gallery-modal-close:hover {
    background: rgba(255, 255, 255, 0.22);

    transform: rotate(90deg);
}

/* =========================================
   IMAGE MODAL
========================================= */

.image-modal-content {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.image-modal-content img {
    max-width: 95vw;
    max-height: 90vh;

    width: auto;
    height: auto;

    object-fit: contain;

    border-radius: 5px;

    box-shadow:
        0 20px 70px rgba(0, 0, 0, 0.5);
}


/* =========================================
   VIDEO MODAL
========================================= */

.video-modal-content {
    width: min(1100px, 95vw);
}

.video-frame-wrapper {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    background: #000;

    border-radius: 8px;

    overflow: hidden;

    box-shadow:
        0 20px 70px rgba(0, 0, 0, 0.5);
}

.video-frame-wrapper iframe {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    border: 0;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .gallery-detail-content {
        padding: 60px 0;
    }

    .gallery-story {
        margin-bottom: 50px;
    }

    .gallery-story p {
        font-size: 15px;
        line-height: 1.7;
    }

    .gallery-block {
        margin-bottom: 60px;
    }

    .gallery-block-heading {
        margin-bottom: 18px;
    }

    .gallery-block-heading h3 {
        font-size: 24px;
    }

    /* 1 item per row */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .gallery-image-item,
    .gallery-video-item {
        height: 260px;
    }

    .video-play {
        width: 62px;
        height: 62px;
        font-size: 32px;
    }

    .gallery-modal {
        padding: 15px;
    }

    .gallery-modal-close {
        top: 15px;
        right: 15px;

        width: 42px;
        height: 42px;

        font-size: 29px;
    }

    .image-modal-content img {
        max-width: 96vw;
        max-height: 85vh;
    }
}


.expertise-bg {
    background-image: url('https://fastly.picsum.photos/id/17/2500/1667.jpg?hmac=HD-JrnNUZjFiP2UZQvWcKrgLoC_pc_ouUSWv8kHsJJY');
    background-size: cover;
    background-position: center;
}

.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-section > .section-fluid {
    position: relative;
    z-index: 2;
}


/* =========================================
   MORE THAN A FRAME
========================================= */

.frame-story-section {
    position: relative;
    padding: 8rem 0;
    background: var(--color-black);
    color: var(--color-white);
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.frame-story-inner {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}


/* HEADER */

.frame-story-header {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 3rem;
    padding-bottom: 5rem;
}

.frame-story-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.frame-story-label span {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    opacity: 0.5;
}

.frame-story-label p {
    margin: 0;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    opacity: 0.7;
}


/* MAIN STATEMENT */

.frame-story-intro h2,
.frame-story-intro h3 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.05;
}

.frame-story-intro h2 {
    font-size: clamp(2.5rem, 5vw, 5rem);
}

.frame-story-intro h2 span {
    opacity: 0.4;
}

.frame-story-intro h3 {
    margin-top: 0.5rem;
    font-size: clamp(2.5rem, 5vw, 5rem);
}

.frame-story-intro h3 strong {
    font-weight: 400;
}


/* STORY LIST */

.frame-story-list {
    border-top: 1px solid rgba(255,255,255,0.2);
}

.frame-story-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    align-items: center;
    min-height: 90px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    transition:
        padding-left 0.4s ease,
        background 0.4s ease;
}

.frame-story-item span {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    opacity: 0.4;
}

.frame-story-item p {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    transition:
        transform 0.4s ease,
        opacity 0.4s ease;
}


/* HOVER */

.frame-story-item:hover {
    padding-left: 15px;
    background: rgba(255,255,255,0.04);
}

.frame-story-item:hover p {
    transform: translateX(8px);
}


/* FOOTER */

.frame-story-footer {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3.5rem;
}

.frame-story-footer p {
    max-width: 600px;
    margin: 0;
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    line-height: 1.8;
}

.frame-story-line {
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.2);
}


/* MOBILE */

@media (max-width: 768px) {

    .frame-story-section {
        padding: 5rem 0;
    }

    .frame-story-header {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-bottom: 3.5rem;
    }

    .frame-story-intro h2,
    .frame-story-intro h3 {
        font-size: clamp(2.3rem, 10vw, 3.5rem);
    }

    .frame-story-item {
        grid-template-columns: 45px 1fr;
        min-height: 75px;
    }

    .frame-story-item p {
        font-size: 1.2rem;
    }

    .frame-story-footer {
        display: block;
    }

    .frame-story-line {
        display: block;
        width: 100%;
        margin-top: 2rem;
    }
}

.about-story-row {
    margin-left: 0;
    margin-right: 0;
}


.legacy-section {
    position: relative;
    overflow: hidden;
}

.legacy-bg {
    background-image: url('https://fastly.picsum.photos/id/28/4928/3264.jpg?hmac=GnYF-RnBUg44PFfU5pcw_Qs0ReOyStdnZ8MtQWJqTfA');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.legacy-section > .section-fluid {
    position: relative;
    z-index: 2;
}

.legacy-section .parallax-overlay {
    background: rgba(0, 0, 0, 0.58);
}

.about-final-section {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.about-final-section .stat-grid {
    margin-bottom: 2.5rem;
}

.about-final-section .section-fluid > div:nth-child(2) {
    margin-top: 2rem !important;
}

.about-final-section .section-fluid > div:nth-child(3) {
    margin-top: 1.8rem !important;
}

.about-final-section .section-fluid > div:nth-child(4) {
    margin-top: 2rem !important;
}

.about-final-bg {
    background-image: url('https://fastly.picsum.photos/id/91/3504/2336.jpg?hmac=tK6z7RReLgUlCuf4flDKeg57o6CUAbgklgLsGL0UowU');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-final-section .parallax-overlay {
    background: rgba(255, 255, 255, 0.82);
}

.about-final-section > .section-fluid {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .about-final-section {
        padding: 4rem 0;
    }

    .about-final-section .stat-grid {
        margin-bottom: 2rem;
    }
}


/* =========================================
   SERVICES
========================================= */

.service-feature {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.service-feature-bg {
    position: absolute;
    inset: -15% 0;
    width: 100%;
    height: 130%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    will-change: transform;
}

.service-feature-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.38);
    z-index: 1;
}

.service-feature-content {
    position: relative;
    width: 100%;
    z-index: 2;
    padding: 5rem 0;
}

.service-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.service-feature-image {
    height: 500px;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.service-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.service-feature-image:hover img {
    transform: scale(1.04);
}

.service-feature-text {
    color: var(--color-white);
    max-width: 600px;
}

.service-number {
    font-size: 1rem;
    letter-spacing: 0.2em;
    opacity: 0.65;
    margin-bottom: 1.5rem;
}

.service-feature-text .section-heading {
    color: var(--color-white);
}

.service-feature-text .section-lead {
    color: rgba(255,255,255,0.82);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    padding-bottom: 0.4rem;
    transition: gap 0.3s ease;
}

.service-link span {
    font-size: 1.2rem;
}

.service-link:hover {
    color: var(--color-white);
    gap: 1.1rem;
}


@media (max-width: 768px) {

    .service-feature {
        min-height: auto;
    }

    .service-feature-content {
        padding: 4rem 0;
    }

    .service-feature-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .service-feature-image {
        height: 350px;
    }

    .service-feature-text {
        max-width: 100%;
    }
}

.service-reverse .service-feature-image {
    order: 2;
}

.service-reverse .service-feature-text {
    order: 1;
}

/* =========================================
   HOME VIDEO MODAL
========================================= */

.youtube-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.youtube-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.video-modal-close {
    margin: 0.5rem 0.5rem 0.5rem auto;
    z-index: 5;
}


@media (max-width: 576px) {
    .modal-dialog {
        margin: 0.75rem;
    }

    .youtube-wrapper {
        aspect-ratio: 16 / 9;
    }
}

.video-view-all {
    height: 100%;
    min-height: 150px;
    background: var(--color-black);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.video-view-all:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.35);
}

.view-all-video {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--color-white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.8rem;
    transition: gap 0.35s ease;
}

.view-all-video i {
    font-size: 1.2rem;
    transition: transform 0.35s ease;
}

.view-all-video:hover {
    color: var(--color-white);
    gap: 1.2rem;
}

.view-all-video:hover i {
    transform: translateX(5px);
}