:root {
  /* Paleta alinhada com o logotipo e a identidade da Quinta Picouto de Cima */
  --burgundy: #877751;        /* bronze quente (cor primária) */
  --burgundy-light: #A89167;
  --burgundy-deep: #5C4F31;
  --gold: #A88646;            /* dourado do logotipo (colunas) */
  --gold-light: #C9A35E;
  --cream: #F5EFE3;
  --cream-dark: #E8DFC9;
  --vine: #3B6D11;
  --vine-deep: #173404;
  --ink: #383F48;             /* cinza-ardósia (texto principal) */
  --stone: #6B645B;
  --paper: #FBF8F1;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
.serif { font-family: 'Playfair Display', serif; }

/* === NAV === */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(251, 248, 241, 0);
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
nav.scrolled, nav.solid {
  background: rgba(251, 248, 241, 0.97);
  padding: 12px 48px;
  box-shadow: 0 1px 0 rgba(26, 22, 20, 0.06);
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-img {
  height: 52px;
  width: auto;
  display: block;
  background: rgba(245, 239, 227, 0.92);
  padding: 6px 12px;
  border-radius: 3px;
  transition: background 0.4s ease, padding 0.4s ease, height 0.4s ease;
}
nav.scrolled .logo-img, nav.solid .logo-img {
  background: transparent;
  padding: 0;
  height: 46px;
}
.nav-menu {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-menu a {
  color: white;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
nav.scrolled .nav-menu a, nav.solid .nav-menu a { color: var(--ink); }
.nav-menu a:hover { color: var(--gold-light); }
nav.scrolled .nav-menu a:hover, nav.solid .nav-menu a:hover { color: var(--burgundy); }
.nav-menu a.active { color: var(--gold-light); }
nav.scrolled .nav-menu a.active, nav.solid .nav-menu a.active { color: var(--burgundy); }
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.3s;
}
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.lang-switch {
  display: flex;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 1px;
  color: white;
}
nav.scrolled .lang-switch, nav.solid .lang-switch { color: var(--stone); }
.lang-switch a {
  cursor: pointer;
  transition: opacity 0.3s;
  text-decoration: none;
  color: inherit;
}
.lang-switch .active { color: var(--gold-light); }
nav.scrolled .lang-switch .active, nav.solid .lang-switch .active { color: var(--burgundy); }
.lang-switch .sep { opacity: 0.4; }

.btn-reserve {
  padding: 10px 22px;
  background: var(--burgundy);
  color: var(--cream);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--burgundy);
  transition: all 0.3s;
}
.btn-reserve:hover {
  background: var(--burgundy-deep);
  border-color: var(--burgundy-deep);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
}
nav.scrolled .mobile-toggle, nav.solid .mobile-toggle { color: var(--ink); }

/* === BUTTONS === */
.btn {
  padding: 16px 32px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  border: 1px solid;
  font-family: inherit;
}
.btn-primary {
  background: var(--gold);
  color: #2A2014;
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 239, 227, 0.4);
}
.btn-ghost:hover {
  background: rgba(245, 239, 227, 0.08);
  border-color: var(--cream);
}
.btn-outline {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--burgundy);
}
.btn-outline:hover {
  background: var(--burgundy);
  color: var(--cream);
}
.btn i { font-size: 14px; }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(42, 15, 6, 0.55) 0%, rgba(26, 22, 20, 0.45) 50%, rgba(23, 52, 4, 0.55) 100%),
    linear-gradient(180deg, #2A0F06 0%, #4A1B0C 40%, #173404 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 48px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
}
.hero-bg svg { width: 100%; height: 100%; }
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.08;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--cream);
  max-width: 720px;
  animation: rise 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-tag {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold-light);
  margin-bottom: 28px;
  text-transform: uppercase;
}
.hero-tag::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold-light);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--cream-dark);
  display: block;
  font-size: 0.85em;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
  opacity: 0.88;
  font-weight: 300;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-trust {
  position: absolute;
  bottom: 40px; right: 48px;
  display: flex;
  gap: 28px;
  color: var(--cream);
  font-size: 11px;
  letter-spacing: 1px;
  opacity: 0.85;
  z-index: 2;
}
.hero-trust .tr {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.hero-trust .val {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1;
}
.hero-trust .lbl {
  font-size: 9px;
  letter-spacing: 2px;
  margin-top: 4px;
  text-transform: uppercase;
  opacity: 0.7;
}

/* === PAGE HEADER (interior pages) === */
.page-header {
  position: relative;
  padding: 200px 48px 100px;
  background:
    linear-gradient(135deg, rgba(42, 15, 6, 0.6), rgba(26, 22, 20, 0.5)),
    linear-gradient(180deg, var(--burgundy-deep), var(--burgundy));
  color: var(--cream);
  text-align: center;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.1;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.page-header-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.page-header .eyebrow { color: var(--gold-light); justify-content: center; margin-bottom: 20px; }
.page-header .eyebrow::before, .page-header .eyebrow::after { background: var(--gold-light); opacity: 0.5; }
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 18px;
}
.page-header h1 em { font-style: italic; color: var(--gold-light); }
.page-header p {
  font-size: 17px;
  opacity: 0.85;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* === SECTION === */
.section { padding: 120px 48px; }
.section-dark { background: var(--ink); color: var(--cream); }
.section-cream { background: var(--cream); }
.section-paper { background: var(--paper); }

.section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 70px;
}
.section-head.align-left { text-align: left; margin: 0 0 50px; }
.eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--burgundy);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--burgundy);
  opacity: 0.4;
}
.section-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 18px;
}
.section-head h2 em { font-style: italic; color: var(--burgundy); }
.section-head p {
  color: var(--stone);
  font-size: 15px;
  line-height: 1.7;
}
.section-dark .section-head h2 { color: var(--cream); }
.section-dark .section-head h2 em { color: var(--gold-light); }
.section-dark .section-head p { color: rgba(245, 239, 227, 0.7); }
.section-dark .eyebrow { color: var(--gold-light); }
.section-dark .eyebrow::before, .section-dark .eyebrow::after { background: var(--gold-light); opacity: 0.5; }

/* === EXPERIENCES === */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
}
.exp-card {
  background: white;
  overflow: hidden;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s;
  border: 1px solid rgba(26, 22, 20, 0.06);
  text-decoration: none;
  color: inherit;
  display: block;
}
.exp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(74, 27, 12, 0.18);
}
.exp-card.featured { border: 1px solid var(--burgundy); }
.exp-badge {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--gold);
  color: var(--burgundy-deep);
  font-size: 9px;
  letter-spacing: 2px;
  padding: 6px 12px;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 2;
}
.exp-image {
  height: 280px;
  position: relative;
  overflow: hidden;
}
.exp-image.wines {
  background:
    radial-gradient(circle at 30% 40%, rgba(186, 117, 23, 0.3), transparent 50%),
    linear-gradient(160deg, var(--burgundy) 0%, var(--burgundy-light) 60%, var(--burgundy-deep) 100%);
}
.exp-image.stay {
  background:
    radial-gradient(circle at 70% 30%, rgba(245, 239, 227, 0.15), transparent 50%),
    linear-gradient(160deg, var(--vine) 0%, var(--vine-deep) 100%);
}
.exp-image.tasting {
  background:
    radial-gradient(circle at 50% 50%, rgba(245, 239, 227, 0.2), transparent 60%),
    linear-gradient(160deg, var(--gold-light) 0%, var(--gold) 50%, #6B4209 100%);
}
.exp-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 64px;
  opacity: 0.9;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.exp-card:hover .exp-icon { transform: scale(1.15) rotate(-3deg); }
.exp-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/></svg>");
  opacity: 0.1;
  mix-blend-mode: overlay;
}
.exp-body { padding: 32px 28px; }
.exp-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--ink);
}
.exp-body p {
  color: var(--stone);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 22px;
}
.exp-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid rgba(26, 22, 20, 0.08);
}
.exp-price {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--stone);
  font-size: 15px;
}
.exp-price strong {
  color: var(--burgundy);
  font-weight: 600;
  font-size: 18px;
  font-style: normal;
  font-family: 'Poppins', sans-serif;
}
.exp-link {
  color: var(--burgundy);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
  font-weight: 500;
}
.exp-card:hover .exp-link { gap: 12px; }

/* === STORY === */
.story-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.story-text .eyebrow { justify-content: flex-start; }
.story-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 28px;
  color: var(--ink);
}
.story-text h2 em {
  font-style: italic;
  color: var(--burgundy);
  display: block;
}
.story-text p {
  color: var(--stone);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 18px;
}
.story-text .lead {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--burgundy);
  line-height: 1.6;
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  margin: 28px 0;
}
.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(26, 22, 20, 0.1);
}
.stat .n {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: var(--burgundy);
  line-height: 1;
  font-style: italic;
}
.stat .l {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 8px;
}
.story-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  aspect-ratio: 1;
}
.story-img {
  position: relative;
  overflow: hidden;
  background: var(--burgundy);
}
.story-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'><filter id='n'><feTurbulence baseFrequency='0.7'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/></svg>");
  mix-blend-mode: overlay;
  opacity: 0.3;
}
.story-img.a { background: linear-gradient(135deg, var(--vine), var(--vine-deep)); grid-row: 1 / 3; }
.story-img.b { background: linear-gradient(135deg, var(--burgundy), var(--burgundy-deep)); }
.story-img.c { background: linear-gradient(135deg, var(--gold), #6B4209); }

/* === WINES === */
.wine-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.wine {
  text-align: center;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.wine:hover { transform: translateY(-8px); }
.bottle-wrap {
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
}
.bottle {
  width: 60px;
  height: 280px;
  position: relative;
  transition: transform 0.5s;
}
.bottle .neck {
  width: 22px;
  height: 70px;
  margin: 0 auto;
  border-radius: 3px 3px 0 0;
}
.bottle .body {
  width: 60px;
  height: 210px;
  border-radius: 6px 6px 12px 12px;
  position: relative;
  overflow: hidden;
}
.bottle.red .neck { background: linear-gradient(90deg, #2A0F06, #4A1B0C, #2A0F06); }
.bottle.red .body { background: linear-gradient(90deg, #2A0F06, #4A1B0C 50%, #2A0F06); }
.bottle.white .neck { background: linear-gradient(90deg, #4D5B2E, #7A8C4A, #4D5B2E); }
.bottle.white .body { background: linear-gradient(90deg, #4D5B2E, #7A8C4A 50%, #4D5B2E); }
.bottle.rose .neck { background: linear-gradient(90deg, #8C3A52, #C4607E, #8C3A52); }
.bottle.rose .body { background: linear-gradient(90deg, #8C3A52, #C4607E 50%, #8C3A52); }
.bottle .label {
  position: absolute;
  top: 90px; left: 8px; right: 8px;
  background: var(--cream);
  padding: 14px 6px;
  text-align: center;
  color: var(--burgundy-deep);
}
.bottle .label .lname {
  font-family: 'Playfair Display', serif;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1;
}
.bottle .label .lyear {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 11px;
  margin-top: 4px;
  color: var(--burgundy);
}
.bottle .label::before {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: var(--burgundy);
  margin: 0 auto 5px;
}
.wine:hover .bottle { transform: rotate(-3deg) scale(1.05); }
.wine h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 6px;
}
.wine .wtype {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.wine .wdesc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(245, 239, 227, 0.7);
  max-width: 240px;
  margin: 0 auto 20px;
}
.wine .wprice {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--gold-light);
}

/* === WINE DETAILED CARDS (page) === */
.wine-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
}
.wine-detail {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: center;
  background: white;
  padding: 50px;
  border: 1px solid rgba(26, 22, 20, 0.06);
}
.wine-detail .bottle-wrap { height: 380px; margin: 0; }
.wine-detail .bottle { width: 75px; height: 340px; }
.wine-detail .bottle .neck { width: 28px; height: 85px; }
.wine-detail .bottle .body { width: 75px; height: 255px; }
.wine-detail .bottle .label { top: 110px; padding: 18px 8px; }
.wine-detail .bottle .label .lname { font-size: 11px; }
.wine-detail .bottle .label .lyear { font-size: 14px; }

.wine-info .wd-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.wine-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--ink);
}
.wine-info h3 em { font-style: italic; color: var(--burgundy); }
.wine-info > p {
  color: var(--stone);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
}
.wine-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
  padding: 22px 0;
  border-top: 1px solid rgba(26, 22, 20, 0.1);
  border-bottom: 1px solid rgba(26, 22, 20, 0.1);
  margin-bottom: 24px;
}
.wine-specs .sp { font-size: 13px; }
.wine-specs .sp .k {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 4px;
}
.wine-specs .sp .v {
  color: var(--ink);
  font-weight: 500;
}
.wine-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.wine-price-row .price {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--burgundy);
  font-style: italic;
}
.wine-price-row .price small {
  font-size: 13px;
  color: var(--stone);
  font-style: normal;
  font-family: 'Poppins', sans-serif;
  margin-left: 8px;
}

/* === STAY / ROOM DETAIL === */
.stay-hero-grid {
  max-width: 1200px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.stay-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--ink);
}
.stay-text h2 em { font-style: italic; color: var(--burgundy); display: block; }
.stay-text p {
  color: var(--stone);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 18px;
}
.stay-img {
  height: 480px;
  background:
    radial-gradient(circle at 30% 70%, rgba(245, 239, 227, 0.1), transparent 60%),
    linear-gradient(160deg, var(--vine), var(--vine-deep));
  position: relative;
  overflow: hidden;
}
.stay-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.85'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/></svg>");
  opacity: 0.12;
  mix-blend-mode: overlay;
}

.amenities-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.amenity {
  text-align: center;
  padding: 32px 18px;
}
.amenity i {
  font-size: 36px;
  color: var(--burgundy);
  margin-bottom: 14px;
}
.amenity h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--ink);
}
.amenity p {
  font-size: 13px;
  color: var(--stone);
  line-height: 1.6;
}

/* === PROVAS / TASTING PACKAGES === */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.package {
  background: white;
  padding: 44px 36px;
  border: 1px solid rgba(26, 22, 20, 0.08);
  position: relative;
  transition: transform 0.4s, box-shadow 0.4s;
}
.package:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(74, 27, 12, 0.18);
}
.package.featured {
  background: var(--burgundy);
  color: var(--cream);
  border-color: var(--burgundy);
  transform: scale(1.03);
}
.package.featured:hover { transform: scale(1.03) translateY(-6px); }
.pkg-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--burgundy-deep);
  font-size: 9px;
  letter-spacing: 2px;
  padding: 6px 14px;
  text-transform: uppercase;
  font-weight: 500;
}
.pkg-name {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 8px;
}
.pkg-tag {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.package.featured .pkg-tag { color: var(--gold-light); }
.pkg-price {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-style: italic;
  color: var(--burgundy);
  line-height: 1;
  margin-bottom: 4px;
}
.package.featured .pkg-price { color: var(--gold-light); }
.pkg-price-unit {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--stone);
  margin-bottom: 32px;
}
.package.featured .pkg-price-unit { color: rgba(245, 239, 227, 0.7); }
.pkg-features {
  list-style: none;
  margin-bottom: 32px;
}
.pkg-features li {
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(26, 22, 20, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.package.featured .pkg-features li { border-bottom-color: rgba(245, 239, 227, 0.15); }
.pkg-features li i {
  color: var(--burgundy);
  flex-shrink: 0;
  margin-top: 3px;
}
.package.featured .pkg-features li i { color: var(--gold-light); }
.pkg-features li:last-child { border-bottom: none; }
.package .btn-outline { width: 100%; justify-content: center; }
.package.featured .btn-outline {
  background: var(--gold);
  color: var(--burgundy-deep);
  border-color: var(--gold);
}
.package.featured .btn-outline:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--burgundy-deep);
}

/* === REVIEWS === */
.rating-head {
  text-align: center;
  margin-bottom: 60px;
}
.stars-big {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--gold);
  letter-spacing: 6px;
  margin-bottom: 10px;
}
.rating-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
}
.rating-head h2 em { font-style: italic; color: var(--burgundy); }
.rating-meta {
  color: var(--stone);
  font-size: 13px;
  letter-spacing: 1px;
}
.rating-meta strong { color: var(--burgundy); font-weight: 600; }
.reviews-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review {
  background: white;
  padding: 36px 30px;
  border-left: 2px solid var(--gold);
  position: relative;
}
.review .quote-mark {
  position: absolute;
  top: 16px; right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: var(--burgundy);
  opacity: 0.1;
  line-height: 1;
}
.review .stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 18px;
  font-size: 14px;
}
.review p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 22px;
}
.review .author {
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0.5px;
}
.review .source {
  font-size: 10px;
  color: var(--stone);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* === CTA BAND === */
.cta-band {
  padding: 80px 48px;
  background:
    linear-gradient(135deg, rgba(42, 15, 6, 0.85), rgba(74, 27, 12, 0.85)),
    linear-gradient(180deg, var(--burgundy), var(--burgundy-deep));
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.85'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.1;
  mix-blend-mode: overlay;
}
.cta-band-inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 18px;
}
.cta-band h2 em { font-style: italic; color: var(--gold-light); }
.cta-band p {
  font-size: 16px;
  opacity: 0.85;
  margin-bottom: 36px;
  line-height: 1.7;
}

/* === CONTACT === */
.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}
.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 24px;
}
.contact-info h2 em { font-style: italic; color: var(--burgundy); display: block; }
.contact-info > p {
  color: var(--stone);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 36px;
}
.contact-items { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact-item .ci-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-item .ci-body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
}
.contact-item .ci-body p, .contact-item .ci-body a {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.6;
  text-decoration: none;
}
.contact-item .ci-body a:hover { color: var(--burgundy); }

.contact-form {
  background: white;
  padding: 48px;
  border: 1px solid rgba(26, 22, 20, 0.08);
}
.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 28px;
  color: var(--ink);
}
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(26, 22, 20, 0.2);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-bottom-color: var(--burgundy);
}
.field textarea { resize: vertical; min-height: 100px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form button { width: 100%; justify-content: center; }

/* === GALLERY === */
.gallery-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.g-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s;
}
.g-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.85'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.12;
  mix-blend-mode: overlay;
}
.g-item:hover { transform: scale(0.98); }
.g-item .g-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 18px;
  background: linear-gradient(180deg, transparent, rgba(26, 22, 20, 0.75));
  color: var(--cream);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 2;
}
.g-item:hover .g-cap { opacity: 1; }
.g-cap .lab {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-style: italic;
}
.g-cap .sub {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 4px;
}
.g-photo {
  background-size: cover;
  background-position: center;
  background-color: var(--cream);
  text-decoration: none;
}
.g-photo:nth-child(7n+1) { grid-column: span 2; grid-row: span 2; }
.g-photo:nth-child(7n+4) { grid-column: span 2; }
.g-vine { background: linear-gradient(135deg, var(--vine), var(--vine-deep)); grid-column: span 2; grid-row: span 2; }
.g-wine { background: linear-gradient(135deg, var(--burgundy), var(--burgundy-deep)); }
.g-cellar { background: linear-gradient(135deg, var(--burgundy-light), var(--burgundy)); }
.g-house { background: linear-gradient(135deg, var(--gold), #6B4209); grid-column: span 2; }
.g-event { background: linear-gradient(135deg, var(--ink), var(--stone)); }
.g-interior { background: linear-gradient(135deg, var(--burgundy-deep), var(--ink)); }
.g-grapes { background: linear-gradient(135deg, var(--vine-deep), #0C2200); }
.g-bottles { background: linear-gradient(135deg, var(--burgundy), var(--gold)); }

/* === FOOTER === */
footer {
  background: var(--ink);
  color: rgba(245, 239, 227, 0.65);
  padding: 80px 48px 30px;
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(245, 239, 227, 0.1);
}
.footer-brand .logo-img-sm {
  height: 64px;
  width: auto;
  display: block;
  background: var(--paper);
  padding: 6px 12px;
  border-radius: 3px;
  margin-bottom: 22px;
}
.footer-brand .fname {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 6px;
}
.footer-brand .fsince {
  font-size: 10px;
  letter-spacing: 3px;
  margin-bottom: 22px;
}
.footer-brand address {
  font-style: normal;
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 24px;
}
.footer-brand address a { color: inherit; text-decoration: none; }
.footer-brand address a:hover { color: var(--gold-light); }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(245, 239, 227, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 239, 227, 0.7);
  text-decoration: none;
  transition: all 0.3s;
}
.socials a:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(186, 117, 23, 0.1);
}
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--cream);
  font-weight: 500;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; font-size: 13px; }
.footer-col a {
  color: rgba(245, 239, 227, 0.65);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold-light); }
.newsletter p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.news-form {
  display: flex;
  border: 1px solid rgba(245, 239, 227, 0.2);
}
.news-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 14px;
  color: var(--cream);
  font-family: inherit;
  font-size: 13px;
  outline: none;
}
.news-form input::placeholder { color: rgba(245, 239, 227, 0.4); }
.news-form button {
  background: var(--burgundy);
  border: none;
  color: var(--cream);
  padding: 0 18px;
  cursor: pointer;
  transition: background 0.3s;
}
.news-form button:hover { background: var(--burgundy-light); }
.footer-bottom {
  max-width: 1280px;
  margin: 30px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 1px;
}
.footer-bottom .legal { display: flex; gap: 24px; }
.footer-bottom a { color: rgba(245, 239, 227, 0.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold-light); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  nav.scrolled, nav.solid { padding: 12px 24px; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--paper);
    padding: 24px;
    gap: 18px;
    border-top: 1px solid rgba(26, 22, 20, 0.08);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { color: var(--ink); }
  .mobile-toggle { display: block; }
  .hero, .page-header { padding-left: 24px; padding-right: 24px; }
  .page-header { padding-top: 140px; padding-bottom: 70px; }
  .hero-trust { right: 24px; bottom: 24px; gap: 18px; }
  .section, footer, .cta-band { padding-left: 24px; padding-right: 24px; }
  .section { padding-top: 80px; padding-bottom: 80px; }
  .exp-grid, .reviews-grid, .wine-grid, .packages-grid { grid-template-columns: 1fr; gap: 24px; }
  .story-grid, .stay-hero-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  footer { padding: 60px 24px 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .wine-detail { grid-template-columns: 1fr; gap: 30px; padding: 36px 28px; text-align: center; }
  .wine-detail .bottle-wrap { margin: 0 auto; }
  .wine-specs { text-align: left; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .package.featured { transform: none; }
  .package.featured:hover { transform: translateY(-6px); }
  .field-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .story-stats { grid-template-columns: 1fr; gap: 18px; }
  .hero-trust { display: none; }
  .amenities-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .g-vine, .g-house { grid-column: span 1; }
  .g-vine { grid-row: span 1; }
}
