html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

:root {
  --red: #8d1117;
  --red-bright: #c61f2a;
  --ink: #171717;
  --charcoal: #272727;
  --muted: #6b6560;
  --line: rgba(255, 255, 255, 0.16);
  --paper: #fffaf6;
  --white: #ffffff;
  --metal: #d7d2ca;
  --shadow: 0 24px 70px rgba(20, 12, 10, 0.18);
  --radius: 8px;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.58;
}

body.loading {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 35%, rgba(198, 31, 42, 0.24), transparent 30%),
    linear-gradient(135deg, #150b0b, #2b1011 55%, #090909);
  color: var(--white);
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-mark {
  display: grid;
  place-items: center;
  width: min(360px, 78vw);
  aspect-ratio: 1200 / 689;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 60px rgba(198, 31, 42, 0.25);
  animation: logoReveal 1.1s ease both;
  padding: 18px;
}

.loader-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 16px clamp(16px, 3vw, 42px);
}

.nav {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 16px 12px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(17, 17, 17, 0.42);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  transition: background 0.25s ease, transform 0.25s ease;
}

.site-header.is-scrolled .nav {
  background: rgba(24, 20, 19, 0.86);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand {
  text-align: center;
}

.brand-seal {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--red-bright), var(--red));
  font-weight: 800;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.18);
}

.brand strong,
.footer-brand strong {
  display: block;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand small {
  display: block;
  margin-top: -2px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.2em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--red-bright);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow-x: clip;
  padding: 150px clamp(18px, 4vw, 64px) 56px;
  color: var(--white);
  isolation: isolate;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12, 10, 10, 0.88), rgba(34, 16, 14, 0.62), rgba(12, 10, 10, 0.5)),
    radial-gradient(circle at 75% 42%, rgba(198, 31, 42, 0.3), transparent 28%);
  content: "";
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  background-image: url("https://images.unsplash.com/photo-1544025162-d76694265947?auto=format&fit=crop&w=2200&q=82");
  background-position: center;
  background-size: cover;
  transform: scale(1.03);
  animation: heroZoom 18s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-content {
  width: min(820px, 100%);
  margin-right: auto;
  padding-top: 32px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red-bright);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.65rem, 5.7vw, 5.2rem);
}

h2 {
  max-width: 760px;
  font-size: clamp(1.85rem, 3.1vw, 3.25rem);
  font-weight: 800;
}

h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.22;
}

.hero-subtitle {
  max-width: 600px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

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

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.94rem;
  font-weight: 800;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  content: "";
  transform: translateX(-110%);
  transition: transform 0.45s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn:hover::before,
.btn:focus-visible::before {
  transform: translateX(110%);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red-bright), var(--red));
  box-shadow: 0 16px 34px rgba(141, 17, 23, 0.3);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 4vw, 64px);
  bottom: 42px;
  width: min(340px, calc(100% - 36px));
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(16, 14, 13, 0.58);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  text-align: center;
}

.hero-panel span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin: 3px 0 8px;
  font-size: 2rem;
  line-height: 1;
}

.hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
}

.smoke {
  position: absolute;
  z-index: -1;
  width: min(36vw, 320px);
  min-width: 260px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 62%);
  filter: blur(22px);
  opacity: 0.55;
  pointer-events: none;
  animation: smokeDrift 14s ease-in-out infinite alternate;
}

.smoke-one {
  left: -5%;
  bottom: 10%;
}

.smoke-two {
  top: 18%;
  right: -5%;
  animation-delay: -5s;
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 4vw, 64px);
}

.section-grid,
.location-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(24px, 4vw, 60px);
}

.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
  font-size: 1rem;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.feature-list span {
  padding: 10px 13px;
  border: 1px solid rgba(141, 17, 23, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
  color: var(--charcoal);
  font-size: 0.86rem;
  font-weight: 800;
}

.about-media {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.03);
}

.media-badge,
.address-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(24, 20, 19, 0.78);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.media-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  padding: 18px;
}

.media-badge strong,
.media-badge span {
  display: block;
}

.products {
  background:
    linear-gradient(180deg, rgba(22, 19, 18, 0.97), rgba(42, 27, 25, 0.96)),
    url("https://images.unsplash.com/photo-1556910103-1c02745aae4d?auto=format&fit=crop&w=1800&q=78") center/cover;
  color: var(--white);
}

.section-heading {
  max-width: 1240px;
  margin: 0 auto 42px;
}

.products .section-heading h2 {
  color: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
}

.product-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.24);
  isolation: isolate;
}

.product-card-wide {
  grid-column: span 2;
}

.product-card img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.55s ease, filter 0.55s ease;
}

.product-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 22%, rgba(10, 8, 8, 0.9));
  content: "";
}

.product-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 22px;
  transform: translateY(18px);
  transition: transform 0.35s ease;
}

.product-overlay p {
  max-width: 430px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.product-card:hover,
.product-card:focus-within {
  box-shadow: 0 24px 70px rgba(198, 31, 42, 0.22);
}

.product-card:hover img,
.product-card:focus-within img {
  filter: saturate(1.12) contrast(1.08);
  transform: scale(1.1);
}

.product-card:hover .product-overlay,
.product-card:focus-within .product-overlay {
  transform: translateY(0);
}

.product-card:hover .product-overlay p,
.product-card:focus-within .product-overlay p {
  opacity: 1;
}

.quality {
  background:
    linear-gradient(135deg, #fffaf6, #f2eee8 58%, #ded8cf);
}

.quality-grid {
  align-items: start;
}

.quality-cards {
  display: grid;
  gap: 16px;
}

.quality-card {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  padding: 20px;
  border: 1px solid rgba(39, 39, 39, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 42px rgba(28, 20, 18, 0.08);
}

.quality-card .icon {
  display: grid;
  grid-row: span 2;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: var(--radius);
  color: var(--red);
  background: linear-gradient(135deg, #fff, #e7e2db);
}

.quality-card svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quality-card strong {
  font-size: 1rem;
}

.quality-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1240px;
  margin: 64px auto 0;
}

.metrics div {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 26px 22px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--charcoal), #151515);
  box-shadow: var(--shadow);
}

.metrics strong {
  display: block;
  font-size: clamp(2.05rem, 3.8vw, 3.15rem);
  line-height: 1;
}

.metrics span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  font-weight: 700;
}

.location {
  background: #181615;
  color: var(--white);
}

.location .section-heading p,
.location .section-heading h2 {
  color: var(--white);
}

.location-layout {
  align-items: stretch;
}

.address-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: clamp(24px, 4vw, 44px);
  min-height: 360px;
  background:
    linear-gradient(135deg, rgba(141, 17, 23, 0.88), rgba(24, 20, 19, 0.94)),
    url("https://images.unsplash.com/photo-1529694157872-4e0c0f3b238b?auto=format&fit=crop&w=900&q=70") center/cover;
}

.address-card strong {
  font-size: 1.35rem;
}

.address-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
}

iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: var(--radius);
  filter: grayscale(0.2) contrast(1.08);
}

.contact {
  background: var(--paper);
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  font-weight: 800;
  font-size: 0.98rem;
}

.contact-details a {
  color: var(--red);
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-top: 6px;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: #ffffff !important;
  background: #1fa855;
  box-shadow: 0 14px 30px rgba(31, 168, 85, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-link:hover,
.whatsapp-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(31, 168, 85, 0.3);
}

.whatsapp-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(39, 39, 39, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--charcoal);
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(39, 39, 39, 0.12);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: #f9f6f2;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(198, 31, 42, 0.6);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(198, 31, 42, 0.12);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
}

.contact-form .btn.is-sending {
  pointer-events: none;
  opacity: 0.8;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--red);
  font-weight: 700;
}

.footer {
  display: grid;
  justify-items: center;
  gap: 20px;
  padding: 40px 20px;
  overflow-x: hidden;
  color: rgba(255, 255, 255, 0.72);
  background: #101010;
  text-align: center;
}

.footer > * {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.footer p {
  margin: 0;
}

.footer p,
.footer-phone,
.footer small {
  width: 100%;
  text-align: center;
  word-break: break-word;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  min-width: 0;
  color: var(--white);
  text-align: center;
}

.footer-brand div {
  min-width: 0;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.62);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
  font-weight: 700;
}

.footer-phone {
  color: var(--white);
  font-weight: 800;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

@keyframes heroZoom {
  from {
    transform: scale(1.03);
  }
  to {
    transform: scale(1.12);
  }
}

@keyframes smokeDrift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(42px, -28px, 0) scale(1.2);
  }
}

@keyframes logoReveal {
  from {
    opacity: 0;
    transform: scale(0.86) translateY(18px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1080px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .nav {
    flex-direction: row;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    z-index: 120;
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius);
    background: rgba(24, 20, 19, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a {
    padding: 12px 8px;
  }

  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-panel {
    position: relative;
    width: 100%;
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    right: auto;
    bottom: auto;
  }

  .section-grid,
  .location-layout {
    grid-template-columns: 1fr;
  }

  .about-media,
  .about-media img {
    min-height: 360px;
  }

  .metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 12px;
  }

  .nav {
    padding: 10px;
  }

  .brand small {
    display: none;
  }

  .brand-seal {
    width: 40px;
    height: 40px;
  }

  .hero {
    padding-right: 16px;
    padding-left: 16px;
  }

  h1 {
    font-size: clamp(2.25rem, 11.5vw, 3.4rem);
  }

  h2 {
    font-size: clamp(1.7rem, 8vw, 2.35rem);
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card,
  .product-card img {
    min-height: 320px;
  }

  .product-card-wide {
    grid-column: auto;
  }

  .media-badge {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }
}
.brand-logo {
  width: auto;
  height: 74px;
  max-width: min(260px, 48vw);
  object-fit: contain;
  display: block;
}

.footer-logo {
  height: 76px;
  width: auto;
  max-width: min(260px, 80vw);
  object-fit: contain;
  display: block;
}
@media (max-width: 620px) {
  .brand-logo,
  .footer-logo {
    height: 54px;
    max-width: 180px;
  }

  .footer-links {
    display: grid;
  }

  .nav-links {
    left: 0;
    right: 0;
    width: auto;
  }
}
.site-header {
  overflow: visible;
}

.footer,
section {
  overflow-x: hidden;
}

iframe {
  display: block;
}

@media (max-width: 860px) {
  .nav {
    width: 100%;
  }

  .brand-logo {
    height: 56px;
    max-width: 190px;
  }

  .footer-logo {
    height: 58px;
    max-width: 200px;
  }

  .hero-panel {
    margin-top: 24px;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
}
