:root {
  --wine: #711b25;
  --wine-dark: #441017;
  --green: #315f42;
  --cream: #f7f1e7;
  --ink: #221b18;
  --muted: #716762;
  --white: #fff;
  --gold: #c9a45c;
  --line: #e3d8ca;
  --shadow: 0 18px 45px rgba(48, 30, 20, 0.12);
  --radius: 22px;
  --container: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, "Helvetica Neue", sans-serif;
  line-height: 1.65;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  background: #fff;
  color: #000;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: none;
}
.utility-bar {
  background: var(--wine-dark);
  color: #f9e9df;
  font-size: 0.84rem;
}
.utility-inner {
  min-height: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.utility-links {
  display: flex;
  gap: 22px;
}
.utility-links a:hover {
  text-decoration: underline;
}
.site-header {
  position: relative;
  z-index: 100;
  background: #fff;
  box-shadow: 0 4px 22px rgba(30, 20, 15, 0.08);
}
.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand img {
  width: 72px;
  height: 68px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 700;
  font-size: 0.93rem;
}
.nav-links > a:not(.button):hover {
  color: var(--wine);
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
}
.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
  margin: 5px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 800;
  line-height: 1.2;
  transition: 0.2s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  background: var(--wine);
  color: #fff;
  box-shadow: 0 8px 18px rgba(113, 27, 37, 0.22);
}
.button-primary:hover {
  background: #8d2633;
}
.button-light {
  background: #fff;
  color: var(--wine);
}
.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
}
.button-small {
  padding: 10px 18px;
}
.button-large {
  padding: 15px 25px;
}
.button-full {
  width: 100%;
}
.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-media {
  background: url("../images/hero.webp") center/cover no-repeat;
  transform: scale(1.02);
}
.hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(31, 10, 12, 0.91) 0%,
    rgba(52, 16, 20, 0.76) 44%,
    rgba(22, 8, 8, 0.18) 100%
  );
}
.hero-content {
  position: relative;
  padding-block: 100px;
  max-width: var(--container);
}
.hero-content > * {
  max-width: 760px;
}
.eyebrow {
  margin: 0 0 12px;
  color: #f4d9a4;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow.dark {
  color: var(--wine);
}
h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
  margin-top: 0;
}
h1 {
  font-size: clamp(2.8rem, 6.1vw, 5.6rem);
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
h2 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.45rem;
}
.hero-copy {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: #f6ebe7;
  margin-bottom: 30px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-notes {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.92rem;
  font-weight: 700;
}
.hero-notes li:before {
  content: "✓";
  color: #f4d9a4;
  margin-right: 8px;
}
.section {
  padding: 100px 0;
}
.section-soft {
  background: var(--cream);
}
.section-dark {
  background: var(--wine-dark);
  color: #fff;
}
.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}
.section-heading.centered {
  text-align: center;
  margin-inline: auto;
}
.section-heading > p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  position: relative;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 28px rgba(50, 32, 20, 0.06);
}
.price-card.featured {
  border: 2px solid var(--wine);
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.badge {
  position: absolute;
  right: 24px;
  top: 20px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f2dfb5;
  color: #5f4217;
  font-size: 0.75rem;
  font-weight: 900;
}
.card-kicker {
  color: var(--wine);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.price {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin: 22px 0;
}
.price span {
  font-size: 1.5rem;
  vertical-align: top;
}
.price small {
  font:
    700 0.72rem Arial,
    sans-serif;
  color: var(--muted);
}
.price-card > p:not(.price):last-of-type {
  color: var(--muted);
  min-height: 50px;
}
.text-button {
  display: inline-block;
  border: 0;
  background: transparent;
  color: var(--wine);
  font-weight: 900;
  padding: 10px 0;
}
.text-button:hover {
  text-decoration: underline;
}
.promo-banner {
  margin-top: 38px;
  padding: 26px 30px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: var(--green);
  color: #fff;
}
.promo-banner strong,
.promo-banner span {
  display: block;
}
.promo-banner strong {
  font:
    700 1.5rem Georgia,
    serif;
}
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 70px;
}
.split-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.split-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}
.check-list {
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.check-list li:before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  border-radius: 50%;
  background: #dbe9df;
  color: var(--green);
  font-weight: 900;
}
.gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: 240px 240px;
  gap: 18px;
}
.gallery-item {
  padding: 0;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #ddd;
}
.gallery-wide {
  grid-row: 1/3;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img {
  transform: scale(1.035);
}
.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.delivery-grid > div > p:not(.eyebrow) {
  color: #dfcbca;
  font-size: 1.08rem;
  margin-bottom: 28px;
}
.steps {
  display: grid;
  gap: 18px;
}
.step {
  display: flex;
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}
.step > span {
  flex: 0 0 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #2f1d09;
  font-weight: 900;
}
.step h3 {
  margin: 0 0 4px;
  font-size: 1.2rem;
}
.step p {
  margin: 0;
  color: #d9c9c7;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 75px;
}
.contact-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}
.contact-direct {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}
.contact-direct a {
  display: flex;
  flex-direction: column;
  padding: 18px;
  border-left: 3px solid var(--wine);
  background: var(--cream);
}
.contact-direct span {
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.order-form {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.order-form label {
  display: block;
  margin-bottom: 18px;
  font-weight: 800;
  font-size: 0.9rem;
}
.order-form label small {
  color: var(--muted);
  font-weight: 400;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.order-form input,
.order-form textarea,
.newsletter input {
  width: 100%;
  margin-top: 7px;
  border: 1px solid #cfc3b5;
  border-radius: 10px;
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
}
.order-form input:focus,
.order-form textarea:focus,
.newsletter input:focus {
  outline: 3px solid rgba(113, 27, 37, 0.15);
  border-color: var(--wine);
}
.consent {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400 !important;
  color: var(--muted);
}
.consent input {
  width: auto;
  margin-top: 5px;
}
.consent a {
  text-decoration: underline;
  color: var(--wine);
}
.form-note {
  font-size: 0.78rem;
  text-align: center;
  color: var(--muted);
  margin: 12px 0 0;
}
.faq-wrap {
  max-width: 900px;
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-list details {
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}
.faq-list summary {
  padding: 20px 34px 20px 0;
  font-weight: 900;
  cursor: pointer;
  position: relative;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary:after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 1.4rem;
  color: var(--wine);
}
.faq-list details[open] summary:after {
  content: "–";
}
.faq-list p {
  margin: 0 0 20px;
  color: var(--muted);
}
.newsletter {
  padding: 48px 0;
  background: #eadcc9;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.newsletter h2 {
  font-size: 2rem;
  margin-bottom: 4px;
}
.newsletter p {
  margin: 0;
  color: var(--muted);
}
.newsletter form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: min(100%, 470px);
}
.newsletter-fields {
  display: flex;
  gap: 10px;
}
.newsletter input {
  margin: 0;
}
.newsletter-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.4;
}
.newsletter-consent input {
  width: auto;
  margin-top: 2px;
}
.newsletter-consent a {
  color: var(--wine);
  text-decoration: underline;
}
.form-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
}
.site-footer {
  padding: 65px 0 22px;
  background: #211719;
  color: #e8dedd;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
}
.footer-grid img {
  margin-bottom: 20px;
}
.footer-grid p {
  color: #bbaead;
  max-width: 300px;
}
.footer-grid h2 {
  font:
    900 0.78rem Arial,
    sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f1d39d;
}
.footer-grid a {
  display: block;
  margin: 9px 0;
  color: #d9cecd;
}
.footer-grid a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 40px;
  padding-top: 22px;
  color: #a99c9c;
  font-size: 0.82rem;
}
.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  padding: 0;
  border-radius: 50%;
  background: #1fa855;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}
.whatsapp-icon {
  width: 34px;
  height: 34px;
  color: #fff;
}
.lightbox {
  padding: 0;
  border: 0;
  border-radius: 16px;
  max-width: min(92vw, 1000px);
  background: #111;
}
.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.8);
}
.lightbox img {
  max-height: 85vh;
}
.lightbox-close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 1.7rem;
}
.legal {
  max-width: 850px;
  padding-block: 80px;
}
.legal h1 {
  font-size: clamp(2.3rem, 5vw, 4rem);
}
.legal h2 {
  font-size: 1.5rem;
  margin-top: 35px;
}
.legal p,
.legal li {
  color: var(--muted);
}
.thank-you-page {
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding-block: 80px;
  background: var(--cream);
}
.thank-you-card {
  width: min(100%, 760px);
  padding: clamp(36px, 7vw, 70px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  text-align: center;
  box-shadow: var(--shadow);
}
.thank-you-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
}
.thank-you-card h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
}
.thank-you-card p {
  max-width: 580px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 1.08rem;
}
.thank-you-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 122px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 25px 30px;
    background: #fff;
    box-shadow: 0 18px 25px rgba(0, 0, 0, 0.12);
  }
  .nav-links.open {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .hero {
    min-height: 610px;
  }
  .hero-overlay {
    background: rgba(37, 10, 13, 0.73);
  }
  .price-grid,
  .split,
  .delivery-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .price-card.featured {
    transform: none;
  }
  .split,
  .delivery-grid,
  .contact-grid {
    gap: 42px;
  }
  .gallery {
    grid-template-rows: 200px 200px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }
  .utility-inner > span,
  .utility-links a:last-child {
    display: none;
  }
  .utility-inner {
    justify-content: flex-end;
  }
  .section {
    padding: 72px 0;
  }
  .hero {
    min-height: 650px;
  }
  .hero-content {
    padding-block: 70px;
  }
  .hero-actions {
    display: grid;
  }
  .hero-actions .button {
    width: 100%;
  }
  .hero-notes {
    display: grid;
    gap: 8px;
  }
  .price-grid,
  .gallery {
    grid-template-columns: 1fr;
  }
  .gallery {
    grid-template-rows: 260px 190px 190px;
  }
  .gallery-wide {
    grid-row: auto;
  }
  .promo-banner,
  .newsletter-inner,
  .newsletter form {
    flex-direction: column;
    align-items: stretch;
  }
  .check-list,
  .form-row {
    grid-template-columns: 1fr;
  }
  .newsletter form {
    display: flex;
    min-width: 0;
  }
  .newsletter-fields {
    flex-direction: column;
  }
  .newsletter .button {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    gap: 15px;
    flex-direction: column;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
