:root {
  --wine: #a91c24;
  --wine-dark: #6f141a;
  --wine-soft: #c95b62;
  --blush: #f5d9d6;
  --blush-light: #fff7f5;
  --cream: #f7eee8;
  --paper: #fffdfb;
  --ink: #331b1c;
  --muted: #755e5e;
  --line: rgba(97, 37, 40, 0.16);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 24px 70px rgba(92, 28, 32, 0.14);
  --radius: 28px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

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

a { color: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

button { font: inherit; }

.container { width: min(1180px, calc(100% - 40px)); 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: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  background: #fff;
  color: var(--wine);
  transform: translateY(-160%);
}

.skip-link:focus { transform: none; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 251, 0.9);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.brand span { display: grid; }

.brand strong {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
  color: var(--wine);
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.main-nav { display: flex; align-items: center; gap: 30px; }

.main-nav > a:not(.button) {
  position: relative;
  padding: 8px 0;
  color: #5f4647;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--wine);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-nav > a:hover::after { transform: scaleX(1); }

.menu-toggle { display: none; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border: 1px solid var(--wine);
  border-radius: 100px;
  background: var(--wine);
  color: #fff;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: var(--wine-dark);
  box-shadow: 0 12px 28px rgba(107, 20, 26, 0.2);
  transform: translateY(-2px);
}

.button-small { min-height: 44px; padding: 10px 19px; }

.hero {
  position: relative;
  display: grid;
  min-height: 780px;
  align-items: center;
  overflow: hidden;
  padding: 138px 0 90px;
  background:
    radial-gradient(circle at 4% 94%, rgba(169, 28, 36, 0.1), transparent 26%),
    linear-gradient(120deg, var(--blush-light) 0%, #fffaf7 52%, #f6dedb 100%);
}

.hero::before {
  position: absolute;
  top: 12%;
  right: 4%;
  width: 410px;
  height: 410px;
  border: 1px solid rgba(169, 28, 36, 0.14);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--wine);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow span { width: 28px; height: 1px; background: currentColor; }

.hero h1,
.section-heading h2,
.about h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.hero h1 { max-width: 650px; font-size: clamp(54px, 5.5vw, 76px); }

.hero-title-line { white-space: nowrap; }

.hero h1 em,
.about h2 em { color: var(--wine); font-weight: 400; }

.hero-text {
  max-width: 580px;
  margin: 28px 0 32px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions { display: flex; align-items: center; gap: 24px; }

.text-link {
  color: var(--wine);
  font-size: 14px;
  font-weight: 750;
  text-underline-offset: 5px;
}

.text-link:hover { color: var(--wine-dark); }

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 40px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.hero-points li { color: #725a5b; font-size: 12px; font-weight: 650; }
.hero-points span { margin-right: 4px; color: var(--wine); font-size: 15px; }

.hero-gallery { position: relative; min-height: 570px; }

.hero-photo { position: absolute; margin: 0; overflow: hidden; box-shadow: var(--shadow); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.hero-photo-main {
  top: 0;
  right: 0;
  width: 79%;
  height: 520px;
  border-radius: 46% 46% 26px 26px;
}

.hero-photo-small {
  bottom: 0;
  left: 0;
  width: 38%;
  height: 275px;
  border: 8px solid var(--blush-light);
  border-radius: 120px 120px 18px 18px;
}

.hero-stamp {
  position: absolute;
  right: -14px;
  bottom: 26px;
  display: grid;
  width: 122px;
  height: 122px;
  place-content: center;
  border: 1px solid var(--wine);
  border-radius: 50%;
  background: var(--blush);
  color: var(--wine);
  text-align: center;
  transform: rotate(-7deg);
}

.hero-stamp::before {
  position: absolute;
  inset: 6px;
  border: 1px dashed rgba(169, 28, 36, 0.55);
  border-radius: inherit;
  content: "";
}

.hero-stamp span { font-size: 9px; font-weight: 750; letter-spacing: 0.18em; text-transform: uppercase; }
.hero-stamp strong { font-family: var(--serif); font-size: 30px; font-style: italic; font-weight: 400; }

.ticker {
  overflow: hidden;
  padding: 18px 0;
  background: var(--wine);
  color: #fff0ee;
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: ticker 26s linear infinite;
  will-change: transform;
}

.ticker-group {
  display: flex;
  flex: none;
  min-width: 100vw;
  align-items: center;
  justify-content: space-around;
  gap: 26px;
  padding-right: 26px;
}

.ticker-track:hover { animation-play-state: paused; }

.ticker span { flex: none; font-family: var(--serif); font-size: 21px; font-style: italic; }
.ticker i { color: #e79a9e; font-size: 10px; font-style: normal; }

@keyframes ticker {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.section { padding: 120px 0; }

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

.section-heading {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 54px;
}

.section-heading h2 { max-width: 680px; font-size: clamp(44px, 5vw, 68px); }

.section-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

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

.product-card {
  display: grid;
  grid-template-columns: 48% 52%;
  min-height: 365px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); }

.product-card.product-featured { grid-column: 1 / -1; grid-template-columns: 59% 41%; min-height: 490px; }

.product-image { position: relative; min-height: 100%; overflow: hidden; background: var(--cream); }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(.2,.7,.2,1); }
.product-card:hover .product-image img { transform: scale(1.04); }

.product-featured .product-image img { object-position: center 62%; }

.product-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 12px;
  border-radius: 100px;
  background: rgba(255, 253, 251, 0.9);
  color: var(--wine);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.product-content { display: flex; flex-direction: column; align-items: flex-start; padding: 32px; }
.product-featured .product-content { justify-content: center; padding: 54px; }

.product-number { margin: 0 0 auto; color: var(--wine-soft); font-family: var(--serif); font-size: 13px; }
.product-featured .product-number { margin-bottom: 80px; }

.product-content h3 { margin: 24px 0 12px; font-family: var(--serif); font-size: 34px; font-weight: 400; line-height: 1; }
.product-featured .product-content h3 { font-size: 48px; }

.product-content > p:not(.product-number) { margin: 0 0 25px; color: var(--muted); font-size: 14px; line-height: 1.65; }

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding: 0 0 5px;
  border: 0;
  border-bottom: 1px solid var(--wine);
  background: transparent;
  color: var(--wine);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.product-link span { transition: transform 180ms ease; }
.product-link:hover span { transform: translateX(4px); }

.about { overflow: hidden; background: var(--wine-dark); color: #fff7f4; }

.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; align-items: center; gap: clamp(60px, 9vw, 130px); }

.about-photo { position: relative; }
.about-photo::before {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 64%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.about-photo img { position: relative; width: 100%; height: 590px; border-radius: 220px 220px 24px 24px; object-fit: cover; }

.about-photo p {
  position: absolute;
  right: -54px;
  bottom: 44px;
  margin: 0;
  padding: 19px 26px;
  border-radius: 15px;
  background: var(--blush);
  color: var(--wine);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.3;
  transform: rotate(-4deg);
}

.about-photo p strong { font-size: 25px; font-style: italic; font-weight: 400; }

.eyebrow.light { color: #f0aeb1; }
.about h2 { font-size: clamp(54px, 6vw, 84px); }
.about h2 em { color: #f3b5b6; }
.about-copy > p:not(.eyebrow) { max-width: 620px; margin: 34px 0 42px; color: rgba(255,255,255,.7); font-size: 17px; line-height: 1.8; }

.about-details { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.16); }
.about-details div { display: grid; gap: 8px; }
.about-details strong { font-family: var(--serif); font-size: 22px; font-weight: 400; }
.about-details span { color: rgba(255,255,255,.55); font-size: 12px; line-height: 1.5; }

.contact { background: var(--blush-light); }

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.65fr;
  align-items: center;
  gap: 60px;
  overflow: hidden;
  padding: clamp(48px, 8vw, 92px);
  border-radius: 36px;
  background: var(--wine);
  color: #fff;
}

.contact-mark {
  position: absolute;
  right: 22%;
  bottom: -150px;
  color: rgba(255,255,255,.055);
  font-family: var(--serif);
  font-size: 520px;
  font-style: italic;
  line-height: 1;
  pointer-events: none;
}

.contact-copy, .contact-actions { position: relative; z-index: 1; }
.contact .eyebrow { color: #f4c5c5; }
.contact h2 { font-size: clamp(48px, 5.6vw, 74px); }
.contact-copy > p:not(.eyebrow) { max-width: 590px; margin: 28px 0 0; color: rgba(255,255,255,.72); line-height: 1.7; }

.contact-actions { display: grid; justify-items: start; gap: 16px; }
.contact-actions > a:not(.button) { color: rgba(255,255,255,.85); font-size: 14px; font-weight: 700; text-underline-offset: 4px; }
.button-light { width: 100%; border-color: #fff; background: #fff; color: var(--wine); }
.button-light:hover { background: var(--blush); color: var(--wine-dark); }

.site-footer { padding: 34px 0; border-top: 1px solid var(--line); background: var(--paper); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-brand { display: flex; align-items: center; gap: 14px; color: var(--muted); font-size: 12px; font-weight: 650; }
.footer-brand img { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; }
.site-footer p { color: #927b7c; font-size: 11px; }

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: flex;
  height: 54px;
  align-items: center;
  gap: 9px;
  padding: 0 19px;
  border-radius: 100px;
  background: #236d4a;
  box-shadow: 0 14px 35px rgba(26, 85, 57, .28);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.whatsapp-float svg {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  fill: currentColor;
}
.whatsapp-float:hover { background: #17583a; transform: translateY(-3px); }

.lightbox {
  width: min(860px, calc(100% - 28px));
  max-height: 90vh;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 20px;
  background: transparent;
}

.lightbox::backdrop { background: rgba(39, 13, 15, .84); backdrop-filter: blur(6px); }
.lightbox img { width: 100%; max-height: 86vh; border-radius: 20px; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--wine-dark);
  font-size: 28px;
  cursor: pointer;
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.revealed { opacity: 1; transform: none; }
.reveal-delay { transition-delay: 140ms; }

@media (max-width: 980px) {
  .menu-toggle {
    z-index: 102;
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255,255,255,.65);
  }

  .menu-toggle span:not(.sr-only) { width: 18px; height: 1.5px; background: var(--wine); transition: transform 180ms ease, opacity 180ms ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(6.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-6.5px) rotate(-45deg); }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding: 90px 30px 40px;
    background: var(--blush-light);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .main-nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .main-nav > a:not(.button) { padding: 10px; font-family: var(--serif); font-size: 38px; font-weight: 400; text-align: center; }
  .main-nav .button { width: min(320px, 100%); margin: 10px auto 0; }

  .hero { min-height: auto; padding-top: 130px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .hero-gallery { min-height: 650px; }
  .hero-photo-main { width: 76%; height: 590px; }
  .hero-photo-small { width: 34%; height: 310px; }

  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .section-heading > p { max-width: 600px; }

  .product-grid { gap: 24px; }
  .product-card { grid-template-columns: 1fr; }
  .product-card.product-featured { grid-template-columns: 1fr 1fr; }
  .product-card:not(.product-featured) .product-image { min-height: 330px; }

  .about-grid { grid-template-columns: 1fr 1fr; gap: 60px; }
  .about-photo img { height: 520px; }

  .contact-card { grid-template-columns: 1fr; }
  .contact-actions { max-width: 430px; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1180px); }
  .header-inner { min-height: 72px; }
  .brand img { width: 43px; height: 43px; }
  .brand strong { font-size: 22px; }
  .brand small { font-size: 8px; }

  .hero { padding: 112px 0 64px; }
  .hero h1 { font-size: clamp(39px, 12.4vw, 54px); }
  .hero-text { margin-top: 22px; font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-points { display: grid; }

  .hero-gallery { min-height: 470px; }
  .hero-photo-main { width: 88%; height: 430px; border-radius: 180px 180px 22px 22px; }
  .hero-photo-small { width: 39%; height: 195px; border-width: 5px; }
  .hero-stamp { right: 0; bottom: -6px; width: 96px; height: 96px; }
  .hero-stamp strong { font-size: 24px; }

  .section { padding: 82px 0; }
  .section-heading { margin-bottom: 36px; }
  .section-heading h2 { font-size: 43px; }

  .product-grid { grid-template-columns: 1fr; }
  .product-card,
  .product-card.product-featured { grid-column: auto; grid-template-columns: 1fr; min-height: 0; }
  .product-card .product-image,
  .product-card:not(.product-featured) .product-image { min-height: 330px; }
  .product-featured .product-image { min-height: 360px; }
  .product-content,
  .product-featured .product-content { min-height: 270px; justify-content: flex-start; padding: 28px; }
  .product-number,
  .product-featured .product-number { margin: 0 0 28px; }
  .product-content h3,
  .product-featured .product-content h3 { margin-top: 0; font-size: 36px; }

  .about-grid { grid-template-columns: 1fr; }
  .about-photo { width: 88%; }
  .about-photo img { height: 480px; }
  .about-photo p { right: -34px; }
  .about-copy { padding-top: 10px; }
  .about-details { grid-template-columns: 1fr; }

  .contact-card { gap: 38px; padding: 46px 28px; border-radius: 26px; }
  .contact h2 { font-size: 46px; }
  .contact-mark { right: -15%; font-size: 390px; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .site-footer p { margin: 0; }

  .whatsapp-float { right: 14px; bottom: 14px; width: 54px; padding: 0; justify-content: center; }
  .whatsapp-float span { display: none; }
  .lightbox-close { top: -10px; right: -5px; }
}

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