/* ---------- About Us — page styles (no Tailwind dependency) ---------- */

.about-page {
  background: #fff;
}

/* ---------- Hero ---------- */
.about-hero {
  position: relative;
  min-height: clamp(400px, 52vw, 580px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: clamp(72px, 10vw, 120px) clamp(20px, 5vw, 64px) clamp(48px, 6vw, 80px);
  color: #000;
  background-color: #f7c325;
  background-image:
    url('./static/aboutus/1.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.about-hero-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(247, 195, 37, 0.9) 0%, rgba(247, 195, 37, 0.55) 32%, rgb(255 255 255 / 100%) 100%);
}

.about-hero h1 {
  margin: 0 0 clamp(8px, 1.4vw, 16px);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: #000;
  position: relative;
  z-index: 1;
}

.about-hero p {
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: #1a1a1a;
  max-width: 56ch;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* ---------- Section rhythm ---------- */
.about-section {
  padding-top: clamp(48px, 7vw, 96px);
  padding-bottom: clamp(40px, 5vw, 64px);
}

.about-section .container {
  width: min(720px, calc(100% - clamp(20px, 8vw, 48px)));
  margin: 0 auto;
  text-align: left;
}

/* ---------- Intro block ---------- */
.about-intro {
  padding-bottom: clamp(20px, 3vw, 36px);
}

.about-intro h2 {
  margin: 0 0 6px;
}

.about-intro h3 {
  margin: 0 0 clamp(20px, 2.4vw, 28px);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 600;
  color: var(--brand-dark);
  line-height: 1.3;
  text-align: left;
}

.about-intro p {
  margin: 0;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  color: #4b5563;
  line-height: 1.7;
}

/* ---------- Body — long rich-text section ---------- */
.about-body-section {
  padding-top: clamp(20px, 3vw, 40px);
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.2vw, 26px);
}

.about-body h3 {
  margin: clamp(14px, 1.8vw, 22px) 0 0;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: 800;
  color: #000;
  line-height: 1.3;
  letter-spacing: -0.01em;
  text-align: left;
}

.about-body > p {
  margin: 0;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  color: #4b5563;
  line-height: 1.7;
}

.about-points {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.6vw, 20px);
}

.about-points > li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-points > li::before {
  content: "";
  flex: 0 0 auto;
  width: 0;
  height: 0;
  margin-top: 8px;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent var(--brand);
}

.about-points > li > div {
  flex: 1 1 auto;
  min-width: 0;
}

.about-points strong {
  display: block;
  margin-bottom: 4px;
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  font-weight: 700;
  color: #000;
  letter-spacing: -0.01em;
}

.about-points p {
  margin: 0;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  color: #4b5563;
  line-height: 1.7;
}

/* ---------- Reach cards — matches index Our Reach & Results ---------- */
.about-page .reach {
  padding: clamp(36px, 6vw, 80px) 0 clamp(24px, 4vw, 56px);
}

.about-page .reach .about-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(14px, 1.8vw, 22px);
}

@media (min-width: 720px) {
  .about-page .reach .about-cards-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.about-page .reach a.about-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.about-page .reach .about-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-page .reach .about-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.about-page .reach .about-card img {
  display: block;
  width: 100%;
  height: 100%;
}

.about-page .reach .about-card-label {
  position: absolute;
  left: clamp(14px, 2vw, 22px);
  bottom: clamp(12px, 1.8vw, 20px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  text-align: left;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.about-page .reach .about-card-eyebrow {
  font-size: clamp(0.7rem, 0.9vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.about-page .reach .about-card-title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

/* Legacy card strip (if reused elsewhere) ---------- */
.about-cards {
  padding: clamp(36px, 6vw, 80px) 0 clamp(24px, 4vw, 56px);
}

.about-cards .container {
  width: min(960px, calc(100% - clamp(20px, 8vw, 48px)));
  margin: 0 auto;
}

.about-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(14px, 1.8vw, 22px);
}

@media (min-width: 720px) {
  .about-cards-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

a.about-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.about-card {
  position: relative;
  /* aspect-ratio: 4 / 3; */
  border-radius: 6px;
  overflow: hidden;
  /* background:
    linear-gradient(180deg, rgba(247, 195, 37, 0.55) 0%, rgba(0, 0, 0, 0.85) 65%, #000 100%),
    radial-gradient(circle at top, #2a2218, #050505 70%); */
  cursor: pointer;
  isolation: isolate;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}
.about-card img{
  display: block;
  height: 100%;
}

.about-card-label {
  position: absolute;
  left: clamp(14px, 2vw, 22px);
  bottom: clamp(12px, 1.8vw, 20px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  text-align: left;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.about-card-eyebrow {
  font-size: clamp(0.7rem, 0.9vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.about-card-title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.1rem, 1.8vw, 1.25rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

/* ---------- Order section — wraps shared .order-form ---------- */
.about-order {
  padding-top: clamp(28px, 4vw, 56px);
  padding-bottom: clamp(48px, 8vw, 96px);
  text-align: center;
}

.about-order .container {
  width: min(960px, calc(100% - clamp(20px, 8vw, 48px)));
  margin: 0 auto;
}

.about-order-title {
  margin: 0 0 clamp(20px, 3vw, 32px);
}

.about-order-note {
  margin: clamp(14px, 2vw, 22px) auto 0;
  max-width: 80ch;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #6b7280;
  line-height: 1.55;
}

.about-order-note a {
  color: var(--brand-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---------- Footer ---------- */
.about-footer {
  padding: clamp(28px, 4vw, 40px) 0;
  text-align: center;
  font-size: 0.85rem;
  color: #9ca3af;
}
