/* ===== Orion's Fitness Gym — Landing styles ===== */

:root {
  --bg: #0a0a0b;
  --bg-elev: #131316;
  --bg-elev-2: #1a1a1d;
  --line: #26262b;
  --line-strong: #34343a;
  --ink: #f6f6f4;
  --ink-dim: #a8a8a8;
  --ink-mute: #6c6c70;
  --orange: #f15a24;
  --orange-hot: #ff6b2a;
  --orange-deep: #c44213;
  --orange-soft: #fef0e8;
  --green-go: #2bb673;
  --max: 1320px;
  --pad: clamp(20px, 4vw, 56px);
  --radius: 18px;
  --radius-sm: 10px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* Type */
.display {
  font-family: "Anton", "Barlow Condensed", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 0.88;
  text-transform: uppercase;
}
.condensed {
  font-family: "Barlow Condensed", "Anton", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--orange);
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--orange);
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: "";
  width: 28px; height: 2px;
  background: var(--orange);
}

/* Layout */
.wrap { max-width: var(--max); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: clamp(72px, 9vw, 140px); position: relative; }
.section.tight { padding-block: clamp(48px, 6vw, 80px); }

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 15px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn.primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(241,90,36,0.55);
}
.btn.primary:hover { background: var(--orange-hot); }
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn.ghost:hover { border-color: var(--ink); }
.btn.whatsapp {
  background: var(--green-go);
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(43,182,115,0.5);
}
.btn.whatsapp:hover { background: #25a063; }
.btn.dark { background: #000; color: #fff; }
.btn.lg { padding: 18px 28px; font-size: 16px; }

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(14px);
  background: rgba(10,10,11,0.7);
  border-bottom: 1px solid transparent;
  transition: background .2s ease, border-color .2s ease;
}
.nav.scrolled {
  background: rgba(10,10,11,0.92);
  border-bottom-color: var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 14px;
  gap: 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
}
.nav-logo img { height: 40px; width: auto; }
.nav-logo-text {
  display: flex; flex-direction: column; line-height: 1;
}
.nav-logo-text .name {
  font-family: "Anton", sans-serif; font-size: 18px; letter-spacing: 0.02em;
}
.nav-logo-text .sub {
  font-family: "Barlow Condensed", sans-serif; font-size: 11px; letter-spacing: 0.3em; color: var(--ink-dim);
  text-transform: uppercase;
}
.nav-menu {
  display: flex; gap: 28px; align-items: center;
}
.nav-menu a {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 14px;
  color: var(--ink-dim);
  transition: color .15s ease;
  position: relative;
}
.nav-menu a:hover { color: var(--ink); }
.nav-menu a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--orange); transform: scaleX(0); transform-origin: left;
  transition: transform .2s ease;
}
.nav-menu a:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.menu-toggle {
  display: none;
  background: transparent; border: 1px solid var(--line-strong); color: var(--ink);
  width: 44px; height: 44px; border-radius: 12px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: clamp(640px, 92vh, 920px);
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, rgba(10,10,11,0.4) 0%, rgba(10,10,11,0.2) 30%, rgba(10,10,11,0.55) 65%, rgba(10,10,11,0.98) 100%),
    url("assets/cable-machine.jpg");
  background-size: cover;
  background-position: center 30%;
  filter: saturate(1.1) contrast(1.05);
}
.hero-bg::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 30% 60%, rgba(241,90,36,0.18), transparent 70%);
  mix-blend-mode: screen;
}
.hero-content {
  position: relative; z-index: 2;
  padding-block: clamp(60px, 8vw, 110px);
  display: grid; gap: 32px;
  grid-template-columns: minmax(0, 1fr);
}
.hero-marquee {
  position: absolute;
  top: clamp(40px, 8vh, 90px);
  left: 0; right: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.08;
}
.hero-marquee-track {
  display: flex; gap: 60px;
  animation: marquee 40s linear infinite;
  font-family: "Anton", sans-serif;
  font-size: clamp(80px, 14vw, 200px);
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  width: max-content;
}
.hero-marquee-track span {
  display: inline-flex; align-items: center; gap: 60px;
}
.hero-marquee-track .star { color: var(--orange); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.hero-title {
  font-size: clamp(60px, 11vw, 180px);
  max-width: 14ch;
}
.hero-title .accent { color: var(--orange); }
.hero-title .outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
}
.hero-meta {
  display: flex; flex-wrap: wrap;
  gap: 18px 32px; align-items: center;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 14px;
  color: var(--ink-dim);
}
.hero-meta .dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }
.hero-sub {
  max-width: 56ch; color: var(--ink-dim);
  font-size: 17px; line-height: 1.6;
  text-shadow: 0 1px 12px rgba(0,0,0,0.7);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-stats {
  position: absolute;
  z-index: 2;
  right: var(--pad); bottom: clamp(60px, 8vw, 100px);
  display: grid; gap: 24px;
  background: rgba(19,19,22,0.6);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  padding: 28px 32px;
  border-radius: var(--radius);
  min-width: 260px;
}
.hero-stat .num {
  font-family: "Anton", sans-serif;
  font-size: 56px; line-height: 1; color: var(--ink);
}
.hero-stat .num small {
  font-size: 22px; color: var(--orange); margin-left: 4px;
}
.hero-stat .label {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 12px;
  color: var(--ink-dim);
  margin-top: 4px;
}
.hero-scroll {
  position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--ink-dim); font-size: 11px; letter-spacing: 0.3em;
  font-family: "Barlow Condensed", sans-serif; text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 32px; background: linear-gradient(180deg, var(--orange), transparent);
  animation: scroll-bob 2.4s ease-in-out infinite;
}
@keyframes scroll-bob {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50% { transform: scaleY(0.4); transform-origin: top; }
}

/* ===== Logo strip / location ===== */
.location-strip {
  display: flex; flex-wrap: wrap; align-items: center; gap: 24px;
  padding: 24px var(--pad);
  background: var(--bg-elev);
  border-block: 1px solid var(--line);
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 14px;
  color: var(--ink-dim);
}
.location-strip strong { color: var(--ink); }
.location-strip .pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border: 1px solid var(--line-strong); border-radius: 999px;
}
.location-strip .pill.live::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green-go);
  box-shadow: 0 0 0 4px rgba(43,182,115,0.18);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(43,182,115,0.18); }
  50% { box-shadow: 0 0 0 7px rgba(43,182,115,0.08); }
}

/* ===== About ===== */
.about {
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about-copy h2 {
  font-size: clamp(42px, 6vw, 88px);
  margin: 16px 0 24px;
}
.about-copy p {
  color: var(--ink-dim);
  font-size: 17px; line-height: 1.7;
  margin-block: 0 18px;
}
.about-copy p strong { color: var(--ink); }
.about-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.6);
}
.about-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s ease;
}
.about-image:hover img { transform: scale(1.04); }
.about-highlights {
  display: flex; gap: 32px; margin-top: 28px; flex-wrap: wrap;
}
.about-highlights .highlight {
  display: flex; gap: 12px; align-items: center;
}
.about-highlights .hl-num {
  font-family: "Anton", sans-serif;
  color: var(--orange); font-size: 28px; line-height: 1;
}
.about-highlights .hl-label {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase; letter-spacing: 0.08em;
  font-weight: 700; font-size: 13px; max-width: 20ch; line-height: 1.25;
}
.about-image .badge {
  position: absolute; left: 20px; bottom: 20px;
  background: var(--orange); color: #fff;
  padding: 12px 16px; border-radius: 12px;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase; letter-spacing: 0.1em; font-weight: 800;
  font-size: 13px;
}

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
  margin-top: 48px;
}
.service-card {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 32px;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.service-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(70% 80% at 100% 0%, rgba(241,90,36,0.14), transparent 60%);
  opacity: 0; transition: opacity .3s ease;
  pointer-events: none;
}
.service-card:hover { border-color: var(--orange); transform: translateY(-4px); }
.service-card:hover::before { opacity: 1; }
.service-card .num {
  font-family: "Anton", sans-serif;
  font-size: 24px;
  color: var(--orange);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 10px;
}
.service-card .num::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}
.service-card h3 {
  font-family: "Anton", sans-serif;
  font-size: 28px; line-height: 1; text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0 0 14px;
}
.service-card p {
  color: var(--ink-dim); font-size: 14.5px; line-height: 1.55; margin: 0;
}
.service-card .tag {
  display: inline-flex; margin-top: 16px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--orange);
  padding: 4px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

/* ===== Section heading block ===== */
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 40px; margin-bottom: 12px;
  flex-wrap: wrap;
}
.section-head .title {
  font-size: clamp(40px, 6vw, 84px);
  max-width: 18ch;
  margin: 12px 0 0;
}
.section-head .lead {
  color: var(--ink-dim); max-width: 44ch;
  font-size: 16px; line-height: 1.6;
}
.section-head .title .accent { color: var(--orange); }

/* ===== Plans ===== */
.plans-toggle {
  display: inline-flex; gap: 4px; padding: 4px;
  background: var(--bg-elev); border: 1px solid var(--line);
  border-radius: 999px; margin-top: 24px;
}
.plans-toggle button {
  padding: 10px 22px;
  background: transparent; border: none; color: var(--ink-dim);
  border-radius: 999px;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; font-size: 13.5px;
  transition: color .2s ease, background .2s ease;
}
.plans-toggle button.active {
  background: var(--orange); color: #fff;
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  margin-top: 36px;
}
.plan-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color .25s ease, transform .25s ease;
}
.plan-card.featured {
  background: linear-gradient(180deg, #1c1410 0%, #100f10 100%);
  border-color: var(--orange);
}
.plan-card.featured::before {
  content: "Más popular";
  position: absolute; top: 16px; right: 16px;
  background: var(--orange); color: #fff;
  padding: 6px 12px; border-radius: 999px;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase; letter-spacing: 0.08em; font-size: 11px; font-weight: 800;
}
.plan-card:hover { transform: translateY(-3px); }
.plan-card .plan-name {
  font-family: "Anton", sans-serif;
  font-size: 26px; text-transform: uppercase;
  margin: 0 0 6px;
}
.plan-card .plan-sub {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--ink-dim); font-size: 12px; margin-bottom: 24px;
}
.plan-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-block: 14px;
  border-top: 1px dashed var(--line);
}
.plan-row:last-of-type { border-bottom: 1px dashed var(--line); }
.plan-row .days {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; font-size: 14px;
  color: var(--ink);
}
.plan-row .days small { display: block; color: var(--ink-mute); font-weight: 600; font-size: 11px; letter-spacing: 0.18em; }
.plan-row .price {
  font-family: "Anton", sans-serif;
  font-size: 32px;
  color: var(--ink);
}
.plan-row .price .cur {
  font-size: 16px; color: var(--orange); margin-right: 2px; vertical-align: top;
}
.plan-card .plan-cta { margin-top: 22px; align-self: stretch; }
.plan-card .plan-cta .btn { width: 100%; justify-content: center; }
.plan-card .soon {
  margin-top: auto; padding: 18px 0;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--orange);
  font-size: 13px; font-weight: 700;
}

.plans-promo {
  margin-top: 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 24px 32px;
  background: linear-gradient(90deg, rgba(241,90,36,0.12), transparent 60%);
  border: 1px solid var(--orange);
  border-radius: var(--radius);
  flex-wrap: wrap;
}
.plans-promo .copy {
  display: flex; flex-direction: column; gap: 6px;
}
.plans-promo .copy strong {
  font-family: "Anton", sans-serif; font-size: 26px; text-transform: uppercase; color: var(--ink);
}
.plans-promo .copy span { color: var(--ink-dim); font-size: 15px; }

/* ===== Trial / WhatsApp CTA strip ===== */
.trial {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
}
.trial-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(90deg, rgba(10,10,11,0.92) 0%, rgba(10,10,11,0.75) 50%, rgba(10,10,11,0.55) 100%),
    url("assets/plates-floor.jpg");
  background-size: cover;
  background-position: center;
}
.trial-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  padding-block: clamp(56px, 7vw, 96px);
  align-items: center;
}
.trial-inner .eyebrow { margin-bottom: 18px; }
.trial-title {
  font-size: clamp(44px, 7vw, 96px);
  margin: 0 0 20px;
}
.trial-title .accent { color: var(--orange); }
.trial-copy { color: var(--ink-dim); font-size: 17px; line-height: 1.6; max-width: 50ch; margin-bottom: 28px; }
.trial-cta {
  display: flex;
  flex-direction: column; align-items: flex-start; gap: 14px;
  padding: 28px;
  background: rgba(19,19,22,0.85);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}
.trial-cta .badge {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange);
}
.trial-cta strong {
  font-family: "Anton", sans-serif; font-size: 36px; text-transform: uppercase;
  line-height: 1;
}
.trial-cta span { color: var(--ink-dim); font-size: 14px; }

/* ===== Schedule / address ===== */
.info-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}
.info-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
}
.info-card h3 {
  font-family: "Anton", sans-serif;
  font-size: 32px; text-transform: uppercase;
  margin: 12px 0 24px;
}
.schedule-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0;
  border-top: 1px dashed var(--line);
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.06em;
}
.schedule-row:last-of-type { border-bottom: 1px dashed var(--line); }
.schedule-row .day {
  text-transform: uppercase; font-weight: 700; font-size: 15px;
}
.schedule-row .hours {
  color: var(--ink);
  font-family: "Anton", sans-serif;
  font-size: 22px;
}
.schedule-row.closed .hours { color: var(--ink-mute); }
.schedule-row.now { color: var(--orange); }
.schedule-note {
  margin: 16px 0 0;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 12px; color: var(--ink-mute);
}
.schedule-row.now .day::after {
  content: "AHORA"; margin-left: 10px;
  font-size: 10px; padding: 3px 8px; border-radius: 999px;
  background: rgba(43,182,115,0.16); color: var(--green-go); letter-spacing: 0.18em;
  vertical-align: middle;
}

.address-block {
  display: flex; flex-direction: column; gap: 18px;
}
.address-block .pin {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(241,90,36,0.12);
  color: var(--orange);
  border: 1px solid var(--orange);
}
.address-block .line {
  font-family: "Anton", sans-serif; font-size: 28px; text-transform: uppercase;
}
.address-block .sub { color: var(--ink-dim); }
.map-frame {
  position: relative; overflow: hidden; border-radius: var(--radius-sm); border: 1px solid var(--line);
  margin-top: 12px;
  aspect-ratio: 16/9;
  background: var(--bg-elev-2);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3) invert(0.92) hue-rotate(180deg) contrast(0.9) brightness(0.95); }

/* ===== Coffee ===== */
.coffee {
  position: relative;
  background: linear-gradient(180deg, #0c0a08 0%, #0a0a0b 100%);
  overflow: hidden;
}
.coffee-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.coffee-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(80% 80% at 50% 30%, rgba(241,90,36,0.22), transparent 65%),
    linear-gradient(180deg, #1a120b, #0a0a0b);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
}
.coffee-visual img {
  max-width: 70%; max-height: 70%; object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(241,90,36,0.35));
}
.coffee-visual::before, .coffee-visual::after {
  content: "ORION'S · COFFEE · PROTEÍNA · ENERGÍA · ";
  position: absolute; left: 0; right: 0;
  font-family: "Anton", sans-serif;
  font-size: 24px; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.06);
  white-space: nowrap;
}
.coffee-visual::before { top: 20px; }
.coffee-visual::after { bottom: 20px; }
.coffee-copy h2 {
  font-size: clamp(40px, 6vw, 78px);
  margin: 12px 0 20px;
}
.coffee-copy h2 .accent { color: var(--orange); }
.coffee-copy p { color: var(--ink-dim); font-size: 16.5px; line-height: 1.65; max-width: 50ch; }
.coffee-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
  margin-top: 24px;
}
.coffee-menu .item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  background: var(--bg-elev); border: 1px solid var(--line);
  border-radius: 12px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14.5px;
  text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600;
}
.coffee-menu .item .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--orange);
  flex: 0 0 auto;
}

/* ===== Gallery ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 12px;
  margin-top: 48px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: var(--bg-elev-2);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55));
  opacity: 0; transition: opacity .3s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .tag {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase; letter-spacing: 0.18em; font-size: 11px;
  color: #fff;
  opacity: 0; transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
}
.gallery-item:hover .tag { opacity: 1; transform: translateY(0); }

.gallery .g-1 { grid-column: span 3; grid-row: span 2; }
.gallery .g-2 { grid-column: span 3; grid-row: span 1; }
.gallery .g-3 { grid-column: span 2; grid-row: span 1; }
.gallery .g-4 { grid-column: span 1; grid-row: span 1; }
.gallery .g-5 { grid-column: span 2; grid-row: span 2; }
.gallery .g-6 { grid-column: span 2; grid-row: span 1; }
.gallery .g-7 { grid-column: span 2; grid-row: span 1; }

.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  animation: fade .2s ease;
}
.lightbox[hidden] { display: none; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.lightbox img { max-width: 100%; max-height: 100%; border-radius: 12px; }
.lightbox .close {
  position: absolute; top: 24px; right: 24px;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}
.lightbox .nav-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.lightbox .nav-btn.prev { left: 24px; }
.lightbox .nav-btn.next { right: 24px; }

/* ===== Reviews ===== */
.reviews-head {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 32px; flex-wrap: wrap;
}
.reviews-head .google-mark {
  width: 56px; height: 56px; border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
}
.reviews-head .score {
  font-family: "Anton", sans-serif;
  font-size: 56px; line-height: 1; color: var(--ink);
}
.reviews-head .stars { color: #fbbc05; display: flex; gap: 2px; font-size: 22px; }
.reviews-head .meta {
  display: flex; flex-direction: column;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase; letter-spacing: 0.1em; font-size: 13px; color: var(--ink-dim);
}
.reviews-head .meta strong { color: var(--ink); font-family: "Manrope"; font-weight: 800; text-transform: none; letter-spacing: 0; font-size: 16px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}
.review-card {
  background: var(--bg-elev); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.review-card .stars { color: #fbbc05; font-size: 16px; letter-spacing: 1px; }
.review-card .body {
  color: var(--ink); font-size: 15.5px; line-height: 1.6;
}
.review-card .body::before { content: "“"; color: var(--orange); font-size: 36px; line-height: 0; margin-right: 4px; vertical-align: -10px; font-family: serif; }
.review-card .author {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto;
  padding-top: 14px; border-top: 1px dashed var(--line);
}
.review-card .avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--orange); color: #fff;
  font-family: "Anton", sans-serif; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
}
.review-card .name { font-weight: 700; font-size: 14px; }
.review-card .when { font-size: 12px; color: var(--ink-mute); }

/* ===== FAQ ===== */
.faq-grid {
  display: grid; gap: 12px;
  max-width: 900px; margin-inline: auto;
  margin-top: 40px;
}
.faq-item {
  background: var(--bg-elev); border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-item.open { border-color: var(--orange); }
.faq-q {
  width: 100%; text-align: left;
  background: transparent; border: none; color: var(--ink);
  padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  font-size: 18px;
}
.faq-q .plus {
  flex: 0 0 auto;
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  transition: transform .3s ease, background .2s ease;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); background: rgba(241,90,36,0.15); border-color: var(--orange); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a-inner {
  padding: 0 24px 22px;
  color: var(--ink-dim); line-height: 1.65;
}
.faq-item.open .faq-a { max-height: 400px; }

/* ===== Footer ===== */
.footer {
  background: #07070a;
  border-top: 1px solid var(--line);
  padding-block: 60px 30px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer h4 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase; letter-spacing: 0.16em;
  font-size: 13px; color: var(--ink-dim); margin: 0 0 18px;
}
.footer a, .footer p {
  color: var(--ink); font-size: 14.5px;
  display: block; padding: 4px 0;
  margin: 0;
}
.footer a:hover { color: var(--orange); }
.footer .logo-block {
  display: flex; flex-direction: column; gap: 16px;
}
.footer .logo-block img.footer-logo { height: 96px; width: 96px; object-fit: contain; align-self: flex-start; image-rendering: -webkit-optimize-contrast; }
.footer .logo-block img { height: 60px; width: auto; }
.footer .logo-block p { color: var(--ink-dim); font-size: 14px; line-height: 1.55; max-width: 36ch; padding: 0; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; flex-wrap: wrap;
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--ink-mute); font-size: 13px;
}
.footer .socials { display: flex; gap: 10px; }
.footer .socials a {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-elev); border: 1px solid var(--line);
  padding: 0;
}
.footer .socials a:hover { background: var(--orange); border-color: var(--orange); }
.footer .socials a:hover svg { color: #fff; }

/* WhatsApp floating */
.whats-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 80;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--green-go); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 16px 40px -10px rgba(43,182,115,0.5);
  border: none;
  transition: transform .2s ease;
}
.whats-float:hover { transform: scale(1.08); }
.whats-float::before {
  content: "";
  position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid rgba(43,182,115,0.35);
  animation: ping 2s ease-out infinite;
}
@keyframes ping {
  0% { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* Responsive */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .coffee-grid, .trial-inner, .info-grid { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
  .gallery { grid-template-columns: repeat(4,1fr); grid-auto-rows: 150px; }
  .gallery .g-1 { grid-column: span 4; grid-row: span 2; }
  .gallery .g-2 { grid-column: span 4; }
  .gallery .g-3, .gallery .g-5, .gallery .g-6, .gallery .g-7 { grid-column: span 2; }
  .gallery .g-4 { grid-column: span 2; }
}
@media (max-width: 720px) {
  .nav-menu {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(10,10,11,0.98);
    border-top: 1px solid var(--line);
    padding: 12px var(--pad) 20px;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav-menu a::after { display: none; }
  .menu-toggle { display: flex; align-items: center; justify-content: center; }
  .nav-cta .btn span.label { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2,1fr); grid-auto-rows: 140px; }
  .gallery .g-1 { grid-column: span 2; grid-row: span 2; }
  .gallery .g-2, .gallery .g-3, .gallery .g-4, .gallery .g-5, .gallery .g-6, .gallery .g-7 { grid-column: span 2; grid-row: span 1; }
  .hero-title { font-size: clamp(56px, 14vw, 90px); }
  .nav-logo-text .sub { display: none; }
  .hero-bg {
    background-image:
      linear-gradient(180deg, rgba(10,10,11,0.55) 0%, rgba(10,10,11,0.45) 30%, rgba(10,10,11,0.7) 65%, rgba(10,10,11,0.98) 100%),
      url("assets/cable-machine.jpg");
  }
  .hero-sub {
    color: var(--ink);
    background: rgba(10,10,11,0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.06);
    font-size: 15.5px;
  }
}
