/* =========================================================
   Zoya Entertainment World — Premium Luxury Stylesheet
   Palette: Gold · Cream · Charcoal · White
   ========================================================= */

:root {
  --gold: #c19a6b;
  --gold-light: #e8d5a3;
  --gold-dark: #9a7a4a;
  --gold-rich: #b8894e;
  --orange: #ff6a00;
  --orange-bright: #ff8c1a;
  --orange-deep: #e85d04;
  --bottle-green: #0a3d2e;
  --bottle-green-deep: #062820;
  --bottle-green-soft: #0f4a38;
  --bottle-green-glow: #1a5c45;
  --header-dark: #0a3d2e;
  --header-dark-soft: #0f4a38;
  --cream: #f7f3ec;
  --cream-deep: #efe8dc;
  --white: #ffffff;
  --charcoal: #1a1a1a;
  --charcoal-soft: #2c2c2c;
  --text: #2a2a2a;
  --text-muted: #6b6560;
  --border: rgba(193, 154, 107, 0.28);
  --border-soft: rgba(26, 26, 26, 0.08);
  --shadow-soft: 0 20px 60px rgba(26, 26, 26, 0.08);
  --shadow-gold: 0 12px 40px rgba(193, 154, 107, 0.35);
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Montserrat", "Helvetica Neue", sans-serif;
  --header-h: 88px;
  --container: 1240px;
  --ease-luxury: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --orange-line: linear-gradient(
    90deg,
    transparent 0%,
    var(--orange-deep) 12%,
    var(--orange) 28%,
    var(--orange-bright) 50%,
    #ffb347 62%,
    var(--orange) 78%,
    var(--orange-deep) 88%,
    transparent 100%
  );
  --orange-frame-border: rgba(255, 106, 0, 0.65);
  --orange-frame-glow: rgba(255, 140, 26, 0.35);
}

@keyframes orangeLineFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes orangeFramePulse {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(255, 106, 0, 0.45),
      0 0 16px rgba(255, 106, 0, 0.18),
      inset 0 0 0 1px rgba(255, 179, 71, 0.12);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(255, 179, 71, 0.9),
      0 0 28px rgba(255, 106, 0, 0.4),
      inset 0 0 0 1px rgba(255, 224, 168, 0.28);
  }
}

@keyframes orangeSweep {
  0% { transform: translateX(-120%) skewX(-18deg); opacity: 0; }
  20% { opacity: 0.85; }
  55% { opacity: 0.55; }
  100% { transform: translateX(220%) skewX(-18deg); opacity: 0; }
}

/* Shared animated orange frame for images / boxes */
.orange-frame,
.project-media,
.gallery-item,
.hero-visual-frame,
.about-frame-media,
.careers-visual,
.news-media,
.news-card,
.contact-form,
.newsletter-form,
.partner-logo,
.service-item::before {
  border-color: var(--orange-frame-border) !important;
}

.orange-frame,
.project-media,
.gallery-item,
.hero-visual-frame,
.about-frame-media,
.careers-visual,
.news-media,
.news-card,
.contact-form,
.newsletter-form {
  position: relative;
  border: 1px solid var(--orange-frame-border);
  animation: orangeFramePulse 3.6s ease-in-out infinite;
}

.project-media::after,
.gallery-item::before,
.hero-visual-frame::after,
.about-frame-media::after,
.careers-visual::after,
.news-media::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 35%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 179, 71, 0.35),
    rgba(255, 106, 0, 0.2),
    transparent
  );
  pointer-events: none;
  z-index: 4;
  animation: orangeSweep 4.8s ease-in-out infinite;
}

.gallery-item::before {
  z-index: 2;
}

.news-media::after {
  animation-delay: 0.6s;
}

.about-frame-media::after {
  animation-delay: 1.1s;
}

.careers-visual::after {
  animation-delay: 1.5s;
}

.project-media::after {
  animation-delay: 0.3s;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.35s var(--ease-luxury);
}

ul {
  list-style: none;
}

button,
input,
textarea {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 3rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
  position: relative;
}

.section::before,
.section::after,
.partners::before,
.partners::after,
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange-line);
  background-size: 200% 100%;
  animation: orangeLineFlow 3.2s linear infinite;
  z-index: 6;
  pointer-events: none;
  box-shadow: 0 0 12px rgba(255, 106, 0, 0.45);
}

.section::before,
.partners::before {
  top: 0;
}

.section::after,
.partners::after,
.hero::after {
  bottom: 0;
  animation-direction: reverse;
}

.hero::after {
  animation-duration: 2.8s;
}

.partners {
  position: relative;
}

.section-cream {
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(193, 154, 107, 0.08), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 100%, rgba(232, 213, 163, 0.12), transparent 50%),
    var(--cream);
}

/* ---------- Typography ---------- */
.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--charcoal);
  letter-spacing: 0.01em;
}

.section-title--film {
  background: linear-gradient(
    125deg,
    #ffb347 0%,
    var(--orange-bright) 28%,
    var(--orange) 52%,
    #ffe0a8 72%,
    var(--orange-deep) 100%
  );
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 18px rgba(255, 106, 0, 0.35));
  animation: filmTitleOrangeFlow 4.2s ease-in-out infinite;
  position: relative;
}

.section-title--film::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 7.5rem;
  height: 2px;
  background: var(--orange-line);
  background-size: 200% 100%;
  animation: orangeLineFlow 2.8s linear infinite;
  box-shadow: 0 0 12px rgba(255, 106, 0, 0.55);
}

@keyframes filmTitleOrangeFlow {
  0%, 100% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 14px rgba(255, 106, 0, 0.28));
  }
  50% {
    background-position: 100% 50%;
    filter: drop-shadow(0 0 26px rgba(255, 140, 26, 0.5));
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-title--film,
  .section-title--film::after {
    animation: none !important;
  }
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.section-header.centered {
  justify-content: center;
  text-align: center;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  position: relative;
  padding-bottom: 0.25rem;
}

.section-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.45s var(--ease-luxury);
}

.section-link:hover::after {
  width: 100%;
}

.section-link i {
  transition: transform 0.4s var(--ease-luxury);
}

.section-link:hover i {
  transform: translateX(5px);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1rem 1.85rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s var(--ease-luxury),
    box-shadow 0.4s var(--ease-luxury),
    background 0.4s var(--ease-luxury),
    color 0.4s var(--ease-luxury),
    border-color 0.4s var(--ease-luxury);
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.35) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease-luxury);
  z-index: -1;
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 45%, var(--gold-dark));
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(193, 154, 107, 0.45);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.72);
  color: var(--charcoal);
  border: 1px solid rgba(26, 26, 26, 0.28);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.75rem 1.35rem;
  font-size: 0.68rem;
}

.btn-full {
  width: 100%;
}

/* ---------- Cursor glow ---------- */
.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  background: radial-gradient(circle, rgba(193, 154, 107, 0.12) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  mix-blend-mode: multiply;
}

body:hover .cursor-glow {
  opacity: 1;
}

@media (pointer: coarse) {
  .cursor-glow {
    display: none;
  }
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background:
    linear-gradient(
      135deg,
      var(--bottle-green-deep) 0%,
      var(--bottle-green) 42%,
      var(--bottle-green-soft) 78%,
      var(--bottle-green-glow) 100%
    );
  box-shadow:
    0 12px 40px rgba(6, 40, 32, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    background 0.45s var(--ease-luxury),
    box-shadow 0.45s var(--ease-luxury),
    backdrop-filter 0.45s var(--ease-luxury);
}

.site-header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--orange-deep) 15%,
    var(--orange) 35%,
    var(--orange-bright) 50%,
    var(--orange) 65%,
    var(--orange-deep) 85%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: headerOrangeFlow 3.2s linear infinite;
  z-index: 2;
  box-shadow:
    0 0 12px rgba(255, 106, 0, 0.65),
    0 0 24px rgba(255, 140, 26, 0.35);
}

.site-header::after {
  content: "";
  position: absolute;
  left: -40%;
  bottom: -1px;
  width: 40%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.85),
    var(--orange-bright),
    transparent
  );
  animation: headerOrangeSweep 2.8s ease-in-out infinite;
  z-index: 3;
  pointer-events: none;
  filter: blur(0.4px);
}

@keyframes headerOrangeFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes headerOrangeSweep {
  0% { left: -40%; opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

.site-header.is-scrolled {
  background:
    linear-gradient(
      135deg,
      rgba(6, 40, 32, 0.96) 0%,
      rgba(10, 61, 46, 0.96) 50%,
      rgba(15, 74, 56, 0.96) 100%
    );
  backdrop-filter: blur(18px) saturate(1.15);
  box-shadow:
    0 14px 44px rgba(6, 40, 32, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.header-inner {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  padding: 4px;
  border: 1px solid rgba(255, 106, 0, 0.65);
  border-radius: 6px;
  background: rgba(6, 40, 32, 0.35);
  box-shadow:
    0 0 0 1px rgba(255, 106, 0, 0.25),
    0 0 16px rgba(255, 106, 0, 0.2);
  animation: orangeFramePulse 3.6s ease-in-out infinite;
  transition: transform 0.4s var(--ease-luxury), filter 0.4s var(--ease-luxury), box-shadow 0.4s;
  overflow: hidden;
  isolation: isolate;
}

.logo::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: var(--orange-line);
  background-size: 200% 100%;
  animation: orangeLineFlow 2.8s linear infinite;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}

.logo::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 40%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 179, 71, 0.4),
    rgba(255, 106, 0, 0.22),
    transparent
  );
  pointer-events: none;
  z-index: 1;
  animation: orangeSweep 4.5s ease-in-out infinite;
}

.logo:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
  border-color: rgba(255, 179, 71, 0.95);
  box-shadow:
    0 0 0 1px rgba(255, 179, 71, 0.55),
    0 0 24px rgba(255, 106, 0, 0.4);
}

.logo:hover::before {
  animation-duration: 1.5s;
}

.logo-img {
  height: 64px;
  width: auto;
  max-width: min(200px, 42vw);
  object-fit: contain;
  display: block;
  border-radius: 4px;
  position: relative;
  z-index: 0;
  box-shadow: none;
  border: none;
}

.logo-img--footer {
  height: auto;
  width: 100%;
  max-width: 100%;
  max-height: 140px;
  object-fit: contain;
  object-position: center;
  margin: 0;
  display: block;
}

.logo--footer {
  display: grid;
  place-items: center;
  width: min(180px, 100%);
  aspect-ratio: 1 / 1;
  margin: 0 0 1rem;
  padding: 12px;
  border: 1px solid rgba(255, 106, 0, 0.65);
  border-radius: 8px;
  background: rgba(6, 40, 32, 0.55);
  box-shadow:
    0 0 0 1px rgba(255, 106, 0, 0.25),
    0 0 18px rgba(255, 106, 0, 0.22);
  animation: orangeFramePulse 3.6s ease-in-out infinite;
  overflow: hidden;
  isolation: isolate;
  box-sizing: border-box;
}

.logo--footer::before,
.logo--footer::after {
  display: block;
}

.logo--footer .logo-img--footer {
  position: relative;
  z-index: 0;
}

.logo--footer:hover {
  border-color: rgba(255, 179, 71, 0.95);
  box-shadow:
    0 0 0 1px rgba(255, 179, 71, 0.55),
    0 0 26px rgba(255, 106, 0, 0.4);
}

@media (prefers-reduced-motion: reduce) {
  .logo,
  .logo::before,
  .logo::after {
    animation: none !important;
  }
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(0.35rem, 0.7vw, 0.55rem);
}

.nav-link {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.85rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 106, 0, 0.45);
  overflow: hidden;
  isolation: isolate;
  z-index: 1;
  box-shadow: 0 0 12px rgba(255, 106, 0, 0.12);
  transition:
    color 0.35s var(--ease-luxury),
    border-color 0.35s var(--ease-luxury),
    background 0.35s var(--ease-luxury),
    box-shadow 0.35s var(--ease-luxury),
    transform 0.35s var(--ease-luxury);
}

.nav-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    135deg,
    rgba(255, 179, 71, 0.18),
    rgba(255, 106, 0, 0.12)
  );
  opacity: 0.35;
  transition: opacity 0.35s var(--ease-luxury);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--orange-line);
  background-size: 200% 100%;
  transform: scaleX(1);
  transform-origin: center;
  animation: orangeLineFlow 2.8s linear infinite;
  box-shadow: 0 0 10px rgba(255, 106, 0, 0.55);
}

.nav-link:hover {
  color: #fff;
  border-color: rgba(255, 140, 26, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 106, 0, 0.22);
}

.nav-link:hover::before {
  opacity: 1;
}

.nav-link:hover::after {
  animation-duration: 1.4s;
}

.nav-link.active {
  color: #fff;
  border-color: rgba(255, 179, 71, 0.85);
  background: linear-gradient(
    135deg,
    #ffb347 0%,
    var(--orange-bright) 32%,
    var(--orange) 68%,
    var(--orange-deep) 100%
  );
  background-size: 200% 200%;
  box-shadow:
    0 10px 24px rgba(255, 106, 0, 0.4),
    0 0 16px rgba(255, 140, 26, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  animation: navTabActive 3.6s ease-in-out infinite;
}

.nav-link.active::before {
  opacity: 0;
}

.nav-link.active::after {
  opacity: 0.95;
  animation: orangeLineFlow 1.8s linear infinite;
}

.nav-link.active:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 14px 30px rgba(255, 106, 0, 0.5),
    0 0 22px rgba(255, 179, 71, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

@keyframes navTabLine {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes navTabActive {
  0%, 100% {
    background-position: 0% 50%;
    box-shadow:
      0 10px 24px rgba(255, 106, 0, 0.4),
      0 0 14px rgba(255, 140, 26, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.35);
  }
  50% {
    background-position: 100% 50%;
    box-shadow:
      0 12px 30px rgba(255, 106, 0, 0.55),
      0 0 24px rgba(255, 179, 71, 0.42),
      inset 0 1px 0 rgba(255, 255, 255, 0.45);
  }
}

@media (prefers-reduced-motion: reduce) {
  .section::before,
  .section::after,
  .partners::before,
  .partners::after,
  .hero::after,
  .project-media,
  .gallery-item,
  .hero-visual-frame,
  .about-frame-media,
  .about-frame-border,
  .careers-visual,
  .news-media,
  .news-card,
  .contact-form,
  .newsletter-form,
  .partner-logo,
  .service-icon,
  .service-item::before,
  .service-item::after,
  .nav-link::after,
  .project-media::after,
  .gallery-item::before,
  .hero-visual-frame::after,
  .about-frame-media::after,
  .careers-visual::after,
  .news-media::after {
    animation: none !important;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.lang-select {
  position: relative;
  z-index: 20;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.75rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 140, 26, 0.4);
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.18), rgba(6, 40, 32, 0.45));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition:
    border-color 0.35s var(--ease-luxury),
    box-shadow 0.35s var(--ease-luxury),
    transform 0.35s var(--ease-luxury),
    background 0.35s var(--ease-luxury);
}

.lang-toggle:hover,
.lang-select.is-open .lang-toggle {
  border-color: rgba(255, 179, 71, 0.75);
  box-shadow: 0 8px 22px rgba(255, 106, 0, 0.28);
  transform: translateY(-1px);
  background: linear-gradient(135deg, rgba(255, 140, 26, 0.35), rgba(10, 61, 46, 0.55));
}

.lang-toggle .fa-globe {
  color: var(--orange-bright);
  font-size: 0.85rem;
}

.lang-caret {
  font-size: 0.55rem;
  transition: transform 0.3s var(--ease-luxury);
}

.lang-select.is-open .lang-caret {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  min-width: 168px;
  margin: 0;
  padding: 0.4rem;
  list-style: none;
  border-radius: 6px;
  border: 1px solid rgba(255, 140, 26, 0.45);
  background:
    linear-gradient(
      160deg,
      rgba(10, 61, 46, 0.98),
      rgba(6, 40, 32, 0.98)
    );
  box-shadow: 0 18px 40px rgba(3, 18, 14, 0.55);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity 0.3s var(--ease-luxury),
    transform 0.3s var(--ease-luxury),
    visibility 0.3s;
  z-index: 30;
}

.lang-select.is-open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.75rem;
  border: 1px solid transparent;
  border-radius: 4px;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  text-align: left;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.lang-option:hover {
  background: rgba(255, 106, 0, 0.16);
  border-color: rgba(255, 140, 26, 0.35);
  color: #fff;
}

.lang-option.is-active {
  background: linear-gradient(135deg, rgba(255, 140, 26, 0.35), rgba(255, 106, 0, 0.22));
  border-color: rgba(255, 179, 71, 0.55);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.lang-option-code {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--orange-bright);
  min-width: 1.6rem;
}

.lang-option-name {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

body[data-lang="hi"],
body[data-lang="mr"] {
  font-feature-settings: "kern";
}

body.lang-switching {
  animation: langFlash 0.35s ease;
}

@keyframes langFlash {
  0% { opacity: 1; }
  40% { opacity: 0.86; }
  100% { opacity: 1; }
}

body[data-lang="hi"] .nav-link,
body[data-lang="mr"] .nav-link,
body[data-lang="hi"] .section-title,
body[data-lang="mr"] .section-title,
body[data-lang="hi"] .hero-desc,
body[data-lang="mr"] .hero-desc {
  letter-spacing: 0.02em;
}

.site-header .btn-gold {
  background: linear-gradient(135deg, var(--orange-bright), var(--orange) 45%, var(--orange-deep));
  box-shadow: 0 10px 28px rgba(255, 106, 0, 0.35);
}

.site-header .btn-gold:hover {
  box-shadow: 0 14px 36px rgba(255, 106, 0, 0.5);
}

.btn-header-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  border: 1px solid rgba(255, 224, 168, 0.45);
  background: linear-gradient(
    135deg,
    #ffb347 0%,
    var(--orange-bright) 28%,
    var(--orange) 58%,
    var(--orange-deep) 100%
  );
  background-size: 200% 200%;
  box-shadow:
    0 10px 28px rgba(255, 106, 0, 0.42),
    0 0 18px rgba(255, 140, 26, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  animation:
    headerCtaGradient 4.5s ease-in-out infinite,
    headerCtaPulse 2.6s ease-in-out infinite;
  z-index: 1;
}

.btn-header-cta-label {
  position: relative;
  z-index: 2;
}

.btn-header-cta-shine {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255, 255, 255, 0.55) 48%,
    transparent 72%
  );
  transform: translateX(-130%);
  animation: headerCtaShine 3.2s ease-in-out infinite;
}

.btn-header-cta::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(120deg, var(--gold-light), var(--orange-bright), var(--orange), var(--gold));
  background-size: 220% 220%;
  z-index: -1;
  opacity: 0.75;
  filter: blur(8px);
  animation: headerCtaAura 3.8s ease-in-out infinite;
}

.btn-header-cta:hover {
  transform: translateY(-2px) scale(1.03);
  border-color: #ffe0a8;
  box-shadow:
    0 16px 40px rgba(255, 106, 0, 0.55),
    0 0 28px rgba(255, 179, 71, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  animation-duration: 2.2s, 1.6s;
}

.btn-header-cta:hover .btn-header-cta-shine {
  animation-duration: 1.6s;
}

.btn-header-cta:active {
  transform: translateY(0) scale(0.98);
}

@keyframes headerCtaGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes headerCtaPulse {
  0%, 100% {
    box-shadow:
      0 10px 28px rgba(255, 106, 0, 0.42),
      0 0 16px rgba(255, 140, 26, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.35);
  }
  50% {
    box-shadow:
      0 14px 36px rgba(255, 106, 0, 0.58),
      0 0 28px rgba(255, 179, 71, 0.45),
      inset 0 1px 0 rgba(255, 255, 255, 0.45);
  }
}

@keyframes headerCtaShine {
  0%, 35% { transform: translateX(-130%); opacity: 0; }
  45% { opacity: 0.9; }
  70% { transform: translateX(130%); opacity: 0.35; }
  100% { transform: translateX(130%); opacity: 0; }
}

@keyframes headerCtaAura {
  0%, 100% { background-position: 0% 50%; opacity: 0.55; }
  50% { background-position: 100% 50%; opacity: 0.9; }
}

@media (prefers-reduced-motion: reduce) {
  .btn-header-cta,
  .btn-header-cta-shine,
  .btn-header-cta::after {
    animation: none !important;
  }
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #ffffff;
  transition: transform 0.35s var(--ease-luxury), opacity 0.35s, background 0.35s;
}

.menu-toggle:hover span {
  background: var(--orange-bright);
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 2rem) 0 5rem;
  overflow: hidden;
}

.hero--luxe {
  background: var(--bottle-green-deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image {
  position: absolute;
  inset: -5%;
  background:
    url("https://images.unsplash.com/photo-1517604931442-7e0c8ed2963c?auto=format&fit=crop&w=2200&q=85")
      center / cover no-repeat;
  animation: heroKenBurns 28s ease-in-out infinite alternate;
  will-change: transform;
  filter: saturate(0.85) contrast(1.12) brightness(0.55);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      115deg,
      rgba(6, 40, 32, 0.96) 0%,
      rgba(10, 61, 46, 0.88) 36%,
      rgba(10, 61, 46, 0.62) 58%,
      rgba(6, 40, 32, 0.55) 100%
    ),
    radial-gradient(ellipse at 72% 40%, rgba(26, 92, 69, 0.45), transparent 55%),
    radial-gradient(ellipse at 18% 80%, rgba(193, 154, 107, 0.12), transparent 45%);
}

.hero-bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(3, 18, 14, 0.72) 100%);
  pointer-events: none;
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  mix-blend-mode: soft-light;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.45;
  animation: orbFloat 10s ease-in-out infinite;
}

.hero-orb--1 {
  width: 340px;
  height: 340px;
  top: 8%;
  left: -6%;
  background: radial-gradient(circle, rgba(26, 92, 69, 0.7), transparent 70%);
}

.hero-orb--2 {
  width: 280px;
  height: 280px;
  right: 8%;
  bottom: 12%;
  background: radial-gradient(circle, rgba(193, 154, 107, 0.35), transparent 70%);
  animation-delay: 2.5s;
}

.hero-light-beam {
  position: absolute;
  top: -20%;
  right: 18%;
  width: 2px;
  height: 140%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(232, 213, 163, 0.35),
    rgba(255, 106, 0, 0.2),
    transparent
  );
  transform: rotate(18deg);
  animation: beamPulse 5s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.55;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(18px, -22px) scale(1.08); }
}

@keyframes beamPulse {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 0.7; }
}

@keyframes heroKenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.1) translate(-1.5%, 1%); }
}

.hero-slider {
  position: relative;
  z-index: 2;
  width: min(100% - 3rem, var(--container));
  margin-inline: auto;
}

.hero-slide {
  display: none;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero-slide.is-active {
  display: grid;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.hero-badge-line {
  display: block;
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), var(--orange));
  animation: lineGrow 2.4s var(--ease-out) both;
}

.hero-badge-line:last-child {
  background: linear-gradient(90deg, var(--orange), var(--gold-light), transparent);
}

@keyframes lineGrow {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0;
  text-shadow: 0 0 24px rgba(232, 213, 163, 0.25);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6.5vw, 5.25rem);
  font-weight: 500;
  line-height: 1.05;
  color: #f4f1ea;
  margin-bottom: 1.25rem;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  position: relative;
  z-index: 2;
}

.hero-title span.hero-title-line {
  display: block;
}

.hero-title .gold > .hero-float-text,
.hero-title--film .gold > .hero-float-text {
  /* gold gradient lives on .hero-float-text--b */
}

.hero-title--film {
  margin-bottom: 1.15rem;
}

.hero-float-text {
  display: inline-block;
  will-change: transform, filter;
  transform-origin: center;
}

.hero-float-text--a {
  background: linear-gradient(
    125deg,
    #fff0d6 0%,
    var(--gold-light) 22%,
    var(--orange-bright) 48%,
    var(--gold) 72%,
    var(--orange-deep) 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation:
    heroTitleFloatA 5.2s ease-in-out infinite,
    titleGoldOrangeShimmer 4.2s ease-in-out infinite;
  animation-delay: 1.2s, 1.2s;
  filter: drop-shadow(0 10px 26px rgba(255, 106, 0, 0.28));
}

.hero-float-text--b {
  font-style: italic;
  background: linear-gradient(
    120deg,
    var(--orange-bright) 0%,
    #ffe0a8 18%,
    var(--gold-light) 38%,
    #fff6df 52%,
    var(--gold) 68%,
    var(--orange) 88%,
    var(--orange-deep) 100%
  );
  background-size: 240% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation:
    heroTitleFloatB 6s ease-in-out infinite,
    titleGoldOrangeShimmer 3.8s ease-in-out infinite;
  animation-delay: 1.45s, 1.45s;
  filter: drop-shadow(0 14px 32px rgba(255, 140, 26, 0.38));
}

@keyframes titleGoldOrangeShimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.hero-float-soft {
  animation: heroSoftFloat 4.8s ease-in-out infinite;
  animation-delay: 1.1s;
}

.hero-float-soft--delay {
  animation-delay: 1.6s;
}

@keyframes heroTitleFloatA {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(-0.4deg);
  }
  25% {
    transform: translate3d(0, -10px, 0) rotate(0.2deg);
  }
  50% {
    transform: translate3d(4px, -16px, 0) rotate(0.5deg);
  }
  75% {
    transform: translate3d(-2px, -8px, 0) rotate(-0.2deg);
  }
}

@keyframes heroTitleFloatB {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0.5deg) scale(1);
  }
  30% {
    transform: translate3d(-3px, -14px, 0) rotate(-0.3deg) scale(1.015);
  }
  60% {
    transform: translate3d(5px, -20px, 0) rotate(0.6deg) scale(1.02);
  }
  85% {
    transform: translate3d(1px, -9px, 0) rotate(0.2deg) scale(1.01);
  }
}

@keyframes heroSoftFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

.hero-title-aura {
  position: relative;
  height: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-spark {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff6df 0%, var(--gold) 45%, transparent 75%);
  box-shadow: 0 0 14px rgba(232, 213, 163, 0.85);
  opacity: 0;
  animation: heroSparkFloat 4.5s ease-in-out infinite;
}

.hero-spark--1 { left: 8%; top: -92px; animation-delay: 0.4s; }
.hero-spark--2 { left: 42%; top: -118px; animation-delay: 1.2s; width: 4px; height: 4px; }
.hero-spark--3 { left: 68%; top: -78px; animation-delay: 2s; }
.hero-spark--4 { left: 28%; top: -48px; animation-delay: 2.8s; width: 5px; height: 5px; }

@keyframes heroSparkFloat {
  0%, 100% {
    opacity: 0;
    transform: translateY(12px) scale(0.6);
  }
  20% {
    opacity: 0.9;
  }
  50% {
    opacity: 1;
    transform: translateY(-28px) scale(1.15);
  }
  80% {
    opacity: 0.35;
    transform: translateY(-48px) scale(0.8);
  }
}

.shimmer-text {
  /* shimmer handled on .hero-float-text--b */
}

@keyframes textShimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-float-text--a,
  .hero-float-text--b,
  .hero-float-soft,
  .hero-spark {
    animation: none !important;
  }
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-style: italic;
  color: rgba(244, 241, 234, 0.88);
  margin-bottom: 1.15rem;
}

.hero-tagline-inner {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-tagline-mark {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--orange), var(--gold-light));
  opacity: 0.85;
}

.hero-desc {
  max-width: 34rem;
  font-size: 0.98rem;
  font-weight: 300;
  color: rgba(232, 226, 214, 0.78);
  margin-bottom: 1.15rem;
  line-height: 1.85;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-hero-primary,
.btn-hero-outline {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  z-index: 1;
}

.btn-hero-label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.btn-hero-shine {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255, 255, 255, 0.55) 48%,
    transparent 72%
  );
  transform: translateX(-130%);
  animation: headerCtaShine 3.2s ease-in-out infinite;
}

.btn-hero-primary {
  border: 1px solid rgba(255, 224, 168, 0.5);
  background: linear-gradient(
    135deg,
    #ffb347 0%,
    var(--orange-bright) 28%,
    var(--orange) 58%,
    var(--orange-deep) 100%
  );
  background-size: 200% 200%;
  box-shadow:
    0 14px 36px rgba(255, 106, 0, 0.45),
    0 0 20px rgba(255, 140, 26, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  animation:
    headerCtaGradient 4.5s ease-in-out infinite,
    headerCtaPulse 2.6s ease-in-out infinite;
}

.btn-hero-primary::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(120deg, var(--gold-light), var(--orange-bright), var(--orange), var(--gold));
  background-size: 220% 220%;
  z-index: -1;
  opacity: 0.75;
  filter: blur(8px);
  animation: headerCtaAura 3.8s ease-in-out infinite;
}

.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.03);
  border-color: #ffe0a8;
  box-shadow:
    0 18px 44px rgba(255, 106, 0, 0.58),
    0 0 30px rgba(255, 179, 71, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  animation-duration: 2.2s, 1.6s;
}

.btn-hero-primary:hover .btn-hero-shine {
  animation-duration: 1.5s;
}

.btn-hero-outline {
  color: #fff;
  border: 1px solid rgba(255, 140, 26, 0.75);
  background: linear-gradient(
    135deg,
    rgba(255, 179, 71, 0.22),
    rgba(255, 106, 0, 0.18) 45%,
    rgba(232, 93, 4, 0.28)
  );
  backdrop-filter: blur(10px);
  box-shadow:
    0 12px 30px rgba(255, 106, 0, 0.28),
    0 0 16px rgba(255, 140, 26, 0.22),
    inset 0 0 0 1px rgba(255, 179, 71, 0.2);
  animation: heroOutlinePulse 2.8s ease-in-out infinite;
}

.btn-hero-outline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--orange-line);
  background-size: 200% 100%;
  animation: orangeLineFlow 2.4s linear infinite;
  box-shadow: 0 0 10px rgba(255, 106, 0, 0.55);
  z-index: 2;
}

.btn-hero-outline::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(120deg, var(--orange-bright), var(--orange), var(--orange-deep));
  background-size: 220% 220%;
  z-index: -1;
  opacity: 0.45;
  filter: blur(10px);
  animation: headerCtaAura 4s ease-in-out infinite;
}

.btn-hero-outline .btn-hero-shine {
  animation-delay: 0.8s;
}

.btn-hero-outline:hover {
  transform: translateY(-3px) scale(1.03);
  color: #fff;
  border-color: rgba(255, 224, 168, 0.95);
  background: linear-gradient(
    135deg,
    #ffb347 0%,
    var(--orange-bright) 32%,
    var(--orange) 68%,
    var(--orange-deep) 100%
  );
  background-size: 200% 200%;
  box-shadow:
    0 18px 44px rgba(255, 106, 0, 0.5),
    0 0 28px rgba(255, 179, 71, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  animation: headerCtaGradient 2.4s ease-in-out infinite;
}

.btn-hero-outline:hover .btn-hero-shine {
  animation-duration: 1.5s;
}

.btn-hero-primary:active,
.btn-hero-outline:active {
  transform: translateY(0) scale(0.98);
}

@keyframes heroOutlinePulse {
  0%, 100% {
    box-shadow:
      0 12px 30px rgba(255, 106, 0, 0.28),
      0 0 14px rgba(255, 140, 26, 0.2),
      inset 0 0 0 1px rgba(255, 179, 71, 0.2);
  }
  50% {
    box-shadow:
      0 16px 38px rgba(255, 106, 0, 0.42),
      0 0 26px rgba(255, 179, 71, 0.38),
      inset 0 0 0 1px rgba(255, 224, 168, 0.35);
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-hero-primary,
  .btn-hero-outline,
  .btn-hero-shine,
  .btn-hero-primary::after,
  .btn-hero-outline::before,
  .btn-hero-outline::after {
    animation: none !important;
  }
}

.hero-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 520px);
}

.hero-visual-glow {
  position: absolute;
  inset: 8% -6% -4% -6%;
  background: radial-gradient(ellipse at center, rgba(193, 154, 107, 0.28), transparent 65%);
  filter: blur(28px);
  animation: glowPulse 5s ease-in-out infinite;
  z-index: 0;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.55; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1.05); }
}

.hero-visual-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  z-index: 1;
  border: 1px solid var(--orange-frame-border);
  box-shadow:
    0 30px 80px rgba(3, 18, 14, 0.55),
    0 0 0 1px rgba(255, 106, 0, 0.45),
    0 0 40px rgba(255, 106, 0, 0.25);
  animation: orangeFramePulse 3.6s ease-in-out infinite;
}

@keyframes frameBreathe {
  0%, 100% {
    box-shadow:
      0 30px 80px rgba(3, 18, 14, 0.55),
      0 0 0 1px rgba(255, 106, 0, 0.45),
      0 0 40px rgba(255, 106, 0, 0.25);
  }
  50% {
    box-shadow:
      0 34px 90px rgba(3, 18, 14, 0.62),
      0 0 0 1px rgba(255, 179, 71, 0.85),
      0 0 55px rgba(255, 106, 0, 0.4);
  }
}

.hero-visual-frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 179, 71, 0.55);
  z-index: 2;
  pointer-events: none;
  box-shadow: inset 0 0 20px rgba(255, 106, 0, 0.12);
}

.hero-frame-corner {
  position: absolute;
  width: 26px;
  height: 26px;
  z-index: 4;
  pointer-events: none;
  border-color: var(--orange-bright);
  border-style: solid;
  border-width: 0;
  filter: drop-shadow(0 0 6px rgba(255, 106, 0, 0.65));
}

.hero-frame-corner--tl { top: 8px; left: 8px; border-top-width: 2px; border-left-width: 2px; }
.hero-frame-corner--tr { top: 8px; right: 8px; border-top-width: 2px; border-right-width: 2px; }
.hero-frame-corner--bl { bottom: 8px; left: 8px; border-bottom-width: 2px; border-left-width: 2px; }
.hero-frame-corner--br { bottom: 8px; right: 8px; border-bottom-width: 2px; border-right-width: 2px; }

.hero-visual-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: #050505;
  transition: transform 1.2s var(--ease-luxury);
  filter: none;
}

.hero-slide.is-active .hero-visual-img {
  animation: heroImageIn 1.4s var(--ease-out) both;
}

.hero-visual-frame:hover .hero-visual-img {
  transform: scale(1.05);
}

.hero-visual-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, transparent 30%, rgba(255, 255, 255, 0.22) 48%, transparent 65%);
  mix-blend-mode: soft-light;
  pointer-events: none;
  animation: shineSweep 6s ease-in-out infinite;
  z-index: 3;
}

.hero-visual-caption {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 5;
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, rgba(6, 40, 32, 0.88), rgba(10, 61, 46, 0.82));
  border: 1px solid rgba(255, 106, 0, 0.55);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  animation: captionRise 1.2s var(--ease-out) 0.6s both, orangeFramePulse 3.8s ease-in-out infinite;
  box-shadow: 0 0 18px rgba(255, 106, 0, 0.2);
}

.hero-visual-caption span {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero-visual-caption strong,
.hero-caption-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 550;
  background: linear-gradient(
    105deg,
    var(--orange-bright),
    var(--gold-light) 40%,
    #fff6df 55%,
    var(--gold) 75%,
    var(--orange)
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: titleGoldOrangeShimmer 4s ease-in-out infinite;
}

@keyframes captionRise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-float {
  position: absolute;
  z-index: 5;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--bottle-green-soft), var(--bottle-green-deep));
  color: var(--gold-light);
  border: 1px solid rgba(232, 213, 163, 0.45);
  box-shadow: 0 12px 30px rgba(3, 18, 14, 0.45);
  font-size: 1.1rem;
  animation: floatY 4.5s ease-in-out infinite;
}

.hero-float.film-reel {
  top: 12%;
  right: -4%;
  animation-delay: 0.4s;
}

.hero-float.clapper {
  bottom: 22%;
  left: -6%;
  animation-delay: 1.2s;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes shineSweep {
  0%, 100% { opacity: 0.35; transform: translateX(-8%); }
  50% { opacity: 0.7; transform: translateX(8%); }
}

@keyframes heroImageIn {
  from { transform: scale(1.12); opacity: 0.6; }
  to { transform: scale(1); opacity: 1; }
}

.hero-controls {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 2.5rem;
  width: min(100% - 3rem, var(--container));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-controls--single {
  display: none;
}

.hero-progress {
  display: none;
}

.hero-pagination {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: rgba(244, 241, 234, 0.8);
}

.hero-page-current {
  color: var(--gold-light);
  font-weight: 600;
}

.hero-page-sep {
  margin: 0 0.35rem;
  opacity: 0.4;
}

.hero-arrows {
  display: flex;
  gap: 0.65rem;
}

.hero-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(232, 213, 163, 0.35);
  background: rgba(10, 61, 46, 0.65);
  backdrop-filter: blur(8px);
  color: #f4f1ea;
  display: grid;
  place-items: center;
  transition: all 0.4s var(--ease-luxury);
}

.hero-arrow:hover {
  background: var(--bottle-green);
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: scale(1.05);
}

.scroll-hint {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232, 226, 214, 0.7);
  animation: scrollBounce 2.4s ease-in-out infinite;
}

.scroll-hint i {
  font-size: 0.7rem;
  color: var(--gold-light);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* Hero reveal helpers */
.reveal-up,
.reveal-scale {
  opacity: 0;
}

body.is-ready .hero-slide.is-active .reveal-up,
body.is-ready .hero-slide.is-active .reveal-scale {
  animation: revealUp 1s var(--ease-out) both;
}

body.is-ready .hero-slide.is-active .reveal-scale {
  animation-name: revealScale;
}

body.is-ready .hero-slide.is-active .reveal-up:nth-child(1) { animation-delay: 0.05s; }
body.is-ready .hero-slide.is-active .hero-title .reveal-up:nth-child(1) { animation-delay: 0.18s; }
body.is-ready .hero-slide.is-active .hero-title .reveal-up:nth-child(2) { animation-delay: 0.32s; }
body.is-ready .hero-slide.is-active .hero-tagline { animation-delay: 0.48s; }
body.is-ready .hero-slide.is-active .hero-desc { animation-delay: 0.6s; }
body.is-ready .hero-slide.is-active .hero-ctas { animation-delay: 0.75s; }
body.is-ready .hero-slide.is-active .reveal-scale { animation-delay: 0.35s; }

@media (prefers-reduced-motion: reduce) {
  .reveal-up,
  .reveal-scale,
  body.is-ready .hero-slide.is-active .reveal-up,
  body.is-ready .hero-slide.is-active .reveal-scale {
    opacity: 1;
    animation: none !important;
    transform: none;
  }
}

@keyframes revealUp {
  from { opacity: 0; transform: translateY(36px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes revealScale {
  from { opacity: 0; transform: scale(0.94) translateY(24px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ---------- Projects ---------- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.projects-grid--cast {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 1.5rem 1.25rem;
  max-width: 1240px;
  margin-inline: auto;
}

.projects-grid--cast .project-card {
  flex: 0 0 calc((100% - 5rem) / 5);
  width: calc((100% - 5rem) / 5);
  max-width: calc((100% - 5rem) / 5);
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
}

.project-card {
  position: relative;
  text-align: center;
}

.project-link {
  display: block;
}

.project-media {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--orange-frame-border);
  background: var(--cream);
}

.projects-grid--cast .project-media {
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 3 / 4;
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  transition: transform 0.9s var(--ease-luxury), filter 0.9s var(--ease-luxury);
  filter: saturate(0.92) contrast(1.05);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.55) 0%, transparent 55%);
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.5s var(--ease-luxury);
}

.project-play {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(193, 154, 107, 0.95);
  color: var(--white);
  display: grid;
  place-items: center;
  transform: scale(0.8);
  transition: transform 0.5s var(--ease-luxury);
  box-shadow: var(--shadow-gold);
}

.project-card:hover .project-media img {
  transform: scale(1.08);
  filter: saturate(1.05) contrast(1.08);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-card:hover .project-play {
  transform: scale(1);
}

.project-meta {
  padding: 1.15rem 0.15rem 0.25rem;
}

.project-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.35rem;
  transition: color 0.35s;
}

.project-card:hover .project-title {
  color: var(--gold-dark);
}

.project-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.projects-grid--cast .project-meta {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.35rem;
  padding: 1rem 0.35rem 0.15rem;
  min-height: 5.75rem;
}

.projects-grid--cast .project-title {
  width: 100%;
  min-height: 2.6em;
  margin: 0;
  display: grid;
  place-items: center;
  font-size: clamp(1.05rem, 1.1vw, 1.35rem);
  line-height: 1.2;
  text-wrap: balance;
}

.projects-grid--cast .project-info {
  width: 100%;
  min-height: 2.7em;
  margin-top: auto;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.35;
}

.projects-grid--cast .project-info span {
  display: block;
  max-width: 100%;
  text-wrap: balance;
}

.projects-grid--cast .project-card:hover .project-title {
  color: var(--orange-deep);
}

.projects-grid--cast .project-media img {
  object-position: center 18%;
}

/* ---------- Services ---------- */
.section-bottle {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      160deg,
      var(--bottle-green-deep) 0%,
      var(--bottle-green) 45%,
      var(--bottle-green-soft) 100%
    );
  color: #f4f1ea;
}

.section-bottle .section-title {
  color: #f4f1ea;
}

.section-bottle .section-eyebrow {
  color: var(--gold-light);
}

.services-ambiance {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.services-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.4;
  animation: orbFloat 11s ease-in-out infinite;
}

.services-orb--1 {
  width: 320px;
  height: 320px;
  top: -80px;
  left: -60px;
  background: radial-gradient(circle, rgba(26, 92, 69, 0.85), transparent 70%);
}

.services-orb--2 {
  width: 280px;
  height: 280px;
  right: -40px;
  bottom: -60px;
  background: radial-gradient(circle, rgba(193, 154, 107, 0.28), transparent 70%);
  animation-delay: 1.8s;
}

.services .container {
  position: relative;
  z-index: 1;
}

.services-intro {
  margin-top: 0.85rem;
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(232, 226, 214, 0.72);
  letter-spacing: 0.02em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.35rem;
}

.service-item {
  text-align: center;
  padding: 1.85rem 1rem 1.75rem;
  position: relative;
  transition:
    transform 0.5s var(--ease-luxury),
    box-shadow 0.5s var(--ease-luxury);
  z-index: 1;
}

.service-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 106, 0, 0.55);
  background:
    linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.05),
      rgba(6, 40, 32, 0.35)
    );
  backdrop-filter: blur(8px);
  transition:
    border-color 0.45s,
    background 0.45s,
    box-shadow 0.45s;
  z-index: -1;
  box-shadow: 0 0 16px rgba(255, 106, 0, 0.12);
  animation: orangeFramePulse 4s ease-in-out infinite;
}

.service-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--orange-line);
  background-size: 200% 100%;
  opacity: 1;
  animation: orangeLineFlow 3.2s linear infinite;
}

.service-item:hover {
  transform: translateY(-10px);
}

.service-item:hover::before {
  border-color: rgba(255, 179, 71, 0.85);
  background:
    linear-gradient(
      160deg,
      rgba(26, 92, 69, 0.55),
      rgba(6, 40, 32, 0.72)
    );
  box-shadow:
    0 22px 50px rgba(3, 18, 14, 0.45),
    0 0 28px rgba(255, 106, 0, 0.25);
}

.service-item:hover::after {
  opacity: 1;
  animation-duration: 1.6s;
}

.service-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.35rem;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  font-size: 1.7rem;
  position: relative;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255, 179, 71, 0.2), rgba(6, 40, 32, 0.65));
  border: 1px solid rgba(255, 106, 0, 0.55);
  box-shadow:
    0 10px 28px rgba(3, 18, 14, 0.35),
    0 0 14px rgba(255, 106, 0, 0.2);
  transition: transform 0.5s var(--ease-luxury), box-shadow 0.5s, border-color 0.5s;
  animation: orangeFramePulse 4.2s ease-in-out infinite;
}

.service-icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(255, 106, 0, 0.25);
  transform: scale(0.85);
  opacity: 0;
  transition: transform 0.5s var(--ease-luxury), opacity 0.5s;
}

.service-item:hover .service-icon {
  transform: scale(1.06);
  border-color: rgba(255, 179, 71, 0.95);
  box-shadow:
    0 14px 34px rgba(3, 18, 14, 0.45),
    0 0 22px rgba(255, 106, 0, 0.4);
  color: #fff6df;
}

.service-item:hover .service-icon::after {
  transform: scale(1);
  opacity: 1;
}

.service-item h3 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.85rem;
}

.service-item p {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(232, 226, 214, 0.72);
  line-height: 1.75;
}

/* ---------- About ---------- */
.about-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3.5vw, 2.75rem);
  align-items: stretch;
  max-width: 980px;
  margin: 0 auto clamp(2.75rem, 5vw, 3.75rem);
}

.about-frame {
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.about-frame-border {
  position: relative;
  flex: 1;
  padding: 10px;
  background:
    linear-gradient(145deg, rgba(255, 140, 26, 0.45), rgba(255, 106, 0, 0.22) 40%, rgba(232, 93, 4, 0.4));
  box-shadow:
    0 24px 60px rgba(26, 26, 26, 0.12),
    inset 0 0 0 1px rgba(255, 179, 71, 0.35),
    0 0 24px rgba(255, 106, 0, 0.2);
  overflow: hidden;
  transition: transform 0.55s var(--ease-luxury), box-shadow 0.55s var(--ease-luxury);
  animation: orangeFramePulse 4s ease-in-out infinite;
}

.about-frame:hover .about-frame-border {
  transform: translateY(-6px);
  box-shadow:
    0 32px 70px rgba(255, 106, 0, 0.28),
    inset 0 0 0 1px rgba(255, 224, 168, 0.45),
    0 0 36px rgba(255, 140, 26, 0.3);
}

.about-frame-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  z-index: 3;
  pointer-events: none;
  border-color: var(--orange-bright);
  border-style: solid;
  border-width: 0;
  filter: drop-shadow(0 0 5px rgba(255, 106, 0, 0.7));
}

.about-frame-corner--tl {
  top: 6px;
  left: 6px;
  border-top-width: 2px;
  border-left-width: 2px;
}

.about-frame-corner--tr {
  top: 6px;
  right: 6px;
  border-top-width: 2px;
  border-right-width: 2px;
}

.about-frame-corner--bl {
  bottom: 6px;
  left: 6px;
  border-bottom-width: 2px;
  border-left-width: 2px;
}

.about-frame-corner--br {
  bottom: 6px;
  right: 6px;
  border-bottom-width: 2px;
  border-right-width: 2px;
}

.about-frame-shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255, 255, 255, 0.28) 48%,
    transparent 62%
  );
  transform: translateX(-120%);
  animation: aboutShine 5.5s ease-in-out infinite;
}

.about-frame--producer .about-frame-shine {
  animation-delay: 1.4s;
}

@keyframes aboutShine {
  0%, 55% { transform: translateX(-120%); opacity: 0; }
  60% { opacity: 0.85; }
  75% { transform: translateX(120%); opacity: 0.4; }
  100% { transform: translateX(120%); opacity: 0; }
}

.about-frame-media {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 420px;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid rgba(255, 106, 0, 0.55);
}

.about-frame-media img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 1.1s var(--ease-luxury), filter 1.1s var(--ease-luxury);
}

.about-frame-media--logo {
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse at center, #1a1612 0%, #050505 70%);
}

.about-frame-media--logo img {
  width: 92%;
  height: 92%;
  object-fit: contain;
  filter: drop-shadow(0 10px 28px rgba(193, 154, 107, 0.25));
}

.about-frame-media--portrait img {
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.04) saturate(1.02);
}

.about-frame:hover .about-frame-media img {
  transform: scale(1.04);
}

.about-frame-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  padding: 1.15rem 0.5rem 0.25rem;
}

.about-frame-label {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 550;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

.about-frame-role {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: linear-gradient(
    125deg,
    #ffb347 0%,
    var(--orange-bright) 30%,
    var(--orange) 55%,
    #ffe0a8 75%,
    var(--orange-deep) 100%
  );
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(255, 106, 0, 0.35));
  animation: filmTitleOrangeFlow 4.2s ease-in-out infinite;
}

.about-content--centered {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-content--centered p {
  font-size: 0.98rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
  line-height: 1.8;
}

.about-content--centered strong {
  color: var(--charcoal);
  font-weight: 550;
}

.about-cta {
  margin-top: 0.85rem;
}

@media (prefers-reduced-motion: reduce) {
  .about-frame-role {
    animation: none !important;
    color: var(--orange);
    -webkit-text-fill-color: var(--orange);
    background: none;
  }
}

.about-content--centered .btn {
  margin-top: 1.15rem;
}

/* ---------- Partners ---------- */
.partners {
  padding: 3.5rem 0;
  border-block: 1px solid var(--border-soft);
  background: var(--white);
  overflow: hidden;
}

.partners-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.partners-track {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.partners-marquee {
  display: flex;
  align-items: center;
  gap: 4.5rem;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.partner-logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--charcoal);
  opacity: 0.55;
  white-space: nowrap;
  padding: 0.55rem 1.1rem;
  border: 1px solid rgba(255, 106, 0, 0.4);
  box-shadow: 0 0 12px rgba(255, 106, 0, 0.1);
  transition: opacity 0.35s, color 0.35s, border-color 0.35s, box-shadow 0.35s;
  animation: orangeFramePulse 5s ease-in-out infinite;
}

.partner-logo:hover {
  opacity: 1;
  color: var(--orange-deep);
  border-color: rgba(255, 179, 71, 0.9);
  box-shadow: 0 0 20px rgba(255, 106, 0, 0.3);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- News ---------- */
.news {
  position: relative;
  overflow: hidden;
}

.news-ambiance {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.news-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.4;
  animation: orbFloat 12s ease-in-out infinite;
}

.news-orb--1 {
  width: 300px;
  height: 300px;
  top: -70px;
  right: -50px;
  background: radial-gradient(circle, rgba(26, 92, 69, 0.9), transparent 70%);
}

.news-orb--2 {
  width: 260px;
  height: 260px;
  left: -40px;
  bottom: -50px;
  background: radial-gradient(circle, rgba(193, 154, 107, 0.28), transparent 70%);
  animation-delay: 2s;
}

.news .container {
  position: relative;
  z-index: 1;
}

.section-link--luxe {
  color: var(--gold-light);
}

.section-link--luxe::after {
  background: linear-gradient(90deg, var(--gold-light), var(--orange));
}

.section-link--luxe:hover {
  color: #fff6df;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.news-card {
  background:
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.06),
      rgba(6, 40, 32, 0.55)
    );
  border: 1px solid rgba(255, 106, 0, 0.55);
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition:
    transform 0.5s var(--ease-luxury),
    box-shadow 0.5s var(--ease-luxury),
    border-color 0.5s var(--ease-luxury);
  position: relative;
  animation: orangeFramePulse 4s ease-in-out infinite;
}

.news-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--orange-line);
  background-size: 200% 100%;
  opacity: 1;
  animation: orangeLineFlow 3.2s linear infinite;
}

.news-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 179, 71, 0.9);
  box-shadow:
    0 24px 55px rgba(3, 18, 14, 0.5),
    0 0 28px rgba(255, 106, 0, 0.3);
}

.news-card:hover::after {
  animation-duration: 1.5s;
}

.news-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}

.news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-luxury), filter 0.9s;
  filter: saturate(0.95) contrast(1.05);
}

.news-media img.news-media-img--title {
  object-fit: contain;
  object-position: center;
  padding: 0.6rem;
  background: #020207;
  filter: none;
}

.news-media-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 40, 32, 0.55), transparent 55%);
  pointer-events: none;
  opacity: 0.85;
  transition: opacity 0.45s;
}

.news-card:hover .news-media img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.08);
}

.news-card:hover .news-media img.news-media-img--title {
  transform: scale(1.04);
  filter: none;
}

.news-card:hover .news-media-glow {
  opacity: 0.55;
}

.news-body {
  padding: 1.5rem 1.35rem 1.75rem;
}

.news-body time {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.news-body h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.3;
  color: #f4f1ea;
  margin-bottom: 0.65rem;
  transition: color 0.35s;
}

.news-card:hover .news-body h3 {
  color: var(--gold-light);
}

.news-body p {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(232, 226, 214, 0.72);
  line-height: 1.7;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
  justify-items: stretch;
}

.gallery-item {
  position: relative;
  margin: 0;
  width: 100%;
  border: none !important;
  animation: none !important;
  background: transparent;
  overflow: visible;
}

.gallery-item::before,
.gallery-item::after {
  display: none !important;
  content: none !important;
}

.gallery-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(255, 106, 0, 0.65);
  background: #0a0a0a;
  box-shadow:
    0 0 0 1px rgba(255, 106, 0, 0.25),
    0 0 18px rgba(255, 106, 0, 0.2),
    0 16px 36px rgba(26, 26, 26, 0.12);
  animation: orangeFramePulse 3.6s ease-in-out infinite;
}

.gallery-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.5px;
  background: var(--orange-line);
  background-size: 200% 100%;
  animation: orangeLineFlow 2.8s linear infinite;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 4;
}

.gallery-frame::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 179, 71, 0.45);
  pointer-events: none;
  z-index: 3;
  box-shadow: inset 0 0 16px rgba(255, 106, 0, 0.1);
  transition: border-color 0.45s, background 0.45s;
}

.gallery-frame-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  z-index: 5;
  pointer-events: none;
  border-color: var(--orange-bright);
  border-style: solid;
  border-width: 0;
  filter: drop-shadow(0 0 4px rgba(255, 106, 0, 0.7));
}

.gallery-frame-corner--tl { top: 5px; left: 5px; border-top-width: 2px; border-left-width: 2px; }
.gallery-frame-corner--tr { top: 5px; right: 5px; border-top-width: 2px; border-right-width: 2px; }
.gallery-frame-corner--bl { bottom: 5px; left: 5px; border-bottom-width: 2px; border-left-width: 2px; }
.gallery-frame-corner--br { bottom: 5px; right: 5px; border-bottom-width: 2px; border-right-width: 2px; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.9s var(--ease-luxury), filter 0.9s;
  filter: brightness(0.92);
}

.gallery-item img.gallery-img--poster {
  object-fit: contain;
  object-position: center center;
  background: #050505;
  filter: none;
}

.gallery-item figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 6;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s, transform 0.45s var(--ease-luxury);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1);
}

.gallery-item:hover .gallery-frame {
  border-color: rgba(255, 179, 71, 0.95);
  box-shadow:
    0 0 0 1px rgba(255, 179, 71, 0.55),
    0 0 28px rgba(255, 106, 0, 0.35),
    0 20px 44px rgba(26, 26, 26, 0.16);
}

.gallery-item:hover .gallery-frame::after {
  border-color: rgba(255, 224, 168, 0.65);
  background: linear-gradient(to top, rgba(10, 20, 16, 0.45), transparent 55%);
}

.gallery-item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .gallery-frame,
  .gallery-frame::before {
    animation: none !important;
  }
}

/* ---------- Careers ---------- */
.careers {
  position: relative;
  overflow: hidden;
}

.careers-ambiance {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.careers-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.4;
  animation: orbFloat 11s ease-in-out infinite;
}

.careers-orb--1 {
  width: 300px;
  height: 300px;
  top: -60px;
  left: -50px;
  background: radial-gradient(circle, rgba(26, 92, 69, 0.9), transparent 70%);
}

.careers-orb--2 {
  width: 260px;
  height: 260px;
  right: -40px;
  bottom: -50px;
  background: radial-gradient(circle, rgba(193, 154, 107, 0.3), transparent 70%);
  animation-delay: 1.6s;
}

.careers-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.careers-content p {
  font-size: 0.98rem;
  font-weight: 300;
  color: rgba(232, 226, 214, 0.78);
  margin: 1.25rem 0 1.75rem;
  max-width: 32rem;
  line-height: 1.8;
}

.careers-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--orange-frame-border);
  aspect-ratio: 4 / 3;
  box-shadow:
    0 28px 60px rgba(3, 18, 14, 0.5),
    0 0 30px rgba(255, 106, 0, 0.28);
  background: var(--bottle-green-deep);
}

.careers-visual::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 179, 71, 0.5);
  z-index: 2;
  pointer-events: none;
  box-shadow: inset 0 0 18px rgba(255, 106, 0, 0.12);
}

.careers-frame-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  z-index: 3;
  pointer-events: none;
  border-color: var(--orange-bright);
  border-style: solid;
  border-width: 0;
  filter: drop-shadow(0 0 5px rgba(255, 106, 0, 0.7));
}

.careers-frame-corner--tl { top: 6px; left: 6px; border-top-width: 2px; border-left-width: 2px; }
.careers-frame-corner--tr { top: 6px; right: 6px; border-top-width: 2px; border-right-width: 2px; }
.careers-frame-corner--bl { bottom: 6px; left: 6px; border-bottom-width: 2px; border-left-width: 2px; }
.careers-frame-corner--br { bottom: 6px; right: 6px; border-bottom-width: 2px; border-right-width: 2px; }

.careers-visual-shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(125deg, transparent 30%, rgba(255, 255, 255, 0.18) 48%, transparent 65%);
  animation: shineSweep 6s ease-in-out infinite;
  mix-blend-mode: soft-light;
}

.careers-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-luxury), filter 1s;
  filter: saturate(0.95) contrast(1.05);
}

.careers-visual:hover img {
  transform: scale(1.06);
  filter: saturate(1.06) contrast(1.08);
}

.careers-visual:hover {
  border-color: rgba(255, 179, 71, 0.95);
  box-shadow:
    0 32px 70px rgba(3, 18, 14, 0.55),
    0 0 40px rgba(255, 106, 0, 0.4);
}

/* ---------- FAQ / Answer Engine Content ---------- */
.faq {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 106, 0, 0.08), transparent 28%),
    radial-gradient(circle at 90% 80%, rgba(193, 154, 107, 0.12), transparent 32%),
    var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1000px;
  margin-inline: auto;
}

.faq-item {
  position: relative;
  border: 1px solid rgba(255, 106, 0, 0.48);
  background: rgba(255, 255, 255, 0.68);
  box-shadow:
    0 12px 30px rgba(26, 26, 26, 0.06),
    0 0 14px rgba(255, 106, 0, 0.1);
  overflow: hidden;
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s var(--ease-luxury);
}

.faq-item::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  background: var(--orange-line);
  background-size: 200% 100%;
  animation: orangeLineFlow 3.4s linear infinite;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.faq-item[open] {
  border-color: rgba(255, 140, 26, 0.9);
  box-shadow:
    0 18px 38px rgba(26, 26, 26, 0.1),
    0 0 24px rgba(255, 106, 0, 0.2);
  transform: translateY(-2px);
}

.faq-item summary {
  position: relative;
  padding: 1.15rem 3.25rem 1.15rem 1.2rem;
  color: var(--charcoal);
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.3;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.15rem;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transform: translateY(-50%);
  color: #fff;
  background: linear-gradient(135deg, var(--orange-bright), var(--orange-deep));
  box-shadow: 0 6px 14px rgba(255, 106, 0, 0.25);
  transition: transform 0.35s var(--ease-luxury);
}

.faq-item[open] summary::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
}

.faq-item p {
  padding: 0 1.2rem 1.2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-item::before {
    animation: none !important;
  }
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}

.contact-info p {
  font-size: 0.98rem;
  font-weight: 300;
  color: var(--text-muted);
  margin: 1.25rem 0 2rem;
  max-width: 30rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.contact-details li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-details i {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(193, 154, 107, 0.12);
  color: var(--gold);
  font-size: 0.95rem;
}

.contact-details strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}

.contact-details span,
.contact-details address,
.contact-details a {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
  display: block;
  max-width: 28rem;
  font-style: normal;
}

.contact-details a:hover {
  color: var(--gold-dark);
}

.contact-form {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(247, 243, 236, 0.65)),
    var(--cream);
  border: 1px solid var(--orange-frame-border);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow:
    var(--shadow-soft),
    0 0 24px rgba(255, 106, 0, 0.15);
  position: relative;
  animation: orangeFramePulse 4.2s ease-in-out infinite;
}

.contact-form::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: var(--orange-line);
  background-size: 200% 100%;
  animation: orangeLineFlow 3s linear infinite;
}

.contact-submit {
  justify-content: center;
  margin-top: 0.35rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  margin-bottom: 0.55rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  background: var(--white);
  border: 1px solid var(--border-soft);
  color: var(--charcoal);
  transition: border-color 0.35s, box-shadow 0.35s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(193, 154, 107, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--gold-dark);
  text-align: center;
}

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      165deg,
      var(--bottle-green-deep) 0%,
      var(--bottle-green) 48%,
      var(--bottle-green-soft) 100%
    );
  border-top: none;
  padding: 4.5rem 0 0;
  color: rgba(232, 226, 214, 0.78);
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--orange-deep) 15%,
    var(--orange) 35%,
    var(--orange-bright) 50%,
    var(--orange) 65%,
    var(--orange-deep) 85%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: headerOrangeFlow 3.2s linear infinite;
  box-shadow:
    0 0 12px rgba(255, 106, 0, 0.55),
    0 0 24px rgba(255, 140, 26, 0.3);
  z-index: 2;
}

.footer-ambiance {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.footer-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
  animation: orbFloat 12s ease-in-out infinite;
}

.footer-orb--1 {
  width: 320px;
  height: 320px;
  top: -80px;
  left: -60px;
  background: radial-gradient(circle, rgba(26, 92, 69, 0.9), transparent 70%);
}

.footer-orb--2 {
  width: 280px;
  height: 280px;
  right: -50px;
  bottom: 20px;
  background: radial-gradient(circle, rgba(193, 154, 107, 0.28), transparent 70%);
  animation-delay: 2s;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1fr 1.25fr;
  gap: 2.5rem;
  padding-bottom: 3.5rem;
}

.footer-brand p {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(232, 226, 214, 0.72);
  margin: 0 0 1.5rem;
  max-width: 16rem;
  line-height: 1.75;
}

.social-links {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  margin: 0 0 1.15rem;
  padding: 0.85rem 1.15rem;
  border: 1px solid rgba(255, 106, 0, 0.55);
  background: rgba(6, 40, 32, 0.4);
  box-shadow:
    0 0 16px rgba(255, 106, 0, 0.16),
    inset 0 0 0 1px rgba(255, 179, 71, 0.08);
  animation: orangeFramePulse 4s ease-in-out infinite;
  overflow: hidden;
}

.social-links::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.5px;
  background: var(--orange-line);
  background-size: 200% 100%;
  animation: orangeLineFlow 2.8s linear infinite;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

.social-links a {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 50%;
  font-size: 1.05rem;
  background: rgba(255, 255, 255, 0.96);
  transition: all 0.4s var(--ease-luxury);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
}

.social-links a:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3);
}

.social-x {
  color: #000000;
  border-color: rgba(0, 0, 0, 0.2);
}

.social-x:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.social-instagram {
  color: #e4405f;
  border-color: rgba(228, 64, 95, 0.35);
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4) border-box;
  border: 1px solid transparent;
}

.social-instagram i {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.social-instagram:hover {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  border-color: transparent;
}

.social-instagram:hover i {
  background: none;
  color: #fff;
  -webkit-text-fill-color: #fff;
}

.social-threads {
  color: #000000;
  border-color: rgba(0, 0, 0, 0.2);
}

.social-threads:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.social-facebook {
  color: #1877f2;
  border-color: rgba(24, 119, 242, 0.35);
}

.social-facebook:hover {
  background: #1877f2;
  color: #ffffff;
  border-color: #1877f2;
}

.social-youtube {
  color: #ff0000;
  border-color: rgba(255, 0, 0, 0.35);
}

.social-youtube:hover {
  background: #ff0000;
  color: #ffffff;
  border-color: #ff0000;
}

.social-medium {
  color: #000000;
  border-color: rgba(0, 0, 0, 0.2);
}

.social-medium:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.social-telegram {
  color: #26a5e4;
  border-color: rgba(38, 165, 228, 0.4);
}

.social-telegram:hover {
  background: #26a5e4;
  color: #ffffff;
  border-color: #26a5e4;
}

.social-whatsapp {
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.4);
}

.social-whatsapp:hover {
  background: #25d366;
  color: #ffffff;
  border-color: #25d366;
}

.social-email {
  color: #ea4335;
  border-color: rgba(234, 67, 53, 0.35);
}

.social-email:hover {
  background: #ea4335;
  color: #ffffff;
  border-color: #ea4335;
}

@media (prefers-reduced-motion: reduce) {
  .social-links,
  .social-links::before {
    animation: none !important;
  }
}

@media (max-width: 768px) {
  .social-links {
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    gap: 0.55rem;
    padding: 0.75rem 0.9rem;
  }

  .social-links a {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    font-size: 0.92rem;
  }
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 550;
  color: #f4f1ea;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.65rem;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 2px;
  background: var(--orange-line);
  background-size: 200% 100%;
  animation: orangeLineFlow 2.8s linear infinite;
  box-shadow: 0 0 8px rgba(255, 106, 0, 0.45);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col a,
.footer-col li {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(232, 226, 214, 0.72);
  transition: color 0.35s, transform 0.35s;
}

.footer-col a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.footer-contact i {
  color: var(--gold-light);
  margin-top: 0.25rem;
  width: 1rem;
  flex-shrink: 0;
  text-align: center;
}

.footer-contact .footer-address span,
.footer-contact .footer-address address {
  display: block;
  line-height: 1.55;
  max-width: 18rem;
  word-break: break-word;
  font-style: normal;
}

.footer-contact a {
  word-break: break-word;
}

.footer-newsletter p {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(232, 226, 214, 0.72);
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  border: 1px solid rgba(255, 106, 0, 0.55);
  background: rgba(6, 40, 32, 0.55);
  overflow: hidden;
  transition: border-color 0.35s, box-shadow 0.35s;
  animation: orangeFramePulse 4.5s ease-in-out infinite;
}

.newsletter-form:focus-within {
  border-color: rgba(255, 179, 71, 0.95);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.2);
}

.newsletter-form input {
  flex: 1;
  padding: 0.85rem 1rem;
  min-width: 0;
  color: #f4f1ea;
}

.newsletter-form input::placeholder {
  color: rgba(232, 226, 214, 0.45);
}

.newsletter-form button {
  width: 48px;
  background: linear-gradient(135deg, var(--orange-bright), var(--orange) 50%, var(--orange-deep));
  color: var(--white);
  transition: background 0.35s, transform 0.35s;
}

.newsletter-form button:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.footer-bottom {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.15rem;
  margin-top: 0.35rem;
  margin-bottom: 0.5in;
  border: 1px solid rgba(255, 106, 0, 0.55);
  background: rgba(6, 40, 32, 0.4);
  box-shadow:
    0 0 16px rgba(255, 106, 0, 0.16),
    inset 0 0 0 1px rgba(255, 179, 71, 0.08);
  animation: orangeFramePulse 4s ease-in-out infinite;
  overflow: hidden;
  font-size: 0.82rem;
  color: rgba(232, 226, 214, 0.55);
}

.footer-bottom::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.5px;
  background: var(--orange-line);
  background-size: 200% 100%;
  animation: orangeLineFlow 2.8s linear infinite;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

.footer-bottom-copy {
  position: relative;
  z-index: 2;
  justify-self: start;
  margin: 0;
  line-height: 1.45;
  text-align: left;
}

.footer-legal {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.35rem;
  justify-self: center;
  text-align: center;
}

.footer-legal a {
  color: rgba(232, 226, 214, 0.78);
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.35s;
}

.footer-legal a:hover {
  color: var(--orange-bright);
}

.crypblocks-badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  justify-self: end;
  margin-left: 0;
  padding: 0.45rem 0.85rem 0.45rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 106, 0, 0.45);
  background:
    linear-gradient(
      135deg,
      rgba(6, 20, 40, 0.92),
      rgba(8, 40, 32, 0.88) 50%,
      rgba(10, 24, 48, 0.95)
    );
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.35),
    0 0 14px rgba(255, 106, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  isolation: isolate;
  text-decoration: none;
  transition: transform 0.35s var(--ease-luxury), box-shadow 0.35s, border-color 0.35s;
}

.crypblocks-badge-glow {
  position: absolute;
  inset: -40%;
  background: conic-gradient(
    from 0deg,
    #00e5ff,
    #2f6bff,
    #00c853,
    #1b5e20,
    #00e5ff
  );
  opacity: 0.22;
  filter: blur(18px);
  animation: crypblocksGlowSpin 6s linear infinite;
  z-index: 0;
  pointer-events: none;
}

.crypblocks-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    120deg,
    #00e5ff,
    #3d7bff,
    #00e676,
    #00bcd4,
    #00e5ff
  );
  background-size: 300% 300%;
  animation: crypblocksBorderFlow 3.5s ease-in-out infinite;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

.crypblocks-badge-logo-wrap {
  position: relative;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #050505;
  border: 1px solid rgba(0, 229, 255, 0.35);
  box-shadow:
    0 0 12px rgba(0, 200, 255, 0.35),
    0 0 18px rgba(0, 200, 100, 0.2);
  overflow: hidden;
  animation: crypblocksLogoPulse 3.2s ease-in-out infinite;
}

.crypblocks-badge-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 6px rgba(0, 229, 255, 0.45));
}

.crypblocks-badge-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  gap: 0.12rem;
}

.crypblocks-badge-label {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232, 226, 214, 0.7);
}

.crypblocks-badge-brand {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: linear-gradient(
    110deg,
    #00e5ff 0%,
    #3d7bff 28%,
    #00e676 58%,
    #00bcd4 78%,
    #2f6bff 100%
  );
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: crypblocksBrandFlow 3.8s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(0, 200, 255, 0.35));
}

.crypblocks-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 229, 255, 0.7);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.4),
    0 0 28px rgba(0, 200, 255, 0.3),
    0 0 22px rgba(0, 200, 100, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.crypblocks-badge:hover .crypblocks-badge-brand {
  animation-duration: 1.8s;
}

@keyframes crypblocksBrandFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes crypblocksBorderFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes crypblocksGlowSpin {
  to { transform: rotate(360deg); }
}

@keyframes crypblocksLogoPulse {
  0%, 100% {
    box-shadow:
      0 0 10px rgba(0, 200, 255, 0.28),
      0 0 14px rgba(0, 200, 100, 0.16);
  }
  50% {
    box-shadow:
      0 0 18px rgba(0, 229, 255, 0.55),
      0 0 24px rgba(0, 230, 118, 0.35);
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-bottom,
  .footer-bottom::before,
  .crypblocks-badge-glow,
  .crypblocks-badge::before,
  .crypblocks-badge-brand,
  .crypblocks-badge-logo-wrap {
    animation: none !important;
  }
}

/* ---------- Floating contact + Ask ZEW ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.floating-connect {
  position: fixed;
  right: 1.4rem;
  bottom: 7.3rem;
  z-index: 920;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.floating-connect-link {
  position: relative;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 1.35rem;
  border: 2px solid rgba(255, 179, 71, 0.85);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.32),
    0 0 18px rgba(255, 106, 0, 0.28);
  animation: floatingContactPulse 2.8s ease-in-out infinite;
  transition: transform 0.35s var(--ease-luxury), box-shadow 0.35s;
}

.floating-connect-link::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(255, 140, 26, 0.45);
  border-radius: inherit;
  animation: floatingContactRing 2.8s ease-out infinite;
  pointer-events: none;
}

.floating-connect-link--whatsapp {
  background: linear-gradient(135deg, #43e676, #25d366 55%, #128c4a);
}

.floating-connect-link--telegram {
  background: linear-gradient(135deg, #4fc3f7, #26a5e4 58%, #168acd);
  animation-delay: 0.6s;
}

.floating-connect-link--telegram::after {
  animation-delay: 0.6s;
}

.floating-connect-link:hover {
  color: #fff;
  transform: translateY(-3px) scale(1.06);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.38),
    0 0 28px rgba(255, 106, 0, 0.42);
}

.ask-zew {
  position: fixed;
  left: 1.35rem;
  bottom: 1.35rem;
  z-index: 950;
}

.ask-zew-launcher {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.42rem 0.9rem 0.42rem 0.42rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 106, 0, 0.75);
  background: linear-gradient(135deg, rgba(6, 40, 32, 0.98), rgba(10, 61, 46, 0.98));
  color: #fff;
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.38),
    0 0 22px rgba(255, 106, 0, 0.32);
  animation: askZewLauncherPulse 3.2s ease-in-out infinite;
  overflow: hidden;
}

.ask-zew-launcher img {
  position: relative;
  z-index: 2;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange-bright);
  box-shadow: 0 0 14px rgba(255, 106, 0, 0.42);
}

.ask-zew-launcher-ring {
  position: absolute;
  left: 0.42rem;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255, 179, 71, 0.7);
  animation: askZewRing 2.6s ease-out infinite;
  pointer-events: none;
}

.ask-zew-launcher-label {
  position: relative;
  z-index: 2;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ask-zew-panel {
  position: absolute;
  left: 0;
  bottom: calc(100% + 0.85rem);
  width: min(370px, calc(100vw - 2rem));
  height: min(540px, calc(100vh - 8rem));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  border: 1px solid rgba(255, 106, 0, 0.7);
  border-radius: 16px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 106, 0, 0.15), transparent 35%),
    linear-gradient(160deg, #062820, #0a3d2e 58%, #0f4a38);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(255, 106, 0, 0.3);
  animation: askZewPanelIn 0.35s var(--ease-out) both;
}

.ask-zew-panel[hidden] {
  display: none;
}

.ask-zew-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: var(--orange-line);
  background-size: 200% 100%;
  animation: orangeLineFlow 2.8s linear infinite;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 5;
}

.ask-zew-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255, 106, 0, 0.35);
  background: rgba(4, 29, 23, 0.72);
}

.ask-zew-identity {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.ask-zew-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--orange-bright);
  box-shadow: 0 0 14px rgba(255, 106, 0, 0.35);
}

.ask-zew-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ask-zew-identity strong,
.ask-zew-identity small {
  display: block;
}

.ask-zew-identity strong {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.18rem;
  line-height: 1.1;
}

.ask-zew-identity small {
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.65rem;
}

.ask-zew-status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 0.25rem;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 8px rgba(37, 211, 102, 0.75);
}

.ask-zew-close {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  border: 1px solid rgba(255, 106, 0, 0.45);
  background: rgba(255, 106, 0, 0.12);
}

.ask-zew-messages {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  overflow-y: auto;
  scrollbar-color: var(--orange) rgba(255, 255, 255, 0.08);
}

.ask-zew-message {
  max-width: 86%;
  padding: 0.72rem 0.85rem;
  border-radius: 12px;
  font-size: 0.78rem;
  line-height: 1.55;
  white-space: pre-line;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.ask-zew-message--bot {
  align-self: flex-start;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 106, 0, 0.3);
  border-bottom-left-radius: 3px;
  background: rgba(255, 255, 255, 0.07);
}

.ask-zew-message--user {
  align-self: flex-end;
  color: #fff;
  border-bottom-right-radius: 3px;
  background: linear-gradient(135deg, var(--orange-bright), var(--orange), var(--orange-deep));
}

.ask-zew-suggestions {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 0.45rem;
  padding: 0.65rem 0.85rem;
  overflow-x: auto;
  border-top: 1px solid rgba(255, 106, 0, 0.18);
}

.ask-zew-suggestions button {
  flex: 0 0 auto;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  color: var(--gold-light);
  border: 1px solid rgba(255, 106, 0, 0.42);
  background: rgba(255, 106, 0, 0.1);
  font-size: 0.65rem;
  transition: color 0.3s, background 0.3s, border-color 0.3s;
}

.ask-zew-suggestions button:hover {
  color: #fff;
  border-color: var(--orange-bright);
  background: rgba(255, 106, 0, 0.28);
}

.ask-zew-form {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 0.55rem;
  padding: 0.8rem;
  border-top: 1px solid rgba(255, 106, 0, 0.3);
  background: rgba(4, 29, 23, 0.76);
}

.ask-zew-form input {
  width: 100%;
  min-width: 0;
  padding: 0.68rem 0.8rem;
  border: 1px solid rgba(255, 106, 0, 0.4);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.ask-zew-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.ask-zew-form input:focus {
  border-color: var(--orange-bright);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.13);
}

.ask-zew-form button {
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange-bright), var(--orange), var(--orange-deep));
  box-shadow: 0 8px 18px rgba(255, 106, 0, 0.3);
}

@keyframes floatingContactPulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32), 0 0 14px rgba(255, 106, 0, 0.22); }
  50% { box-shadow: 0 12px 32px rgba(0, 0, 0, 0.38), 0 0 26px rgba(255, 106, 0, 0.45); }
}

@keyframes floatingContactRing {
  0% { transform: scale(0.85); opacity: 0.8; }
  75%, 100% { transform: scale(1.25); opacity: 0; }
}

@keyframes askZewLauncherPulse {
  0%, 100% { box-shadow: 0 14px 36px rgba(0, 0, 0, 0.38), 0 0 18px rgba(255, 106, 0, 0.25); }
  50% { box-shadow: 0 16px 42px rgba(0, 0, 0, 0.42), 0 0 30px rgba(255, 106, 0, 0.48); }
}

@keyframes askZewRing {
  0% { transform: scale(0.9); opacity: 0.8; }
  75%, 100% { transform: scale(1.28); opacity: 0; }
}

@keyframes askZewPanelIn {
  from { opacity: 0; transform: translateY(16px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 768px) {
  .floating-connect {
    right: 0.85rem;
    bottom: 6.4rem;
  }

  .floating-connect-link {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .ask-zew {
    left: 0.8rem;
    bottom: 0.8rem;
  }

  .ask-zew-panel {
    width: min(360px, calc(100vw - 1.6rem));
    height: min(520px, calc(100vh - 7rem));
  }

  .ask-zew-launcher {
    padding-right: 0.7rem;
  }

  .ask-zew-launcher img,
  .ask-zew-launcher-ring {
    width: 48px;
    height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-connect-link,
  .floating-connect-link::after,
  .ask-zew-launcher,
  .ask-zew-launcher-ring,
  .ask-zew-panel,
  .ask-zew-panel::before {
    animation: none !important;
  }
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--white);
  box-shadow: var(--shadow-gold);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.4s var(--ease-luxury);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
}

/* ---------- Scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.projects-grid [data-reveal]:nth-child(2) { transition-delay: 0.08s; }
.projects-grid [data-reveal]:nth-child(3) { transition-delay: 0.16s; }
.projects-grid [data-reveal]:nth-child(4) { transition-delay: 0.24s; }
.services-grid [data-reveal]:nth-child(2) { transition-delay: 0.06s; }
.services-grid [data-reveal]:nth-child(3) { transition-delay: 0.12s; }
.services-grid [data-reveal]:nth-child(4) { transition-delay: 0.18s; }
.services-grid [data-reveal]:nth-child(5) { transition-delay: 0.24s; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav.is-open {
    display: block;
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background:
      linear-gradient(
        180deg,
        rgba(6, 40, 32, 0.99) 0%,
        rgba(10, 61, 46, 0.99) 100%
      );
    backdrop-filter: blur(20px);
    padding: 2rem;
    z-index: 999;
    animation: mobileNavIn 0.45s var(--ease-out);
    border-top: 1px solid rgba(255, 106, 0, 0.35);
  }

  .main-nav.is-open ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .main-nav.is-open .nav-link {
    display: flex;
    width: 100%;
    padding: 0.95rem 1rem;
    font-size: 0.82rem;
    border: 1px solid rgba(255, 106, 0, 0.25);
    border-radius: 4px;
    margin-bottom: 0.55rem;
    color: rgba(255, 255, 255, 0.9);
    justify-content: flex-start;
  }

  .main-nav.is-open .nav-link:hover {
    color: #fff;
    border-color: rgba(255, 140, 26, 0.55);
    background: rgba(255, 106, 0, 0.18);
  }

  .main-nav.is-open .nav-link.active {
    color: #fff;
    border-color: rgba(255, 179, 71, 0.7);
    background: linear-gradient(
      135deg,
      #ffb347 0%,
      var(--orange-bright) 32%,
      var(--orange) 68%,
      var(--orange-deep) 100%
    );
  }

  @keyframes mobileNavIn {
    from { opacity: 0; transform: translateY(-12px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-slide,
  .hero-slide.is-active {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-self: center;
    width: min(100%, 420px);
    order: -1;
  }

  .hero-title {
    font-size: clamp(2.6rem, 10vw, 3.6rem);
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-grid--cast {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: none;
    gap: 1.35rem;
  }

  .projects-grid--cast .project-card {
    flex: 0 0 calc((100% - 1.35rem) / 2);
    width: calc((100% - 1.35rem) / 2);
    max-width: calc((100% - 1.35rem) / 2);
  }

  .projects-grid--cast .project-title {
    font-size: 1.2rem;
    min-height: 2.5em;
  }

  .projects-grid--cast .project-meta {
    min-height: 5.5rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .scroll-hint {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 72px;
  }

  .logo-img {
    height: 52px;
    max-width: 150px;
  }

  .header-actions .btn-sm {
    display: none;
  }

  .lang-select {
    display: block;
  }

  .projects-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }

  .projects-grid--cast {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    overflow: visible;
    max-width: 360px;
    margin-inline: auto;
    gap: 1.35rem;
  }

  .project-card {
    flex: 0 0 78%;
    scroll-snap-align: start;
  }

  .projects-grid--cast .project-card {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .projects-grid--cast .project-card:last-child {
    width: 100%;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-duo {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .about-frame-media {
    min-height: 380px;
  }

  .careers-inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 0.85rem;
    padding: 1rem;
  }

  .footer-bottom-copy,
  .footer-legal,
  .crypblocks-badge {
    justify-self: center;
  }

  .crypblocks-badge {
    margin-left: 0;
  }

  .hero-float {
    display: none;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .partners-marquee {
    animation: none;
  }
}

/* ---------- Legal / Trust Pages ---------- */
.legal-page {
  min-height: 100vh;
  color: var(--charcoal);
  background:
    radial-gradient(circle at 5% 5%, rgba(255, 106, 0, 0.08), transparent 24rem),
    linear-gradient(180deg, #f9f6ef 0%, #f3ede2 100%);
}

.legal-header,
.legal-footer {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.legal-header {
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255, 106, 0, 0.35);
}

.legal-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--charcoal);
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 600;
}

.legal-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border: 1px solid var(--orange-frame-border);
  box-shadow: 0 0 16px rgba(255, 106, 0, 0.18);
}

.legal-home-link {
  color: var(--orange-deep);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-main {
  width: min(900px, calc(100% - 2rem));
  margin: clamp(2.5rem, 7vw, 5rem) auto;
}

.legal-document {
  padding: clamp(1.5rem, 5vw, 4rem);
  border: 1px solid rgba(255, 106, 0, 0.42);
  background: rgba(255, 255, 255, 0.8);
  box-shadow:
    0 24px 70px rgba(26, 26, 26, 0.08),
    0 0 24px rgba(255, 106, 0, 0.08);
}

.legal-document h1 {
  margin: 0.6rem 0 0.3rem;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  line-height: 1;
}

.legal-document h2 {
  margin: 2.25rem 0 0.65rem;
  color: var(--forest);
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 1.8rem);
}

.legal-document p,
.legal-document address {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.85;
}

.legal-document address {
  font-style: normal;
}

.legal-document a {
  color: var(--orange-deep);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.legal-document .legal-updated {
  margin-bottom: 2rem;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-footer {
  padding: 1.5rem 0 2.5rem;
  border-top: 1px solid rgba(255, 106, 0, 0.35);
  color: var(--text-muted);
  font-size: 0.78rem;
}

.legal-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.legal-footer a {
  color: var(--orange-deep);
}

@media (max-width: 600px) {
  .legal-header,
  .legal-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
