/* ===========================
   RED MANGO — ABOUT.CSS
   =========================== */

/* ===== OUR STORY ===== */

.about-story {
  background: var(--white);
  padding: 80px 60px;
}

.about-story-inner {
  max-width: 900px;
  margin: 0 auto;
  
}

.about-story-text .section-tag {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 13px;
  display: block;
}

.about-story-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 28px;
  line-height: 1.2;
}

.about-story-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.95;
  color: #555;
  margin-bottom: 18px;
}

.about-story-text p:last-child {
  margin-bottom: 0;
}

/* ===== AWARDS ROW ===== */

.about-awards {
  background: var(--white);
  padding: 20px 60px 100px;
}

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

/* Award Card */
.award-card {
  background: var(--dark);
  color: var(--white);
  padding: 44px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.award-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(192,57,43,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.award-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.award-logo span {
  color: var(--red);
}

.award-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 88px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.award-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 6px;
}

.award-year {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.award-desc {
  font-size: 15px;
  font-weight: 500;
  color: var(--grey);
  line-height: 1.7;
}

/* ===== WHAT'S INCLUDED ===== */

.about-features {
  background: #f5f0eb;
  padding: 100px 80px;
}

.about-features-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-tag-center {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  text-align: center;
  display: block;
  margin-bottom: 12px;
}

.about-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 400;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.2;
}

.about-section-subtitle {
  font-size: 15px;
  font-weight: 500;
  color: #777;
  text-align: center;
  margin-bottom: 56px;
  line-height: 1.7;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-item {
  background: var(--white);
  border: 1px solid #ece8e3;
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.feature-item:hover {
  border-color: var(--red);
  box-shadow: 0 4px 20px rgba(192,57,43,0.08);
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.feature-item h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #222;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 15px;
  font-weight: 500;
  color: #666;
  line-height: 1.7;
}

/* ===== FACILITIES ===== */

.about-facilities {
  background: var(--white);
}

.facility-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
  border-bottom: 1px solid #e8e8e8;
}

/* Alternate: odd blocks = image left, even blocks = image right */
.facility-block:nth-child(even) {
  direction: rtl;
}

.facility-block:nth-child(even) > * {
  direction: ltr;
}

.facility-img {
  overflow: hidden;
  position: relative;
  background: #c8c8c8;
}

.facility-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.facility-block:hover .facility-img img {
  transform: scale(1.03);
}

/* Placeholder when no image */
.facility-img::after {
  content: 'Photo Coming Soon';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999;
  background: #e8e8e8;
  z-index: 0;
}

.facility-img img {
  position: relative;
  z-index: 1;
}

.facility-text {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.facility-text .section-tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.facility-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 24px;
  line-height: 1.2;
}

.facility-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.95;
  color: #555;
}

/* ===== CTA ===== */

.about-cta {
  background: var(--dark);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(192,57,43,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.about-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.about-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.2;
}

.about-cta p {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 44px;
}

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

.btn-cta-outline {
  display: inline-block;
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(240,230,211,0.4);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 40px;
  transition: border-color 0.3s, color 0.3s;
}

.btn-cta-outline:hover {
  border-color: var(--cream);
  color: var(--white);
}

.btn-cta-red {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  border: 1px solid var(--red);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 40px;
  transition: background 0.3s;
}

.btn-cta-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

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

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-awards-inner {
    gap: 20px;
  }

  .award-score {
    font-size: 64px;
  }
}

@media (max-width: 900px) {
  .about-story {
    padding: 60px 24px;
  }

  .about-story-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-awards {
    padding: 0 24px 60px;
  }

  .about-awards-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .award-score {
    font-size: 88px;
  }

  .about-features {
    padding: 60px 24px;
  }

  .facility-block {
    grid-template-columns: 1fr;
    direction: ltr !important;
  }

  .facility-block:nth-child(even) > * {
    direction: ltr;
  }

  .facility-img {
    min-height: 280px;
  }

  .facility-text {
    padding: 36px 24px;
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .about-cta {
    padding: 70px 24px;
  }

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

  .btn-cta-outline,
  .btn-cta-red {
    width: 100%;
    text-align: center;
  }
}
