/* ============================================================
   about.css — Beyond J.C. Group OPC | About Us Page
   Compact page header (no full-screen hero)
   Matches site design system: Fraunces/DM Sans, green & yellow accents
   ============================================================ */

:root {
  --au-green:        #0d542b;
  --au-green-hover:  #0a4322;
  --au-green-light:  #dcfce7;
  --au-yellow:       #eab308;
  --au-yellow-hover: #ca8a04;
  --au-yellow-light: #fef9c3;
  --au-ink:          #111111;
  --au-ink-mid:      #444444;
  --au-ink-light:    #888888;
  --au-white:        #ffffff;
  --au-off-white:    #f8f8f8;
  --au-border:       #efefef;
  --au-border-dark:  #e2e2e2;
  --au-font-display: sans-serif;
  --au-font-body:    sans-serif;
  --au-max-w:        1380px;
  --au-px:           clamp(20px, 5vw, 80px);
  --au-r-card:       16px;
  --au-r-pill:       9999px;
  --au-sh-card:      0 1px 3px rgba(0,0,0,.05), 0 4px 12px rgba(0,0,0,.04);
  --au-sh-hover:     0 8px 28px rgba(0,0,0,.09), 0 2px 6px rgba(0,0,0,.04);
  --au-t-spring:     cubic-bezier(0.34, 1.56, 0.64, 1);
  --au-t-fast:       .18s ease;
  --navbar-h:        80px;
}

/* ── Scroll reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .52s ease, transform .52s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* ── 1. PAGE HEADER — compact ─────────────────────────────── */
.au-page-header {
  background: var(--au-white);
  padding: calc(var(--navbar-h) + 52px) var(--au-px) 52px;
  padding-left: 10%; padding-right: 10%;
  border-bottom: 1px solid var(--au-border);
}
.au-page-header__inner {
  max-width: var(--au-max-w);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.au-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--au-font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--au-green);
  margin-bottom: 14px;
}
.au-eyebrow--light { color: rgba(255,255,255,.6); }

.au-eyebrow-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--au-green);
  border-radius: 50%;
  animation: auDotPulse 2.5s ease infinite;
}

.au-page-header__title {
  font-family: var(--au-font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 600;
  line-height: 1.0;
  color: var(--au-ink);
  letter-spacing: -2.5px;
  margin-bottom: 18px;
}
.au-page-header__title em {
  font-style: italic;
  color: var(--au-green);
}

.au-page-header__sub {
  font-family: var(--au-font-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--au-ink-light);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 32px;
}

/* Brand pills */
.au-page-header__brands {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.au-brand-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: var(--au-r-pill);
  font-family: var(--au-font-body);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform .22s var(--au-t-spring);
}
.au-brand-pill:hover { transform: translateX(4px); }

.au-brand-pill img {
  width: 28px; height: 28px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.au-brand-pill__fallback,
.au-brand-pill__icon {
  width: 28px; height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--au-font-display);
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.au-brand-pill--green  { background: var(--au-green-light); color: var(--au-green); border-color: rgba(13,84,43,.15); }
.au-brand-pill--green .au-brand-pill__fallback { background: var(--au-green); color: var(--au-white); }

.au-brand-pill--yellow { background: var(--au-yellow-light); color: #854d0e; border-color: rgba(234,179,8,.2); }
.au-brand-pill--yellow .au-brand-pill__fallback { background: var(--au-yellow); color: var(--au-ink); }

.au-brand-pill--dark   { background: var(--au-off-white); color: var(--au-ink-mid); border-color: var(--au-border-dark); }
.au-brand-pill--dark .au-brand-pill__icon { background: var(--au-ink); color: var(--au-white); }

/* ── 2. BUTTONS ───────────────────────────────────────────── */
.au-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--au-r-pill);
  font-family: var(--au-font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .22s var(--au-t-spring), box-shadow .22s;
}
.au-btn:hover { transform: translateY(-2px); }
.au-btn--dark {
  background: var(--au-ink);
  color: var(--au-white);
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.au-btn--dark:hover { box-shadow: 0 8px 24px rgba(0,0,0,.2); }

/* ── 3. SECTION CHROME ────────────────────────────────────── */
.au-section-header {
  text-align: center;
  margin-bottom: 52px;
}
.au-section-header .au-eyebrow { justify-content: center; }

.au-section-title {
  font-family: var(--au-font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 600;
  color: var(--au-ink);
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin-bottom: 12px;
}
.au-section-sub {
  font-family: var(--au-font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--au-ink-light);
  line-height: 1.7;
  max-width: 520px;
  margin-inline: auto;
}

/* ── 4. PILLARS — 4 col grid ──────────────────────────────── */
.au-pillars {
  background: var(--au-off-white);
  padding: 8% 0 88px;
}
.au-pillars__inner {
  max-width: var(--au-max-w);
  margin-inline: auto;
  padding-inline: var(--au-px);
}

.au-pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.au-pillar {
  background: var(--au-white);
  border-radius: var(--au-r-card);
  border: 1px solid var(--au-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--au-sh-card);
  transition: transform .28s var(--au-t-spring), box-shadow .28s;
}
.au-pillar:hover {
  transform: translateY(-5px);
  box-shadow: var(--au-sh-hover);
}
.au-pillar--green { border-top: 3px solid var(--au-green); }
.au-pillar--yellow { border-top: 3px solid var(--au-yellow); }

.au-pillar__img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: var(--au-off-white);
}
.au-pillar__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.au-pillar:hover .au-pillar__img { transform: scale(1.05); }

.au-pillar__body {
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 1px solid var(--au-border);
}
.au-pillar__title {
  font-family: var(--au-font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--au-ink);
  letter-spacing: -.5px;
  margin-bottom: 10px;
}
.au-pillar__desc {
  font-family: var(--au-font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--au-ink-mid);
  line-height: 1.7;
  flex: 1;
}

/* ── 5. CORE VALUES — 3 col grid ─────────────────────────── */
.au-values {
  background: var(--au-white);
  padding: 80px 0 88px;
}
.au-values__inner {
  max-width: var(--au-max-w);
  margin-inline: auto;
  padding-inline: var(--au-px);
}

.au-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.au-value {
  background: var(--au-off-white);
  border-radius: var(--au-r-card);
  border: 1px solid var(--au-border);
  padding: 28px 24px 30px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform .28s var(--au-t-spring), box-shadow .28s, background .2s;
}
.au-value:hover {
  background: var(--au-white);
  transform: translateY(-4px);
  box-shadow: var(--au-sh-hover);
}

.au-value__icon {
  width: 48px; height: 48px;
  background: var(--au-green-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--au-green);
  margin-bottom: 18px;
  flex-shrink: 0;
  transition: background .2s, color .2s, transform .22s var(--au-t-spring);
}
.au-value:hover .au-value__icon {
  background: var(--au-green);
  color: var(--au-white);
  transform: scale(1.08);
}

.au-value__img-wrap {
  width: 56px; height: 56px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  display: none; /* show if you prefer image over icon */
}

.au-value__title {
  font-family: var(--au-font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--au-ink);
  letter-spacing: -.5px;
  margin-bottom: 10px;
  line-height: 1.2;
}
.au-value__desc {
  font-family: var(--au-font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--au-ink-light);
  line-height: 1.7;
}

/* ── 6. CONTACT SECTION ───────────────────────────────────── */
.au-contact {
  background: var(--au-green);
  padding: 88px var(--au-px);
}
.au-contact__inner {
  max-width: var(--au-max-w);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 72px;
  align-items: start;
}

.au-contact__title {
  font-family: var(--au-font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  color: var(--au-white);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
  margin-top: 10px;
}
.au-contact__title em {
  font-style: italic;
  color: var(--au-yellow);
}

.au-contact__sub {
  font-family: var(--au-font-body);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  margin-bottom: 32px;
}

.au-contact__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.au-contact__info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--au-font-body);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,.7);
}
.au-contact__info-item svg { flex-shrink: 0; opacity: .7; }
.au-contact__info-item a {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  transition: color var(--au-t-fast);
}
.au-contact__info-item a:hover { color: var(--au-white); }

/* Form */
.au-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.au-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.au-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.au-form__group--full { grid-column: 1 / -1; }

.au-form__label {
  font-family: var(--au-font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,.7);
}
.au-form__label span { color: var(--au-yellow); }

.au-form__input {
  font-family: var(--au-font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--au-ink);
  background: rgba(255,255,255,.95);
  border: 1.5px solid transparent;
  border-radius: 10px;
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--au-t-fast), box-shadow var(--au-t-fast);
  width: 100%;
}
.au-form__input::placeholder { color: var(--au-ink-light); }
.au-form__input:focus {
  border-color: var(--au-yellow);
  box-shadow: 0 0 0 3px rgba(234,179,8,.2);
}

.au-form__textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.au-form__actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding-top: 4px;
}

.au-form__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--au-r-pill);
  font-family: var(--au-font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform .22s var(--au-t-spring), box-shadow .22s, background .18s;
}
.au-form__btn:hover { transform: translateY(-2px); }

.au-form__btn--primary {
  background: var(--au-yellow);
  color: var(--au-ink);
  box-shadow: 0 4px 16px rgba(234,179,8,.25);
}
.au-form__btn--primary:hover {
  background: var(--au-yellow-hover);
  color: var(--au-white);
  box-shadow: 0 8px 24px rgba(234,179,8,.35);
}

.au-form__btn--ghost {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  border: 1.5px solid rgba(255,255,255,.2);
}
.au-form__btn--ghost:hover {
  background: rgba(255,255,255,.18);
  color: var(--au-white);
}

/* ── 7. ANIMATIONS ────────────────────────────────────────── */
@keyframes auDotPulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%     { transform: scale(1.6); opacity: .5; }
}

/* ── 8. RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1100px) {
  .au-pillars__grid { grid-template-columns: repeat(2, 1fr); }
  .au-values__grid  { grid-template-columns: repeat(2, 1fr); }
  .au-contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .au-page-header__inner { grid-template-columns: 1fr; }
  .au-page-header__brands { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 860px) {
  .au-form__row { grid-template-columns: 1fr; }
  .au-page-header__brands { gap: 8px; }
}
@media (max-width: 540px) {
  .au-pillars__grid { grid-template-columns: 1fr; }
  .au-values__grid  { grid-template-columns: 1fr; }
  .au-form__actions { flex-direction: column; }
  .au-form__btn { justify-content: center; }
}