
@font-face {
  font-family: "Archivo";
  src: url("fonts/archivo-exp-800.woff2") format("woff2");
  font-weight: 800;
  font-stretch: 125%;
  font-display: swap;
}

@property --pos {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 50%;
}

@view-transition { navigation: auto; }

:root {
  --bg: #191713;              --bg-lift: #211d17;         --text: #f4f4f1;
  --text-soft: rgba(244, 244, 241, 0.72);
  --text-dim: rgba(244, 244, 241, 0.55);
  --gold: #cb983c;            --gold-soft: #dbad5c;       --line: #37332c;
  --display: "Archivo", "Arial Narrow", system-ui, sans-serif;
  --body: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
ul { list-style: none; }

::selection { background: var(--gold); color: var(--bg); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.container {
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}


h1, h2, h3 {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 125%;
  text-transform: uppercase;
  line-height: 0.98;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(1.6rem, 8vw, 3.9rem); }
@media (max-width: 719.98px) {
  .hero .eyebrow { display: none; }
}
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); max-width: 18ch; }
h3 { font-size: 1.2rem; line-height: 1.2; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--gold);
  flex: none;
}

.lede {
  max-width: 62ch;
  color: var(--text-soft);
  margin-top: 1.1rem;
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.15s, color 0.15s, border-color 0.15s;
}
.btn svg { flex: none; }

.btn-primary,
.btn-amber-bright { background: var(--gold); color: var(--bg); font-weight: 700; }
.btn-primary:hover,
.btn-amber-bright:hover { background: var(--gold-soft); }

.btn-ghost,
.btn-ghost-light { border-color: rgba(244, 244, 241, 0.55); color: var(--text); background: transparent; }
.btn-ghost:hover,
.btn-ghost-light:hover { background: var(--text); color: var(--bg); }

.link-plain {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(25, 23, 19, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 68px;
}

.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { height: 48px; width: auto; }

.site-nav { display: none; align-items: center; gap: 1.75rem; }
.site-nav a {
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}
.site-nav a:hover { color: var(--gold); }

.header-cta { display: none; }

@media (min-width: 860px) {
  .site-nav { display: flex; }
  .header-cta { display: inline-flex; padding: 0.55rem 1.1rem; font-size: 0.92rem; }
}


.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: calc(100vh - 69px);
  min-height: calc(100svh - 69px);
  isolation: isolate;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
    opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-bg.on { opacity: 1; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(78deg,
      rgba(25, 23, 19, 0.88) 0%,
      rgba(25, 23, 19, 0.6) 32%,
      rgba(25, 23, 19, 0.12) 60%,
      rgba(25, 23, 19, 0) 78%),
    linear-gradient(to top,
      var(--bg) 0%,
      rgba(25, 23, 19, 0.72) 6%,
      rgba(25, 23, 19, 0.45) 30%,
      rgba(25, 23, 19, 0.18) 100%);
}
.hero-inner {
  padding-top: clamp(3rem, 7vw, 5rem);
  padding-bottom: clamp(4.5rem, 20vh, 14rem);
  width: 100%;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55), 0 2px 24px rgba(0, 0, 0, 0.4);
}
.hero-inner .btn { text-shadow: none; }
.hero h1 { max-width: 22ch; text-wrap: balance; }
.hero p {
  max-width: 56ch;
  margin-top: 1.25rem;
  font-size: 1.2rem;
  color: rgba(244, 244, 241, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-top: 2rem;
}

.scroll-cue {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #fff;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.7));
}
.scroll-cue:hover { color: var(--gold-soft); }

.progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 55;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: 0 50%;
}


.section { padding-block: clamp(4rem, 9vw, 6.5rem); }
.section-dim { background: var(--bg-lift); }

.section-head { margin-bottom: clamp(2rem, 5vw, 3.25rem); }


.services {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (min-width: 720px) {
  .services { grid-template-columns: 1fr 1fr; }
}
.service {
  background: var(--bg-lift);
  padding: clamp(1.5rem, 3.5vw, 2.4rem);
}
.service h3 { margin-bottom: 0.9rem; }
.service ul { display: grid; gap: 0.45rem; }
.service li {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-size: 0.95rem;
}
.service li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--gold);
  flex: none;
  transform: translateY(-1px);
}


.ba {
  --pos: 50%;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg);
  touch-action: pan-y;
}
.ba img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba.demo {
  transition: --pos 1.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease, transform 0.6s ease;
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 2px;
  margin-left: -1px;
  background: #fff;
  pointer-events: none;
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.ba-tag {
  position: absolute;
  top: 0.9rem;
  padding: 0.3rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(15, 13, 10, 0.68);
  pointer-events: none;
}
.ba-tag-l { left: 0.9rem; }
.ba-tag-r { right: 0.9rem; }

.ba input[type="range"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  -webkit-appearance: none;
  appearance: none;
}
.ba:focus-within {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}


.carousel {
  --card-h: clamp(320px, 58vw, 440px);
  position: relative;
}

.car-track {
  position: relative;
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
}
.car-track::-webkit-scrollbar { display: none; }

.car-track figure {
  flex: 0 0 auto;
  scroll-snap-align: start;
}
.car-track .frame {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-lift);
}
.car-track img {
  height: var(--card-h);
  width: auto;
  max-width: 88vw;
  object-fit: cover;
}
.car-track figcaption {
  margin-top: 0.55rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.carousel::before,
.carousel::after {
  content: "";
  position: absolute;
  top: 0;
  height: var(--card-h);
  width: 44px;
  z-index: 1;
  pointer-events: none;
}
.carousel::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.carousel::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }

.car-btn {
  position: absolute;
  top: calc(var(--card-h) / 2 - 23px);
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(25, 23, 19, 0.85);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.15s, color 0.15s, border-color 0.15s;
}
.car-btn:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.car-prev { left: 10px; }
.car-next { right: 10px; }

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


.about {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}
@media (min-width: 860px) {
  .about { grid-template-columns: 7fr 5fr; }
}
.about-text p + p { margin-top: 1rem; }
.about-text p { color: var(--text-soft); }
.about-text strong { color: var(--text); }

.values { display: grid; gap: 1.6rem; align-content: start; }
.values li { border-top: 1px solid var(--line); padding-top: 1.1rem; }
.values h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}
.values h3::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--gold);
  flex: none;
}
.values p { font-size: 0.95rem; color: var(--text-soft); }


.dark { background: var(--bg-lift); }

.tel-big {
  display: inline-block;
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 125%;
  font-size: clamp(1.9rem, 6vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--gold);
  text-decoration: none;
  margin-block: 1.2rem 1.8rem;
  overflow-wrap: anywhere;
}
.tel-big:hover { color: var(--text); }

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
}

.contact-grid {
  display: grid;
  gap: 2rem;
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
@media (min-width: 720px) {
  .contact-grid { grid-template-columns: repeat(3, 1fr); }
}
.contact-grid h3 {
  font-size: 0.82rem;
  font-family: var(--body);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  margin-bottom: 0.7rem;
}
.contact-grid p { font-size: 0.98rem; color: var(--text-soft); }
.contact-grid a { color: var(--gold); }
.contact-grid a:hover { color: var(--text); }


.site-footer {
  border-top: 1px solid var(--line);
  margin-top: clamp(3rem, 7vw, 5rem);
  padding-block: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}
.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  justify-content: space-between;
}
.site-footer a { color: var(--text-soft); text-underline-offset: 3px; }
.site-footer a:hover { color: var(--gold); }


.callbar {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);
  background: var(--bg);
}
.callbar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 0.5rem;
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
}
.callbar .cb-tel { background: var(--gold); color: var(--bg); }
.callbar .cb-wa { background: var(--bg); color: var(--text); }

.js .callbar { transform: translateY(110%); transition: transform 0.25s ease; }
.js .callbar.cb-show { transform: none; }

@media (max-width: 859.98px) {
  body.has-callbar { padding-bottom: 64px; }
}
@media (min-width: 860px) {
  .callbar { display: none; }
  body.has-callbar { padding-bottom: 0; }
}


.prose {
  max-width: 720px;
  margin-inline: auto;
  padding-block: clamp(3rem, 7vw, 5rem);
}
.prose h1 {
  margin-bottom: 2rem;
  font-size: clamp(1.4rem, 5vw, 2.6rem);
  hyphens: auto;   overflow-wrap: break-word;
}
.prose h2 {
  font-size: 1.25rem;
  margin: 2.2rem 0 0.7rem;
  max-width: none;
}
.prose p, .prose ul { color: var(--text-soft); margin-bottom: 0.9rem; }
.prose ul { list-style: square; padding-left: 1.3rem; }
.prose ul ::marker { color: var(--gold); }
.prose a { color: var(--gold); text-underline-offset: 3px; }
.prose a:hover { color: var(--text); }
.prose .addr { line-height: 1.5; color: var(--text); }

.footer-light {
  border-top: 1px solid var(--line);
  padding-block: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}
.footer-light .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  justify-content: space-between;
}
.footer-light a { color: var(--text-soft); }
.footer-light a:hover { color: var(--gold); }


@media (prefers-reduced-motion: no-preference) {

    @keyframes kenburns {
    from { transform: scale(1.07); }
    to { transform: none; }
  }
  .hero-bg { animation: kenburns 9s ease-out both; }

  @keyframes rise {
    from { opacity: 0; transform: translateY(26px); }
    to { opacity: 1; transform: none; }
  }
  .hero-inner > * { animation: rise 0.7s ease 0.1s backwards; }
  .hero-inner > :nth-child(2) { animation-delay: 0.22s; }
  .hero-inner > :nth-child(3) { animation-delay: 0.34s; }
  .hero-inner > :nth-child(4) { animation-delay: 0.46s; }
  .hero-inner > :nth-child(5) { animation-delay: 0.6s; }

    .js .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .js .reveal.in { opacity: 1; transform: none; }
  .js .reveal:nth-child(2) { transition-delay: 0.07s; }
  .js .reveal:nth-child(3) { transition-delay: 0.14s; }
  .js .reveal:nth-child(4) { transition-delay: 0.21s; }
  .js .reveal:nth-child(5) { transition-delay: 0.28s; }

    .car-track img { transition: transform 0.5s ease; }
  .car-track figure:hover img { transform: scale(1.04); }

  .service { transition: background-color 0.25s ease; }
  .service:hover { background: #282219; }

  .site-nav a { position: relative; }
  .site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -5px;
    height: 2px;
    background: var(--gold);
    transition: right 0.2s ease;
  }
  .site-nav a:hover::after { right: 0; }

  @keyframes bob {
    0%, 100% { transform: translateY(-5px); }
    50% { transform: translateY(5px); }
  }
  .scroll-cue svg { animation: bob 2.2s ease-in-out infinite; }

  @keyframes progress-grow { to { transform: scaleX(1); } }
  .progress {
    animation: progress-grow linear both;
    animation-timeline: scroll(root);
  }
}


@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
