/* ==================================================
   LASTPICK ABOUT PAGE
   ================================================== */

/* ==================================================
   1. About Hero
   ================================================== */
.about-hero {
  min-height: 55vh;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-image: url('../assets/images/about/about-hero-new.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 35%;
  grid-template-areas: none; /* Reset inherited grid styles */
}

.about-hero .hero-content {
  max-width: 40%;
  padding-left: clamp(1.25rem, 4.6vw, 4.5rem);
  text-align: left;
  transform: none;
  opacity: 1;
  justify-self: auto;
  align-self: auto;
  position: static;
  color: #fff;
}

.about-hero h1 {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

/* ==================================================
   2. Promise Section (Editorial Banner)
   ================================================== */
.editorial-banner {
  /* REFINEMENT: Changed from an overlay to a two-column grid layout for consistency. */
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: 0 !important; /* Override floating-section padding for full-bleed content */
  background: var(--warm-cream) !important; /* Override floating-section background */
}

.editorial-banner-bg {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg); /* Match home page card radius */
}

.editorial-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-banner-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: clamp(1.5rem, 4vw, 2rem);
}

/* ==================================================
   3. Our Backstory
   ================================================== */
.story-section {
  padding: 0 !important; /* Override floating-section padding */
  overflow: hidden;
}

.story-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem); /* REFINEMENT: Matched gap to Promise section */
  align-items: center;
}

.story-image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3; /* REFINEMENT: Ensure consistent image proportion */
}

.story-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% 50%; /* REFINEMENT: Reposition image to be less cropped */
}

.story-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(1rem, 2vw, 1.5rem); /* REFINEMENT: Reduced gap between content elements */
}

.story-heading {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.2;
  color: var(--text);
}

.story-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-sm);
}

.story-checklist li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 600;
  color: var(--muted);
}

.checklist-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--dark-green);
}

/* ==================================================
   4. Core Values
   ================================================== */
.values-section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  margin-bottom: clamp(2rem, 5vw, 3.5rem); /* FIX: Added standard bottom margin for consistent section spacing. */
}

.values-container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.values-header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.values-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.values-grid {
  display: grid;
  gap: var(--space-md); /* REFINEMENT: Reduced gap between cards */
}

.value-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(1.25rem, 3vw, 2rem); /* REFINEMENT: Reduced padding to make cards more compact */
  background: var(--warm-cream);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg); /* REFINEMENT: Slightly softer hover shadow */
}

.value-card-description {
  max-width: 35ch;
}

.value-card-icon-wrapper {
  margin-bottom: var(--space-sm);
}

.value-card-icon {
  height: 48px;
}

.value-card-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.1rem; /* REFINEMENT: Reduced font size for better hierarchy */
  margin: 0 0 var(--space-xs);
}

/* ==================================================
   RESPONSIVE STYLES
   ================================================== */

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .story-grid {
    grid-template-columns: 0.9fr 1.1fr; /* REFINEMENT: Adjusted grid for better image/text balance. */
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Laptop & Desktop */
@media (min-width: 1024px) {
  .story-grid {
    grid-template-columns: 0.9fr 1.1fr; /* REFINEMENT: Adjusted grid for better image/text balance. */
  }

  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Shared Tablet & Desktop */
@media (min-width: 768px) {
}