/* ABOUT V1 — AGAPE MOVEMENT STYLES
   DISAMAKAN DENGAN HOMEPAGE (global.css) */

/* Roots */
:root {
  --color-text: #373925;
  --color-text-soft: #8a8978;
  --color-accent: #624a36;
  --color-accent-soft: #dbcbb9;
  --color-border: #d1d6d4;
  --color-bg: #ffffff;
  --color-bg-alt: #f5f3ee;
  --color-dark: #373925;
  --color-darker: #2b2c1d;
  --color-white: #ffffff;

  --font-body: 'Garet';
  --font-display: 'Plume DaMa';
  --font-script: 'Plume DaMa';

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t: all 0.35s var(--ease);

  --max-w: 1200px;
  --pad-x: 28px;
  --section-gap: 84px;
  --radius: 18px;
  --radius-pill: 999px;
  --float-mx: 16px;
  --float-radius: 24px;
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

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

ul {
  list-style: none;
}

/* Layout */
.wrap {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

/* Scroll Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-reveal-delay="1"] {
  transition-delay: 0.08s;
}

[data-reveal-delay="2"] {
  transition-delay: 0.16s;
}

[data-reveal-delay="3"] {
  transition-delay: 0.26s;
}

[data-reveal-delay="4"] {
  transition-delay: 0.36s;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* Grain Texture */
.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* Shared Type */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text);
}

.eyebrow--light {
  color: var(--color-accent-soft);
}

.script-accent {
  font-family: var(--font-script);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--color-accent);
  display: inline-block;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 46px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
  margin-top: 16px;
  max-width: 700px;
}

.body-text {
  font-size: 15px;
  color: var(--color-text-soft);
  line-height: 1.75;
  font-weight: 400;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  height: 46px;
  padding: 0 26px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, .18) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.8s var(--ease);
  pointer-events: none;
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--fill {
  background: var(--color-text);
  color: #fff;
  border-color: var(--color-text);
  box-shadow: 0 8px 24px -10px rgba(55, 57, 37, .40);
}

.btn--fill:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn--outline:hover {
  background: var(--color-text);
  color: #fff;
  border-color: var(--color-text);
}

.btn--ghost-light {
  background: rgba(255, 255, 255, .14);
  color: #fff;
  border-color: rgba(255, 255, 255, .35);
  backdrop-filter: blur(6px);
}

.btn--ghost-light:hover {
  background: #fff;
  color: var(--color-text);
  border-color: #fff;
}

.btn--lg {
  height: 52px;
  padding: 0 32px;
  font-size: 13px;
}

.btn .arrow {
  transition: transform 0.35s var(--ease);
  display: inline-block;
}

.btn:hover .arrow {
  transform: translateX(4px);
}

/* About Hero - DISAMAKAN DENGAN SINGLE STUDIO HERO (dengan background image) */
.about-hero {
  position: relative;
  min-height: 66vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  overflow: hidden;
  margin: 0 var(--float-mx) var(--float-mx);
  border-radius: 0 0 var(--float-radius) var(--float-radius);
  background-size: cover;
  background-position: center;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(55, 57, 37, .88) 0%, rgba(55, 57, 37, .30) 46%, rgba(55, 57, 37, .55) 100%);
  z-index: 1;
}

.about-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin-inline: auto;
  padding: 90px 24px;
}

.about-hero__eyebrow {
  color: var(--color-accent-soft);
}

.about-hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  color: #fff;
  font-size: clamp(32px, 5.2vw, 60px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
  margin-top: 16px;
}

.about-hero__sub {
  margin-top: 16px;
  color: rgba(255, 255, 255, .78);
  max-width: 460px;
  margin-inline: auto;
  font-size: 15px;
  line-height: 1.7;
}

/* Company Story */
.story {
  position: relative;
  padding-block: 150px;
  background: var(--color-bg-alt);
  margin: 16px var(--float-mx);
  border-radius: var(--float-radius);
  overflow: hidden;
}

.story__float {
  position: absolute;
  object-fit: cover;
  pointer-events: none;
  opacity: .92;
  border-radius: 12px 40px 12px 40px;
  z-index: 1;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.story__float--tl {
  width: clamp(120px, 12vw, 180px);
  aspect-ratio: 9 / 10;
  top: clamp(24px, 4vw, 60px);
  left: clamp(24px, 9vw, 190px);
}

.story__float--bl {
  width: clamp(110px, 11vw, 160px);
  aspect-ratio: 9 / 10;
  bottom: clamp(24px, 4vw, 50px);
  left: clamp(28px, 21vw, 255px);
}

.story__float--tr {
  width: clamp(120px, 12vw, 180px);
  aspect-ratio: 9 / 10;
  top: clamp(20px, 3vw, 60px);
  right: clamp(24px, 12vw, 200px);
}

.story__float--br {
  width: clamp(100px, 9vw, 160px);
  aspect-ratio: 3 / 4;
  bottom: clamp(28px, 5vw, 50px);
  right: clamp(24px, 8vw, 190px);
}

.story__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
  padding-inline: clamp(0px, 4vw, 24px);
}

.story__eyebrow {
  text-align: center;
}

.story__title {
  text-align: center;
  margin-inline: auto;
  margin-top: 16px;
}

.story__body {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
  margin-top: 14px;
}

/* Core Values */
.values {
  padding-block: var(--section-gap);
  background: var(--color-dark);
  margin: 16px var(--float-mx);
  border-radius: var(--float-radius);
  overflow: hidden;
  position: relative;
}

.values__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.values__title {
  color: var(--color-white);
  max-width: 380px;
  margin-bottom: 0;
}

.values__title .section-title {
  color: var(--color-white);
}

.values__body {
  color: rgba(255, 255, 255, .65);
  max-width: 360px;
  margin-top: 14px;
}

.values__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.values__item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 28px 10px 28px 10px;
  padding: 24px 28px;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.values__item:hover {
  background: rgba(255, 255, 255, .12);
  border-color: var(--color-accent-soft);
}

.values__num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--color-accent-soft);
  flex-shrink: 0;
  padding-top: 3px;
  min-width: 28px;
}

.values__item-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 6px;
}

.values__item-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.68;
}

/* Benefits - background jadi bg-alt */
.benefits {
  padding-block: var(--section-gap);
  background: var(--color-bg-alt);
  margin: 16px var(--float-mx);
  border-radius: var(--float-radius);
  overflow: hidden;
  position: relative;
}

.benefits__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.benefits__title {
  color: var(--color-text);
  max-width: 380px;
  margin-bottom: 0;
}

.benefits__title .section-title {
  color: var(--color-text);
}

.benefits__body {
  color: var(--color-text-soft);
  max-width: 360px;
  margin-top: 14px;
}

.benefits__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefits__item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 28px 10px 28px 10px;
  padding: 20px 28px;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.benefits__item:hover {
  background: var(--color-white);
  border-color: var(--color-accent-soft);
}

.benefits__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

.benefits__item-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--color-text);
}

/* CTA Section - background jadi dark */
.cta {
  padding-block: var(--section-gap);
  background: var(--color-dark);
  margin: 16px var(--float-mx);
  border-radius: var(--float-radius);
  position: relative;
  overflow: hidden;
}

.cta-section__whisper {
  position: absolute;
  z-index: 0;
  left: -2%;
  bottom: -8%;
  font-family: var(--font-script);
  font-size: clamp(80px, 14vw, 200px);
  color: rgba(255, 255, 255, .03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 740px;
  margin-inline: auto;
}

.cta__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 5vw, 64px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.93;
  margin-top: 16px;
  color: var(--color-white);
}

.cta__title--dark {
  color: var(--color-white);
}

.cta__text {
  max-width: 420px;
  margin-top: 18px;
  color: rgba(255, 255, 255, .6);
}

.cta__text--dark {
  color: rgba(255, 255, 255, .6);
}

.cta__inner .btn {
  margin-top: 30px;
}

/* Focus Visibility */
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

/* Scrollbar + Selection */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--color-text);
  border-radius: 8px;
  border: 2px solid var(--color-bg);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent);
}

::selection {
  background: var(--color-text);
  color: #fff;
}

/* ============================================
   RESPONSIVE ABOUT PAGE - GABUNGAN
   ============================================ */

/* Tablet */
/* ============================================
   RESPONSIVE ABOUT PAGE - GABUNGAN
   ============================================ */

/* Tablet */
@media (min-width: 601px) and (max-width: 1024px) {
  /* ABOUT HERO - Mirip home tablet */
  .about-hero {
    min-height: 70vh;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .about-hero__inner {
    padding: 80px 24px 48px;
    max-width: 680px;
  }

  .about-hero__title {
    font-size: clamp(42px, 6vw, 56px);
    max-width: 100%;
    text-align: center;
  }

  .about-hero__sub {
    max-width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: 15px;
  }

  .about-hero__eyebrow {
    text-align: center;
  }

  /* STORY - Gambar tetap muncul di tablet */
  .story {
    padding-block: 100px;
  }

  .story__float {
    display: block !important;
    opacity: 0.7;
    border-radius: 12px 28px 12px 28px;
  }

  .story__float--tl {
    width: 90px;
    aspect-ratio: 9/10;
    top: 20px;
    left: 16px;
  }

  .story__float--tr {
    width: 90px;
    aspect-ratio: 9/10;
    top: 20px;
    right: 16px;
  }

  .story__float--bl {
    width: 80px;
    aspect-ratio: 9/10;
    bottom: 20px;
    left: 16px;
  }

  .story__float--br {
    width: 80px;
    aspect-ratio: 3/4;
    bottom: 20px;
    right: 16px;
  }

  .story__inner {
    max-width: 700px;
    padding-inline: 100px;
  }

  .story__body {
    max-width: 480px;
  }

  /* VALUES - Tablet */
  .values__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .values__title {
    max-width: 100%;
    text-align: center;
  }

  .values__title .section-title {
    text-align: center;
  }

  .values__body {
    max-width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  /* VALUES - Eyebrow center */
  .values .eyebrow {
    text-align: center;
    display: flex;
    justify-content: center;
  }

  .values__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .values__item {
    padding: 20px 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .values__num {
    font-size: 11px;
    min-width: auto;
  }

  .values__item-title {
    font-size: 15px;
  }

  .values__item-desc {
    font-size: 13px;
  }

  /* BENEFITS - Tablet */
  .benefits__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .benefits__title {
    max-width: 100%;
    text-align: center;
  }

  .benefits__title .section-title {
    text-align: center;
  }

  .benefits__body {
    max-width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  /* BENEFITS - Eyebrow center */
  .benefits .eyebrow {
    text-align: center;
    display: flex;
    justify-content: center;
  }

  .benefits__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .benefits__item {
    padding: 18px 22px;
  }

  .benefits__item-title {
    font-size: 13.5px;
  }

  /* CTA - Tablet */
  .cta {
    padding-block: 70px;
  }

  .cta__title {
    font-size: clamp(36px, 5vw, 48px);
  }
}

/* Mobile */
@media (max-width: 600px) {
  /* Global Override */
  :root {
    --section-gap: 60px;
    --pad-x: 18px;
    --float-mx: 8px;
    --float-radius: 18px;
  }

  /* ABOUT HERO */
  .about-hero {
    min-height: 70vh;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 var(--float-mx) var(--float-mx);
  }

  .about-hero__inner {
    padding: 70px 20px 40px;
  }

  .about-hero__title {
    font-size: clamp(28px, 8vw, 38px);
  }

  .about-hero__sub {
    font-size: 14px;
    padding-inline: 4px;
  }

  /* STORY */
  .story {
    padding-block: 60px;
    margin: 8px var(--float-mx);
  }

  .story__float {
    display: none;
  }

  .story__inner {
    padding-inline: 0;
  }

  .story__body {
    font-size: 14px;
    padding-inline: 8px;
  }

  /* VALUES */
  .values {
    margin: 8px var(--float-mx);
  }

  .values__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .values__title {
    text-align: center;
  }

  .values__title .section-title {
    text-align: center;
    font-size: clamp(26px, 7vw, 32px);
  }

  .values__body {
    text-align: center;
    font-size: 14px;
  }

  .values__list {
    gap: 12px;
  }

  .values__item {
    padding: 16px 18px;
    gap: 10px;
    border-radius: 20px 8px 20px 8px;
  }

  .values__num {
    font-size: 11px;
  }

  .values__item-title {
    font-size: 14px;
  }

  .values__item-desc {
    font-size: 12.5px;
  }

  /* BENEFITS */
  .benefits {
    margin: 8px var(--float-mx);
  }

  .benefits__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .benefits__title {
    text-align: center;
  }

  .benefits__title .section-title {
    text-align: center;
    font-size: clamp(26px, 7vw, 32px);
  }

  .benefits__body {
    text-align: center;
    font-size: 14px;
  }

  .benefits__list {
    gap: 12px;
  }

  .benefits__item {
    padding: 16px 18px;
    gap: 14px;
    border-radius: 20px 8px 20px 8px;
  }

  .benefits__item-title {
    font-size: 13px;
  }

  /* CTA */
  .cta {
    margin: 8px var(--float-mx);
    padding-block: 50px;
  }

  .cta__title {
    font-size: clamp(28px, 7vw, 36px);
  }

  .cta__text {
    font-size: 14px;
    padding-inline: 8px;
  }

  .cta__inner .btn {
    width: 100%;
    max-width: 280px;
  }

  .cta-section__whisper {
    display: none;
  }
}

/* Medium-large Tablet (existing style from original) */
@media (max-width: 1180px) and (min-width: 861px) {
  .story__float--tl,
  .story__float--tr {
    width: 110px;
    top: 16px;
  }

  .story__float--bl,
  .story__float--br {
    width: 100px;
    bottom: 16px;
  }

  .story__float--tl,
  .story__float--bl {
    left: 12px;
  }

  .story__float--tr,
  .story__float--br {
    right: 12px;
  }
}

/* Original mobile story float hide (kept for backward compatibility) */
@media (max-width: 860px) {
  .story__float {
    display: none;
  }
}