@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --wine-900: #2b0c15;
  --wine-800: #4a1223;
  --wine-700: #6a1d30;
  --wine-600: #8a233d;
  --wine-500: #aa3b58;
  --wine-400: #c8748d;
  --blush: #f6e7ea;
  --cream: #f8f3f1;
  --paper: #fffdfc;
  --ink: #1d1315;
  --muted: #685a5d;
  --gold: #d9b77a;
  --gold-soft: #f1deba;
  --shadow: 0 30px 80px rgba(42, 8, 17, 0.18);
  --radius: 26px;
  --container: min(1220px, calc(100% - 40px));
  --section-space: clamp(72px, 8vw, 120px);
  --section-space-sm: clamp(56px, 6vw, 88px);
  --card-gap: clamp(18px, 2vw, 28px);
  --font-sans: "Manrope", "Segoe UI", sans-serif;
  --font-display: "Cormorant Garamond", "Georgia", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background:
    radial-gradient(circle at top, rgba(168, 56, 81, 0.12), transparent 35%),
    linear-gradient(180deg, #fff 0%, #f8f1f1 100%);
  line-height: 1.6;
}

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

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: var(--section-space) 0;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  font-family: var(--font-sans);
  margin-bottom: 12px;
}

.label::before {
  content: none;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 18px;
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-family: var(--font-display);
  font-weight: 600;
}

h1 {
  font-size: clamp(3.3rem, 5vw, 6rem);
  letter-spacing: -0.065em;
  line-height: 0.9;
}

h2 {
  font-size: clamp(2.6rem, 3vw, 4.1rem);
  letter-spacing: -0.06em;
}

h3 {
  font-size: clamp(1.7rem, 2vw, 2.45rem);
  letter-spacing: -0.05em;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1.04rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  background: rgba(24, 6, 12, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 50px rgba(20, 7, 10, 0.2);
  transition: transform 0.28s ease, box-shadow 0.25s ease, background 0.25s ease, min-height 0.25s ease;
}

.site-header.is-hidden {
  transform: translateY(-110%);
}

.site-header.is-scrolled {
  box-shadow: 0 14px 34px rgba(20, 7, 10, 0.28);
}

.site-header.is-scrolled .header-inner {
  min-height: 70px;
}

.site-header.is-scrolled .brand {
  font-size: 0.7rem;
}

.site-header.is-scrolled .main-nav a {
  letter-spacing: 0.12em;
}

.header-inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 20px;
  transition: min-height 0.25s ease;
}

.brand {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.brand-mark {
  display: none;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  margin-left: auto;
  flex: 1;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

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

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

@keyframes floatGlow {
  0%, 100% {
    transform: translateY(0px);
    box-shadow: 0 18px 40px rgba(92, 18, 37, 0.16);
  }
  50% {
    transform: translateY(-6px);
    box-shadow: 0 28px 50px rgba(92, 18, 37, 0.24);
  }
}

@keyframes kenburns {
  0% {
    transform: scale(1) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.08) translate3d(0, -10px, 0);
  }
  100% {
    transform: scale(1.14) translate3d(0, -18px, 0);
  }
}

@keyframes revealUp {
  0% {
    opacity: 0;
    transform: translateY(32px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

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

.hero-copy,
.hero-panel,
.card,
.feature-card,
.quote-box,
.contact-panel,
.contact-form {
  animation: fadeUp 0.8s ease both;
}

.hero-panel .info-card:nth-child(2) {
  animation-delay: 0.12s;
}

.hero-panel .info-card:nth-child(3) {
  animation-delay: 0.2s;
}

.quote-box:hover,
.info-card:hover {
  animation: floatGlow 2.6s ease-in-out infinite;
}

.btn-primary {
  background: linear-gradient(135deg, var(--wine-800), var(--wine-600));
  color: #fff;
  box-shadow: 0 18px 30px rgba(92, 18, 37, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 22px 38px rgba(92, 18, 37, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-light {
  background: var(--paper);
  color: var(--wine-900);
  box-shadow: 0 10px 24px rgba(30, 10, 18, 0.08);
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}

.hero {
  position: relative;
  background:
    linear-gradient(90deg, rgba(26, 7, 12, 0.88), rgba(26, 7, 12, 0.42)),
    url("https://images.unsplash.com/photo-1510812431401-41d2bd2722f3?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  color: #fff;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -8%;
  background:
    linear-gradient(90deg, rgba(26, 7, 12, 0.88), rgba(26, 7, 12, 0.42)),
    url("https://images.unsplash.com/photo-1510812431401-41d2bd2722f3?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  transform-origin: center center;
  animation: kenburns 16s ease-in-out infinite alternate;
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -15% -25% auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 183, 122, 0.28), transparent 60%);
  filter: blur(12px);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(24px, 3vw, 44px);
  align-items: center;
  width: var(--container);
  margin: 0 auto;
  padding: 100px 0 88px;
}

.hero-copy {
  max-width: 660px;
}

.hero-copy h1 {
  color: #fff;
  margin-bottom: 18px;
}

.hero-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.stat {
  padding: 20px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.stat strong,
.stat span {
  transition: transform 0.2s ease;
}

.stat:hover strong,
.stat:hover span {
  transform: translateY(-1px);
}

.stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
}

.stat span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.info-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(245, 236, 231, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 22px 38px rgba(15, 7, 10, 0.22);
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.compact-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(245, 236, 231, 0.14));
}

.info-card .meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
}

.info-card h3 {
  margin-bottom: 12px;
  color: #fff;
}

.info-card p {
  color: rgba(255, 255, 255, 0.78);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.8fr);
  align-items: end;
  gap: 24px;
  margin-bottom: clamp(24px, 3vw, 40px);
  padding-bottom: 18px;
  position: relative;
  border-bottom: 1px solid rgba(74, 18, 35, 0.12);
}

.section-head::after {
  content: "";
  width: 130px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  position: absolute;
  left: 0;
  bottom: -1px;
}

.section-head > div {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding-left: 20px;
}

.section-head > div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 12px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold), rgba(217, 183, 122, 0.18));
}

.section-head .label {
  margin-bottom: 14px;
  background: rgba(122, 29, 52, 0.06);
  border: 1px solid rgba(122, 29, 52, 0.12);
  color: var(--wine-800);
  padding-inline: 14px;
}

.quote-box .label {
  background: rgba(122, 29, 52, 0.06);
  border: 1px solid rgba(122, 29, 52, 0.12);
  color: var(--wine-800);
}

.section-head p {
  max-width: 560px;
  font-size: 1.06rem;
  color: var(--muted);
  justify-self: end;
  margin-bottom: 0;
}

.section-head h2 {
  max-width: 760px;
  margin-bottom: 0;
  position: relative;
  display: inline-block;
  font-size: clamp(2.8rem, 3vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

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

.card {
  background: var(--paper);
  border: 1px solid rgba(83, 35, 46, 0.08);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(25, 11, 14, 0.05);
  border-bottom: 3px solid rgba(122, 29, 52, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(25, 11, 14, 0.08);
  border-color: rgba(92, 18, 37, 0.12);
}

.card-media {
  position: relative;
  height: 220px;
  min-height: 220px;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-media img {
  transform: scale(1.06);
}

.card-body {
  padding: 26px 24px 24px;
}

.card-body .eyebrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wine-700);
  font-weight: 800;
}

.card-body p {
  margin-bottom: 0;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--card-gap);
  margin-top: 30px;
}

.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(246,236,232,0.98));
  border: 1px solid rgba(92, 18, 37, 0.08);
  border-radius: 26px;
  padding: 24px 22px 22px;
  box-shadow: 0 18px 36px rgba(42, 8, 17, 0.045);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(42, 8, 17, 0.08);
  border-color: rgba(92, 18, 37, 0.12);
}

.feature-card h3,
.card-body h3 {
  margin-top: 0;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--wine-800), var(--gold), transparent);
}

.feature-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(74, 18, 35, 0.08);
}

.feature-index {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
  color: rgba(122, 29, 52, 0.14);
  font-weight: 600;
}

.feature-main {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--wine-700), var(--wine-800));
  color: #fff;
  font-size: 1.7rem;
  box-shadow: 0 16px 26px rgba(74, 18, 35, 0.22);
  line-height: 1;
  position: relative;
  overflow: hidden;
}

.feature-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.16), transparent 70%);
}

.feature-icon i,
.feature-icon svg {
  display: inline-block;
  position: relative;
  z-index: 1;
  font-size: 1.6rem;
  line-height: 1;
  color: #fff !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  opacity: 1;
  visibility: visible;
}

.feature-copy {
  position: relative;
  z-index: 1;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.9rem, 2vw, 2.35rem);
  line-height: 1;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.highlight-band {
  background: linear-gradient(140deg, var(--wine-900), var(--wine-800));
  color: #fff;
}

.highlight-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.highlight-copy p,
.highlight-copy li {
  color: rgba(255, 255, 255, 0.78);
}

.highlight-copy ul {
  margin: 20px 0 0;
  padding-left: 20px;
}

.highlight-photo {
  position: relative;
  min-height: 420px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.highlight-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.quote {
  background:
    linear-gradient(90deg, rgba(17, 6, 10, 0.5), rgba(17, 6, 10, 0.3)),
    url("https://images.unsplash.com/photo-1510812431401-41d2bd2722f3?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

.quote-box {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 30px;
  padding: 34px 30px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 25px 40px rgba(22, 9, 12, 0.18);
}

.quote-box strong {
  color: var(--wine-800);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-cta {
  padding-top: 22px;
  padding-bottom: 18px;
}

.home-delivery-section {
  width: 100%;
  margin-bottom: 28px;
}

.home-delivery-wrap,
.home-map-wrap {
  width: var(--container);
  margin: 0 auto;
}

.home-delivery-wrap {
  max-width: 100%;
}

.home-cta-card {
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 246, 0.9));
  border: 1px solid rgba(92, 18, 37, 0.08);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 22px 40px rgba(52, 14, 23, 0.08);
}

.home-delivery {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(92, 18, 37, 0.9), rgba(120, 28, 45, 0.82)),
    url("https://images.unsplash.com/photo-1544025162-d76694265947?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
  color: #fff;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}

.home-delivery::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 7, 11, 0.28), rgba(20, 7, 11, 0));
}

.home-delivery > * {
  position: relative;
  z-index: 1;
}

.home-delivery .section-tag,
.home-map .section-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

.home-delivery .section-tag {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.88);
}

.home-delivery h2,
.home-map h2 {
  margin: 18px 0 10px;
  color: inherit;
}

.home-delivery p,
.home-map p {
  margin: 0;
  color: inherit;
}

.home-delivery .delivery-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.home-delivery .delivery-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 14px 22px;
  border-radius: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.home-delivery .delivery-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.12);
}

.delivery-uber {
  background: linear-gradient(135deg, #ffffff, #f6efe9);
  color: #1c0d12;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.delivery-pedidos {
  background: linear-gradient(135deg, #ffffff, #f6efe9);
  color: #1c0d12;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.home-map {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: center;
  color: var(--ink);
  min-height: 360px;
}

.home-map-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 18px;
}

.home-map .section-tag {
  background: rgba(92, 18, 37, 0.08);
  color: var(--wine-800);
}

.map-frame {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(92, 18, 37, 0.08);
  box-shadow: 0 18px 28px rgba(31, 12, 17, 0.06);
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 260px;
  border: 0;
}

.footer {
  background: #1b0c12;
  color: rgba(255, 255, 255, 0.76);
  padding: 72px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 28px;
}

.footer h4 {
  color: #fff;
  margin-bottom: 18px;
}

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

.footer a {
  color: rgba(255, 255, 255, 0.74);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(35, 9, 16, 0.8), rgba(35, 9, 16, 0.45)),
    url("https://images.unsplash.com/photo-1559339352-11d035aa65de?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  box-shadow: inset 0 -60px 90px rgba(13, 4, 7, 0.18);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: -8%;
  background:
    linear-gradient(90deg, rgba(35, 9, 16, 0.8), rgba(35, 9, 16, 0.45)),
    url("https://images.unsplash.com/photo-1559339352-11d035aa65de?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  transform-origin: center center;
  animation: kenburns 16s ease-in-out infinite alternate;
  z-index: -1;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  padding: 110px 0 70px;
}

.breadcrumbs {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 16px;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 38px;
}

.category-group {
  margin-bottom: 42px;
}

.category-header {
  margin-bottom: 20px;
}

.category-header h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.filter-btn {
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid rgba(92, 18, 37, 0.14);
  background: #fff;
  color: var(--wine-800);
  font-weight: 700;
  cursor: pointer;
}

.filter-btn.active {
  background: var(--wine-800);
  color: white;
  box-shadow: 0 16px 28px rgba(92, 18, 37, 0.16);
}

.menu-grid,
.product-grid,
.event-grid,
.team-grid,
.gallery-grid {
  display: grid;
  gap: 26px;
}

.menu-item,
.product-card,
.event-card,
.person-card,
.card,
.contact-panel,
.contact-form {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.menu-item:hover,
.product-card:hover,
.event-card:hover,
.person-card:hover,
.card:hover,
.contact-panel:hover,
.contact-form:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 45px rgba(38, 13, 20, 0.08);
}

.menu-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.menu-item {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(83, 35, 46, 0.08);
  box-shadow: 0 18px 26px rgba(31, 12, 17, 0.05);
}

.menu-item .menu-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
  margin-bottom: 12px;
}

.menu-item .price {
  font-weight: 800;
  color: var(--wine-800);
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(83, 35, 46, 0.08);
  box-shadow: 0 10px 26px rgba(31, 12, 17, 0.04);
}

.product-card .card-body {
  padding-top: 20px;
}

.product-card .meta-row,
.event-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--wine-700);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(125, 24, 48, 0.1);
  color: var(--wine-800);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.event-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(83, 35, 46, 0.08);
  overflow: hidden;
  box-shadow: 0 16px 28px rgba(31, 12, 17, 0.05);
}

.event-card .card-media {
  height: 230px;
  min-height: 230px;
}

.event-card .card-media img {
  transition: transform 0.5s ease;
}

.event-card:hover .card-media img {
  transform: scale(1.06);
}

.event-card .event-date {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  text-align: center;
  color: white;
  background: linear-gradient(135deg, var(--wine-800), var(--wine-600));
  border-radius: 18px;
  font-weight: 800;
  line-height: 1.1;
  box-shadow: 0 12px 22px rgba(92, 18, 37, 0.22);
  flex-shrink: 0;
}

.event-card .event-date span {
  display: block;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.event-card .card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px 20px 22px;
}

.event-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(83, 35, 46, 0.08);
}

.event-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.event-card .tag {
  align-self: flex-start;
}

.event-card h3 {
  margin: 0;
  font-size: clamp(1.5rem, 1.6vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.event-card p {
  margin: 0 0 18px;
  color: var(--muted);
  flex: 1;
}

.event-card .btn-light {
  align-self: flex-start;
  margin-top: auto;
  padding: 0.8rem 1.1rem;
  border-radius: 12px;
  font-weight: 700;
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 18px 28px rgba(31, 12, 17, 0.06);
}

.team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.person-card {
  background: #fff;
  border: 1px solid rgba(83, 35, 46, 0.08);
  border-radius: 22px;
  overflow: hidden;
}

.person-card .portrait {
  min-height: 300px;
  overflow: hidden;
}

.person-card .portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
}

.contact-panel,
.contact-form {
  background: #fff;
  border: 1px solid rgba(83, 35, 46, 0.08);
  border-radius: 28px;
  box-shadow: 0 18px 30px rgba(31, 12, 17, 0.05);
  padding: 30px;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.contact-item {
  display: flex;
  align-items: start;
  gap: 15px;
  color: var(--muted);
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(125, 24, 48, 0.08);
  color: var(--wine-800);
  font-size: 1.3rem;
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.94rem;
}

input,
textarea,
select {
  width: 100%;
  padding: 15px 16px;
  border-radius: 14px;
  border: 1px solid rgba(83, 35, 46, 0.12);
  background: #fff;
  color: var(--ink);
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(122, 29, 52, 0.18);
  border-color: rgba(122, 29, 52, 0.32);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.full-span {
  grid-column: 1 / -1;
}

.map-wrap {
  margin-top: 28px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 30px rgba(31, 12, 17, 0.06);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  min-height: 350px;
  border: 0;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(25, 12, 15, 0.92);
  color: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.25s ease;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 980px) {
  .main-nav {
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 18px 24px;
    background: rgba(32, 9, 15, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 0;
    border-radius: 0 0 22px 22px;
    box-shadow: 0 20px 30px rgba(17, 5, 9, 0.22);
  }

  .main-nav.open {
    display: flex;
  }

  .mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

  .header-actions .btn-secondary {
    display: none;
  }

  .hero-content,
  .highlight-content,
  .contact-grid,
  .grid-3,
  .feature-list,
  .menu-grid,
  .product-grid,
  .event-grid,
  .team-grid,
  .gallery-grid,
  .footer-grid,
  .home-map {
    grid-template-columns: 1fr;
  }

  .home-cta-card {
    padding: 24px 20px;
  }

  .home-delivery .delivery-actions {
    justify-content: center;
  }

  .footer {
    padding-top: 56px;
  }

  .footer-grid {
    gap: 22px;
  }

  .section-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 12px;
  }

  .section-head > div {
    padding-left: 0;
  }

  .section-head > div::before {
    display: none;
  }

  .section-head p {
    justify-self: start;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section {
    padding: 90px 0;
  }

  .page-hero {
    min-height: 360px;
  }

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

@media (max-width: 640px) {
  :root {
    --container: min(100% - 24px, 1220px);
  }

  .hero {
    min-height: 600px;
  }

  .hero-content {
    padding-top: 70px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .section-head {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 12px;
  }

  .feature-card,
  .card-body,
  .contact-panel,
  .contact-form {
    padding-left: 18px;
    padding-right: 18px;
  }

  .feature-main {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
  }

  .feature-icon {
    width: 58px;
    height: 58px;
    font-size: 1.35rem;
  }

  .home-cta {
    padding-top: 12px;
  }

  .home-cta-card {
    text-align: center;
  }

  .home-delivery .section-tag,
  .home-map .section-tag {
    margin-inline: auto;
  }

  .home-delivery .delivery-actions {
    justify-content: center;
  }

  .footer {
    padding: 48px 0 18px;
    text-align: center;
  }

  .footer-grid {
    gap: 18px;
  }

  .footer h4 {
    margin-bottom: 10px;
  }

  .footer ul {
    gap: 8px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    padding-top: 18px;
    margin-top: 18px;
  }

  .footer-grid > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-grid p {
    margin-inline: auto;
  }
}
