:root {
  color-scheme: dark;
  --bg: #050505;
  --panel: #101010;
  --panel-2: #171717;
  --ink: #ffffff;
  --muted: #c7c7c7;
  --soft: #f4f4f4;
  --line: rgba(255, 255, 255, 0.14);
  --red: #ef1717;
  --red-dark: #9f0707;
  --radius: 8px;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.44);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 64px);
  background: rgba(5, 5, 5, 0.58);
  border-bottom: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.92);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: var(--radius);
  background: #fff;
  padding: 4px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-size: 1.05rem;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
}

.site-nav a {
  position: relative;
  transition: color 0.2s ease;
}

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

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

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

.site-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: var(--radius);
  background: var(--red);
  color: #fff;
  font-weight: 850;
  box-shadow: 0 12px 28px rgba(239, 23, 23, 0.28);
}

.site-nav .nav-cta::after {
  display: none;
}

.site-nav .nav-cta svg {
  width: 18px;
  height: 18px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(16, 16, 16, 0.88);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 126px clamp(18px, 5vw, 64px) 34px;
}

.hero-slider,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slider {
  background: #000;
}

.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.7s ease, transform 5.2s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.72) 42%, rgba(0, 0, 0, 0.22) 86%),
    linear-gradient(0deg, rgba(5, 5, 5, 1) 0%, rgba(5, 5, 5, 0.05) 42%),
    radial-gradient(circle at 18% 50%, rgba(239, 23, 23, 0.3), transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 7vw, 6.35rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button.primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 34px rgba(239, 23, 23, 0.32);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

.button svg,
.site-footer svg,
.service-card svg,
.value-list svg,
.contact-link svg,
.whatsapp-button svg,
.slider-controls svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.slider-controls {
  position: absolute;
  right: clamp(18px, 5vw, 64px);
  bottom: 150px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(14px);
}

.slider-controls button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  cursor: pointer;
}

.slider-dots {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  padding: 0;
}

.slider-dots button.is-active {
  width: 28px;
  background: var(--red);
}

.hero-metrics {
  position: relative;
  z-index: 2;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(820px, 100%);
  margin-top: 70px;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: var(--shadow);
}

.hero-metrics article {
  padding: 24px;
  background: rgba(16, 16, 16, 0.76);
  backdrop-filter: blur(16px);
}

.hero-metrics strong {
  display: block;
  color: var(--red);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

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

.intro {
  background: #fff;
  color: #090909;
}

.intro .section-kicker {
  color: var(--red);
}

.intro-grid,
.section-heading,
.vision {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: start;
}

.intro p,
.section-heading p,
.vision-content p,
.process-panel p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.intro p {
  color: #3c3c3c;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.service-card {
  min-height: 238px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.service-card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 26px;
  color: var(--red);
}

.service-card p,
.steps p {
  color: var(--muted);
  line-height: 1.65;
}

.process {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(0, 1.16fr);
  gap: 1px;
  padding: 0 clamp(18px, 5vw, 64px);
  background: linear-gradient(180deg, transparent 0%, rgba(239, 23, 23, 0.08) 100%);
}

.process-panel,
.steps article {
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid var(--line);
  background: var(--panel-2);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
}

.steps article {
  min-height: 100%;
}

.steps span {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--red);
  font-weight: 900;
}

.vision {
  background: #fff;
  color: #090909;
}

.vision-content p {
  color: #3c3c3c;
}

.value-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.value-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius);
  background: #f5f5f5;
}

.value-list svg {
  color: var(--red);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  gap: clamp(28px, 6vw, 88px);
  padding: clamp(70px, 10vw, 132px) clamp(18px, 5vw, 64px);
  background: var(--panel);
}

.contact-copy h2 {
  margin-bottom: 22px;
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: #fff;
  font-weight: 800;
}

.contact-link svg {
  color: var(--red);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, 0.42);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.contact-form select option {
  color: #111;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--red);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 64px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-left {
  display: flex;
  align-items: center;
  min-width: 0;
}

.site-footer p {
  margin: 0;
}

.site-footer > a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
}

.whatsapp-button {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(36, 211, 102, 0.72);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #24d366 0%, #17a84b 100%);
  color: #06140b;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 14px 34px rgba(36, 211, 102, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
  transform: translateY(-2px);
  filter: saturate(1.08);
  box-shadow: 0 18px 42px rgba(36, 211, 102, 0.34);
}

.whatsapp-button svg {
  stroke-width: 2.4;
}

.product-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: center;
  min-height: 92vh;
  padding: 130px clamp(18px, 5vw, 64px) 70px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(170, 122, 28, 0.22), transparent 28%),
    radial-gradient(circle at 16% 62%, rgba(115, 0, 28, 0.36), transparent 30%),
    linear-gradient(135deg, #080505 0%, #190609 46%, #050505 100%);
}

.product-hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  mask-image: linear-gradient(90deg, #000 0%, transparent 80%);
}

.product-copy,
.product-bottle {
  position: relative;
  z-index: 1;
}

.product-copy h1 {
  color: #d6a11f;
  text-transform: uppercase;
}

.product-copy p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
  line-height: 1.75;
}

.product-bottle {
  margin: 0;
  justify-self: center;
  width: min(420px, 100%);
  padding: clamp(12px, 2vw, 20px);
  border: 1px solid rgba(214, 161, 31, 0.34);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
}

.product-bottle img {
  display: block;
  width: 100%;
  border-radius: calc(var(--radius) - 2px);
}

.product-story,
.product-details,
.warnings {
  padding: clamp(70px, 10vw, 120px) clamp(18px, 5vw, 64px);
}

.product-story {
  background: #fff;
  color: #100b09;
}

.product-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 6vw, 88px);
}

.product-story p,
.tasting-panel p {
  color: #3d302d;
  font-size: 1.06rem;
  line-height: 1.78;
}

.product-details {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.78fr);
  gap: 1px;
  background: #0a0707;
}

.details-panel,
.tasting-panel {
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: #151010;
}

.tasting-panel {
  background: #f8f5ee;
  color: #130e0c;
}

.spec-list {
  display: grid;
  gap: 1px;
  margin: 34px 0 0;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.spec-list div {
  display: grid;
  grid-template-columns: minmax(140px, 0.7fr) minmax(0, 1fr);
  gap: 18px;
  padding: 16px;
  background: #0d0a0a;
}

.spec-list dt {
  color: #d6a11f;
  font-weight: 850;
}

.spec-list dd {
  margin: 0;
  color: #fff;
}

.serve-note {
  margin-top: 26px;
  padding: 16px;
  border-left: 4px solid #d6a11f;
  background: #fff;
}

.warnings {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.9fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
  background: #fff;
  color: #100b09;
}

.warnings ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.warnings li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(115, 0, 28, 0.18);
  border-radius: var(--radius);
  background: #f8f5ee;
  color: #1b1210;
  font-weight: 800;
}

.warnings svg {
  width: 22px;
  height: 22px;
  color: var(--red);
  flex: 0 0 auto;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: grid;
    place-items: center;
    z-index: 31;
  }

  .site-nav {
    position: fixed;
    inset: 84px 16px auto;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(5, 5, 5, 0.97);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

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

  .site-nav a {
    padding: 16px;
    border-radius: var(--radius);
  }

  .site-nav .nav-cta {
    justify-content: center;
    margin-top: 6px;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 122px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.7)),
      linear-gradient(0deg, rgba(5, 5, 5, 1) 0%, rgba(5, 5, 5, 0.2) 60%);
  }

  .slider-controls {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 2;
    justify-self: start;
    margin-top: 28px;
  }

  .hero-metrics,
  .intro-grid,
  .section-heading,
  .vision,
  .process,
  .contact,
  .product-hero,
  .product-story-grid,
  .product-details,
  .warnings {
    grid-template-columns: 1fr;
  }

  .product-hero {
    min-height: auto;
    padding-top: 128px;
  }

  .service-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .hero {
    padding-inline: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-metrics,
  .service-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero-metrics article,
  .service-card,
  .contact-form {
    padding: 22px;
  }

  .section,
  .contact,
  .product-story,
  .product-details,
  .warnings {
    padding-inline: 16px;
  }

  .product-hero {
    padding-inline: 16px;
  }

  .spec-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .process {
    padding-inline: 16px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-left {
    align-items: flex-start;
    flex-direction: column;
  }
}
