* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
}

body {
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== HERO SECTION ===== */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.hero-subtitle {
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 5rem;
  font-weight: normal;
  letter-spacing: 4px;
  color: #fff !important;
}

/* HERO CARD */
.hero-card {
  max-width: 720px;
  background: rgba(120, 15, 15, 0.65);
  backdrop-filter: blur(8px);
  padding: 45px 50px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.hero-card h2 {
  font-size: 3rem;
  letter-spacing: 3px;
  font-weight: 300;
  margin-bottom: 12px;
  color: #ffffff;
}

.hero-card h4 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 22px;
  color: #f1dada;
}

.hero-card p {
  font-size: 1rem;
  line-height: 1.75;
  color: #ffffff;
  opacity: 0.95;
  font-weight: 300;
}

@media (max-width: 768px) {
  .hero-card {
    padding: 35px 30px;
    max-width: 393px;
  }
  .hero-card h2 {
    font-size: 1.8rem;
  }
  .hero-card h4 {
    font-size: 1.05rem;
  }
}

/* ===== FOUNDERS SECTION ===== */
.founders {
  background: #000;
  padding: 80px 0;
  overflow: hidden;
}

.founders-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.founder-image-section {
  will-change: transform;
}

.founder-overlay {
  margin-bottom: 30px;
  margin-left: 150px;
}

.founder-overlay-name {
  font-size: 32px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 8px;
}

.founder-overlay-role {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 300;
  text-transform: uppercase;
  color: #d4af37;
  opacity: 0.8;
}

.founder-image-card {
  position: relative;
  margin-bottom: 40px;
}

.founder-image {
  width: 80%;
  height: 500px;
  margin-left: 150px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  transition: opacity 0.6s ease;
}

.founder-nav-btn {
  position: absolute;
  right: 4px;
  bottom: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.9);
  border: none;
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.founder-nav-btn:hover {
  background: #d4af37;
  transform: scale(1.1);
}

.founder-story-panel {
  background: #111;
  padding: 0px 60px;
  border-radius: 12px;
  will-change: transform;
  margin-right: 80px;
  width: 650px;
}

.founder-micro-heading {
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 300;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 20px;
  opacity: 0.8;
}

.founder-main-heading {
  font-size: 48px;
  font-weight: normal;
  letter-spacing: 2px;
  margin-bottom: 40px;
  color: #fff;
}

.founder-description {
  margin-bottom: 50px;
}

.founder-description p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 25px;
  opacity: 0.9;
  color: #ffffff;
}

.founder-bio {
  font-size: 15px;
  line-height: 1.6;
  color: #ccc;
  opacity: 0.8;
}

.founder-bottom-overlay {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 8px;
  margin-top: 40px;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.founder-bottom-name {
  font-size: 24px;
  font-weight: normal;
  color: #fff;
  margin-bottom: 8px;
}

.founder-bottom-role {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 15px;
  opacity: 0.8;
}

.founder-bottom-bio {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: #ffffff;
  opacity: 0.9;
}

/* ===== WHO WE ARE ===== */
.who-we-are {
  background: #000;
  padding: 80px 0;
  color: white;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.text-content h2 {
  font-size: 48px;
  margin-bottom: 40px;
  font-weight: 400;
  letter-spacing: 2px;
}

.text-content p {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 30px;
  opacity: 0.9;
}

.image-content img {
  width: auto;
  height: 600px;
  object-fit: fill;
  border-radius: 8px;
}

/* ===== OUR ORCHARDS ===== */
.our-Orchards {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
}

.Orchards-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.Orchards-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.Orchards-content {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  padding: 80px;
  border-radius: 12px;
  max-width: 600px;
  margin-left: 100px;
}

.Orchards-content h2 {
  font-size: 42px;
  margin-bottom: 30px;
  font-weight: 400;
}

.Orchards-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
  opacity: 0.9;
  font-weight: 300;
}

/* ===== CRAFTSMANSHIP ===== */
.craftsmanship {
  background: #000;
  padding: 80px 0;
  color: white;
}

.craft-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 60px;
}

.craft-item.reverse {
  direction: rtl;
}

.craft-item.reverse > * {
  direction: ltr;
}

.craft-image img {
  width: auto;
  height: 600px;
  object-fit: fill;
  border-radius: 8px;
}

.craft-text h3 {
  font-size: 32px;
  margin-bottom: 25px;
  font-weight: 400;
}

.craft-text p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
  font-weight: 300;
}

/* ===== WINE FAMILY / MEET THE COLLECTION ===== */
.wine-family {
  background-color: #000;
  padding: 60px 0;
  position: relative;
  color: #fff;
  border-top: none;
  margin-top: -60px;
}

.wine-family .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.wine-family .sub-heading {
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 15px;
  display: block;
  opacity: 0.9;
}

.wine-family h2 {
  font-size: 3.5rem;
  font-weight: 400;
  color: #fff;
  margin: 0;
}

.header-line {
  width: 60px;
  height: 1px;
  background: #d4af37;
  margin: 20px auto 0;
  opacity: 0.6;
}

.wine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  justify-content: center;
}

.wine-card {
  text-decoration: none !important;
  color: #fff !important;
  border-bottom: none !important;
  display: block;
  background: transparent;
  text-align: center;
  transition: transform 0.4s ease;
  cursor: pointer;
  position: relative;
}

.wine-card:hover {
  transform: translateY(-10px);
}

.wine-image {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  margin-bottom: 25px;
  background: #111;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wine-image img {
  width: 100%;
  height: 131%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  transition: transform 0.5s ease;
}

.wine-gold-frame {
  position: absolute;
  inset: 10px;
  border: 1px solid #d4af37;
  z-index: 1;
  opacity: 0.4;
  transition: all 0.5s ease;
}

.wine-card:hover .wine-image img {
  transform: scale(1.05);
}

.wine-card:hover .wine-gold-frame {
  opacity: 1;
  inset: 5px;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.wine-content h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  font-weight: 400;
  color: #fff;
}

.wine-content .wine-role {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 3px;
  color: #d4af37;
  margin-bottom: 15px;
  font-weight: 300;
}

.wine-content .wine-desc {
  font-size: 14px;
  color: #bbb;
  font-style: italic;
  max-width: 90%;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== FAMILY & PEOPLE ===== */
.family-people {
  background: #111;
  color: white;
  padding: 80px 0;
  text-align: center;
}

.family-people h2 {
  font-size: 48px;
  margin-bottom: 60px;
  font-weight: normal;
}

.family-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.family-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
}

.family-card h4 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: normal;
}

.family-card p {
  font-size: 14px;
  opacity: 0.7;
  letter-spacing: 1px;
}

/* ===== PHILOSOPHY ===== */
.philosophy {
  background: #000;
  color: white;
  padding: 80px 0;
  text-align: center;
}

.philosophy h2 {
  font-size: 48px;
  margin-bottom: 60px;
  font-weight: normal;
}

.philosophy-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}

.philosophy-item h4 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #d4af37;
  font-weight: 400;
}

.philosophy-item p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.8;
  font-weight: 300;
}

/* ===== CALL TO ACTION ===== */
.cta {
  background: #111;
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta h2 {
  font-size: 42px;
  margin-bottom: 40px;
  font-weight: normal;
}

.cta-buttons {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.cta-btn {
  padding: 15px 40px;
  background: #d4af37;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

.cta-btn.secondary {
  background: transparent;
  color: #d4af37;
  border: 1px solid #d4af37;
}

.cta-btn.secondary:hover {
  background: #d4af37;
  color: #fff;
}

/* ===== AWARDS & RECOGNITION ===== */
.awards {
  background: #000;
  padding: 80px 0;
  text-align: center;
}

.awards h2 {
  font-size: 48px;
  margin-bottom: 60px;
  font-weight: normal;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.award-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
}

.award-item h4 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #d4af37;
  font-weight: normal;
}

.award-item p {
  font-size: 14px;
  opacity: 0.7;
  letter-spacing: 1px;
}

/* ===== SCROLL ANIMATIONS ===== */
.scroll-element {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

.scroll-element.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE — 1024px ===== */
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

  .Orchards-image img {
    width: 100%;
    height: 100%;
  }

  .image-content img {
    width: 100%;
    height: 100%;
  }

  .craft-image img {
    width: 100%;
    height: 100%;
  }

  .content-grid,
  .craft-item {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .Orchards-content {
    margin-left: 30px;
    padding: 60px 40px;
  }

  .family-grid,
  .philosophy-content,
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

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

  .founder-story-panel {
    padding: 40px 40px;
    width: 100%;
    margin-right: 0;
  }
}

/* ===== RESPONSIVE — 768px ===== */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .text-content h2,
  .family-people h2,
  .philosophy h2 {
    font-size: 36px;
  }

  .Orchards-content {
    margin-left: 20px;
    padding: 40px 30px;
  }

  .Orchards-content h2 {
    font-size: 32px;
  }

  .craft-text h3 {
    font-size: 28px;
  }

  .family-grid,
  .philosophy-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .awards-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder-image {
    height: 400px;
    margin-left: 0;
    width: 100%;
  }

  .founder-main-heading {
    font-size: 36px;
  }

  .founder-story-panel {
    padding: 40px 30px;
    margin-right: 0;
    width: 100%;
  }

  .founder-overlay {
    margin-left: 0;
    text-align: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .who-we-are,
  .craftsmanship,
  .family-people,
  .philosophy,
  .awards,
  .founders {
    padding: 60px 0;
  }

  .wine-image {
    
    height: 350px;
  }

  .wine-gold-frame {
    display: none;
  }
}