/* ============================================================
   MAR EVENTOS — Global Stylesheet
   Brand: Cream #F2EDE4 | Teal #6B9B9B | Forest #0F1B12 | Green #2C4A3E
   ============================================================ */

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

:root {
  --cream: #F2EDE4;
  --cream-dark: #E8E0D3;
  --teal: #6B9B9B;
  --teal-light: #8BBABA;
  --teal-dark: #4A7A7A;
  --green: #2C4A3E;
  --navy: #0F1B12;
  --white: #FFFFFF;
  --text: #1a1a1a;
  --text-light: #5a5a5a;
  --text-muted: #999;
  --gold: #C9A96E;

  --font-script: 'Sacramento', cursive;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;

  --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 6px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 15px 50px rgba(0,0,0,0.18);

  --radius: 4px;
  --radius-lg: 8px;

  --nav-height: 80px;
  --transition: all 0.3s ease;
}

/* ======== RESET & BASE ======== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ======== SVG LOGO ======== */
.nav-logo-link {
  display: block;
  text-decoration: none;
  flex-shrink: 0;
  color: rgba(255,255,255,0.92);
  transition: color 0.3s ease, opacity 0.3s ease;
  line-height: 0;
}
.nav-logo-link:hover {
  color: var(--white);
  opacity: 0.85;
}

.logo-svg { height: 42px; width: auto; display: block; }
.logo-svg-lg { height: 52px; }
.logo-svg-loader { height: 58px; }
.footer-logo-svg { margin-bottom: 20px; }

/* Logo image sizing - max-height wins over img{height:auto} because it's more specific */
.logo-img {
  height: 36px !important;
  width: auto !important;
  max-width: none !important;
  display: block;
  flex-shrink: 0;
}
.logo-img.logo-img-footer {
  height: 44px !important;
}
.logo-img.logo-img-loader {
  height: 56px !important;
}

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

a { text-decoration: none; color: inherit; transition: var(--transition); }

ul { list-style: none; }

/* ======== TYPOGRAPHY ======== */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--green);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

.script-title {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--teal);
  letter-spacing: 0.02em;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-light);
}

/* ======== NAVIGATION ======== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 60px);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  background: rgba(30, 58, 47, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.navbar.dark-nav {
  background: rgba(30, 58, 47, 0.97);
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--teal-light);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--teal-light);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown .nav-link {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-dropdown .nav-link svg {
  width: 10px;
  height: 10px;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-link svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  min-width: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: all 0.25s ease;
  border-top: 2px solid var(--teal);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

.dropdown-menu a:last-child { border-bottom: none; }

.dropdown-menu a:hover {
  color: var(--white);
  background: rgba(107, 155, 155, 0.2);
  padding-left: 28px;
}

/* CTA Button in nav */
.nav-cta {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--teal);
  padding: 10px 20px;
  border-radius: 50px;
  transition: var(--transition);
  margin-left: 8px;
}

.nav-cta:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(107, 155, 155, 0.4);
}

/* Mobile Nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent !important;
  color: white;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

@media (max-width: 900px) {
  .nav-menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    overflow-x: hidden;
  }

  .nav-menu.open { display: flex; }

  .nav-toggle { display: flex; }

  .nav-link {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.8rem;
    text-align: left;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown .nav-link {
    width: 100%;
  }

  .nav-dropdown .dropdown-menu {
    position: static;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    background: rgba(255,255,255,0.05);
    box-shadow: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-radius: 0;
    min-width: 0;
    width: 100%;
    overflow: visible;
    display: none;
  }

  .nav-dropdown.open .dropdown-menu { display: block; }

  .nav-dropdown.open .nav-link svg { transform: rotate(180deg); }

  .nav-cta { width: 100%; text-align: center; margin-left: 0; }
}

/* ======== BUTTONS ======== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 155, 155, 0.4);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-dark:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 0.8rem;
}

/* ======== SECTIONS ======== */
.section {
  padding: clamp(22px, 2.8vw, 40px) clamp(20px, 5vw, 60px);
}

.section-sm {
  padding: clamp(16px, 2vw, 28px) clamp(20px, 5vw, 60px);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* Section headers */
.section-label {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--teal);
  display: block;
  margin-bottom: 8px;
}

.section-header {
  margin-bottom: clamp(22px, 3vw, 38px);
}

.section-header.center {
  text-align: center;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 600px;
  font-size: 1.05rem;
}

.section-header.center p {
  margin: 0 auto;
}

.divider {
  width: 60px;
  height: 2px;
  background: var(--teal);
  margin-bottom: 24px;
  border-radius: 2px;
}

.divider.center {
  margin: 0 auto 24px;
}

/* ======== HERO ======== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 27, 18, 0.5) 0%,
    rgba(15, 27, 18, 0.35) 40%,
    rgba(15, 27, 18, 0.6) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 20px;
  max-width: 800px;
}

.hero-logo {
  display: none;
}

.hero-subtitle {
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
  display: block;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--white);
  font-weight: 300;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero p {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-actions .btn {
  min-width: 200px;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
  cursor: pointer;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.4);
  display: block;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Page hero (non-homepage) */
.page-hero {
  position: relative;
  height: clamp(600px, 82vh, 920px);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.page-hero .hero-overlay,
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,27,18,0.30) 0%, rgba(15,27,18,0.52) 100%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 20px;
}

.page-hero-content .script-title {
  color: rgba(255,255,255,0.85);
  margin-bottom: 8px;
  display: block;
}

.page-hero-content h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.page-hero-content p {
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  justify-content: center;
  margin-top: 20px;
}

.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ======== CARDS ======== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

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

.card-body {
  padding: 24px 28px 28px;
}

.card-body h3 {
  margin-bottom: 12px;
  color: var(--navy);
}

/* ======== GRIDS ======== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 3vw, 40px); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 36px); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 28px); }

@media (max-width: 1100px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ======== GALLERY ======== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 10px;
}

/* Venue detail galleries: fixed 4-col, last solo item fills full row */
#galeria .gallery-grid {
  grid-template-columns: repeat(4, 1fr);
}

#galeria .gallery-grid .gallery-item:last-child:nth-child(4n+1) {
  grid-column: 1 / -1;
  aspect-ratio: 21/9;
}

@media (max-width: 900px) {
  #galeria .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #galeria .gallery-grid .gallery-item:last-child:nth-child(4n+1) {
    grid-column: auto;
    aspect-ratio: 4/3;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 27, 18, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(15, 27, 18, 0.35);
}

.gallery-item-overlay svg {
  color: var(--white);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
  width: 36px;
  height: 36px;
}

.gallery-item:hover .gallery-item-overlay svg {
  opacity: 1;
  transform: scale(1);
}

/* Masonry-style gallery */
.gallery-masonry {
  columns: 3 280px;
  column-gap: 12px;
}

.gallery-masonry .gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  aspect-ratio: unset;
}

.gallery-masonry .gallery-item img {
  width: 100%;
  height: auto;
}

/* ======== SLIDER ======== */
.slider-container {
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide {
  flex: 0 0 calc(100% / 4);
  padding: 0 6px;
}

@media (max-width: 1024px) { .slide { flex: 0 0 calc(100% / 3); } }
@media (max-width: 768px) { .slide { flex: 0 0 calc(100% / 2); } }
@media (max-width: 480px) { .slide { flex: 0 0 100%; } }

.slide-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius);
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--teal);
  transform: translateY(-50%) scale(1.05);
}

.slider-btn.prev { left: -24px; }
.slider-btn.next { right: -24px; }

@media (max-width: 768px) {
  .slider-btn.prev { left: 8px; }
  .slider-btn.next { right: 8px; }
}

/* ======== LIGHTBOX ======== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover { background: rgba(255,255,255,0.2); }

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ======== CTA STRIP ======== */
.cta-strip {
  background: var(--navy);
  padding: 70px clamp(20px, 5vw, 60px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236B9B9B' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-strip .container { position: relative; z-index: 1; }

.cta-strip .script-title {
  color: rgba(255,255,255,0.6);
  font-size: 1.8rem;
  display: block;
  margin-bottom: 8px;
}

.cta-strip h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-strip p {
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ======== VENUE CARDS ======== */
.venue-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 3/4;
  cursor: pointer;
}

.venue-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.venue-card:hover img { transform: scale(1.06); }

.venue-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,27,18,0.88) 30%, rgba(15,27,18,0.1) 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: var(--transition);
}

.venue-card:hover .venue-card-overlay {
  background: linear-gradient(to top, rgba(15,27,18,0.95) 40%, rgba(15,27,18,0.2) 70%);
}

.venue-card-overlay .script-title {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 4px;
  display: block;
}

.venue-card-overlay h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.venue-card-overlay p {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
}

.venue-card-overlay .btn {
  align-self: flex-start;
  font-size: 0.65rem;
  padding: 10px 20px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease 0.05s;
}

.venue-card:hover .venue-card-overlay .btn {
  opacity: 1;
  transform: translateY(0);
}

/* ======== SERVICE CARDS ======== */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.service-card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-image img { transform: scale(1.06); }

.service-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(44, 74, 62, 0.7));
}

.service-card-body {
  padding: 24px 24px 28px;
}

.service-card-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
}

.service-card-body h3 {
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.service-card-body p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-light);
}

/* ======== ABOUT SECTION ======== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

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

.about-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.about-image-grid img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-image-grid img:first-child {
  grid-row: span 2;
  aspect-ratio: 4/5;
}

.about-text { }
.about-text .script-title { display: block; margin-bottom: 8px; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 36px 0;
  padding: 28px;
  background: var(--cream);
  border-radius: var(--radius-lg);
}

.stat-item { text-align: center; }

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--teal);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Services list */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.service-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px;
  background: var(--cream);
  color: var(--navy);
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  transition: var(--transition);
}

.service-tag:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.services-list .service-tag {
  position: relative;
  top: auto;
  left: auto;
  z-index: auto;
}

/* ======== CLIENT LOGOS ======== */
.clients-section {
  background: var(--cream);
  padding: clamp(50px, 6vw, 80px) clamp(20px, 5vw, 60px);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 20px;
  align-items: center;
  justify-items: center;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 16/9;
  filter: grayscale(1) opacity(0.5);
  transition: var(--transition);
}

.client-logo:hover {
  filter: grayscale(0) opacity(1);
  box-shadow: var(--shadow-sm);
}

.client-logo img {
  max-width: 100%;
  max-height: 50px;
  object-fit: contain;
}

.client-logo-text {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ======== CONTACT SECTION ======== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 6vw, 80px);
}

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

.contact-info { }
.contact-info .script-title { display: block; margin-bottom: 8px; }
.contact-info h2 { margin-bottom: 20px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
}

.contact-item-text h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-item-text p, .contact-item-text a {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

.contact-item-text a:hover { color: var(--teal); }

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
}

@media (max-width: 600px) { .contact-form { padding: 24px; } }

.form-group { margin-bottom: 22px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group label .req { color: var(--teal); margin-left: 2px; }

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(107, 155, 155, 0.15);
}

.form-control::placeholder { color: var(--text-muted); }

textarea.form-control {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

/* Radio/Checkbox groups */
.radio-group, .check-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.radio-label, .check-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
  user-select: none;
}

.radio-label:hover, .check-label:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.radio-label input, .check-label input { display: none; }

.radio-label.checked, .check-label.checked {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

/* ======== MAP ======== */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 380px;
  margin-top: 36px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ======== FOOTER ======== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: clamp(50px, 7vw, 80px) clamp(20px, 5vw, 60px) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(30px, 4vw, 60px);
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 1000px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand {}

.footer-logo {
  height: 52px;
  width: auto;
  opacity: 0.9;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-btn {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

.social-btn svg { width: 18px; height: 18px; }

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--teal-light);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.footer-contact-item a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.footer-contact-item a:hover { color: var(--teal-light); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
}

.footer-bottom a:hover { color: var(--teal-light); }

/* ======== WHATSAPP FLOAT ======== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 500;
  width: 46px;
  height: 46px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 14px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  color: var(--white);
}

.whatsapp-float:hover {
  background: #1ebe5d;
  transform: scale(1.08);
  box-shadow: 0 5px 22px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg { width: 22px; height: 22px; }

/* ======== UTILITY ======== */
.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy); }
.bg-green { background: var(--green); }
.bg-white { background: var(--white); }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }

.mt-auto { margin-top: auto; }
.mb-0 { margin-bottom: 0 !important; }
.gap-12 { gap: 12px; }

/* ======== ANIMATIONS ======== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ======== VENUE DETAIL ======== */
.venue-detail-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

@media (max-width: 768px) { .venue-detail-intro { grid-template-columns: 1fr; } }

.venue-specs {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 28px;
}

.venue-specs h4 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-dark);
}

.spec-row:last-child { border-bottom: none; }

.spec-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.spec-value {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}

/* Venue featured image */
.venue-featured-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}

.venue-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ======== VENUE DETAIL SPECS ======== */
.venue-detail-text .script-title { display: block; margin-bottom: 8px; }
.venue-detail-text p strong,
.about-text p strong,
.service-card-body p strong { color: var(--navy); font-weight: 600; }
.venue-detail-text h2 { margin-bottom: 20px; }
.venue-detail-text p { margin-bottom: 16px; line-height: 1.8; }

.venue-spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.venue-spec-item:last-child { border-bottom: none; }

.venue-spec-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.venue-spec-value {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  text-align: right;
  max-width: 55%;
}

.venue-detail-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.venue-detail-ctas .btn {
  padding: 10px 22px;
  font-size: 0.68rem;
}

.venue-detail-ctas .btn svg {
  width: 15px;
  height: 15px;
}

.cta-strip-actions .btn {
  padding: 10px 22px;
  font-size: 0.68rem;
}

.cta-strip-actions .btn svg {
  width: 15px;
  height: 15px;
}

@media (max-width: 600px) {
  .venue-detail-ctas { flex-direction: column; }
  .venue-detail-ctas .btn { width: 100%; justify-content: center; }
}

/* ======== VENUE CARDS (also-like section) ======== */
.section-also-like {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--navy);
  font-weight: 300;
  margin-bottom: 28px;
}

.venue-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.venue-card-image-link {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  aspect-ratio: 16/10;
}

.venue-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.venue-card:hover .venue-card-image { transform: scale(1.05); }

.venue-card-body {
  padding: 20px 24px 28px;
}

.venue-card-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.venue-card-location {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 4px;
  line-height: 1.5;
}

.venue-card-location svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.venue-card-capacity {
  font-size: 0.82rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 20px;
}

/* ======== SECTION DIVIDER ======== */
.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--cream-dark), transparent);
  margin: 0;
}

/* ======== RESPONSIVE TWEAKS ======== */
@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 0 24px;
    box-sizing: border-box;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
    min-width: 0;
    text-align: center;
    justify-content: center;
  }
  .cta-actions { flex-direction: column; align-items: center; }
}
@media (max-width: 768px) {
  .hero {
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: clamp(90px, 17vh, 140px);
  }
  .hero-content {
    padding: 0 24px;
  }
}
@media (max-width: 480px) {
  .btn { padding: 12px 24px; font-size: 0.7rem; }
  .hero p { font-size: 0.9rem; }
  .about-stats { grid-template-columns: 1fr; padding: 20px; gap: 16px; }
}

/* ======================================================
   PREMIUM ANIMATION SYSTEM
   ====================================================== */

/* ----- Page Loader ----- */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #EFE7DB;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 28px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.out {
  opacity: 0;
  visibility: hidden;
}
.loader-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: loaderFade 0.5s 0.1s forwards;
}
@keyframes loaderFade {
  to { opacity: 1; }
}
.loader-bar-wrap {
  width: 160px;
  height: 1px;
  background: rgba(44,74,62,0.15);
  position: relative;
  overflow: hidden;
}
.loader-bar {
  height: 100%;
  background: var(--green);
  width: 0%;
  transition: width 0.8s cubic-bezier(0.16,1,0.3,1);
}

/* ----- Custom Cursor ----- */
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(107,155,155,0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  will-change: transform;
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.cursor-ring.hover {
  width: 56px;
  height: 56px;
  border-color: var(--teal);
  background: rgba(107,155,155,0.08);
}
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
}
.has-cursor { cursor: none; }
.has-cursor a, .has-cursor button { cursor: none; }

/* ----- Hero entrance animations ----- */
.hero-eyebrow {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.hero-eyebrow.enter { opacity: 1; transform: none; }

.hero-subtitle {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.hero-subtitle.enter { opacity: 1; transform: none; }

.hero-divider {
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.hero-divider.enter { opacity: 1; transform: scaleY(1); }

.hero-tagline {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.hero-tagline.enter { opacity: 1; }

.hero-actions {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.hero-actions.enter { opacity: 1; transform: none; }

.hero-scroll {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.hero-scroll.enter { opacity: 1; }

/* Word-by-word reveal */
.w-wrap {
  overflow: hidden;
  display: inline-block;
  line-height: inherit;
}
.w-inner {
  display: inline-block;
  transform: translateY(105%);
  opacity: 0;
  transition: transform 0.65s cubic-bezier(0.16,1,0.3,1), opacity 0.4s ease;
}
.w-inner.enter {
  transform: translateY(0);
  opacity: 1;
}

/* ----- Scroll animation variants ----- */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

.fade-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-left.visible {
  opacity: 1;
  transform: none;
}

.fade-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-right.visible {
  opacity: 1;
  transform: none;
}

.scale-in {
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

.blur-reveal {
  opacity: 0;
  filter: blur(16px);
  transform: translateY(20px);
  transition: opacity 0.8s ease, filter 0.8s ease, transform 0.8s ease;
}
.blur-reveal.visible {
  opacity: 1;
  filter: blur(0);
  transform: none;
}

.clip-reveal {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.9s cubic-bezier(0.16,1,0.3,1);
}
.clip-reveal.visible {
  clip-path: inset(0 0 0% 0);
}

/* Stagger items */
.stagger-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.stagger-item.visible {
  opacity: 1;
  transform: none;
}

/* ----- Noise / grain texture overlay ----- */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
  opacity: 0.06;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* ----- Triptych enhancements ----- */
.triptych-panel {
  will-change: transform;
  transition: transform 0.18s ease, box-shadow 0.3s ease !important;
}

/* ----- Marquee band ----- */
.marquee-band {
  overflow: hidden;
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
  padding: 18px 0;
  white-space: nowrap;
  user-select: none;
}
.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marqueeScroll 22s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 0 28px;
  font-family: var(--font-serif);
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  font-weight: 300;
  color: var(--navy);
  letter-spacing: 0.08em;
  font-style: italic;
}
.marquee-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ----- Stat columns enhanced ----- */
.stat-col {
  transition: transform 0.3s ease;
}
.stat-col:hover {
  transform: translateY(-3px);
}

/* ----- CTA strip glow effect ----- */
.cta-strip {
  position: relative;
}
.cta-strip::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(107,155,155,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ----- Service list item enhanced hover ----- */
.service-list-item {
  transition: padding-left 0.35s cubic-bezier(0.16,1,0.3,1), background 0.3s ease !important;
}
.service-list-item:hover {
  background: rgba(255,255,255,0.03);
  border-radius: 4px;
}

/* ----- Gallery mosaic hover glow ----- */
.mosaic-item::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 0 var(--teal);
  transition: box-shadow 0.35s ease;
  pointer-events: none;
  border-radius: var(--radius-lg);
}
.mosaic-item:hover::after {
  box-shadow: inset 0 0 0 2px rgba(107,155,155,0.5);
}

/* ----- Smooth image reveal on load ----- */
img {
  transition: opacity 0.4s ease;
}

/* ----- Scroll indicator pulse ----- */
.hero-scroll::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 0;
  background: rgba(255,255,255,0.4);
  animation: scrollLine 2s 1.5s infinite;
}
@keyframes scrollLine {
  0% { height: 0; top: -8px; opacity: 1; }
  100% { height: 30px; top: -38px; opacity: 0; }
}

/* ----- Logo hover glow ----- */
.nav-logo-link:hover .logo-svg {
  filter: drop-shadow(0 0 8px rgba(107,155,155,0.35));
}
