/* ==================================================
   01. Design tokens and global defaults
   ================================================== */
:root {
  --bg: #faf8f6;
  --surface: #f2edea;
  --surface-2: #ffffff;
  --text: #1f1a22;
  --body-text: #393239;
  --muted: #625a61;
  --line: #d8d0d3;
  --strong-line: #beb3b8;
  --berry: #d94f86;
  --berry-strong: #b93870;
  --violet: #6c5fd7;
  --violet-text: #6c5fd7;
  --violet-deep: #6c5fd7;
  --sky: #59b7e8;
  --sky-text: #1f749b;
  --support-lavender: #a895f3;
  --champagne: #f06b9e;
  --taupe-accent: #b93870;
  --status-open: #8edb8a;
  --status-open-text: #317a3f;
  --status-open-bg: #f2fbf2;
  --status-open-line: #b8e5ba;
  --light-bg: #faf8f6;
  --light-bg-soft: #f2edea;
  --light-text: #1f1a22;
  --light-body: #393239;
  --light-muted: #625a61;
  --light-line: #d8d0d3;
  --dark-bg: #19151b;
  --dark-surface: #211b23;
  --dark-text: #ffffff;
  --dark-body: #e3dde1;
  --dark-muted: #bfb5bc;
  --dark-line: rgba(255, 255, 255, 0.18);
  --dark-accent: #d94f86;
  --dark-violet: #a895f3;
  --dark-price: #ffffff;
  --ink: #1f1a22;
  --dark-ink: #19151b;
  --header-height: 76px;
  --page-gutter: clamp(22px, 6vw, 96px);
  --section-space: clamp(88px, 12vw, 168px);
  --body-copy-size: 16px;
  --detail-copy-size: 15px;
  --meta-copy-size: 12px;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", "Noto Sans JP", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--light-text);
  color: var(--light-bg);
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }

/* ==================================================
   02. Shared header and navigation
   ================================================== */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  padding: 0 var(--page-gutter);
  display: flex;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid rgba(24, 20, 25, 0.1);
  background: rgba(250, 248, 246, 0.94);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: max-content;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.brand-mark {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--berry-strong);
  color: #ffffff;
  font: italic 700 18px/1 Georgia, serif;
}
.brand small {
  margin: 7px 0 0 2px;
  color: var(--muted);
  font-size: 7px;
  letter-spacing: 0.17em;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  color: #2d272d;
}
.desktop-nav a,
.header-cta {
  position: relative;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--berry);
  transition: transform 180ms ease;
}
.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}
.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a[aria-current="page"] { color: var(--berry-strong); }
.header-cta {
  margin-left: 12px;
  padding: 11px 0 11px 18px;
  border-left: 1px solid transparent;
  background: var(--berry-strong);
  color: #ffffff;
}
.header-cta:hover { background: var(--violet-text); color: #ffffff; }
.header-cta span { color: #ffffff; font-size: 15px; }

.menu-toggle,
.mobile-menu { display: none; }

/* ==================================================
   03. TOP: Hero
   ================================================== */
.hero {
  position: relative;
  min-height: max(720px, 100svh);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: calc(var(--header-height) + clamp(70px, 10vw, 130px)) var(--page-gutter) clamp(64px, 9vw, 112px);
  isolation: isolate;
  background: var(--light-bg);
}
.hero-media,
.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
}
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(250, 248, 246, 0.98) 0%, rgba(250, 248, 246, 0.84) 37%, rgba(250, 248, 246, 0.12) 68%, rgba(250, 248, 246, 0.04) 100%),
    linear-gradient(0deg, rgba(250, 248, 246, 0.5) 0%, transparent 48%);
}
.hero-content { width: min(710px, 58vw); }
.eyebrow {
  margin: 0 0 18px;
  color: var(--sky-text);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.booking-status {
  width: max-content;
  max-width: 100%;
  margin: 0 0 34px;
  padding: 7px 10px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 7px;
  border: 1px solid var(--status-open-line);
  background: var(--status-open-bg);
  color: var(--light-text);
  font-size: 10px;
  letter-spacing: 0.04em;
}
.booking-status-dot {
  flex: 0 0 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--status-open);
  box-shadow:
    0 0 0 3px rgba(142, 219, 138, 0.2),
    0 0 10px rgba(142, 219, 138, 0.42);
}
.booking-status b,
.booking-status [data-commission-label],
.booking-status small { white-space: nowrap; }
.booking-status b { color: var(--status-open-text); letter-spacing: 0.14em; }
.booking-status [data-commission-label] { color: var(--light-text); }
.booking-status small {
  margin-left: 2px;
  padding-left: 8px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
}
.hero-studio {
  margin: 0 0 10px;
  color: var(--light-text);
  font-size: clamp(15px, 1.5vw, 21px);
  font-weight: 500;
}
.hero h1,
.section h2,
.final-cta h2,
.page-hero h1 {
  margin: 0;
  font-size: clamp(48px, 6.3vw, 100px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.075em;
}
.hero h1 em {
  color: var(--berry);
  font-family: Georgia, "Noto Serif JP", serif;
  font-weight: 400;
}
.hero h1 { color: var(--light-text); }
.hero-text {
  max-width: 560px;
  margin: 27px 0 32px;
  color: var(--light-body);
  font-size: 14px;
  line-height: 1.95;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 48px;
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.button-primary { background: var(--berry-strong); color: #ffffff; }
.button-primary:hover { background: #982653; color: #ffffff; }
.button-outline {
  border-color: var(--strong-line);
  background: #ffffff;
  color: var(--light-text);
}
.button-outline:hover { border-color: var(--violet-text); color: var(--violet-text); }
.button-dark { background: var(--dark-ink); color: var(--light-bg); }
.button-dark:hover { background: var(--violet-deep); color: var(--light-bg); }
.hero-caption {
  position: absolute;
  right: var(--page-gutter);
  bottom: clamp(68px, 9vw, 115px);
  margin: 0;
  writing-mode: vertical-rl;
  color: rgba(24, 20, 25, 0.62);
  font-size: 9px;
  letter-spacing: 0.25em;
}

/* ==================================================
   04. TOP: Marquee and featured works
   ================================================== */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--surface);
}
.marquee div {
  width: max-content;
  padding: 13px 0;
  display: flex;
  gap: 28px;
  animation: marquee 28s linear infinite;
  color: var(--text);
  font-size: 11px;
  letter-spacing: 0.13em;
}
.marquee i { color: var(--berry-strong); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: var(--section-space) var(--page-gutter); }
.section-head {
  margin-bottom: clamp(42px, 6vw, 72px);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
}
.section-head h2,
.page-hero h1 { color: var(--berry); }
.section h2,
.page-hero h1 {
  font-size: clamp(38px, 5vw, 72px);
}
.section-note {
  max-width: 340px;
  color: var(--body-text);
  font-size: var(--detail-copy-size);
}
.section-note p { margin: 0 0 22px; line-height: 1.9; }
.text-link {
  display: inline-flex;
  gap: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
  color: var(--violet-text);
  font-size: 12px;
  font-weight: 700;
}
.text-link span { color: var(--violet-text); }
.text-link:hover,
.text-link:hover span { color: var(--berry-strong); }

.works { background: var(--light-bg); color: var(--light-text); }
.works .section-head h2 { color: var(--berry); }
.works-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.5vw, 20px);
}
.work-card { min-width: 0; }
.work-preview {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--surface);
  color: var(--dark-text);
  cursor: pointer;
}
.work-preview img,
.work-preview video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work-preview img { transition: transform 500ms cubic-bezier(0.2, 0.75, 0.25, 1), opacity 250ms ease; }
.work-preview video { opacity: 0; transition: opacity 220ms ease; }
.work-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(25, 21, 27, 0.54), transparent 42%);
}
.work-preview:hover img { transform: scale(1.025); }
.work-preview:hover { border-color: var(--berry-strong); }
.work-preview.is-playing img { opacity: 0; }
.work-preview.is-playing video { opacity: 1; }
.preview-action {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(25, 21, 27, 0.68);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  backdrop-filter: blur(8px);
}
.preview-action span { color: var(--dark-accent); }
.work-meta { padding: 18px 2px 0; }
.work-meta p {
  margin: 0;
  color: var(--sky-text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.work-meta h2,
.work-meta h3 {
  margin: 5px 0 4px;
  color: var(--violet-text);
  font-size: clamp(17px, 1.7vw, 24px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: -0.04em;
}
.work-meta span { color: var(--muted); font-size: var(--detail-copy-size); line-height: 1.7; }
.work-socials {
  margin-top: 18px;
  padding-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid var(--light-line);
}
.work-socials a {
  min-height: 44px;
  padding: 9px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--strong-line);
  background: transparent;
  color: var(--light-text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition: border-color 180ms ease, color 180ms ease;
}
.work-socials a:hover {
  border-color: var(--berry-strong);
  color: var(--berry-strong);
}

.legacy-section {
  min-height: 360px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
  border-top: 1px solid var(--line);
}
.legacy-section > p {
  color: var(--muted);
  font-size: var(--body-copy-size);
  line-height: 1.85;
}
.pricing { background: var(--dark-bg); color: var(--dark-text); }
.pricing .eyebrow { color: var(--sky); }
.pricing .section-lead { color: var(--dark-body); }

.final-cta {
  padding: var(--section-space) var(--page-gutter);
  background: var(--berry-strong);
  color: #ffffff;
}
.final-cta .eyebrow { color: #fff4f8; }
.final-cta h2 {
  max-width: 1000px;
  margin-bottom: 42px;
  font-size: clamp(42px, 6.5vw, 92px);
}

.site-footer {
  min-height: 280px;
  padding: 54px var(--page-gutter) 30px;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  align-items: start;
  column-gap: 54px;
  row-gap: 36px;
  border-top: 1px solid var(--dark-line);
  background: #111013;
  color: var(--dark-muted);
  font-size: 12px;
}
.site-footer .brand { color: var(--dark-text); }
.site-footer .brand small { color: var(--dark-muted); }
.footer-logo {
  grid-column: 1 / -1;
  width: 100%;
}
.footer-logo img {
  width: min(100%, 480px);
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.section-lead {
  max-width: 390px;
  margin: 0;
  color: var(--body-text);
  font-size: var(--body-copy-size);
  line-height: 1.85;
}

/* ==================================================
   05. TOP: Why Liberate and profile
   ================================================== */
.why {
  background:
    radial-gradient(circle at 18% 20%, rgba(117, 103, 216, 0.045), transparent 28%),
    var(--light-bg);
  color: var(--light-text);
}
.why .section-head h2 { color: var(--berry); }
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.principles article {
  position: relative;
  min-height: 390px;
  padding: 32px clamp(22px, 3vw, 44px) 38px 0;
  border-bottom: 1px solid var(--line);
}
.principles article + article {
  padding-left: clamp(22px, 3vw, 44px);
  border-left: 1px solid var(--line);
}
.principles article > span,
.service-grid article > span {
  display: block;
  margin-bottom: 74px;
  color: var(--muted);
  font-size: 10px;
}
.principles article > span {
  margin-bottom: 18px;
  color: var(--violet-text);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}
.principles .eyebrow { color: var(--sky-text); }
.principles h3,
.service-grid h3 {
  margin: 0 0 20px;
  color: var(--violet-text);
  font-size: clamp(20px, 2vw, 29px);
  line-height: 1.45;
  letter-spacing: -0.035em;
}
.principles article > p:last-child,
.service-grid article > p:last-child {
  margin: 0;
  color: var(--body-text);
  font-size: var(--body-copy-size);
  line-height: 1.85;
}

.profile {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 14% 22%, rgba(117, 103, 216, 0.045), transparent 28%),
    var(--light-bg-soft);
  color: var(--light-text);
}
.profile-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(48px, 8vw, 124px);
  align-items: start;
}
.profile-portrait {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 40%, rgba(117, 103, 216, 0.08), transparent 52%),
    var(--surface-2);
}
.profile-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(24, 20, 25, 0.06);
}
.profile-portrait img {
  width: 100%;
  height: auto;
  aspect-ratio: 1223 / 868;
  object-fit: contain;
}
.profile-content { max-width: 720px; }
.profile-content .eyebrow { margin-bottom: 22px; }
.profile-content > .eyebrow { color: var(--sky-text); }
.profile-role {
  margin: 0 0 7px;
  color: var(--violet-text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.profile-content h2 {
  margin-bottom: clamp(34px, 4vw, 54px);
  color: var(--violet-text);
  font-size: clamp(44px, 5vw, 74px);
}
.profile-content h2 span {
  color: var(--violet-text);
  font-size: 0.42em;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.profile-copy {
  max-width: 680px;
  color: var(--body-text);
  font-size: var(--body-copy-size);
  line-height: 1.85;
}
.profile-copy p { margin: 0; }
.profile-copy p + p { margin-top: 22px; }
.profile-links {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.profile-links-label {
  margin: 0 0 14px;
  color: var(--sky-text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.profile-links-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.profile-links-grid a {
  min-width: 0;
  min-height: 50px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid #c9bec3;
  color: #242024;
  font-size: 15px;
  font-weight: 600;
  transition: border-color 180ms ease, background 180ms ease;
}
.profile-links-grid a::after {
  content: "↗";
  flex: 0 0 auto;
  color: var(--violet-text);
}
.profile-links-grid a:hover {
  border-color: var(--berry-strong);
  background: var(--berry-strong);
  color: #ffffff;
}
.profile-links-grid a:hover::after { color: #ffffff; }
/* ==================================================
   06. TOP: Services
   ================================================== */
.services {
  padding-block: clamp(76px, 9vw, 124px);
  background: var(--light-bg);
  color: var(--light-text);
}
.services .eyebrow { color: var(--sky-text); }
.services .section-head h2 { color: var(--berry); }
.services .section-lead { color: var(--light-body); }
.services .section-head { margin-bottom: clamp(36px, 4.5vw, 56px); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--light-line);
}
.service-grid article {
  min-height: 0;
  padding: 30px clamp(24px, 4vw, 58px) 40px 0;
  border-bottom: 1px solid var(--light-line);
}
.service-grid article:nth-child(even) {
  padding-left: clamp(24px, 4vw, 58px);
  border-left: 1px solid var(--light-line);
}
.service-grid article > span,
.service-grid article > p:last-child { color: var(--light-body); }
.service-grid article > span {
  margin-bottom: 18px;
  color: var(--violet-text);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}
.service-copy {
  max-width: 620px;
  color: var(--light-body);
  font-size: var(--body-copy-size);
  line-height: 1.85;
}
.service-copy p { margin: 0; }
.service-copy p + p { margin-top: 12px; }
.service-grid .service-options {
  grid-column: 1 / -1;
  min-height: 0;
  padding-left: 0;
  border-left: 0;
}
.service-options-label {
  margin: -10px 0 0;
  color: var(--sky-text);
  font-size: 13px;
  font-weight: 600;
}
.service-options-copy {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--light-body);
  font-size: var(--body-copy-size);
  line-height: 1.85;
}
.service-options ul {
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}
.service-options li {
  max-width: 100%;
  padding: 9px 14px;
  border: 1px solid #cfc5c9;
  border-radius: 999px;
  background: #ffffff;
  color: var(--light-body);
  font-size: var(--detail-copy-size);
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.pricing { background: var(--dark-bg); color: var(--dark-text); }
/* ==================================================
   07. TOP: Interactive pricing
   ================================================== */
.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(38px, 7vw, 110px);
  align-items: start;
}
.base-prices { border-top: 1px solid var(--dark-line); }
.base-prices article {
  padding: 25px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 24px;
  border-bottom: 1px solid var(--dark-line);
}
.base-prices span {
  grid-column: 1 / -1;
  color: var(--sky);
  font-size: var(--meta-copy-size);
  letter-spacing: 0.13em;
}
.base-prices h3 { margin: 0; color: var(--dark-violet); font-size: 19px; }
.base-prices strong { color: var(--dark-price); font-size: 21px; }
.base-prices strong small { font-size: 12px; }
.price-note {
  margin: 22px 0 42px;
  color: var(--dark-muted);
  font-size: var(--detail-copy-size);
  line-height: 1.85;
}
.motion-selector > p {
  margin: 0 0 13px;
  color: var(--sky);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.motion-options { border-top: 1px solid var(--dark-line); }
.motion-category {
  padding: 22px 0 24px;
  border-bottom: 1px solid var(--dark-line);
}
.motion-category-head { margin-bottom: 14px; }
.motion-category-head h3 {
  margin: 0 0 5px;
  color: var(--dark-violet);
  font-size: var(--body-copy-size);
  letter-spacing: -0.01em;
}
.motion-category-head p {
  max-width: 460px;
  margin: 0;
  color: var(--dark-muted);
  font-size: var(--detail-copy-size);
  line-height: 1.8;
}
.motion-option-list { display: flex; flex-wrap: wrap; gap: 7px; }
.motion-options button {
  min-height: 38px;
  padding: 9px 11px;
  border: 1px solid var(--dark-line);
  background: transparent;
  color: var(--dark-body);
  font-size: 14px;
  cursor: pointer;
}
.motion-options button:hover,
.motion-options button.is-selected {
  border-color: var(--berry-strong);
  background: var(--berry-strong);
  color: #ffffff;
}
.pricing-visual {
  min-width: 0;
  display: grid;
  gap: 16px;
}
.pricing-explanation {
  min-height: 124px;
  padding: 20px 22px;
  border: 1px solid var(--dark-line);
  background: var(--dark-surface);
}
.pricing-explanation-category {
  margin: 0 0 7px;
  color: var(--sky);
  font-size: var(--meta-copy-size);
  font-weight: 700;
  letter-spacing: 0.14em;
}
.pricing-explanation h3 {
  margin: 0 0 8px;
  color: var(--dark-violet);
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: -0.025em;
}
.pricing-explanation > p:last-child {
  max-width: 620px;
  margin: 0;
  color: var(--dark-muted);
  font-size: var(--body-copy-size);
  line-height: 1.85;
}
.pricing-preview {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--dark-line);
  background:
    linear-gradient(var(--dark-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--dark-line) 1px, transparent 1px),
    var(--dark-surface);
  background-size: 20% 20%;
}
.pricing-preview video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 250ms ease;
}
.pricing-preview.has-video video { opacity: 1; }
.pricing-empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 14px;
  text-align: center;
  color: var(--dark-muted);
}
.pricing-empty[hidden] { display: none; }
.pricing-empty span { color: var(--dark-violet); font-size: 32px; font-weight: 300; }
.pricing-empty p { margin: 0; font-size: 14px; line-height: 1.8; }
.pricing-now {
  position: absolute;
  z-index: 2;
  left: 16px;
  bottom: 14px;
  margin: 0;
  padding: 7px 9px;
  background: rgba(25, 21, 27, 0.82);
  color: var(--sky);
  font-size: 11px;
  letter-spacing: 0.13em;
  backdrop-filter: blur(8px);
}

/* ==================================================
   08. TOP: Order process and Discord support
   ================================================== */
.process { background: var(--bg); }
.process .section-head h2 { color: var(--berry); }
.process-grid {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
  border-top: 1px solid var(--line);
}
.process-grid li {
  min-width: 0;
  padding: 28px clamp(16px, 2vw, 28px) 32px 0;
  border-bottom: 1px solid var(--line);
}
.process-grid li:not(:nth-child(5n + 1)) {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}
.process-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--violet-text);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}
.process-grid h3 {
  margin: 0;
  color: var(--violet-text);
  font-size: clamp(18px, 1.4vw, 20px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.03em;
}
.process-grid p {
  margin: 14px 0 0;
  color: var(--body-text);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  overflow-wrap: anywhere;
}
.process .text-link,
.process .text-link span { color: var(--violet-text); }
.process .text-link:hover,
.process .text-link:hover span { color: var(--berry-strong); }

.discord {
  min-height: 680px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(50px, 9vw, 150px);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 50%, rgba(217, 79, 134, 0.045), transparent 38%),
    radial-gradient(circle at 38% 30%, rgba(168, 149, 243, 0.035), transparent 30%),
    var(--light-bg-soft);
  color: var(--light-text);
}
.discord-mark {
  min-width: 0;
  color: rgba(108, 95, 215, 0.14);
  font-size: clamp(58px, 7vw, 108px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.discord-mark span { display: block; }
.discord-copy h2 { margin-bottom: 28px; color: var(--berry); }
.discord-copy > p:not(.eyebrow) {
  max-width: 610px;
  color: var(--body-text);
  font-size: var(--body-copy-size);
  line-height: 1.85;
}
.discord-note {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted) !important;
  font-size: 14px !important;
}

/* ==================================================
   09. FAQ, final CTA and footer
   ================================================== */
.faq-section { background: var(--light-bg); color: var(--light-text); }
.faq-section .eyebrow { color: var(--sky-text); }
.faq-section .section-head h2 { color: var(--berry); }
.faq-section .text-link { border-color: var(--light-line); color: var(--light-text); }
.faq-intro {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--light-muted);
  font-size: var(--body-copy-size);
  line-height: 1.85;
}
.faq-categories {
  display: grid;
  gap: clamp(72px, 9vw, 128px);
}
.faq-category-head { margin-bottom: 24px; }
.faq-category-head .eyebrow { margin-bottom: 10px; color: var(--violet-text); }
.faq-category-head h2 {
  margin: 0;
  color: var(--violet-text);
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.05em;
}
.faq-list { border-top: 1px solid var(--light-line); }
.faq-item { border-bottom: 1px solid var(--light-line); }
.faq-item summary {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  color: var(--violet-text);
  font-size: 17px;
  font-weight: 600;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span { flex: 0 0 auto; color: var(--berry-strong); font-size: 23px; font-weight: 400; line-height: 1; }
.faq-item div { max-width: 760px; padding: 0 0 25px; color: var(--light-body); font-size: var(--body-copy-size); line-height: 1.85; }
.faq-item div p { margin: 0; }
.faq-item div p + p { margin-top: 16px; }
.faq-more {
  margin-top: clamp(42px, 5vw, 64px);
  padding-top: 30px;
  border-top: 1px solid var(--light-line);
}
.faq-more h3 {
  margin: 0;
  color: var(--violet-text);
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.03em;
}
.faq-more p {
  max-width: 680px;
  margin: 12px 0 20px;
  color: var(--light-muted);
  font-size: var(--body-copy-size);
  line-height: 1.85;
}
.faq-section .faq-more-link {
  color: var(--violet-text);
  border-color: rgba(108, 95, 215, 0.45);
  font-weight: 700;
}
.faq-section .faq-more-link span { color: var(--violet-text); }
.faq-section .faq-more-link:hover,
.faq-section .faq-more-link:hover span { color: var(--berry-strong); border-color: var(--berry-strong); }

.services :focus-visible,
.faq-section :focus-visible,
.order-page :focus-visible { outline-color: var(--violet-deep); }
.pricing :focus-visible,
.site-footer :focus-visible { outline-color: var(--champagne); }
.final-cta :focus-visible { outline-color: #ffffff; }

.final-cta > p:not(.eyebrow) {
  max-width: 620px;
  margin: -20px 0 34px;
  font-size: var(--body-copy-size);
  line-height: 1.85;
  color: #fff4f8;
}
.final-cta .button-dark { background: #ffffff; color: var(--berry-strong); }
.final-cta .button-dark:hover { background: var(--violet-text); color: #ffffff; }
.footer-brand > p { margin: 20px 0 0; font-size: 13px; }
.footer-links {
  display: grid;
  grid-template-columns: 0.7fr 0.8fr 1.5fr;
  gap: 32px;
  font-size: 13px;
  color: #e6e0e4;
}
.footer-links nav { display: flex; align-items: flex-start; flex-direction: column; gap: 10px; }
.footer-links a:hover { color: var(--dark-accent); }
.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--dark-line);
  font-size: 10px;
}
.footer-bottom p { margin: 0; }

/* ==================================================
   10. Shared subpages and legal documents
   ================================================== */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.desktop-nav a[aria-current="page"]::after { transform: scaleX(1); }
.page-hero {
  min-height: 520px;
  padding: calc(var(--header-height) + 110px) var(--page-gutter) 86px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 77% 34%, rgba(117, 103, 216, 0.07), transparent 25%),
    linear-gradient(135deg, var(--light-bg-soft), var(--light-bg) 60%);
  color: var(--light-text);
}
.page-hero h1 { max-width: 1000px; }
.page-hero > p:last-child {
  max-width: 580px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}
.works-page { padding-top: clamp(64px, 8vw, 110px); }
.order-page { background: var(--light-bg); color: var(--light-text); }
.order-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--light-line);
}
.order-list li {
  padding: clamp(36px, 5vw, 64px) 0;
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: start;
  border-bottom: 1px solid var(--light-line);
}
.order-list span {
  padding-top: 5px;
  color: var(--violet-text);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
.order-list h3 { margin: 0; color: var(--violet-text); font-size: clamp(18px, 2.2vw, 30px); letter-spacing: -0.035em; }
.order-step-content { max-width: 800px; }
.order-step-content p {
  margin: 18px 0 0;
  color: var(--light-body);
  font-size: var(--body-copy-size);
  line-height: 1.85;
}
.order-step-content p + p { margin-top: 12px; }
.order-reply-note {
  max-width: 800px;
  margin: clamp(58px, 8vw, 96px) 0 0 90px;
  padding: 28px 30px;
  border-left: 2px solid var(--violet-text);
  background: rgba(117, 103, 216, 0.055);
}
.order-reply-note .eyebrow { margin-bottom: 10px; color: var(--sky-text); }
.order-reply-note h2 {
  margin: 0 0 18px;
  color: var(--violet-text);
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: -0.025em;
}
.order-reply-note > p:not(.eyebrow) {
  margin: 0;
  color: var(--light-body);
  font-size: var(--body-copy-size);
  line-height: 1.85;
}
.order-reply-note > p:not(.eyebrow) + p { margin-top: 8px; }
.order-notes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(40px, 8vw, 120px);
}
.order-notes h2 { margin-bottom: 24px; color: var(--violet-text); font-size: clamp(28px, 3.5vw, 48px); }
.order-notes article > p:last-child { color: var(--light-muted); font-size: 13px; line-height: 2; }
.faq-page-shell,
.legal-shell { min-height: 440px; }
.legal-shell { background: var(--bg); }
.legal-document {
  width: min(100%, 820px);
  margin: 0 auto;
  overflow-wrap: anywhere;
}
.legal-version {
  margin: 0 0 clamp(58px, 7vw, 88px);
  color: var(--light-muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.legal-document section {
  padding: clamp(38px, 5vw, 56px) 0;
  border-top: 1px solid var(--line);
}
.legal-document section:last-child { border-bottom: 1px solid var(--line); }
.legal-document h2 {
  margin: 0 0 24px;
  color: var(--violet-text);
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: -0.025em;
}
.legal-document p,
.legal-document li {
  color: var(--light-body);
  font-size: var(--body-copy-size);
  line-height: 1.85;
}
.legal-document p { margin: 0; }
.legal-document p + p { margin-top: 16px; }
.legal-document ul {
  margin: 20px 0;
  padding-left: 1.4em;
}
.legal-document li + li { margin-top: 8px; }
.commercial-document { width: min(100%, 960px); }
.commercial-document .legal-version span { display: block; }
.commercial-document .legal-version span + span { margin-top: 6px; }
.commercial-list { margin: 0; }
.commercial-list > div {
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  padding: clamp(34px, 4vw, 48px) 0;
  border-top: 1px solid var(--line);
}
.commercial-list > div:last-child { border-bottom: 1px solid var(--line); }
.commercial-list dt {
  color: #242024;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
}
.commercial-list dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
}

/* ==================================================
   11. Responsive adjustments
   ================================================== */
@media (max-width: 1080px) {
  .desktop-nav { gap: 16px; }
  .desktop-nav a { font-size: 9px; }
  .works-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 42px 16px; }
  .pricing-layout { grid-template-columns: 0.85fr 1fr; gap: 45px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid li:not(:nth-child(5n + 1)) { padding-left: 0; border-left: 0; }
  .process-grid li:nth-child(even) { padding-left: 20px; border-left: 1px solid var(--line); }
}

@media (max-width: 780px) {
  :root { --header-height: 64px; --page-gutter: 20px; --section-space: 82px; }
  .site-header {
    justify-content: space-between;
    background: rgba(250, 248, 246, 0.98);
    backdrop-filter: none;
  }
  .desktop-nav, .header-cta { display: none; }
  .brand { font-size: 17px; }
  .brand small { display: none; }
  .menu-toggle {
    position: relative;
    z-index: 2;
    width: 44px;
    height: 44px;
    margin-right: -8px;
    padding: 0;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    color: var(--text);
  }
  .menu-toggle span {
    position: absolute;
    width: 24px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease, top 180ms ease;
  }
  .menu-toggle span:first-child { top: 17px; }
  .menu-toggle span:last-child { top: 26px; }
  .menu-toggle[aria-expanded="true"] span:first-child { top: 22px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { top: 22px; transform: rotate(-45deg); }
  .mobile-menu {
    position: fixed;
    z-index: 1;
    inset: var(--header-height) 0 0;
    padding: 38px var(--page-gutter) max(30px, env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--light-bg);
    color: #2d272d;
    box-shadow: 0 20px 60px rgba(24, 20, 25, 0.12);
  }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu nav { display: grid; }
  .mobile-menu nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: clamp(25px, 8vw, 38px);
    font-weight: 600;
    letter-spacing: -0.04em;
  }
  .hero {
    min-height: max(690px, 100svh);
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 44px;
  }
  .hero-media video { object-position: center center; }
  .hero-shade {
    background:
      linear-gradient(0deg, rgba(250, 248, 246, 0.97) 0%, rgba(250, 248, 246, 0.83) 50%, rgba(250, 248, 246, 0.1) 100%),
      linear-gradient(90deg, rgba(250, 248, 246, 0.3), transparent 52%, rgba(250, 248, 246, 0.08));
  }
  .hero-content { width: 100%; }
  .hero h1 { font-size: clamp(43px, 13vw, 65px); }
  .booking-status { margin-bottom: 20px; }
  .hero-text { max-width: 470px; font-size: 12px; line-height: 1.85; }
  .hero-actions { display: grid; grid-template-columns: 1fr; max-width: 330px; }
  .hero-caption { display: none; }
  .section-head { align-items: start; flex-direction: column; gap: 24px; }
  .section-note { max-width: 100%; }
  .legacy-section { min-height: 0; grid-template-columns: 1fr; gap: 28px; }
  .principles { grid-template-columns: 1fr; }
  .principles article { min-height: 0; padding: 26px 0 34px; }
  .principles article + article { padding-left: 0; border-left: 0; }
  .principles article > span { margin-bottom: 14px; font-size: 18px; }
  .service-grid article > span { margin-bottom: 14px; }
  .profile-layout { grid-template-columns: 1fr; gap: 42px; }
  .profile-portrait { width: min(100%, 620px); }
  .profile-content { max-width: 680px; }
  .profile-content h2 { margin-bottom: 32px; }
  .profile-copy { font-size: var(--body-copy-size); line-height: 1.85; }
  .profile-links-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid article,
  .service-grid article:nth-child(even),
  .service-grid .service-options {
    min-height: 0;
    padding: 28px 0 34px;
    border-left: 0;
  }
  .service-grid .service-options { grid-column: auto; }
  .service-options ul { gap: 8px; }
  .pricing-layout { grid-template-columns: 1fr; }
  .pricing-preview { width: 100%; }
  .motion-options > .pricing-visual {
    margin: 18px 0 24px;
  }
  .motion-category-head p { font-size: var(--detail-copy-size); }
  .motion-options button { min-height: 42px; font-size: 14px; }
  .pricing-explanation { min-height: 0; padding: 18px 20px; }
  .pricing-explanation > p:last-child { font-size: var(--body-copy-size); }
  .faq-categories { gap: 68px; }
  .faq-category-head { margin-bottom: 18px; }
  .faq-intro { margin-top: 18px; font-size: var(--body-copy-size); }
  .faq-item summary { align-items: flex-start; padding: 20px 0; font-size: var(--body-copy-size); line-height: 1.7; }
  .faq-item div { padding-bottom: 23px; font-size: var(--body-copy-size); line-height: 1.85; }
  .faq-more { margin-top: 38px; padding-top: 26px; }
  .faq-more p { margin: 10px 0 18px; font-size: var(--body-copy-size); line-height: 1.85; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid li { min-height: 0; }
  .process-grid p { font-size: var(--detail-copy-size); }
  .discord { min-height: 0; grid-template-columns: 1fr; }
  .discord-mark {
    color: rgba(108, 95, 215, 0.14);
    font-size: clamp(52px, 15vw, 66px);
    letter-spacing: 0.02em;
  }
  .site-footer { grid-template-columns: 1fr; }
  .footer-logo img { max-width: 300px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-links nav:last-child { grid-column: 1 / -1; }
  .final-cta h2 { font-size: clamp(39px, 11vw, 60px); }
}

@media (max-width: 520px) {
  .works-grid { grid-template-columns: 1fr; gap: 44px; }
  .work-meta h2,
  .work-meta h3 { font-size: 22px; }
  .profile-layout { gap: 36px; }
  .profile-content h2 span { display: block; margin-top: 7px; font-size: 0.48em; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li,
  .process-grid li:nth-child(even) {
    min-height: 0;
    padding: 24px 0 26px;
    border-left: 0;
  }
  .process-grid span { margin-bottom: 12px; font-size: 20px; }
  .process-grid h3 { font-size: 18px; }
  .process-grid p { margin: 9px 0 0; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 12px; }
  .page-hero { min-height: 410px; padding-top: calc(var(--header-height) + 76px); padding-bottom: 54px; }
  .order-list li { grid-template-columns: 48px 1fr; }
  .order-list span { padding-top: 3px; font-size: 18px; }
  .order-step-content p { font-size: var(--body-copy-size); line-height: 1.85; }
  .order-reply-note { margin-left: 52px; padding: 24px 22px; }
  .order-notes { grid-template-columns: 1fr; }
  .legal-version { margin-bottom: 48px; font-size: 12px; line-height: 1.8; }
  .legal-document section { padding: 34px 0; }
  .legal-document h2 { margin-bottom: 18px; font-size: 18px; line-height: 1.65; }
  .legal-document p,
  .legal-document li { font-size: var(--body-copy-size); line-height: 1.85; }
  .legal-document p + p { margin-top: 14px; }
  .legal-document ul { margin: 18px 0; padding-left: 1.25em; }
  .commercial-list > div { grid-template-columns: 1fr; gap: 14px; padding: 32px 0; }
  .commercial-list dt { font-size: 14px; line-height: 1.7; }
}

/* ==================================================
   12. TOP scroll reveal and reduced motion
   ================================================== */
html.reveal-ready { overflow-x: clip; }

.reveal-ready .reveal-left,
.reveal-ready .reveal-right,
.reveal-ready .reveal-up {
  opacity: 0;
  will-change: opacity, transform;
}

.reveal-ready.reveal-active .reveal-left,
.reveal-ready.reveal-active .reveal-right,
.reveal-ready.reveal-active .reveal-up {
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

.reveal-ready .reveal-left { transform: translate3d(-32px, 0, 0); }
.reveal-ready .reveal-right { transform: translate3d(32px, 0, 0); }
.reveal-ready .reveal-up { transform: translate3d(0, 22px, 0); }
.reveal-ready .reveal-delay { --reveal-delay: 120ms; }

.reveal-ready .reveal-left.is-visible,
.reveal-ready .reveal-right.is-visible,
.reveal-ready .reveal-up.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

@media (max-width: 780px) {
  .reveal-ready .reveal-left { transform: translate3d(-22px, 0, 0); }
  .reveal-ready .reveal-right { transform: translate3d(22px, 0, 0); }
  .reveal-ready .reveal-up { transform: translate3d(0, 18px, 0); }
  .reveal-ready .reveal-left.is-visible,
  .reveal-ready .reveal-right.is-visible,
  .reveal-ready .reveal-up.is-visible { transform: translate3d(0, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-media { background: var(--bg); }
  .reveal-ready .reveal-left,
  .reveal-ready .reveal-right,
  .reveal-ready .reveal-up {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}
