:root {
  --norren-paper: #f4f1e8;
  --norren-surface: #fcfbf7;
  --norren-border: #d8d2c6;
  --norren-ink: #17252d;
  --norren-text-muted: #5f6c70;
  --norren-blue-900: #17394d;
  --norren-blue-800: #204e66;
  --norren-blue-700: #2a607c;
  --norren-blue-100: #dde8eb;
  --norren-cedar: #995235;
  --norren-cedar-ink: #06191b;
  --norren-cedar-dark: #7f4028;
  --norren-cedar-text: #9b4e2b;
  --norren-cedar-on-dark: #f0ae88;
  --color-background: var(--norren-paper);
  --color-surface: var(--norren-surface);
  --color-text: var(--norren-ink);
  --color-text-secondary: var(--norren-text-muted);
  --color-primary: var(--norren-blue-700);
  --color-primary-hover: var(--norren-blue-900);
  --color-focus: #afc8d2;
  --font-sans-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic",
    "Meiryo", sans-serif;
  --font-serif-jp: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho",
    serif;
  --container: 1180px;
  --page-gutter: clamp(20px, 4vw, 48px);
  --section-space: clamp(88px, 10vw, 144px);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-soft: 0 20px 60px rgba(23, 57, 77, 0.08);
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--color-text);
  background: var(--color-background);
  font-family: var(--font-sans-jp);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: 0.01em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

p,
h1,
h2,
h3,
ul,
ol,
dl,
dd {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

::selection {
  color: var(--norren-surface);
  background: var(--norren-blue-700);
}

:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--norren-cedar-ink);
}

.container {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--container));
  margin-inline: auto;
}

.paper-grain {
  position: fixed;
  z-index: 20;
  inset: 0;
  pointer-events: none;
  opacity: 0.024;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.68'/%3E%3C/svg%3E");
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 18px;
  color: var(--norren-surface);
  background: var(--norren-blue-900);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition:
    color 240ms ease,
    background-color 240ms ease,
    border-color 240ms ease,
    transform 240ms var(--ease-out),
    box-shadow 240ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #fff;
  background: var(--norren-blue-700);
  box-shadow: 0 12px 28px rgba(42, 96, 124, 0.22);
}

.button--primary:hover {
  background: var(--norren-blue-900);
  box-shadow: 0 16px 34px rgba(23, 57, 77, 0.25);
}

.button--primary:active {
  background: #102d3e;
  transform: translateY(0);
}

.button--secondary {
  border-color: var(--norren-blue-900);
  color: var(--norren-blue-900);
  background: rgba(252, 251, 247, 0.46);
}

.button--secondary:hover {
  color: var(--norren-surface);
  background: var(--norren-blue-900);
}

.button-arrow {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  padding-left: 16px;
  transition: transform 240ms var(--ease-out);
}

.button:hover .button-arrow {
  transform: translateX(4px);
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--norren-blue-700);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.section-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--norren-cedar);
  box-shadow: 0 0 0 5px rgba(153, 82, 53, 0.09);
}

.section-kicker--light {
  color: #b8ccd4;
}

.section-heading h2,
.section-intro h2,
.process-intro h2,
.scope-copy h2,
.contact-copy h2 {
  text-wrap: balance;
  font-size: clamp(1.75rem, 3.5vw, 2.65rem);
  font-weight: 700;
  line-height: 1.48;
  letter-spacing: 0.01em;
  word-break: auto-phrase;
}

.section {
  position: relative;
  padding-block: var(--section-space);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  background: rgba(252, 251, 247, 0);
  transition:
    border-color 240ms ease,
    background-color 240ms ease,
    box-shadow 240ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  border-color: rgba(216, 210, 198, 0.82);
  background: rgba(252, 251, 247, 0.9);
  box-shadow: 0 8px 30px rgba(23, 37, 45, 0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header.is-over-dark:not(.is-menu-open) .brand-name strong,
.site-header.is-over-dark:not(.is-menu-open) .brand-name small,
.site-header.is-over-dark:not(.is-menu-open) .primary-nav > a:not(.button) {
  color: var(--norren-paper);
}

.site-header.is-over-dark:not(.is-menu-open) .brand-name small {
  color: rgba(244, 241, 232, 0.64);
}

.site-header.is-over-dark:not(.is-menu-open) .button--header {
  color: var(--norren-blue-900);
  background: #dce9e8;
}

.site-header.is-over-dark:not(.is-menu-open) .button--header:hover {
  background: var(--norren-surface);
}

.site-header.is-over-dark:not(.is-menu-open) .menu-toggle {
  border-color: rgba(244, 241, 232, 0.35);
  background: rgba(7, 28, 32, 0.32);
}

.site-header.is-over-dark:not(.is-menu-open) .menu-toggle span {
  background: var(--norren-paper);
}

.header-inner {
  display: flex;
  height: 82px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(23, 57, 77, 0.16);
  border-radius: 50%;
  background: var(--norren-paper);
}

.brand-mark--small {
  width: 46px;
  height: 46px;
}

.brand-mark img {
  position: absolute;
  top: -133px;
  left: -48px;
  width: 352px;
  height: auto;
  max-width: none;
}

.brand-name {
  display: grid;
  gap: 0;
}

.brand-name strong {
  color: var(--norren-blue-900);
  font-family: var(--font-serif-jp);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.015em;
}

.brand-name small {
  color: var(--norren-text-muted);
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.14em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 36px);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.primary-nav > a:not(.button) {
  position: relative;
  padding-block: 14px;
}

.primary-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: var(--norren-cedar);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease-out);
}

.primary-nav > a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button--header {
  min-height: 42px;
  gap: 14px;
  padding: 10px 18px;
  color: #fff;
  background: var(--norren-blue-700);
}

.button--header:hover {
  background: var(--norren-blue-900);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--norren-border);
  border-radius: 50%;
  background: var(--norren-surface);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--norren-blue-900);
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: max(820px, 100svh);
  overflow: hidden;
  isolation: isolate;
  padding: 138px 0 94px;
  color: var(--norren-surface);
  background:
    radial-gradient(circle at 79% 44%, rgba(42, 96, 124, 0.22), transparent 33%),
    linear-gradient(145deg, #06191b 0%, #0a2528 56%, #0d2e35 100%);
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    radial-gradient(circle at 77% 48%, transparent 0 29%, rgba(180, 214, 216, 0.07) 29.1% 29.25%, transparent 29.4%),
    linear-gradient(90deg, rgba(6, 25, 27, 0.17), transparent 72%);
  content: "";
  pointer-events: none;
}

.hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(6, 25, 27, 0.98) 0%,
    rgba(6, 25, 27, 0.89) 35%,
    rgba(6, 25, 27, 0.53) 54%,
    rgba(6, 25, 27, 0.04) 78%
  );
  content: "";
  pointer-events: none;
}

.hero-ship {
  position: absolute;
  z-index: 0;
  top: 72px;
  right: -1vw;
  bottom: 6px;
  width: min(64vw, 1080px);
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 17%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 17%, #000 100%);
}

.hero-ship::before,
.hero-ship::after {
  position: absolute;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.hero-ship::before {
  top: 11%;
  right: 9%;
  bottom: 11%;
  left: 8%;
  border: 1px solid rgba(184, 217, 218, 0.09);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(184, 217, 218, 0.018),
    0 0 0 140px rgba(184, 217, 218, 0.012);
}

.hero-ship::after {
  top: 11%;
  bottom: 11%;
  left: 50%;
  width: 1px;
  background: linear-gradient(transparent, rgba(184, 217, 218, 0.13), transparent);
}

.hero-longship-canvas {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}

.hero-ship-meta {
  position: absolute;
  z-index: 2;
  right: 38px;
  bottom: 32px;
  display: grid;
  gap: 3px;
  color: rgba(220, 233, 232, 0.54);
  font-size: 0.57rem;
  line-height: 1.35;
  letter-spacing: 0.15em;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 590px;
  align-items: center;
  grid-template-columns: minmax(0, 1fr);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(54vw, 680px);
}

.hero-title {
  max-width: 680px;
  margin-top: 0;
  font-family: var(--font-serif-jp);
  font-size: clamp(3rem, 5vw, 4.65rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.hero-title em {
  display: block;
  color: #b8d9da;
  font-style: normal;
}

.hero-title > span {
  display: block;
}

.hero-lead {
  max-width: 610px;
  margin-top: 30px;
  color: rgba(244, 241, 232, 0.73);
  font-size: clamp(0.9rem, 1.08vw, 1.03rem);
  line-height: 2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 30px;
  color: rgba(244, 241, 232, 0.78);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-assurances li {
  position: relative;
  padding-left: 17px;
}

.hero-assurances li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 1px;
  background: var(--norren-cedar);
  content: "";
}

.hero .button--primary {
  color: var(--norren-blue-900);
  background: #dce9e8;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.hero .button--primary:hover {
  background: var(--norren-surface);
}

.hero .button--primary .button-arrow {
  border-left-color: rgba(23, 57, 77, 0.22);
}

.hero .button--secondary {
  border-color: rgba(244, 241, 232, 0.64);
  color: var(--norren-paper);
  background: rgba(244, 241, 232, 0.035);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero .button--secondary:hover {
  color: var(--norren-blue-900);
  background: var(--norren-paper);
}

/* Proof rail */
.proof-rail {
  position: relative;
  z-index: 2;
  color: var(--norren-surface);
  border-top: 1px solid rgba(220, 233, 232, 0.11);
  background: linear-gradient(90deg, #0a2428, var(--norren-blue-900));
}

.proof-grid {
  display: grid;
  min-height: 158px;
  grid-template-columns: repeat(3, 1fr) 1.4fr;
}

.proof-grid article {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 30px 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.proof-grid article:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.proof-number {
  color: var(--norren-paper);
  font-family: var(--font-serif-jp);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1;
}

.proof-grid article > p {
  color: #b8ccd4;
  font-size: 0.75rem;
  line-height: 1.75;
}

.proof-grid article > p strong {
  color: var(--norren-surface);
  font-weight: 600;
}

.proof-grid .proof-message {
  align-items: center;
  border-left-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.035);
}

.proof-grid .proof-message p {
  color: var(--norren-paper);
  font-family: var(--font-serif-jp);
  font-size: 1rem;
  line-height: 1.8;
}

/* Problem */
.section--problem {
  min-height: 980px;
  overflow: hidden;
  isolation: isolate;
  color: var(--norren-surface);
  background: #102f3b;
}

.section--problem::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 24, 32, 0.78) 0%, rgba(8, 31, 41, 0.58) 53%, rgba(9, 34, 43, 0.28) 100%),
    linear-gradient(180deg, rgba(4, 20, 27, 0.34) 0%, rgba(5, 24, 32, 0.2) 42%, rgba(4, 19, 27, 0.78) 100%);
  content: "";
  pointer-events: none;
}

.problem-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
}

.problem-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.05) contrast(0.98) saturate(0.82);
  transform: scale(1.015);
}

.problem-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 28px;
}

.problem-grid > .section-heading {
  grid-column: 4 / -1;
}

.problem-grid > .section-heading h2 {
  max-width: 820px;
  color: var(--norren-surface);
  font-size: clamp(2.6rem, 5vw, 4.65rem);
  font-weight: 500;
  line-height: 1.32;
}

.problem-grid > .problem-copy {
  margin-top: 42px;
  grid-column: 7 / -1;
  padding-top: 0;
}

.section--problem .section-kicker {
  color: rgba(244, 241, 232, 0.78);
}

.problem-copy .large-copy {
  margin-bottom: 24px;
  color: var(--norren-surface);
  font-family: var(--font-serif-jp);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.75;
}

.problem-copy > p:last-child {
  color: rgba(244, 241, 232, 0.72);
  font-size: 0.96rem;
}

.trigger-list {
  display: grid;
  margin-top: 108px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
}

.trigger-list article {
  position: relative;
  min-height: 255px;
  padding: 28px 30px 30px;
  border-top: 1px solid rgba(244, 241, 232, 0.24);
  border-left: 1px solid rgba(244, 241, 232, 0.2);
  background: rgba(5, 24, 32, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.trigger-list article:last-child {
  border-right: 1px solid rgba(244, 241, 232, 0.2);
}

.trigger-list article::before {
  position: absolute;
  top: -2px;
  left: 30px;
  width: 38px;
  height: 3px;
  background: var(--norren-cedar);
  content: "";
  transform: scaleX(0.16);
  transform-origin: left;
  transition: transform 500ms var(--ease-out);
}

.trigger-list article:hover::before {
  transform: scaleX(1);
}

.trigger-list article > span {
  color: #c9e0e0;
  font-family: var(--font-serif-jp);
  font-size: 0.78rem;
}

.trigger-list h3 {
  margin-top: 24px;
  font-size: 1.08rem;
  line-height: 1.7;
}

.trigger-list p {
  margin-top: 14px;
  color: rgba(244, 241, 232, 0.68);
  font-size: 0.85rem;
  line-height: 1.8;
}

/* Services */
.section--services {
  overflow: hidden;
  background:
    linear-gradient(rgba(23, 57, 77, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 57, 77, 0.025) 1px, transparent 1px),
    var(--norren-surface);
  background-size: 48px 48px;
}

.section--services::before {
  position: absolute;
  top: -140px;
  left: -160px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgba(221, 232, 235, 0.65);
  content: "";
  filter: blur(4px);
}

.section-intro {
  position: relative;
  display: grid;
  align-items: end;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(36px, 8vw, 120px);
}

.section-intro > p {
  max-width: 430px;
  padding-bottom: 6px;
  color: var(--norren-text-muted);
  font-size: 0.95rem;
}

.service-grid {
  position: relative;
  display: grid;
  margin-top: 68px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 276px;
  flex-direction: column;
  padding: clamp(28px, 3vw, 38px);
  overflow: hidden;
  border: 1px solid var(--norren-border);
  border-radius: 12px;
  background: rgba(252, 251, 247, 0.95);
  box-shadow: 0 16px 48px rgba(23, 57, 77, 0.055);
  grid-column: span 5;
  transition:
    border-color 260ms ease,
    transform 320ms var(--ease-out),
    box-shadow 260ms ease;
}

.service-card:hover {
  border-color: var(--norren-blue-700);
  box-shadow: 0 24px 60px rgba(23, 57, 77, 0.1);
  transform: translateY(-5px);
}

.service-card--wide {
  min-height: 570px;
  justify-content: space-between;
  grid-column: span 7;
  grid-row: span 2;
}

.service-card--wide::after {
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(42, 96, 124, 0.14);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 36px rgba(42, 96, 124, 0.025),
    0 0 0 72px rgba(42, 96, 124, 0.018);
}

.service-card--wide > div:nth-child(2) {
  position: relative;
  z-index: 1;
  max-width: 580px;
  margin-top: auto;
  margin-bottom: 54px;
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.service-number {
  color: var(--norren-blue-700);
  font-family: var(--font-serif-jp);
  font-size: 0.84rem;
  font-weight: 600;
}

.service-tag {
  padding: 5px 10px;
  border: 1px solid var(--norren-border);
  border-radius: 999px;
  color: var(--norren-text-muted);
  font-size: 0.65rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.06em;
}

.service-card h3 {
  max-width: 620px;
  margin-top: 38px;
  font-size: clamp(1.18rem, 2vw, 1.52rem);
  line-height: 1.55;
}

.service-card--wide h3 {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  font-weight: 600;
}

.service-card p {
  margin-top: 18px;
  color: var(--norren-text-muted);
  font-size: 0.86rem;
  line-height: 1.9;
}

.service-card--wide p {
  max-width: 570px;
  font-size: 0.95rem;
}

.service-detail-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--norren-blue-800);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.service-detail-link span {
  transition: transform 180ms var(--ease-out);
}

.service-detail-link:hover span {
  transform: translateX(4px);
}

.service-card ul {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-card li {
  padding: 6px 11px;
  border: 1px solid rgba(42, 96, 124, 0.2);
  border-radius: 2px;
  color: var(--norren-blue-800);
  background: rgba(221, 232, 235, 0.38);
  font-size: 0.68rem;
  font-weight: 600;
}

.card-line {
  position: absolute;
  right: 38px;
  bottom: 32px;
  width: 44px;
  height: 1px;
  background: var(--norren-cedar);
}

.service-card--dark {
  border-color: var(--norren-blue-900);
  color: var(--norren-surface);
  background:
    radial-gradient(circle at 95% 5%, rgba(221, 232, 235, 0.14), transparent 38%),
    var(--norren-blue-900);
}

.service-card--dark .service-number,
.service-card--dark .service-tag {
  color: var(--norren-paper);
}

.service-card--dark .service-tag {
  border-color: rgba(255, 255, 255, 0.2);
}

.service-card--dark p {
  color: #c9d8dd;
}

.service-card--accent {
  min-height: 240px;
  padding-right: min(46%, 520px);
  border-top: 3px solid var(--norren-cedar);
  grid-column: 1 / -1;
}

.service-card--accent::after {
  position: absolute;
  top: 50%;
  right: 8%;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(42, 96, 124, 0.13);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 30px rgba(42, 96, 124, 0.025),
    0 0 0 60px rgba(42, 96, 124, 0.015);
  transform: translateY(-50%);
}

/* Process */
.section--process {
  overflow: hidden;
  color: var(--norren-surface);
  background: var(--norren-blue-900);
}

.section--process::before {
  position: absolute;
  top: -290px;
  right: -180px;
  width: 670px;
  height: 670px;
  border: 1px solid rgba(221, 232, 235, 0.09);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 65px rgba(221, 232, 235, 0.025),
    0 0 0 130px rgba(221, 232, 235, 0.015);
}

.process-intro {
  position: relative;
  max-width: 720px;
}

.process-intro > p:last-child {
  max-width: 580px;
  margin-top: 22px;
  color: #c9d8dd;
  font-size: 0.92rem;
}

.process-list {
  position: relative;
  margin-top: 74px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.process-list::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 45px;
  width: 1px;
  background: rgba(255, 255, 255, 0.13);
  content: "";
}

.process-list li {
  position: relative;
  display: grid;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  grid-template-columns: 92px minmax(0, 1fr) 190px;
  gap: 28px;
}

.process-marker {
  position: relative;
  z-index: 1;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: var(--norren-blue-900);
}

.process-marker span {
  color: var(--norren-cedar-on-dark);
  font-family: var(--font-serif-jp);
  font-size: 0.72rem;
  font-weight: 600;
}

.process-label {
  color: #b8ccd4;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.process-content h3 {
  margin-top: 8px;
  font-size: clamp(1.16rem, 2vw, 1.42rem);
  line-height: 1.55;
}

.process-content > p:last-child {
  max-width: 670px;
  margin-top: 12px;
  color: #c9d8dd;
  font-size: 0.84rem;
  line-height: 1.85;
}

.process-output {
  justify-self: end;
  color: #b8ccd4;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

/* Scope */
.section--scope {
  background: var(--norren-paper);
}

.scope-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(60px, 10vw, 140px);
}

.scope-copy > p:not(.section-kicker) {
  margin-top: 26px;
  color: var(--norren-text-muted);
  font-size: 0.94rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  margin-top: 32px;
  border-bottom: 1px solid var(--norren-blue-700);
  color: var(--norren-blue-700);
  font-size: 0.86rem;
  font-weight: 700;
  transition:
    color 200ms ease,
    gap 240ms var(--ease-out);
}

.text-link:hover {
  gap: 40px;
  color: var(--norren-blue-900);
}

.scope-card {
  position: relative;
  padding: clamp(30px, 4vw, 48px);
  border: 2px solid var(--norren-blue-700);
  border-radius: 12px;
  background: var(--norren-surface);
  box-shadow: var(--shadow-soft);
}

.scope-card::before {
  position: absolute;
  top: -12px;
  right: 28px;
  padding: 5px 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--norren-cedar);
  content: "分かりやすい総額提示";
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.scope-card-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--norren-border);
}

.scope-card-header p {
  font-size: 1.05rem;
  font-weight: 700;
}

.scope-card-header span {
  color: var(--norren-blue-900);
  font-size: 1.3rem;
  font-weight: 700;
}

.scope-card dl > div {
  display: grid;
  padding: 22px 0;
  border-bottom: 1px solid var(--norren-border);
  grid-template-columns: 142px 1fr;
  gap: 20px;
}

.scope-card dt {
  color: var(--norren-blue-700);
  font-size: 0.73rem;
  font-weight: 700;
}

.scope-card dd {
  color: var(--norren-text-muted);
  font-size: 0.82rem;
  line-height: 1.75;
}

.scope-note {
  margin-top: 22px;
  color: var(--norren-text-muted);
  font-size: 0.74rem;
}

/* Fit */
.section--fit {
  overflow: hidden;
  background: var(--norren-blue-100);
}

.fit-grid {
  display: block;
}

.fit-copy {
  width: min(100%, 900px);
}

.fit-list {
  margin-top: 45px;
  border-top: 1px solid rgba(23, 57, 77, 0.18);
}

.fit-list li {
  display: grid;
  align-items: center;
  padding: 21px 0;
  border-bottom: 1px solid rgba(23, 57, 77, 0.18);
  grid-template-columns: 52px 1fr;
  gap: 20px;
}

.fit-list li > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(23, 57, 77, 0.18);
  border-radius: 50%;
  color: var(--norren-cedar-text);
  font-family: var(--font-serif-jp);
  font-size: 0.72rem;
}

.fit-list p {
  color: var(--norren-text-muted);
  font-size: 0.88rem;
}

.fit-list strong {
  color: var(--norren-ink);
  font-weight: 700;
}

/* FAQ */
.section--faq {
  background: var(--norren-surface);
}

.faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(60px, 10vw, 140px);
}

.faq-grid .section-heading {
  position: sticky;
  top: 130px;
}

.faq-grid .section-heading > p:last-child {
  max-width: 390px;
  margin-top: 22px;
  color: var(--norren-text-muted);
  font-size: 0.86rem;
}

.faq-list {
  border-top: 1px solid var(--norren-border);
}

.faq-list details {
  border-bottom: 1px solid var(--norren-border);
}

.faq-list summary {
  display: grid;
  min-height: 92px;
  align-items: center;
  padding: 24px 2px;
  grid-template-columns: 1fr 32px;
  gap: 24px;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.65;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary i {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid var(--norren-border);
  border-radius: 50%;
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--norren-blue-700);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 220ms ease;
}

.faq-list summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details > p {
  max-width: 680px;
  padding: 0 54px 30px 2px;
  color: var(--norren-text-muted);
  font-size: 0.86rem;
  line-height: 1.9;
}

/* Contact */
.contact {
  position: relative;
  overflow: hidden;
  padding-block: var(--section-space);
  color: var(--norren-surface);
  background:
    radial-gradient(circle at 12% 88%, rgba(42, 96, 124, 0.7), transparent 32%),
    #102f41;
}

.contact::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  content: "";
}

.contact-decoration {
  position: absolute;
  top: -90px;
  right: -80px;
  width: 450px;
  height: 450px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.contact-decoration::before {
  position: absolute;
  inset: 50px;
  border: 1px dashed rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.contact-decoration span {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  width: 185px;
  height: 170px;
  background: rgba(252, 251, 247, 0.035);
}

.contact-decoration span:first-child {
  transform: translate(-101%, -40%) skewX(-4deg);
}

.contact-decoration span:last-child {
  transform: translate(1%, -40%) skewX(4deg);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: start;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(58px, 9vw, 130px);
}

.contact-copy {
  position: sticky;
  top: 130px;
}

.contact-copy > p:not(.section-kicker) {
  margin-top: 26px;
  color: #c9d8dd;
  font-size: 0.92rem;
}

.contact-promise {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-promise > span {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--norren-cedar-on-dark);
  font-family: var(--font-serif-jp);
  font-size: 0.86rem;
}

.contact-promise p {
  color: #b8ccd4;
  font-size: 0.75rem;
  line-height: 1.7;
}

.contact-promise strong {
  color: var(--norren-surface);
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 22px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  color: var(--norren-ink);
  background: var(--norren-surface);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.18);
}

.contact-form .form-botcheck {
  display: none;
}

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

.contact-form label:not(.checkbox) {
  display: grid;
  gap: 9px;
}

.contact-form label > span:first-child {
  font-size: 0.76rem;
  font-weight: 700;
}

.contact-form label em {
  margin-left: 6px;
  color: var(--norren-cedar-text);
  font-size: 0.64rem;
  font-style: normal;
}

.contact-form label small {
  margin-left: 6px;
  color: var(--norren-text-muted);
  font-size: 0.64rem;
  font-weight: 400;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--norren-border);
  border-radius: 3px;
  color: var(--norren-ink);
  background: #fff;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-form input:not([type="checkbox"]):not([type="hidden"]),
.contact-form select {
  height: auto;
  min-height: 48px;
  padding: 10px 13px;
  line-height: 1.4;
}

.contact-form textarea {
  min-height: 130px;
  padding: 12px 13px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--norren-blue-700);
  box-shadow: 0 0 0 3px rgba(175, 200, 210, 0.45);
}

.contact-form input[aria-invalid="true"],
.contact-form textarea[aria-invalid="true"],
.contact-form select[aria-invalid="true"] {
  border-color: #a43d34;
}

.contact-form textarea::placeholder {
  color: var(--norren-text-muted);
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--norren-text-muted);
  font-size: 0.72rem;
  cursor: pointer;
}

.checkbox input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 3px;
  accent-color: var(--norren-blue-700);
}

.checkbox a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.checkbox a:hover {
  color: var(--norren-blue-700);
}

.button--submit {
  width: 100%;
  margin-top: 2px;
  border: 0;
}

.button--submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-status {
  color: var(--norren-text-muted);
  font-size: 0.68rem;
  line-height: 1.65;
  text-align: center;
}

.form-status.is-error {
  color: #8f332d;
}

.form-status.is-ready {
  color: var(--norren-blue-700);
}

/* Footer */
.site-footer {
  color: var(--norren-paper);
  background: #0d2939;
}

.footer-grid {
  display: grid;
  padding-block: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  grid-template-columns: 1fr auto;
  gap: 80px;
}

.brand--footer .brand-name strong {
  color: var(--norren-paper);
}

.brand--footer .brand-name small {
  color: #b8ccd4;
}

.footer-grid > div > p {
  margin-top: 18px;
  color: #b8ccd4;
  font-family: var(--font-serif-jp);
  font-size: 0.9rem;
}

.footer-grid .footer-operator {
  margin-top: 9px;
  font-size: 0.68rem;
}

.footer-operator a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-grid nav {
  display: grid;
  align-content: center;
  grid-template-columns: repeat(2, minmax(110px, 1fr));
  gap: 12px 30px;
  color: #c9d8dd;
  font-size: 0.74rem;
}

.footer-grid nav a:hover {
  color: var(--norren-surface);
}

.footer-bottom {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  color: #8fabb7;
  font-size: 0.64rem;
  letter-spacing: 0.08em;
}

/* Reveal motion */
.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 800ms var(--ease-out),
    transform 800ms var(--ease-out);
}

.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-ready .service-grid .reveal:nth-child(2),
.reveal-ready .trigger-list .reveal:nth-child(2),
.reveal-ready .fit-list .reveal:nth-child(2) {
  transition-delay: 90ms;
}

.reveal-ready .service-grid .reveal:nth-child(3),
.reveal-ready .trigger-list .reveal:nth-child(3),
.reveal-ready .fit-list .reveal:nth-child(3) {
  transition-delay: 160ms;
}

.reveal-ready .service-grid .reveal:nth-child(4),
.reveal-ready .fit-list .reveal:nth-child(4) {
  transition-delay: 230ms;
}

/* Responsive */
@media (max-width: 1080px) {
  .hero-title {
    font-size: clamp(2.55rem, 5.6vw, 4rem);
  }

  .proof-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .proof-message {
    display: none !important;
  }

  .service-card--wide {
    grid-column: span 7;
  }

  .service-card {
    grid-column: span 5;
  }
}

@media (max-width: 1100px) {
  :root {
    --section-space: clamp(80px, 12vw, 112px);
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    z-index: 90;
    top: 82px;
    right: 0;
    left: 0;
    display: grid;
    max-height: calc(100dvh - 82px);
    align-content: start;
    gap: 0;
    padding: 24px var(--page-gutter) 40px;
    overflow-y: auto;
    border-bottom: 1px solid var(--norren-border);
    background: rgba(252, 251, 247, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 220ms ease,
      transform 280ms var(--ease-out);
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav > a:not(.button) {
    padding: 17px 4px;
    border-bottom: 1px solid var(--norren-border);
    font-size: 1rem;
  }

  .primary-nav > a:not(.button)::after {
    display: none;
  }

  .primary-nav .button {
    margin-top: 24px;
  }

  .hero {
    min-height: max(880px, 100svh);
    padding-top: 126px;
  }

  .hero-copy {
    width: min(68vw, 650px);
    max-width: 650px;
  }

  .hero-ship {
    top: 23%;
    right: -19%;
    bottom: 1%;
    width: 82vw;
    opacity: 0.84;
  }

  .hero::after {
    background: linear-gradient(
      90deg,
      rgba(6, 25, 27, 0.98) 0%,
      rgba(6, 25, 27, 0.9) 45%,
      rgba(6, 25, 27, 0.55) 68%,
      rgba(6, 25, 27, 0.2) 100%
    );
  }

  .problem-grid > .section-heading {
    grid-column: 2 / -1;
  }

  .problem-grid > .problem-copy {
    grid-column: 6 / -1;
  }

  .trigger-list {
    margin-top: 60px;
    grid-column: 1 / -1;
  }

  .trigger-list article {
    padding-inline: 22px;
  }

  .section-intro,
  .scope-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-intro {
    gap: 24px;
  }

  .section-intro > p {
    max-width: 620px;
  }

  .service-card--wide,
  .service-card {
    min-height: auto;
    grid-column: span 6;
    grid-row: auto;
  }

  .service-card--wide {
    min-height: 420px;
  }

  .service-card--accent {
    min-height: auto;
    padding-right: clamp(28px, 3vw, 38px);
  }

  .service-card--accent::after {
    display: none;
  }

  .service-card--wide > div:nth-child(2) {
    margin-block: 70px 42px;
  }

  .process-list li {
    grid-template-columns: 72px 1fr;
  }

  .process-output {
    margin-top: 8px;
    justify-self: start;
    grid-column: 2;
  }

  .scope-copy {
    max-width: 670px;
  }

  .faq-grid,
  .contact-grid {
    gap: 56px;
  }

  .faq-grid .section-heading,
  .contact-copy {
    position: static;
  }

  .footer-grid {
    gap: 50px;
  }
}

@media (max-width: 680px) {
  :root {
    --page-gutter: 20px;
  }

  html {
    scroll-padding-top: 76px;
  }

  .header-inner {
    height: 72px;
  }

  .brand-mark--small {
    width: 42px;
    height: 42px;
  }

  .brand-mark img {
    top: -127px;
    left: -46px;
    width: 336px;
  }

  .brand-name strong {
    font-size: 1rem;
  }

  .brand-name small {
    font-size: 0.56rem;
  }

  .primary-nav {
    top: 72px;
    max-height: calc(100dvh - 72px);
  }

  .hero {
    min-height: max(980px, 100svh);
    padding: 112px 0 80px;
  }

  .hero-grid {
    min-height: 790px;
    align-items: start;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
  }

  .hero-title {
    margin-top: 0;
    font-size: clamp(2.15rem, 10.6vw, 3rem);
    line-height: 1.34;
  }

  .hero-lead {
    max-width: 100%;
    margin-top: 24px;
    line-height: 1.9;
  }

  .hero-ship {
    top: 43%;
    right: -34%;
    bottom: -3%;
    left: -34%;
    width: auto;
    opacity: 0.55;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 15%, #000 89%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 15%, #000 89%, transparent 100%);
  }

  .hero-ship-meta {
    display: none;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(6, 25, 27, 0.98) 0%, rgba(6, 25, 27, 0.91) 57%, rgba(6, 25, 27, 0.38) 100%),
      linear-gradient(90deg, rgba(6, 25, 27, 0.62), transparent);
  }

  .hero-actions {
    display: grid;
    margin-top: 30px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-assurances {
    display: grid;
    gap: 8px;
    margin-top: 24px;
  }

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

  .proof-grid article {
    min-height: 112px;
    padding: 24px 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.13);
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .problem-grid {
    display: block;
  }

  .section--problem {
    min-height: auto;
  }

  .problem-grid > .section-heading h2 {
    font-size: clamp(2.25rem, 10vw, 3.25rem);
  }

  .problem-grid > .problem-copy {
    margin-top: 36px;
    padding-top: 0;
  }

  .trigger-list {
    display: block;
    margin-top: 54px;
  }

  .trigger-list article {
    min-height: auto;
    padding: 26px 20px 34px;
    border-right: 1px solid rgba(244, 241, 232, 0.2);
  }

  .trigger-list article + article {
    border-top: 0;
  }

  .service-grid {
    display: block;
    margin-top: 46px;
  }

  .service-card + .service-card {
    margin-top: 14px;
  }

  .service-card--wide {
    min-height: 470px;
  }

  .service-card--wide > div:nth-child(2) {
    margin-block: 76px 36px;
  }

  .service-card h3 {
    margin-top: 30px;
  }

  .process-list {
    margin-top: 54px;
  }

  .process-list::before {
    left: 20px;
  }

  .process-list li {
    padding: 32px 0;
    grid-template-columns: 44px 1fr;
    gap: 18px;
  }

  .process-marker {
    width: 40px;
    height: 40px;
  }

  .scope-grid {
    gap: 52px;
  }

  .scope-card {
    padding: 30px 22px;
  }

  .scope-card-header {
    display: grid;
  }

  .scope-card dl > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .fit-list li {
    grid-template-columns: 40px 1fr;
    gap: 12px;
  }

  .faq-list summary {
    min-height: 84px;
    font-size: 0.9rem;
  }

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

  .contact-form {
    padding: 28px 20px;
  }

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

  .footer-grid nav {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    display: grid;
    justify-content: start;
    gap: 4px;
    padding-block: 18px;
  }
}

@media (max-width: 390px) {
  .brand-name small {
    display: none;
  }
}

@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;
  }

  .reveal-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
