/* Komandero 3D — teaser UV / pines / láser */
:root {
  --bg: #f4f2f0;
  --surface: #ffffff;
  --primary: #ff634c;
  --text: #1a1a1a;
  --muted: #6b6b6b;
  --border: #e2ded9;
  --ph: #e8e4df;
  --ph-line: #d4cfc8;
  --max: 52rem;
  --font: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.container--wide {
  width: min(100% - 2rem, 48rem);
}

.eyebrow {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
}

.lead {
  margin: 0.85rem 0 0;
  max-width: 42ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.lead--tight {
  max-width: 48ch;
  font-size: 0.95rem;
}

/* —— Nav —— */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: blur(10px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.4rem;
}

.nav__logo {
  width: 3.5rem;
}

.nav__cta {
  padding: 0.5rem 1rem;
  border-radius: 0.6rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
}

.nav__cta:active {
  transform: scale(0.98);
}

/* —— Hero —— */
.hero {
  padding: 2.75rem 0 2.25rem;
  background:
    radial-gradient(ellipse 70% 80% at 0% 0%, rgb(255 99 76 / 14%), transparent 55%),
    linear-gradient(180deg, var(--surface), var(--bg));
}

.hero h1 {
  margin: 0.6rem 0 0;
  font-size: clamp(1.85rem, 5vw, 2.45rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.12;
  max-width: 18ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

/* —— Menu shot + credits —— */
.menu-shot {
  display: block;
  margin-top: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 12px 32px rgb(26 26 26 / 8%);
  overflow: hidden;
  transition: box-shadow 0.25s var(--ease), transform 0.2s var(--ease);
}

.menu-shot:hover {
  box-shadow: 0 16px 40px rgb(26 26 26 / 12%);
  transform: translateY(-1px);
}

.menu-shot img {
  width: 100%;
  height: auto;
}

.credits {
  display: grid;
  gap: 1.15rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.credit p:not(.eyebrow) {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 36ch;
}

.credit a {
  color: var(--text);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  text-decoration-color: color-mix(in srgb, var(--primary) 55%, transparent);
}

.credit a:hover {
  color: var(--primary);
}

@media (min-width: 640px) {
  .credits {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.25rem;
  border-radius: 0.6rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  transition: filter 0.2s var(--ease), transform 0.15s var(--ease),
    background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--primary);
  color: #fff;
}

.btn--primary:hover {
  filter: brightness(1.06);
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.8125rem;
}

.btn--ghost:hover {
  border-color: color-mix(in srgb, var(--primary) 40%, var(--border));
  color: var(--primary);
}

.btn--on-primary {
  background: #fff;
  color: #000;
}

.btn--on-primary:hover,
.btn--on-primary:focus,
.btn--on-primary:visited,
.btn--on-primary:active {
  color: #000;
}

.btn--on-primary-ghost {
  background: transparent;
  border: 1px solid rgb(255 255 255 / 45%);
  color: #fff;
}

/* —— Sections —— */
.section {
  padding: 2.5rem 0;
}

.section--alt {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.section h2 {
  margin: 0.4rem 0 0;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

/* —— Services —— */
.services {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.service {
  padding: 1.15rem 1.2rem;
  border-radius: 0.85rem;
  background: var(--surface);
  border: 1px solid var(--border);
}

.section--alt .service {
  background: var(--bg);
}

.service__tag {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

.service h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 650;
}

.service p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (min-width: 720px) {
  .services {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* —— Media / placeholders —— */
.shot {
  margin-top: 1.25rem;
}

.ph {
  position: relative;
  aspect-ratio: 1;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--ph) 0%, var(--ph-line) 100%);
  border: 1px dashed color-mix(in srgb, var(--muted) 35%, transparent);
  overflow: hidden;
}

.ph--wide {
  aspect-ratio: 16 / 9;
}

.case__media .ph--wide {
  margin-top: 0.85rem;
}

.ph::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 0.5rem;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.ph:has(img)::after {
  display: none;
}

.ph img,
.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

/* —— Cases —— */
.cases {
  margin-top: 1.35rem;
  border-top: 1px solid var(--border);
}

.case {
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--border);
}

.case h3 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 650;
}

.case p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 52ch;
}

/* —— CTA band —— */
.cta-band {
  background: var(--primary);
  color: #fff;
  padding: 2rem 0;
}

.cta-band__inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cta-band h2 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.cta-band p {
  margin: 0.35rem 0 0;
  color: rgb(255 255 255 / 88%);
  font-size: 0.95rem;
}

.cta-band a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  text-decoration-color: rgb(255 255 255 / 55%);
}

.cta-band a:hover {
  text-decoration-color: #fff;
}

.cta-band .btn {
  text-decoration: none;
}

.cta-band .btn--on-primary,
.cta-band .btn--on-primary:hover,
.cta-band .btn--on-primary:focus,
.cta-band .btn--on-primary:visited,
.cta-band .btn--on-primary:active {
  color: #000;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

@media (min-width: 720px) {
  .cta-band__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* —— Footer —— */
.footer {
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer__inner p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted);
}

.footer a {
  color: var(--text);
  font-weight: 600;
}
