/* ============================================================
   About Us — neat alignment matching site + design
   ============================================================ */

.about-page .section-head {
  max-width: 680px;
  margin: 0 auto 40px;
  text-align: center;
}

.about-page .section-head .eyebrow {
  justify-content: center;
}

.about-page .section-head h2 {
  font-family:var(--font-heading);
  font-size: clamp(30px, 3.4vw, 38px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.12;
  color: var(--ink);
  margin: 8px 0 0;
  text-align: center;
}

/* Shared two-column rhythm so left edges line up */
.about-hero__grid,
.about-story__grid,
.about-cta__panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-cta__panel {
  align-items: center;
}

.about-hero__copy,
.about-story__copy,
.about-cta__copy {
  text-align: left;
}

/* ---------- Hero ---------- */
.about-hero {
  padding: 48px 0 56px;
}

.about-hero__grid {
  align-items: center;
}

.about-hero__copy > p {
  font-family:var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0 0 28px;
  max-width: 34em;
  text-align: left;
}

.about-hero__visual,
.about-cta__visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.about-hero__photo {
  width: 100%;
  max-width: 520px;
  height: auto;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  display: block;
}

.about-cta__photo {
  width: 100%;
  max-width: 420px;
  height: auto;
  aspect-ratio: 5 / 4;
  display: block;
  border-radius: var(--radius);
  background: transparent;
  object-fit: cover;
  object-position: center top;
}

.about-deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.about-deco--bulb {
  top: 8%;
  right: 6%;
  width: 36px;
  animation: aboutFloat 7s ease-in-out infinite;
}

.about-deco--bulb img,
.about-deco--star img {
  width: 100%;
  height: auto;
  display: block;
}

.about-deco--star {
  top: 10%;
  left: 4%;
  width: 32px;
  animation: aboutFloat 8s ease-in-out infinite reverse;
}

.about-deco--dash {
  width: 52px;
  height: 18px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0 8px,
    transparent 8px 14px
  );
  border-radius: 2px;
  opacity: 0.85;
}

.about-deco--dash-1 {
  top: 18%;
  left: 2%;
  transform: rotate(-18deg);
}

.about-deco--dash-2 {
  bottom: 16%;
  right: 4%;
  transform: rotate(12deg);
}

.about-deco--dash-3 {
  bottom: 18%;
  right: 8%;
  transform: rotate(-10deg);
}

@keyframes aboutFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-deco {
    animation: none !important;
  }
}

/* ---------- Story + Mission / Vision ---------- */
.about-story {
  padding: 20px 0 72px;
}

.about-story__copy h2 {
  font-family:var(--font-heading);
  font-size: clamp(28px, 3.2vw, 36px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--ink);
  margin: 8px 0 18px;
  text-align: left;
}

.about-story__copy p {
  font-family:var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0 0 14px;
  text-align: left;
}

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

.about-story__aside {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-mv {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  text-align: left;
}

.about-mv__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 2px 8px rgba(26, 26, 26, 0.06);
}

.about-mv h3 {
  font-family:var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 6px;
  text-align: left;
}

.about-mv p {
  font-family:var(--font-body);
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
  font-size: 0.95rem;
  text-align: left;
}

/* ---------- Values ---------- */
.about-values {
  padding: 20px 0 72px;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}

.about-value {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 20px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.about-value__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cream-2);
  display: grid;
  place-items: center;
  margin: 0 0 16px;
  flex-shrink: 0;
}

.about-value h3 {
  font-family:var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 8px;
  text-align: center;
}

.about-value p {
  font-family:var(--font-body);
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
  font-size: 0.95rem;
  text-align: center;
}

/* ---------- Stats ---------- */
.about-stats {
  padding: 10px 0 72px;
}

.about-stats__bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  padding: 32px 16px;
  position: relative;
}

.about-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 22%;
  bottom: 22%;
  width: 1px;
  background: var(--line);
}

.about-stat__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: grid;
  place-items: center;
  margin-bottom: 6px;
  background: var(--white);
}

.about-stat b {
  font-family:var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
  text-align: center;
}

.about-stat span {
  font-family:var(--font-body);
  font-size: 13px;
  color: var(--slate);
  text-align: center;
}

/* ---------- CTA ---------- */
.about-cta {
  padding: 10px 0 80px;
}

.about-cta__panel {
  position: relative;
  overflow: hidden;
  background: var(--white)9f2;
  border: 1px solid #f0e4d0;
  border-radius: 24px;
  padding: clamp(36px, 4vw, 52px);
  align-items: center;
}

.about-cta__wave {
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -42%;
  height: 78%;
  background: radial-gradient(ellipse 70% 55% at 55% 100%, #f5e6c8 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.about-cta__wave::after {
  content: "";
  position: absolute;
  inset: 18% 8% 0;
  background: #f7edd9;
  border-radius: 55% 45% 0 0 / 100% 100% 0 0;
  opacity: 0.55;
}

.about-cta__dots {
  position: absolute;
  left: 28px;
  bottom: 22px;
  width: 72px;
  height: 48px;
  background-image: radial-gradient(circle, #e8c36a 1.4px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.about-cta__star {
  top: 18px;
  left: 46%;
  width: 28px;
  z-index: 1;
}

.about-cta__copy,
.about-cta__visual {
  position: relative;
  z-index: 1;
}

.about-cta__copy .eyebrow {
  color: var(--gold);
  justify-content: flex-start;
}

.about-cta__copy h2 {
  font-family:var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-size: clamp(26px, 3.2vw, 34px);
  margin: 10px 0 14px;
  text-align: left;
}

.about-cta__copy > p {
  font-family:var(--font-body);
  color: var(--slate);
  line-height: 1.65;
  margin: 0 0 28px;
  text-align: left;
  max-width: 440px;
}

.about-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}

.about-cta__actions .btn img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.about-cta__actions .btn-ghost.primary {
  color: var(--ink);
  border-color: var(--gold);
}

.about-cta__actions .btn-ghost.primary:hover {
  color: var(--ink);
  background: var(--gold);
}

.about-cta__visual .about-deco--dash-3 {
  bottom: 10%;
  right: 6%;
  z-index: 2;
}

.about-cta__dash-mid {
  left: -18px;
  bottom: 8%;
  transform: rotate(-8deg);
  z-index: 2;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .about-hero__grid,
  .about-story__grid,
  .about-cta__panel {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .about-stat:nth-child(2)::after {
    display: none;
  }

  .about-hero__visual,
  .about-cta__visual {
    justify-content: center;
  }

  .about-cta__star {
    left: auto;
    right: 18px;
    top: 16px;
  }

  .about-cta__dash-mid {
    display: none;
  }
}

@media (max-width: 640px) {
  .about-hero {
    padding: 28px 0 40px;
  }

  .about-values__grid {
    grid-template-columns: 1fr;
  }

  .about-stats__bar {
    grid-template-columns: 1fr 1fr;
  }

  .about-stat:not(:last-child)::after {
    display: none;
  }

  .about-cta__panel {
    padding: 28px 22px;
  }

  .about-cta__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .about-deco--dash {
    display: none;
  }

  .about-mv {
    flex-direction: column;
    gap: 12px;
  }
}
