/* =====================================================
   ABOUT US V1 STYLES
   ===================================================== */

/* ── Root Variables ── */
:root {
  --color-ember: #eba726;
  --color-blue: #0285bc;
  --color-sand: #ede8ae;
  --color-ink: #2f2d30;
  --color-chalk: #f4f5f1;
  --color-steel: #6b6966;
  --color-line: rgba(47, 45, 48, 0.08);
  --wa: #25D366;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #ffffff;
  color: #2f2d30;
  font-family: 'Heebo', sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
}

.display,
h1,
h2,
h3,
.logo {
  font-family: 'Caprasimo', serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.mono {
  font-family: 'Heebo', monospace;
  font-weight: 500;
  letter-spacing: 0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* ── CURSOR LIGHT ── */
.cursor-light {
  position: fixed;
  top: 0;
  left: 0;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(2, 133, 188, 0.12) 0%, rgba(235, 167, 38, 0.08) 40%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.8s var(--ease);
  will-change: transform;
  mix-blend-mode: multiply;
}

.cursor-light.on {
  opacity: 1;
}

@media (max-width: 1024px),
(hover: none) {
  .cursor-light {
    display: none;
  }
}

/* ── REVEAL ANIMATIONS ── */
@keyframes rvIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.rv.in {
  animation: rvIn 0.8s var(--ease) both;
}

.rv-1.in {
  animation-delay: 0.05s;
}

.rv-2.in {
  animation-delay: 0.15s;
}

.rv-3.in {
  animation-delay: 0.25s;
}

.rv-4.in {
  animation-delay: 0.35s;
}

@keyframes rvScale {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.rv-scale.in {
  animation: rvScale 0.7s var(--ease) both;
}

/* ── BUTTONS ── */
.btn,
.cta-btn,
.wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 999px;
  transition: 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn::after,
.cta-btn::after,
.wa-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.20) 50%, transparent 65%);
  transform: translateX(-110%);
  transition: transform 0.8s var(--ease);
  pointer-events: none;
}

.btn:hover::after,
.cta-btn:hover::after,
.wa-btn:hover::after {
  transform: translateX(110%);
}

.btn:hover,
.cta-btn:hover,
.wa-btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: #eba726;
  color: #2f2d30;
  box-shadow: 0 14px 30px -10px rgba(235, 167, 38, 0.45);
}

.btn-primary:hover {
  background: #f5c14a;
  box-shadow: 0 22px 44px -10px rgba(235, 167, 38, 0.55);
}

.btn-ghost {
  background: transparent;
  color: var(--color-ink);
  border: 1.5px solid var(--color-line);
}

.btn-ghost:hover {
  background: var(--color-ink);
  color: #ffffff;
  border-color: var(--color-ink);
}

.cta-btn {
  background: var(--color-ink);
  color: #ffffff;
  padding: 12px 24px;
}

.cta-btn:hover {
  background: var(--color-blue);
  box-shadow: 0 16px 36px -12px rgba(2, 133, 188, 0.40);
}

/* ── PAGE HERO ── */
.page-hero {
  padding: 56px 0 8px;
  background: var(--color-chalk);
}

.page-hero .wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.page-hero .eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: 18px;
}

.page-hero h1 {
  font-family: 'Caprasimo', serif;
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.04;
  color: var(--color-ink);
}

.page-hero h1 span {
  color: var(--color-ember);
}

.page-hero .sub {
  font-size: 16.5px;
  color: var(--color-steel);
  max-width: 560px;
  margin: 22px auto 0;
  line-height: 1.75;
  font-weight: 400;
}

/* ── SECTION HEADER ── */
.section {
  padding: 100px 0;
  background: #ffffff;
}

.section.tight {
  padding-top: 64px;
}

.section.journey-section {
  background: var(--color-chalk);
}

.section-head {
  max-width: 620px;
  margin: 0 auto 48px;
  padding: 0 40px;
  text-align: center;
}

.kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b6966;
  margin-bottom: 10px;
}

.section-head h2 {
  font-family: 'Caprasimo', serif;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.05;
  color: var(--color-ink);
}

.section-head h2 .accent-ember {
  color: var(--color-ember);
}

.section-head h2 .accent-blue {
  color: var(--color-blue);
}

/* ── JOURNEY ── */
.journey {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  align-items: center;
}

.journey-visual {
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  background: var(--color-chalk);
  border: 1px solid var(--color-line);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.journey-visual:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -16px rgba(47, 45, 48, 0.12);
}

.journey-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s var(--ease);
}

.journey-visual:hover img {
  transform: scale(1.06);
}

.journey-copy p {
  font-size: 15px;
  line-height: 1.75;
  color: #4a4845;
  margin-bottom: 18px;
}

.journey-copy p:first-of-type {
  color: var(--color-ink);
  font-size: 18px;
  font-weight: 500;
}

/* ── TIMELINE ── */
.timeline {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--color-line);
}

@media (min-width: 700px) {
  .timeline::before {
    left: 50%;
    margin-left: -1px;
  }
}

.t-item {
  position: relative;
  padding: 0 0 48px 64px;
}

.t-item:last-child {
  padding-bottom: 0;
}

.t-item::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-ember);
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 2px var(--color-line);
}

.t-item.blue::before {
  background: var(--color-blue);
}

.t-item .year {
  font-family: 'Caprasimo', serif;
  font-size: 22px;
  color: var(--color-ink);
  margin-bottom: 6px;
}

.t-item p {
  font-size: 14.5px;
  color: #4a4845;
  line-height: 1.7;
  max-width: 480px;
}

@media (min-width: 700px) {
  .t-item {
    width: 50%;
    padding: 0 0 56px 0;
  }
  .t-item:nth-child(odd) {
    padding-right: 60px;
    text-align: right;
    margin-left: 0;
  }
  .t-item:nth-child(even) {
    padding-left: 60px;
    margin-left: 50%;
  }
  .t-item:nth-child(odd)::before {
    left: auto;
    right: -8px;
  }
  .t-item:nth-child(even)::before {
    left: -8px;
  }
  .t-item:nth-child(odd) p {
    margin-left: auto;
  }
}

/* ── VALUES ── */
.values-band {
  background: var(--color-chalk);
}

.agape-def {
  max-width: 720px;
  margin: 0 auto 56px;
  padding: 0 40px;
  text-align: center;
}

.agape-def p {
  font-size: 16px;
  color: #4a4845;
  line-height: 1.75;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

.value-card {
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: 16px;
  padding: 30px 24px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -18px rgba(47, 45, 48, 0.16);
}

.value-card .icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-sand);
  margin-bottom: 18px;
}

.value-card:nth-child(even) .icon {
  background: #dcecf5;
}

.value-card .icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-ink);
}

.value-card .icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

.value-card h4 {
  font-family: 'Caprasimo', serif;
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--color-ink);
}

.value-card p {
  font-size: 13.5px;
  color: #6b6966;
  line-height: 1.6;
}

/* ── TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px 48px;
}

.team-grid a {
  color: inherit;
  text-decoration: none;
}

.team-card:hover .name,
.team-card:hover .role {
  transform: translateY(-3px);
  transition: transform 0.3s var(--ease);
}

.team-card {
  text-align: center;
}

.team-photo {
  aspect-ratio: 1/1;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 14px;
  background: #f0ede8;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.team-card:hover .team-photo img {
  transform: scale(1.06);
}

.team-card .name {
  font-family: 'Caprasimo', serif;
  font-size: 17px;
  color: var(--color-ink);
}

.team-card .role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-steel);
  margin-top: 4px;
}

.team-card .role.blue {
  color: var(--color-blue);
}

.team-card .role.ember {
  color: #b87c1a;
}

.team-card .role.dual {
  display: inline-block;
  background: linear-gradient(90deg, var(--color-ember), var(--color-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.team-cta {
  text-align: center;
  padding: 0 40px;
}

.team-cta a {
  color: inherit;
  text-decoration: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .page-hero h1 {
    font-size: 44px;
  }
  .journey {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .page-hero {
    padding: 44px 0 8px;
  }
  .page-hero .wrap {
    padding: 0 20px;
  }
  .page-hero h1 {
    font-size: 32px;
  }
  .page-hero .sub {
    font-size: 15px;
  }
  .section {
    padding: 64px 0;
  }
  .section-head {
    padding: 0 20px;
    margin-bottom: 36px;
  }
  .section-head h3 {
    font-size: 28px;
  }
  .journey {
    padding: 0 20px;
    gap: 32px;
  }
  .timeline {
    padding: 0 20px;
  }
  .timeline::before {
    left: 8px;
  }
  .t-item {
    padding-left: 40px;
  }
  .t-item::before {
    left: 0;
  }
  .values-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
    padding: 0 20px 36px;
    gap: 14px;
  }
  .btn,
  .cta-btn,
  .wa-btn {
    padding: 8px 16px;
    font-size: 10px;
    gap: 6px;
  }
  .cta-btn {
    padding: 10px 18px;
  }
  .wa-btn {
    padding: 8px 14px;
  }
  .wa-btn svg {
    width: 12px;
    height: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .cursor-light {
    display: none !important;
  }
}

::selection {
  background: var(--color-ember);
  color: #ffffff;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #f5f3ef;
}

::-webkit-scrollbar-thumb {
  background: var(--color-blue);
  border-radius: 10px;
  border: 2px solid #f5f3ef;
}

::-webkit-scrollbar-thumb:hover {
  background: #026a98;
}