:root,
[data-theme="dark"] {
  --bg: #000;
  --fg: #fff;
  --dim: rgba(255, 255, 255, 0.52);
  --faint: rgba(255, 255, 255, 0.25);
  --line: rgba(255, 255, 255, 0.12);
  --card: rgba(255, 255, 255, 0.04);
}
[data-theme="light"] {
  --bg: #fff;
  --fg: #0a0a0a;
  --dim: rgba(0, 0, 0, 0.52);
  --faint: rgba(0, 0, 0, 0.28);
  --line: rgba(0, 0, 0, 0.12);
  --card: rgba(0, 0, 0, 0.04);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--fg);
  font-family: "Manrope", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  transition:
    background 0.45s,
    color 0.45s;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
.serif {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.015em;
}
::selection {
  background: var(--fg);
  color: var(--bg);
}
:focus-visible {
  outline: 1px solid var(--fg);
  outline-offset: 4px;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── CURSOR ── */
body {
  cursor: auto;
}
#cur {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  top: 0;
  left: 0;
  will-change: transform;
}
.cur-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--fg);
  transform: translate(-50%, -50%);
  transition:
    transform 0.18s ease,
    width 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.25s;
}
.cur-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--fg);
  transform: translate(-50%, -50%);
  opacity: 0.45;
  pointer-events: none;
  transition:
    width 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.25s,
    border-color 0.25s;
}
body.hov .cur-ring {
  width: 66px;
  height: 66px;
  opacity: 0.2;
}
body.hov .cur-dot {
  width: 5px;
  height: 5px;
}
body.clk .cur-dot {
  transform: translate(-50%, -50%) scale(0.4);
}
body.txt .cur-ring {
  width: 3px;
  height: 28px;
  border-radius: 2px;
  opacity: 0.7;
}

/* ── THEME TOGGLE (floating bottom right) ── */
#thm-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--fg);
  color: var(--bg);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.3s,
    color 0.3s;
}
#thm-float:hover {
  transform: scale(1.1) rotate(18deg);
}
#thm-float svg {
  width: 18px;
  height: 18px;
}
[data-theme="dark"] .i-sun {
  display: none;
}
[data-theme="light"] .i-moon {
  display: none;
}

/* ── NAV ── */
header.nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
}
.nav-logo {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: var(--fg);
  opacity: 1;
  line-height: 1;
}
.nav-logo sup {
  font-size: 0.5em;
  top: -0.8em;
  font-weight: 400;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  opacity: 0.7;
  transition: opacity 0.2s;
  letter-spacing: 0.01em;
}
.nav-links a:hover {
  opacity: 1;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  opacity: 0.7;
  border: 1px solid var(--line);
  padding: 8px 18px;
  border-radius: 999px;
  transition:
    opacity 0.2s,
    background 0.2s;
}
.nav-cta:hover {
  opacity: 1;
  background: var(--card);
}
/* hamburger */
.ham {
  display: none;
  background: none;
  border: none;
  color: var(--fg);
  cursor: pointer;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.ham span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--fg);
  border-radius: 2px;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s,
    width 0.3s;
}
.ham.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.ham.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.ham.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── MOBILE MENU OVERLAY ── */
#mob-menu {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px 60px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
#mob-menu.open {
  opacity: 1;
  pointer-events: auto;
}
#mob-menu a {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(36px, 9vw, 72px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--fg);
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.2s;
  display: block;
}
#mob-menu a:hover {
  color: var(--dim);
}
#mob-menu.open a:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0.08s;
}
#mob-menu.open a:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.15s;
}
#mob-menu.open a:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 0.22s;
}
#mob-menu.open a:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: 0.29s;
}
#mob-menu .mob-foot {
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--faint);
}

/* ── REVEAL ── */
.rv {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.rv.in {
  opacity: 1;
  transform: none;
}

.wrap {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}
.kicker {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 600;
}
.num {
  font-size: 11.5px;
  letter-spacing: 0.05em;
  color: var(--faint);
  font-weight: 500;
}

/* ── HERO ── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 3vh;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  filter: grayscale(1) brightness(0.5) contrast(1.1);
  transform: scale(1.04);
  animation: hzoom 20s ease-in-out infinite alternate;
}
@keyframes hzoom {
  0% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1.13) translate(-1.5%, 1%);
  }
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0) 25%,
    rgba(0, 0, 0, 0.55) 80%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 34px;
}
.hero-word {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 300;
  font-size: clamp(68px, 19vw, 282px);
  line-height: 0.82;
  letter-spacing: -0.04em;
  color: #fff;
  animation: wIn 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}
@keyframes wIn {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.hero-word sup {
  font-size: 0.26em;
  top: -1.8em;
  font-weight: 400;
}
.hero-meta {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 22px 0 0;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  animation: pgIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.75s both;
}
@keyframes pgIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.hero-meta .lft {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14.5px;
  max-width: 440px;
  line-height: 1.55;
}
.hero-meta .rgt {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.hero-meta .rgt a {
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.hero-meta .rgt a:hover {
  opacity: 0.5;
}
.hero-meta .rdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.35;
}

/* ── STATEMENT ── */
.statement {
  height: 100svh;
  padding: 250px 0 100px 0;
  text-align: center;
  position: relative;
}
.statement h2 {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(34px, 6vw, 90px);
  letter-spacing: -0.025em;
  line-height: 1.04;
  max-width: 15ch;
  margin: 18px auto 38px;
}
.statement .fad {
  color: var(--dim);
}
.statement a.clink {
  font-family: "Fraunces", serif;
  font-size: clamp(17px, 1.9vw, 24px);
  border-bottom: 1px solid var(--line);
  padding-bottom: 5px;
  transition: opacity 0.25s;
}
.statement a.clink:hover {
  opacity: 0.5;
}
.corner {
  position: absolute;
  font-size: 12px;
  color: var(--faint);
}
.corner.bl {
  bottom: 30px;
  left: 40px;
}
.corner.br {
  bottom: 30px;
  right: 40px;
  font-family: "Fraunces", serif;
  font-size: 15px;
  color: var(--dim);
}

/* ── VIDEO ── */
.vbox {
  width: 100%;
  height: 88svh;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: #000;
}
.vbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  filter: grayscale(1) contrast(1.05) brightness(0.72);
  transition: transform 1.4s ease;
}
.vbox.playing img {
  animation: kb 26s ease-in-out infinite alternate;
}
@keyframes kb {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.18) translate(-2%, 1.5%);
  }
}
.voverlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #fff;
  transition: opacity 0.45s;
}
.vbox.playing .voverlay {
  opacity: 0;
}
.vbox.playing:hover .voverlay {
  opacity: 1;
}
.vplay {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s,
    background 0.3s;
}
.vbox:hover .vplay {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.09);
}
.vplay svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  margin-left: 3px;
}
.vlabel {
  font-family: "Fraunces", serif;
  font-size: 19px;
}
.vcap {
  position: absolute;
  bottom: 28px;
  left: 40px;
  color: #fff;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  opacity: 0.8;
}
.vtimer {
  position: absolute;
  bottom: 28px;
  right: 40px;
  color: #fff;
  font-size: 12.5px;
  font-variant-numeric: tabular-nums;
  opacity: 0.8;
}

/* ── SERVICES ── */
.svc-sec {
  padding: 120px 0;
}
.svc-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 20px;
}
.svc-head h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(32px, 5.2vw, 76px);
  font-weight: 400;
  letter-spacing: -0.025em;
  max-width: 15ch;
  line-height: 1.04;
}
.svc-head p {
  max-width: 320px;
  font-size: 15px;
  color: var(--dim);
  text-align: right;
}
.svc-list {
  border-top: 1px solid var(--line);
}
.svc-row {
  display: grid;
  grid-template-columns: 54px 1fr 1fr;
  gap: 20px;
  align-items: baseline;
  padding: 24px 6px;
  border-bottom: 1px solid var(--line);
  transition:
    background 0.2s,
    padding-left 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.svc-row:hover {
  background: var(--card);
  padding-left: 14px;
}
.sn {
  font-size: 11.5px;
  color: var(--faint);
}
.svc-row .cat {
  font-family: "Fraunces", serif;
  font-size: clamp(19px, 2.3vw, 29px);
}
.svc-row .desc {
  text-align: right;
  color: var(--dim);
  font-size: 14.5px;
}

/* ── COMPANIES ── */
.co-sec {
  padding: 80px 0 100px;
}
.co-head {
  text-align: center;
  margin-bottom: 48px;
}
.co-head h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: -0.025em;
  margin-top: 14px;
}
.co-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.co {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 30px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition:
    background 0.25s,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.co:hover {
  transform: translateY(-5px);
}
.co .logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", serif;
  font-size: 20px;
  font-weight: 500;
}
.co .co-name {
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 400;
}
.co .co-role {
  font-size: 13px;
  color: var(--dim);
  line-height: 1.45;
}
.co .co-date {
  font-size: 11.5px;
  color: var(--faint);
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  width: 100%;
}

/* ── TOOLS ── */
.tools-sec {
  padding: 70px 0 100px;
  border-top: 1px solid var(--line);
}
.tools-head {
  text-align: center;
  margin-bottom: 44px;
}
.tools-head h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(26px, 3.8vw, 50px);
  font-weight: 400;
  letter-spacing: -0.025em;
  margin-top: 14px;
}
.tools-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 880px;
  margin: 0 auto;
}
.tool {
  font-size: 14px;
  font-weight: 600;
  padding: 11px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: default;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.2s;
}
.tool:hover {
  background: var(--fg);
  color: var(--bg);
  transform: translateY(-4px);
}

/* ── ABOUT ── */
.about-sec {
  padding: 120px 0;
}
.about-sec .atop {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 56px;
}
.about-bio {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(28px, 4.7vw, 68px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  max-width: 18ch;
  margin: 0 auto;
  text-align: center;
}
.about-bio .w {
  opacity: 0.18;
  transition: opacity 0.11s linear;
  display: inline-block;
}
.folaname {
  display: inline-block;
  position: relative;
  cursor: pointer;
  border-bottom: 2px solid var(--fg);
  font-style: normal;
}
.folaname .spop {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  pointer-events: none;
  display: flex;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 9px 14px;
  border-radius: 999px;
  white-space: nowrap;
  transition:
    opacity 0.28s,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.folaname:hover .spop {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.folaname .spop a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 600;
  font-style: normal;
  color: var(--fg);
  padding: 4px 8px;
  border-radius: 6px;
  transition: opacity 0.15s;
}
.folaname .spop a:hover {
  opacity: 0.55;
}
.folaname .spop svg {
  width: 17px;
  height: 17px;
}
.about-bio em {
  font-style: italic;
}

/* ── FAQ ── */
.faq-sec {
  padding: 100px 0;
}
.faq-sec h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(40px, 7.5vw, 116px);
  font-weight: 400;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 64px;
}
.faq-carousel {
  overflow: hidden;
}
.faq-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-item {
  min-width: 100%;
  padding: 0 40px;
  text-align: center;
}
.faq-item .q {
  font-size: clamp(17px, 2.1vw, 25px);
  font-weight: 600;
  margin-bottom: 16px;
}
.faq-item .a {
  font-family: "Fraunces", serif;
  font-size: clamp(16px, 2vw, 23px);
  color: var(--dim);
  max-width: 54ch;
  margin: 0 auto;
  line-height: 1.5;
}
.faq-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 40px;
}
.faq-nav button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: none;
  color: var(--fg);
  cursor: pointer;
  font-size: 18px;
  transition:
    background 0.2s,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-nav button:hover {
  background: var(--fg);
  color: var(--bg);
  transform: scale(1.06);
}
.faq-nav .fc {
  font-size: 12.5px;
  color: var(--faint);
  font-variant-numeric: tabular-nums;
  min-width: 44px;
  text-align: center;
}
.faq-dots {
  display: flex;
  gap: 7px;
  justify-content: center;
  margin-top: 14px;
}
.faq-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition:
    background 0.3s,
    width 0.3s,
    border-radius 0.3s;
}
.faq-dots span.on {
  background: var(--fg);
  width: 22px;
  border-radius: 3px;
}

/* ── CTA ── */
.cta-sec {
  padding: 150px 0 50px 0;
  overflow: hidden;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr;
  min-height: auto;
  border-top: 1px solid var(--line);
}
.cta-left {
  padding: 70px 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: none;
}
.cta-left .cl-top .eyebrow {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 600;
  margin-bottom: 20px;
}
.cta-left h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.cta-left .cl-bot {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cta-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  transition:
    background 0.25s,
    border-color 0.25s,
    padding-right 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.cta-link:hover {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
  padding-right: 28px;
}
.cta-link span {
  font-size: 18px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.cta-link:hover span {
  transform: translateX(4px);
}
.cta-right {
  position: relative;
  overflow: hidden;
}
.cta-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
}
.cta-right .cr-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
}
.cta-right .cr-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13.5px;
  max-width: 28ch;
  line-height: 1.55;
}
.cta-right .cr-text .avail {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 14px;
}
.avail-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4ade80;
  position: relative;
}
.avail-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}

/* CLOCKS */
.clocks-row {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.clock {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid var(--line);
}
.clock:last-child {
  border-right: none;
}
.clock svg {
  width: 100%;
  max-width: 140px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.cface {
  fill: none;
  stroke: var(--line);
  stroke-width: 0.8;
}
.hh,
.mh {
  stroke: var(--fg);
  stroke-width: 1;
  stroke-linecap: round;
}
.tz {
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--dim);
  font-variant-numeric: tabular-nums;
}

/* WORDMARK FOOTER */
.cta-word {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 300;
  font-size: clamp(62px, 19vw, 282px);
  line-height: 0.82;
  letter-spacing: -0.04em;
  padding: 20px 40px 10px;
  border-top: 1px solid var(--line);
}
.cta-word sup {
  font-size: 0.26em;
  top: -1.8em;
  font-weight: 400;
}
footer {
  border-top: 1px solid var(--line);
  padding: 22px 40px;
}
.fin {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--dim);
  flex-wrap: wrap;
  gap: 12px;
}
.fin a:hover {
  color: var(--fg);
}
.fin nav {
  display: flex;
  gap: 22px;
}

/* ── HOW I WORK page ── */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
}
.page-hero h1 {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(46px, 9vw, 138px);
  letter-spacing: -0.03em;
  line-height: 0.88;
}
.page-hero p {
  font-size: clamp(15px, 1.7vw, 19px);
  color: var(--dim);
  max-width: 46ch;
  margin: 28px auto 0;
}

/* BENTO — full width no padding */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin: 0;
}
.bcard {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 36px 32px;
  transition:
    background 0.25s,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.bcard:hover {
  transform: translateY(-4px);
}
.bcard.wide {
  grid-column: span 2;
}
.bcard .bnum {
  font-size: 11.5px;
  color: var(--faint);
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.bcard h3 {
  font-family: "Fraunces", serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 400;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
  line-height: 1.06;
}
.bcard p {
  font-size: 15px;
  color: var(--dim);
  line-height: 1.55;
}
.bcard .big {
  font-family: "Fraunces", serif;
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 18px 0 10px;
}
.bcard .bphoto {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: 50% 22%;
  border-radius: 6px;
  margin-bottom: 22px;
  filter: grayscale(1);
}
.bcard.inv {
  background: var(--fg);
  color: var(--bg);
}
.bcard.inv p {
  color: rgba(255, 255, 255, 0.6);
}
[data-theme="light"] .bcard.inv p {
  color: rgba(0, 0, 0, 0.55);
}

/* JAM board — creative */
.jam-sec {
  padding: 110px 0;
}
.jam-sec h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(36px, 6.5vw, 96px);
  font-weight: 400;
  letter-spacing: -0.025em;
  text-align: center;
  margin-bottom: 70px;
}
.jam {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 40px;
}
.jcard {
  border: 1px solid var(--line);
  padding: 28px 26px;
  border-radius: 2px;
  background: var(--card);
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.25s;
  position: relative;
  overflow: hidden;
}
.jcard::before {
  content: '"';
  position: absolute;
  top: -14px;
  left: 18px;
  font-family: "Fraunces", serif;
  font-size: 100px;
  line-height: 1;
  color: var(--fg);
  opacity: 0.06;
  pointer-events: none;
}
/* staggered rotations */
.jcard:nth-child(1) {
  transform: rotate(-1.2deg);
}
.jcard:nth-child(2) {
  transform: rotate(0.7deg);
}
.jcard:nth-child(3) {
  transform: rotate(-0.5deg);
  margin-top: 30px;
}
.jcard:nth-child(4) {
  transform: rotate(1deg);
  margin-top: -20px;
}
.jcard:nth-child(5) {
  transform: rotate(-0.8deg);
}
.jcard:nth-child(6) {
  transform: rotate(0.5deg);
  margin-top: 24px;
}
.jcard:hover {
  transform: rotate(0) translateY(-6px) !important;
  background: rgba(255, 255, 255, 0.07);
}
[data-theme="light"] .jcard:hover {
  background: rgba(0, 0, 0, 0.04);
}
.jcard .qt {
  font-family: "Fraunces", serif;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.42;
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--fg);
}
.jcard .who {
  font-size: 13px;
  color: var(--fg);
  font-weight: 600;
}
.jcard .role {
  font-size: 12px;
  color: var(--faint);
  margin-top: 3px;
}
/* some featured */
.jcard.feat {
  background: var(--fg);
  color: var(--bg);
}
.jcard.feat .qt,
.jcard.feat .who {
  color: var(--bg);
}
[data-theme="light"] .jcard.feat {
  background: var(--fg);
}
[data-theme="light"] .jcard.feat .qt,
[data-theme="light"] .jcard.feat .who {
  color: var(--bg);
}

/* ── RESUME ── */
.res-hero {
  padding: 160px 0 60px;
  text-align: center;
}
.res-hero h1 {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(40px, 8vw, 110px);
  letter-spacing: -0.03em;
  line-height: 0.9;
}
.res-hero p {
  color: var(--dim);
  font-size: 15px;
  margin-top: 18px;
}
.res-doc {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 40px 100px;
}
.res-dl {
  text-align: center;
  margin: 0 0 56px;
}
.res-dl a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid var(--line);
  padding: 13px 26px;
  border-radius: 999px;
  transition:
    background 0.25s,
    color 0.25s,
    border-color 0.25s;
}
.res-dl a:hover {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}
.res-name {
  font-family: "Fraunces", serif;
  font-size: clamp(34px, 6vw, 72px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1;
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
  margin-bottom: 20px;
}
.res-title {
  font-size: 15px;
  color: var(--dim);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.res-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: 13.5px;
  color: var(--dim);
  margin-bottom: 48px;
}
.res-contact a:hover {
  color: var(--fg);
}
.res-section {
  margin-bottom: 48px;
}
.res-section h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 400;
  letter-spacing: -0.01em;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
  margin-bottom: 24px;
}
.res-item {
  margin-bottom: 26px;
}
.res-item .rh {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}
.res-item .rjob {
  font-size: 15.5px;
  font-weight: 700;
}
.res-item .rco {
  font-size: 13px;
  color: var(--dim);
}
.res-item .rdate {
  font-size: 12.5px;
  color: var(--faint);
}
.res-item ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}
.res-item li {
  font-size: 14px;
  color: var(--dim);
  padding-left: 16px;
  position: relative;
  margin-bottom: 6px;
  line-height: 1.5;
}
.res-item li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--fg);
}
.skills-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.skill {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .ham {
    display: flex;
  }
  .co-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bento {
    grid-template-columns: 1fr 1fr;
  }
  .bcard.wide {
    grid-column: span 2;
  }
  .cta-inner {
    grid-template-columns: 1fr;
  }
  .cta-right {
    display: none;
  }
  .clocks-row {
    grid-template-columns: 1fr 1fr;
  }
  .clock:nth-child(2) {
    border-right: none;
  }
  .svc-row {
    grid-template-columns: 40px 1fr;
  }
  .svc-row .desc {
    display: none;
  }
  .jam {
    grid-template-columns: 1fr 1fr;
    padding: 0 22px;
  }
}
@media (max-width: 580px) {
  .wrap {
    padding: 0 22px;
  }
  footer,
  .cta-word,
  .cta-left {
    padding-left: 22px;
    padding-right: 22px;
  }
  .nav-in {
    padding: 16px 22px;
  }
  .hero-content {
    padding: 0 22px;
  }
  .co-grid {
    grid-template-columns: 1fr;
  }
  .bento {
    grid-template-columns: 1fr;
  }
  .bcard.wide {
    grid-column: auto;
  }
  .faq-item {
    padding: 0 18px;
  }
  .clocks-row {
    grid-template-columns: 1fr 1fr;
  }
  .corner {
    display: none;
  }
  .jam {
    grid-template-columns: 1fr;
  }
  .res-doc {
    padding: 40px 20px 60px;
  }
  .cta-word {
    font-size: clamp(52px, 17vw, 200px);
  }
}
@media print {
  header.nav,
  footer,
  .res-hero,
  .res-dl,
  #thm-float,
  #cur,
  #mob-menu {
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
    animation: none;
  }
  .rv {
    opacity: 1 !important;
    transform: none !important;
  }
  .res-item .rco,
  .res-item .rdate,
  .res-item li,
  .res-contact,
  .res-title {
    color: #444 !important;
  }
}

/* ── CONTACT PAGE ── */
.contact-sec {
  padding: 100px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-bottom: 80px;
}
.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 40px 32px;
  border-radius: 6px;
  transition:
    background 0.25s,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.contact-card:hover {
  transform: translateY(-4px);
  background: rgba(0, 0, 0, 0.06);
}
[data-theme="dark"] .contact-card:hover {
  background: rgba(255, 255, 255, 0.08);
}
.contact-card h3 {
  font-family: "Fraunces", serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}
.contact-card p {
  font-size: 14px;
  color: var(--dim);
  margin-bottom: 20px;
  line-height: 1.55;
}
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 3px;
  transition: opacity 0.25s;
}
.contact-link:hover {
  opacity: 0.6;
}
.contact-link span {
  font-size: 18px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.contact-link:hover span {
  transform: translateX(4px);
}

.contact-info {
  padding: 80px 0 120px;
  border-top: 1px solid var(--line);
}
.contact-info .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.info-block h4 {
  font-family: "Fraunces", serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}
.info-block p {
  font-size: 15px;
  color: var(--dim);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-info .wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
