:root {
  --wine: #8b4f6e;
  --wine-deep: #6d3d56;
  --wine-soft: #c77a9a;
  --ink: #1a1218;
  --paper: #faf7f8;
  --paper-2: #f3e8ed;
  --cream: #fff9fb;
  --text-on-dark: #f5e6ef;
  --text-body: #2a1f26;
  --muted: #5c4a54;
  --shadow: 0 18px 50px rgba(26, 18, 24, 0.12);
  --radius: 14px;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--paper);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--wine-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--wine);
}

h1,
h2,
h3,
.display {
  font-family: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 0 0 0.5rem;
}

h2 {
  font-size: clamp(1.85rem, 3.6vw, 2.6rem);
  margin: 0 0 1rem;
}

h3 {
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}

p {
  margin: 0 0 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 247, 248, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(139, 79, 110, 0.18);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
  font-family: "Palatino Linotype", Palatino, Georgia, serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.brand img {
  width: 44px;
  height: 44px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  align-items: center;
}

.nav a {
  font-weight: 500;
  color: var(--text-body);
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--wine-deep);
  border-bottom-color: var(--wine);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(139, 79, 110, 0.35);
  background: var(--cream);
  border-radius: 10px;
  padding: 0.45rem 0.6rem;
  cursor: pointer;
  color: var(--wine-deep);
}

.menu-toggle i {
  font-size: 1.5rem;
  vertical-align: middle;
}

.disclaimer-bar {
  background: var(--ink);
  color: var(--text-on-dark);
  font-size: 0.92rem;
  line-height: 1.5;
}

.disclaimer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.65rem 1.25rem;
  line-height: 1.45;
}

.section {
  padding: clamp(2.5rem, 5vw, 4.5rem) 1.25rem;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-muted {
  background: var(--paper-2);
  color: var(--text-body);
}

.section-dark {
  background: linear-gradient(145deg, #2a1d26 0%, #1a1218 55%, #241a22 100%);
  color: var(--text-on-dark);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark .display {
  color: var(--text-on-dark);
}

.section-dark a {
  color: #f0d0e0;
}

.section-dark a:hover {
  color: #fff;
}

.section-accent {
  background: linear-gradient(180deg, var(--cream) 0%, #efe2e8 100%);
}

.section-wine {
  background: linear-gradient(135deg, var(--wine) 0%, var(--wine-deep) 100%);
  color: var(--text-on-dark);
}

.section-wine h1,
.section-wine h2,
.section-wine h3 {
  color: var(--text-on-dark);
}

#cta.section-wine .section-inner {
  background: rgba(255, 249, 251, 0.97);
  border-radius: 22px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: 0 18px 50px rgba(26, 18, 24, 0.14);
  border: 1px solid rgba(139, 79, 110, 0.16);
  color: var(--text-body);
}

#cta.section-wine .section-inner h2 {
  color: var(--ink);
}

#cta.section-wine .section-inner .lead {
  color: var(--muted);
}

#cta.section-wine .section-inner .tag {
  color: var(--wine-deep);
}

#cta.section-wine .section-inner .icon-accent {
  color: var(--wine);
}

#cta.section-wine .section-inner .btn-ghost {
  border-color: rgba(139, 79, 110, 0.35);
  color: var(--wine-deep);
}

#cta.section-wine .section-inner .btn-ghost:hover {
  background: rgba(139, 79, 110, 0.08);
  color: var(--wine);
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
}

.section-dark .lead,
.section-wine .lead {
  color: rgba(245, 230, 239, 0.88);
}

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: stretch;
  position: relative;
  color: var(--text-on-dark);
  background: #1a1218;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.95) brightness(0.55);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(26, 18, 24, 0.82) 0%, rgba(139, 79, 110, 0.45) 45%, rgba(26, 18, 24, 0.78) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 6.5rem 1.25rem 4rem;
  display: grid;
  gap: 2rem;
  align-content: center;
}

.hero-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: end;
  }
}

.hero h1 {
  color: var(--text-on-dark);
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
}

.hero .lead {
  color: rgba(245, 230, 239, 0.92);
  max-width: 38ch;
}

.card-surface {
  background: rgba(255, 249, 251, 0.08);
  border: 1px solid rgba(245, 230, 239, 0.22);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  backdrop-filter: blur(8px);
}

.card-surface label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: rgba(245, 230, 239, 0.92);
}

.input,
.textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(245, 230, 239, 0.35);
  background: rgba(26, 18, 24, 0.35);
  color: var(--text-on-dark);
  font: inherit;
}

.input::placeholder,
.textarea::placeholder {
  color: rgba(245, 230, 239, 0.45);
}

.textarea {
  min-height: 140px;
  resize: vertical;
}

.form-actions {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.checkbox-row {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.95rem;
  margin: 0.75rem 0 0;
}

.checkbox-row input {
  margin-top: 0.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--wine-soft);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--wine-soft), var(--wine));
  color: #fff;
  box-shadow: 0 10px 30px rgba(139, 79, 110, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(139, 79, 110, 0.45);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  border-color: rgba(245, 230, 239, 0.45);
  color: var(--text-on-dark);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn-dark {
  background: var(--ink);
  color: var(--text-on-dark);
  border-color: rgba(139, 79, 110, 0.35);
}

.btn-dark:hover {
  background: #2a1f28;
  color: #fff;
}

.btn-light {
  background: var(--cream);
  color: var(--wine-deep);
  border-color: rgba(139, 79, 110, 0.25);
}

.btn-light:hover {
  background: #fff;
  color: var(--wine);
}

.icon-accent {
  color: var(--wine);
  vertical-align: middle;
}

.section-dark .icon-accent,
.hero .icon-accent {
  color: #ffd8ea;
}

.split {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 800px) {
  .split-2 {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .split-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.feature-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 12px;
  border: 1px solid rgba(139, 79, 110, 0.12);
}

.section-dark .feature-list li {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(245, 230, 239, 0.12);
}

.feature-list i {
  font-size: 1.35rem;
  margin-top: 0.1rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.pill-list li {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(139, 79, 110, 0.12);
  color: var(--wine-deep);
  font-weight: 500;
  font-size: 0.95rem;
}

.section-dark .pill-list li {
  background: rgba(255, 249, 251, 0.94);
  color: var(--text-body);
  border: 1px solid rgba(139, 79, 110, 0.2);
}

.section-wine .pill-list li {
  background: rgba(255, 249, 251, 0.94);
  color: var(--text-body);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 1rem;
  color: var(--text-body);
}

.steps li {
  position: relative;
  padding: 1rem 1rem 1rem 3.25rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(139, 79, 110, 0.14);
  box-shadow: var(--shadow);
  color: var(--text-body);
}

.steps li strong {
  color: var(--ink);
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--wine);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  display: grid;
  place-items: center;
}

.quote-panel {
  border-left: 4px solid var(--wine);
  padding: 1rem 1.25rem;
  background: rgba(139, 79, 110, 0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.25rem 0;
}

.section-dark .quote-panel {
  background: rgba(255, 255, 255, 0.06);
  border-left-color: var(--wine-soft);
}

.visual-block {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(139, 79, 110, 0.18);
}

.visual-block figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.92rem;
  color: var(--muted);
  background: #fff;
}

.section-dark .visual-block figcaption {
  background: #241a22;
  color: rgba(245, 230, 239, 0.8);
}

.table-wrap {
  overflow-x: auto;
  margin: 1rem 0;
  border-radius: var(--radius);
  border: 1px solid rgba(139, 79, 110, 0.16);
  color: var(--text-body);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
  background: #fff;
  color: var(--text-body);
}

th,
td {
  padding: 0.75rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid rgba(139, 79, 110, 0.12);
  color: var(--text-body);
}

th {
  background: var(--paper-2);
  font-weight: 600;
}

.faq details {
  border-radius: 12px;
  border: 1px solid rgba(139, 79, 110, 0.16);
  padding: 0.75rem 1rem;
  background: #fff;
  margin-bottom: 0.65rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details[open] {
  background: var(--cream);
}

.footer {
  background: #120d11;
  color: rgba(245, 230, 239, 0.82);
  padding: 2.5rem 1.25rem;
}

.footer a {
  color: #f0d0e0;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

.footer small {
  display: block;
  margin-top: 0.35rem;
  color: rgba(245, 230, 239, 0.55);
}

.cookie-banner {
  position: fixed;
  z-index: 60;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
  box-sizing: border-box;
  max-height: min(55vh, 22rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-inner {
  max-width: var(--max);
  margin: 0 auto;
  min-width: 0;
  background: #fff;
  color: var(--text-body);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  box-shadow: 0 -8px 40px rgba(26, 18, 24, 0.18);
  border: 1px solid rgba(139, 79, 110, 0.2);
  display: grid;
  gap: 1rem;
}

.cookie-text {
  min-width: 0;
  overflow-wrap: anywhere;
}

.cookie-text-note {
  margin: 0 0 0.45rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

.cookie-text-main {
  margin: 0;
}

@media (min-width: 720px) {
  .cookie-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .cookie-actions {
    justify-self: end;
    flex-shrink: 0;
  }
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: stretch;
}

@media (min-width: 480px) {
  .cookie-actions {
    justify-content: flex-end;
  }
}

@media (max-width: 479px) {
  .cookie-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.dialog-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 18, 24, 0.55);
  z-index: 70;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.dialog-overlay.is-open {
  display: flex;
}

.dialog {
  background: #fff;
  color: var(--text-body);
  max-width: 520px;
  width: 100%;
  border-radius: var(--radius);
  padding: 1.25rem;
  max-height: min(90vh, 640px);
  overflow: auto;
  box-shadow: var(--shadow);
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(139, 79, 110, 0.12);
}

.switch {
  position: relative;
  width: 46px;
  height: 26px;
  display: inline-block;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #c8b8c0;
  border-radius: 999px;
  transition: 0.2s;
}

.slider::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.2s;
}

.switch input:checked + .slider {
  background: var(--wine);
}

.switch input:checked + .slider::before {
  transform: translateX(20px);
}

.switch input:disabled + .slider {
  opacity: 0.55;
  cursor: not-allowed;
}

.map-embed {
  border: 0;
  width: 100%;
  height: 420px;
  border-radius: var(--radius);
  filter: grayscale(0.1) contrast(1.02);
}

.map-consent-box {
  background: rgba(255, 249, 251, 0.08);
  border: 1px solid rgba(245, 230, 239, 0.22);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}

.map-consent-box p {
  margin: 0 0 1rem;
  color: rgba(245, 230, 239, 0.92);
  font-size: 0.98rem;
  line-height: 1.5;
}

.map-consent-box a {
  color: #f0d0e0;
}

.section-muted .map-consent-box {
  background: rgba(139, 79, 110, 0.08);
  border-color: rgba(139, 79, 110, 0.2);
}

.section-muted .map-consent-box p {
  color: var(--text-body);
}

.section-muted .map-consent-box a {
  color: var(--wine-deep);
}

.map-container[hidden] {
  display: none !important;
}

.footer-compliance {
  display: block;
  margin-top: 0.75rem;
  max-width: 52rem;
  line-height: 1.45;
  color: rgba(245, 230, 239, 0.55);
  font-size: 0.82rem;
}

.footer-compliance a {
  color: rgba(240, 208, 224, 0.85);
}

.grid-cards {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.info-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid rgba(139, 79, 110, 0.14);
  box-shadow: var(--shadow);
}

.section-dark .info-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(245, 230, 239, 0.14);
  color: var(--text-on-dark);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--wine-deep);
}

.section-dark .tag {
  color: #ffd8ea;
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--cream);
    border-bottom: 1px solid rgba(139, 79, 110, 0.18);
    padding: 0.75rem 1.25rem 1rem;
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }

  .nav.is-open {
    display: flex;
  }
}

@media (max-width: 480px) {
  .brand span {
    max-width: min(52vw, 220px);
    overflow-wrap: anywhere;
    line-height: 1.15;
    font-size: 1.02rem;
  }
}

@media (max-width: 320px) {
  body {
    font-size: 1rem;
  }

  .header-inner {
    padding: 0.65rem 0.85rem;
  }

  .section {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .hero-content {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .cookie-banner {
    padding-left: 0.65rem;
    padding-right: 0.65rem;
  }

  .cookie-inner {
    padding: 1rem;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
