/* Guariba na Rede - premium static website styles */
:root {
  --gnr-text-gold: #ffc94f;
  --gnr-sand: #090603;
  --gnr-cream: #030303;
  --gnr-white: var(--gnr-text-gold);
  --gnr-dark: #010101;
  --gnr-ink: var(--gnr-text-gold);
  --gnr-muted: var(--gnr-text-gold);
  --gnr-sage: #070502;
  --gnr-gold: #b77f19;
  --gnr-gold-soft: var(--gnr-text-gold);
  --gnr-gold-bright: var(--gnr-text-gold);
  --gnr-sunset: #ec7f1e;
  --gnr-copper: #8d5618;
  --gnr-ocean: #0d0d0e;
  --gnr-line: #c99535;
  --gnr-shadow: 0 28px 80px rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 201, 79, 0.06), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(183, 127, 25, 0.05), transparent 26%),
    linear-gradient(180deg, #000000 0%, #020202 46%, #050401 100%);
  color: var(--gnr-ink);
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
video,
svg {
  display: block;
  max-width: 100%;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

p,
li,
h1,
h2,
h3,
h4,
h5,
h6,
a,
span {
  overflow-wrap: break-word;
}

body :where(p, li, h1, h2, h3, h4, h5, h6, a, span, strong, em, small, label, blockquote, figcaption, th, td, button) {
  color: var(--gnr-text-gold) !important;
}

.container-pad {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
}

.section-space {
  padding-block: clamp(72px, 9vw, 120px);
}

.section-space-sm {
  padding-block: clamp(54px, 7vw, 92px);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--gnr-gold-bright);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(255, 201, 79, 0.28);
}

.section-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--gnr-gold-bright), var(--gnr-copper));
  opacity: 0.95;
}

.section-title {
  color: var(--gnr-gold-soft);
  font-size: clamp(2rem, 5vw, 3.65rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
  text-transform: uppercase;
}

.section-title-sm {
  color: var(--gnr-gold-soft);
  font-size: clamp(1.65rem, 3.2vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  text-transform: uppercase;
}

.lead-text {
  color: var(--gnr-text-gold);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.75;
}

.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}

.btn-primary,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform 220ms ease, background-color 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  will-change: transform;
}

.btn-primary {
  border: 1px solid rgba(255, 201, 79, 0.88);
  background:
    linear-gradient(135deg, #030303 0%, #090702 52%, #140d02 100%);
  color: var(--gnr-text-gold);
  text-shadow: 0 0 16px rgba(255, 201, 79, 0.22);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.54), inset 0 1px 0 rgba(255, 201, 79, 0.18);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-ghost:hover {
  transform: translateY(-2px);
}

.btn-primary:hover {
  background:
    linear-gradient(135deg, #050505 0%, #110c03 50%, #1b1203 100%);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.62), inset 0 1px 0 rgba(255, 201, 79, 0.24);
}

.btn-secondary {
  border: 1px solid rgba(255, 201, 79, 0.56);
  background: linear-gradient(135deg, #080808, #1b1305);
  color: var(--gnr-gold-soft);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #151006, #050506);
  border-color: var(--gnr-gold-bright);
  color: var(--gnr-gold-bright);
}

.btn-ghost {
  border: 1px solid rgba(255, 201, 79, 0.55);
  color: var(--gnr-gold-soft);
  background: rgba(0, 0, 0, 0.18);
}

.btn-ghost:hover {
  border-color: var(--gnr-gold-bright);
  background: rgba(244, 181, 42, 0.12);
  color: var(--gnr-gold-bright);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  padding: 18px 0;
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease, padding 220ms ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
  pointer-events: none;
  transition: opacity 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-visible {
  padding: 10px 0;
  border-bottom: 1px solid rgba(244, 181, 42, 0.32);
  background: rgba(0, 0, 0, 0.98);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled::before,
.site-header.menu-visible::before {
  opacity: 0;
}

.brand-logo {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  object-fit: cover;
  object-position: center;
  border: 2px solid rgba(244, 181, 42, 0.72);
  background: #050506;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3), 0 0 0 6px rgba(244, 181, 42, 0.08);
}

.site-header.is-scrolled .brand-logo,
.site-header.menu-visible .brand-logo {
  width: 54px;
  height: 54px;
}

.desktop-nav a:not(.btn-primary) {
  position: relative;
  color: var(--gnr-text-gold);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.desktop-nav a:not(.btn-primary)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gnr-gold-bright), var(--gnr-gold-soft));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.desktop-nav a:not(.btn-primary):hover::after,
.desktop-nav a:not(.btn-primary).is-active::after {
  transform: scaleX(1);
}

.site-header.is-scrolled .desktop-nav a:not(.btn-primary),
.site-header.menu-visible .desktop-nav a:not(.btn-primary) {
  color: var(--gnr-text-gold);
}

.site-header.is-scrolled a > span:not(.hamburger-line),
.site-header.menu-visible a > span:not(.hamburger-line) {
  color: var(--gnr-gold-soft) !important;
  text-shadow: 0 1px 12px rgba(244, 181, 42, 0.18);
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--gnr-white);
  transition: transform 220ms ease, opacity 220ms ease, background-color 220ms ease;
}

.site-header.is-scrolled .hamburger-line,
.site-header.menu-visible .hamburger-line {
  background: var(--gnr-gold-soft);
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  width: min(100%, 390px);
  height: 100dvh;
  padding: 28px;
  border-left: 1px solid rgba(244, 181, 42, 0.26);
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 201, 79, 0.08), transparent 34%),
    linear-gradient(180deg, #050505 0%, #010101 100%);
  box-shadow: -24px 0 60px rgba(5, 5, 6, 0.34);
  transform: translateX(104%);
  transition: transform 420ms cubic-bezier(0.77, 0, 0.175, 1);
  overflow-y: auto;
}

.mobile-panel.is-open {
  transform: translateX(0);
}

.mobile-panel .text-brand-dark,
.mobile-panel nav,
.mobile-panel nav a {
  color: var(--gnr-gold-soft) !important;
}

.mobile-panel .text-brand-gold {
  color: var(--gnr-gold-soft) !important;
}

.mobile-panel button {
  border-color: rgba(255, 201, 79, 0.28) !important;
  color: var(--gnr-gold-soft) !important;
  background: rgba(244, 181, 42, 0.08);
}

.mobile-panel nav a {
  border-bottom: 1px solid rgba(255, 201, 79, 0.12);
  padding-bottom: 12px;
}

.mobile-panel nav a:hover {
  color: var(--gnr-gold-bright) !important;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 85;
  background: rgba(0, 0, 0, 0.68);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.mobile-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  overflow: hidden;
  color: var(--gnr-white);
  isolation: isolate;
}

.hero-medium {
  min-height: 72vh;
  min-height: 72svh;
}

.hero-media,
.hero-media img,
.hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -2;
  background: #050506;
}

.hero-media img,
.hero-media video {
  object-fit: cover;
  object-position: center;
}

.hero-media video {
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 68% 28%, rgba(255, 201, 79, 0.09), transparent 34%),
    radial-gradient(circle at 38% 68%, rgba(183, 127, 25, 0.06), transparent 34%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.42) 48%, rgba(0, 0, 0, 0.22) 100%),
    linear-gradient(to top, rgba(0, 0, 0, 0.48), transparent 42%);
}

.hero-logo {
  width: clamp(92px, 13vw, 132px);
  height: clamp(92px, 13vw, 132px);
  border-radius: 999px;
  object-fit: cover;
  object-position: center;
  border: 3px solid rgba(244, 181, 42, 0.78);
  background: #050506;
  box-shadow: 0 26px 76px rgba(0, 0, 0, 0.46), 0 0 0 10px rgba(244, 181, 42, 0.1);
}

.hero-kicker {
  color: var(--gnr-gold-soft);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(244, 181, 42, 0.32);
}

.hero-title {
  color: var(--gnr-gold-soft);
  font-size: clamp(2.55rem, 8vw, 6.25rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.94;
  text-transform: uppercase;
  text-shadow: 0 8px 0 rgba(111, 63, 12, 0.38), 0 18px 42px rgba(0, 0, 0, 0.72), 0 0 30px rgba(255, 201, 79, 0.18);
}

.hero-title .accent {
  color: var(--gnr-gold-bright);
  text-shadow: 0 4px 0 rgba(111, 63, 12, 0.5), 0 0 30px rgba(255, 201, 79, 0.38);
}

.hero-subtitle {
  max-width: 680px;
  color: var(--gnr-text-gold);
  font-size: clamp(1rem, 2vw, 1.3rem);
  line-height: 1.7;
}

.scroll-indicator {
  position: absolute;
  right: clamp(20px, 5vw, 54px);
  bottom: 34px;
  z-index: 2;
  width: 34px;
  height: 56px;
  border: 2px solid rgba(255, 201, 79, 0.72);
  border-radius: 999px;
}

.scroll-indicator::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--gnr-gold-bright);
  transform: translateX(-50%);
  animation: scrollDot 1.8s infinite;
}

@keyframes scrollDot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 22px); }
}

.rounded-img {
  border-radius: 26px;
  overflow: hidden;
}

.image-stack {
  position: relative;
  padding: 0 0 84px 42px;
}

.image-stack::before {
  content: "";
  position: absolute;
  inset: 44px 38px 34px 0;
  border: 1px solid rgba(255, 201, 79, 0.52);
  border-radius: 32px;
  pointer-events: none;
}

.image-stack .main-img {
  position: relative;
  z-index: 1;
  width: 86%;
  height: clamp(330px, 42vw, 560px);
  object-fit: cover;
  box-shadow: var(--gnr-shadow);
  filter: saturate(1.08) contrast(1.04);
}

.image-stack .over-img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: min(54%, 300px);
  height: min(58%, 320px);
  object-fit: cover;
  border: 12px solid #080808;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.58);
  filter: saturate(1.08) contrast(1.04);
}

.lux-card {
  border: 1px solid rgba(255, 201, 79, 0.26);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(24, 18, 7, 0.96), rgba(5, 5, 6, 0.94));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(10px);
}

.feature-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(244, 181, 42, 0.24);
  background: var(--gnr-dark);
  color: var(--gnr-white);
  min-height: 430px;
  box-shadow: var(--gnr-shadow);
}

.feature-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.feature-card:hover img {
  transform: scale(1.06);
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 18%, rgba(244, 181, 42, 0.18), transparent 35%),
    linear-gradient(to top, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.26));
}

.feature-card-content {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: clamp(24px, 4vw, 42px);
}

.media-showcase {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 201, 79, 0.26);
  border-radius: 34px;
  padding: clamp(22px, 4vw, 42px);
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 201, 79, 0.08), transparent 30%),
    linear-gradient(135deg, rgba(4, 4, 4, 0.98), rgba(7, 5, 2, 0.96));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
}

.video-card {
  overflow: hidden;
  border: 1px solid rgba(255, 201, 79, 0.24);
  border-radius: 28px;
  background: rgba(8, 8, 9, 0.96);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.38);
}

.video-card-dark {
  border-color: rgba(255, 201, 79, 0.22);
  background: rgba(255, 201, 79, 0.04);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 14;
  background:
    radial-gradient(circle at 50% 24%, rgba(244, 181, 42, 0.16), transparent 34%),
    #050506;
}

.video-frame-wide {
  aspect-ratio: 16 / 9;
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #050506;
}

.video-caption {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.video-caption h3,
.video-caption h4 {
  margin: 0;
  color: var(--gnr-gold-soft);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.2;
  text-transform: uppercase;
}

.video-card-dark .video-caption h3,
.video-card-dark .video-caption h4 {
  color: var(--gnr-gold-soft);
}

.interview-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 201, 79, 0.18);
  border-radius: 38px;
  padding: clamp(24px, 5vw, 52px);
  background:
    radial-gradient(circle at 86% 10%, rgba(255, 201, 79, 0.08), transparent 32%),
    radial-gradient(circle at 12% 78%, rgba(183, 127, 25, 0.06), transparent 30%),
    linear-gradient(135deg, rgba(5, 5, 5, 0.98), rgba(1, 1, 1, 0.96));
  box-shadow: var(--gnr-shadow);
}

.interview-card .lead-text {
  color: var(--gnr-text-gold) !important;
  font-weight: 500;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.46);
}

.stat-card {
  border-left: 1px solid rgba(235, 215, 178, 0.22);
}

.stat-card:first-child {
  border-left: 0;
}

.pattern-soft {
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 201, 79, 0.06), transparent 28%),
    radial-gradient(circle at 88% 44%, rgba(183, 127, 25, 0.05), transparent 28%),
    linear-gradient(180deg, #020202, #050401);
}

.dark-panel {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(244, 181, 42, 0.26);
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 201, 79, 0.08), transparent 30%),
    linear-gradient(135deg, #010101 0%, #050402 56%, #0b0701 100%);
  color: var(--gnr-white);
  box-shadow: var(--gnr-shadow);
}

.dark-panel::before {
  content: "";
  position: absolute;
  inset: -30% 45% auto auto;
  width: 450px;
  height: 450px;
  border-radius: 999px;
  background: rgba(244, 181, 42, 0.14);
  filter: blur(2px);
}

.location-card,
.product-card,
.itinerary-card {
  border: 1px solid rgba(255, 201, 79, 0.24);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(4, 4, 4, 0.98), rgba(7, 5, 2, 0.96));
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.34);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.location-card:hover,
.product-card:hover,
.itinerary-card:hover {
  transform: translateY(-5px);
  border-color: rgba(244, 181, 42, 0.42);
  box-shadow: 0 26px 70px rgba(5, 5, 6, 0.16);
}

.product-card img {
  width: 100%;
  height: 285px;
  object-fit: cover;
  background: #090909;
}

.product-card.product-contain img {
  object-fit: contain;
  padding: 18px;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.35));
}

.bg-white {
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 201, 79, 0.05), transparent 30%),
    linear-gradient(180deg, #010101, #040301) !important;
}

.bg-brand-dark {
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 201, 79, 0.07), transparent 30%),
    linear-gradient(135deg, #010101 0%, #050402 62%, #0b0701 100%) !important;
}

.text-brand-muted {
  color: var(--gnr-muted) !important;
}

.text-brand-gold {
  color: var(--gnr-gold-bright) !important;
}

.text-brand-soft {
  color: var(--gnr-gold-soft) !important;
}

.text-brand-dark {
  color: var(--gnr-gold-soft) !important;
}

body .text-white:not(.btn-primary),
body .\!text-white,
body .text-white\/65,
body .text-white\/68,
body .text-white\/72,
body .text-white\/75,
body .text-white\/78,
body .\!text-white\/78 {
  color: var(--gnr-gold-soft) !important;
}

.text-white\/65 {
  opacity: 1 !important;
}

.text-white\/68,
.text-white\/72,
.text-white\/75,
.text-white\/78,
.\!text-white\/78 {
  opacity: 1 !important;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid rgba(244, 181, 42, 0.28);
  background: linear-gradient(90deg, #050506, #1a1205, #050506);
  color: var(--gnr-text-gold);
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  min-width: 100%;
  animation: marquee 30s linear infinite;
}

.marquee span {
  padding: 18px 18px;
  font-size: clamp(1.4rem, 4vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: #050506;
  color: var(--gnr-gold-soft);
}

.footer-visual {
  position: relative;
  height: clamp(180px, 28vw, 310px);
  overflow: hidden;
}

.footer-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(22%) saturate(1.12) contrast(1.08);
  opacity: 0.42;
}

.footer-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 5, 6, 0.08), #050506);
}

.footer-content {
  position: relative;
  z-index: 1;
  margin-top: -62px;
  padding-bottom: 72px;
}

.footer-bottom {
  border-top: 1px solid rgba(244, 181, 42, 0.16);
  background: #020202;
  color: var(--gnr-text-gold);
  font-size: 0.84rem;
}

.footer-bottom a,
.site-footer a {
  color: var(--gnr-gold-soft);
  text-decoration: none;
}

.site-footer a:hover,
.footer-bottom a:hover {
  color: var(--gnr-gold-bright);
}

.whatsapp-float {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 75;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 201, 79, 0.78);
  background: linear-gradient(135deg, #030303, #090702 52%, #140d02);
  color: var(--gnr-text-gold);
  box-shadow: 0 18px 44px rgba(209, 154, 40, 0.36), 0 0 0 7px rgba(244, 181, 42, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 22px 54px rgba(255, 201, 79, 0.42);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 201, 79, 0.34);
  border-radius: 999px;
  padding: 8px 13px;
  background: linear-gradient(135deg, rgba(255, 201, 79, 0.22), rgba(68, 42, 8, 0.74));
  color: var(--gnr-gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
}

.glass-chip {
  border: 1px solid rgba(255, 201, 79, 0.32);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(244, 181, 42, 0.12);
  color: var(--gnr-text-gold);
  font-size: 0.8rem;
  font-weight: 800;
}

.gallery-summary .lux-card {
  min-height: 150px;
}

.gallery-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.gallery-menu button {
  min-height: 48px;
  border: 1px solid rgba(255, 201, 79, 0.34);
  border-radius: 999px;
  padding: 13px 20px;
  background: linear-gradient(145deg, rgba(4, 4, 4, 0.94), rgba(22, 14, 3, 0.9));
  color: var(--gnr-text-gold);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.gallery-menu button:hover,
.gallery-menu button:focus-visible,
.gallery-menu button.is-active {
  transform: translateY(-2px);
  border-color: rgba(255, 201, 79, 0.84);
  background: linear-gradient(135deg, #030303 0%, #100b03 52%, #2a1a04 100%);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42), 0 0 22px rgba(255, 201, 79, 0.12);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 24px;
  align-items: stretch;
}

.gallery-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.gallery-card[hidden] {
  display: none !important;
}

.gallery-card-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 201, 79, 0.28);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 201, 79, 0.14), transparent 32%),
    #050506;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.38);
  isolation: isolate;
}

.gallery-card:nth-child(6n + 2) .gallery-card-frame,
.gallery-card:nth-child(6n + 5) .gallery-card-frame {
  aspect-ratio: 1 / 1;
}

.gallery-card:nth-child(6n + 3) .gallery-card-frame {
  aspect-ratio: 5 / 4;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  transition: transform 700ms ease, filter 700ms ease;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.07);
  filter: saturate(1.18) contrast(1.08);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 201, 79, 0.2), transparent 30%),
    linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.08) 62%);
  opacity: 0;
  transition: opacity 240ms ease;
}

.gallery-card:hover .gallery-card-overlay,
.gallery-card:focus-visible .gallery-card-overlay {
  opacity: 1;
}

.gallery-card-overlay span {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gallery-card-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 201, 79, 0.42);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.36);
}

.gallery-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.gallery-pagination[hidden] {
  display: none !important;
}

.gallery-pagination button {
  min-width: 46px;
  min-height: 46px;
  border: 1px solid rgba(255, 201, 79, 0.32);
  border-radius: 999px;
  padding: 0 15px;
  background: linear-gradient(145deg, rgba(4, 4, 4, 0.98), rgba(20, 13, 2, 0.94));
  color: var(--gnr-text-gold);
  font-weight: 900;
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, opacity 220ms ease;
}

.gallery-pagination button:hover:not(:disabled),
.gallery-pagination button.is-active {
  transform: translateY(-2px);
  border-color: rgba(255, 201, 79, 0.82);
  background: linear-gradient(135deg, #030303 0%, #090702 52%, #231604 100%);
}

.gallery-pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.gallery-empty {
  border: 1px solid rgba(255, 201, 79, 0.28);
  border-radius: 22px;
  padding: 18px;
  background: rgba(255, 201, 79, 0.08);
  text-align: center;
}

body.lightbox-open {
  overflow: hidden;
}

.gallery-lightbox[hidden] {
  display: none !important;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(10px, 3vw, 28px);
  padding: clamp(22px, 5vw, 64px);
  background:
    radial-gradient(circle at 78% 14%, rgba(255, 201, 79, 0.12), transparent 28%),
    rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(14px);
}

.gallery-lightbox-figure {
  margin: 0 auto;
  width: min(100%, 1120px);
}

.gallery-lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border: 1px solid rgba(255, 201, 79, 0.28);
  border-radius: 24px;
  background: #000;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.7);
}

.gallery-lightbox figcaption {
  margin-top: 14px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gallery-lightbox button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 201, 79, 0.46);
  border-radius: 999px;
  background: linear-gradient(135deg, #030303, #100a02);
  color: var(--gnr-text-gold);
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.48);
  transition: transform 220ms ease, border-color 220ms ease;
}

.gallery-lightbox button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 201, 79, 0.9);
}

.gallery-lightbox-close {
  position: absolute;
  top: max(18px, env(safe-area-inset-top));
  right: max(18px, env(safe-area-inset-right));
  width: 52px;
  height: 52px;
}

.gallery-lightbox-control {
  width: 56px;
  height: 56px;
}

.safe-video {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

@supports (-webkit-touch-callout: none) {
  .hero {
    min-height: -webkit-fill-available;
  }
}

@media (max-width: 1023px) {
  .site-header {
    padding: 12px 0;
  }

  .brand-logo {
    width: 54px;
    height: 54px;
  }

  .hero-title {
    letter-spacing: -0.055em;
  }

  .stat-card {
    border-left: 0;
    border-top: 1px solid rgba(235, 215, 178, 0.2);
  }

  .stat-card:first-child {
    border-top: 0;
  }
}

@media (max-width: 767px) {
  .container-pad {
    width: min(100% - 24px, 1180px);
  }

  .section-space {
    padding-block: 64px;
  }

  .section-space-sm {
    padding-block: 50px;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
  }

  .hero-medium {
    min-height: 68vh;
    min-height: 68svh;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(7, 8, 10, 0.48) 0%, rgba(7, 8, 10, 0.28) 100%),
      linear-gradient(to top, rgba(7, 8, 10, 0.36), transparent 42%);
  }

  .scroll-indicator {
    display: none;
  }

  .image-stack {
    padding: 0 0 56px 16px;
  }

  .image-stack::before {
    inset: 32px 22px 26px 0;
    border-radius: 24px;
  }

  .image-stack .main-img {
    width: 90%;
    height: 360px;
  }

  .image-stack .over-img {
    width: 54%;
    height: 190px;
    border-width: 8px;
  }

  .feature-card {
    min-height: 360px;
  }

  .media-showcase,
  .interview-card {
    border-radius: 28px;
  }

  .video-frame-wide {
    aspect-ratio: 9 / 14;
  }

  .product-card img {
    height: 255px;
  }

  .gallery-grid {
    gap: 16px;
  }

  .gallery-menu {
    gap: 10px;
  }

  .gallery-menu button {
    min-height: 48px;
    padding: 10px 18px;
    font-size: 0.72rem;
    line-height: 1;
    letter-spacing: 0.045em;
  }

  .gallery-card-frame,
  .gallery-card:nth-child(6n + 2) .gallery-card-frame,
  .gallery-card:nth-child(6n + 3) .gallery-card-frame,
  .gallery-card:nth-child(6n + 5) .gallery-card-frame {
    aspect-ratio: 1 / 1.08;
    border-radius: 22px;
  }

  .gallery-lightbox {
    grid-template-columns: 1fr;
    padding: 78px 14px 86px;
  }

  .gallery-lightbox img {
    max-height: 68vh;
    border-radius: 18px;
  }

  .gallery-lightbox-control {
    position: absolute;
    bottom: max(20px, env(safe-area-inset-bottom));
  }

  .gallery-lightbox-prev {
    left: 20px;
  }

  .gallery-lightbox-next {
    right: 20px;
  }

  .footer-content {
    margin-top: -36px;
    padding-bottom: 52px;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
