@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Inter:wght@300;400;500;600;700&family=Caveat:wght@400..700&display=swap');

:root {
  /* Brand Colors */
  --sam-green-light: #A6C789;
  --sam-cream: #F4EFE3;
  --sam-burgundy: #6B1A1A;
  --sam-green-dark: #4C7A37;
  --sam-gold: #C7A241;

  /* Typography */
  --font-display: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;
  --font-accent: "Caveat", cursive;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--sam-cream);
  color: #2d3728;
  overflow-x: hidden;
  font-family: var(--font-body);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HERO SECTION ===== */
.hero {
  height: 75vh;
  min-height: 520px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}

.hero-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(20, 30, 18, 0.65), rgba(107, 26, 26, 0.85));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  z-index: 2;
  text-align: center;
}

.hero-card {
  max-width: 760px;
  background: rgba(107, 26, 26, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 42px 48px;
  border-radius: 20px;
  border: 1px solid var(--sam-gold);
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-card h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff !important;
  line-height: 1.2;
  margin-bottom: 8px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 1.15rem;
  letter-spacing: 2px;
  color: var(--sam-gold);
  font-weight: 500;
  margin-bottom: 18px;
  display: block;
}

.hero-card p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: #ffffff;
  font-weight: 300;
}

/* ===== ORCHARD HERITAGE (FOUNDERS SUMMARY) ===== */
.founders {
  background: var(--sam-cream);
  padding: 100px 0;
  border-bottom: 1px solid rgba(199, 162, 65, 0.3);
}

.founders-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.founder-image-section {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--sam-gold);
  box-shadow: 0 15px 45px rgba(76, 122, 55, 0.1);
}

.founder-image-card img.founder-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s ease;
}

.founder-image-section:hover img.founder-image {
  transform: scale(1.03);
}

.founder-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(107, 26, 26, 0.95), transparent);
  color: #ffffff;
}

.founder-overlay-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.founder-overlay-role {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--sam-gold);
}

.founder-story-panel {
  background: #ffffff;
  padding: 48px;
  border-radius: 24px;
  border: 1px solid var(--sam-gold);
  box-shadow: 0 15px 45px rgba(76, 122, 55, 0.08);
}

.founder-micro-heading {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sam-green-dark);
  font-weight: 700;
  margin-bottom: 10px;
}

.founder-main-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--sam-burgundy);
  margin-bottom: 20px;
  line-height: 1.18;
}

.founder-description p {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #3b4238;
}

.sam-agri-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--sam-green-dark);
  text-decoration: none !important;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--sam-green-dark);
  padding-bottom: 2px;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.sam-agri-link:hover {
  color: var(--sam-burgundy);
  border-color: var(--sam-burgundy);
}

/* ===== EXECUTIVE LEADERSHIP GRID ===== */
.leadership-section {
  background: var(--sam-cream);
  padding: 100px 0;
  border-bottom: 1px solid rgba(199, 162, 65, 0.3);
}

.leadership-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.leadership-header .sub-tag {
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sam-green-dark);
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

.leadership-header h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 54px);
  color: var(--sam-burgundy);
  font-weight: 700;
  margin-bottom: 12px;
}

.leadership-header p {
  color: #3b4238;
  font-size: 1.1rem;
  font-weight: 500;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.leader-card {
  background: #ffffff;
  border: 1px solid var(--sam-gold);
  border-radius: 20px;
  padding: 36px 30px;
  box-shadow: 0 10px 30px rgba(76, 122, 55, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leader-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(107, 26, 26, 0.12);
}

.leader-photo-wrapper {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--sam-gold);
  margin-bottom: 24px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.leader-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.leader-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--sam-burgundy);
  margin-bottom: 4px;
}

.leader-role {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--sam-green-dark);
  margin-bottom: 16px;
}

.leader-bio {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.65;
  color: #3b4238;
  margin-bottom: 24px;
}

.leader-social-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sam-burgundy);
  text-decoration: none !important;
  font-size: 0.85rem;
  font-weight: 700;
  transition: color 0.3s ease;
}

.leader-social-link:hover {
  color: var(--sam-green-dark);
}

.leader-social-link i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--sam-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ===== WHY 2022 & BELIEFS SECTION ===== */
.who-we-are {
  background: var(--sam-cream);
  padding: 90px 0;
  border-bottom: 1px solid rgba(199, 162, 65, 0.3);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--sam-gold);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 15px 45px rgba(76, 122, 55, 0.08);
}

.text-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  color: var(--sam-burgundy);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.text-content p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.75;
  color: #3b4238;
  margin-bottom: 16px;
}

.image-content img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--sam-gold);
}

/* ===== CRAFTSMANSHIP & PHILOSOPHY ===== */
.philosophy {
  background: var(--sam-cream);
  padding: 100px 0;
  border-bottom: 1px solid rgba(199, 162, 65, 0.3);
}

.philosophy h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 54px);
  color: var(--sam-burgundy);
  text-align: center;
  font-weight: 700;
  margin-bottom: 60px;
}

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

.philosophy-item {
  background: #ffffff;
  border: 1px solid var(--sam-gold);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(76, 122, 55, 0.06);
  transition: transform 0.3s ease;
}

.philosophy-item:hover {
  transform: translateY(-6px);
}

.philosophy-item .pillar-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--sam-burgundy);
  margin-bottom: 10px;
  line-height: 1;
}

.philosophy-item h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--sam-burgundy);
  margin-bottom: 14px;
  font-weight: 700;
}

.philosophy-item p {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.65;
  color: #3b4238;
}

/* ===== MEET THE COLLECTION ===== */
.wine-family {
  background: var(--sam-cream);
  padding: 100px 0;
  border-bottom: 1px solid rgba(199, 162, 65, 0.3);
}

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

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 54px);
  color: var(--sam-burgundy);
  font-weight: 700;
}

.wine-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.wine-card {
  background: #ffffff;
  border: 1px solid var(--sam-gold);
  border-radius: 20px;
  padding: 24px;
  text-decoration: none !important;
  box-shadow: 0 10px 30px rgba(76, 122, 55, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wine-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(107, 26, 26, 0.12);
}

.wine-image {
  width: 100%;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--sam-cream);
}

.wine-image img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  transition: transform 0.5s ease;
}

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

.wine-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--sam-burgundy);
  font-weight: 700;
  margin-bottom: 4px;
}

.wine-role {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sam-green-dark);
  font-weight: 700;
  margin-bottom: 10px;
}

.wine-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.5;
  color: #3b4238;
}

/* ===== CALL TO ACTION ===== */
.cta {
  background: var(--sam-green-dark);
  color: #ffffff;
  padding: 90px 24px;
  text-align: center;
}

.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 54px);
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 30px;
}

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

.cta-btn {
  background: var(--sam-gold);
  color: #000000 !important;
  padding: 14px 36px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
  background: #ffffff;
  color: var(--sam-burgundy) !important;
  transform: translateY(-2px);
}

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

.cta-btn.secondary:hover {
  background: #ffffff;
  color: var(--sam-green-dark) !important;
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 992px) {
  .founders-container,
  .leadership-grid,
  .content-grid,
  .philosophy-content,
  .wine-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}