:root {
  --paper: #f7f5f2;
  --paper-2: #eee9e2;
  --ink: #111314;
  --soft-ink: #474d4d;
  --muted: #858984;
  --line: rgba(17, 19, 20, 0.14);
  --glass: rgba(247, 245, 242, 0.68);
  --navy: #223846;
  --blue: #6f8792;
  --white: #fffaf3;
  --radius: 10px;
  --page-x: clamp(18px, 5vw, 88px);
  font-family: "Inter Tight", Inter, "Noto Sans JP", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 24px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-feature-settings: "kern";
}

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

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

.site-header {
  position: fixed;
  top: 22px;
  left: 0;
  right: 0;
  z-index: 50;
  pointer-events: none;
}

.nav {
  width: min(1120px, calc(100% - 32px));
  min-height: 58px;
  margin: 0 auto;
  padding: 8px 8px 8px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(247, 245, 242, 0.88);
  color: var(--ink);
  backdrop-filter: blur(24px) saturate(1.1);
  box-shadow: 0 18px 60px rgba(17, 19, 20, 0.12);
  pointer-events: auto;
  isolation: isolate;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 0.98rem;
  font-weight: 560;
  letter-spacing: 0.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--paper);
  background: var(--ink);
  font-family: Georgia, serif;
}

.nav-links {
  display: flex;
  gap: 26px;
}

.language-links {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 4px;
}

.nav-links a {
  color: rgba(17, 19, 20, 0.68);
  font-size: 0.86rem;
  letter-spacing: 0.01em;
  transition: color 240ms ease;
}

.language-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border: 1px solid rgba(17, 19, 20, 0.12);
  border-radius: 999px;
  color: rgba(17, 19, 20, 0.64);
  font-size: 0.76rem;
  letter-spacing: 0.01em;
  transition: background 240ms ease, color 240ms ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.language-links a:hover {
  background: rgba(17, 19, 20, 0.08);
  color: var(--ink);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(17, 19, 20, 0.16);
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 560;
  letter-spacing: 0.01em;
  transition: transform 260ms ease, background 260ms ease, color 260ms ease, border-color 260ms ease;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
  background: var(--navy);
}

.button.light {
  background: var(--paper);
  color: var(--ink);
  border-color: rgba(247, 245, 242, 0.46);
}

.button.glass {
  background: rgba(255, 255, 255, 0.12);
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(18px);
}

.button.dark {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-weight: 340;
  letter-spacing: 0;
  line-height: 0.92;
}

h1 {
  font-size: clamp(5.5rem, 14vw, 14rem);
}

h2 {
  font-size: clamp(3.6rem, 8.8vw, 9rem);
}

h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 420;
  letter-spacing: 0;
}

p {
  color: var(--soft-ink);
  line-height: 1.72;
}

.cinema-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--paper);
  background: #111;
}

.hero-image-layer {
  position: absolute;
  inset: 0;
  transform: scale(1.03);
  animation: slowZoom 18s ease-out both;
}

.hero-image-layer img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04) brightness(0.76);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 50%, rgba(2, 7, 10, 0.62), transparent 44%),
    linear-gradient(90deg, rgba(5, 8, 10, 0.82), rgba(5, 8, 10, 0.18) 58%, rgba(5, 8, 10, 0.42)),
    linear-gradient(180deg, rgba(5, 8, 10, 0.2), rgba(5, 8, 10, 0.6));
}

.hero-editorial {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - (var(--page-x) * 2)));
  margin: 0 auto;
  padding: clamp(150px, 18vh, 196px) 0 clamp(142px, 17vh, 184px);
}

.hero-editorial h1 {
  max-width: min(920px, 68vw);
  text-wrap: balance;
  animation: textDrift 1.1s ease both;
  line-height: 0.88;
}

.hero-editorial p:not(.eyebrow) {
  max-width: 600px;
  margin: clamp(22px, 3vh, 34px) 0 0;
  color: rgba(247, 245, 242, 0.88);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.6;
}

.hero-inline-metrics {
  display: none;
}

.hero-floating-cta {
  position: absolute;
  z-index: 3;
  left: max(var(--page-x), calc((100% - 1180px) / 2));
  right: auto;
  bottom: clamp(34px, 7vh, 78px);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-dashboard {
  position: absolute;
  z-index: 3;
  inset: auto max(var(--page-x), calc((100% - 1180px) / 2)) clamp(82px, 11vh, 118px) auto;
  width: min(334px, 28vw);
  height: 360px;
  pointer-events: none;
}

.metric-card,
.floating-review-card {
  position: absolute;
  min-width: 188px;
  padding: 16px;
  border: 1px solid rgba(247, 245, 242, 0.24);
  border-radius: 16px;
  background: rgba(247, 245, 242, 0.12);
  color: var(--paper);
  backdrop-filter: blur(24px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
}

.metric-card span,
.floating-review-card span {
  display: block;
  margin-bottom: 8px;
  color: rgba(247, 245, 242, 0.62);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.metric-card strong,
.floating-review-card strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 360;
  letter-spacing: 0;
}

.metric-card small,
.floating-review-card small {
  display: block;
  margin-top: 4px;
  color: rgba(247, 245, 242, 0.68);
  font-size: 0.78rem;
  line-height: 1.35;
}

.metric-card i {
  display: block;
  height: 1px;
  margin-top: 12px;
  background: linear-gradient(90deg, var(--paper), transparent);
  animation: metricLine 2.4s ease-in-out infinite alternate;
}

.hero-metric-one {
  right: 0;
  top: 0;
}

.hero-metric-two {
  right: 64px;
  top: 122px;
}

.floating-review-card {
  right: 0;
  top: 262px;
  min-width: 230px;
}

.mini-bars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  align-items: end;
  height: 42px;
  margin-top: 12px;
}

.mini-bars b {
  display: block;
  height: 40%;
  border-radius: 999px;
  background: rgba(247, 245, 242, 0.82);
  animation: barPulse 2.8s ease-in-out infinite;
}

.mini-bars b:nth-child(2) { height: 62%; animation-delay: 120ms; }
.mini-bars b:nth-child(3) { height: 48%; animation-delay: 240ms; }
.mini-bars b:nth-child(4) { height: 78%; animation-delay: 360ms; }
.mini-bars b:nth-child(5) { height: 92%; animation-delay: 480ms; }

.package-section {
  position: relative;
  padding: clamp(108px, 15vw, 210px) var(--page-x);
  background:
    radial-gradient(circle at 78% 20%, rgba(180, 143, 88, 0.12), transparent 28%),
    linear-gradient(180deg, var(--paper), #ebe5dc);
  overflow: clip;
}

.package-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(111, 135, 146, 0.12), transparent);
  transform: translateX(-35%);
  animation: quietGradient 10s ease-in-out infinite alternate;
  pointer-events: none;
}

.package-intro {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto clamp(46px, 7vw, 88px);
}

.package-intro h2 {
  max-width: 1100px;
}

.package-intro p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 28px;
  font-size: 1.08rem;
}

.package-grid {
  position: relative;
  z-index: 1;
  width: min(1260px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: stretch;
}

.pricing-card {
  position: relative;
  min-height: 720px;
  padding: clamp(24px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(17, 19, 20, 0.12);
  border-radius: 28px;
  background: rgba(247, 245, 242, 0.78);
  box-shadow: 0 32px 110px rgba(17, 19, 20, 0.08);
  backdrop-filter: blur(28px);
  transition: transform 420ms ease, box-shadow 420ms ease, border-color 420ms ease;
  overflow: hidden;
}

.pricing-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -25% 18%;
  height: 220px;
  background: radial-gradient(circle, rgba(111, 135, 146, 0.18), transparent 70%);
  opacity: 0;
  transition: opacity 420ms ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: rgba(17, 19, 20, 0.24);
  box-shadow: 0 46px 130px rgba(17, 19, 20, 0.14);
}

.pricing-card:hover::after {
  opacity: 1;
}

.full-card {
  background:
    linear-gradient(155deg, rgba(30, 33, 32, 0.98), rgba(20, 22, 22, 0.96)),
    var(--ink);
  color: var(--paper);
}

.full-card p,
.full-card li,
.full-card small {
  color: rgba(247, 245, 242, 0.7);
}

.full-card:hover {
  border-color: rgba(207, 174, 111, 0.55);
  box-shadow: 0 54px 140px rgba(20, 18, 12, 0.3);
}

.plan-topline {
  display: flex;
  align-items: center;
  gap: 18px;
}

.plan-topline .eyebrow {
  margin: 0;
}

.pricing-card h3 {
  max-width: 720px;
  font-size: clamp(2.8rem, 5.5vw, 6.2rem);
  font-weight: 330;
  line-height: 0.94;
  letter-spacing: 0;
}

.pricing-card > .button {
  margin-top: auto;
}

.plan-subtitle {
  max-width: 520px;
  margin: -8px 0 0;
  font-size: 1.02rem;
}

.pricing-visual {
  display: grid;
  gap: 16px;
  padding: clamp(26px, 4vw, 42px) 0;
  border-top: 1px solid rgba(17, 19, 20, 0.14);
  border-bottom: 1px solid rgba(17, 19, 20, 0.14);
}

.full-card .pricing-visual {
  border-color: rgba(247, 245, 242, 0.16);
}

.pricing-visual div {
  display: grid;
  gap: 12px;
}

.pricing-visual span {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.full-card .pricing-visual span {
  color: rgba(247, 245, 242, 0.48);
}

.percent-counter {
  font-size: clamp(6.5rem, 11vw, 11.5rem);
  font-weight: 280;
  line-height: 0.78;
  letter-spacing: 0;
  animation: percentRise 1s ease both;
}

.gold-visual .percent-counter {
  color: #d3b06f;
}

.pricing-visual small {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.35;
}

.pricing-visual em {
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(111, 135, 146, 0.28);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.44);
  font-size: 0.82rem;
  font-style: normal;
  line-height: 1.35;
}

.full-card .pricing-visual em {
  color: #d3b06f;
  background: rgba(211, 176, 111, 0.08);
  border-color: rgba(211, 176, 111, 0.34);
}

.ownership-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.responsibility-card {
  padding: 20px;
  border-radius: 18px;
}

.melglobe-responsibility {
  border: 1px solid rgba(111, 135, 146, 0.24);
  background: linear-gradient(180deg, rgba(111, 135, 146, 0.18), rgba(255, 255, 255, 0.48));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 18px 42px rgba(111, 135, 146, 0.08);
}

.owner-responsibility {
  border: 1px solid rgba(185, 150, 94, 0.22);
  background: linear-gradient(180deg, rgba(185, 150, 94, 0.14), rgba(255, 255, 255, 0.52));
}

.full-handles {
  border: 1px solid rgba(211, 176, 111, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.ownership-split span,
.full-handles span {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.full-handles span {
  color: #d3b06f;
}

.ownership-split ul,
.full-service-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ownership-split li,
.full-service-list li {
  color: var(--soft-ink);
  line-height: 1.45;
}

.full-card .full-service-list li {
  color: rgba(247, 245, 242, 0.76);
}

.full-handles .full-service-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.plan-reassurance {
  margin: -12px 0 0;
  color: rgba(247, 245, 242, 0.64);
  font-size: 0.9rem;
}

.comparison-strip {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  margin: 28px auto 0;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(17, 19, 20, 0.12);
  border-radius: 999px;
  background: rgba(247, 245, 242, 0.66);
  backdrop-filter: blur(20px);
}

.comparison-strip span {
  font-weight: 620;
}

.comparison-strip p {
  margin: 0;
  font-size: 0.92rem;
}

.comparison-strip a {
  color: var(--navy);
  font-weight: 620;
}

.image-text-section {
  min-height: 110svh;
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  align-items: center;
  gap: clamp(42px, 8vw, 120px);
  padding: 8vw min(7vw, 88px);
  background: var(--paper-2);
}

.portrait-image {
  margin: 0;
  height: min(78vh, 860px);
  overflow: hidden;
  border-radius: var(--radius);
  clip-path: inset(7% 0 7% 0 round 10px);
}

.portrait-image img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}

.editorial-copy {
  max-width: 780px;
}

.editorial-copy h2 {
  font-size: clamp(3.2rem, 6.6vw, 7.4rem);
}

.editorial-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 32px;
  font-size: 1.08rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(28px, 4vw, 46px);
}

.proof-grid article {
  min-height: 126px;
  padding: 18px;
  border: 1px solid rgba(17, 19, 20, 0.1);
  border-radius: 16px;
  background: rgba(247, 245, 242, 0.72);
}

.proof-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 560;
}

.proof-grid span {
  color: var(--soft-ink);
  font-size: 0.92rem;
  line-height: 1.5;
}

.services-section {
  padding: clamp(110px, 16vw, 210px) 0;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}

.section-kicker {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto clamp(70px, 10vw, 130px);
}

.section-kicker h2 {
  max-width: 980px;
}

.services-section .eyebrow,
.services-section p {
  color: rgba(247, 245, 242, 0.62);
}

.service-grid {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-grid article {
  min-height: 260px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid rgba(247, 245, 242, 0.12);
  border-radius: 18px;
  background: rgba(247, 245, 242, 0.055);
  transition: transform 280ms ease, background 280ms ease, border-color 280ms ease;
}

.service-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(247, 245, 242, 0.22);
  background: rgba(247, 245, 242, 0.09);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: auto;
  border: 1px solid rgba(247, 245, 242, 0.2);
  border-radius: 50%;
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 620;
  letter-spacing: 0.04em;
}

.service-grid h3 {
  margin-top: 54px;
  color: var(--paper);
  font-size: clamp(1.28rem, 2vw, 1.72rem);
}

.service-grid p {
  margin: 18px 0 0;
  max-width: 320px;
}

.showcase-heading p:not(.eyebrow) {
  max-width: 640px;
  margin: 26px 0 0;
  font-size: 1.06rem;
}

.showcase-section {
  padding: clamp(100px, 15vw, 190px) 0;
  background: var(--paper-2);
  overflow: hidden;
}

.showcase-heading {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 58px;
}

.showcase-heading h2 {
  max-width: 1050px;
}

.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(72vw, 980px);
  gap: 22px;
  overflow-x: auto;
  padding: 0 min(7vw, 88px) 18px;
  scroll-snap-type: x mandatory;
}

.gallery-track figure {
  position: relative;
  height: min(72vh, 760px);
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  scroll-snap-align: center;
}

.gallery-track img {
  height: 100%;
  object-fit: cover;
  transition: transform 900ms ease;
}

.gallery-track figure:hover img {
  transform: scale(1.045);
}

.gallery-track figcaption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  color: var(--paper);
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quote-section {
  padding: clamp(120px, 18vw, 240px) min(7vw, 88px);
  background: var(--paper);
}

.quote-section blockquote {
  max-width: 1180px;
  margin: 0;
  font-size: clamp(3.2rem, 7.4vw, 8.8rem);
  font-weight: 320;
  letter-spacing: 0;
  line-height: 0.96;
}

.quote-section p {
  margin-top: 38px;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 0.9fr);
  gap: clamp(44px, 9vw, 120px);
  padding: clamp(100px, 14vw, 180px) min(7vw, 88px);
  background: var(--paper-2);
}

.faq-intro h2 {
  font-size: clamp(3rem, 6.6vw, 7rem);
}

.faq-list {
  display: grid;
}

details {
  border-top: 1px solid var(--line);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  padding: 28px 0;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 430;
  letter-spacing: 0;
}

details p {
  max-width: 620px;
  margin: 0;
  padding: 0 0 28px;
}

.final-cta {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--paper);
  background: #111;
}

.final-cta > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.56) saturate(0.9);
}

.final-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 9, 10, 0.76), rgba(8, 9, 10, 0.24));
}

.final-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 36px));
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.72fr);
  gap: clamp(38px, 8vw, 100px);
  align-items: end;
}

.final-content h2 {
  max-width: 780px;
}

.final-content .eyebrow {
  color: rgba(247, 245, 242, 0.72);
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(247, 245, 242, 0.24);
  border-radius: var(--radius);
  background: rgba(247, 245, 242, 0.1);
  backdrop-filter: blur(24px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  display: grid;
  gap: 8px;
  color: rgba(247, 245, 242, 0.72);
  font-size: 0.82rem;
}

input,
select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(247, 245, 242, 0.24);
  border-radius: 4px;
  padding: 0 12px;
  background: rgba(247, 245, 242, 0.9);
  color: var(--ink);
  font: inherit;
  outline: none;
}

input:focus,
select:focus {
  border-color: var(--white);
  box-shadow: 0 0 0 4px rgba(247, 245, 242, 0.14);
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: rgba(247, 245, 242, 0.68);
  font-size: 0.86rem;
}

.form-note.is-success {
  color: var(--white);
}

.site-footer {
  min-height: 180px;
  padding: 42px min(7vw, 88px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--ink);
  color: var(--paper);
}

.site-footer p {
  margin: 0;
  color: rgba(247, 245, 242, 0.62);
}

.site-footer .brand-mark {
  color: var(--ink);
  background: var(--paper);
}

@keyframes slowZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1.03);
  }
}

@keyframes textDrift {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes metricLine {
  from {
    transform: scaleX(0.34);
    transform-origin: left;
    opacity: 0.55;
  }
  to {
    transform: scaleX(1);
    transform-origin: left;
    opacity: 1;
  }
}

@keyframes barPulse {
  50% {
    transform: scaleY(0.72);
    opacity: 0.62;
  }
}

@keyframes quietGradient {
  from {
    transform: translateX(-35%);
    opacity: 0.4;
  }
  to {
    transform: translateX(35%);
    opacity: 0.78;
  }
}

@keyframes percentRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    animation: revealUp 900ms ease both;
    animation-timeline: view();
    animation-range: entry 0% cover 36%;
  }

  .hero-editorial h1 {
    animation-timeline: scroll(root);
    animation-name: heroFloat;
    animation-duration: 1s;
    animation-fill-mode: both;
  }

  @keyframes revealUp {
    from {
      opacity: 0;
      transform: translateY(34px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes heroFloat {
    from {
      transform: translateY(0);
    }
    to {
      transform: translateY(68px);
    }
  }
}

@media (max-width: 980px) {
  :root {
    --page-x: clamp(18px, 4.4vw, 42px);
  }

  .nav {
    min-height: 56px;
    border-radius: 999px;
    align-items: center;
    flex-wrap: nowrap;
  }

  .nav-links {
    display: none;
  }

  .language-links {
    margin-left: auto;
  }

  .hero-editorial {
    width: min(760px, calc(100% - (var(--page-x) * 2)));
    padding: clamp(132px, 19vh, 172px) 0 clamp(112px, 15vh, 148px);
  }

  .hero-editorial h1 {
    max-width: 720px;
  }

  .hero-editorial p:not(.eyebrow) {
    max-width: 620px;
  }

  .hero-floating-cta {
    left: var(--page-x);
    right: var(--page-x);
    bottom: 34px;
  }

  .hero-dashboard {
    display: none;
  }

  .hero-inline-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
    max-width: 100%;
    overflow: visible;
    padding-bottom: 0;
    scroll-snap-type: x proximity;
  }

  .hero-inline-metrics span {
    flex: 1 1 190px;
    display: grid;
    gap: 4px;
    padding: 12px 14px;
    border: 1px solid rgba(247, 245, 242, 0.24);
    border-radius: 18px;
    background: rgba(247, 245, 242, 0.12);
    color: rgba(247, 245, 242, 0.72);
    backdrop-filter: blur(14px);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.16);
    scroll-snap-align: start;
    transition: transform 180ms ease, background 180ms ease;
  }

  .hero-inline-metrics span:active {
    transform: scale(0.98);
    background: rgba(247, 245, 242, 0.18);
  }

  .hero-inline-metrics strong {
    color: var(--paper);
    font-size: 1.06rem;
    font-weight: 620;
    letter-spacing: 0;
  }

  .hero-inline-metrics small {
    color: rgba(247, 245, 242, 0.72);
    font-size: 0.78rem;
    line-height: 1.3;
  }

  .image-text-section,
  .faq-section,
  .final-content {
    grid-template-columns: 1fr;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    min-height: auto;
    padding: clamp(28px, 6vw, 46px);
  }

  .comparison-strip {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .final-content {
    align-items: start;
  }
}

@media (max-width: 680px) {
  :root {
    --page-x: 14px;
  }

  .site-header {
    top: 10px;
  }

  .nav {
    width: calc(100% - 22px);
    min-height: 50px;
    padding: 6px 8px;
    gap: 10px;
  }

  .brand {
    gap: 9px;
    font-size: 0.92rem;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .nav-cta {
    display: none;
  }

  .language-links {
    gap: 6px;
  }

  .language-links a {
    min-width: 24px;
    height: 24px;
    padding: 0 6px;
    font-size: 0.7rem;
  }

  .cinema-hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100svh;
    padding: 104px 0 24px;
  }

  .hero-editorial {
    width: calc(100% - 28px);
    padding: 0;
  }

  .hero-editorial .eyebrow {
    margin-bottom: 16px;
  }

  .hero-editorial p:not(.eyebrow) {
    max-width: 34rem;
    margin-top: 22px;
    font-size: 1rem;
    line-height: 1.58;
  }

  h1 {
    font-size: clamp(4rem, 18vw, 5.6rem);
    line-height: 0.9;
  }

  h2,
  .large-statement strong,
  .quote-section blockquote {
    font-size: clamp(3.25rem, 16vw, 5.6rem);
  }

  .package-intro h2,
  .section-kicker h2,
  .showcase-heading h2,
  .faq-intro h2,
  .final-content h2 {
    font-size: clamp(3rem, 13vw, 4.7rem);
    line-height: 0.96;
  }

  .hero-floating-cta {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: calc(100% - 28px);
    margin: 20px auto 0;
    flex-direction: column;
    gap: 10px;
  }

  .hero-dashboard {
    display: none;
  }

  .ownership-split {
    grid-template-columns: 1fr;
  }

  .proof-grid,
  .service-grid,
  .full-handles .full-service-list {
    grid-template-columns: 1fr;
  }

  .service-grid article {
    min-height: auto;
    padding: 22px;
  }

  .service-grid h3 {
    margin-top: 34px;
  }

  .pricing-card h3 {
    font-size: clamp(2.9rem, 15vw, 4.25rem);
  }

  .button {
    width: 100%;
    min-height: 48px;
  }

  .package-section {
    padding-top: 86px;
    padding-bottom: 92px;
  }

  .package-intro {
    margin-bottom: 30px;
  }

  .package-intro p:not(.eyebrow) {
    margin-top: 20px;
  }

  .pricing-card {
    border-radius: 22px;
    padding: 24px 18px 20px;
    gap: 20px;
  }

  .plan-topline {
    align-items: flex-start;
    gap: 12px;
  }

  .pricing-visual {
    padding: 22px 0;
  }

  .pricing-visual div {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .percent-counter {
    font-size: clamp(5.4rem, 25vw, 7.4rem);
  }

  .comparison-strip {
    margin-top: 20px;
    padding: 18px;
  }

  .image-text-section,
  .quote-section,
  .faq-section {
    padding-inline: 18px;
  }

  .portrait-image {
    height: 64vh;
  }

  .gallery-track {
    grid-auto-columns: 88vw;
    padding-inline: 18px;
  }

  .gallery-track figure {
    height: 62vh;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
