/* ===========================================================
   Stray Cuts — Estilo rockabilly negro/rojo
   =========================================================== */
:root {
  --bg: #0e0e0f;
  --card: #18181b;
  --fg: #f4f4f5;
  --muted: #a1a1aa;
  --primary: #e61e26;
  --primary-dark: #b71419;
  --border: #2a2a2e;
  --shadow: 8px 8px 0 #000;
  --display: "Anton", "Arial Narrow", Impact, sans-serif;
  --body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
strong { color: var(--fg); }
.text-primary { color: var(--primary); }
.muted { color: var(--muted); }
.small { font-size: .78rem; }
.upper { text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }
.center { text-align: center; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 1.25rem; }
.narrow { max-width: 820px; }

/* ---- Botones ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--display); letter-spacing: .04em; font-size: 1.05rem;
  padding: .7rem 1.4rem; border: 2px solid var(--fg);
  cursor: pointer; transition: transform .15s ease, background .15s ease, color .15s ease;
  text-transform: uppercase;
}
.btn:active { transform: translateY(2px); }
.btn-primary { background: var(--primary); color: #fff; border-color: #000; box-shadow: 4px 4px 0 #000; }
.btn-primary:hover { background: var(--primary-dark); transform: translate(-1px,-1px); box-shadow: 5px 5px 0 #000; }
.btn-outline { background: transparent; color: var(--fg); border-color: var(--fg); }
.btn-outline:hover { background: var(--fg); color: var(--bg); }
.btn-block { width: 100%; }

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(14,14,15,.95); backdrop-filter: blur(8px);
  border-bottom: 4px solid var(--primary);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: .7rem 1.25rem; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .75rem; }
.brand-logo { width: 48px; height: 48px; object-fit: cover; border: 1px solid var(--primary); transition: transform .2s; }
.brand:hover .brand-logo { transform: rotate(6deg); }
.brand-text { display: flex; flex-direction: column; }
.brand-name { font-family: var(--display); font-size: 1.7rem; letter-spacing: .06em; color: var(--primary); line-height: 1; }
.brand-sub { font-size: .6rem; text-transform: uppercase; letter-spacing: .18em; color: var(--muted); font-weight: 600; }
.nav-desktop { display: flex; gap: 2rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: .82rem; }
.nav-desktop a:hover { color: var(--primary); }
.nav-cta { font-size: .85rem; padding: .5rem 1rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .4rem; }
.nav-toggle span { width: 26px; height: 3px; background: var(--fg); transition: .3s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-mobile { display: none; flex-direction: column; gap: .25rem; padding: 1rem 1.25rem; border-top: 2px solid var(--primary); background: var(--bg); text-align: center; }
.nav-mobile a { padding: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; border-bottom: 1px solid var(--border); }
.nav-mobile a:hover { color: var(--primary); }
.nav-mobile.is-open { display: flex; }

/* ---- Badges / dividers ---- */
.badge { display: inline-block; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; padding: .3rem .8rem; border: 1px solid var(--fg); }
.badge-primary { background: var(--primary); color: #fff; }
.divider-checker {
  height: 30px; border-top: 4px solid var(--primary); border-bottom: 4px solid var(--primary);
  background-image: repeating-conic-gradient(#000 0 25%, #1c1c1c 0 50%); background-size: 30px 30px;
}

/* ---- Hero ---- */
.hero { position: relative; min-height: 86vh; display: flex; align-items: center; padding: 4rem 0; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .28; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--bg) 5%, rgba(14,14,15,.8) 50%, rgba(230,30,38,.15)); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.3fr 1fr; gap: 2.5rem; align-items: center; }
.hero-copy { display: flex; flex-direction: column; gap: 1.25rem; }
.hero-title { font-family: var(--display); font-size: clamp(2.8rem, 8vw, 6rem); line-height: .92; letter-spacing: .02em; }
.hero-lead { font-size: 1.1rem; color: var(--muted); max-width: 36rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: .5rem; }
.hero-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); max-width: 32rem; }
.stat-num { display: block; font-family: var(--display); font-size: 1.7rem; color: var(--primary); }
.stat-label { font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 600; }
.stat-divider { border-left: 1px solid var(--border); border-right: 1px solid var(--border); padding: 0 .75rem; }
.hero-card-wrap { position: relative; display: flex; justify-content: center; }
.hero-card { max-width: 380px; padding: .5rem; background: var(--card); border: 4px solid var(--primary); box-shadow: 10px 10px 0 rgba(230,30,38,.3); transform: rotate(2deg); transition: transform .3s; }
.hero-card:hover { transform: rotate(0); }
.hero-card img { border: 2px solid var(--fg); }
.hero-card-tag { position: absolute; bottom: -14px; right: -10px; background: var(--fg); color: var(--bg); font-family: var(--display); font-size: 1rem; padding: .25rem 1rem; border: 2px solid var(--primary); transform: rotate(-3deg); }

/* ---- Secciones ---- */
.section { padding: 5rem 0; }
.section-card { background: var(--card); }
.section-bordered { border-top: 4px solid var(--primary); }
.section-head { max-width: 46rem; margin: 0 auto 3rem; display: flex; flex-direction: column; gap: .75rem; }
.eyebrow { color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: .18em; font-size: .8rem; }
.h2 { font-family: var(--display); font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.05; letter-spacing: .01em; }
.lead { font-size: 1.08rem; }
.note { margin-top: 3rem; }
.stack { display: flex; flex-direction: column; gap: 1.25rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }

/* ---- Marcos de imagen ---- */
.media-frame { position: relative; border: 4px solid var(--primary); overflow: hidden; box-shadow: var(--shadow); }
.media-frame img { width: 100%; height: 440px; object-fit: cover; transition: transform .5s; }
.media-frame.thin { box-shadow: none; border-color: var(--fg); }
.media-frame.thin img { height: auto; }
.media-frame:hover img { transform: scale(1.05); }
.media-badge { position: absolute; background: var(--primary); color: #fff; font-family: var(--display); font-size: 1.2rem; padding: .35rem 1rem; border: 2px solid var(--fg); box-shadow: 0 3px 8px rgba(0,0,0,.4); z-index: 2; }
.media-badge-tl { top: 16px; left: 16px; }
.media-badge-tr { top: -14px; right: -14px; }
.products-media { position: relative; }
.products-media .media-frame img { height: auto; }

/* ---- Features ---- */
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: .5rem; }
.feature { display: flex; gap: 1rem; }
.feature-ico { flex-shrink: 0; width: 46px; height: 46px; display: grid; place-items: center; background: rgba(230,30,38,.1); border: 1px solid var(--primary); color: var(--primary); font-size: 1.2rem; }
.feature h3 { font-family: var(--display); font-size: 1.15rem; margin-bottom: .15rem; font-weight: 400; letter-spacing: .02em; }
.feature p { font-size: .85rem; color: var(--muted); }
.quote { border-left: 4px solid var(--primary); padding: .75rem 1rem; background: rgba(0,0,0,.25); font-style: italic; color: var(--muted); margin-top: .5rem; }
.quote cite { display: block; font-style: normal; font-weight: 700; color: var(--fg); margin-top: .5rem; font-size: .85rem; }

/* ---- Servicios ---- */
.filters { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; margin-top: 1rem; }
.filter { padding: .5rem 1rem; font-weight: 700; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; background: var(--card); border: 2px solid var(--border); color: var(--muted); cursor: pointer; transition: .2s; }
.filter:hover { border-color: var(--primary); color: var(--fg); }
.filter.is-active { background: var(--primary); border-color: var(--primary); color: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.service-card { background: var(--card); border: 2px solid var(--border); padding: 1.5rem; display: flex; flex-direction: column; gap: .75rem; transition: border-color .2s, transform .2s; position: relative; }
.service-card:hover { border-color: var(--primary); transform: translateY(-3px); }
.service-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.service-card h3 { font-family: var(--display); font-size: 1.3rem; font-weight: 400; letter-spacing: .02em; line-height: 1.1; }
.service-price { flex-shrink: 0; background: var(--primary); color: #fff; font-weight: 700; font-size: .75rem; padding: .25rem .6rem; white-space: nowrap; }
.service-card p { font-size: .9rem; color: var(--muted); }
.service-meta { display: flex; gap: 1rem; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-top: auto; padding-top: .5rem; border-top: 1px dashed var(--border); }
.service-cat { color: var(--primary); font-weight: 700; }

/* ---- Lista checks / callout ---- */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.check-list li { display: flex; gap: .75rem; align-items: flex-start; }
.check { flex-shrink: 0; margin-top: 2px; background: var(--primary); color: #fff; width: 22px; height: 22px; display: grid; place-items: center; border: 1px solid #000; font-size: .8rem; }
.check-list strong { display: block; }
.check-list span { font-size: .85rem; color: var(--muted); }
.callout { margin-top: .5rem; padding: 1rem; background: var(--bg); border: 1px solid var(--primary); font-size: .9rem; font-weight: 500; }
.order-1 { order: 1; } .order-2 { order: 2; }

/* ---- Reservar ---- */
.reserve-card { position: relative; border: 4px solid var(--primary); background: var(--card); padding: 2.5rem; box-shadow: var(--shadow); }
.reserve-tag { position: absolute; top: -14px; right: 18px; background: var(--primary); color: #fff; font-family: var(--display); padding: .2rem .9rem; border: 2px solid var(--fg); transform: rotate(3deg); font-size: .9rem; }
.form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form label { display: flex; flex-direction: column; gap: .4rem; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.form input, .form select, .form textarea { font-family: var(--body); font-size: .95rem; background: var(--bg); border: 2px solid var(--border); padding: .7rem; color: var(--fg); }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--primary); }
.form-foot { text-align: center; font-size: .75rem; text-transform: none; letter-spacing: 0; font-weight: 400; }

/* ---- Contacto ---- */
.info-block { display: flex; gap: 1rem; }
.info-ico { flex-shrink: 0; width: 46px; height: 46px; display: grid; place-items: center; background: rgba(230,30,38,.1); border: 1px solid var(--primary); font-size: 1.2rem; }
.info-block h3 { font-family: var(--display); font-size: 1.15rem; font-weight: 400; letter-spacing: .02em; margin-bottom: .15rem; }
.link:hover { color: var(--primary); }
.link-strong { color: var(--fg); font-weight: 700; }
.link-strong:hover { color: var(--primary); }
.socials { display: flex; flex-direction: column; gap: .6rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.social-row { display: flex; gap: .75rem; }
.social-row a { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--fg); font-size: 1.1rem; transition: .2s; }
.social-row a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.map-frame { border: 4px solid var(--primary); height: 440px; box-shadow: var(--shadow); }
.map-frame iframe { filter: grayscale(1) invert(.92) contrast(1.15); }
.map-foot { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }

/* ---- Footer ---- */
.site-footer { border-top: 4px solid var(--primary); padding: 3rem 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-brand img { width: 60px; height: 60px; object-fit: cover; border: 2px solid var(--primary); }
.footer-brand h3 { font-family: var(--display); font-size: 1.5rem; color: var(--primary); font-weight: 400; }
.footer-copy { text-align: right; }

/* ---- WhatsApp flotante ---- */
.wa-float { position: fixed; bottom: 22px; right: 22px; z-index: 60; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; font-size: 1.6rem; box-shadow: 0 6px 18px rgba(0,0,0,.4); transition: transform .2s; }
.wa-float:hover { transform: scale(1.08); }

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .nav-desktop, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid, .grid-2, .form-row, .feature-grid, .services-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 3rem 0; }
  .hero-card-wrap { margin-top: 1rem; }
  .order-1, .order-2 { order: 0; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-copy { text-align: center; }
  .media-badge-tr { right: 8px; }
}
