/* ========================================
   TORELIO Builder LP
   ======================================== */

:root {
  --ink: #1a1c1e;
  --ink-soft: #2a2c2e;
  --paper: #ffffff;
  --paper-alt: #f4f2ef;
  --gold: #b08d57;
  --gold-hover: #9a7848;
  --gold-pale: #c9b08a;
  --gold-bg: #f3eadb;
  --muted: #6b6762;
  --line: #e6e1da;
  --line-green: #06c755;
  --line-green-hover: #05b34c;
  --white: #ffffff;
  --header-h: 72px;
  --container: 1200px;
  --font-serif: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --font-sans: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-en: "Cormorant Garamond", "Noto Serif JP", serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-card: 0 12px 40px rgba(26, 28, 30, 0.08);
}

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

html {
  scroll-behavior: auto;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 1000;
  padding: 8px 16px;
  background: var(--gold);
  color: var(--white);
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.3;
  white-space: nowrap;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), opacity 0.35s var(--ease);
}

.btn--sm {
  min-height: 40px;
  padding: 0 16px;
  font-size: 12px;
}

.btn--lg {
  min-height: 56px;
  padding: 0 36px;
  font-size: 14px;
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
}

.btn--gold:hover {
  background: var(--gold-hover);
}

.btn--ghost {
  background: rgba(26, 28, 30, 0.28);
  border-color: rgba(255, 255, 255, 0.85);
  color: var(--white);
}

.btn--ghost:hover {
  background: var(--white);
  color: var(--ink);
}

.btn--ghost-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.btn--ghost-light:hover {
  background: var(--white);
  color: var(--ink);
}

.btn--outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--ink);
}

.btn--outline:hover {
  background: var(--gold);
  color: var(--white);
}

.btn--line {
  background: var(--line-green);
  color: var(--white);
  min-height: 56px;
  padding: 0 28px;
  font-size: 14px;
}

.btn--line:hover {
  background: var(--line-green-hover);
}

.btn__line-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ---------- Header ---------- */

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  color: var(--white);
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.42) 0%, transparent 100%);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.header.is-scrolled,
.header.is-open {
  background: rgba(26, 28, 30, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 100%;
  width: min(100% - 32px, 1320px);
  margin-inline: auto;
}

.logo {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.28em;
  line-height: 1;
  flex-shrink: 0;
}

.logo--footer {
  color: var(--white);
  font-size: 24px;
}

.nav {
  display: none;
  flex: 1;
  justify-content: center;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__list a {
  font-size: 13px;
  letter-spacing: 0.04em;
  opacity: 0.88;
  transition: opacity 0.3s;
}

.nav__list a:hover {
  opacity: 1;
}

.header__aside {
  display: none;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.header__tel {
  text-align: right;
  line-height: 1.25;
}

.header__hours {
  display: block;
  font-size: 10px;
  letter-spacing: 0.06em;
  opacity: 0.7;
  margin-bottom: 2px;
}

.header__tel a {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.menu-btn {
  margin-left: auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  gap: 6px;
  position: relative;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.header.is-open .menu-btn span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.header.is-open .menu-btn span:nth-child(2) {
  opacity: 0;
}

.header.is-open .menu-btn span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ---------- Hero ---------- */

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

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 18s var(--ease) forwards;
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(18, 18, 18, 0.62) 0%, rgba(18, 18, 18, 0.28) 48%, rgba(18, 18, 18, 0.18) 100%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.28) 0%, transparent 28%, rgba(18, 18, 18, 0.35) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
  padding: 0 0 88px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 5.6vw, 52px);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.06em;
}

.hero__lead {
  margin-top: 18px;
  font-size: 14px;
  letter-spacing: 0.06em;
  opacity: 0.92;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

@media (max-width: 420px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}

/* ---------- Sections ---------- */

.section {
  padding: 80px 0;
}

.section--white {
  background: var(--paper);
}

.section--alt {
  background: var(--paper-alt);
}

.section--dark {
  background: var(--ink);
  color: var(--white);
}

.section-head__en {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-head__ja {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.section-head--center {
  text-align: center;
  margin-bottom: 48px;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

/* ---------- Why ---------- */

.why-grid {
  display: grid;
  gap: 36px;
}

.why-card__media {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin-bottom: 20px;
}

.why-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.why-card:hover .why-card__media img {
  transform: scale(1.05);
}

.why-card__num {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 10px;
}

.why-card__title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin-bottom: 10px;
}

.why-card__text {
  font-size: 13.5px;
  color: var(--muted);
  letter-spacing: 0.03em;
}

/* ---------- Works ---------- */

.works-grid {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}

.works-card__media {
  overflow: hidden;
  aspect-ratio: 16 / 11;
  margin-bottom: 12px;
}

.works-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.works-card:hover .works-card__media img {
  transform: scale(1.06);
}

.works-card__cat {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 4px;
}

.works-card__title {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

/* ---------- Before / After ---------- */

.ba {
  display: grid;
  gap: 40px;
}

.ba__text {
  margin: 20px 0 28px;
  color: var(--muted);
  font-size: 14px;
  max-width: 36em;
}

.compare {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10.5;
  user-select: none;
  background: #ddd;
}

.compare img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.compare__after {
  display: block;
}

.compare__before-wrap {
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  overflow: hidden;
}

.compare__before {
  width: var(--compare-w, 100cqw);
  max-width: none;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.78) saturate(0.72);
}

.compare {
  container-type: inline-size;
}

.compare__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 2;
}

.compare__knob {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.compare__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 3;
  appearance: none;
  background: transparent;
}

.compare__label {
  position: absolute;
  bottom: 14px;
  z-index: 2;
  padding: 4px 10px;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--white);
  background: rgba(26, 28, 30, 0.55);
  pointer-events: none;
}

.compare__label--before {
  left: 14px;
}

.compare__label--after {
  right: 14px;
}

/* ---------- Service ---------- */

.service-grid {
  display: grid;
  gap: 28px 20px;
  margin-top: 40px;
}

.service-card {
  text-align: center;
}

.service-card__media {
  overflow: hidden;
  aspect-ratio: 1 / 0.86;
  margin-bottom: 16px;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.service-card:hover .service-card__media img {
  transform: scale(1.05);
}

.service-card__title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.service-card__text {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.03em;
  line-height: 1.8;
}

/* ---------- Split (Voice / Staff) ---------- */

.split {
  display: grid;
  gap: 40px;
}

.split__text {
  margin: 18px 0 28px;
  color: var(--muted);
  font-size: 14px;
}

.voice-grid,
.staff-grid {
  display: grid;
  gap: 20px;
}

.voice-card {
  background: var(--paper);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.voice-card__media {
  overflow: hidden;
  aspect-ratio: 16 / 11;
}

.voice-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.voice-card:hover .voice-card__media img {
  transform: scale(1.05);
}

.voice-card__body {
  padding: 0 0 22px;
}

.voice-card__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.03em;
  background: var(--gold-bg);
  padding: 14px 18px;
  margin-bottom: 14px;
}

.voice-card__text {
  padding: 0 18px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}

.voice-card__meta {
  padding: 0 18px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

.staff-card__media {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  margin-bottom: 12px;
}

.staff-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: grayscale(0.12);
  transition: transform 1s var(--ease), filter 0.6s;
}

.staff-card:hover .staff-card__media img {
  transform: scale(1.05);
  filter: grayscale(0);
}

.staff-card__role {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 2px;
}

.staff-card__name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

/* ---------- Flow ---------- */

.flow {
  display: grid;
  gap: 28px;
  margin-top: 48px;
}

.flow__item {
  position: relative;
  text-align: center;
  padding: 0 8px;
}

.flow__icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  color: var(--gold);
}

.flow__icon svg {
  width: 52px;
  height: 52px;
}

.flow__step {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 6px;
}

.flow__title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.flow__text {
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.03em;
  line-height: 1.8;
}

/* ---------- FAQ ---------- */

.faq-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
}

.faq-grid {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  transition: border-color 0.35s var(--ease);
}

.faq-item:hover,
.faq-item.is-open {
  border-color: var(--gold-pale);
}

.section--white .faq-item {
  box-shadow: 0 1px 0 rgba(26, 28, 30, 0.02);
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.faq-item__icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.faq-item__icon::before {
  inset: 7px 0 auto;
  height: 1.5px;
}

.faq-item__icon::after {
  inset: 0 auto 0 7px;
  width: 1.5px;
}

.faq-item.is-open .faq-item__icon::after {
  opacity: 0;
  transform: rotate(90deg);
}

.faq-item__a {
  display: none;
  padding: 0 20px 18px;
}

.faq-item.is-open .faq-item__a {
  display: block;
}

.faq-item__a p {
  font-size: 13.5px;
  color: var(--muted);
  padding-top: 4px;
  border-top: 1px solid var(--line);
}

/* ---------- CTA ---------- */

.cta {
  position: relative;
  overflow: hidden;
  color: var(--white);
  min-height: 420px;
  display: grid;
  align-items: center;
}

.cta__media,
.cta__overlay {
  position: absolute;
  inset: 0;
}

.cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
}

.cta__overlay {
  background: rgba(18, 18, 18, 0.62);
}

.cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 36px;
  padding: 88px 0;
}

.cta__title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.4vw, 36px);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.55;
  margin-bottom: 12px;
}

.cta__lead {
  font-size: 14px;
  opacity: 0.88;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}

.cta__hours {
  font-size: 12px;
  opacity: 0.75;
  margin-bottom: 6px;
}

.cta__tel a {
  display: block;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

/* ---------- Footer ---------- */

.footer {
  background: #000;
  color: rgba(255, 255, 255, 0.82);
  padding: 56px 0 28px;
}

.footer__inner {
  display: grid;
  gap: 32px;
}

.footer__company {
  margin-top: 14px;
  font-size: 13px;
  letter-spacing: 0.06em;
}

.footer__address {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.8;
  opacity: 0.7;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.footer__nav a {
  opacity: 0.75;
  transition: opacity 0.3s;
}

.footer__nav a:hover {
  opacity: 1;
}

.footer__sns {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: var(--white);
  opacity: 0.8;
}

.footer__sns:hover {
  opacity: 1;
}

.footer__copy {
  width: min(100% - 40px, var(--container));
  margin: 36px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
  letter-spacing: 0.08em;
  opacity: 0.5;
}

/* ---------- Reveal ---------- */

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

html.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

html.js .reveal.is-in {
  opacity: 1;
  transform: none;
}

.why-card.reveal:nth-child(2),
.works-card.reveal:nth-child(2),
.service-card.reveal:nth-child(2),
.voice-card.reveal:nth-child(2),
.staff-card.reveal:nth-child(2),
.flow__item.reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.why-card.reveal:nth-child(3),
.works-card.reveal:nth-child(3),
.service-card.reveal:nth-child(3),
.voice-card.reveal:nth-child(3),
.staff-card.reveal:nth-child(3),
.flow__item.reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.works-card.reveal:nth-child(4),
.service-card.reveal:nth-child(4),
.staff-card.reveal:nth-child(4),
.flow__item.reveal:nth-child(4) {
  transition-delay: 0.24s;
}

.works-card.reveal:nth-child(5),
.service-card.reveal:nth-child(5),
.staff-card.reveal:nth-child(5),
.flow__item.reveal:nth-child(5) {
  transition-delay: 0.32s;
}

.flow__item.reveal:nth-child(6) {
  transition-delay: 0.4s;
}

/* ---------- Tablet ---------- */

@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

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

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

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

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

  .flow {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 12px;
  }

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

  .cta__inner {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
  }
}

@media (min-width: 900px) {
  :root {
    --header-h: 80px;
  }

  .section {
    padding: 112px 0;
  }

  .container {
    width: min(100% - 64px, var(--container));
  }

  .hero__content {
    align-self: center;
    padding: 80px 0 0;
  }

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

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

  .staff-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .ba {
    grid-template-columns: 0.38fr 0.62fr;
    gap: 56px;
    align-items: center;
  }

  .split {
    grid-template-columns: 0.28fr 0.72fr;
    gap: 48px;
    align-items: start;
  }

  .flow {
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
  }

  .flow__item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 30px;
    right: -6px;
    width: 10px;
    height: 10px;
    border-top: 1px solid var(--gold);
    border-right: 1px solid var(--gold);
    transform: rotate(45deg);
    opacity: 0.7;
  }

  .footer__inner {
    grid-template-columns: auto 1fr auto;
    align-items: start;
    gap: 40px;
  }

  .footer__nav {
    justify-content: flex-end;
    padding-top: 8px;
  }
}

@media (min-width: 1100px) {
  .nav,
  .header__aside {
    display: flex;
  }

  .menu-btn {
    display: none;
  }

  .works-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }

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

  .why-grid {
    gap: 36px;
  }
}

@media (min-width: 1280px) {
  .container {
    width: min(100% - 80px, var(--container));
  }

  .hero__content {
    width: min(100% - 80px, var(--container));
  }
}

/* ---------- Mobile menu ---------- */

@media (max-width: 1099px) {
  .nav {
    display: flex;
    position: fixed;
    inset: var(--header-h) 0 0;
    background: rgba(18, 18, 18, 0.97);
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    align-items: flex-start;
    padding: 40px 32px;
  }

  .header.is-open .nav {
    transform: none;
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

  .nav__list a {
    font-size: 18px;
    letter-spacing: 0.08em;
  }

  body.is-locked {
    overflow: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  html.js .reveal {
    opacity: 1;
    transform: none;
  }

  .hero__media img {
    transform: none;
  }
}
