:root {
  --cream: #f7f3ec;
  --cream-deep: #efe7d3;
  --white: #ffffff;
  --ink: #14130f;
  --ink-2: #2a2823;
  --ink-soft: #6b6862;
  --teal: #0ABAB5;
  --teal-deep: #057f7c;
  --teal-pale: #d7f0ee;
  --line: #d9d2c2;
  --line-soft: #ece6d6;

  --serif-jp: "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", serif;
  --sans-jp: "Noto Sans JP", "Hiragino Sans", "YuGothic", sans-serif;
  --serif-en: "Fraunces", Georgia, serif;

  --max: 1280px;
  --pad-x: clamp(20px, 4vw, 56px);
  --header-h: 76px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans-jp);
  background: var(--cream);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.75;
  letter-spacing: 0.02em;
  background-image:
    radial-gradient(ellipse 80% 60% at 0% 0%, rgba(10,186,181,0.05), transparent 60%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.035'/></svg>");
  -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

main { padding-top: var(--header-h); }
@media (max-width: 720px) {
  :root { --header-h: 64px; }
}

/* ============== HEADER (DRAWER) ============== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(247,243,236,0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.header__inner {
  max-width: var(--max); margin: 0 auto;
  padding: 16px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex; align-items: baseline; gap: 12px;
  position: relative; z-index: 210;
}
.brand__name {
  font-family: var(--serif-en);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.12em;
  line-height: 1;
}
.brand__name em { font-style: italic; color: var(--teal); font-weight: 500; margin-right: 1px; }
.brand__sub {
  font-family: var(--sans-jp);
  font-size: 9.5px; font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--ink-soft);
  border-left: 1px solid var(--line);
  padding-left: 12px;
}
.header__right {
  display: flex; align-items: center; gap: 18px;
  position: relative; z-index: 210;
}
.header__cta {
  font-family: var(--serif-en); font-style: italic;
  font-size: 11.5px; letter-spacing: 0.16em;
  color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 0;
  transition: color .25s;
}
.header__cta:hover { color: var(--teal-deep); }
.header__cta svg { width: 14px; height: 14px; color: var(--teal-deep); }
@media (max-width: 880px) { .header__cta { display: none; } }

.hamburger {
  background: var(--ink);
  color: var(--cream);
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 12px 22px;
  cursor: pointer;
  transition: background .25s, border-color .25s, color .25s;
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--serif-en); font-style: italic;
  font-size: 11.5px; letter-spacing: 0.22em;
  white-space: nowrap;
  font-weight: 500;
}
.hamburger:hover { background: var(--teal-deep); border-color: var(--teal-deep); }
.hamburger__icon {
  display: inline-flex; flex-direction: column; gap: 4px;
  width: 18px;
}
.hamburger__icon span {
  width: 18px; height: 1.5px; background: currentColor;
  transition: transform .3s ease, opacity .25s;
  transform-origin: center;
}
.is-open .hamburger { background: var(--teal-deep); border-color: var(--teal-deep); }
.is-open .hamburger__icon span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.is-open .hamburger__icon span:nth-child(2) { opacity: 0; }
.is-open .hamburger__icon span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
.hamburger__label--open { display: inline; }
.hamburger__label--close { display: none; }
.is-open .hamburger__label--open { display: none; }
.is-open .hamburger__label--close { display: inline; }
@media (max-width: 480px) {
  .hamburger { padding: 10px 16px; gap: 8px; letter-spacing: 0.16em; }
  .hamburger__label--open, .hamburger__label--close { display: none !important; }
}

/* ============== DRAWER (FULLSCREEN) ============== */
.drawer {
  position: fixed; inset: 0;
  z-index: 150;
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-100%);
  transition: transform .65s cubic-bezier(.7, 0, .15, 1);
  overflow-y: auto;
  visibility: hidden;
}
.drawer.is-open { transform: translateY(0); visibility: visible; }
.drawer::before {
  content: 'FLEXER';
  position: absolute;
  top: 60%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif-en); font-style: italic;
  font-weight: 700;
  font-size: clamp(140px, 26vw, 360px);
  color: rgba(247,243,236,0.04);
  letter-spacing: -0.04em;
  pointer-events: none;
  white-space: nowrap;
}
.drawer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: calc(var(--header-h) + 32px) var(--pad-x) 80px;
  min-height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-content: start;
  position: relative;
  z-index: 1;
}
@media (min-width: 980px) {
  .drawer__inner {
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    padding-top: calc(var(--header-h) + 56px);
  }
}

.drawer__meta-row {
  grid-column: 1 / -1;
  display: flex; gap: 24px; flex-wrap: wrap;
  font-family: var(--serif-en);
  font-size: 11px; letter-spacing: 0.32em;
  color: rgba(247,243,236,.5);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding-bottom: 16px;
  text-transform: uppercase;
}
.drawer__meta-row span:nth-child(2) { color: var(--teal); font-style: italic; }
.drawer__meta-row span:last-child { margin-left: auto; }

.drawer__nav { list-style: none; padding: 0; margin: 0; }
.drawer__nav > li { border-bottom: 1px solid rgba(255,255,255,.08); }
.drawer__nav > li > a,
.drawer__nav__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
  font-family: var(--serif-jp);
  font-weight: 700;
  font-size: clamp(26px, 4vw, 44px);
  color: var(--cream);
  letter-spacing: 0.005em;
  background: none; border: none; cursor: pointer;
  text-align: left; width: 100%;
  transition: color .25s, padding-left .35s;
  line-height: 1.2;
}
.drawer__nav > li > a:hover,
.drawer__nav__head:hover { color: var(--teal); padding-left: 12px; }
.drawer__nav__no {
  font-family: var(--serif-en); font-style: italic;
  font-size: 12px; color: var(--teal); letter-spacing: 0.22em;
  font-weight: 500;
  margin-right: auto;
  padding-right: 18px;
}
.drawer__nav__head::after {
  content: '+';
  font-family: var(--serif-en); font-style: italic;
  color: var(--teal);
  font-size: 32px; line-height: 1;
  transition: transform .35s;
  font-weight: 500;
}
.drawer__nav > li.is-expanded > .drawer__nav__head::after { transform: rotate(45deg); }
.drawer__nav > li > a::after {
  content: '→';
  font-family: var(--serif-en); font-style: italic;
  color: var(--teal);
  font-size: 22px;
  transition: transform .35s;
}
.drawer__nav > li > a:hover::after { transform: translateX(8px); }

.drawer__sub {
  list-style: none; padding: 0;
  max-height: 0; overflow: hidden;
  transition: max-height .5s ease, padding .5s ease;
}
.drawer__nav > li.is-expanded .drawer__sub {
  max-height: 600px; padding: 0 0 16px;
}
.drawer__sub li { border: none; }
.drawer__sub a {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 12px 0 12px 24px;
  color: rgba(247,243,236,.7);
  font-family: var(--serif-jp);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color .25s, padding-left .25s;
  border-left: 1px solid rgba(255,255,255,.1);
  margin-left: 4px;
}
.drawer__sub a:hover { color: var(--teal); padding-left: 32px; border-left-color: var(--teal); }
.drawer__sub__en {
  font-family: var(--serif-en); font-style: italic;
  color: rgba(247,243,236,.4); font-size: 11px;
  letter-spacing: 0.16em;
}

/* drawer aside (right column) */
.drawer__aside {
  display: flex; flex-direction: column; gap: 32px;
  padding-top: 8px;
}
.drawer__aside__label {
  font-family: var(--serif-en); font-style: italic;
  font-size: 11px; letter-spacing: 0.24em;
  color: var(--teal);
  margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 12px;
}
.drawer__aside__label::after { content: ''; width: 36px; height: 1px; background: var(--teal); }

.drawer__contact {
  display: flex; flex-direction: column; gap: 12px;
}
.drawer__contact a {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px;
  font-family: var(--serif-jp); font-weight: 700;
  font-size: 15px;
  color: var(--cream);
  transition: background .25s, border-color .25s, transform .25s;
}
.drawer__contact a:hover { background: rgba(10,186,181,.1); border-color: var(--teal); transform: translateX(4px); }
.drawer__contact svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; }
.drawer__contact em {
  font-family: var(--serif-en); font-style: italic; font-weight: 500;
  font-size: 11px; letter-spacing: 0.2em;
  color: rgba(247,243,236,.55);
  margin-left: auto;
}

.drawer__meta {
  font-size: 12px; line-height: 1.95;
  color: rgba(247,243,236,.55);
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
}
.drawer__meta strong {
  font-family: var(--serif-jp); font-weight: 500;
  color: rgba(247,243,236,.85);
  letter-spacing: 0.04em;
  font-size: 12px;
  display: block; margin-bottom: 6px;
}
.drawer__meta em {
  font-family: var(--serif-en); font-style: italic; color: var(--teal);
  font-size: 10px; letter-spacing: 0.18em;
}

/* ============== HERO ============== */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(36px, 7vw, 80px) var(--pad-x) clamp(56px, 9vw, 110px);
  position: relative;
}
.hero__meta {
  display: flex; gap: 28px; flex-wrap: wrap;
  font-family: var(--serif-en);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px; margin-bottom: clamp(40px, 5vw, 64px);
  text-transform: uppercase;
}
.hero__meta span:nth-child(2) { color: var(--teal-deep); font-style: italic; }
.hero__meta span:last-child { margin-left: auto; }

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: end;
}
@media (min-width: 980px) {
  .hero__grid { grid-template-columns: 1.5fr 1fr; align-items: end; }
}

.hero__title {
  font-family: var(--serif-jp);
  font-weight: 700;
  font-size: clamp(40px, 7.4vw, 92px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.hero__title .small {
  display: block;
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(15px, 1.5vw, 22px);
  color: var(--teal-deep);
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}
.hero__title em {
  font-style: normal;
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.hero__title em::after {
  content: '';
  position: absolute; left: -2px; right: -2px;
  bottom: 0.08em; height: 0.18em;
  background: var(--teal);
  z-index: -1;
  opacity: 0.55;
}
.hero__title .alt {
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 500;
  color: var(--teal-deep);
}

.hero__lede {
  font-family: var(--sans-jp);
  font-weight: 500;
  font-size: 14px;
  line-height: 2.05;
  color: var(--ink-2);
  max-width: 38ch;
  border-left: 1px solid var(--teal);
  padding-left: 22px;
  margin-bottom: 32px;
}
.hero__caption {
  font-family: var(--serif-en); font-style: italic;
  font-size: 12px; letter-spacing: 0.18em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

.hero__visual {
  margin-top: clamp(40px, 5vw, 64px);
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, var(--teal-pale), var(--cream-deep));
}
.hero__visual img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  display: block;
  filter: saturate(0.88) contrast(0.98);
}
@media (max-width: 720px) {
  .hero__visual img { aspect-ratio: 4 / 3; }
}
.hero__visual__caption {
  position: absolute;
  bottom: 16px; left: 16px;
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(247,243,236,0.94);
  backdrop-filter: blur(6px);
  padding: 9px 14px;
  font-family: var(--serif-en); font-style: italic;
  font-size: 11px; letter-spacing: 0.18em;
  color: var(--ink-2);
  border-radius: 999px;
  text-transform: uppercase;
}
.hero__visual__caption em {
  color: var(--teal-deep);
  font-size: 10px;
  letter-spacing: 0.2em;
  font-style: normal;
  font-family: var(--sans-jp);
  font-weight: 500;
}
.hero__visual__tag {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--ink);
  color: var(--cream);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--serif-en); font-style: italic;
  font-size: 11px; letter-spacing: 0.16em;
}
.hero__visual__tag span { color: var(--teal); margin-right: 6px; }

.hero__deck {
  margin-top: clamp(48px, 6vw, 72px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
@media (max-width: 760px) { .hero__deck { grid-template-columns: repeat(2, 1fr); } }

.deck__no {
  font-family: var(--serif-en); font-style: italic;
  font-weight: 500;
  font-size: 13px;
  color: var(--teal-deep);
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}
.deck__title {
  font-family: var(--serif-jp);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.deck__desc {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.85;
}

/* ============== PAGE HEAD (sub-pages) ============== */
.page-head {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) var(--pad-x) clamp(40px, 5vw, 64px);
  position: relative;
}
.page-head__meta {
  display: flex; gap: 24px; flex-wrap: wrap;
  font-family: var(--serif-en);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  margin-bottom: clamp(36px, 4vw, 56px);
  text-transform: uppercase;
}
.page-head__meta span:nth-child(2) { color: var(--teal-deep); font-style: italic; }
.page-head__meta span:last-child { margin-left: auto; }

.page-head__grid {
  display: grid; grid-template-columns: 1fr;
  gap: 32px; align-items: end;
}
@media (min-width: 880px) {
  .page-head__grid { grid-template-columns: 1.4fr 1fr; }
}
.page-head__title {
  font-family: var(--serif-jp);
  font-weight: 700;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.page-head__title em {
  font-style: italic;
  font-family: var(--serif-en);
  font-weight: 500;
  color: var(--teal-deep);
}
.page-head__title .small {
  display: block;
  font-family: var(--serif-en); font-style: italic;
  font-weight: 500;
  font-size: clamp(13px, 1.4vw, 18px);
  color: var(--teal-deep);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.page-head__lead {
  font-size: 13px; line-height: 2.05;
  color: var(--ink-2);
  max-width: 42ch;
  border-left: 1px solid var(--teal);
  padding-left: 20px;
}

.crumbs {
  display: flex; gap: 14px; flex-wrap: wrap;
  font-family: var(--serif-en); font-style: italic;
  font-size: 11px; letter-spacing: 0.18em;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.crumbs a:hover { color: var(--teal-deep); }
.crumbs span { color: var(--line); }
.crumbs strong { color: var(--ink); font-weight: 500; }

/* ============== MARQUEE ============== */
.marquee {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding: 22px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.marquee__track {
  display: inline-flex;
  gap: 56px;
  white-space: nowrap;
  animation: scroll 42s linear infinite;
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 22px;
  letter-spacing: 0.04em;
  font-weight: 500;
  padding-left: 0;
}
.marquee__track .dot { color: var(--teal); font-style: normal; margin: 0 6px; }
.marquee__track strong { font-style: normal; font-weight: 700; font-family: var(--serif-jp); margin-right: 6px; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (min-width: 980px) {
  .marquee__track { animation-duration: 126s; }
}

/* ============== SECTION SHELL ============== */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 140px) var(--pad-x);
}
.section__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: clamp(40px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  padding-bottom: 28px;
}
@media (min-width: 880px) {
  .section__head {
    grid-template-columns: 7fr 5fr;
    align-items: end;
  }
}
.section__no {
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--teal-deep);
  margin-bottom: 12px;
  display: inline-flex; align-items: center; gap: 12px;
}
.section__no::after {
  content: ''; width: 36px; height: 1px; background: var(--teal);
}
.section__title {
  font-family: var(--serif-jp);
  font-weight: 700;
  font-size: clamp(28px, 4.2vw, 48px);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.section__title .alt {
  font-family: var(--serif-en); font-style: italic;
  color: var(--teal-deep);
  font-weight: 500;
}
.section__lead {
  font-size: 13px;
  color: var(--ink-soft);
  max-width: 38ch;
  line-height: 1.95;
}

/* ============== VALUE STRIP ============== */
.value {
  background: var(--white);
  border-block: 1px solid var(--line-soft);
}
.value__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 80px) var(--pad-x);
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 880px) { .value__inner { grid-template-columns: 1fr 1fr; align-items: center; } }

.value__title {
  font-family: var(--serif-jp);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.5;
  letter-spacing: -0.005em;
}
.value__title em {
  font-style: italic;
  font-family: var(--serif-en);
  color: var(--teal-deep);
  font-weight: 500;
}
.value__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 600px) { .value__pillars { grid-template-columns: 1fr; } }
.pillar {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.pillar__no {
  font-family: var(--serif-en); font-style: italic;
  font-size: 11px; color: var(--teal-deep);
  letter-spacing: 0.18em;
  margin-bottom: 8px;
}
.pillar__t {
  font-family: var(--serif-jp);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 6px;
}
.pillar__d {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.8;
}

/* ============== SERVICES ============== */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
@media (min-width: 1080px) { .services { grid-template-columns: repeat(4, 1fr); } }

.svc {
  background: var(--cream);
  padding: 40px 28px 32px;
  position: relative;
  transition: background .35s;
  display: flex; flex-direction: column;
  min-height: 380px;
}
.svc:hover { background: var(--white); }
.svc:hover .svc__no { color: var(--teal); }
.svc:hover .svc__cta { color: var(--teal-deep); }
.svc:hover .svc__cta::after { transform: translateX(4px); }

.svc__no {
  font-family: var(--serif-en);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 24px;
  transition: color .3s;
}
.svc__no::before { content: ''; width: 24px; height: 1px; background: currentColor; }

.svc__icon {
  width: 52px; height: 52px;
  margin-bottom: 22px;
  color: var(--teal-deep);
}
.svc__title {
  font-family: var(--serif-jp);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 6px;
  letter-spacing: 0.005em;
}
.svc__sub {
  font-family: var(--serif-en); font-style: italic;
  font-size: 12px; color: var(--teal-deep);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.svc__desc {
  font-size: 12.5px;
  color: var(--ink-2);
  line-height: 1.9;
  margin-bottom: 22px;
}
.svc__list {
  list-style: none;
  padding: 0; margin: 0 0 24px;
  font-size: 11.5px;
  display: flex; flex-direction: column; gap: 7px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
}
.svc__list li {
  position: relative; padding-left: 14px;
}
.svc__list li::before {
  content: ''; position: absolute; left: 0; top: 0.65em;
  width: 6px; height: 1px; background: var(--teal);
}

.svc__cta {
  margin-top: auto;
  font-family: var(--serif-en); font-style: italic;
  font-size: 13px; letter-spacing: 0.12em;
  color: var(--ink);
  transition: color .3s;
  display: inline-flex; align-items: center; gap: 6px;
}
.svc__cta::after { content: '→'; transition: transform .3s; }

/* ============== WORKS ============== */
.works-bar {
  display: flex; gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  align-items: center;
}
.works-tabs {
  display: flex; gap: 24px; flex-wrap: wrap;
  font-size: 12px;
}
.works-tabs button {
  background: none; border: none; cursor: pointer;
  padding: 8px 0; color: var(--ink-soft);
  font-family: var(--sans-jp);
  font-size: 11.5px; letter-spacing: 0.16em;
  border-bottom: 1px solid transparent;
  transition: color .25s, border-color .25s;
}
.works-tabs button.is-active { color: var(--ink); border-color: var(--teal); }
.works-tabs button:hover { color: var(--ink); }
.works-bar__count {
  margin-left: auto;
  font-family: var(--serif-en); font-style: italic;
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.12em;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
@media (min-width: 720px) { .works-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1080px) { .works-grid { grid-template-columns: repeat(4, 1fr); } }

.work {
  background: var(--cream);
  aspect-ratio: 4 / 5;
  padding: 22px;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
  position: relative;
  transition: background .35s;
  cursor: pointer;
}
.work:hover { background: var(--white); }
.work:hover .work__mono { transform: translateY(-4px); color: var(--teal-deep); }

.work__top {
  display: flex; justify-content: space-between; align-items: flex-start;
}
.work__num {
  font-family: var(--serif-en);
  font-weight: 500; font-style: italic;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
}
.work__tag {
  font-size: 10px;
  background: var(--teal-pale);
  color: var(--teal-deep);
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.14em;
  font-weight: 500;
}
.work__mono {
  font-family: var(--serif-en);
  font-weight: 700;
  font-size: clamp(48px, 6.5vw, 76px);
  line-height: 0.9;
  color: var(--ink);
  text-align: right;
  margin: 18px 0 8px;
  font-style: italic;
  transition: transform .35s, color .35s;
  letter-spacing: -0.02em;
}
.work__mono::first-letter { color: var(--teal-deep); }
.work__bottom {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.work__client {
  font-family: var(--serif-jp);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
}
.work__type {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

.works-foot {
  margin-top: 32px;
  display: flex; justify-content: flex-end;
}
.works-more {
  font-family: var(--serif-en); font-style: italic;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: color .25s, border-color .25s;
}
.works-more:hover { color: var(--teal-deep); border-color: var(--teal-deep); }

/* ============== PRICING ============== */
.plans {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 56px;
}
@media (min-width: 880px) { .plans { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }

.plan {
  background: var(--cream);
  padding: 44px 30px 32px;
  border: 1px solid var(--line);
  border-radius: 4px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .35s, background .35s, border-color .35s, box-shadow .35s;
}
.plan:hover { transform: translateY(-6px); background: var(--white); border-color: var(--ink); box-shadow: 0 18px 40px rgba(20,19,15,.06); }

.plan--feature {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.plan--feature:hover { background: #1f1d18; border-color: var(--teal); }

.plan__badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--ink);
  font-family: var(--serif-en); font-style: italic;
  font-size: 10px; letter-spacing: 0.28em;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}

.plan__no {
  font-family: var(--serif-en); font-weight: 500; font-style: italic;
  font-size: 12px; letter-spacing: 0.16em;
  color: var(--ink-soft);
  margin-bottom: 22px;
  display: flex; align-items: center; gap: 10px;
}
.plan__no::before { content: ''; width: 24px; height: 1px; background: currentColor; }
.plan--feature .plan__no { color: rgba(247,243,236,.65); }

.plan__name {
  font-family: var(--serif-jp); font-weight: 700;
  font-size: 26px;
  margin-bottom: 4px;
  letter-spacing: 0.005em;
}
.plan__sub {
  font-family: var(--serif-en); font-style: italic;
  color: var(--teal-deep);
  font-size: 12px; letter-spacing: 0.06em;
  margin-bottom: 26px;
}
.plan--feature .plan__sub { color: var(--teal); }

.plan__price {
  font-family: var(--serif-en);
  display: flex; align-items: baseline;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.plan__price-prefix {
  font-size: 22px;
  color: var(--teal-deep);
  margin-right: 4px;
  font-weight: 500;
  font-style: italic;
}
.plan--feature .plan__price-prefix { color: var(--teal); }
.plan__price-num {
  font-size: clamp(40px, 5vw, 60px);
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}
.plan--feature .plan__price-num { color: var(--cream); }
.plan__price-unit {
  font-family: var(--serif-jp); font-size: 16px;
  font-weight: 500;
  color: var(--ink-soft);
  margin-left: 8px;
}
.plan--feature .plan__price-unit { color: rgba(247,243,236,.65); }

.plan__price-note {
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  line-height: 1.7;
}
.plan--feature .plan__price-note { color: rgba(247,243,236,.55); border-color: rgba(255,255,255,.1); }

.plan__list {
  list-style: none;
  padding: 0; margin: 0 0 32px;
  display: flex; flex-direction: column; gap: 9px;
  font-size: 12.5px; line-height: 1.6;
}
.plan__list li { position: relative; padding-left: 22px; }
.plan__list li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  font-family: var(--serif-en);
  font-weight: 700;
  color: var(--teal-deep);
  font-size: 14px;
}
.plan--feature .plan__list li::before { color: var(--teal); }

.plan__cta {
  margin-top: auto;
  display: inline-flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  border: 1px solid var(--ink);
  font-family: var(--serif-jp); font-weight: 700;
  font-size: 13px;
  border-radius: 4px;
  transition: background .25s, color .25s, border-color .25s;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.plan__cta::after {
  content: '→';
  font-family: var(--serif-en); font-style: italic;
  color: var(--teal-deep);
  transition: transform .25s, color .25s;
  margin-left: 12px;
}
.plan__cta:hover { background: var(--ink); color: var(--cream); }
.plan__cta:hover::after { color: var(--teal); transform: translateX(3px); }

.plan--feature .plan__cta {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--ink);
}
.plan--feature .plan__cta::after { color: var(--ink); }
.plan--feature .plan__cta:hover { background: var(--cream); border-color: var(--cream); color: var(--ink); }
.plan--feature .plan__cta:hover::after { color: var(--teal-deep); }

.plans-sub {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 28px;
}
@media (min-width: 720px) { .plans-sub { grid-template-columns: repeat(3, 1fr); } }
.plan-mini {
  background: var(--cream);
  padding: 26px 24px;
  transition: background .3s;
  display: flex; flex-direction: column; gap: 8px;
}
.plan-mini:hover { background: var(--white); }
.plan-mini__label {
  font-family: var(--serif-en); font-style: italic;
  font-size: 11px; letter-spacing: 0.18em;
  color: var(--teal-deep);
  margin-bottom: 4px;
}
.plan-mini__name {
  font-family: var(--serif-jp); font-weight: 700;
  font-size: 17px;
}
.plan-mini__price {
  font-family: var(--serif-en);
  font-style: italic;
  color: var(--teal-deep);
  font-size: 16px;
  display: flex; align-items: baseline; gap: 4px;
  margin-top: 4px;
}
.plan-mini__price strong {
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -0.01em;
  line-height: 1;
}
.plan-mini__price span {
  font-family: var(--serif-jp); font-style: normal;
  font-size: 12px; font-weight: 500;
  color: var(--ink-soft);
}
.plan-mini__desc {
  font-size: 11.5px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-top: 4px;
}

.plans-foot {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}
.plans-note {
  font-size: 11px;
  color: var(--ink-soft);
  line-height: 1.95;
  letter-spacing: 0.04em;
  text-align: center;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  max-width: 60ch;
}
.plans-note em {
  font-family: var(--serif-en); font-style: italic;
  color: var(--teal-deep);
  letter-spacing: 0.08em;
  font-size: 11px;
}

/* ============== STRENGTHS ============== */
.strengths {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(72px, 10vw, 130px) var(--pad-x);
  margin: clamp(40px, 6vw, 80px) 0;
  position: relative; overflow: hidden;
}
.strengths::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 90% 0%, rgba(10,186,181,.18), transparent 50%),
    radial-gradient(ellipse at 10% 100%, rgba(10,186,181,.12), transparent 55%);
  pointer-events: none;
}
.strengths__inner { max-width: var(--max); margin: 0 auto; position: relative; }
.strengths__head {
  display: grid; grid-template-columns: 1fr; gap: 32px;
  margin-bottom: 64px; padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (min-width: 880px) { .strengths__head { grid-template-columns: 7fr 5fr; align-items: end; } }
.strengths__no {
  font-family: var(--serif-en); font-style: italic;
  font-size: 13px; letter-spacing: 0.18em;
  color: var(--teal);
  margin-bottom: 12px;
  display: inline-flex; gap: 12px; align-items: center;
}
.strengths__no::after { content:''; width: 36px; height: 1px; background: var(--teal); }
.strengths__title {
  font-family: var(--serif-jp);
  font-weight: 700;
  font-size: clamp(28px, 4.2vw, 48px);
  line-height: 1.3;
}
.strengths__title em { font-style: normal; color: var(--teal); }
.strengths__lead {
  font-size: 13px; line-height: 2;
  color: rgba(247,243,236,.75);
  max-width: 38ch;
}
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 36px;
}
@media (min-width: 880px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat__no {
  font-family: var(--serif-en); font-style: italic;
  color: var(--teal);
  font-size: 12px;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 10px;
}
.stat__no::after { content: ''; width: 28px; height: 1px; background: var(--teal); }
.stat__value {
  font-family: var(--serif-en);
  font-weight: 500;
  font-size: clamp(56px, 8vw, 104px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--cream);
  display: flex; align-items: baseline;
}
.stat__unit {
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: 0.3em;
  margin-left: 6px;
  color: rgba(247,243,236,.7);
  letter-spacing: 0.04em;
}
.stat__label {
  margin-top: 16px;
  font-size: 11.5px;
  color: rgba(247,243,236,.65);
  line-height: 1.85;
  letter-spacing: 0.04em;
}
.stat__caveat {
  font-size: 10px;
  color: rgba(247,243,236,.4);
  font-style: italic; font-family: var(--serif-en);
  margin-top: 6px;
}

/* ============== VOICE ============== */
.voice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 720px) { .voice-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .voice-grid { grid-template-columns: repeat(3, 1fr); } }

.voice {
  background: var(--white);
  padding: 32px 28px 26px;
  border: 1px solid var(--line-soft);
  position: relative;
  border-radius: 4px;
  transition: transform .25s, box-shadow .25s;
}
.voice:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(20,19,15,0.06); }
.voice::before {
  content: '"';
  position: absolute; top: 4px; right: 22px;
  font-family: var(--serif-en);
  font-size: 90px; line-height: 1;
  color: var(--teal-pale);
  font-weight: 700;
  pointer-events: none;
}
.voice__rating {
  display: inline-flex; gap: 2px;
  color: var(--teal);
  font-size: 12px;
  margin-bottom: 14px;
  letter-spacing: 0.12em;
}
.voice__quote {
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.95;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.voice__meta {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--line-soft);
  padding-top: 14px;
}
.voice__avatar {
  width: 38px; height: 38px;
  background: var(--teal-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif-en);
  color: var(--teal-deep);
  font-weight: 700;
  font-size: 14px;
  font-style: italic;
}
.voice__industry { font-size: 11px; color: var(--ink-soft); letter-spacing: 0.14em; }
.voice__role { font-size: 13px; font-family: var(--serif-jp); font-weight: 500; }

/* ============== ABOUT ============== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 980px) { .about-grid { grid-template-columns: 5fr 7fr; } }
.about__portrait {
  background: linear-gradient(135deg, var(--teal-pale) 0%, var(--cream-deep) 100%);
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--line);
}
.about__portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  filter: grayscale(0.08) contrast(0.98) saturate(0.92);
}
.about__portrait__caption {
  position: absolute; bottom: 14px; left: 14px;
  font-family: var(--serif-en); font-style: italic;
  font-size: 10px; letter-spacing: 0.28em;
  color: var(--ink-2);
  background: rgba(247,243,236,0.94);
  backdrop-filter: blur(6px);
  padding: 7px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
}
.about__portrait__caption em {
  color: var(--teal-deep);
  font-style: normal;
  font-family: var(--sans-jp);
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.16em;
}

.about__body { display: flex; flex-direction: column; gap: 28px; }
.about__quote {
  font-family: var(--serif-jp);
  font-weight: 700;
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.65;
  letter-spacing: -0.005em;
}
.about__quote em {
  font-style: normal;
  background: linear-gradient(transparent 60%, var(--teal-pale) 60%);
  padding: 0 4px;
}
.about__name {
  font-family: var(--serif-en); font-style: italic;
  font-size: 13px; letter-spacing: 0.18em;
  color: var(--teal-deep);
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.about__name strong {
  font-family: var(--serif-jp);
  font-style: normal;
  font-weight: 700;
  color: var(--ink);
  font-size: 16px;
  margin-right: 12px;
  letter-spacing: 0.04em;
}
.about__text {
  font-size: 13px;
  line-height: 2;
  color: var(--ink-2);
}

.about__table {
  border-top: 1px solid var(--line);
  font-size: 12px;
  margin-top: 8px;
}
.about__table div {
  display: grid;
  grid-template-columns: 130px 1fr;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  gap: 16px;
}
.about__table dt {
  font-family: var(--serif-en); font-style: italic;
  color: var(--teal-deep); letter-spacing: 0.08em;
  font-size: 12px;
}
.about__table dd { font-family: var(--sans-jp); color: var(--ink-2); }
.about__table dd em { font-style: normal; color: var(--ink-soft); font-size: 11px; }

/* ============== FAQ ============== */
.faq-list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item__head {
  width: 100%;
  display: flex; align-items: center; gap: 20px;
  padding: 24px 4px;
  background: none; border: none; cursor: pointer;
  text-align: left;
  font-family: var(--serif-jp); font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: 0.005em;
  transition: color .25s;
  line-height: 1.5;
}
.faq-item__head:hover { color: var(--teal-deep); }
.faq-item__q {
  font-family: var(--serif-en); font-style: italic;
  color: var(--teal);
  font-size: 22px; font-weight: 500;
  line-height: 1;
  flex-shrink: 0;
}
.faq-item__head::after {
  content: '+';
  margin-left: auto;
  font-family: var(--serif-en); font-style: italic;
  color: var(--teal-deep);
  font-size: 26px; line-height: 1;
  transition: transform .3s;
  font-weight: 500;
}
.faq-item.is-open .faq-item__head::after { transform: rotate(45deg); }
.faq-item__body {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}
.faq-item.is-open .faq-item__body { max-height: 600px; padding: 0 4px 28px 50px; }
.faq-item__body p {
  font-size: 13px; line-height: 2;
  color: var(--ink-2);
}
.faq-item__body p + p { margin-top: 12px; }

/* ============== CONTACT ============== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 880px) { .contact-grid { grid-template-columns: 5fr 7fr; gap: 64px; } }

.contact__methods {
  display: flex; flex-direction: column; gap: 14px;
}
.contact__method {
  display: flex; align-items: center; gap: 16px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: var(--serif-jp); font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .25s, transform .25s, background .25s;
}
.contact__method:hover { border-color: var(--ink); transform: translateX(4px); background: var(--cream); }
.contact__method svg { width: 20px; height: 20px; color: var(--teal-deep); flex-shrink: 0; }
.contact__method em {
  margin-left: auto;
  font-family: var(--serif-en); font-style: italic; font-weight: 500;
  font-size: 11px; letter-spacing: 0.2em;
  color: var(--ink-soft);
}

.contact__form {
  display: flex; flex-direction: column; gap: 20px;
}
.contact__field {
  display: flex; flex-direction: column; gap: 8px;
}
.contact__field label {
  font-family: var(--serif-en); font-style: italic;
  font-size: 11px; letter-spacing: 0.2em;
  color: var(--teal-deep);
}
.contact__field label em {
  color: var(--teal); font-style: normal;
  margin-left: 4px; font-size: 10px;
}
.contact__field input,
.contact__field textarea,
.contact__field select {
  font-family: var(--sans-jp);
  font-size: 14px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  transition: border-color .25s, background .25s;
}
.contact__field input:focus,
.contact__field textarea:focus,
.contact__field select:focus { outline: none; border-color: var(--teal); background: var(--cream); }
.contact__field textarea { min-height: 140px; resize: vertical; line-height: 1.85; }
.contact__submit {
  margin-top: 8px;
  align-self: flex-start;
}

/* ============== ARTICLE (privacy etc) ============== */
.prose {
  max-width: 72ch;
  margin: 0 auto;
  font-size: 14px;
  line-height: 2;
  color: var(--ink-2);
}
.prose h2 {
  font-family: var(--serif-jp); font-weight: 700;
  font-size: clamp(20px, 2.4vw, 26px);
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 56px 0 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.prose h3 {
  font-family: var(--serif-jp); font-weight: 700;
  font-size: 16px;
  margin: 32px 0 10px;
  color: var(--ink);
}
.prose p { margin-bottom: 16px; }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 16px; }
.prose li { margin-bottom: 6px; }
.prose strong { font-weight: 700; color: var(--ink); }
.prose em { font-family: var(--serif-en); font-style: italic; color: var(--teal-deep); }
.prose a { color: var(--teal-deep); border-bottom: 1px solid var(--teal-pale); }
.prose a:hover { border-bottom-color: var(--teal-deep); }

/* ============== CTA ============== */
.cta {
  background: var(--cream-deep);
  padding: clamp(72px, 10vw, 130px) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(10,186,181,0.18), transparent 60%),
    radial-gradient(ellipse at 0% 0%, rgba(255,255,255,0.5), transparent 50%);
  pointer-events: none;
}
.cta__inner {
  max-width: var(--max); margin: 0 auto;
  position: relative;
  display: grid; gap: 48px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 980px) { .cta__inner { grid-template-columns: 1.3fr 1fr; } }

.cta__no {
  font-family: var(--serif-en); font-style: italic;
  font-size: 13px; letter-spacing: 0.18em;
  color: var(--teal-deep);
  margin-bottom: 16px;
  display: inline-flex; gap: 12px; align-items: center;
}
.cta__no::after { content:''; width: 36px; height: 1px; background: var(--teal-deep); }
.cta__title {
  font-family: var(--serif-jp);
  font-weight: 700;
  font-size: clamp(32px, 5.2vw, 60px);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.cta__title em {
  font-style: italic;
  font-family: var(--serif-en);
  font-weight: 500;
  color: var(--teal-deep);
}
.cta__lead {
  margin-top: 24px;
  font-size: 14px; color: var(--ink-2); line-height: 2.05;
  max-width: 42ch;
}
.cta__actions { display: flex; flex-direction: column; gap: 14px; }

.btn {
  display: inline-flex; align-items: center; justify-content: space-between;
  padding: 22px 28px;
  font-family: var(--serif-jp);
  font-weight: 700;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background .25s, transform .25s, color .25s, border-color .25s;
  border: 1px solid transparent;
  letter-spacing: 0.04em;
}
.btn .arr {
  font-family: var(--serif-en); font-style: italic;
  font-size: 14px; font-weight: 500;
  color: inherit;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.btn-primary .arr { color: var(--teal); }
.btn-primary:hover { background: var(--teal-deep); border-color: var(--teal-deep); transform: translateY(-2px); }
.btn-primary:hover .arr { color: var(--cream); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover { background: var(--white); transform: translateY(-2px); }
.btn-secondary .arr { color: var(--teal-deep); }

.btn-instagram {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}
.btn-instagram:hover { background: var(--cream); border-color: var(--ink); transform: translateY(-2px); }
.btn-instagram .arr { color: var(--teal-deep); }
.btn__lead {
  display: inline-flex; align-items: center; gap: 12px;
}
.btn__lead svg {
  width: 20px; height: 20px;
  color: var(--teal-deep);
  flex-shrink: 0;
}

/* ============== FOOTER ============== */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(60px, 8vw, 96px) var(--pad-x) 32px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: 'FLEXER';
  position: absolute;
  bottom: -0.18em; left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif-en); font-style: italic;
  font-weight: 700;
  font-size: clamp(120px, 22vw, 280px);
  color: rgba(247,243,236,0.04);
  letter-spacing: -0.04em;
  pointer-events: none;
  white-space: nowrap;
}
.footer__inner { max-width: var(--max); margin: 0 auto; position: relative; }
.footer__top {
  display: grid; grid-template-columns: 1fr; gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (min-width: 880px) { .footer__top { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer__brand {
  font-family: var(--serif-en); font-weight: 700;
  font-size: 30px; letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.footer__brand em { font-style: italic; color: var(--teal); font-weight: 500; }
.footer__addr {
  font-size: 12px; line-height: 2.05;
  color: rgba(247,243,236,.75);
  max-width: 32ch;
}
.footer h4 {
  font-family: var(--serif-en); font-style: italic;
  font-weight: 500; font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--teal);
  margin-bottom: 18px;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer li a {
  font-size: 13px; color: rgba(247,243,236,.85);
  transition: color .2s;
}
.footer li a:hover { color: var(--teal); }

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  font-family: var(--serif-en); font-style: italic;
  font-size: 11px; letter-spacing: 0.18em;
  color: rgba(247,243,236,.5);
  flex-wrap: wrap; gap: 16px;
}
.footer__bottom a:hover { color: var(--teal); }

/* ============== ANIMATIONS ============== */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; animation: fade-up 1s cubic-bezier(.16,.84,.44,1) forwards; }
.reveal.d1 { animation-delay: .08s; }
.reveal.d2 { animation-delay: .2s; }
.reveal.d3 { animation-delay: .32s; }
.reveal.d4 { animation-delay: .44s; }
.reveal.d5 { animation-delay: .56s; }

.hero__title .line {
  display: block;
  overflow: hidden;
}
.hero__title .line > span {
  display: inline-block;
  transform: translateY(110%);
  animation: line-rise 1.1s cubic-bezier(.2,.8,.2,1) forwards;
}
.hero__title .line:nth-child(1) > span { animation-delay: .15s; }
.hero__title .line:nth-child(2) > span { animation-delay: .35s; }
.hero__title .line:nth-child(3) > span { animation-delay: .55s; }
.hero__title .line:nth-child(4) > span { animation-delay: .75s; }
@keyframes line-rise {
  from { transform: translateY(110%); }
  to { transform: translateY(0); }
}

.hero__title em::after {
  transform-origin: left;
  transform: scaleX(0);
  animation: underline-grow 1.1s 1.2s cubic-bezier(.16,.84,.44,1) forwards;
}
@keyframes underline-grow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes ken-burns {
  0% { transform: scale(1.02) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1.5%, -1%); }
}
.hero__visual img { animation: ken-burns 24s ease-out forwards; }

.hero__deco {
  position: absolute;
  pointer-events: none;
  z-index: -1;
}
.hero__deco--ring {
  top: 6%;
  right: 4%;
  width: clamp(120px, 16vw, 220px);
  height: clamp(120px, 16vw, 220px);
  border: 1px solid var(--teal);
  border-radius: 50%;
  opacity: 0.35;
  animation: float-1 9s ease-in-out infinite;
}
.hero__deco--dot {
  bottom: 22%;
  left: 38%;
  width: 12px; height: 12px;
  background: var(--teal);
  border-radius: 50%;
  opacity: 0.6;
  animation: float-2 7s ease-in-out infinite;
}
.hero__deco--cross {
  top: 32%;
  right: 30%;
  width: 18px; height: 18px;
  opacity: 0.5;
  animation: float-3 8s ease-in-out infinite;
}
.hero__deco--cross::before, .hero__deco--cross::after {
  content: ''; position: absolute; inset: 0;
  background: var(--teal-deep);
}
.hero__deco--cross::before { width: 100%; height: 1px; top: 50%; }
.hero__deco--cross::after { width: 1px; height: 100%; left: 50%; }
@keyframes float-1 {
  0%, 100% { transform: translate(0,0) rotate(0deg); }
  50% { transform: translate(-8px, 14px) rotate(8deg); }
}
@keyframes float-2 {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(20px, -16px); }
}
@keyframes float-3 {
  0%, 100% { transform: translate(0,0) rotate(0); }
  50% { transform: translate(-12px, -8px) rotate(45deg); }
}

.marquee__track .dot { animation: pulse-dot 2.4s ease-in-out infinite; display: inline-block; }
@keyframes pulse-dot {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

.cta::before { animation: drift 18s ease-in-out infinite alternate; }
@keyframes drift {
  0% { background-position: 0% 0%; transform: scale(1); }
  100% { background-position: 100% 100%; transform: scale(1.08); }
}

.strengths::before { animation: drift 22s ease-in-out infinite alternate; }

.fade-in {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s cubic-bezier(.16,.84,.44,1), transform 1s cubic-bezier(.16,.84,.44,1);
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .85s cubic-bezier(.16,.84,.44,1), transform .85s cubic-bezier(.16,.84,.44,1);
}
.stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.is-visible > *:nth-child(2) { transition-delay: .07s; }
.stagger.is-visible > *:nth-child(3) { transition-delay: .14s; }
.stagger.is-visible > *:nth-child(4) { transition-delay: .21s; }
.stagger.is-visible > *:nth-child(5) { transition-delay: .28s; }
.stagger.is-visible > *:nth-child(6) { transition-delay: .35s; }
.stagger.is-visible > *:nth-child(7) { transition-delay: .42s; }
.stagger.is-visible > *:nth-child(8) { transition-delay: .49s; }
.stagger.is-visible > *:nth-child(9) { transition-delay: .56s; }
.stagger.is-visible > *:nth-child(10) { transition-delay: .63s; }
.stagger.is-visible > *:nth-child(11) { transition-delay: .7s; }
.stagger.is-visible > *:nth-child(12) { transition-delay: .77s; }

.stagger.is-visible .stat__value { animation: pop 1.2s cubic-bezier(.16,.84,.44,1) both; }
@keyframes pop {
  0% { letter-spacing: 0.04em; opacity: 0; }
  60% { letter-spacing: -0.04em; opacity: 1; }
  100% { letter-spacing: -0.025em; opacity: 1; }
}

.svc__icon { transition: transform .6s cubic-bezier(.34,1.56,.64,1), color .3s; }
.svc:hover .svc__icon { transform: rotate(-12deg) scale(1.08); color: var(--teal); }

.work__mono { will-change: transform; }
.work::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(10,186,181,0.08) 100%);
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
}
.work:hover::after { opacity: 1; }

.voice:hover::before { animation: wobble 1.2s ease-in-out; }
@keyframes wobble {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-8deg) translateY(-2px); }
  75% { transform: rotate(6deg); }
}

.about__portrait img { transition: transform 1.2s cubic-bezier(.16,.84,.44,1); }
.about__portrait:hover img { transform: scale(1.04); }

.btn { position: relative; overflow: hidden; }
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left .6s ease;
}
.btn:hover::before { left: 100%; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
  }
  .hero__title .line > span { transform: none; }
  .fade-in, .stagger > * { opacity: 1; transform: none; }
  .drawer { transition: none; }
}
