:root {
  --bg: #f2f1ef;
  --bg-alt: #e8e4df;
  --ink: #241f1c;
  --muted: #6a5f56;
  --line: #d8d0c8;
  --white: #ffffff;
  --charcoal: #2f2925;
  --charcoal-mid: #3f3732;
  --orange: #c97a45;
  --orange-deep: #b06636;
  --orange-soft: #f0ddd0;
  --wa: #25d366;
  --wa-deep: #1ebe57;
  --shell: min(1120px, calc(100% - 2rem));
  --font: "Figtree", "Segoe UI", sans-serif;
  --display: "Archivo", "Trebuchet MS", sans-serif;
  --radius: 14px;
  --shadow: 0 16px 36px rgba(36, 31, 28, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.65;
  background:
    radial-gradient(900px 420px at 0% -10%, rgba(201, 122, 69, 0.14), transparent 55%),
    radial-gradient(700px 380px at 100% 0%, rgba(201, 122, 69, 0.08), transparent 50%),
    var(--bg);
  padding-bottom: 4.5rem;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
.brand strong,
.hero-brand,
.footer-brand,
.product-tag,
.trust-item strong,
.fact strong {
  font-family: var(--display);
  letter-spacing: -0.02em;
  line-height: 1.08;
  font-weight: 700;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  padding: 0.6rem 0.9rem;
  background: var(--charcoal);
  color: #fff;
  border-radius: 10px;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(242, 241, 239, 0.88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 28px rgba(36, 31, 28, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.2rem;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--orange), var(--orange-deep));
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.15rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.brand-text strong {
  font-size: 1.15rem;
  color: var(--charcoal);
}

.brand-text span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-deep);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  flex-wrap: wrap;
}

.site-nav a {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--muted);
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--charcoal);
}

.nav-call {
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: var(--charcoal);
  color: #fff !important;
}

.nav-wa {
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--wa), var(--wa-deep));
  color: #fff !important;
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.28);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 1rem;
  height: 1.5px;
  background: var(--ink);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(2.4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-2.4px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(90vh, 860px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slider,
.hero-veil {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(0.95) contrast(1.05) brightness(0.88);
  transform: scale(1.04);
  transition: transform 9s ease;
}

.hero-slide.is-active img {
  transform: scale(1.1);
}

.hero-veil {
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(36, 31, 28, 0.2) 0%,
      rgba(36, 31, 28, 0.4) 45%,
      rgba(242, 241, 239, 0.94) 90%,
      var(--bg) 100%
    ),
    linear-gradient(
      115deg,
      rgba(47, 41, 37, 0.88) 0%,
      rgba(47, 41, 37, 0.4) 48%,
      rgba(201, 122, 69, 0.28) 100%
    );
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 6.5rem 0 3.4rem;
  max-width: 40rem;
  animation: riseIn 0.85s ease both;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 0.95rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f0c9a8;
}

.hero-brand {
  margin-bottom: 0.65rem;
  font-size: clamp(2.8rem, 7vw, 4.6rem);
  color: #fff;
  line-height: 0.95;
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}

.hero h1 {
  font-family: var(--font);
  font-size: clamp(1.15rem, 2.4vw, 1.4rem);
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: rgba(255, 255, 255, 0.92);
}

.lead {
  margin-bottom: 1.4rem;
  color: rgba(255, 248, 242, 0.88);
  max-width: 34rem;
  font-size: 1.06rem;
}

.section-lead {
  color: var(--muted);
  max-width: 36rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.05rem;
  padding: 0.7rem 1.25rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  font-size: 0.96rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-call {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff;
  box-shadow: 0 14px 28px rgba(201, 122, 69, 0.35);
}

.btn-call:hover,
.btn-call:focus-visible {
  filter: brightness(1.05);
}

.btn-wa {
  background: linear-gradient(135deg, var(--wa), var(--wa-deep));
  color: #fff;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.32);
}

.btn-wa:hover,
.btn-wa:focus-visible {
  filter: brightness(1.05);
}

.hero-phone {
  margin-top: 1.05rem;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero-phone a {
  color: #f0c9a8;
}

.hero-phone a:hover,
.hero-phone a:focus-visible {
  color: #fff;
}

.hero-dots {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.2rem;
}

.hero-dots button {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.hero-dots button.is-active {
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(201, 122, 69, 0.28);
  transform: scale(1.15);
}

.trust-strip {
  padding: 1.4rem 0 0.4rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.trust-item {
  padding: 1rem 1.05rem;
  border-top: 2px solid var(--orange);
  background: rgba(255, 255, 255, 0.55);
}

.trust-item strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
  color: var(--charcoal);
}

.trust-item span {
  font-size: 0.9rem;
  color: var(--muted);
}

.marquee-band {
  overflow: hidden;
  margin-top: 1.6rem;
  background: linear-gradient(90deg, var(--charcoal), var(--charcoal-mid));
  padding: 1rem 0;
}

.marquee-track {
  display: flex;
  gap: 2.2rem;
  width: max-content;
  animation: marquee 38s linear infinite;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section {
  padding: 4.2rem 0;
}

.section-alt {
  background: linear-gradient(180deg, var(--bg-alt), rgba(240, 221, 208, 0.35));
}

.section-head {
  margin-bottom: 2rem;
}

.label {
  margin-bottom: 0.55rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-deep);
}

.section h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.55rem);
  margin-bottom: 0.7rem;
  color: var(--charcoal);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.product-card {
  padding: 1.35rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 122, 69, 0.45);
}

.product-tag {
  margin-bottom: 0.55rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-deep);
}

.product-card h3 {
  margin-bottom: 0.45rem;
  font-size: 1.25rem;
}

.product-card p {
  color: var(--muted);
  font-size: 0.96rem;
}

.inquiry-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.inquiry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.inquiry-form {
  padding: 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--charcoal);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 2.85rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #faf9f8;
}

.field textarea {
  min-height: 5.5rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(201, 122, 69, 0.35);
  border-color: var(--orange);
}

.inquiry-submit {
  width: 100%;
  margin-top: 1.1rem;
  min-height: 3.2rem;
}

.inquiry-status {
  margin-top: 0.7rem;
  min-height: 1.3rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.fact {
  padding: 1.4rem 1.2rem;
  background: var(--white);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.fact strong {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--orange-deep);
  font-size: 1.1rem;
}

.fact h3 {
  margin-bottom: 0.4rem;
  font-size: 1.2rem;
}

.fact p {
  color: var(--muted);
  font-size: 0.95rem;
}

.locale-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1.6rem;
  align-items: start;
}

.locale-facts {
  margin: 1.2rem 0 1.4rem;
  display: grid;
  gap: 0.85rem;
}

.locale-facts dt {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-deep);
}

.locale-facts dd {
  margin: 0.15rem 0 0;
  font-weight: 700;
}

.locale-facts a {
  color: var(--charcoal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 320px;
  box-shadow: var(--shadow);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.86);
  padding: 2.2rem 0 5.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 1.2rem;
  align-items: center;
}

.footer-brand {
  display: block;
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #f0c9a8;
}

.footer-copy {
  font-size: 0.85rem;
  opacity: 0.75;
}

.wa-float {
  position: fixed;
  right: 1rem;
  bottom: 4.6rem;
  z-index: 50;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--wa), var(--wa-deep));
  color: #fff;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.42);
  animation: floatPulse 2.8s ease-in-out infinite;
}

.wa-float svg {
  width: 1.4rem;
  height: 1.4rem;
}

.mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  background: rgba(47, 41, 37, 0.97);
  padding: 0.55rem 0.75rem calc(0.55rem + env(safe-area-inset-bottom));
  gap: 0.55rem;
}

.mobile-bar-call,
.mobile-bar-wa {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  border-radius: 999px;
  font-weight: 800;
  color: #fff;
}

.mobile-bar-call {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
}

.mobile-bar-wa {
  background: linear-gradient(135deg, var(--wa), var(--wa-deep));
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes floatPulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@media (max-width: 960px) {
  .product-grid,
  .inquiry-layout,
  .locale-wrap,
  .inquiry-grid,
  .facts,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(1120px, calc(100% - 1.2rem));
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 0.7rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.7rem 0.75rem;
    border-radius: 10px;
  }

  .nav-call,
  .nav-wa {
    text-align: center;
  }

  .hero {
    min-height: 0;
    display: flex;
    flex-direction: column;
    background: var(--charcoal);
  }

  .hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    height: clamp(220px, 42vh, 320px);
  }

  .hero-veil {
    background: linear-gradient(
      180deg,
      rgba(47, 41, 37, 0.12) 0%,
      rgba(47, 41, 37, 0.72) 100%
    );
  }

  .hero-slide img,
  .hero-slide.is-active img {
    transform: none;
    transition: none;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 1.4rem 0 1.6rem;
    text-align: center;
    background: linear-gradient(180deg, var(--charcoal-mid), var(--charcoal));
  }

  .hero-brand {
    font-size: clamp(2.3rem, 11vw, 3.2rem);
    text-shadow: none;
  }

  .hero-kicker::after,
  .cta-row {
    justify-content: center;
  }

  .cta-row .btn {
    width: 100%;
  }

  .hero-dots {
    justify-content: center;
  }

  .trust-grid,
  .product-grid,
  .inquiry-layout,
  .locale-wrap,
  .inquiry-grid,
  .facts {
    grid-template-columns: 1fr;
  }

  .section-head,
  .inquiry-head,
  .section h2,
  .section-lead {
    text-align: center;
    margin-inline: auto;
  }

  .section {
    padding: 3.1rem 0;
  }

  .mobile-bar {
    display: flex;
  }

  .wa-float {
    bottom: 5.2rem;
    right: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero-slide img,
  .hero-slide.is-active img {
    transform: none;
  }
}
