/* =========================================
   RITUAL STUDIO — BARBERSHOP | styles.css
   ========================================= */

/* ---------- TOKENS ---------- */
:root {
  --navy-950: #0a0f22;
  --navy-800: #111b38;
  --navy-700: #162040;
  --navy-600: #1c2d54;
  --navy-400: #2f4576;
  --gold: #b08d57;
  --gold-light: #c9a96e;
  --gold-soft: #d8c19c;
  --gold-pale: #f5eddd;
  --white: #ffffff;
  --offwhite: #f7f6f3;
  --ink: #0e1220;
  --ink-soft: rgba(14, 18, 32, 0.62);
  --line: rgba(14, 18, 32, 0.10);
  --line-on-navy: rgba(255, 255, 255, 0.12);
  --radius: 3px;
  --maxw: 1200px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.1;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
@media (max-width: 640px) { .wrap { padding: 0 20px; } }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { display: block; }

/* ---------- EYEBROW ---------- */
.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold);
  display: inline-block;
  flex-shrink: 0;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--navy-950);
  transition: all 0.28s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary { background: var(--navy-950); color: var(--white) !important; }
.btn-primary:hover { background: var(--navy-700); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(10,15,34,0.35); }

/* Force correct text colors on CTA and specific cards */
a.btn-primary.nav-cta {
  color: var(--white) !important;
}

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

.btn-gold { border-color: var(--gold); color: var(--navy-950); background: transparent; }
.btn-gold:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(176,141,87,0.4); }

.premium-card .btn-gold {
  color: var(--gold-soft) !important;
  border-color: var(--gold-soft) !important;
}
.premium-card .btn-gold:hover {
  background: var(--gold-soft) !important;
  color: var(--navy-950) !important;
}

.btn-outline-white { border-color: rgba(255,255,255,0.5); color: var(--white); background: transparent; }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); transform: translateY(-2px); }

/* ---------- NAV ---------- */
header.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 15, 34, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}
header.nav.scrolled {
  background: rgba(10, 15, 34, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 40px;
  max-width: var(--maxw); margin: 0 auto;
}

.logo { display: flex; align-items: center; gap: 12px; transition: opacity 0.2s; }
.logo:hover { opacity: 0.85; }
.logo-img { height: 46px; width: auto; object-fit: contain; }

nav.links { display: flex; gap: 32px; align-items: center; }
nav.links a:not(.btn) {
  font-size: 12.5px; letter-spacing: 0.1em; color: rgba(255, 255, 255, 0.8);
  position: relative; padding: 4px 0; font-weight: 500;
  text-transform: uppercase;
  transition: color 0.22s;
}
nav.links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -1px;
  width: 0; height: 1.5px; background: var(--gold-soft);
  transition: width 0.28s var(--ease);
}
nav.links a:not(.btn):hover::after { width: 100%; }
nav.links a:not(.btn):hover { color: var(--gold-soft); }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }

@media (max-width: 900px) {
  .nav-inner { padding: 12px 20px; }
  nav.links {
    position: fixed;
    top: 66px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #0a0f22;
    background: rgba(10, 15, 34, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    flex-direction: column; justify-content: flex-start;
    padding: 48px 32px; gap: 28px;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    z-index: 90; border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  nav.links.open { transform: translateX(0); }
  nav.links a:not(.btn) { font-size: 22px; font-weight: 400; font-family: 'Fraunces', serif; color: var(--white); }
  .nav-cta { display: none; }
  .menu-toggle { display: block; }
}

/* Force correct text colors on CTA */
a.btn-primary.nav-cta {
  background: transparent !important;
  border: 1px solid var(--gold-soft) !important;
  color: var(--gold-soft) !important;
}
a.btn-primary.nav-cta:hover {
  background: var(--gold-soft) !important;
  color: var(--navy-950) !important;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 84vh;
  display: flex; align-items: center;
  overflow: hidden;
  margin-top: -74px; /* Pull hero under transparent nav */
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  filter: brightness(0.72) contrast(1.02);
  transform: scale(1.06);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(10,15,34,0.95) 0%, rgba(10,15,34,0.85) 30%, rgba(10,15,34,0.4) 65%, transparent 100%),
    linear-gradient(to top, rgba(10,15,34,0.6) 0%, transparent 50%);
}

.hero-content {
  position: relative; z-index: 2;
  width: 100%; padding: 160px 0 95px;
}

.hero-content .wrap {
  display: flex;
  justify-content: flex-start;
  max-width: 1400px;
  padding-left: 24px;
}

/* Hero left */
.hero-left { max-width: 680px; display: flex; flex-direction: column; }

.hero-left .eyebrow {
  color: var(--gold-soft); margin-bottom: 26px;
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero-left .eyebrow::before { background: var(--gold-soft); }

.hero h1 {
  font-size: clamp(42px, 5.8vw, 76px);
  color: var(--white); margin-bottom: 24px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
  animation: fadeUp 0.8s ease 0.4s both;
}
.hero h1 em { font-style: italic; color: var(--gold-soft); }

.hero p.lead {
  font-size: 16.5px; color: rgba(255, 255, 255, 0.72);
  max-width: 520px; margin-bottom: 24px; line-height: 1.75;
  animation: fadeUp 0.8s ease 0.6s both;
}

/* Rating */
.hero-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 38px;
  animation: fadeUp 0.8s ease 0.7s both;
}
.hero-rating .stars {
  color: var(--gold-soft);
  letter-spacing: 2px;
  font-size: 14px;
}
.hero-rating .divider {
  color: rgba(255, 255, 255, 0.2);
}

.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeUp 0.8s ease 0.8s both;
}

/* Hero CTA specific styles */
.hero-cta-gold {
  background: var(--gold-soft) !important;
  color: var(--navy-950) !important;
  border-color: var(--gold-soft) !important;
}
.hero-cta-gold:hover {
  background: var(--gold) !important;
  color: var(--white) !important;
  box-shadow: 0 8px 28px rgba(176, 141, 87, 0.4);
}
.hero-cta-outline {
  border-color: rgba(255, 255, 255, 0.35) !important;
  color: var(--white) !important;
  background: transparent !important;
}
.hero-cta-outline:hover {
  border-color: var(--white) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

/* Stats Card */
.hero-stats-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 6px;
  padding: 26px 36px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
  max-width: 680px;
  margin-top: 10px;
  animation: fadeUp 0.8s ease 1s both;
}
.hero-stat-item {
  flex: 1;
}
.hero-stat-item:not(:first-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 32px;
}
.hero-stat-item .num {
  font-family: 'Fraunces', serif;
  font-size: 34px; color: var(--gold-soft);
  font-weight: 500; line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-item .lbl {
  font-size: 11px; color: rgba(255, 255, 255, 0.55);
  line-height: 1.4; letter-spacing: 0.02em;
}

@media (max-width: 640px) {
  .hero-stats-card {
    flex-direction: row;
    gap: 12px;
    padding: 16px 12px;
  }
  .hero-stat-item:not(:first-child) {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    padding-left: 12px;
    padding-top: 0;
  }
  .hero-stat-item .num {
    font-size: 26px;
  }
  .hero-stat-item .lbl {
    font-size: 9px;
    line-height: 1.3;
  }
}

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: fadeIn 1s ease 1.6s both;
}
.hero-scroll span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px; letter-spacing: 0.22em;
  color: rgba(255,255,255,0.5); text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(176,141,87,0.8), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.35; transform: scaleY(0.5); }
}

@media (max-width: 900px) {
  .hero-content { padding: 120px 0 90px; }
}

/* ---------- MANIFESTO ---------- */
.manifesto {
  background: var(--white);
  color: var(--ink);
  padding: 110px 0;
}
.manifesto-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}
.manifesto-text {
  max-width: 620px;
}
.manifesto-text h2 {
  font-size: clamp(34px, 4.2vw, 52px);
  margin-top: 18px;
  margin-bottom: 24px;
  color: var(--navy-950);
  line-height: 1.15;
}
.manifesto-text h2 em {
  font-style: italic;
  color: var(--gold);
}
.manifesto-text hr.gold-divider {
  width: 48px;
  border: 0;
  height: 1.5px;
  background: var(--gold);
  margin: 28px 0;
  display: block;
}
.manifesto-text p.lead-manifesto {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 0;
}

/* Features grid in Manifesto */
.manifesto-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 44px;
  border-top: 1px solid var(--line);
  padding-top: 36px;
}
.m-feat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.m-feat-item:not(:first-child) {
  border-left: 1px solid var(--line);
  padding-left: 20px;
}
.m-feat-icon {
  width: 24px;
  height: 24px;
  color: var(--gold);
}
.m-feat-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-950);
  line-height: 1.45;
}

.manifesto-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(10, 15, 34, 0.08);
}
.manifesto-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.manifesto-img:hover img {
  transform: scale(1.04);
}

@media (max-width: 800px) {
  .manifesto-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .manifesto-img img {
    height: 320px;
  }
}
@media (max-width: 640px) {
  .manifesto-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .m-feat-item:not(:first-child) {
    border-left: none;
    padding-left: 0;
  }
}

/* ---------- SECTION GENERIC ---------- */
.section { padding: 110px 0; }
.section-head {
  display: flex; justify-content: space-between;
  align-items: flex-end; gap: 30px;
  margin-bottom: 60px; flex-wrap: wrap;
}
.section-head h2 { font-size: clamp(30px,3.8vw,46px); margin-top: 18px; }
.section-head p { color: var(--ink-soft); max-width: 420px; font-size: 15.5px; line-height: 1.7; }

/* ---------- SERVICES ---------- */
.services { background: var(--offwhite); }

.services-note {
  border: 1px solid var(--line); background: var(--white);
  padding: 22px 28px; margin-bottom: 40px;
  font-size: 14.5px; color: var(--ink-soft);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  line-height: 1.7;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 56px;
  border-top: 1px solid var(--line);
}
@media (max-width: 768px) {
  .service-list {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.service-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; border-bottom: 1px solid var(--line);
  gap: 20px;
}
.service-row .name {
  font-family: 'Fraunces', serif; font-size: 19px; font-weight: 400;
  display: flex; align-items: center; gap: 12px;
}
.service-row .name svg { color: var(--gold); flex-shrink: 0; }
.service-row .tag {
  font-family: 'IBM Plex Mono', monospace; font-size: 10px;
  color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--gold-pale); padding: 3px 8px; border-radius: 2px;
}
.service-row .dots {
  flex: 1; border-bottom: 1px dotted rgba(14,18,32,0.18); margin: 0 8px;
}
.service-row .price {
  font-family: 'IBM Plex Mono', monospace; font-size: 15px;
  color: var(--navy-950); white-space: nowrap; font-weight: 500;
}
.service-row.sub .name { font-size: 14px; color: var(--ink-soft); font-family: 'Inter',sans-serif; }
.service-row.sub .price { font-size: 13px; color: var(--ink-soft); }

.premium-card {
  margin-top: 60px; background: var(--navy-950); color: var(--white);
  padding: 50px 52px;
  display: grid; grid-template-columns: 1fr auto; gap: 40px;
  align-items: center; position: relative; overflow: hidden;
  border-radius: var(--radius);
}
.premium-card::before {
  content: ""; position: absolute; top: -50%; right: -8%;
  width: 340px; height: 340px;
  border: 1px solid rgba(176,141,87,0.15); border-radius: 50%;
}
.premium-card::after {
  content: ""; position: absolute; top: -25%; right: 2%;
  width: 200px; height: 200px;
  border: 1px solid rgba(176,141,87,0.07); border-radius: 50%;
}
.premium-card .eyebrow { color: var(--gold-soft); }
.premium-card .eyebrow::before { background: var(--gold-soft); }
.premium-card h3 { color: var(--white); font-size: 28px; margin: 16px 0 12px; }
.premium-card p { color: rgba(255,255,255,0.6); font-size: 14.5px; max-width: 480px; line-height: 1.7; }
.premium-card .price-big {
  font-family: 'Fraunces', serif; font-size: 54px;
  color: var(--gold-soft); text-align: right; white-space: nowrap;
}
.premium-card .price-big span {
  display: block; font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px; color: rgba(255,255,255,0.42);
  letter-spacing: 0.14em; margin-top: 8px; text-align: right;
}
@media (max-width: 640px) {
  .premium-card { grid-template-columns: 1fr; padding: 36px 28px; }
  .premium-card .price-big { text-align: left; }
}

/* ---------- RITUAL ---------- */
.ritual { background: var(--white); }
.ritual-steps {
  display: grid; grid-template-columns: repeat(6,1fr);
  gap: 0; position: relative; margin-top: 24px;
}
.ritual-steps::before {
  content: ""; position: absolute; top: 24px; left: 4%; right: 4%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), var(--line), transparent);
}
.ritual-step { text-align: center; padding: 0 8px; position: relative; }
.ritual-step .dot {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--navy-950);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; position: relative; z-index: 2;
  color: var(--navy-950); transition: all 0.3s var(--ease);
}
.ritual-step:hover .dot {
  background: var(--navy-950); color: var(--white);
  transform: scale(1.14);
  box-shadow: 0 8px 28px rgba(10,15,34,0.25);
}
.ritual-step .dot svg { width: 20px; height: 20px; }
.ritual-step .step-num {
  font-family: 'IBM Plex Mono', monospace; font-size: 10px;
  color: var(--gold); letter-spacing: 0.1em; display: block; margin-bottom: 6px;
}
.ritual-step h4 {
  font-size: 14px; font-weight: 600; font-family: 'Inter',sans-serif;
  margin-bottom: 8px; color: var(--ink);
}
.ritual-step p { font-size: 12.5px; color: var(--ink-soft); line-height: 1.6; }

@media (max-width: 900px) {
  .ritual-steps { grid-template-columns: repeat(2,1fr); gap: 40px 16px; }
  .ritual-steps::before { display: none; }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .ritual-steps { grid-template-columns: repeat(3,1fr); gap: 40px 16px; }
  .ritual-steps::before { display: none; }
}

/* ---------- GALERÍA ---------- */
.galeria { background: var(--navy-950); padding: 110px 0; overflow: hidden; }
.galeria .eyebrow { color: var(--gold-soft); }
.galeria .eyebrow::before { background: var(--gold-soft); }
.galeria .section-head h2 { color: var(--white); }
.galeria .section-head p { color: rgba(255,255,255,0.55); }

.gallery-strip { display: flex; gap: 16px; margin-top: 16px; overflow: hidden; }
.gallery-strip-inner {
  display: flex; gap: 16px;
  animation: galleryScroll 50s linear infinite; flex-shrink: 0;
}
@keyframes galleryScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.gallery-strip:hover .gallery-strip-inner { animation-play-state: paused; }

.gallery-item {
  flex-shrink: 0; width: 280px; height: 370px;
  overflow: hidden; border-radius: 2px; position: relative;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.82) saturate(0.88);
}
.gallery-item:hover img { transform: scale(1.06); filter: brightness(1) saturate(1); }

/* ---------- AMBIENTE ---------- */
.ambiente { background: var(--offwhite); padding: 110px 0; }

.amb-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 24px; margin-top: 16px;
}
.amb-card {
  background: var(--white); padding: 40px 30px;
  border: 1px solid var(--line);
  transition: all 0.32s var(--ease);
  position: relative; overflow: hidden;
}
.amb-card::after {
  content: ""; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.amb-card:hover::after { transform: scaleX(1); }
.amb-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(10,15,34,0.11);
  border-color: rgba(176,141,87,0.2);
}
.amb-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--navy-950);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; transition: all 0.3s var(--ease);
}
.amb-card:hover .amb-icon { background: var(--gold); transform: rotate(8deg) scale(1.05); }
.amb-icon svg { width: 24px; height: 24px; color: var(--gold-soft); }
.amb-card:hover .amb-icon svg { color: var(--white); }
.amb-card h4 { font-size: 17px; margin-bottom: 10px; font-weight: 500; color: var(--ink); }
.amb-card p { color: var(--ink-soft); font-size: 14px; line-height: 1.7; }

@media (max-width: 900px) { .amb-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .amb-grid { grid-template-columns: 1fr; } }

/* ---------- LOCATION ---------- */
.location { background: var(--white); padding: 110px 0; }
.loc-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: 0; border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(10,15,34,0.08);
  overflow: hidden;
}
.loc-info { background: var(--offwhite); padding: 56px 48px; }
.loc-info .eyebrow { margin-bottom: 20px; }
.loc-info h2 { font-size: 30px; margin-bottom: 32px; }

.loc-item {
  display: flex; gap: 18px; margin-bottom: 28px;
  align-items: flex-start; transition: transform 0.25s ease;
}
.loc-item:hover { transform: translateX(4px); }
.loc-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy-950);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.loc-icon svg { width: 18px; height: 18px; color: var(--gold-soft); }
.loc-item h5 {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
  font-family: 'IBM Plex Mono',monospace; color: var(--gold); margin-bottom: 4px;
}
.loc-item p { font-size: 15px; color: var(--ink); line-height: 1.6; }
.loc-item a { color: var(--ink); border-bottom: 1px solid var(--gold); transition: color 0.2s; }
.loc-item a:hover { color: var(--gold); }

.map-frame { min-height: 440px; background: var(--navy-800); position: relative; }
.map-frame iframe { width: 100%; height: 100%; min-height: 440px; border: 0; filter: grayscale(0.1) contrast(1.05); }

@media (max-width: 900px) {
  .loc-grid { grid-template-columns: 1fr; }
  .map-frame { min-height: 320px; } .map-frame iframe { min-height: 320px; }
  .loc-info { padding: 40px 28px; }
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--navy-950); color: rgba(255,255,255,0.6);
  padding: 72px 0 32px; position: relative; overflow: hidden;
}
footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(176,141,87,0.4), transparent);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 56px; padding-bottom: 48px; border-bottom: 1px solid var(--line-on-navy);
}
.footer-brand .logo-footer { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-brand .logo-footer img {
  height: 48px; width: auto; object-fit: contain;
}
.footer-brand p {
  font-size: 14px; max-width: 290px;
  color: rgba(255,255,255,0.48); line-height: 1.75;
}
.footer-col h5 {
  font-family: 'IBM Plex Mono',monospace; font-size: 10.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 20px;
}
.footer-col a, .footer-col p {
  display: block; font-size: 14px; margin-bottom: 12px;
  color: rgba(255,255,255,0.6); transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between;
  padding-top: 28px; font-size: 12px; flex-wrap: wrap;
  gap: 10px; color: rgba(255,255,255,0.35);
}
.footer-bottom a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom a:hover {
  color: var(--gold-soft);
  text-decoration: underline;
}
.social-row { display: flex; gap: 12px; margin-top: 24px; }
.social-btn {
  width: 38px; height: 38px; border: 1px solid var(--line-on-navy);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: all 0.25s var(--ease); color: rgba(255,255,255,0.65);
}
.social-btn:hover {
  border-color: var(--gold-soft);
  background: rgba(176,141,87,0.15);
  color: var(--gold-soft); transform: translateY(-2px);
}
.social-btn svg { width: 16px; height: 16px; }

@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- INSTAGRAM FEED ---------- */
.instagram-feed {
  background: var(--offwhite);
  padding: 85px 0;
  border-top: 1px solid var(--line);
}
.insta-header {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}
.insta-profile {
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: 620px;
  text-align: left;
}
.insta-avatar {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
  box-shadow: 0 8px 24px rgba(10, 15, 34, 0.05);
}
.insta-profile-info h3 {
  font-size: 19px;
  color: var(--navy-950);
  margin-bottom: 6px;
  font-weight: 600;
}
.insta-bio {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 14px;
}
.btn-insta-follow {
  display: inline-flex;
  align-items: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy-950);
  border: 1px solid var(--line);
  font-weight: 500;
  transition: all 0.28s var(--ease);
  cursor: pointer;
}
.btn-insta-follow:hover {
  background: var(--navy-950);
  color: var(--white);
  border-color: var(--navy-950);
  transform: translateY(-2px);
}
.btn-insta-follow svg {
  color: #e1306c;
  transition: color 0.28s;
}
.btn-insta-follow:hover svg {
  color: var(--white);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.insta-post {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 16px 36px rgba(10, 15, 34, 0.04);
  display: block;
}
.insta-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 34, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.insta-stats {
  display: flex;
  gap: 22px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  transform: translateY(8px);
  transition: transform 0.3s var(--ease);
}
.insta-stats span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.insta-stats svg {
  width: 18px;
  height: 18px;
}
.insta-post:hover img {
  transform: scale(1.05);
}
.insta-post:hover .insta-overlay {
  opacity: 1;
}
.insta-post:hover .insta-stats {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .insta-profile {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .insta-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 380px;
    margin: 0 auto;
  }
}

/* ---------- WHATSAPP & INSTAGRAM FLOAT ---------- */
.wa-float {
  position: fixed; right: 26px; bottom: 26px; z-index: 200;
  width: 62px; height: 62px; border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wa-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 14px 44px rgba(37, 211, 102, 0.55);
}
.wa-float svg { width: 28px; height: 28px; fill: #ffffff; }
.wa-float .pulse {
  position: absolute; inset: 0; border-radius: 50%;
  background: #25D366; opacity: 0.45;
  animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.45; }
  100% { transform: scale(1.9); opacity: 0; }
}

.ig-float {
  position: fixed; right: 100px; bottom: 26px; z-index: 200;
  width: 62px; height: 62px; border-radius: 50%;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(220, 39, 67, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ig-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 14px 44px rgba(220, 39, 67, 0.5);
}
.ig-float svg { width: 28px; height: 28px; fill: #ffffff; }
.ig-float .pulse {
  position: absolute; inset: 0; border-radius: 50%;
  background: #dc2743; opacity: 0.4;
  animation: ig-pulse 2.4s ease-out infinite;
}
@keyframes ig-pulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* ---------- MISC ---------- */
::selection { background: var(--gold); color: var(--white); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy-950); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }
