/* About Page - Editorial, premium food magazine style */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Source+Sans+3:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

.about-page{
  overflow: visible;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

.about-page .about-hero,
.about-page .about-content,
.about-page .about-why,
.about-page .about-statement,
.about-page .about-slider{
  width: 100%;
  max-width: none;
  box-sizing: border-box;
}

/* Hero - full-width, typography right-aligned */
.about-hero{
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 80px 40px 100px;
  background: #e8e2d9;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.about-hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(232,226,217,0.3) 0%, rgba(232,226,217,0.6) 40%, rgba(245,242,237,0.4) 100%);
  pointer-events: none;
}

.about-hero-inner{
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}

.about-hero-content{
  max-width: 42%;
  min-width: 320px;
  text-align: right;
}

.about-hero-headline{
  margin: 0 0 24px;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #2d2926;
}

.about-hero-supporting{
  margin: 0 0 28px;
  font-family: 'Source Sans 3', 'Helvetica Neue', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: #5a524b;
  max-width: 42ch;
  margin-left: auto;
}

.about-hero-cta{
  display: inline-block;
  font-family: 'Source Sans 3', 'Helvetica Neue', sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2d2926;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: opacity 0.25s ease;
}

.about-hero-cta:hover{
  opacity: 0.7;
}

/* Content - soft cream, two-column */
.about-content{
  padding: 100px 40px 120px;
  background: #faf8f5;
}

.about-content-inner{
  max-width: 1200px;
  margin: 0 auto;
}

.about-content-grid{
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 80px 100px;
  align-items: start;
}

.about-content-head{
  position: sticky;
  top: 120px;
}

.about-section-heading{
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #2d2926;
}

.about-content-body{
  padding-top: 8px;
}

.about-content-text{
  font-family: 'Source Sans 3', 'Helvetica Neue', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
  color: #5a524b;
  max-width: 65ch;
}

.about-content-text p{
  margin: 0 0 1.5em;
}

.about-content-text p:last-child{
  margin-bottom: 0;
}

/* Continuous image slider (before Why Choose Us) */
.about-slider{
  padding: 0;
  overflow: hidden;
  background: #f5f2ed;
}

.about-slider-wrap{
  overflow: hidden;
  width: 100%;
}

.about-slider-track{
  display: flex;
  width: max-content;
  animation: about-slider-scroll 40s linear infinite;
}

.about-slider-track:hover{
  animation-play-state: paused;
}

.about-slider-set{
  display: flex;
  flex-shrink: 0;
  gap: 0;
}

.about-slider-item{
  flex-shrink: 0;
  width: 280px;
  height: 200px;
  overflow: hidden;
}

.about-slider-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes about-slider-scroll{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}

/* Full-width statement - background image + headline only */
.about-statement{
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 40px 140px;
  background: #2d2926;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.about-statement-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.about-statement-inner{
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-statement-kicker{
  margin: 0 0 24px;
  font-family: 'Source Sans 3', 'Helvetica Neue', sans-serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.about-statement-headline{
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
}

/* Why Choose Us - accordion section */
.about-why{
  padding: 100px 40px 120px;
  background: #f9f1ea;
}

.about-why-inner{
  max-width: 1200px;
  margin: 0 auto;
}

.about-why-grid{
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px 100px;
  align-items: start;
}

.about-why-head{
  position: sticky;
  top: 120px;
}

.about-why-heading{
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #2d2926;
}

.about-why-accordion{
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-why-item{
  border-bottom: 1px solid rgba(90, 82, 75, 0.15);
}

.about-why-item:first-child{
  border-top: 1px solid rgba(90, 82, 75, 0.15);
}

.about-why-trigger{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: left;
  font-family: 'Source Sans 3', 'Helvetica Neue', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #2d2926;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.about-why-trigger:hover,
.about-why-trigger:focus{
  color: #5a524b;
  border-color: #EF3200;
  background-color: transparent !important;
  background: none !important;
}

.about-why-trigger[aria-expanded="true"]{
  color: #2d2926;
}

.about-why-title{
  flex: 1;
  padding-right: 20px;
}

.about-why-icon{
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(90, 82, 75, 0.4);
  position: relative;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s ease;
}

.about-why-icon::before,
.about-why-icon::after{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: #5a524b;
  transition: opacity 0.25s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-why-icon::before{
  width: 10px;
  height: 2px;
  margin: -1px 0 0 -5px;
}

.about-why-icon::after{
  width: 2px;
  height: 10px;
  margin: -5px 0 0 -1px;
}

.about-why-trigger[aria-expanded="true"] .about-why-icon{
  transform: rotate(45deg);
  border-color: rgba(90, 82, 75, 0.6);
}

.about-why-trigger[aria-expanded="true"] .about-why-icon::after{
  opacity: 0;
  transform: scale(0.5);
}

.about-why-panel{
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-why-panel[aria-hidden="false"]{
  max-height: 600px;
}

.about-why-content{
  padding: 0 0 24px;
  font-family: 'Source Sans 3', 'Helvetica Neue', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: #5a524b;
}

.about-why-content p{
  margin: 0 0 0.75em;
}

.about-why-content p:last-child{
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1024px){
  .about-hero{
    min-height: 60vh;
    padding: 60px 28px 80px;
    justify-content: center;
  }
  .about-hero-content{
    max-width: 70%;
    min-width: 280px;
    text-align: center;
  }
  .about-hero-supporting{
    margin-left: auto;
    margin-right: auto;
  }
  .about-content{
    padding: 80px 28px 100px;
  }
  .about-content-grid{
    gap: 60px 60px;
  }
  .about-content-head{
    position: static;
  }
}

@media (max-width: 768px){
  .about-hero{
    min-height: 55vh;
    padding: 50px 20px 70px;
  }
  .about-hero-content{
    max-width: 100%;
    min-width: 0;
  }
  .about-content-grid{
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-section-heading{
    font-size: 42px;
  }
  .about-content-text{
    font-size: 16px;
  }
  .about-why{
    padding: 80px 28px 100px;
  }
  .about-why-grid{
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-why-head{
    position: static;
  }
  .about-why-heading{
    font-size: 42px;
  }
  .about-why-trigger{
    padding: 18px 0;
    font-size: 17px;
  }
  .about-slider-item{
    width: 220px;
    height: 160px;
  }
}

@media (max-width: 480px){
  .about-hero{
    padding: 40px 16px 60px;
  }
  .about-hero-headline{
    font-size: 32px;
  }
  .about-hero-supporting{
    font-size: 15px;
  }
  .about-content{
    padding: 60px 16px 80px;
  }
  .about-section-heading{
    font-size: 36px;
  }
  .about-why{
    padding: 60px 16px 80px;
  }
  .about-why-heading{
    font-size: 36px;
  }
  .about-why-trigger{
    padding: 16px 0;
    font-size: 16px;
  }
  .about-why-content{
    font-size: 15px;
  }
  .about-statement{
    padding: 60px 20px 80px;
  }
  .about-statement-headline{
    font-size: 32px;
  }
  .about-slider-item{
    width: 180px;
    height: 130px;
  }
}
