/* =========================================================
   akuukan — Ink Studio / Morning Atelier
   Tokens: ink · paper · indigo · graphite · Syne / Noto / DM
   ========================================================= */

:root {
  --ak-ink: #121212;
  --ak-paper: #F7F4EF;
  --ak-white: #FFFFFF;
  --ak-indigo: #2B4DFF;
  --ak-indigo-deep: #1A35C4;
  --ak-graphite: #6B6B6B;
  --ak-line: rgba(18, 18, 18, 0.12);
  --ak-line-strong: rgba(18, 18, 18, 0.28);
  --ak-veil: rgba(18, 18, 18, 0.42);
  --ak-font-display: "Syne", "Noto Sans JP", sans-serif;
  --ak-font-body: "Noto Sans JP", "DM Sans", sans-serif;
  --ak-font-latin: "DM Sans", "Noto Sans JP", sans-serif;
  --ak-nav-h: 56px;
  --ak-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ak-max: 1200px;
  --ak-wide: 1440px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body.ak-body {
  margin: 0;
  color: var(--ak-ink);
  font-family: var(--ak-font-body);
  font-size: 16px;
  line-height: 1.75;
  background:
    radial-gradient(1200px 600px at 12% -10%, rgba(43, 77, 255, 0.06), transparent 55%),
    radial-gradient(900px 500px at 100% 20%, rgba(18, 18, 18, 0.04), transparent 50%),
    linear-gradient(180deg, var(--ak-paper) 0%, #F3EFE8 40%, var(--ak-paper) 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

body.ak-body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--ak-indigo); }
h1, h2, h3, h4 {
  font-family: var(--ak-font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
}
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
address { font-style: normal; }
button, input, textarea { font: inherit; }

.ak-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ak-ink);
  color: var(--ak-paper);
  padding: 0.75rem 1rem;
  z-index: 10000;
}
.ak-skip:focus { left: 1rem; top: 1rem; }

/* —— Nav —— */
.ak-nav {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--ak-nav-h);
  background: rgba(247, 244, 239, 0.72);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ak-ease), border-color 0.4s var(--ak-ease), height 0.35s var(--ak-ease), box-shadow 0.4s var(--ak-ease);
}
.ak-nav.is-scrolled {
  background: rgba(247, 244, 239, 0.94);
  border-bottom-color: var(--ak-line);
  box-shadow: 0 1px 0 rgba(18, 18, 18, 0.04);
  height: 48px;
}
.ak-nav__inner {
  max-width: var(--ak-wide);
  margin: 0 auto;
  height: 100%;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.ak-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}
.ak-nav__mark {
  width: 14px;
  height: 14px;
  background: var(--ak-indigo);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 70% 100%, 0 100%);
  transition: transform 0.45s var(--ak-ease);
}
.ak-nav.is-scrolled .ak-nav__mark { transform: rotate(90deg); }
.ak-nav__name {
  font-family: var(--ak-font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}
.ak-nav__links {
  display: flex;
  gap: 1.4rem;
  margin-left: auto;
  font-size: 0.88rem;
  font-weight: 500;
}
.ak-nav__links a {
  position: relative;
  color: var(--ak-graphite);
  padding: 0.2rem 0;
  transition: color 0.25s;
}
.ak-nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -2px;
  height: 1.5px;
  background: var(--ak-indigo);
  transition: right 0.35s var(--ak-ease);
}
.ak-nav__links a:hover,
.ak-nav__links a.is-on { color: var(--ak-ink); }
.ak-nav__links a.is-on::after,
.ak-nav__links a:hover::after { right: 0; }

.ak-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.4rem;
  font-family: var(--ak-font-latin);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border: 1.5px solid var(--ak-ink);
  background: var(--ak-ink);
  color: var(--ak-paper);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.3s var(--ak-ease), box-shadow 0.3s var(--ak-ease);
}
.ak-btn:hover {
  background: var(--ak-indigo);
  border-color: var(--ak-indigo);
  color: var(--ak-white);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(43, 77, 255, 0.22);
  animation: akBtnPulse 1.1s var(--ak-ease) infinite;
}
@keyframes akBtnPulse {
  0%, 100% { box-shadow: 0 10px 24px rgba(43, 77, 255, 0.22); }
  50% { box-shadow: 0 14px 30px rgba(43, 77, 255, 0.34); }
}
.ak-btn--ghost {
  background: transparent;
  color: var(--ak-ink);
}
.ak-btn--ghost:hover {
  background: var(--ak-ink);
  color: var(--ak-paper);
}
.ak-btn--light {
  background: var(--ak-paper);
  color: var(--ak-ink);
  border-color: var(--ak-paper);
}
.ak-btn--light:hover {
  background: var(--ak-white);
  border-color: var(--ak-white);
  color: var(--ak-indigo);
}
.ak-btn--nav {
  padding: 0.45rem 0.95rem;
  font-size: 0.82rem;
  margin-left: 0.5rem;
}
.ak-btn--indigo {
  background: var(--ak-indigo);
  border-color: var(--ak-indigo);
  color: var(--ak-white);
}
.ak-btn--indigo:hover {
  background: var(--ak-indigo-deep);
  border-color: var(--ak-indigo-deep);
}

.ak-burger {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 6px;
  padding: 10px 8px;
  position: relative;
  z-index: 920;
  -webkit-tap-highlight-color: transparent;
}
.ak-burger i {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--ak-ink);
  transform-origin: center;
  transition: transform 0.35s var(--ak-ease), opacity 0.25s ease, background 0.25s;
}
.ak-burger[aria-expanded="true"] i:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.ak-burger[aria-expanded="true"] i:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.ak-burger[aria-expanded="true"] i:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}
body.is-drawer-open .ak-burger i { background: var(--ak-paper); }

.ak-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(18, 18, 18, 0.5);
  z-index: 850;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s var(--ak-ease), visibility 0.4s var(--ak-ease);
}
.ak-drawer-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.ak-drawer-backdrop[hidden] { display: none; }

.ak-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(340px, 90vw);
  height: 100%;
  height: 100dvh;
  background:
    radial-gradient(520px 280px at 100% 0%, rgba(43, 77, 255, 0.22), transparent 60%),
    var(--ak-ink);
  color: var(--ak-paper);
  z-index: 880;
  padding: 0;
  display: flex;
  flex-direction: column;
  transform: translateX(104%);
  transition: transform 0.45s var(--ak-ease);
  outline: none;
  box-shadow: -18px 0 48px rgba(0, 0, 0, 0.28);
}
.ak-drawer.is-open { transform: translateX(0); }
.ak-drawer[hidden] { display: none; }

.ak-drawer__inner {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  height: 100%;
  padding: 1.15rem 1.35rem calc(1.5rem + env(safe-area-inset-bottom, 0px));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.ak-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 44px;
}
.ak-drawer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--ak-font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  color: var(--ak-paper);
  min-height: 44px;
}
.ak-drawer__brand:hover { color: var(--ak-paper); }
.ak-drawer__brand .ak-nav__mark {
  background: var(--ak-indigo);
  flex-shrink: 0;
}
.ak-drawer__close {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(247, 244, 239, 0.22);
  background: rgba(247, 244, 239, 0.06);
  color: var(--ak-paper);
  cursor: pointer;
  display: grid;
  place-items: center;
  border-radius: 2px;
  flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s;
}
.ak-drawer__close:hover {
  background: rgba(43, 77, 255, 0.35);
  border-color: var(--ak-indigo);
}
.ak-drawer__close span {
  position: relative;
  width: 16px;
  height: 16px;
  display: block;
}
.ak-drawer__close span::before,
.ak-drawer__close span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1.5px;
  background: currentColor;
}
.ak-drawer__close span::before { transform: rotate(45deg); }
.ak-drawer__close span::after { transform: rotate(-45deg); }

.ak-drawer__kicker {
  margin: 0.35rem 0 0;
  font-family: var(--ak-font-latin);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, 0.48);
}

.ak-drawer__links {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin: 0.5rem 0 0.25rem;
  padding: 0.35rem 0;
  border-top: 1px solid rgba(247, 244, 239, 0.12);
  border-bottom: 1px solid rgba(247, 244, 239, 0.12);
}
.ak-drawer__links a {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 48px;
  padding: 0.55rem 0.2rem;
  font-family: var(--ak-font-display);
  font-size: clamp(1.35rem, 5.5vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ak-paper);
  opacity: 0;
  transform: translateX(18px);
  transition: color 0.25s, opacity 0.45s var(--ak-ease), transform 0.45s var(--ak-ease);
  transition-delay: 0s;
}
.ak-drawer.is-open .ak-drawer__links a {
  opacity: 1;
  transform: none;
  transition-delay: calc(0.12s + var(--d, 0) * 0.07s);
}
.ak-drawer__links a span {
  font-family: var(--ak-font-latin);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(247, 244, 239, 0.4);
  min-width: 1.6rem;
}
.ak-drawer__links a:hover,
.ak-drawer__links a.is-on { color: #9db0ff; }
.ak-drawer__links a.is-on span { color: var(--ak-indigo); }

.ak-drawer__meta {
  margin-top: auto;
  padding-top: 0.5rem;
}
.ak-drawer__meta a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--ak-font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ak-paper);
  letter-spacing: -0.02em;
}
.ak-drawer__meta a:hover { color: #9db0ff; }
.ak-drawer__meta p {
  margin: 0.15rem 0 0;
  font-size: 0.85rem;
  color: rgba(247, 244, 239, 0.55);
}

.ak-drawer__cta {
  width: 100%;
  min-height: 48px;
  margin-top: 0.35rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s var(--ak-ease), transform 0.45s var(--ak-ease), background 0.25s, border-color 0.25s, box-shadow 0.3s;
}
.ak-drawer.is-open .ak-drawer__cta {
  opacity: 1;
  transform: none;
  transition-delay: 0.42s;
}

body.is-drawer-open {
  overflow: hidden;
  touch-action: none;
  overscroll-behavior: none;
}
body.is-drawer-open .ak-nav {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.ak-main { overflow: clip; }

/* —— Stats (home metrics) —— */
.ak-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--ak-line-strong);
  border-bottom: 1px solid var(--ak-line-strong);
}
.ak-stats article {
  padding: 3rem 2rem 2.5rem;
  text-align: center;
  border-right: 1px solid var(--ak-line-strong);
  position: relative;
}
.ak-stats article:last-child { border-right: 0; }
.ak-stats__num {
  font-family: var(--ak-font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 0 0 0.4rem;
  color: var(--ak-ink);
}
.ak-stats__num small {
  font-family: var(--ak-font-display);
  font-weight: 700;
  font-size: 0.6em;
  color: var(--ak-indigo);
  margin-left: 0.1em;
}
.ak-stats__label {
  font-family: var(--ak-font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ak-graphite);
  letter-spacing: 0.02em;
  margin: 0;
}

/* —— Marquee (room tags) —— */
.ak-marquee {
  overflow: hidden;
  padding: 2rem 0;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.ak-marquee::before,
.ak-marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.ak-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--ak-paper), transparent);
}
.ak-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--ak-paper), transparent);
}
.ak-marquee__track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: akMarquee 35s linear infinite;
}
.ak-marquee:hover .ak-marquee__track {
  animation-play-state: paused;
}
@keyframes akMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ak-marquee span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.35rem;
  font-family: var(--ak-font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: var(--ak-ink);
  background: var(--ak-white);
  border: 1px solid var(--ak-line);
  border-radius: 100px;
  white-space: nowrap;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.ak-marquee span:hover {
  background: var(--ak-indigo);
  border-color: var(--ak-indigo);
  color: var(--ak-white);
}

/* —— Layout helpers —— */
.ak-wrap {
  max-width: var(--ak-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.ak-wrap--wide {
  max-width: var(--ak-wide);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.ak-section {
  padding: 5.5rem 0;
  position: relative;
}
.ak-section--tight {
  padding: 2.75rem 0;
}
.ak-section--ink {
  background: var(--ak-ink);
  color: var(--ak-paper);
}
.ak-section--ink .ak-eyebrow { color: rgba(247, 244, 239, 0.55); }
.ak-section--ink .ak-why { border-top-color: rgba(247, 244, 239, 0.12); }
.ak-section--ink .ak-why article {
  border-bottom-color: rgba(247, 244, 239, 0.12);
  border-right-color: rgba(247, 244, 239, 0.12);
  color: var(--ak-paper);
}
.ak-section--ink .ak-why p { color: rgba(247, 244, 239, 0.65); }
.ak-section--ink .ak-slist { border-top-color: rgba(247, 244, 239, 0.12); }
.ak-section--ink .ak-slist__row { border-bottom-color: rgba(247, 244, 239, 0.12); }
.ak-section--ink .ak-price {
  border-color: rgba(247, 244, 239, 0.18);
}
.ak-section--ink .ak-price article {
  border-right-color: rgba(247, 244, 239, 0.18);
  background: transparent;
  color: var(--ak-paper);
}
.ak-section--ink .ak-price article.is-hot {
  background: var(--ak-indigo);
}
.ak-section--ink .ak-price p:last-child { color: rgba(247,244,239,0.65); }
.ak-reveal-box {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--ak-mist);
}
.ak-reveal-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ak-feature__copy .ak-faq summary { color: var(--ak-paper); }
.ak-feature__copy .ak-faq details { border-color: rgba(247, 244, 239, 0.15); }
.ak-feature__copy .ak-faq details p { color: rgba(247, 244, 239, 0.7); }
.ak-section--paper {
  background: linear-gradient(180deg, rgba(255,255,255,0.55), transparent);
}
.ak-eyebrow {
  display: block;
  font-family: var(--ak-font-latin);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ak-graphite);
  margin-bottom: 0.75rem;
}
.ak-lead {
  font-size: 1.05rem;
  color: var(--ak-graphite);
  max-width: 36em;
}
.ak-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* —— Home hero —— */
.ak-hero {
  position: relative;
  min-height: calc(100vh - var(--ak-nav-h));
  min-height: calc(100svh - var(--ak-nav-h));
  display: grid;
  align-items: end;
  color: var(--ak-paper);
  overflow: hidden;
}
.ak-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
  overflow: hidden;
}
.ak-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transform-origin: center center;
}
html.ak-anim .ak-hero.is-ready .ak-hero__media img {
  animation: akKenBurns 22s ease-out forwards;
}
@keyframes akKenBurns {
  0% { transform: scale(1.06) translate(0, 0); }
  100% { transform: scale(1.16) translate(-1.5%, -1%); }
}
.ak-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(18,18,18,0.78) 0%, rgba(18,18,18,0.35) 48%, rgba(18,18,18,0.15) 100%),
    linear-gradient(0deg, rgba(18,18,18,0.55) 0%, transparent 45%);
}
.ak-hero__copy {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--ak-wide);
  margin: 0 auto;
  padding: 3rem 1.5rem 4.5rem;
}
.ak-hero__brand {
  font-family: var(--ak-font-display);
  font-weight: 800;
  font-size: clamp(4.5rem, 16vw, 11rem);
  line-height: 0.88;
  letter-spacing: -0.055em;
  margin: 0 0 1.25rem;
  overflow: hidden;
}
.ak-hero__brand .ak-char {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
}
.js .ak-hero.is-ready .ak-hero__brand .ak-char {
  animation: akCharIn 0.85s var(--ak-ease) forwards;
  animation-delay: calc(var(--i, 0) * 0.045s + 0.1s);
}
@keyframes akCharIn {
  to { transform: translateY(0); opacity: 1; }
}
.ak-hero h1 {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 700;
  max-width: 14em;
  margin-bottom: 0.75rem;
}
.ak-hero__lead {
  font-size: 1rem;
  max-width: 28em;
  color: rgba(247, 244, 239, 0.82);
  margin-bottom: 0;
}
.ak-hero .ak-btn--ghost {
  border-color: rgba(247, 244, 239, 0.55);
  color: var(--ak-paper);
}
.ak-hero .ak-btn--ghost:hover {
  background: var(--ak-paper);
  color: var(--ak-ink);
  border-color: var(--ak-paper);
}

/* —— Page hero —— */
.ak-pagehero {
  position: relative;
  min-height: min(62vh, 560px);
  display: grid;
  align-items: end;
  color: var(--ak-paper);
  overflow: hidden;
}
.ak-pagehero__media {
  position: absolute;
  inset: 0;
}
.ak-pagehero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ak-pagehero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(18,18,18,0.82) 0%, rgba(18,18,18,0.4) 60%, rgba(18,18,18,0.2) 100%);
}
.ak-pagehero__copy {
  position: relative;
  z-index: 2;
  max-width: var(--ak-wide);
  width: 100%;
  margin: 0 auto;
  padding: 4rem 1.5rem 3.5rem;
}
.ak-pagehero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  max-width: 12em;
}
.ak-pagehero p {
  max-width: 32em;
  color: rgba(247, 244, 239, 0.8);
  margin: 0;
}
.ak-pagehero .ak-eyebrow { color: rgba(247, 244, 239, 0.55); }

/* —— Giant wordmark —— */
.ak-wordmark {
  font-family: var(--ak-font-display);
  font-weight: 800;
  font-size: clamp(5rem, 18vw, 14rem);
  line-height: 0.8;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ak-line-strong);
  user-select: none;
  pointer-events: none;
  margin: 0;
  overflow: hidden;
}
.ak-wordmark--solid {
  color: var(--ak-ink);
  -webkit-text-stroke: 0;
  opacity: 0.06;
}
.ak-wordmark--overlap {
  margin: -2rem 0 -1rem;
  transform: translateX(-2%);
}

/* —— Diagonal split —— */
.ak-diag {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 520px;
  position: relative;
}
.ak-diag--flip { direction: rtl; }
.ak-diag--flip > * { direction: ltr; }
.ak-diag__media {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
}
.ak-diag--flip .ak-diag__media {
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}
.ak-diag__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}
.ak-diag__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4.5rem);
  background: linear-gradient(135deg, var(--ak-white) 0%, var(--ak-paper) 100%);
}
.ak-diag__copy h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }

/* —— Reveal media (clip-path) —— */
/* Only hide when JS enables animation — otherwise images stay visible */
html.ak-anim [data-reveal] {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.1s var(--ak-ease);
}
html.ak-anim [data-reveal].is-in {
  clip-path: inset(0 0 0 0);
}
html.ak-anim [data-reveal="left"] { clip-path: inset(0 100% 0 0); }
html.ak-anim [data-reveal="left"].is-in { clip-path: inset(0 0 0 0); }
html.ak-anim [data-reveal="right"] { clip-path: inset(0 0 0 100%); }
html.ak-anim [data-reveal="right"].is-in { clip-path: inset(0 0 0 0); }

/* Keep diagonal shape through the reveal (generic inset would erase it) */
html.ak-anim .ak-diag__media[data-reveal="left"] {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
html.ak-anim .ak-diag__media[data-reveal="left"].is-in {
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
}
html.ak-anim .ak-diag__media[data-reveal="right"],
html.ak-anim .ak-diag--flip .ak-diag__media[data-reveal="right"] {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}
html.ak-anim .ak-diag__media[data-reveal="right"].is-in,
html.ak-anim .ak-diag--flip .ak-diag__media[data-reveal="right"].is-in {
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

html.ak-anim [data-fade] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ak-ease), transform 0.8s var(--ak-ease);
  transition-delay: calc(var(--d, 0) * 0.08s);
}
html.ak-anim [data-fade].is-in {
  opacity: 1;
  transform: none;
}
html.ak-anim [data-split] .ak-char {
  will-change: transform, opacity;
}

/* —— Numbered service list —— */
.ak-slist { border-top: 1px solid var(--ak-line); }
.ak-slist__row {
  display: grid;
  grid-template-columns: 4.5rem 1fr 1.1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--ak-line);
}
.ak-slist__num {
  font-family: var(--ak-font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--ak-indigo);
  letter-spacing: -0.03em;
}
.ak-slist__title {
  font-family: var(--ak-font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
}
.ak-slist__desc {
  color: var(--ak-graphite);
  margin: 0;
  font-size: 0.95rem;
}
.ak-slist__meta {
  font-family: var(--ak-font-latin);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}
.ak-slist__thumb {
  width: 120px;
  height: 80px;
  overflow: hidden;
  justify-self: end;
  background: var(--ak-mist);
}
.ak-slist__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ak-ease);
}
.ak-slist__row:hover .ak-slist__thumb img { transform: scale(1.06); }

/* —— Film strip —— */
.ak-film {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding: 0 1.5rem 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.ak-film figure {
  flex: 0 0 min(72vw, 380px);
  scroll-snap-align: start;
  margin: 0;
  position: relative;
}
.ak-film img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.ak-film figcaption {
  position: absolute;
  left: 0.85rem;
  bottom: 0.75rem;
  font-family: var(--ak-font-latin);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ak-paper);
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

/* —— Process —— */
.ak-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ak-line);
}
.ak-steps article {
  padding: 2rem 1.5rem 2rem 0;
  border-right: 1px solid var(--ak-line);
  padding-right: 1.5rem;
}
.ak-steps article:last-child { border-right: 0; }
.ak-steps__num {
  font-family: var(--ak-font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--ak-indigo);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}
.ak-steps h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.ak-steps p {
  color: var(--ak-graphite);
  font-size: 0.92rem;
  margin: 0;
}

/* —— Quotes —— */
.ak-voices {
  display: grid;
  gap: 2.5rem;
}
.ak-voices blockquote {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--ak-line);
}
.ak-voices blockquote:last-child { border-bottom: 0; padding-bottom: 0; }
.ak-voices__pic {
  width: 72px;
  height: 72px;
  overflow: hidden;
}
.ak-voices__pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.35);
}
.ak-voices p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin: 0 0 0.75rem;
}
.ak-voices cite {
  font-style: normal;
  font-family: var(--ak-font-display);
  font-weight: 700;
  display: block;
}
.ak-voices small {
  color: var(--ak-graphite);
  font-size: 0.85rem;
}

/* —— Pricing rows (editorial columns, not cards) —— */
.ak-price {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--ak-line);
  border-bottom: 1px solid var(--ak-line);
}
.ak-price article {
  padding: 2rem 1.75rem 2rem 0;
  border-right: 1px solid var(--ak-line);
  background: transparent;
  padding-right: 1.75rem;
}
.ak-price article:last-child { border-right: 0; }
.ak-price article:first-child { padding-left: 0; }
.ak-price article.is-hot {
  background: var(--ak-ink);
  color: var(--ak-paper);
  padding-left: 1.75rem;
  margin: -1px 0;
}
.ak-price h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-family: var(--ak-font-latin);
  letter-spacing: 0.04em;
}
.ak-price .price {
  font-family: var(--ak-font-display);
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  letter-spacing: -0.03em;
}
.ak-price p:last-child {
  margin: 0;
  color: var(--ak-graphite);
  font-size: 0.9rem;
}
.ak-price article.is-hot p:last-child { color: rgba(247,244,239,0.65); }

/* —— Areas —— */
.ak-areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.ak-areas__list {
  display: grid;
  gap: 0;
}
.ak-areas__list li {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--ak-line);
  font-size: 0.95rem;
}
.ak-areas__list strong {
  font-family: var(--ak-font-display);
  font-weight: 700;
}
.ak-areas__list span { color: var(--ak-graphite); }

/* —— Team —— */
.ak-team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ak-team article { display: grid; gap: 1rem; }
.ak-team__pic {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.ak-team__pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2);
  transition: filter 0.5s, transform 0.7s var(--ak-ease);
}
.ak-team article:hover .ak-team__pic img {
  filter: grayscale(0);
  transform: scale(1.03);
}
.ak-team h3 { font-size: 1.2rem; margin: 0 0 0.2rem; }
.ak-team span {
  display: block;
  font-size: 0.82rem;
  color: var(--ak-indigo);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: var(--ak-font-latin);
}
.ak-team p { margin: 0; color: var(--ak-graphite); font-size: 0.92rem; }

/* —— Notes / blog —— */
.ak-notes {
  display: grid;
  gap: 0;
}
.ak-notes article {
  display: grid;
  grid-template-columns: minmax(200px, 340px) 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--ak-line);
}
.ak-notes article:first-child { border-top: 1px solid var(--ak-line); }
.ak-notes__pic {
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--ak-mist);
}
.ak-notes__pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ak-ease);
}
.ak-notes article:hover .ak-notes__pic img { transform: scale(1.04); }
.ak-notes time {
  font-family: var(--ak-font-latin);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--ak-graphite);
  display: block;
  margin-bottom: 0.5rem;
}
.ak-notes h3 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}
.ak-notes p {
  margin: 0;
  color: var(--ak-graphite);
}
.ak-tag {
  display: inline-block;
  font-family: var(--ak-font-latin);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ak-indigo);
  margin-bottom: 0.4rem;
}

/* —— FAQ —— */
.ak-faq details {
  border-bottom: 1px solid var(--ak-line);
  padding: 1.1rem 0;
}
.ak-faq summary {
  cursor: pointer;
  font-family: var(--ak-font-display);
  font-weight: 700;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.ak-faq summary::-webkit-details-marker { display: none; }
.ak-faq summary::after {
  content: "+";
  font-family: var(--ak-font-latin);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--ak-indigo);
  flex-shrink: 0;
}
.ak-faq details[open] summary::after { content: "−"; }
.ak-faq details p {
  margin: 0.85rem 0 0;
  color: var(--ak-graphite);
  max-width: 40em;
}

/* —— Contact form —— */
.ak-contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}
.ak-form {
  display: grid;
  gap: 1.1rem;
  background: var(--ak-white);
  padding: 2rem;
  border: 1px solid var(--ak-line);
}
.ak-form label {
  display: grid;
  gap: 0.4rem;
}
.ak-form label span {
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--ak-font-latin);
  letter-spacing: 0.04em;
}
.ak-form input,
.ak-form textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--ak-line-strong);
  background: var(--ak-paper);
  border-radius: 2px;
  color: var(--ak-ink);
  transition: border-color 0.25s, background 0.25s;
}
.ak-form input:focus,
.ak-form textarea:focus {
  outline: none;
  border-color: var(--ak-indigo);
  background: var(--ak-white);
}
.ak-form em {
  font-style: normal;
  font-size: 0.8rem;
  color: #B42318;
}
.ak-alert {
  padding: 1rem 1.15rem;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  border-radius: 2px;
}
.ak-alert--ok {
  background: rgba(43, 77, 255, 0.08);
  border: 1px solid rgba(43, 77, 255, 0.35);
  color: var(--ak-indigo-deep);
}
.ak-alert--err {
  background: rgba(180, 35, 24, 0.06);
  border: 1px solid rgba(180, 35, 24, 0.3);
  color: #B42318;
}
.ak-map {
  aspect-ratio: 16/10;
  overflow: hidden;
  border: 1px solid var(--ak-line);
}
.ak-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.3) contrast(1.05);
}

/* —— Before / After focus —— */
.ak-ba {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}
.ak-ba--flip {
  grid-template-columns: 1.1fr 0.9fr;
}
.ak-ba--flip > * {
  direction: ltr;
}
.ak-ba__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4vw, 3.5rem) 0;
}
.ak-ba__copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.6rem;
}
.ak-ba__copy .ak-lead {
  margin-bottom: 1rem;
}
.ak-ba__price {
  font-family: var(--ak-font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
  color: var(--ak-indigo);
}
.ak-ba__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
}
.ak-ba__pane {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.ak-ba__pane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ak-ease);
}
.ak-ba__pane:hover img {
  transform: scale(1.04);
}
.ak-ba__pane span {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-family: var(--ak-font-latin);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ak-paper);
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
  background: rgba(18,18,18,0.6);
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}
.ak-ba__pane.is-after::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--ak-indigo);
  pointer-events: none;
}

/* Dark theme overrides for ink section */
.ak-section--ink .ak-ba {
  color: var(--ak-paper);
}
.ak-section--ink .ak-ba__copy .ak-eyebrow {
  color: rgba(247, 244, 239, 0.5);
}
.ak-section--ink .ak-ba__copy .ak-lead {
  color: rgba(247, 244, 239, 0.65);
}
.ak-section--ink .ak-ba__price {
  color: var(--ak-indigo);
}
.ak-section--ink .ak-ba__pane span {
  background: rgba(247, 244, 239, 0.15);
  color: rgba(247, 244, 239, 0.9);
}
.ak-why {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--ak-line);
}
.ak-why article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 2rem 1.75rem 2rem 0;
  border-bottom: 1px solid var(--ak-line);
  border-right: 1px solid var(--ak-line);
  background: transparent;
  padding-right: 1.75rem;
}
.ak-why article:nth-child(2n) { border-right: 0; padding-left: 1.75rem; }
.ak-why__num {
  font-family: var(--ak-font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--ak-indigo);
}
.ak-why h3 { font-size: 1.15rem; margin: 0 0 0.35rem; }
.ak-why p { margin: 0; color: var(--ak-graphite); font-size: 0.92rem; }

.ak-promise {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.ak-promise span {
  font-family: var(--ak-font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--ak-indigo);
  display: block;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.ak-promise h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.ak-promise p { margin: 0; color: var(--ak-graphite); }

/* —— Timeline —— */
.ak-timeline {
  display: grid;
  gap: 0;
  border-left: 2px solid var(--ak-ink);
  padding-left: 2rem;
}
.ak-timeline li {
  position: relative;
  padding: 0 0 2rem;
}
.ak-timeline li::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 0.45rem;
  width: 10px;
  height: 10px;
  background: var(--ak-indigo);
  transform: translateX(-6px);
}
.ak-timeline strong {
  font-family: var(--ak-font-display);
  font-size: 1.4rem;
  display: block;
  margin-bottom: 0.25rem;
}
.ak-timeline p { margin: 0; color: var(--ak-graphite); }

/* —— Finale CTA —— */
.ak-finale {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--ak-paper);
  overflow: hidden;
}
.ak-finale__bg {
  position: absolute;
  inset: 0;
  background: var(--ak-ink);
}
.ak-finale__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ak-finale__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 18, 0.72);
}
.ak-finale__in {
  position: relative;
  z-index: 1;
  padding: 4rem 1.5rem;
  max-width: 36rem;
}
.ak-finale h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 0.75rem;
}
.ak-finale p {
  color: rgba(247, 244, 239, 0.78);
  margin-bottom: 1.5rem;
}

/* —— Channels (contact) —— */
.ak-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--ak-line);
  border-bottom: 1px solid var(--ak-line);
}
.ak-channels article {
  padding: 1.75rem 1.75rem 1.75rem 0;
  border-right: 1px solid var(--ak-line);
  padding-right: 1.75rem;
}
.ak-channels article:last-child { border-right: 0; }
.ak-channels h3 {
  font-size: 0.85rem;
  font-family: var(--ak-font-latin);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ak-graphite);
  margin-bottom: 0.6rem;
}
.ak-channels a {
  font-family: var(--ak-font-display);
  font-weight: 700;
  font-size: 1.15rem;
}
.ak-channels p { margin: 0.4rem 0 0; color: var(--ak-graphite); font-size: 0.9rem; }

/* —— Featured service split —— */
.ak-feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  min-height: 480px;
}
.ak-feature--flip { grid-template-columns: 0.9fr 1.1fr; }
.ak-feature__media { overflow: hidden; }
.ak-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}
.ak-feature__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4vw, 3.5rem);
  background: var(--ak-ink);
  color: var(--ak-paper);
}
.ak-feature__copy .ak-eyebrow { color: rgba(247,244,239,0.5); }
.ak-feature__copy p { color: rgba(247,244,239,0.75); }
.ak-feature__copy .price {
  font-family: var(--ak-font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ak-paper);
  margin: 0.5rem 0 1.25rem;
}

/* —— Topic rail —— */
.ak-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--ak-line);
  border-bottom: 1px solid var(--ak-line);
  font-family: var(--ak-font-latin);
  font-size: 0.85rem;
  font-weight: 600;
}
.ak-topics span { color: var(--ak-graphite); }
.ak-topics b { color: var(--ak-indigo); font-weight: 700; }

/* —— Quote banner —— */
.ak-pullquote {
  font-family: var(--ak-font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.35;
  max-width: 16em;
  margin: 0;
  letter-spacing: -0.02em;
}
.ak-pullquote::before {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--ak-indigo);
  margin-bottom: 1.25rem;
}

/* —— Footer —— */
.ak-foot {
  background: var(--ak-ink);
  color: rgba(247, 244, 239, 0.78);
  padding: 4.5rem 1.5rem 1.5rem;
}
.ak-foot__grid {
  max-width: var(--ak-wide);
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 0.8fr;
  gap: 2.5rem;
}
.ak-foot__brand {
  font-family: var(--ak-font-display);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--ak-paper);
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
}
.ak-foot__desc { margin: 0 0 0.75rem; font-size: 0.92rem; }
.ak-foot__tag {
  font-family: var(--ak-font-display);
  font-weight: 700;
  color: var(--ak-indigo);
  margin: 0;
}
.ak-foot h3 {
  font-family: var(--ak-font-latin);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, 0.45);
  margin-bottom: 1rem;
}
.ak-foot ul { display: grid; gap: 0.45rem; }
.ak-foot a { color: rgba(247, 244, 239, 0.78); }
.ak-foot a:hover { color: var(--ak-white); }
.ak-foot address p { margin: 0 0 0.4rem; font-size: 0.9rem; }
.ak-foot__bar {
  max-width: var(--ak-wide);
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(247, 244, 239, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(247, 244, 239, 0.45);
}
.ak-foot__bar p { margin: 0; }

/* —— Principles (about) —— */
.ak-principles {
  display: grid;
  gap: 0;
}
.ak-principles li {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--ak-line);
}
.ak-principles b {
  font-family: var(--ak-font-display);
  font-size: 1.5rem;
  color: var(--ak-indigo);
}
.ak-principles h3 { margin: 0 0 0.35rem; font-size: 1.2rem; }
.ak-principles p { margin: 0; color: var(--ak-graphite); }

/* —— Reduced motion —— */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-fade], [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
  .ak-hero__brand .ak-char {
    transform: none !important;
    opacity: 1 !important;
    animation: none !important;
  }
  .ak-hero__media,
  .ak-hero__media img { transform: none !important; animation: none !important; }
  .ak-btn:hover { animation: none !important; }
}

/* —— Responsive —— */
@media (max-width: 1024px) {
  .ak-slist__row {
    grid-template-columns: 3rem 1fr auto;
    gap: 0.75rem 1rem;
  }
  .ak-slist__desc { grid-column: 2 / -1; }
  .ak-slist__meta { grid-column: 2; }
  .ak-slist__thumb {
    width: 96px;
    height: 64px;
    grid-column: 3;
    grid-row: 1 / span 2;
    align-self: center;
  }
  .ak-steps { grid-template-columns: 1fr 1fr; }
  .ak-steps article:nth-child(2) { border-right: 0; }
  .ak-steps article:nth-child(1),
  .ak-steps article:nth-child(2) {
    border-bottom: 1px solid var(--ak-line);
    padding-bottom: 1.75rem;
  }
  .ak-foot__grid { grid-template-columns: 1fr 1fr; }
  .ak-feature,
  .ak-feature--flip { grid-template-columns: 1fr; }
  .ak-areas { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .ak-nav__links,
  .ak-btn--nav { display: none; }
  .ak-burger { display: flex; }
  .ak-diag,
  .ak-diag--flip {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .ak-diag__media,
  .ak-diag--flip .ak-diag__media,
  html.ak-anim .ak-diag__media[data-reveal="left"],
  html.ak-anim .ak-diag__media[data-reveal="left"].is-in,
  html.ak-anim .ak-diag__media[data-reveal="right"],
  html.ak-anim .ak-diag__media[data-reveal="right"].is-in,
  html.ak-anim .ak-diag--flip .ak-diag__media[data-reveal="right"],
  html.ak-anim .ak-diag--flip .ak-diag__media[data-reveal="right"].is-in {
    clip-path: none;
    min-height: 220px;
  }
  .ak-diag__media img { min-height: 220px; }
  .ak-diag__copy { padding: 1.5rem 1.15rem 1.75rem; }
  .ak-price { grid-template-columns: 1fr; }
  .ak-price article {
    border-right: 0;
    border-bottom: 1px solid var(--ak-line);
  }
  .ak-price article:last-child { border-bottom: 0; }
  .ak-team { grid-template-columns: 1fr; max-width: 360px; }
  .ak-notes article { grid-template-columns: 1fr; gap: 1rem; }
  .ak-notes__pic { max-width: 100%; }
  .ak-slist__row {
    grid-template-columns: 2.5rem 1fr;
  }
  .ak-slist__thumb {
    grid-column: 2;
    grid-row: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    justify-self: stretch;
    margin-top: 0.35rem;
  }
  .ak-slist__desc,
  .ak-slist__meta { grid-column: 2; }
  .ak-contact { grid-template-columns: 1fr; }
  .ak-channels { grid-template-columns: 1fr; }
  .ak-channels article {
    border-right: 0;
    border-bottom: 1px solid var(--ak-line);
  }
  .ak-channels article:last-child { border-bottom: 0; }
  .ak-why { grid-template-columns: 1fr; }
  .ak-promise { grid-template-columns: 1fr; gap: 1.75rem; }
  .ak-hero {
    min-height: min(78svh, 640px);
    align-items: end;
  }
  .ak-hero__copy {
    padding: 2rem 1.15rem 2.35rem;
  }
  .ak-hero__brand {
    font-size: clamp(3.2rem, 16vw, 5.2rem);
    margin-bottom: 0.85rem;
  }
  .ak-hero h1 { font-size: clamp(1.35rem, 5.2vw, 1.85rem); max-width: none; }
  .ak-hero__lead { max-width: none; font-size: 0.95rem; }
  .ak-section { padding: 2.5rem 0; }
  .ak-section--tight { padding: 1.5rem 0; }
  .ak-wrap,
  .ak-wrap--wide { padding-left: 1.15rem; padding-right: 1.15rem; }
  .ak-stats {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
  }
  .ak-stats article { padding: 1.35rem 0.65rem 1.2rem; }
  .ak-stats__num { font-size: clamp(1.45rem, 6vw, 2rem); }
  .ak-stats__label { font-size: 0.78rem; }
  .ak-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .ak-actions .ak-btn,
  .ak-hero .ak-actions .ak-btn {
    width: 100%;
    min-height: 48px;
  }
  .ak-film {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
    gap: 0.6rem;
  }
  .ak-film figure {
    flex: 0 0 min(86vw, 340px);
  }
  .ak-film img { height: 200px; }
  .ak-marquee { padding: 1.25rem 0; }
  .ak-wordmark--overlap { display: none; }
  .ak-foot__grid { grid-template-columns: 1fr; gap: 2rem; }
  .ak-ba,
  .ak-ba--flip {
    grid-template-columns: 1fr;
  }
  .ak-ba__media {
    grid-template-columns: 1fr 1fr;
    margin-top: 1.25rem;
  }
  .ak-finale__in { padding: 2.5rem 1.15rem; }
}

@media (max-width: 520px) {
  .ak-steps { grid-template-columns: 1fr; }
  .ak-steps article {
    border-right: 0 !important;
    border-bottom: 1px solid var(--ak-line);
    padding: 1.5rem 0;
  }
  .ak-steps article:last-child { border-bottom: 0; }
  .ak-areas__list li { grid-template-columns: 1fr; gap: 0.25rem; }
  .ak-film img { height: 220px; }
  .ak-form { padding: 1.25rem; }
  .ak-voices blockquote { grid-template-columns: 1fr; }
  .ak-stats { grid-template-columns: 1fr; }
  .ak-stats article {
    border-right: 0;
    border-bottom: 1px solid var(--ak-line-strong);
    padding: 2rem 1.25rem;
  }
  .ak-stats article:last-child { border-bottom: 0; }
  .ak-marquee__track { animation-duration: 25s; }
}

/* =========================================================
   kazaris HOME redesign — mist teal · clear living
   ========================================================= */
body[data-page="index"] {
  --kz-ink: #102220;
  --kz-teal: #0E6B66;
  --kz-teal-deep: #0B3D3A;
  --kz-mist: #E8F2F0;
  --kz-foam: #F5FAF8;
  --kz-stone: #5A6B68;
  --kz-line: rgba(16, 34, 32, 0.12);
  --kz-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --kz-pad: clamp(1.15rem, 4vw, 2.75rem);
  --kz-max: 1180px;
  --ak-indigo: #0E6B66;
  --ak-indigo-deep: #0B3D3A;
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  background:
    radial-gradient(900px 480px at 90% -5%, rgba(14, 107, 102, 0.08), transparent 55%),
    radial-gradient(700px 420px at 0% 40%, rgba(16, 34, 32, 0.04), transparent 50%),
    linear-gradient(180deg, #F5FAF8 0%, #EEF5F3 45%, #F5FAF8 100%);
}
body[data-page="index"] h1,
body[data-page="index"] h2,
body[data-page="index"] h3 {
  font-family: "Syne", "Noto Sans JP", sans-serif;
}
body[data-page="index"] .ak-nav {
  background: rgba(245, 250, 248, 0.78);
}
body[data-page="index"] .ak-nav.is-scrolled {
  background: rgba(245, 250, 248, 0.95);
}

.kz-wrap { width: min(100% - 2 * var(--kz-pad), var(--kz-max)); margin-inline: auto; }
.kz-k {
  display: inline-block;
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--kz-teal);
  margin-bottom: 0.65rem;
}
.kz-head { margin-bottom: 2rem; max-width: 36rem; }
.kz-head h2 { font-size: clamp(1.75rem, 4vw, 2.6rem); margin: 0 0 0.5rem; color: var(--kz-ink); }
.kz-head p { margin: 0; color: var(--kz-stone); line-height: 1.7; }
.kz-head--light h2 { color: #F5FAF8; }
.kz-head--light p { color: rgba(245, 250, 248, 0.7); }
.kz-head--light .kz-k { color: #7DCCC6; }
.kz-lede { color: var(--kz-stone); margin: 0 0 1.25rem; }
.kz-more { margin: 2rem 0 0; }

.kz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.45rem;
  border-radius: 999px;
  border: 1.5px solid var(--kz-teal);
  background: var(--kz-teal);
  color: #fff;
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.35s var(--kz-ease), background 0.25s, color 0.25s, box-shadow 0.35s;
}
.kz-btn:hover { background: var(--kz-teal-deep); border-color: var(--kz-teal-deep); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(14, 107, 102, 0.28); }
.kz-btn--light { background: #fff; color: var(--kz-teal-deep); border-color: #fff; }
.kz-btn--light:hover { background: var(--kz-mist); color: var(--kz-teal-deep); border-color: var(--kz-mist); }
.kz-btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.kz-btn--ghost:hover { background: rgba(255,255,255,0.12); color: #fff; border-color: #fff; }
.kz-btn--line { background: transparent; color: var(--kz-teal-deep); border-color: var(--kz-line); }
.kz-btn--line:hover { border-color: var(--kz-teal); color: var(--kz-teal); background: transparent; }
.kz-btn--pulse { animation: kzPulse 2.4s var(--kz-ease) infinite; }
@keyframes kzPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.35); }
  50% { box-shadow: 0 0 0 12px rgba(255,255,255,0); }
}

/* Hero */
.kz-hero {
  position: relative;
  min-height: calc(100svh - var(--ak-nav-h));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}
.kz-hero__media,
.kz-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kz-hero__media img {
  transform: scale(1.06);
  animation: kzKen 18s ease-in-out infinite alternate;
}
@keyframes kzKen {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.14) translate3d(-1.5%, -1%, 0); }
}
.kz-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 61, 58, 0.25) 0%, rgba(11, 61, 58, 0.55) 45%, rgba(8, 32, 30, 0.88) 100%),
    linear-gradient(90deg, rgba(8, 32, 30, 0.45), transparent 55%);
  z-index: 1;
}
.kz-hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.08;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.kz-hero__copy {
  position: relative;
  z-index: 3;
  width: min(100% - 2 * var(--kz-pad), var(--kz-max));
  margin: 0 auto;
  padding: clamp(2.5rem, 8vw, 5rem) 0 clamp(3rem, 8vw, 4.5rem);
}
.kz-hero__brand {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(3.8rem, 14vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  margin: 0 0 1rem;
  color: #fff;
}
.kz-hero__brand .ak-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.55em);
}
.js .kz-hero.is-ready .kz-hero__brand .ak-char {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s var(--kz-ease), transform 0.7s var(--kz-ease);
  transition-delay: calc(var(--i, 0) * 45ms);
}
.kz-hero h1 {
  font-size: clamp(1.45rem, 3.5vw, 2.15rem);
  font-weight: 700;
  max-width: 16ch;
  margin: 0 0 0.85rem;
  color: #fff;
}
.kz-hero__lead {
  max-width: 34ch;
  margin: 0 0 1.5rem;
  color: rgba(255,255,255,0.88);
  font-size: 1.02rem;
  line-height: 1.75;
}
.kz-hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.kz-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  z-index: 3;
  width: 28px;
  height: 44px;
  margin-left: -14px;
  border: 1.5px solid rgba(255,255,255,0.45);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
}
.kz-hero__scroll span {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: #fff;
  animation: kzScroll 1.6s var(--kz-ease) infinite;
}
@keyframes kzScroll {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* Room strip */
.kz-strip {
  overflow: hidden;
  background: var(--kz-teal-deep);
  color: rgba(245, 250, 248, 0.85);
  padding: 0.95rem 0;
}
.kz-strip__track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: kzMarquee 32s linear infinite;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}
.kz-strip__track span { white-space: nowrap; }
@keyframes kzMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Stats */
.kz-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--kz-line);
  background: var(--kz-foam);
}
.kz-stats article {
  text-align: center;
  padding: 1.75rem 1rem;
  border-right: 1px solid var(--kz-line);
}
.kz-stats article:last-child { border-right: 0; }
.kz-stats__num {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0 0 0.25rem;
  letter-spacing: -0.04em;
  color: var(--kz-ink);
}
.kz-stats__num small { font-size: 0.55em; color: var(--kz-teal); margin-left: 0.1em; }
.kz-stats__label { margin: 0; color: var(--kz-stone); font-size: 0.88rem; font-weight: 500; }

/* Intro */
.kz-intro {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: min(72vh, 640px);
}
.kz-intro__media { overflow: hidden; min-height: 320px; }
.kz-intro__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
  transition: transform 1.2s var(--kz-ease);
}
.kz-intro__media.is-in img,
.kz-intro__media:hover img { transform: scale(1.04); }
.kz-intro__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 3.5rem) var(--kz-pad);
  background: #fff;
}
.kz-intro__copy h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); color: var(--kz-ink); }
.kz-intro__copy p { color: var(--kz-stone); margin: 0 0 1.5rem; line-height: 1.8; }

.kz-sec { padding: clamp(3rem, 7vw, 5rem) 0; }
.kz-sec--mist { background: var(--kz-mist); }

/* Service mosaic */
.kz-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.kz-tile {
  display: grid;
  grid-template-rows: auto 1fr;
  background: #fff;
  overflow: hidden;
  border: 1px solid var(--kz-line);
  transition: transform 0.4s var(--kz-ease), box-shadow 0.4s;
  color: inherit;
}
.kz-tile:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(16, 34, 32, 0.1); color: inherit; }
.kz-tile__media { aspect-ratio: 4 / 3; overflow: hidden; }
.kz-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--kz-ease);
}
.kz-tile:hover .kz-tile__media img { transform: scale(1.06); }
.kz-tile__body { padding: 1.15rem 1.2rem 1.35rem; display: grid; gap: 0.35rem; }
.kz-tile__num {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--kz-teal);
}
.kz-tile__body h3 { margin: 0; font-size: 1.1rem; color: var(--kz-ink); }
.kz-tile__body p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--kz-stone);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.kz-tile__body em {
  font-style: normal;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--kz-teal-deep);
  margin-top: 0.35rem;
}

/* Focus before/after */
.kz-focus {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: #fff;
  border-block: 1px solid var(--kz-line);
}
.kz-focus__media { padding: clamp(1.25rem, 3vw, 2rem); }
.kz-focus__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  height: 100%;
  min-height: 360px;
}
.kz-focus__pair figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  min-height: 280px;
}
.kz-focus__pair img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}
.kz-focus__pair figcaption {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  background: rgba(11, 61, 58, 0.85);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
}
.kz-focus__pair .is-after figcaption { background: var(--kz-teal); }
.kz-focus__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4vw, 3rem) var(--kz-pad) clamp(2rem, 4vw, 3rem) 0;
}
.kz-focus__copy h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--kz-ink); }
.kz-focus__copy p { color: var(--kz-stone); margin: 0 0 1rem; }
.kz-focus__price {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--kz-teal) !important;
  margin-bottom: 1.25rem !important;
}

/* Steps */
.kz-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.kz-steps li {
  background: #fff;
  border: 1px solid var(--kz-line);
  padding: 1.35rem 1.2rem 1.5rem;
  transition: transform 0.35s var(--kz-ease);
}
.kz-steps li:hover { transform: translateY(-3px); }
.kz-steps b {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 1.6rem;
  color: var(--kz-teal);
  margin-bottom: 0.65rem;
}
.kz-steps h3 { margin: 0 0 0.4rem; font-size: 1.05rem; color: var(--kz-ink); }
.kz-steps p { margin: 0; font-size: 0.88rem; color: var(--kz-stone); line-height: 1.65; }

/* Why */
.kz-why {
  background:
    radial-gradient(600px 300px at 80% 0%, rgba(125, 204, 198, 0.18), transparent 50%),
    var(--kz-teal-deep);
  color: #F5FAF8;
  padding: clamp(3rem, 7vw, 5rem) 0;
}
.kz-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.kz-why__grid article {
  padding: 1.25rem 1rem 1.35rem;
  border-top: 2px solid rgba(125, 204, 198, 0.45);
}
.kz-why__grid span {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  color: #7DCCC6;
  font-size: 0.85rem;
}
.kz-why__grid h3 { margin: 0.5rem 0 0.4rem; font-size: 1.05rem; color: #fff; }
.kz-why__grid p { margin: 0; font-size: 0.88rem; color: rgba(245, 250, 248, 0.7); line-height: 1.65; }

/* Gallery */
.kz-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  width: min(100% - 2 * var(--kz-pad), var(--kz-max));
  margin: 0 auto;
}
.kz-gallery figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.kz-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--kz-ease);
}
.kz-gallery figure:hover img { transform: scale(1.05); }
.kz-gallery figcaption {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.45);
}

/* Voices */
.kz-voices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.kz-voices blockquote {
  margin: 0;
  background: #fff;
  border: 1px solid var(--kz-line);
  padding: 1.35rem 1.25rem;
}
.kz-voices blockquote > p {
  margin: 0 0 1.15rem;
  color: var(--kz-ink);
  font-size: 0.95rem;
  line-height: 1.75;
}
.kz-voices footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.kz-voices__pic {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.kz-voices__pic img { width: 100%; height: 100%; object-fit: cover; }
.kz-voices cite { display: block; font-style: normal; font-weight: 700; font-size: 0.9rem; color: var(--kz-ink); }
.kz-voices small { color: var(--kz-stone); font-size: 0.78rem; }

/* Areas + pricing */
.kz-split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.kz-areas { margin: 0; padding: 0; list-style: none; display: grid; gap: 0.75rem; }
.kz-areas li {
  display: grid;
  gap: 0.15rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--kz-line);
}
.kz-areas strong { color: var(--kz-ink); }
.kz-areas span { color: var(--kz-stone); font-size: 0.9rem; }
.kz-price { display: grid; gap: 0.75rem; }
.kz-price article {
  position: relative;
  background: #fff;
  border: 1px solid var(--kz-line);
  padding: 1.15rem 1.25rem;
  transition: border-color 0.25s, transform 0.3s var(--kz-ease);
}
.kz-price article:hover { transform: translateX(4px); border-color: var(--kz-teal); }
.kz-price article.is-hot {
  background: var(--kz-teal-deep);
  border-color: var(--kz-teal-deep);
  color: #fff;
}
.kz-price article.is-hot h3,
.kz-price article.is-hot .kz-price__num { color: #fff; }
.kz-price article.is-hot p { color: rgba(255,255,255,0.75); }
.kz-price em {
  position: absolute;
  top: 0.85rem;
  right: 1rem;
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: #7DCCC6;
  color: var(--kz-teal-deep);
  padding: 0.2rem 0.5rem;
}
.kz-price h3 { margin: 0 0 0.25rem; font-size: 1rem; color: var(--kz-ink); }
.kz-price__num {
  margin: 0 0 0.25rem !important;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--kz-teal);
}
.kz-price p { margin: 0; font-size: 0.85rem; color: var(--kz-stone); }

/* Notes */
.kz-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.kz-note {
  display: grid;
  gap: 0.9rem;
  color: inherit;
  background: #fff;
  border: 1px solid var(--kz-line);
  overflow: hidden;
  transition: transform 0.35s var(--kz-ease);
}
.kz-note:hover { transform: translateY(-3px); color: inherit; }
.kz-note__media { aspect-ratio: 16 / 10; overflow: hidden; }
.kz-note__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--kz-ease); }
.kz-note:hover .kz-note__media img { transform: scale(1.05); }
.kz-note > div:last-child { padding: 0 1.1rem 1.25rem; }
.kz-note__meta { font-size: 0.75rem; color: var(--kz-teal); font-weight: 600; letter-spacing: 0.04em; }
.kz-note h3 { margin: 0.35rem 0; font-size: 1.05rem; color: var(--kz-ink); }
.kz-note p { margin: 0; font-size: 0.88rem; color: var(--kz-stone); line-height: 1.65; }

/* CTA */
.kz-cta {
  position: relative;
  min-height: min(58vh, 480px);
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.kz-cta__media,
.kz-cta__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kz-cta__media img { animation: kzKen 16s ease-in-out infinite alternate; }
.kz-cta__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 61, 58, 0.55), rgba(8, 32, 30, 0.82));
  z-index: 1;
}
.kz-cta__in {
  position: relative;
  z-index: 2;
  padding: 3rem var(--kz-pad);
  max-width: 28rem;
}
.kz-cta__in .kz-k { color: #7DCCC6; }
.kz-cta__in h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); color: #fff; margin: 0 0 0.65rem; }
.kz-cta__in p { color: rgba(255,255,255,0.85); margin: 0 0 1.35rem; }

/* Fade / reveal polish for home */
body[data-page="index"] .js [data-fade] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--kz-ease), transform 0.7s var(--kz-ease);
  transition-delay: calc(var(--d, 0) * 70ms);
}
body[data-page="index"] .js [data-fade].is-in {
  opacity: 1;
  transform: none;
}
body[data-page="index"] .js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s var(--kz-ease), transform 0.8s var(--kz-ease);
}
body[data-page="index"] .js [data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* Mobile */
@media (max-width: 980px) {
  .kz-mosaic,
  .kz-steps,
  .kz-why__grid,
  .kz-gallery,
  .kz-voices,
  .kz-notes { grid-template-columns: 1fr 1fr; }
  .kz-intro,
  .kz-focus,
  .kz-split { grid-template-columns: 1fr; }
  .kz-focus__copy { padding: 1.75rem var(--kz-pad) 2.25rem; }
  .kz-intro__copy { padding: 2rem var(--kz-pad); }
}
@media (max-width: 720px) {
  .kz-hero { min-height: min(86svh, 700px); }
  .kz-hero__brand { font-size: clamp(3.2rem, 18vw, 5.5rem); }
  .kz-hero__actions { flex-direction: column; align-items: stretch; }
  .kz-hero__actions .kz-btn { width: 100%; }
  .kz-stats { grid-template-columns: repeat(3, 1fr); }
  .kz-stats article { padding: 1.25rem 0.5rem; }
  .kz-stats__num { font-size: 1.35rem; }
  .kz-stats__label { font-size: 0.75rem; }
  .kz-mosaic,
  .kz-steps,
  .kz-why__grid,
  .kz-gallery,
  .kz-voices,
  .kz-notes { grid-template-columns: 1fr; }
  .kz-focus__pair { min-height: 220px; }
  .kz-focus__pair figure,
  .kz-focus__pair img { min-height: 200px; }
  .kz-sec { padding: 2.5rem 0; }
  .kz-cta { min-height: 420px; }
  .kz-cta__in .kz-btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .kz-hero__media img,
  .kz-cta__media img,
  .kz-strip__track,
  .kz-btn--pulse,
  .kz-hero__scroll span { animation: none !important; }
}
