/* ————————————————————————————————
   MISAN & CO — warm editorial
   cream plaster · espresso · honey gold
———————————————————————————————— */

:root {
  --cream: #f3ecdf;
  --cream-deep: #eadfca;
  --espresso: #221710;
  --espresso-soft: #3a2b1f;
  --honey: #c98a2d;
  --honey-bright: #e0a33e;
  --clay: #a8633c;
  --line: rgba(34, 23, 16, 0.16);
  --line-light: rgba(243, 236, 223, 0.18);

  --serif: "Fraunces", Georgia, serif;
  --sans: "Archivo", Helvetica, sans-serif;

  --gutter: clamp(1.25rem, 4vw, 4rem);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--espresso);
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(0.95rem, 0.85rem + 0.3vw, 1.1rem);
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--honey); color: var(--cream); }

img, video { display: block; width: 100%; height: 100%; object-fit: cover; }

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

em {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "SOFT" 80, "WONK" 1;
}

/* ——— grain ——— */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 999;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='table' tableValues='0 0.06'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-2%, 3%); }
  40% { transform: translate(3%, -2%); }
  60% { transform: translate(-3%, -3%); }
  80% { transform: translate(2%, 2%); }
}

/* ——— preloader ——— */
.loader {
  position: fixed; inset: 0;
  z-index: 1000;
  background: var(--espresso);
  display: grid; place-items: center;
  transition: clip-path 0.9s var(--ease-out) 0.2s;
  clip-path: inset(0 0 0 0);
}
.loader.is-done { clip-path: inset(0 0 100% 0); }
.loader__mark {
  width: clamp(90px, 14vw, 150px);
  aspect-ratio: 3 / 4;
  border: 1px solid var(--honey);
  border-radius: 50vw 50vw 0 0;
  display: grid; place-items: center;
  animation: pulse 1.4s ease-in-out infinite;
}
.loader__amp {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--honey);
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
@keyframes pulse { 50% { border-color: var(--cream); transform: scale(1.04); } }

/* ——— nav ——— */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem var(--gutter);
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}
.nav.is-scrolled {
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
  padding-block: 0.7rem;
}
.nav__brand {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
}
.nav__brand .amp { font-style: italic; color: var(--honey); }
.nav__links {
  display: flex; gap: clamp(1rem, 3vw, 2.5rem);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
}
.nav__links a { position: relative; padding-block: 0.25rem; }
.nav__links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--espresso);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  padding: 0.65rem 1.3rem;
  border: 1px solid var(--espresso);
  border-radius: 50vw;
  transition: background 0.3s, color 0.3s;
}
.nav__cta:hover { background: var(--espresso); color: var(--cream); }

/* ——— hero ——— */
.hero {
  position: relative;
  min-height: 100svh;
  padding: clamp(5.5rem, 12vh, 8rem) var(--gutter) 6rem;
  display: flex; flex-direction: column; align-items: center;
}
.hero__est {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 500;
  margin-bottom: clamp(1.5rem, 4vh, 3rem);
}
.hero__est-rule { width: clamp(40px, 8vw, 110px); height: 1px; background: var(--espresso); display: inline-block; }

.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "SOFT" 40, "WONK" 0, "opsz" 144;
  font-size: clamp(4rem, 17vw, 15.5rem);
  line-height: 0.82;
  letter-spacing: -0.03em;
  text-align: center;
  user-select: none;
}
.hero__row { display: flex; align-items: center; justify-content: center; gap: 0.05em; }
.hero__row--2 { margin-top: 0.04em; }
.hero__word {
  display: inline-block;
  animation: rise 1.1s var(--ease-out) both;
}
.hero__row--1 .hero__word:last-child { animation-delay: 0.08s; }
.hero__amp {
  font-style: italic;
  color: var(--honey);
  font-variation-settings: "SOFT" 100, "WONK" 1;
  font-size: 0.82em;
  margin-right: 0.06em;
  animation: rise 1.1s var(--ease-out) 0.16s both;
}
.hero__row--2 .hero__word { animation-delay: 0.22s; }
.hero__dot {
  width: 0.12em; height: 0.12em;
  background: var(--clay);
  border-radius: 50%;
  align-self: flex-end;
  margin-bottom: 0.06em;
  animation: rise 1.1s var(--ease-out) 0.3s both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(0.45em) rotate(2deg); }
  to { opacity: 1; transform: none; }
}

/* small arch inside the wordmark */
.hero__arch-slot { display: inline-flex; align-items: center; padding: 0 0.04em; }
.hero__arch {
  overflow: hidden;
  border-radius: 50vw 50vw 0 0;
  background: var(--cream-deep);
}
.hero__arch--sm {
  width: 0.62em; height: 0.85em;
  display: inline-block;
  transform: translateY(0.02em);
  animation: archGrow 1.3s var(--ease-out) 0.5s both;
}
@keyframes archGrow {
  from { clip-path: inset(100% 0 0 0); }
  to { clip-path: inset(0 0 0 0); }
}

.hero__stage {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin-top: clamp(-2.5rem, -4vw, -1rem);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: var(--gutter);
}
.hero__arch--main {
  width: clamp(240px, 30vw, 400px);
  aspect-ratio: 3 / 4.4;
  margin-inline: auto;
  grid-column: 2;
  box-shadow: 0 40px 80px -30px rgba(34, 23, 16, 0.45);
  animation: archGrow 1.4s var(--ease-out) 0.65s both;
}
.hero__arch--main :is(img, video) { transform: scale(1.12); will-change: transform; }

.hero__tag {
  font-size: clamp(0.85rem, 1.1vw, 1.05rem);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 500;
  line-height: 1.5;
  padding-bottom: 2.5rem;
}
.hero__tag span { display: block; }
.hero__tag--left { text-align: right; grid-column: 1; grid-row: 1; }
.hero__tag--right { grid-column: 3; grid-row: 1; }
.hero__tag--right em {
  font-size: 1.7em;
  text-transform: none;
  letter-spacing: 0;
  color: var(--clay);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem; right: var(--gutter);
}
.hero__scroll-ring {
  position: relative;
  display: grid; place-items: center;
  width: 92px; height: 92px;
}
.hero__scroll-ring svg {
  position: absolute; inset: 0;
  animation: spin 14s linear infinite;
}
.hero__scroll-ring text {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  fill: var(--espresso);
  font-family: var(--sans);
}
.hero__scroll-arrow { font-size: 1.3rem; transition: transform 0.3s var(--ease-out); }
.hero__scroll:hover .hero__scroll-arrow { transform: translateY(5px); }
@keyframes spin { to { transform: rotate(360deg); } }

/* ——— marquee ——— */
.marquee {
  overflow: hidden;
  background: var(--espresso);
  color: var(--cream);
  padding: 0.9rem 0;
  transform: rotate(-1.2deg) scale(1.02);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee__track span {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  white-space: nowrap;
  padding-right: 0.5em;
  font-variation-settings: "SOFT" 70, "WONK" 1;
}
.marquee__track i { font-style: normal; color: var(--honey-bright); padding: 0 0.4em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ——— shared ——— */
.kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: var(--clay);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.kicker--light { color: var(--honey-bright); }

/* ——— story ——— */
.story { padding: clamp(5rem, 12vw, 10rem) var(--gutter); }
.story__head { max-width: 1200px; margin: 0 auto; }
.story__line {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 14em;
}
.story__line em { color: var(--clay); }
.story__body {
  max-width: 1200px;
  margin: clamp(3rem, 6vw, 5rem) auto 0;
  display: grid;
  grid-template-columns: minmax(260px, 5fr) 7fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
.story__img {
  border-radius: 50vw 50vw 0 0;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  position: sticky;
  top: 14vh;
}
.story__img :is(img, video) { transform: scale(1.06); transition: transform 1.2s var(--ease-out); }
.story__img:hover :is(img, video) { transform: scale(1); }
.story__img figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2.2rem 1.4rem 1.1rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--cream);
  background: linear-gradient(transparent, rgba(34, 23, 16, 0.75));
}
.story__text { padding-top: clamp(0rem, 3vw, 3rem); }
.story__text p {
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.7;
  max-width: 32em;
  margin-bottom: 1.5em;
  font-weight: 350;
}
.story__stats {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}
.story__stats > div {
  padding: 1.5rem 1rem 1.5rem 0;
  border-bottom: 1px solid var(--line);
}
.story__stats dt {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 450;
  line-height: 1;
  color: var(--honey);
  font-variation-settings: "SOFT" 50;
}
.story__stats dd {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 0.5rem;
  color: var(--espresso-soft);
}

/* ——— services ——— */
.services {
  position: relative;
  background: var(--espresso);
  color: var(--cream);
  padding: clamp(5rem, 12vw, 9rem) var(--gutter);
  border-radius: clamp(1.5rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3rem) 0 0;
}
.services__head { max-width: 1300px; margin: 0 auto clamp(3rem, 6vw, 5rem); }
.services__title {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.services__list { list-style: none; max-width: 1300px; margin: 0 auto; }
.service { border-top: 1px solid var(--line-light); }
.service:last-child { border-bottom: 1px solid var(--line-light); }
.service a {
  display: grid;
  grid-template-columns: auto 1fr minmax(0, 38%) auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
  padding: clamp(1.6rem, 3.5vw, 2.6rem) 0.5rem;
  transition: padding-left 0.4s var(--ease-out);
}
.service a:hover { padding-left: clamp(1rem, 2vw, 2rem); }
.service__no {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--honey-bright);
  font-weight: 600;
}
.service__name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 3.6vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  transition: color 0.3s;
}
.service a:hover .service__name { color: var(--honey-bright); }
.service__desc {
  font-size: 0.92rem;
  color: rgba(243, 236, 223, 0.65);
  line-height: 1.55;
}
.service__arrow {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  transition: transform 0.35s var(--ease-out);
}
.service a:hover .service__arrow { transform: translateX(8px) rotate(-45deg); }

.services__preview {
  position: fixed;
  z-index: 60;
  width: clamp(180px, 17vw, 260px);
  aspect-ratio: 3 / 4;
  border-radius: 50vw 50vw 0 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.85) rotate(3deg);
  transition: opacity 0.3s, transform 0.4s var(--ease-out);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
}
.services__preview.is-on { opacity: 1; transform: scale(1) rotate(0deg); }

/* ——— space / gallery ——— */
.space {
  background: var(--espresso);
  color: var(--cream);
  padding: 0 0 clamp(5rem, 10vw, 8rem);
}
.space__head {
  max-width: 1300px;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) var(--gutter) clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 1rem;
}
.space__head .kicker { grid-column: 1 / -1; color: var(--honey-bright); }
.space__title {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1.04;
}
.space__title em { color: var(--honey-bright); }
.space__hint {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(243, 236, 223, 0.5);
  padding-bottom: 0.6rem;
}
.space__rail {
  display: flex;
  gap: clamp(1rem, 2vw, 1.8rem);
  overflow-x: auto;
  padding: 0 var(--gutter) 1.5rem;
  scroll-snap-type: x mandatory;
  cursor: grab;
  scrollbar-width: none;
}
.space__rail::-webkit-scrollbar { display: none; }
.space__rail.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.card {
  position: relative;
  flex: 0 0 clamp(230px, 26vw, 360px);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 10px;
  scroll-snap-align: start;
  align-self: center;
}
.card--tall { flex-basis: clamp(250px, 29vw, 400px); aspect-ratio: 3 / 4.6; }
.card--arch { border-radius: 50vw 50vw 0 0; }
.card :is(img, video) {
  transform: scale(1.12);
  transition: transform 1s var(--ease-out);
}
.card:hover :is(img, video) { transform: scale(1.02); }
.card figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2.5rem 1.2rem 1rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--cream);
  background: linear-gradient(transparent, rgba(20, 12, 7, 0.7));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s var(--ease-out);
}
.card:hover figcaption { opacity: 1; transform: none; }

/* ——— testimonials ——— */
.words {
  background: var(--espresso);
  color: var(--cream);
  text-align: center;
  padding: clamp(2rem, 6vw, 5rem) var(--gutter) clamp(5rem, 10vw, 8rem);
  border-top: 1px solid var(--line-light);
}
.words .kicker { text-align: center; }
.words__stage {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  min-height: clamp(16rem, 30vw, 19rem);
  display: grid;
}
.words__quote {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s, transform 0.7s var(--ease-out);
  pointer-events: none;
}
.words__quote.is-active { opacity: 1; transform: none; pointer-events: auto; }
.words__quote p {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(1.5rem, 3.4vw, 2.7rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-variation-settings: "SOFT" 60;
}
.words__quote cite {
  display: block;
  margin-top: 1.6rem;
  font-style: normal;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--honey-bright);
}
.words__dots {
  display: flex; justify-content: center; gap: 0.7rem;
  margin-top: 2.5rem;
}
.words__dots button {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 1px solid var(--cream);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.words__dots button.is-active { background: var(--honey-bright); border-color: var(--honey-bright); transform: scale(1.25); }

/* ——— booking cta ——— */
.book {
  position: relative;
  padding: clamp(6rem, 13vw, 11rem) var(--gutter);
  text-align: center;
  background:
    radial-gradient(60% 50% at 50% 0%, var(--cream-deep), transparent),
    var(--cream);
  overflow: clip;
}
.book__arch {
  width: clamp(170px, 18vw, 250px);
  aspect-ratio: 3 / 4;
  margin: 0 auto clamp(-1.5rem, -2vw, -1rem);
  border-radius: 50vw 50vw 0 0;
  overflow: hidden;
  box-shadow: 0 30px 70px -25px rgba(34, 23, 16, 0.45);
  rotate: -2deg;
}
.book__title {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(2.8rem, 8.5vw, 7.5rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin-top: 2.5rem;
}
.book__title span { display: block; }
.book__title em { color: var(--honey); font-variation-settings: "SOFT" 90, "WONK" 1; }
.book__actions {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.btn {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  padding: 1.1rem 2.4rem;
  border-radius: 50vw;
  transition: transform 0.3s var(--ease-out), background 0.3s, color 0.3s, box-shadow 0.3s;
}
.btn--solid {
  background: var(--espresso);
  color: var(--cream);
  box-shadow: 0 14px 30px -12px rgba(34, 23, 16, 0.5);
}
.btn--solid:hover { background: var(--honey); transform: translateY(-3px); }
.btn--ghost { border: 1px solid var(--espresso); }
.btn--ghost:hover { background: var(--espresso); color: var(--cream); transform: translateY(-3px); }
.book__note {
  margin-top: 1.8rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--espresso-soft);
  opacity: 0.7;
}

/* ——— footer ——— */
.footer {
  background: var(--espresso);
  color: var(--cream);
  padding: clamp(4rem, 8vw, 6rem) var(--gutter) 1.5rem;
  border-radius: clamp(1.5rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3rem) 0 0;
  overflow: clip;
}
.footer__grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.footer__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--honey-bright);
  margin-bottom: 0.8rem;
}
.footer__col p { font-size: 0.95rem; line-height: 1.7; }
.footer__col a { border-bottom: 1px solid transparent; transition: border-color 0.3s; }
.footer__col a:hover { border-color: var(--honey-bright); }
.footer__wordmark {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3.5rem, 14.5vw, 13rem);
  line-height: 0.9;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: -0.12em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(243, 236, 223, 0.35);
  user-select: none;
  transition: color 0.6s, -webkit-text-stroke-color 0.6s;
}
.footer__wordmark:hover { color: var(--honey); -webkit-text-stroke-color: var(--honey); }
.footer__wordmark span { font-style: italic; }
.footer__legal {
  text-align: center;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.5;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-light);
}

/* ——— reveals ——— */
.reveal, .reveal-line span {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.is-in, .reveal-line.is-in span { opacity: 1; transform: none; }
.reveal-line span:nth-child(2) { transition-delay: 0.1s; }
.reveal-line span:nth-child(3) { transition-delay: 0.2s; }

/* stagger siblings */
.story__stats .reveal.is-in:nth-child(2) { transition-delay: 0.08s; }
.story__stats .reveal.is-in:nth-child(3) { transition-delay: 0.16s; }
.story__stats .reveal.is-in:nth-child(4) { transition-delay: 0.24s; }
.services__list .reveal.is-in:nth-child(2) { transition-delay: 0.07s; }
.services__list .reveal.is-in:nth-child(3) { transition-delay: 0.14s; }
.services__list .reveal.is-in:nth-child(4) { transition-delay: 0.21s; }

html.noanim .reveal, html.noanim .reveal-line span { opacity: 1; transform: none; transition: none; }
html.noanim .loader { display: none; }
html.noanim { scroll-behavior: auto; }
html.noanim .hero { min-height: 0; }
html.noanim .hero__word, html.noanim .hero__amp, html.noanim .hero__dot,
html.noanim .hero__arch--sm, html.noanim .hero__arch--main { animation: none; }

/* ——— responsive ——— */
.br-m { display: none; }

@media (max-width: 900px) {
  .nav__links { display: none; }
  .hero__stage { grid-template-columns: 1fr; justify-items: center; gap: 1.5rem; }
  .hero__arch--main { grid-column: 1; grid-row: 1; }
  .hero__tag { padding-bottom: 0; text-align: center !important; }
  .hero__tag--left { grid-column: 1; grid-row: 2; }
  .hero__tag--right { grid-column: 1; grid-row: 3; }
  .hero__scroll { display: none; }
  .story__body { grid-template-columns: 1fr; }
  .story__img { position: relative; top: 0; max-width: 420px; }
  .service a { grid-template-columns: auto 1fr auto; }
  .service__desc { display: none; }
  .br-m { display: inline; }
  .services__preview { display: none; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .hero { padding-bottom: 3rem; }
  .hero__title { font-size: clamp(3.4rem, 19vw, 5rem); }
  .book__actions { flex-direction: column; align-items: stretch; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal, .reveal-line span { opacity: 1; transform: none; }
}
