/* =============================================
   About Page — Restructured Styles
   ============================================= */

/* ---- Hero (Mirrors Contact Page) ---- */
.about-hero {
  background: linear-gradient(135deg, #f0fafa 0%, #f9f8f4 50%, #eef7f7 100%);
  padding: 4rem 5% 3.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(9, 107, 108, 0.06);
  pointer-events: none;
}
.about-hero-inner {
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.eyebrow-icon {
  width: 16px;
  height: 16px;
}

.about-hero-title {
  font-family: "Mona Sans", sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.tt-teal {
  color: var(--primary-color);
}

.about-hero-sub {
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  color: #555;
  max-width: 1150px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}
.about-hero-sub p {
  margin-bottom: 1rem;
}
.about-hero-sub p:last-child {
  margin-bottom: 0;
}

.about-hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 60px;
  padding: 0.8rem 2rem;
}
.stat-item {
  text-align: center;
}
.stat-number {
  display: block;
  font-family: "Mona Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
}
.stat-label {
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stat-divider {
  width: 1px;
  height: 28px;
  background: var(--border-color);
}

/* ---- Mission Cards (Mirrors Contact Methods) ---- */
.about-mission {
  padding: 0 5%;
  margin-top: -1.5rem;
  position: relative;
  z-index: 2;
}
.mission-grid {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.mission-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  color: inherit;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}
.mission-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-color);
}
.mission-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-color);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.mission-icon-wrap .lucide {
  width: 22px;
  height: 22px;
}
.mission-card h3 {
  font-family: "Mona Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: #1a1a1a;
}
.mission-card p {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}

/* ---- Story Section ---- */
.tt-section {
  padding: 4rem 5%;
}
.bg-soft {
  background: #f9f8f4;
}

.story-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-content h2 {
  font-family: "Mona Sans", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.story-content p {
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.story-image {
  position: relative;
}
.story-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ---- Craft Section ---- */
.craft-container {
  margin: 0 auto;
}
.craft-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.craft-header h2 {
  font-family: "Mona Sans", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.6rem;
}
.craft-sub {
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

.craft-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.craft-step {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem;
  position: relative;
  transition: border-color 0.3s ease;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  overflow: hidden;
}
.craft-step:hover {
  border-color: var(--primary-color);
}
.craft-content {
  flex: 1;
  position: relative;
  z-index: 1;
}
.craft-image {
  width: 180px;
  height: 180px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.craft-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.craft-step h3 {
  font-family: "Mona Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 1;
}
.craft-step p {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ---- Founders Section ---- */
.about-founders {
  background: #fff;
  padding: 4rem 5% 0rem;
}
.founders-container {
  margin: 0 auto;
}
.founders-header {
  text-align: center;
  margin-bottom: 5rem;
}
.founders-header h2 {
  font-family: "Mona Sans", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.6rem;
}
.founders-sub {
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.founder-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #f9f8f4;
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 4rem 2.5rem 2rem;
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  margin-top: 60px;
}
.founder-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(9, 107, 108, 0.08);
  border-color: var(--primary-color);
}

.founder-image-wrap {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
}
.founder-icon-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  border: 4px solid #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}
.founder-icon-placeholder .lucide {
  width: 50px;
  height: 50px;
}
.founder-decor {
  position: absolute;
  top: 10px;
  right: -10px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 2px,
    rgba(9, 107, 108, 0.2) 2px,
    rgba(9, 107, 108, 0.2) 4px
  );
  z-index: 1;
}

.founder-info h3 {
  font-family: "Mona Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.2rem;
}
.founder-role {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.founder-info p {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.founder-socials {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}
.founder-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--border-color);
  color: #555;
  transition: all 0.2s ease;
}
.founder-socials a img {
  width: 16px;
  height: 16px;
  transition: filter 0.2s ease;
}
.founder-socials a:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}
.founder-socials a:hover img {
  filter: brightness(0) invert(1);
}

/* ---- Collection CTA (Mirrors Contact Page) ---- */
.collection-cta-section {
  padding: 4rem 5%;
}
.collection-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(135deg, #096b6c 0%, #064e4e 50%, #053f3f 100%);
  border-radius: 20px;
  padding: 3.5rem 3rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.collection-cta-content {
  position: relative;
  z-index: 1;
}
.cta-eyebrow {
  display: inline-block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.8rem;
}
.cta-heading {
  font-family: "Mona Sans", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.cta-highlight {
  color: #5dd9c1;
}
.cta-description {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: var(--primary-color);
  padding: 0.75rem 1.8rem;
  border-radius: 60px;
  font-family: "Mona Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}
.btn-cta-primary .lucide {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}
.btn-cta-primary:hover {
  background: #f0f8f8;
  transform: translateY(-2px);
}
.btn-cta-primary:hover .lucide {
  transform: translateX(3px);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.75rem 1.8rem;
  border-radius: 60px;
  font-family: "Mona Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
}
.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ---- Scroll Reveal ---- */
.reveal-on-scroll-init {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal-on-scroll-init.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .mission-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .mission-card {
    padding: 1.5rem 1rem;
  }
  .story-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .mission-grid {
    grid-template-columns: 1fr;
  }
  .craft-grid {
    grid-template-columns: 1fr;
  }
  .founders-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
}

@media (max-width: 640px) {
  .about-hero {
    padding: 3.5rem 5% 2rem;
  }
  .about-hero-title {
    font-size: 1.85rem;
  }
  .about-hero-sub {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }
  .about-hero-stats {
    flex-direction: row;
    gap: 0.6rem;
    border-radius: 60px;
    padding: 0.6rem 0.8rem;
    width: fit-content;
    margin: 0 auto;
    white-space: nowrap;
  }
  .stat-number {
    font-size: 0.85rem;
  }
  .stat-label {
    font-size: 0.55rem;
    letter-spacing: 0;
  }
  .stat-divider {
    width: 1px;
    height: 18px;
  }

  .tt-section {
    padding: 3rem 5%;
  }
  .story-content h2,
  .craft-header h2 {
    font-size: 1.8rem;
  }

  .collection-cta-inner {
    padding: 2.5rem 1.5rem;
    border-radius: 14px;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .craft-step {
    flex-direction: column-reverse;
    padding: 1.5rem;
    text-align: center;
  }
  .craft-image {
    width: 100%;
    height: 200px;
  }
}
