/* About page v2 — desktop-first, assets from NEW PORTFOLIO zip */

:root {
  --c-black: #000;
  --c-white: #fff;
  --c-gray: #7e7e7e;
  --c-body: #4a4a4a;
  --c-yellow: #f8ab12;
  --c-pink: #d3396f;
  --c-pink-bg: #ffeef4;
  --c-cream: #fff2d2;
  --c-line: #c2c2c2;
  --c-muted-nav: #ddd;
  --c-dot-blue: #509ee6;
  --max-w: 1440px;
  --pad-x: 96px;
  --radius-lg: 28px;
  --font-body: "Inter", system-ui, sans-serif;
  --font-display: "Satoshi", "Inter", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--c-white);
  color: var(--c-black);
  font-family: var(--font-body);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

.ab {
  width: 100%;
}

.ab__wrap {
  max-width: var(--max-w);
  margin: 0 auto;
}

/* NAV (matches landing) */
.ab-nav {
  padding: 40px var(--pad-x);
}

.ab-nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.ab-nav__name {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
}

.ab-nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.ab-nav__links a {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  color: var(--c-gray);
}

.ab-nav__links a.is-active {
  font-weight: 700;
  color: var(--c-yellow);
}

/* ABOUT FRAME */
.ab-intro {
  padding: 60px 95px;
}

.ab-intro__grid {
  position: relative;
  min-height: 656px;
}

.ab-intro__profile {
  position: absolute;
  left: 0;
  top: 136px;
  width: 380px;
  height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.ab-intro__profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ab-intro__stamps {
  position: absolute;
  right: 0;
  top: 0;
  width: 244px;
  height: 272px;
}

.ab-intro__stamps img {
  position: absolute;
  display: block;
}

.ab-intro__stamp-sf {
  left: 0;
  top: 0;
  width: 135px;
  height: 135px;
}

.ab-intro__stamp-in {
  right: 0;
  top: 0;
  width: 100px;
  height: 134px;
}

.ab-intro__stamp-bkk {
  right: 0;
  bottom: 0;
  width: 156px;
  height: 129px;
}

.ab-intro__copy {
  position: absolute;
  left: 453px;
  top: 250px;
  width: min(796px, calc(100% - 453px));
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.ab-intro__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 60px;
  line-height: 81px;
  color: var(--c-pink);
}

.ab-intro__bio {
  margin: 0;
  font-size: 24px;
  line-height: 29px;
  color: var(--c-body);
}

/* TIMELINE */
.ab-timeline {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: var(--c-pink-bg);
  padding: 100px 0;
}

.ab-timeline__inner {
  position: relative;
  margin: 0 auto;
  padding-top: 40px;
  padding-bottom: 40px;
  max-width: 1440px;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.ab-timeline__line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 0;
  border-top: 2px solid var(--c-line);
}

.ab-timeline__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.ab-timeline__item {
  position: relative;
  width: 100%;
}

.ab-timeline__top, .ab-timeline__bottom {
  height: 180px;
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  padding-right: 20px;
}

.ab-timeline__top {
  justify-content: flex-end;
  padding-bottom: 24px;
}

.ab-timeline__bottom {
  justify-content: flex-start;
  padding-top: 24px;
}

.ab-timeline__dot {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translate(calc(-50% + 4px), -50%);
  width: 19px;
  height: 19px;
  border-radius: 999px;
  background: var(--c-yellow);
}

.ab-timeline__loc {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 17px;
  font-weight: 600;
}

.ab-timeline__loc img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.ab-timeline__school {
  margin: 0;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
}

.ab-timeline__years {
  margin: 0;
  font-size: 18px;
  line-height: 22px;
  color: var(--c-gray);
}

/* TOOLS */
.ab-tools {
  padding: 80px var(--pad-x);
  border-bottom: 2px solid #f0f0f0;
}

.ab-tools__row {
  max-width: 1248px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.ab-tools__row img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s cubic-bezier(0.34, 1.35, 0.64, 1);
}

.ab-tools__row img:hover {
  transform: translateY(-8px) scale(1.1);
}

/* DAYS OFF */
.ab-days {
  padding: 80px var(--pad-x);
}

.ab-days__title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 60px;
  max-width: 1248px;
}

.ab-days__title img {
  width: 50px;
  height: 50px;
}

.ab-days__title h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 40px;
  line-height: 54px;
}

.ab-bento {
  max-width: 1248px;
  height: 754px;
  position: relative;
  margin: 0 auto;
}

.ab-bento__card {
  position: absolute;
  background: var(--c-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.ab-bento__card img.ab-bento__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ab-bento__card--pup {
  width: 389px;
  height: 453px;
  left: 0;
  top: 0;
}

.ab-bento__card--travel {
  width: 389.33px;
  height: 389px;
  left: 429px;
  top: 0;
}

.ab-bento__card--beach {
  width: 389.33px;
  height: 389px;
  left: 858.33px;
  top: 0;
}

.ab-bento__card--ramen {
  width: 389px;
  height: 261px;
  left: 0;
  top: 493px;
}

.ab-bento__card--journal {
  width: 556px;
  height: 325px;
  left: 429px;
  top: 429px;
}

.ab-bento__card--flower {
  width: 223px;
  height: 325px;
  left: 1025px;
  top: 429px;
}

.ab-bento__icon {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.ab-bento__icon--pup {
  width: 91px;
  height: 91px;
  right: -12px;
  top: -8px;
  transform: rotate(-6deg);
}

.ab-bento__icon--tag {
  width: 89px;
  height: 93px;
  right: 20px;
  top: 40px;
  transform: rotate(-14deg);
}

.ab-bento__icon--beach {
  width: 56px;
  height: 56px;
  left: -20px;
  bottom: 40px;
}

.ab-bento__icon--journal {
  width: 60px;
  height: 60px;
  right: 12px;
  bottom: -8px;
  transform: rotate(-17deg);
}

.ab-bento__icon--ramen {
  width: 82px;
  height: 82px;
  left: 10px;
  top: 10px;
  transform: rotate(10deg);
}

.ab-bento__overlay {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  padding: 24px;
  gap: 10px;
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 28px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 5;
}

.ab-bento__card:hover .ab-bento__overlay {
  opacity: 1;
}

.ab-bento__overlay p {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
  margin: 0;
  flex: none;
}

/* CONNECT */
.ab-connect {
  padding: 60px var(--pad-x) 100px;
}

.ab-connect__row {
  max-width: 1248px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  flex-wrap: wrap;
}

.ab-connect__title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ab-connect__title img {
  width: 40px;
  height: 40px;
}

.ab-connect__title h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  line-height: 43px;
}

.ab-connect__icons {
  display: flex;
  align-items: center;
  gap: 50px;
}

.ab-connect__icons a {
  display: block;
  transition: transform 0.3s ease;
}

.ab-connect__icons a:hover {
  transform: translateY(-4px) scale(1.06);
}

.ab-connect__icons img {
  width: 50px;
  height: 50px;
  display: block;
}

/* FOOTER NAV + BAR */
.ab-footer {
  position: relative;
  border-top: 2px solid #f0f0f0;
  border-radius: 28px 28px 0 0;
  padding: 60px 0 0;
  margin-top: 8px;
}

.ab-footer__to-top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: var(--c-yellow);
  display: grid;
  place-items: center;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.ab-footer__to-top-chevron {
  display: block;
  width: 14px;
  height: 14px;
  border-top: 3px solid var(--c-white);
  border-left: 3px solid var(--c-white);
  transform: rotate(45deg) translate(2px, 2px);
}

.ab-footer__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 48px);
  flex-wrap: wrap;
  padding: 0 var(--pad-x) 40px;
}

.ab-footer__nav a,
.ab-footer__nav span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.35;
  letter-spacing: -0.04em;
  color: var(--c-muted-nav);
}

.ab-footer__nav a.is-active {
  color: var(--c-yellow);
}

.ab-footer__dot {
  width: 19px;
  height: 19px;
  border-radius: 999px;
  background: var(--c-dot-blue);
  flex-shrink: 0;
}

.ab-footer__bottom {
  background: var(--c-cream);
  padding: 20px var(--pad-x);
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.ab-footer__bottom-row {
  max-width: 1248px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--c-gray);
  font-size: 16px;
  line-height: 19px;
}

.ab-footer__made {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.ab-footer__heart svg {
  width: 19px;
  height: 19px;
  fill: var(--c-yellow);
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ab-connect__icons a:hover {
    transform: none;
  }
}

/* WIP Tooltip */
.lp-nav__item-wip {
  position: relative;
  display: flex;
  align-items: center;
}
.wip-tooltip {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 4px 8px;
  gap: 8px;
  position: absolute;
  height: 39px;
  left: 50%;
  top: 100%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease-out;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 100;
}
.lp-nav__item-wip:hover .wip-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.wip-tooltip__icon {
  position: relative;
  width: 35px;
  height: 32px;
}
.wip-turtle {
  position: absolute !important;
  font-size: 20px !important;
  left: 6px !important;
  top: 0 !important;
  line-height: 1 !important;
  color: initial !important;
}
.wip-bar {
  position: absolute;
  width: 35px;
  height: 8px;
  left: 0;
  top: 24px;
  background: #E0E0E0;
  border-radius: 4px;
  overflow: hidden;
}
.wip-bar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 40%;
  background: #34A853;
  animation: wipLoading 1.5s infinite ease-in-out;
}
@keyframes wipLoading {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(250%); }
}
.wip-tooltip__text {
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  line-height: 17px !important;
  color: #34A853 !important;
  white-space: nowrap !important;
  letter-spacing: normal !important;
}

.wip-turtle-img { width: 43px; height: 39px; object-fit: contain; }
