/* VINEDO */

.vinedo-hero {
  position: relative;
  min-height: 100vh;
  margin-top: 82px;
  overflow: hidden;
  background: #1a130f;
}

.vinedo-hero-media,
.vinedo-hero-media img,
.vinedo-hero-overlay {
  position: absolute;
  inset: 0;
}

.vinedo-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  filter: saturate(0.96) contrast(1.04);
}

.vinedo-hero-overlay {
  background:
    linear-gradient(110deg, rgba(23, 17, 12, 0.88) 0%, rgba(23, 17, 12, 0.52) 42%, rgba(23, 17, 12, 0.14) 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.34) 100%);
  z-index: 1;
}

.vinedo-hero::before {
  content: "";
  position: absolute;
  inset: auto 8% -130px auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 164, 107, 0.28) 0%, rgba(200, 164, 107, 0) 70%);
  z-index: 2;
  pointer-events: none;
}

.vinedo-hero-content {
  position: relative;
  z-index: 3;
  min-height: calc(100vh - 82px);
  max-width: 1380px;
  margin: 0 auto;
  padding: 72px 8% 86px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e79830;
}

.hero-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.vinedo-hero-content h1 {
  width: min(840px, 100%);
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(2.8rem, 5vw, 5.25rem);
  line-height: 1.02;
  letter-spacing: -1.5px;
  font-weight: 600;
  text-transform: none;
}

.vinedo-hero-content p {
  width: min(660px, 100%);
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.hero-button:hover {
  transform: translateY(-3px);
}

.hero-button-primary {
  background: #0D7FA2;
  color: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.hero-button-primary:hover {
  background: #1195bd;
}

.hero-button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero-button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.16);
}

.vinedo-intro,
.vineyard-section,
.care-section {
  padding-left: 8%;
  padding-right: 8%;
}

.vinedo-intro {
  padding-top: 110px;
  padding-bottom: 52px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.92fr);
  gap: 34px;
  align-items: end;
  background:
    radial-gradient(circle at top right, rgba(200, 164, 107, 0.18), transparent 26%),
    linear-gradient(180deg, #fffdf8 0%, #f4ead8 100%);
}

.vinedo-intro-copy h2,
.section-heading h2,
.care-copy h2 {
  margin-bottom: 18px;
  color: #2b201d;
  font-size: clamp(2.1rem, 3.6vw, 3.3rem);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.8px;
  text-transform: none;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: #0D7FA2;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.vinedo-intro-copy p,
.section-heading p,
.vineyard-card-copy p,
.care-copy p {
  color: #6c605a;
  font-size: 18px;
  line-height: 1.82;
}

.vinedo-highlights {
  display: grid;
  gap: 16px;
}

.highlight-card {
  padding: 24px 24px 22px;
  border: 1px solid rgba(114, 47, 55, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 40px rgba(72, 50, 33, 0.08);
}

.highlight-card strong {
  display: block;
  margin-bottom: 8px;
  color: #2b201d;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.6px;
}

.highlight-card span {
  color: #726560;
  font-size: 15px;
  line-height: 1.65;
}

.vineyard-section {
  padding-top: 72px;
  padding-bottom: 110px;
  background:
    radial-gradient(circle at bottom left, rgba(200, 164, 107, 0.16), transparent 22%),
    linear-gradient(180deg, #f4ead8 0%, #fffdf8 100%);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.vineyard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.vineyard-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(126, 82, 35, 0.12);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 252, 246, 0.98) 0%, rgba(248, 239, 223, 0.94) 100%);
  box-shadow:
    0 24px 50px rgba(72, 50, 33, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.vineyard-card::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 164, 107, 0.22) 0%, rgba(200, 164, 107, 0) 72%);
  pointer-events: none;
  z-index: 0;
}

.vineyard-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 5px;
  background: linear-gradient(90deg, #722f37 0%, #c8a46b 52%, #7a5a2d 100%);
  opacity: 0.92;
}

.vineyard-card:hover,
.care-panel:hover,
.care-quote:hover {
  transform: translateY(-10px) rotate(-0.4deg);
  box-shadow:
    0 32px 62px rgba(72, 50, 33, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  border-color: rgba(114, 47, 55, 0.22);
}

.vineyard-card-offset {
  transform: translateY(42px) rotate(1.2deg);
}

.vineyard-card-offset:hover {
  transform: translateY(32px) rotate(0.2deg);
}

.vineyard-card-media {
  position: relative;
  overflow: hidden;
  margin: 16px 16px 0;
  border-radius: 26px 26px 18px 18px;
  background: #efe4cf;
}

.vineyard-card-media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease, filter 0.45s ease;
}

.vineyard-card-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  background: linear-gradient(180deg, rgba(27, 18, 14, 0) 0%, rgba(27, 18, 14, 0.28) 100%);
  pointer-events: none;
}

.vineyard-card-media-tall img {
  height: 400px;
}

.vineyard-card:hover .vineyard-card-media img {
  transform: scale(1.06);
  filter: contrast(1.05) saturate(1.05);
}

.vineyard-card-copy {
  position: relative;
  z-index: 1;
  padding: 24px 28px 34px;
}

.vineyard-index {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #8b5b2b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

.vineyard-index::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.vineyard-card-copy h3 {
  margin-bottom: 14px;
  color: #2b201d;
  font-size: 31px;
  font-weight: 600;
  letter-spacing: -0.8px;
  text-transform: none;
}

.vineyard-card-copy h3::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #722f37 0%, rgba(114, 47, 55, 0.12) 100%);
}

.vineyard-card-copy p + p,
.care-copy p + p {
  margin-top: 14px;
}

.care-section {
  padding-top: 0;
  padding-bottom: 120px;
  background: linear-gradient(180deg, #fffdf8 0%, #efe2c8 100%);
}

.care-panel {
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: stretch;
  border: 1px solid rgba(114, 47, 55, 0.08);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 40px rgba(72, 50, 33, 0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.care-copy {
  padding: 18px 10px 18px 6px;
}

.care-quote {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(114, 47, 55, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(126, 82, 35, 0.97) 0%, rgba(63, 40, 19, 0.98) 100%);
  box-shadow: 0 18px 40px rgba(72, 50, 33, 0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.care-quote blockquote {
  margin: 0;
  padding: 36px 32px;
  color: #fff9f3;
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: -0.6px;
}

.footer-country {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-flag {
  width: 18px;
  height: auto;
  display: block;
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
}

.menu-toggle {
  width: 34px;
  height: 26px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 2000;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background: #222;
  transition: 0.35s ease;
}

.menu-toggle:hover {
  transform: none;
}

@media (max-width: 1360px) {
  .vinedo-hero-content {
    padding-left: 6%;
    padding-right: 6%;
  }

  .vinedo-intro,
  .vineyard-section,
  .care-section {
    padding-left: 6%;
    padding-right: 6%;
  }
}

@media (max-width: 1200px) {
  .vinedo-intro {
    grid-template-columns: 1fr;
  }

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

  .care-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 18px;
    right: 18px;
    width: min(360px, calc(100vw - 36px));
    max-height: calc(100vh - 36px);
    padding: 86px 26px 32px;
    background: #fffdf8;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 22px;
    border: 1px solid rgba(114, 47, 55, 0.08);
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(33, 18, 12, 0.16);
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(18px) scale(0.98);
    transition:
      opacity 0.35s ease,
      visibility 0.35s ease,
      transform 0.35s ease;
    z-index: 1500;
  }

  .main-nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0) scale(1);
  }

  .main-nav a {
    width: 100%;
    padding: 10px 0;
    font-size: 20px;
    border-bottom: 1px solid rgba(114, 47, 55, 0.08);
  }
}

@media (max-width: 992px) {
  .site-header {
    height: 74px;
  }

  .header-inner {
    padding: 0 24px;
  }

  .logo img {
    width: 115px;
  }

  .vinedo-hero {
    min-height: 88vh;
    margin-top: 74px;
  }

  .vinedo-hero-content {
    min-height: calc(88vh - 74px);
    padding-top: 40px;
    padding-bottom: 36px;
  }

  .vinedo-hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
  }

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

  .vineyard-card-offset,
  .vineyard-card-offset:hover {
    transform: none;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .site-header {
    height: 68px;
  }

  .header-inner {
    padding: 0 18px;
  }

  .logo img {
    width: 100px;
  }

  .menu-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-left: auto;
    margin-right: 14px;
    background: #722f37;
    border: 1px solid rgba(114, 47, 55, 0.18);
    border-radius: 50%;
    box-shadow: 0 12px 24px rgba(114, 47, 55, 0.18);
    z-index: 3000;
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.3);
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    top: 68px;
    right: 0;
    width: 100%;
    max-height: calc(100vh - 68px);
    gap: 14px;
    padding: 20px 22px 28px;
    background: #fff;
    border: none;
    border-top: 1px solid rgba(114, 47, 55, 0.08);
    border-radius: 0 0 22px 22px;
    box-shadow: 0 20px 35px rgba(33, 18, 12, 0.08);
    transform: translateY(-12px);
  }

  .main-nav a {
    position: relative;
    padding: 10px 0;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: #2b201d;
  }

  .main-nav a::after {
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #722f37;
    transform: none;
  }

  .vinedo-hero {
    min-height: 680px;
    margin-top: 68px;
  }

  .vinedo-hero-content {
    min-height: 612px;
    padding: 28px 24px 24px;
  }

  .hero-kicker {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .vinedo-hero-content h1 {
    font-size: 34px;
    line-height: 1.06;
  }

  .vinedo-hero-content p {
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .hero-button {
    width: 100%;
  }

  .vinedo-intro,
  .vineyard-section,
  .care-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .vinedo-intro {
    padding-top: 84px;
    padding-bottom: 38px;
  }

  .vinedo-highlights {
    grid-template-columns: 1fr;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .vinedo-intro-copy p,
  .section-heading p,
  .vineyard-card-copy p,
  .care-copy p {
    font-size: 16px;
    line-height: 1.72;
  }

  .vineyard-section,
  .care-section {
    padding-bottom: 84px;
  }

  .vineyard-card-media img {
    height: 280px;
  }

  .vineyard-card-media-tall img {
    height: 320px;
  }

  .vineyard-card-copy {
    padding: 24px 20px 26px;
  }

  .vineyard-card-copy h3 {
    font-size: 25px;
  }

  .care-panel {
    padding: 18px;
    gap: 24px;
    border-radius: 28px;
  }

  .care-quote {
    border-radius: 24px;
  }

  .care-quote blockquote {
    padding: 24px 20px 28px;
    font-size: 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo-link {
    justify-content: center;
  }

  .footer-socials {
    align-items: center;
  }

  .footer-country {
    justify-content: center;
  }

  .age-box {
    width: 92%;
    padding: 38px 24px;
  }

  .age-box img {
    width: 140px;
  }

  .age-box p {
    font-size: 17px;
  }

  .age-buttons {
    flex-direction: column;
  }

  .age-buttons button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .vinedo-hero {
    min-height: 600px;
  }

  .vinedo-hero-content {
    min-height: 532px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .vinedo-intro,
  .vineyard-section,
  .care-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .vinedo-hero-content h1 {
    font-size: 29px;
  }

  .hero-button {
    min-height: 48px;
    padding: 13px 18px;
    font-size: 12px;
  }

  .vinedo-intro-copy h2,
  .section-heading h2,
  .care-copy h2 {
    font-size: 28px;
  }

  .vineyard-card-copy h3 {
    font-size: 23px;
  }

  .vineyard-card-media img,
  .vineyard-card-media-tall img {
    height: 240px;
  }

  .vineyard-card-media {
    margin: 12px 12px 0;
    border-radius: 22px 22px 16px 16px;
  }

  .care-quote blockquote {
    font-size: 18px;
  }

  #backToTop {
    width: 48px;
    height: 48px;
    right: 18px;
    bottom: 18px;
  }
}

@media (max-width: 390px) {
  .header-inner {
    padding: 0 14px;
  }

  .logo img {
    width: 92px;
  }

  .cart {
    font-size: 13px;
  }

  .cart-icon {
    width: 30px;
    height: 30px;
  }

  .main-nav {
    padding: 18px 16px 24px;
  }

  .menu-toggle {
    margin-right: 10px;
  }

  .main-nav a {
    font-size: 16px;
  }

  .vinedo-hero {
    min-height: 560px;
  }

  .vinedo-hero-content {
    min-height: 492px;
    padding: 24px 14px 20px;
  }

  .vinedo-hero-content h1 {
    font-size: 26px;
  }

  .hero-kicker {
    font-size: 10px;
    letter-spacing: 1.6px;
  }

  .section-kicker {
    letter-spacing: 1.6px;
  }
}