:root {
  --bg: #070707;
  --panel: #111111;
  --panel-2: #181818;
  --text: #f7f7f7;
  --muted: #b8b8b8;
  --line: rgba(255, 255, 255, 0.12);
  --red: #f4112f;
  --red-dark: #9b071a;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(7, 7, 7, 0.7);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header[data-elevated="true"] {
  background: rgba(7, 7, 7, 0.94);
  border-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #dedede;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav-cta {
  padding: 0 18px;
  background: var(--red);
  box-shadow: 0 10px 30px rgba(244, 17, 47, 0.28);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 140px clamp(18px, 5vw, 72px) 44px;
}

.hero-media,
.hero-media img,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.9) 0%, rgba(7, 7, 7, 0.58) 42%, rgba(7, 7, 7, 0.08) 100%),
    linear-gradient(0deg, rgba(7, 7, 7, 0.95) 0%, transparent 52%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(46px, 9vw, 106px);
  line-height: 0.9;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-copy {
  width: min(620px, 100%);
  color: #e7e7e7;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  padding: 0 22px;
  border: 1px solid var(--line);
}

.button.primary {
  border-color: var(--red);
  background: var(--red);
  color: white;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.hero-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin-top: 70px;
  border: 1px solid var(--line);
  background: var(--line);
}

.hero-panel div {
  min-height: 112px;
  padding: 22px;
  background: rgba(12, 12, 12, 0.76);
}

.hero-panel strong {
  display: block;
  font-size: 22px;
  font-weight: 900;
}

.hero-panel span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.45;
}

.section {
  padding: 104px clamp(18px, 5vw, 72px);
  scroll-margin-top: 96px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.8fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: end;
  border-top: 1px solid var(--line);
}

.section-heading h2,
.feature-band h2,
.visit h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 0.98;
  font-weight: 900;
  text-transform: uppercase;
}

.intro > p,
.visit-copy p {
  color: #d4d4d4;
  font-size: 18px;
  line-height: 1.75;
}

.services {
  background: #0c0c0c;
}

.service-grid,
.process-grid,
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.service-grid article,
.process-grid article,
.package-grid article {
  min-height: 234px;
  padding: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--panel), #0a0a0a);
  border-radius: 8px;
}

.service-grid span,
.package-grid span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-grid h3,
.process-grid h3,
.package-grid h3 {
  margin: 34px 0 12px;
  font-size: 24px;
  line-height: 1.1;
}

.service-grid p,
.process-grid p,
.package-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.packages {
  background:
    linear-gradient(135deg, rgba(244, 17, 47, 0.12), transparent 30%),
    #080808;
}

.package-grid article {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  justify-content: space-between;
}

.package-grid .featured-package {
  border-color: rgba(244, 17, 47, 0.55);
  background:
    linear-gradient(150deg, rgba(244, 17, 47, 0.22), transparent 48%),
    var(--panel);
  box-shadow: 0 24px 60px rgba(244, 17, 47, 0.16);
}

.package-grid a {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  margin-top: 24px;
  padding: 0 16px;
  border: 1px solid rgba(244, 17, 47, 0.5);
  border-radius: 8px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  padding: 92px clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(244, 17, 47, 0.15), transparent 35%),
    #090909;
}

.feature-band img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.transformation {
  background: #0b0b0b;
}

.comparison {
  position: relative;
  width: min(1100px, 100%);
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid rgba(244, 17, 47, 0.35);
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  background: #000;
}

.comparison img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-before {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.comparison-before img {
  filter: grayscale(0.55) brightness(0.58) contrast(0.92) blur(0.6px);
}

.comparison-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 2px;
  background: var(--white);
  box-shadow: 0 0 18px rgba(244, 17, 47, 0.95);
  transform: translateX(-50%);
}

.comparison-line::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--red);
  transform: translate(-50%, -50%);
}

.comparison-label {
  position: absolute;
  top: 18px;
  z-index: 2;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.62);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.before-label {
  left: 18px;
}

.after-label {
  right: 18px;
}

.comparison-slider {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 12px;
  margin-top: 42px;
}

.gallery-card {
  position: relative;
  min-height: 280px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  cursor: pointer;
}

.gallery-card.wide {
  grid-column: span 2;
}

.gallery-card.tall {
  grid-row: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.gallery-card:hover img {
  transform: scale(1.045);
  filter: brightness(1.08);
}

.process {
  background: #0f0f0f;
}

.social-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: stretch;
  padding: 92px clamp(18px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(244, 17, 47, 0.18), transparent 32%),
    #090909;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 96px;
}

.social-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 0.98;
  font-weight: 900;
  text-transform: uppercase;
}

.social-copy p {
  max-width: 640px;
  color: #d4d4d4;
  font-size: 18px;
  line-height: 1.75;
}

.social-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(244, 17, 47, 0.35);
  border-radius: 8px;
  background: var(--panel);
}

.motion-strip {
  position: absolute;
  inset: 0;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 72%;
  gap: 12px;
  width: max-content;
  padding: 12px;
  animation: reel-glide 24s linear infinite;
}

.motion-strip img {
  width: 100%;
  height: 100%;
  min-height: 396px;
  object-fit: cover;
  border-radius: 6px;
  filter: brightness(0.72) saturate(1.08);
}

.profile-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 28%, transparent 72%, rgba(0, 0, 0, 0.72)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.86), transparent 48%);
  pointer-events: none;
}

.profile-card div {
  position: absolute;
  inset: auto 0 0;
  padding: 24px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), transparent);
}

.social-card strong {
  display: block;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 900;
}

.social-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.55;
}

@keyframes reel-glide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.reels-section {
  background: #0d0d0d;
}

.reel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.reel-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.reel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.68) saturate(1.08);
  transition: transform 260ms ease, filter 260ms ease;
}

.reel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent 52%),
    radial-gradient(circle at 50% 42%, rgba(244, 17, 47, 0.28), transparent 26%);
}

.reel-card::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 62px;
  height: 62px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: rgba(244, 17, 47, 0.86);
  clip-path: polygon(38% 28%, 38% 72%, 74% 50%);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 34px rgba(244, 17, 47, 0.5);
}

.reel-card span {
  position: absolute;
  inset: auto 18px 18px;
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(244, 17, 47, 0.35);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.66);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.reel-card:hover img {
  transform: scale(1.045);
  filter: brightness(0.82) saturate(1.16);
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid article {
  min-height: 210px;
}

.process-grid h3 {
  margin-top: 0;
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(24px, 5vw, 70px);
  align-items: stretch;
  padding: 104px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(244, 17, 47, 0.2), transparent 34%),
    #070707;
  scroll-margin-top: 96px;
}

.visit-copy {
  max-width: 800px;
}

.visit-copy p {
  margin-top: 24px;
}

.visit-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 18px;
  min-height: 360px;
  padding: 28px;
  border: 1px solid rgba(244, 17, 47, 0.35);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(244, 17, 47, 0.26), transparent 48%),
    var(--panel);
}

.visit-card img {
  width: 98px;
  height: 98px;
  border-radius: 8px;
  object-fit: cover;
}

.visit-card strong {
  font-size: 26px;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
}

.visit-card span {
  color: var(--muted);
  line-height: 1.55;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #1bbf5b;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 18px 44px rgba(27, 191, 91, 0.28);
}

.mobile-contact-bar {
  position: fixed;
  inset: auto 0 0;
  z-index: 31;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  background: rgba(7, 7, 7, 0.95);
  backdrop-filter: blur(14px);
}

.mobile-contact-bar a {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mobile-contact-bar a:nth-child(2) {
  background: var(--red);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.88);
}

.lightbox[aria-hidden="false"] {
  display: grid;
}

.lightbox img {
  max-height: 86vh;
  width: min(980px, 100%);
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 20px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--white);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .intro,
  .feature-band,
  .social-band,
  .visit {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .process-grid,
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reel-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand small {
    display: none;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 12px;
  }

  .hero {
    min-height: 92vh;
    padding: 116px 16px 26px;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(7, 7, 7, 0.82), rgba(7, 7, 7, 0.24)),
      linear-gradient(0deg, rgba(7, 7, 7, 0.98) 0%, rgba(7, 7, 7, 0.25) 78%);
  }

  .hero-panel {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .hero-panel div {
    min-height: auto;
    padding: 18px;
  }

  .section,
  .feature-band,
  .visit {
    padding: 72px 16px;
  }

  .service-grid,
  .package-grid,
  .process-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .comparison {
    aspect-ratio: 4 / 5;
  }

  .gallery-card,
  .gallery-card.wide,
  .gallery-card.tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 360px;
  }

  .visit-card {
    min-height: 280px;
  }

  footer {
    padding: 24px 16px 84px;
  }

  .floating-whatsapp {
    display: none;
  }

  .mobile-contact-bar {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-strip {
    animation: none;
  }
}
