:root {
  --wine-red: #c41e3a;
  --wine-red-dark: #9b1830;
  --text-dark: #1a1a1a;
  --text-muted: #6c757d;
  --bg-light: #f5f5f7;
  --card-bg: #ffffff;
  --divider: #e0e0e0;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Assistant', sans-serif;
  color: var(--text-dark);
  background-color: #fff;
  line-height: 1.6;
}

/* ── Hero ── */

.hero-section {
  /*min-height: 90vh;*/
  display: flex;
  align-items: center;
  background: #fff;
}

.hero-vine-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 280px;
  height: 320px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 240' fill='none'%3E%3Cpath d='M20 220 Q40 180 30 140 Q20 100 50 80 Q80 60 70 30 Q60 10 90 20' stroke='%23e8e0d8' stroke-width='1.5' fill='none'/%3E%3Ccircle cx='65' cy='25' r='8' fill='%23f0e8e0'/%3E%3Ccircle cx='80' cy='45' r='6' fill='%23f0e8e0'/%3E%3Ccircle cx='55' cy='55' r='7' fill='%23f0e8e0'/%3E%3Ccircle cx='75' cy='70' r='5' fill='%23f0e8e0'/%3E%3Cpath d='M90 20 Q120 40 110 70 Q100 100 130 110 Q150 120 160 90' stroke='%23e8e0d8' stroke-width='1.2' fill='none'/%3E%3Ccircle cx='115' cy='55' r='6' fill='%23f0e8e0'/%3E%3Ccircle cx='135' cy='80' r='5' fill='%23f0e8e0'/%3E%3C/svg%3E") no-repeat;
  background-size: contain;
  opacity: 0.7;
  pointer-events: none;
}

.logo-img {
  height: 56px;
  width: auto;
  display: block;
}

.hero-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.25;
  color: var(--text-dark);
}

.hero-subtitle {
  font-size: 1.05rem;
  max-width: 480px;
}

/* Store buttons */

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #000;
  color: #fff;
  text-decoration: none;
  padding: 0.55rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.15s;
}

.store-btn:hover {
  background: #222;
  color: #fff;
  transform: translateY(-1px);
}

.store-btn i {
  font-size: 1.5rem;
}

.store-btn span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.store-btn small {
  font-size: 0.65rem;
  font-weight: 400;
  opacity: 0.85;
}

.hero-top-img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.screen-map-detail {
  background:
    linear-gradient(160deg, #b2dfdb 0%, #80cbc4 50%, #4db6ac 100%);
  position: relative;
}

.screen-map-detail::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--wine-red);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  top: 30%;
  right: 25%;
  box-shadow:
    -30px 15px 0 var(--wine-red),
    25px 40px 0 var(--wine-red),
    -15px 60px 0 var(--wine-red),
    40px 70px 0 var(--wine-red);
}

/* ── Feature card ── */

.feature-card,
.why-card {
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
}

.feature-col:not(:last-child) .feature-item,
.why-col:not(:last-child) .why-item {
  border-left: 1px solid var(--divider);
}

.feature-icon {
  font-size: 2rem;
  color: var(--wine-red);
}

.feature-icon i {
  -webkit-text-stroke: 0.5px var(--wine-red);
}

.icon-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: inline-block;
}

.detail-list-icon .icon-img {
  width: 28px;
  height: 28px;
}

.feature-title {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

/* ── Detail section ── */

.detail-section {
  background: #fff;
}

.detail-container {
  background: url('../images/wineglass.png') no-repeat right center;
  background-size: contain;
  min-height: 420px;
  display: flex;
  align-items: center;
  padding: 3rem 2rem;
}

.detail-text-col {
  max-width: 42%;
  text-align: left;
}

.detail-text-col .section-title::after {
  left: 0;
  right: auto;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  padding-bottom: 0.75rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 3px;
  background: var(--wine-red);
  border-radius: 2px;
}

.detail-list-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wine-red);
  font-size: 1.25rem;
}

.detail-list-item {
  font-size: 1.05rem;
  font-weight: 500;
}

/* ── Why section ── */

.why-title {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
}

.why-icon-circle {
  width: 64px;
  height: 64px;
  border: 2px solid var(--wine-red);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--wine-red);
  margin: 0 auto;
}

.why-label {
  max-width: 180px;
  margin: 0 auto;
  line-height: 1.4;
}

/* ── CTA ── */

.cta-section {
  /*background: url('../images/bottom-banner.png') center/cover no-repeat;*/
  /*min-height: 420px;*/
  display: flex;
  align-items: center;
}

.cta-title {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
}

.cta-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 420px;
}

/* ── Legal pages ── */

.legal-header {
  background: #fff;
}

.legal-back-link:hover {
  color: var(--wine-red) !important;
}

.legal-content {
  max-width: 760px;
}

.legal-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--text-dark);
}

.legal-section {
  margin-top: 2rem;
}

.legal-heading {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.legal-subheading {
  font-size: 1.05rem;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.legal-content p,
.legal-content li {
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.legal-content ul {
  padding-right: 1.25rem;
}

.legal-content a {
  color: var(--wine-red);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

/* ── Footer ── */

.footer {
  border-top: 1px solid var(--divider);
}

.footer a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer a:hover {
  color: var(--wine-red);
}

/* ── Responsive ── */

@media (max-width: 991.98px) {
  .feature-col:nth-child(odd) .feature-item,
  .why-col:nth-child(odd) .why-item {
    border-left: none;
  }

  .feature-col:not(:last-child) .feature-item {
    border-bottom: 1px solid var(--divider);
  }

  .why-col:nth-child(-n+2) .why-item {
    border-bottom: 1px solid var(--divider);
  }

  .detail-container {
    min-height: 320px;
    background-position: center bottom;
    background-size: 90% auto;
    padding-bottom: 55%;
  }

  .detail-text-col {
    max-width: 100%;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    min-height: auto;
    padding-top: 2rem;
  }

  .feature-col .feature-item {
    border-left: none !important;
    border-bottom: 1px solid var(--divider);
  }

  .why-col .why-item {
    border-left: none !important;
  }

  .why-col:nth-child(-n+3) .why-item {
    border-bottom: 1px solid var(--divider);
  }

  .cta-section {
    /*min-height: 360px;*/
  }
}
