:root {
  --bg: #050605;
  --bg-soft: #080d08;
  --panel: rgba(10, 18, 10, 0.88);
  --panel-strong: rgba(14, 24, 14, 0.96);
  --line: rgba(71, 142, 71, 0.18);
  --line-strong: rgba(71, 142, 71, 0.42);
  --text: #f1f1ea;
  --muted: #b8bcaa;
  --olive: #1D481D;
  --olive-bright: #478E47;
  --olive-deep: #1D481D;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 120px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(29, 72, 29, 0.20), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(71, 142, 71, 0.08), transparent 22%),
    linear-gradient(180deg, #060906 0%, #050605 52%, #080d08 100%);
}

.cursor-glow,
.cursor-dot {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: 30;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 180ms ease;
}

.cursor-glow {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(71, 142, 71, 0.28) 0%, rgba(29, 72, 29, 0.12) 34%, rgba(0, 0, 0, 0) 72%);
  mix-blend-mode: screen;
  filter: blur(10px);
}

.cursor-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(71, 142, 71, 0.8);
  box-shadow:
    0 0 0 5px rgba(71, 142, 71, 0.18),
    0 0 26px rgba(71, 142, 71, 0.28);
  background: rgba(71, 142, 71, 0.2);
}

body.cursor-active .cursor-glow,
body.cursor-active .cursor-dot {
  opacity: 1;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 92%);
}

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

.page-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 48px;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 12px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  backdrop-filter: blur(16px);
  background: rgba(4, 7, 4, 0.74);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: auto;
  height: 56px;
  max-width: min(320px, 40vw);
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.header-phone:hover,
.header-phone:focus-visible,
.header-cta:hover,
.button:hover,
.button:focus-visible {
  color: var(--text);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.header-cta {
  border: 1px solid var(--line-strong);
  background: rgba(71, 142, 71, 0.08);
}

.header-phone {
  color: var(--olive-bright);
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
  transition: color 180ms ease;
}

.section {
  padding: 88px 0 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(560px, 1.18fr);
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 140px);
}

.hero-copy {
  max-width: 560px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--olive-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: "Syne", sans-serif;
}

h1 {
  max-width: 8.5ch;
  font-size: clamp(2.7rem, 5.2vw, 4.9rem);
  line-height: 0.94;
}

h2 {
  max-width: 12ch;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1;
}

.hero-text,
.section-heading + *,
.split-card p,
.workflow-step p,
.cta-copy p:last-child,
.service-card p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 48ch;
  margin: 18px 0 0;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
}

.button-primary {
  color: #050f05;
  background: linear-gradient(135deg, var(--olive-bright), #5aaa5a);
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.02);
}

.button:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 0;
}

.hero-metrics div,
.service-card,
.split-card,
.availability-card,
.workflow-step,
.cta-section {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  box-shadow: var(--shadow);
}

.hero-metrics div {
  padding: 18px;
  border-radius: 18px;
}

.hero-metrics dt {
  font-family: "Syne", sans-serif;
  font-size: 1.55rem;
  color: var(--olive-bright);
}

.hero-metrics dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-video,
.studio-photo-frame,
.services-video-frame {
  border-radius: 24px;
}

.hero-video {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(71, 142, 71, 0.12), transparent 50%),
    rgba(6, 11, 6, 0.92);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 760px;
  justify-self: end;
}

.hero-video video,
.services-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  pointer-events: none;
}

.hero-video video {
  object-fit: cover;
}

.clients-band {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
  padding: 18px 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
}

.clients-band p {
  margin: 0;
  text-align: center;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  align-items: end;
  gap: 24px;
  margin-bottom: 26px;
}

.heading-copy {
  min-width: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.split-card,
.availability-card,
.workflow-step,
.cta-section {
  border-radius: 24px;
}

.service-card {
  position: relative;
  min-height: 250px;
  padding: 22px;
  overflow: hidden;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto -10% -45% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(71, 142, 71, 0.22), rgba(71, 142, 71, 0));
  opacity: 0;
  transform: translate3d(0, 22px, 0) scale(0.82);
  transition: opacity 220ms ease, transform 260ms ease;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(71, 142, 71, 0.5);
  background:
    linear-gradient(180deg, rgba(71, 142, 71, 0.08), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(71, 142, 71, 0.06);
}

.service-card:hover::before,
.service-card:focus-within::before {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.service-card:hover h3,
.service-card:focus-within h3 {
  color: #f7f7f0;
}

.service-card:hover .service-index,
.service-card:focus-within .service-index {
  color: #5aaa5a;
}

.service-card h3 {
  margin-top: 18px;
  font-size: 1.3rem;
}

.service-index {
  color: var(--olive-bright);
  font-size: 0.88rem;
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.split-card,
.availability-card {
  padding: 28px;
}

.packages-intro h3 {
  margin-top: 8px;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  line-height: 1.12;
  max-width: 14ch;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.012)),
    rgba(8, 12, 8, 0.94);
  box-shadow: var(--shadow);
}

.package-card-featured {
  background:
    linear-gradient(180deg, rgba(29, 72, 29, 0.20), rgba(29, 72, 29, 0.08)),
    rgba(10, 16, 10, 0.98);
  border-color: rgba(71, 142, 71, 0.48);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(71, 142, 71, 0.08);
}

.package-head {
  display: grid;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 180px;
  align-content: start;
}

.package-tier {
  display: inline-block;
  color: var(--olive-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.package-title {
  margin-top: 10px;
  max-width: 100%;
  font-family: "Syne", sans-serif;
  font-size: 1.28rem;
  line-height: 1.12;
  min-height: 2.9rem;
}

.package-price {
  display: grid;
  align-content: start;
  gap: 2px;
  margin: 0;
}

.package-currency {
  color: rgba(241, 241, 234, 0.7);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.package-price strong {
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 2.4vw, 2.45rem);
  font-weight: 700;
  line-height: 0.9;
  color: #f4f3ec;
}

.package-unit {
  color: var(--muted);
  font-size: 0.84rem;
}

.package-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  flex: 1;
}

.package-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.package-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--olive-bright);
  box-shadow: 0 0 12px rgba(71, 142, 71, 0.35);
}

.package-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 28px;
  padding: 0 18px;
  border: 1px solid rgba(71, 142, 71, 0.4);
  border-radius: 12px;
  color: var(--text);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  width: 100%;
  background: rgba(71, 142, 71, 0.08);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.package-button:hover,
.package-button:focus-visible {
  transform: translateY(-1px);
  background: rgba(71, 142, 71, 0.14);
  border-color: rgba(71, 142, 71, 0.6);
}

.package-button-solid {
  background: linear-gradient(135deg, var(--olive-bright), #5aaa5a);
  border-color: transparent;
  color: #050f05;
}

.package-button-solid:hover,
.package-button-solid:focus-visible {
  background: linear-gradient(135deg, #5aaa5a, #6dbb6d);
  color: #030a03;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.studio-photo-frame {
  margin-top: 24px;
  overflow: hidden;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(71, 142, 71, 0.08), transparent 55%),
    rgba(5, 9, 5, 0.9);
}

.studio-photo-frame img {
  display: block;
  width: 100%;
  min-height: 260px;
  max-height: 360px;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--olive-bright);
  box-shadow: 0 0 18px rgba(71, 142, 71, 0.45);
}

.availability-screen {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(71, 142, 71, 0.16), transparent 45%),
    rgba(4, 7, 4, 0.9);
}

.screen-bar {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(71, 142, 71, 0.94), rgba(29, 72, 29, 0.94));
}

.screen-copy {
  display: grid;
  gap: 8px;
}

.screen-copy span,
.availability-grid span,
.workflow-step span {
  color: var(--olive-bright);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.screen-copy strong,
.availability-grid strong {
  font-size: 1.08rem;
}

.availability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.availability-grid div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.workflow-step {
  min-height: 240px;
  padding: 24px;
}

.workflow-step h3 {
  margin-top: 20px;
  font-size: 1.34rem;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 32px;
  margin-bottom: 40px;
  background:
    linear-gradient(135deg, rgba(29, 72, 29, 0.20), transparent 42%),
    rgba(6, 11, 6, 0.92);
}

.cta-copy h2 {
  max-width: 12ch;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.office-details {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.office-details p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.office-details strong {
  color: var(--text);
  margin-right: 8px;
}

.phone-link {
  color: var(--olive-bright);
  font-weight: 800;
  white-space: nowrap;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-delay {
  transition-delay: 140ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 18px 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.36),
    0 0 0 7px rgba(37, 211, 102, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.42),
    0 0 0 8px rgba(37, 211, 102, 0.16);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  fill: currentColor;
}

@media (max-width: 1040px) {
  .hero,
  .split-section,
  .workflow-grid,
  .services-grid,
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 24px;
    min-height: auto;
    padding-top: 40px;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

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

  .cta-section {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .cursor-glow,
  .cursor-dot {
    display: none;
  }

  .page-shell {
    width: min(100% - 20px, 1200px);
  }

  .site-header {
    position: static;
    flex-wrap: wrap;
    justify-content: center;
  }

  .brand-logo {
    height: 48px;
    max-width: min(280px, 70vw);
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .header-phone {
    order: 2;
    width: 100%;
    text-align: center;
  }

  .section {
    padding-top: 68px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.5rem, 15vw, 4.2rem);
  }

  h2,
  .cta-copy h2 {
    max-width: 100%;
  }

  .hero-actions,
  .hero-metrics,
  .availability-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .hero-actions {
    display: grid;
  }

  .hero-metrics {
    display: grid;
  }

  .hero-video {
    max-width: 100%;
    justify-self: stretch;
  }

  .packages-grid {
    gap: 14px;
  }

  .package-card {
    padding: 22px 20px;
  }

  .package-title {
    font-size: 1.08rem;
    min-height: auto;
  }

  .package-price strong {
    font-size: 2rem;
  }

  .clients-band {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-card,
  .split-card,
  .availability-card,
  .workflow-step,
  .cta-section {
    border-radius: 20px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    min-height: 52px;
    padding: 0;
    width: 52px;
    justify-content: center;
  }

  .whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }
}
