/* ── TesArm S.R.O. — Design System ── */
:root {
  --bronze:       #B8860B;
  --gold:         #C9A227;
  --gold-light:   #E8C872;
  --brown-dark:   #2B1B17;
  --brown-mid:    #3D2914;
  --brown-warm:   #5C3D2E;
  --cream:        #F5F0EB;
  --cream-muted:  #EDE6DC;
  --charcoal:     #1A1412;
  --grey:         #8A8078;
  --white:        #FFFFFF;
  --whatsapp:     #25D366;

  --font-display: 'Outfit', system-ui, sans-serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(43, 27, 23, 0.08);
  --shadow-md: 0 8px 32px rgba(43, 27, 23, 0.12);
  --shadow-lg: 0 16px 64px rgba(43, 27, 23, 0.18);
  --shadow-gold: 0 4px 24px rgba(201, 162, 39, 0.25);

  --nav-height: 80px;
  --topbar-height: 0px;
  --header-offset: var(--nav-height);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--brown-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

/* ── Typography ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--brown-dark);
  margin-bottom: 1.25rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--grey);
  max-width: 560px;
  line-height: 1.75;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--bronze));
  color: var(--brown-dark);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 162, 39, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(245, 240, 235, 0.35);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(245, 240, 235, 0.1);
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  height: var(--nav-height);
  transition: var(--transition);
}

.nav.is-menu-open {
  background: var(--charcoal);
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}

.nav.scrolled {
  background: rgba(26, 20, 18, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.nav-logo span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--cream);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(245, 240, 235, 0.75);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 0.75rem; }

.nav-logo,
.nav-toggle {
  position: relative;
  z-index: 2;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile menu overlay ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: var(--charcoal);
  padding-top: calc(var(--header-offset) + env(safe-area-inset-top));
  padding-bottom: env(safe-area-inset-bottom);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow: hidden;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 1.5rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
}

.mobile-menu-inner a {
  font-size: 1.125rem;
  font-weight: 600;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--cream);
  transition: var(--transition);
}

.mobile-menu-inner a:hover,
.mobile-menu-inner a:active {
  color: var(--gold-light);
  padding-left: 0.5rem;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--charcoal);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.4s ease-in-out;
  will-change: opacity, transform;
}

.hero-slide.is-active {
  opacity: 1;
  animation: heroKenBurns 7s ease-out forwards;
}

.hero-slide.is-leaving {
  opacity: 0;
}

@keyframes heroKenBurns {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(43, 27, 23, 0.92) 0%, rgba(26, 20, 18, 0.82) 50%, rgba(43, 27, 23, 0.78) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(201, 162, 39, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 162, 39, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.12) 0%, transparent 70%);
  top: -10%;
  right: -5%;
  pointer-events: none;
  z-index: 2;
}

.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 32px;
  height: 3px;
  padding: 0;
  border: none;
  border-radius: 2px;
  background: rgba(245, 240, 235, 0.25);
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.is-active {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  width: 48px;
}

.hero-dot:hover {
  background: rgba(245, 240, 235, 0.5);
}

.hero-content {
  position: relative;
  z-index: 4;
  padding: calc(var(--header-offset) + 4rem) 0 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.hero h1 .accent {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  font-size: 1.125rem;
  color: rgba(245, 240, 235, 0.65);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hero-stat span {
  font-size: 0.8125rem;
  color: rgba(245, 240, 235, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-logo-ring {
  position: relative;
  width: min(380px, 80vw);
  aspect-ratio: 1;
}

.hero-logo-ring::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.2);
  animation: spin 30s linear infinite;
}

.hero-logo-ring::after {
  content: '';
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  border: 1px dashed rgba(201, 162, 39, 0.1);
  animation: spin 45s linear infinite reverse;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.hero-logo-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(201, 162, 39, 0.2), var(--shadow-lg);
}

.hero-float-card {
  position: absolute;
  background: rgba(26, 20, 18, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
}

.hero-float-card.top {
  top: 10%;
  right: -5%;
  animation: float 4s ease-in-out infinite;
}

.hero-float-card.bottom {
  bottom: 15%;
  left: -8%;
  animation: float 4s ease-in-out infinite 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-float-card .card-accent {
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin-bottom: 0.5rem;
}

.hero-float-card strong {
  display: block;
  font-size: 0.875rem;
  color: var(--cream);
}

.hero-float-card span {
  font-size: 0.75rem;
  color: var(--grey);
}

/* ── About ── */
.about {
  padding: 7rem 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(26, 20, 18, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about-image-badge img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
}

.about-image-badge strong {
  display: block;
  color: var(--cream);
  font-size: 0.9375rem;
}

.about-image-badge span {
  font-size: 0.8125rem;
  color: var(--grey);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.about-feature {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(43, 27, 23, 0.06);
  transition: var(--transition);
}

.about-feature:hover {
  border-color: rgba(201, 162, 39, 0.3);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.about-feature-icon,
.contact-card-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), rgba(184, 134, 11, 0.08));
  border-radius: var(--radius-sm);
  color: var(--bronze);
}

.icon-svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-feature h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.about-feature p {
  font-size: 0.8125rem;
  color: var(--grey);
  line-height: 1.5;
}

/* ── Services ── */
.services {
  padding: 7rem 0;
  background: var(--brown-dark);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-header .section-title { color: var(--cream); }
.services-header .section-desc { margin-inline: auto; color: rgba(245, 240, 235, 0.55); }
.services-header .section-label { justify-content: center; }
.services-header .section-label::before { display: none; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 162, 39, 0.12);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(201, 162, 39, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 2rem;
  right: 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.2), transparent);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.75rem;
  padding-top: 0.5rem;
}

.service-card p {
  font-size: 0.9375rem;
  color: rgba(245, 240, 235, 0.55);
  line-height: 1.65;
}

.service-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(201, 162, 39, 0.08);
  line-height: 1;
}

/* ── Gallery ── */
.gallery {
  padding: 7rem 0;
  background: var(--cream-muted);
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.gallery-video {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(43, 27, 23, 0.06);
  box-shadow: var(--shadow-sm);
}

.video-player {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--charcoal);
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 9;
}

.video-player video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: var(--charcoal);
}

.gallery-video-caption h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brown-dark);
  margin-bottom: 0.75rem;
}

.gallery-video-caption p {
  font-size: 0.9375rem;
  color: var(--grey);
  line-height: 1.7;
  max-width: 360px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: zoom-in;
  text-align: left;
}

.gallery-item:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(43, 27, 23, 0.7) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover::after { opacity: 1; }

.gallery-item-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cream);
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}

.gallery-item:hover .gallery-item-label {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 20, 18, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 50%;
  color: var(--gold-light);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.85);
  transition: var(--transition);
  pointer-events: none;
}

.gallery-item:hover .gallery-item-zoom {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-row: span 2; }

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: none;
  background: rgba(10, 8, 7, 0.92);
  backdrop-filter: blur(12px);
  cursor: zoom-out;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 162, 39, 0.25);
  background: rgba(26, 20, 18, 0.85);
  color: var(--cream);
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(201, 162, 39, 0.2);
  border-color: var(--gold);
  color: var(--gold-light);
}

.lightbox-close {
  top: 1.25rem;
  right: 1.25rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }

.lightbox-figure {
  position: relative;
  z-index: 1;
  max-width: min(1200px, 92vw);
  max-height: 88vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.lightbox.is-open .lightbox-figure {
  transform: scale(1);
}

.lightbox-img {
  max-width: 100%;
  max-height: calc(88vh - 4rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  margin-top: 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--cream);
  text-align: center;
}

.lightbox-counter {
  position: absolute;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(245, 240, 235, 0.5);
  letter-spacing: 0.05em;
}

body.lightbox-open {
  overflow: hidden;
}

/* ── CTA Banner ── */
.cta-banner {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--brown-mid), var(--brown-dark));
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A227' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--cream);
  max-width: 500px;
}

.cta-inner h2 .accent {
  color: var(--gold-light);
}

.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Contact ── */
.contact {
  padding: 7rem 0;
  background: var(--cream);
}

.contact-grid {
  max-width: 640px;
  margin-inline: auto;
}

.contact-grid .section-desc {
  max-width: none;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(43, 27, 23, 0.06);
  transition: var(--transition);
}

.contact-card:hover {
  border-color: rgba(201, 162, 39, 0.3);
  box-shadow: var(--shadow-sm);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
}

.contact-card strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.15rem;
}

.contact-card a, .contact-card span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown-dark);
  transition: var(--transition);
}

.contact-card a:hover { color: var(--bronze); }

/* ── Footer ── */
.footer {
  background: var(--charcoal);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(201, 162, 39, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9375rem;
  color: rgba(245, 240, 235, 0.5);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col ul a {
  font-size: 0.9375rem;
  color: rgba(245, 240, 235, 0.55);
  transition: var(--transition);
}

.footer-col ul a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(245, 240, 235, 0.35);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  color: rgba(245, 240, 235, 0.6);
  transition: var(--transition);
  font-size: 1.1rem;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--brown-dark);
}

/* ── Floating WhatsApp ── */
.floating-wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  font-size: 1.75rem;
}

.floating-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.floating-wa .tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--brown-dark);
  color: var(--cream);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.floating-wa:hover .tooltip { opacity: 1; }

/* ── Mobile top contact bar ── */
.mobile-topbar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1110;
  height: calc(var(--topbar-height) + env(safe-area-inset-top));
  padding: env(safe-area-inset-top) 0.75rem 0;
  background: rgba(14, 10, 9, 0.98);
  border-bottom: 1px solid rgba(201, 162, 39, 0.12);
  align-items: center;
  gap: 0.5rem;
}

.mobile-topbar-btn {
  position: relative;
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  height: 34px;
  overflow: hidden;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transform: scale(1);
  transition:
    transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1),
    border-color 0.25s ease,
    box-shadow 0.35s ease,
    background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.mobile-topbar-btn svg {
  position: relative;
  z-index: 1;
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.mobile-topbar-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.05) 30%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0.05) 70%,
    transparent 100%
  );
  transform: skewX(-18deg);
  pointer-events: none;
  z-index: 0;
}

.mobile-topbar-btn.is-tapped {
  transform: scale(1.07);
}

.mobile-topbar-btn.is-tapped svg {
  transform: scale(1.12);
}

.mobile-topbar-btn.is-tapped::after {
  animation: topbar-shine 0.65s ease forwards;
}

.mobile-topbar-call {
  background: rgba(201, 162, 39, 0.1);
  border-color: rgba(201, 162, 39, 0.3);
  color: var(--gold-light);
  white-space: nowrap;
}

.mobile-topbar-call.is-tapped {
  background: rgba(201, 162, 39, 0.22);
  border-color: var(--gold-light);
  box-shadow: 0 0 18px rgba(201, 162, 39, 0.45), 0 4px 12px rgba(201, 162, 39, 0.2);
}

.mobile-topbar-wa {
  background: rgba(37, 211, 102, 0.08);
  border-color: rgba(37, 211, 102, 0.28);
  color: #6ee7a0;
}

.mobile-topbar-wa.is-tapped {
  background: rgba(37, 211, 102, 0.2);
  border-color: #25D366;
  box-shadow: 0 0 18px rgba(37, 211, 102, 0.4), 0 4px 12px rgba(37, 211, 102, 0.15);
}

@keyframes topbar-shine {
  from { left: -120%; }
  to   { left: 160%; }
}

/* ── Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-text { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-logo-ring { width: 220px; }
  .hero-float-card { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .gallery-video { grid-template-columns: 1fr; }
  .gallery-header .section-desc { text-align: left !important; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; height: 280px; }
  .gallery-item:nth-child(2) { grid-row: span 1; height: 280px; }
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) { height: 220px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 56px;
    --topbar-height: 44px;
    --header-offset: calc(var(--nav-height) + var(--topbar-height));
  }

  html {
    scroll-padding-top: calc(var(--header-offset) + env(safe-area-inset-top) + 8px);
  }

  body {
    -webkit-tap-highlight-color: rgba(201, 162, 39, 0.15);
  }

  .container {
    width: min(1200px, 90vw);
  }

  /* Nav + topbar */
  .mobile-topbar {
    display: flex;
  }

  .nav {
    top: calc(var(--topbar-height) + env(safe-area-inset-top));
  }

  .nav.scrolled,
  .nav {
    background: rgba(26, 20, 18, 0.98);
    backdrop-filter: blur(16px);
  }

  .nav-links { display: none; }

  .mobile-menu {
    display: block;
  }

  .nav-logo img {
    width: 40px;
    height: 40px;
  }

  .nav-logo span {
    font-size: 1.1rem;
  }

  .nav-cta .btn-outline { display: none; }
  .nav-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
  }

  /* Hero */
  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: calc(var(--header-offset) + env(safe-area-inset-top) + 1.5rem) 0 3.5rem;
    gap: 2rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }

  .hero-text {
    font-size: 1rem;
    margin-bottom: 1.75rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    margin-bottom: 2rem;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .hero-stats {
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
  }

  .hero-stat {
    flex: 1;
    min-width: 90px;
  }

  .hero-stat strong {
    font-size: 1.5rem;
  }

  .hero-stat span {
    font-size: 0.6875rem;
  }

  .hero-logo-ring {
    width: min(180px, 55vw);
  }

  .hero-dots {
    bottom: 1rem;
  }

  .hero-dot {
    width: 24px;
  }

  .hero-dot.is-active {
    width: 36px;
  }

  /* Sections */
  .about,
  .services,
  .gallery,
  .contact {
    padding: 4rem 0;
  }

  .cta-banner {
    padding: 3.5rem 0;
  }

  .section-title {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
  }

  .section-desc {
    font-size: 0.975rem;
  }

  .gallery-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
  }

  .gallery-video {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }

  .gallery-video-caption h3 {
    font-size: 1.25rem;
  }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 2rem 1.5rem; }

  .about-features { grid-template-columns: 1fr; }
  .about-image { aspect-ratio: 16 / 10; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-item,
  .gallery-item:first-child,
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) {
    grid-column: span 1;
    grid-row: span 1;
    height: 220px;
  }

  .gallery-item:first-child {
    height: 260px;
  }

  .gallery-item-label {
    opacity: 1;
    transform: none;
  }

  .gallery-item-zoom {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    width: 44px;
    height: 44px;
  }

  /* Lightbox mobile */
  .lightbox {
    padding: 0;
  }

  .lightbox-figure {
    max-width: 100vw;
    max-height: 100vh;
    width: 100%;
    height: 100%;
    justify-content: center;
    padding: 3.5rem 0 5rem;
  }

  .lightbox-img {
    max-width: 100vw;
    max-height: calc(100vh - 8rem);
    border-radius: 0;
  }

  .lightbox-caption {
    padding: 0 1.25rem;
    font-size: 0.875rem;
  }

  .lightbox-counter {
    top: auto;
    bottom: 1.25rem;
    font-size: 0.75rem;
  }

  .lightbox-close {
    top: calc(0.75rem + env(safe-area-inset-top));
    right: 0.75rem;
    width: 44px;
    height: 44px;
  }

  .lightbox-nav {
    top: auto;
    bottom: calc(3.5rem + env(safe-area-inset-bottom));
    transform: none;
    width: 44px;
    height: 44px;
  }

  .lightbox-prev { left: 1rem; }
  .lightbox-next { right: 1rem; }

  /* CTA & Contact */
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-inner h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  /* Footer */
  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Floating WA hidden on mobile — topbar handles contact */
  .floating-wa { display: none; }

  .btn {
    min-height: 44px;
  }
}

@media (max-width: 380px) {
  .hero-stats {
    gap: 0.75rem;
  }

  .hero-stat strong {
    font-size: 1.25rem;
  }
}
