/* ==========================================================
   about.css — Plaza Tropical About Page
   Supplement to styles.css (shared tokens apply here too)
   ========================================================== */

/* ── HERO ─────────────────────────────────────────────────── */

.about-hero {
  position: relative;
  min-height: 48vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--green-dark);
  padding-bottom: 5rem;
}

.about-hero-bg {
  position: absolute;
  inset: 0;

  background-size: cover;
  background-position: center 40%;
  transform: scale(1.06);
  animation: about-hero-drift 18s ease-in-out infinite alternate;
  will-change: transform;
}

.about-hero-bgREAL {
  position: absolute;
  inset: 0;
  background-image: url('https://www.thetakeout.com/img/gallery/grocery-stores-vs-supermarkets-is-there-a-difference/intro-1736197109.jpg');
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.06);
  animation: about-hero-drift 18s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes about-hero-drift {
  from { transform: scale(1.06) translateY(0); }
  to   { transform: scale(1.1)  translateY(-2%); }
}

@media (prefers-reduced-motion: reduce) {
  .about-hero-bg { animation: none; transform: scale(1.06); }
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(10, 28, 18, 0.55) 0%,
    rgba(10, 28, 18, 0.78) 60%,
    rgba(10, 28, 18, 0.95) 100%
  );
  z-index: 1;
}

.about-hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: var(--grain, url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E"));
  opacity: 0.4;
  pointer-events: none;
}

.about-hero-content {
  position: relative;
  z-index: 3;
  padding-top: 7rem;
}

.about-hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.2rem;
}

.about-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1.0;
  color: #fff;
  margin-bottom: 1.2rem;
}

.about-hero-title em {
  font-style: italic;
  color: var(--orange);
  font-family: var(--font-script, 'Satisfy', cursive);
  font-size: 0.9em;
}

.about-hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  color: rgba(255,255,255,0.72);
  margin-bottom: 2rem;
  max-width: 460px;
}

.about-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 3px;
  transition: color 0.25s, border-color 0.25s;
}
.about-hero-cta:hover { color: var(--orange); border-color: var(--orange); }
.about-hero-cta i { font-size: 1rem; }

/* Vertical rotated text tag */
.about-hero-tag {
  position: absolute;
  bottom: 2.5rem;
  right: -2rem;
  z-index: 4;
  transform: rotate(90deg);
  transform-origin: bottom right;
  pointer-events: none;
}
.about-hero-tag-inner {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}

/* ── MARQUEE DIVIDER ──────────────────────────────────────── */

.about-marquee-wrap {
  background: var(--orange);
  overflow: hidden;
  padding: 0.6rem 0;
  white-space: nowrap;
}

.about-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  animation: about-marquee 22s linear infinite;
  will-change: transform;
}

@keyframes about-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .about-marquee-track { animation: none; }
}

.about-marquee-track span {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;

  color: #fff;
}

.about-marquee-dot {
  font-size: 0.6rem !important;
  opacity: 0.65;
  letter-spacing: 0 !important;
}

/* ── SHARED SECTION TITLES ────────────────────────────────── */

.about-section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--green-dark);
  margin: 0.5rem 0 1.5rem;
}

.about-section-title em {
  font-style: italic;
  color: var(--orange);
  font-family: var(--font-script, 'Satisfy', cursive);
}

/* ── SCROLL REVEAL (about page) ───────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── OUR STORY ────────────────────────────────────────────── */

.about-story {
  padding: 6rem 0 5rem;
  background: var(--cream);
  overflow: hidden;
}

.about-story-lead {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.7;
  color: #444;
  margin-bottom: 2rem;
}

.about-pull-quote {
  position: relative;
  border: none;
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  margin: 0;
  background: #fff;
  border-left: 4px solid var(--orange);
  border-radius: 0 12px 12px 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 700;
  font-style: italic;
  color: var(--green-dark);
  line-height: 1.5;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.about-pull-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  font-style: normal;
  color: var(--orange);
  letter-spacing: 0.04em;
}

/* Story image collage — Bootstrap 3-col */
.about-story-images {
  margin: 4rem 0 5rem;
  height: 480px;
}

.about-img-main {
  height: 100%;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.about-img-main:hover img { transform: scale(1.04); }

.about-img-sec,
.about-img-ter {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
}

.about-img-sec {
  min-height: 0;
}

.about-img-ter {
  height: 100%;
}

.about-img-sec img,
.about-img-ter img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-stat-badge {
  flex-shrink: 0;
  height: 96px;
  background: var(--green-dark);
  color: #fff;
  border-radius: 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
}

.about-stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
}

.about-stat-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

/* ── TIMELINE ─────────────────────────────────────────────── */

.about-timeline-section {
  position: relative;
  padding: 2rem 0 1rem;
}

.about-timeline-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(26,74,46,0.3);
  margin-bottom: 2.5rem;
}

.about-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 88px 40px 1fr;
  align-items: flex-start;
  gap: 0 1rem;
  padding-bottom: 2.8rem;
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--green-dark);
  padding-top: 2px;
  line-height: 1;
}

.timeline-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
  height: 100%;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--orange);
  flex-shrink: 0;
  z-index: 1;
}

.timeline-dot-active {
  background: var(--amber);
  box-shadow: 0 0 0 2px var(--amber), 0 0 16px rgba(245,166,35,0.4);
}

.timeline-line {
  width: 2px;
  flex: 1;
  background: rgba(26,74,46,0.15);
  margin-top: 4px;
}

.timeline-item:last-child .timeline-line { display: none; }

.timeline-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.35rem;
}

.timeline-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.65;
  color: #555;
  margin: 0;
}

/* ── MISSION ──────────────────────────────────────────────── */

.about-mission {
  position: relative;
  background: var(--green-dark);
  padding: 7rem 0;
  overflow: hidden;
}

.about-mission-texture {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 70% 50%, rgba(232,98,10,0.12) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  pointer-events: none;
}

.about-eyebrow-light {
  color: var(--amber) !important;
}

.about-mission-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  margin: 0.5rem 0 0;
}

.about-mission-text {
  font-family: var(--font-body);
  font-size: clamp(0.97rem, 1.5vw, 1.08rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  margin-bottom: 1rem;
}

.about-mission-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.mission-pillar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 0.55rem 1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  backdrop-filter: blur(8px);
  transition: background 0.25s, border-color 0.25s;
}

.mission-pillar:hover {
  background: rgba(232,98,10,0.18);
  border-color: rgba(232,98,10,0.4);
}

.mission-pillar i {
  font-size: 1rem;
  color: var(--amber);
}

/* ── VISION ───────────────────────────────────────────────── */

.about-vision {
  padding: 7rem 0;
  background: var(--cream);
  overflow: hidden;
}

.about-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-vision-desc {
  font-family: var(--font-body);
  font-size: clamp(0.97rem, 1.5vw, 1.07rem);
  line-height: 1.75;
  color: #555;
  margin-top: 1.5rem;
}

.about-vision-image-wrap {
  position: relative;
}

.about-vision-image {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 540px;
}

.about-vision-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.about-vision-image:hover img { transform: scale(1.04); }

.vision-quote-card {
  position: absolute;
  bottom: -1.5rem;
  left: -2rem;
  background: var(--orange);
  color: #fff;
  border-radius: 16px;
  padding: 1.4rem 1.8rem;
  max-width: 220px;
  box-shadow: 0 12px 40px rgba(232,98,10,0.35);
}

.vision-big-quote {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 0.8;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.4rem;
}

.vision-quote-card p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.3;
  color: #fff;
  margin: 0;
}

.vision-badge-float {
  position: absolute;
  top: 1.5rem;
  right: -1.5rem;
  background: var(--green-dark);
  color: #fff;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
  gap: 0;
}

.vision-badge-float .font-script {
  font-family: var(--font-script, 'Satisfy', cursive);
  font-size: 1rem;
  color: var(--amber);
  line-height: 1.2;
}

.vision-badge-since {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  margin-top: 2px;
}

/* ── VALUES ───────────────────────────────────────────────── */

.about-values {
  padding: 6rem 0 7rem;
  background: #fff;
  overflow: hidden;
}

.value-card {
  background: var(--cream);
  border-radius: 18px;
  padding: 2.4rem 2rem;
  height: 100%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  border: 1.5px solid transparent;
}

.value-card:hover,
.value-card:focus {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(26,74,46,0.12);
  border-color: rgba(232,98,10,0.2);
  outline: none;
}

.value-card:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.value-icon-wrap {
  width: 68px;
  height: 68px;
  background: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: background 0.3s;
}

.value-card:hover .value-icon-wrap { background: var(--orange); }

.value-icon {
  font-size: 1.5rem;
  color: var(--amber);
  display: block;
  transition: color 0.3s;
}

.value-card:hover .value-icon { color: #fff; }

.value-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}

.value-desc {
  font-family: var(--font-body);
  font-size: 0.93rem;
  line-height: 1.65;
  color: #666;
  margin: 0;
}

/* ── CTA BAND ─────────────────────────────────────────────── */

.about-cta-band {
  background: var(--green-dark);
  padding: 5rem 0;
}

.about-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.about-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.4rem;
}

.about-cta-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

.about-cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.about-btn-outline {
  display: inline-flex;
  align-items: center;
  border: 2px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.85);
  background: transparent;
  border-radius: var(--radius-full);
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.93rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.about-btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(245,166,35,0.08);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */

@media (max-width: 991px) {
  .about-story-images {
    height: auto;
  }
  .about-img-main { height: 340px; }
  .about-img-ter  { height: 220px; }

  .about-vision-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-vision-image-wrap { order: -1; }
  .about-vision-image { aspect-ratio: 4/3; max-height: 360px; }
  .vision-badge-float { right: 1rem; top: 1rem; }
  .vision-quote-card { left: 0; bottom: -1rem; max-width: 200px; }

  .about-cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 767px) {
  .about-hero { min-height: auto; padding-bottom: 4rem; }
  .about-hero-content {
    padding-top: 5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .about-hero-sub { max-width: 100%; }
  .about-hero-cta { margin-bottom: 24px; }
  .botones { width: 100%; }
  .botones .hero-btns { width: 100%; }
  .botones .hero-btns .btn { width: 100%; justify-content: center; }
  .about-hero-tag { display: none; }

  .about-story { padding: 4rem 0 3rem; }
  .about-mission { padding: 5rem 0; }
  .about-vision { padding: 5rem 0; }
  .about-values { padding: 4rem 0 5rem; }

  .timeline-item {
    grid-template-columns: 72px 32px 1fr;
  }

  .about-img-main { height: 260px; }
  .about-img-ter  { height: 180px; }
}

@media (max-width: 480px) {
  .about-pull-quote {
    font-size: 1rem;
    padding: 1.2rem 1rem 1.2rem 1.4rem;
  }
  .vision-quote-card { position: static; margin-top: 1rem; max-width: 100%; }
  .vision-badge-float { display: none; }

  .about-img-main { height: 220px; }
  .about-img-ter  { height: 160px; }
}
