/* ========================================
   Artitude — Premium Cultural Organisation
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #0e3a4a;
  --primary-deep: #072832;
  --primary-soft: #1a5a6e;
  --accent: #b8954a;
  --accent-light: #d4b76a;
  --accent-dark: #8f7135;
  --maroon: #6e2f3a;
  --bg: #f5f1ea;
  --bg-alt: #ebe4d8;
  --bg-dark: #0a2a35;
  --surface: #fffcf7;
  --text: #1c2a30;
  --text-muted: #5a6a72;
  --text-light: #f5f1ea;
  --border: rgba(14, 58, 74, 0.12);
  --shadow: 0 12px 40px rgba(7, 40, 50, 0.1);
  --shadow-lg: 0 24px 60px rgba(7, 40, 50, 0.16);
  --radius: 14px;
  --radius-sm: 8px;
  --nav-h: 78px;
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition), opacity var(--transition); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* ===== Sparks / Ambient Particles ===== */
.spark-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.spark {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-light);
  opacity: 0;
  animation: sparkFloat linear infinite;
  box-shadow: 0 0 8px var(--accent);
}

@keyframes sparkFloat {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.7; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 252, 247, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(7, 40, 50, 0.08);
}

.navbar .nav-inner {
  width: min(1180px, 94%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  z-index: 1001;
}

.logo .brand {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  transition: color var(--transition);
}

.logo .tag {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-light);
  font-weight: 500;
  transition: color var(--transition);
}

.navbar.scrolled .logo .brand { color: var(--primary); }
.navbar.scrolled .logo .tag { color: var(--accent-dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-links > li { position: relative; }

.nav-links > li > a,
.nav-links .drop-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}

.navbar.scrolled .nav-links > li > a,
.navbar.scrolled .nav-links .drop-toggle {
  color: var(--primary);
}

.nav-links > li > a:hover,
.nav-links .drop-toggle:hover,
.nav-links > li > a.active,
.nav-links .drop-toggle.active {
  color: var(--accent-light);
  background: rgba(255, 255, 255, 0.08);
}

.navbar.scrolled .nav-links > li > a:hover,
.navbar.scrolled .nav-links .drop-toggle:hover,
.navbar.scrolled .nav-links > li > a.active,
.navbar.scrolled .nav-links .drop-toggle.active {
  color: var(--accent-dark);
  background: rgba(14, 58, 74, 0.06);
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  border: 1px solid var(--border);
  z-index: 1002;
}

.nav-links > li:hover > .dropdown,
.nav-links > li.open > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 0.65rem 0.9rem;
  font-size: 0.86rem;
  color: var(--text);
  border-radius: 6px;
  font-weight: 400;
}

.dropdown a:hover {
  background: var(--bg-alt);
  color: var(--primary);
  padding-left: 1.1rem;
}

.drop-toggle::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.7;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  z-index: 1001;
  border-radius: 8px;
}

.hamburger span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar.scrolled .hamburger span { background: var(--primary); }

.hamburger.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* ===== Hero Slider ===== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide.active { opacity: 1; z-index: 1; }

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(7, 40, 50, 0.88) 0%,
    rgba(7, 40, 50, 0.55) 45%,
    rgba(14, 58, 74, 0.35) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, 92%);
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 2rem) 0 5rem;
  color: var(--text-light);
}

.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-light);
  font-weight: 500;
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 600;
  line-height: 1.1;
  max-width: 14ch;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.35s forwards;
}

.hero-lead {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 300;
  max-width: 38ch;
  opacity: 0.9;
  margin-bottom: 2.2rem;
  line-height: 1.75;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.65s forwards;
}

.hero-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.6rem;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transition: all var(--transition);
  border: 1px solid transparent;
}

.hero-dot.active {
  background: var(--accent);
  transform: scale(1.25);
  box-shadow: 0 0 12px rgba(184, 149, 74, 0.6);
}

.hero-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: background var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-nav-btn:hover { background: rgba(184, 149, 74, 0.55); }
.hero-prev { left: 1.5rem; }
.hero-next { right: 1.5rem; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 50px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary-deep);
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(184, 149, 74, 0.4);
}

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-solid {
  background: var(--primary);
  color: #fff;
}

.btn-solid:hover {
  background: var(--primary-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-ghost {
  border: 1.5px solid var(--primary);
  color: var(--primary);
}

.btn-ghost:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ===== Sections ===== */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-alt {
  background: var(--bg-alt);
}

.section-dark {
  background: linear-gradient(160deg, var(--primary-deep) 0%, var(--primary) 55%, #134556 100%);
  color: var(--text-light);
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.section-dark .section-label { color: var(--accent-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--primary-deep);
}

.section-dark .section-title { color: #fff; }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 58ch;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.section-dark .section-desc { color: rgba(245, 241, 234, 0.78); }

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-head .section-desc { margin-left: auto; margin-right: auto; }

/* ===== Cards ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--bg-alt);
  overflow: hidden;
  cursor: pointer;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.6s ease;
  background: #0a2a35;
}

.card:hover .card-img img { transform: scale(1.04); }

.card-body {
  padding: 1.5rem 1.4rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-body h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--primary-deep);
  margin-bottom: 0.6rem;
  line-height: 1.25;
}

.card-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 300;
  flex: 1;
  margin-bottom: 1.1rem;
}

.card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.03em;
}

.card-link:hover { color: var(--primary); gap: 0.7rem; }

/* ===== About Split ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.split-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  aspect-ratio: 4 / 5;
  background: var(--bg-dark);
}

.split-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.split-img::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(7, 40, 50, 0.35));
  pointer-events: none;
}

.split-content .section-title { margin-bottom: 1.25rem; }

.split-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-weight: 300;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
  padding: 1.25rem 0.75rem;
  background: var(--surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition);
}

.stat:hover { transform: translateY(-4px); }

.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== Timeline / List ===== */
.feature-list {
  display: grid;
  gap: 1.25rem;
}

.feature-item {
  display: flex;
  gap: 1.15rem;
  padding: 1.35rem 1.4rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 4px 18px rgba(7, 40, 50, 0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow);
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
  color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.feature-item h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--primary-deep);
  margin-bottom: 0.3rem;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* ===== Page Hero (inner) ===== */
.page-hero {
  position: relative;
  width: 100%;
  min-height: 48vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 3rem) 0 3.5rem;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(7, 40, 50, 0.9), rgba(14, 58, 74, 0.65));
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.breadcrumb {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 0.75rem;
}

.breadcrumb a:hover { color: var(--accent-light); }

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-dark);
  box-shadow: var(--shadow);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item::after {
  content: '⊕';
  position: absolute;
  inset: 0;
  background: rgba(7, 40, 50, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover::after { opacity: 1; }

/* ===== Bio / Detail ===== */
.bio-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.25rem 0 1.75rem;
}

.chip {
  padding: 0.4rem 0.9rem;
  background: var(--bg-alt);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--primary);
  border: 1px solid var(--border);
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
}

.detail-block {
  background: var(--surface);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 20px rgba(7, 40, 50, 0.05);
}

.detail-block h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 0.85rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}

.detail-block ul li,
.info-list li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.55rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 300;
}

.detail-block ul li::before,
.info-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ===== Highlight Banner ===== */
.highlight-banner {
  background:
    linear-gradient(135deg, rgba(7, 40, 50, 0.88), rgba(110, 47, 58, 0.75)),
    url('../assests/5.jpeg') center/cover;
  padding: 4.5rem 0;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.highlight-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 1rem;
}

.highlight-banner p {
  max-width: 52ch;
  margin: 0 auto 1.75rem;
  opacity: 0.88;
  font-weight: 300;
}

/* ===== Contact Cards ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.contact-card {
  text-align: center;
  padding: 2.25rem 1.5rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.contact-card:hover { transform: translateY(-6px); }

.contact-card .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
  color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--primary-deep);
  margin-bottom: 0.5rem;
}

.contact-card p,
.contact-card a {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 300;
}

.contact-card a:hover { color: var(--accent-dark); }

.map-embed {
  margin-top: 2.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  min-height: 320px;
  background: var(--bg-alt);
}

.map-embed iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

/* ===== Footer ===== */
.footer {
  background: var(--primary-deep);
  color: rgba(245, 241, 234, 0.82);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer .brand {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}

.footer .tagline {
  font-size: 0.9rem;
  margin: 0.85rem 0 1.25rem;
  font-weight: 300;
  max-width: 32ch;
  line-height: 1.7;
}

.footer h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--accent-light);
  margin-bottom: 1.1rem;
  font-weight: 600;
}

.footer-links a {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.55rem;
  font-weight: 300;
  opacity: 0.85;
}

.footer-links a:hover {
  color: var(--accent-light);
  opacity: 1;
  padding-left: 4px;
}

.footer-contact li {
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
  font-weight: 300;
  line-height: 1.55;
}

.footer-contact a:hover { color: var(--accent-light); }

.footer-bottom {
  padding: 1.35rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  opacity: 0.75;
}

.footer-bottom a {
  color: var(--accent-light);
  font-weight: 500;
}

.footer-bottom a:hover { opacity: 1; text-decoration: underline; }

/* ===== Floating Action Buttons ===== */
.float-btns {
  position: fixed;
  right: 1.25rem;
  bottom: 1.5rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: floatPulse 2.8s ease-in-out infinite;
}

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.float-btn.whatsapp { background: #25d366; }
.float-btn.call { background: var(--primary); animation-delay: 0.4s; }

.float-btn svg { width: 26px; height: 26px; fill: currentColor; }

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22); }
  50% { box-shadow: 0 8px 28px rgba(184, 149, 74, 0.45); }
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(7, 40, 50, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: min(92vw, 1000px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transform: scale(0.92);
  transition: transform 0.35s ease;
}

.lightbox.open img { transform: scale(1); }

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lightbox-close:hover { background: var(--accent); color: var(--primary-deep); }

/* ===== Reveal Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

.shimmer-line {
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
  background-size: 200% 100%;
  margin: 0 auto 1.25rem;
  border-radius: 2px;
  animation: shimmer 2.5s linear infinite;
}

.section-head .shimmer-line { margin-left: auto; margin-right: auto; }
.split-content .shimmer-line { margin-left: 0; }

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Decorative wave */
.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 2;
}

.wave-divider svg {
  width: 100%;
  height: 60px;
  display: block;
}

/* Quote */
.quote-block {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--primary);
  max-width: 40ch;
  position: relative;
  padding-left: 1.5rem;
  border-left: 3px solid var(--accent);
  margin: 1.5rem 0;
}

/* Production detail */
.prod-hero-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg-dark);
  cursor: pointer;
  aspect-ratio: 16 / 10;
}

.prod-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.content-prose h2 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--primary-deep);
  margin: 2rem 0 1rem;
}

.content-prose h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--primary);
  margin: 1.5rem 0 0.75rem;
}

.content-prose p {
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-weight: 300;
}

.content-prose ul {
  margin: 1rem 0 1.5rem;
}

.content-prose ul li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  font-weight: 300;
}

.content-prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { gap: 2rem; }
  .detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 86vw);
    height: 100vh;
    background: var(--surface);
    flex-direction: column;
    align-items: stretch;
    padding: calc(var(--nav-h) + 1rem) 1.25rem 2rem;
    gap: 0.15rem;
    transform: translateX(105%);
    transition: transform var(--transition);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    z-index: 1000;
  }

  .nav-links.open { transform: translateX(0); }

  .nav-links > li > a,
  .nav-links .drop-toggle {
    color: var(--primary) !important;
    width: 100%;
    padding: 0.85rem 0.9rem;
    justify-content: space-between;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--bg-alt);
    max-height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    transition: max-height 0.4s ease, padding 0.3s ease;
  }

  .nav-links > li.open > .dropdown {
    max-height: 600px;
    padding: 0.35rem;
    margin-bottom: 0.35rem;
  }

  .split { grid-template-columns: 1fr; }
  .split-img { aspect-ratio: 4 / 3; max-height: 420px; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .hero-prev, .hero-next { display: none; }
}

@media (max-width: 640px) {
  .card-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 3.75rem 0; }
  .float-btns { right: 0.85rem; bottom: 1rem; }
  .float-btn { width: 50px; height: 50px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .info-list { columns: 1 !important; }
}

/* Overlay when mobile menu open */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 40, 50, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.nav-overlay.show {
  opacity: 1;
  visibility: visible;
}
