/* ═══════════════════════════════════════
   CHARLOTTE HETZLER — Portfolio
   Vertical scroll · Cream-first · Ink green
   Clash Display + Satoshi
   ═══════════════════════════════════════ */

:root {
  --teal: #145f4b;
  --teal-deep: #0f4a3a;
  --teal-light: #1d7a62;
  --teal-soft: #5a9485;
  --periwinkle: #92a0ff;
  --periwinkle-light: #b3bdff;
  --periwinkle-glow: rgba(146, 160, 255, 0.22);
  --cream: #f4f2ec;
  --cream-warm: #eceae3;
  --ivory: #fbfaf6;
  --ink: #1a2e26;

  --text: var(--teal);
  --text-body: #4a6b5e;
  --text-soft: #7a9388;
  --accent: var(--periwinkle);

  --display: "Clash Display", sans-serif;
  --body: "Satoshi", -apple-system, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 72px;

  --gutter: clamp(20px, 4vw, 56px);
  --section-py: clamp(80px, 12vh, 160px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);
  background: var(--cream);
  color: var(--text-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: var(--periwinkle);
  color: var(--teal);
}

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

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

button {
  font: inherit;
  background: none;
  border: none;
  color: inherit;
}

/* ═══ PROGRESS BAR ═══ */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--periwinkle);
  width: 0%;
  z-index: 10000;
  transform-origin: left;
}

/* ═══ NAV ═══ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  transition: background 0.4s var(--ease);
}

.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(244, 242, 236, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition:
    background 0.4s var(--ease),
    backdrop-filter 0.4s var(--ease);
  z-index: -1;
  pointer-events: none;
}

.nav.scrolled::before {
  background: rgba(244, 242, 236, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav.on-dark.scrolled::before {
  background: rgba(15, 74, 58, 0.85);
}

.nav-logo {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.1;
  color: var(--teal);
  transition:
    color 0.3s,
    opacity 0.2s;
  position: relative;
  z-index: 1;
}

.nav-logo-name {
  display: inline-block;
}
.nav-logo-dot {
  color: var(--periwinkle);
  transition: color 0.3s;
}

.nav.on-dark .nav-logo {
  color: var(--cream);
}
.nav.on-dark .nav-logo-dot {
  color: var(--periwinkle-light);
}

.nav-logo:hover {
  opacity: 0.7;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
  position: relative;
  z-index: 1;
}

.nav-location {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
  transition: color 0.3s;
}

.nav.on-dark .nav-location {
  color: rgba(244, 242, 236, 0.55);
}

.nav-contact {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--teal);
  padding: 11px 22px;
  background: var(--periwinkle);
  border-radius: 2px;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s,
    background 0.3s;
}

.nav-contact:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--periwinkle-glow);
  background: var(--periwinkle-light);
}

/* ═══ PANELS — vertical sections ═══ */
.panel {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: var(--section-py) 0;
}

.panel-content {
  width: 100%;
  max-width: 1200px;
  padding: 0 var(--gutter);
  margin: 0 auto;
}

/* ═══ HERO ═══ */
.panel-hero {
  background: var(--cream);
  min-height: 100vh;
  padding-top: calc(var(--nav-h) + 40px);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

/* Reveal system — elements fade in when given .is-revealed class */
.hero-intro,
.hero-name .name-line,
.hero-tagline,
.hero-credential,
.hero-portrait,
[data-reveal],
[data-reveal-stagger] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
}

.hero-portrait {
  transform: translateX(30px);
}

.hero-intro.is-revealed,
.hero-name .name-line.is-revealed,
.hero-tagline.is-revealed,
.hero-credential.is-revealed,
.hero-portrait.is-revealed,
[data-reveal].is-revealed,
[data-reveal-stagger].is-revealed {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

.hero-intro {
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 20px;
}

.hero-name {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.92;
  color: var(--teal);
  margin-bottom: 32px;
  font-size: clamp(3.5rem, 9vw, 8rem);
}

.hero-name .name-line {
  display: block;
  transform: translateY(48px);
}

.hero-name .name-dot {
  color: var(--periwinkle);
}

.hero-tagline {
  font-size: clamp(1.1rem, 1.55vw, 1.35rem);
  color: var(--text-body);
  line-height: 1.55;
  max-width: 520px;
  margin-bottom: 24px;
}

.hero-tagline em {
  font-style: normal;
  color: var(--teal);
  font-weight: 600;
}

.hero-credential {
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-soft);
}

.hero-credential::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin-right: 14px;
  opacity: 0.6;
}

/* Hero portrait */
.hero-portrait {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 360px;
}

.hero-portrait img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.02);
  position: relative;
  z-index: 1;
}

.hero-portrait::before {
  content: "";
  position: absolute;
  top: 14px;
  right: -14px;
  bottom: -14px;
  left: 14px;
  border: 1.5px solid var(--periwinkle);
  z-index: 0;
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-soft);
  opacity: 0;
  animation: fadeIn 0.8s var(--ease) 1.6s forwards;
}

.scroll-hint svg {
  animation: bounceDown 1.6s var(--ease) infinite;
}

@keyframes bounceDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.7;
  }
}

/* ═══ PHILOSOPHY (single dark moment) ═══ */
.panel-philosophy {
  background: var(--teal-deep);
  color: var(--cream);
  text-align: center;
}

.philosophy-text {
  font-family: var(--display);
  font-size: clamp(2rem, 5.5vw, 4.8rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--cream);
  max-width: 1100px;
  margin: 0 auto;
}

.philosophy-text em {
  font-style: normal;
  color: var(--periwinkle-light);
  font-weight: 500;
}

/* ═══ JOURNEY ═══ */
.panel-journey {
  background: var(--cream);
}

.journey-chapters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(40px, 5vw, 64px);
  align-items: flex-start;
}

.chapter {
}

.chapter-num {
  font-family: var(--display);
  font-size: 3.6rem;
  font-weight: 400;
  color: var(--periwinkle);
  opacity: 0.55;
  margin-bottom: 16px;
  display: block;
  line-height: 1;
  letter-spacing: -0.03em;
}

.chapter h2 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 1.95vw, 1.8rem);
  font-weight: 500;
  color: var(--teal);
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.chapter p {
  font-size: 0.96rem;
  color: var(--text-body);
  line-height: 1.75;
}

.chapter p em {
  font-style: italic;
  color: var(--teal);
}

/* ═══ BRANDS ═══ */
.panel-brands {
  background: var(--cream-warm);
}

.panel-brands .panel-content {
  text-align: center;
}

.brands-label {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 56px;
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 36px 56px;
  max-width: 980px;
  margin: 0 auto;
}

.brands-grid img {
  height: 22px;
  width: auto;
  opacity: 0.6;
  filter: brightness(0) saturate(100%) invert(29%) sepia(12%) saturate(1800%)
    hue-rotate(118deg) brightness(95%) contrast(92%);
  transition:
    opacity 0.3s,
    transform 0.3s;
}

.brands-grid img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* ═══ HERO QUOTE (Juli, gets her own panel) ═══ */
.panel-hero-quote {
  background: var(--cream);
  position: relative;
}

.panel-hero-quote .panel-content {
  max-width: 1000px;
  text-align: left;
}

.hero-quote {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.2vw, 2.8rem);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--teal);
  margin-bottom: 36px;
  font-weight: 400;
  position: relative;
  padding-left: clamp(20px, 4vw, 48px);
  border-left: 2px solid var(--periwinkle);
}

.hero-quote p {
  margin-bottom: 0.4em;
}
.hero-quote p:last-child {
  margin-bottom: 0;
}

.hero-quote-punch em {
  font-style: italic;
  color: var(--periwinkle);
  font-weight: 500;
}

.hero-quote-cite {
  display: block;
  padding-left: clamp(20px, 4vw, 48px);
  font-style: normal;
}

.hero-quote-cite strong {
  font-family: var(--display);
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--teal);
  margin-bottom: 2px;
}

.hero-quote-cite span {
  font-size: 0.82rem;
  color: var(--text-soft);
}

/* ═══ SOFTWARE ENGINEERING (dark — second dark moment) ═══ */
.panel-work {
  background: var(--teal);
  color: var(--cream);
}

.work-header {
  margin-bottom: 64px;
  max-width: 720px;
}

.work-header h2 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  color: var(--cream);
  line-height: 1.05;
}

.work-trusted {
  font-size: 0.96rem;
  color: rgba(244, 242, 236, 0.6);
  line-height: 1.6;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.project-card {
  background: rgba(244, 242, 236, 0.04);
  border: 1px solid rgba(244, 242, 236, 0.13);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.4s var(--ease),
    background 0.3s,
    border-color 0.3s,
    opacity 0.9s var(--ease-out);
  min-height: 280px;
}

.project-card:hover {
  transform: translateY(-6px);
  background: rgba(244, 242, 236, 0.08);
  border-color: var(--periwinkle);
}

.project-type {
  font-family: var(--display);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--periwinkle-light);
  margin-bottom: 14px;
}

.project-card h3 {
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  color: var(--cream);
}

.project-card p {
  font-size: 0.9rem;
  color: rgba(244, 242, 236, 0.7);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}

.project-tech {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(244, 242, 236, 0.42);
  margin-top: auto;
}

/* ═══ WEBFLOW PROJECTS (light) ═══ */
.panel-webflow {
  background: var(--cream);
}

.panel-webflow .work-header h2 {
  color: var(--teal);
}
.panel-webflow .work-trusted {
  color: var(--text-body);
}

.webflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.webflow-card {
  display: block;
  background: var(--ivory);
  border: 1px solid var(--cream-warm);
  overflow: hidden;
  transition:
    transform 0.4s var(--ease),
    border-color 0.3s,
    box-shadow 0.4s,
    opacity 0.9s var(--ease-out);
}

.webflow-card:hover {
  transform: translateY(-6px);
  border-color: var(--periwinkle);
  box-shadow: 0 18px 40px var(--periwinkle-glow);
}

.webflow-image {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--cream-warm);
}

.webflow-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.webflow-card:hover .webflow-image img {
  transform: scale(1.04);
}

.webflow-info {
  padding: 22px 22px 24px;
}

.webflow-info h3 {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--teal);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.webflow-info p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.55;
}

/* ═══ TESTIMONIALS (3, supporting) ═══ */
.panel-testimonials {
  background: var(--cream-warm);
}

.testimonials-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial {
  background: var(--ivory);
  border: 1px solid var(--cream-warm);
  padding: 36px 32px;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s,
    border-color 0.3s,
    opacity 0.9s var(--ease-out);
}

.testimonial:hover {
  transform: translateY(-4px);
  border-color: var(--periwinkle);
  box-shadow: 0 16px 36px var(--periwinkle-glow);
}

.testimonial blockquote {
  font-size: 0.98rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 400;
}

.testimonial cite {
  display: block;
  padding-top: 18px;
  border-top: 1px solid var(--cream-warm);
  font-style: normal;
}

.testimonial cite strong {
  font-family: var(--display);
  display: block;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--teal);
  margin-bottom: 3px;
}

.testimonial cite span {
  font-size: 0.78rem;
  color: var(--text-soft);
}

/* ═══ ABOUT / FEMSTORY ═══ */
.panel-about {
  background: var(--cream);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.about-image {
  position: relative;
  opacity: 0;
  transform: translateX(-30px);
  max-width: 420px;
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
}

.about-image.is-revealed {
  opacity: 1;
  transform: translateX(0);
}

.about-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.02);
  position: relative;
  z-index: 1;
}

.about-image::after {
  content: "";
  position: absolute;
  top: 16px;
  right: -16px;
  bottom: -16px;
  left: 16px;
  border: 1.5px solid var(--periwinkle);
  z-index: 0;
}

.about-text {
  opacity: 0;
  transform: translateX(30px);
  transition:
    opacity 0.9s var(--ease-out) 0.15s,
    transform 0.9s var(--ease-out) 0.15s;
}

.about-text.is-revealed {
  opacity: 1;
  transform: translateX(0);
}

.about-eyebrow {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 18px;
}

.about-text h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--teal);
  margin-bottom: 28px;
}

.about-text h2 em {
  font-style: italic;
  color: var(--periwinkle);
  font-weight: 500;
}

.about-text p {
  font-size: 1.02rem;
  color: var(--text-body);
  line-height: 1.8;
  max-width: 540px;
}

/* ═══ CONTACT ═══ */
.panel-contact {
  background: var(--teal-deep);
  color: var(--cream);
}

.panel-contact .panel-content {
  text-align: center;
  max-width: 820px;
}

.panel-contact h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: var(--cream);
}

.panel-contact h2 em {
  font-style: italic;
  color: var(--periwinkle-light);
  font-weight: 500;
}

.contact-details {
  font-size: 0.98rem;
  color: rgba(244, 242, 236, 0.6);
  margin-bottom: 48px;
  letter-spacing: 0.01em;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--display);
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  font-weight: 500;
  color: var(--teal);
  padding: 18px 36px;
  background: var(--periwinkle);
  margin-bottom: 64px;
  border-radius: 2px;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s,
    background 0.3s;
}

.contact-email:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px var(--periwinkle-glow);
  background: var(--periwinkle-light);
}

.contact-email svg {
  transition: transform 0.3s var(--ease);
}
.contact-email:hover svg {
  transform: translateX(4px);
}

.contact-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.contact-links a {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244, 242, 236, 0.55);
  transition: color 0.3s;
}

.contact-links a:hover {
  color: var(--periwinkle-light);
}

.copyright {
  font-size: 0.72rem;
  color: rgba(244, 242, 236, 0.32);
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════
   "CURRENTLY" WIDGET — fixed corner status
   ═══════════════════════════════════════ */
.currently {
  position: fixed;
  bottom: 18px;
  left: 18px;
  z-index: 900;
  font-family: var(--display);
  max-width: calc(100vw - 36px);
}

.currently-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px 9px 12px;
  background: rgba(244, 242, 236, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(20, 95, 75, 0.12);
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--teal);
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
}

.currently-btn:hover {
  background: var(--ivory);
  border-color: var(--periwinkle);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(20, 95, 75, 0.08);
}

.currently.on-dark .currently-btn {
  background: rgba(15, 74, 58, 0.7);
  border-color: rgba(244, 242, 236, 0.18);
  color: var(--cream);
}

.currently.on-dark .currently-btn:hover {
  background: rgba(15, 74, 58, 0.95);
  border-color: var(--periwinkle-light);
}

.currently-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--periwinkle);
  box-shadow: 0 0 0 0 var(--periwinkle-glow);
  animation: currentlyPulse 2.4s var(--ease) infinite;
  flex-shrink: 0;
}

@keyframes currentlyPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(146, 160, 255, 0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(146, 160, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(146, 160, 255, 0);
  }
}

.currently-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.6;
}

.currently-text {
  font-weight: 500;
  letter-spacing: 0.005em;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 240px;
}

.currently-detail {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  background: var(--ivory);
  border: 1px solid rgba(20, 95, 75, 0.12);
  border-radius: 8px;
  padding: 18px 20px;
  width: 280px;
  box-shadow: 0 18px 50px rgba(20, 95, 75, 0.12);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.3s var(--ease),
    transform 0.3s var(--ease);
  pointer-events: none;
}

.currently-detail[data-open="true"] {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.currently-detail p {
  font-family: var(--body);
  font-size: 0.78rem;
  color: var(--text-soft);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.currently-detail ul {
  list-style: none;
  display: grid;
  gap: 6px;
}

.currently-detail li {
  font-family: var(--body);
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--text-body);
  line-height: 1.5;
}

.currently-detail li span {
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.74rem;
  color: var(--teal);
  letter-spacing: 0.02em;
  padding-top: 1px;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .webflow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-stack {
    grid-template-columns: 1fr;
    max-width: 640px;
  }
  .journey-chapters {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
  }
  .chapter-num {
    font-size: 2.6rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: clamp(72px, 10vh, 110px);
  }

  .nav {
    padding: 0 20px;
  }
  .nav-location {
    display: none;
  }
  .nav-contact {
    padding: 9px 16px;
    font-size: 0.72rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }

  .hero-portrait {
    max-width: 220px;
    justify-self: start;
    order: -1;
  }

  .hero-name {
    font-size: clamp(3rem, 13vw, 5rem);
  }
  .hero-tagline {
    font-size: 1.1rem;
  }

  .scroll-hint {
    bottom: 20px;
  }

  .philosophy-text {
    font-size: clamp(1.7rem, 7vw, 3rem);
  }

  .projects-grid,
  .webflow-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .work-header {
    margin-bottom: 40px;
  }
  .work-header h2 {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

  .hero-quote {
    font-size: clamp(1.3rem, 5vw, 2rem);
    padding-left: 18px;
  }
  .hero-quote-cite {
    padding-left: 18px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    max-width: 280px;
    margin: 0 auto;
  }
  .about-text {
    text-align: left;
  }

  .panel-contact h2 {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }
  .contact-email {
    font-size: 1rem;
    padding: 14px 24px;
  }
  .contact-links {
    gap: 24px;
    flex-wrap: wrap;
  }

  .currently {
    bottom: 12px;
    left: 12px;
  }
  .currently-btn {
    padding: 8px 12px 8px 10px;
    font-size: 0.72rem;
  }
  .currently-text {
    max-width: 140px;
  }
  .currently-detail {
    width: calc(100vw - 36px);
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .hero-name {
    font-size: clamp(2.6rem, 14vw, 4.2rem);
  }
  .hero-tagline {
    font-size: 1.02rem;
  }
  .hero-credential {
    font-size: 0.76rem;
  }
  .hero-credential::before {
    width: 20px;
    margin-right: 10px;
  }

  .currently-label {
    display: none;
  }
}

/* ═══ REDUCED MOTION ═══ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}
