:root {
  --ink: #18201f;
  --ink-deep: #0f1514;
  --ink-soft: #26322f;
  --cloud: #e8eeec;
  --cloud-deep: #ced8d4;
  --paper: #f7f8f5;
  --white: #ffffff;
  --oxide: #8b3f32;
  --oxide-dark: #6d2f26;
  --garden: #2f5a47;
  --brass: #b58a3b;
  --muted: #64706c;
  --line: #cdd5d2;
  --error: #b42920;
  --display: "Bodoni Moda", Georgia, serif;
  --body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --telugu: "Anek Telugu", sans-serif;
  --container: min(100% - 48px, 1240px);
  --section: clamp(80px, 10vw, 144px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 24px 70px rgba(24, 32, 31, 0.14);
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
select {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.75rem, 5vw, 5.4rem);
}

h3 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  min-height: 88px;
  padding-inline: clamp(24px, 4vw, 64px);
  color: var(--white);
  transition: background-color 240ms ease, box-shadow 240ms ease, min-height 240ms ease;
}

.site-header.is-scrolled,
.site-header.menu-visible {
  min-height: 76px;
  background: rgba(15, 21, 20, 0.96);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: 112px;
  height: 68px;
  align-items: center;
}

.brand img,
.footer-brand img {
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
}

.primary-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
}

.primary-nav a {
  position: relative;
  padding-block: 14px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-nav__mobile-cta {
  display: none;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 0 24px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease;
}

.header-cta:hover {
  background: var(--white);
  color: var(--ink);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: max(800px, 100dvh);
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background: var(--ink-deep);
  isolation: isolate;
  overflow: hidden;
}

.hero__image,
.hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  z-index: -3;
  object-fit: cover;
  object-position: center 45%;
  transform: scale(1.04);
  animation: hero-settle 1.4s var(--ease) forwards;
}

.hero__veil {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(10, 16, 15, 0.8) 0%, rgba(10, 16, 15, 0.46) 55%, rgba(10, 16, 15, 0.2) 100%),
    linear-gradient(0deg, rgba(10, 16, 15, 0.42) 0%, transparent 48%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: clamp(128px, 12vh, 176px);
  padding-bottom: clamp(156px, 18vh, 200px);
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--oxide);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #e4c98f;
}

.hero h1 {
  max-width: 1180px;
  margin-bottom: 32px;
  font-size: clamp(3.7rem, 6.2vw, 6.65rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.hero h1 em {
  color: #e4c98f;
  font-weight: 400;
}

.hero__intro {
  max-width: 610px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.hero__actions,
.form-submit {
  display: flex;
  align-items: center;
  gap: 26px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 0 28px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms var(--ease);
}

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

.button--oxide {
  background: var(--oxide);
  color: var(--white);
}

.button--oxide:hover {
  background: var(--oxide-dark);
}

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

.button--paper:hover {
  background: var(--cloud);
}

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

.button--ink:hover {
  background: var(--garden);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  color: var(--oxide);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  transition: transform 180ms var(--ease);
}

.text-link:hover svg {
  transform: translateX(4px);
}

.text-link--light {
  color: var(--white);
}

.hero__facts {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 clamp(110px, 12vw, 190px);
  background: rgba(15, 21, 20, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero__facts div {
  min-height: 102px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding: 18px clamp(18px, 2.5vw, 38px);
}

.hero__facts div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.hero__facts strong {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.2vw, 2.25rem);
  font-weight: 400;
}

.hero__facts span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__scroll {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 34px;
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero__scroll svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.scroll-story {
  position: relative;
  height: 520vh;
  background: var(--ink-deep);
  color: var(--white);
}

.scroll-story__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 650px;
  overflow: hidden;
  isolation: isolate;
}

.scroll-story__poster,
.scroll-story__canvas,
.scroll-story__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.scroll-story__poster,
.scroll-story__canvas {
  object-fit: cover;
}

.scroll-story__poster {
  z-index: -3;
  transition: opacity 420ms var(--ease);
}

.scroll-story__canvas {
  z-index: -2;
  opacity: 0;
  transition: opacity 420ms var(--ease);
}

.scroll-story__veil {
  z-index: -1;
  background: rgba(8, 13, 12, 0.42);
}

.scroll-story.is-ready .scroll-story__poster {
  opacity: 0;
}

.scroll-story.is-ready .scroll-story__canvas {
  opacity: 1;
}

.scroll-story__chrome {
  position: relative;
  height: 100%;
}

.scroll-story__heading {
  position: absolute;
  top: clamp(105px, 15vh, 170px);
  left: 0;
}

.scroll-story__heading .eyebrow {
  margin-bottom: 16px;
}

.scroll-story__heading h2 {
  max-width: 780px;
  color: var(--white);
  font-size: clamp(3.2rem, 6vw, 6.6rem);
  line-height: 0.91;
  text-shadow: 0 3px 32px rgba(0, 0, 0, 0.32);
}

.scroll-story__steps {
  position: absolute;
  bottom: clamp(92px, 12vh, 142px);
  left: 0;
  width: min(640px, 72vw);
  min-height: 255px;
}

.scroll-story__step {
  position: absolute;
  inset: auto 0 0;
  border-left: 2px solid rgba(228, 201, 143, 0.9);
  padding: 26px 30px;
  background: rgba(15, 21, 20, 0.76);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  visibility: hidden;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 320ms var(--ease), transform 320ms var(--ease), visibility 0s linear 320ms;
  pointer-events: none;
}

.scroll-story__step.is-active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.scroll-story__step p {
  margin-bottom: 11px;
  color: #e4c98f;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-story__step h3 {
  max-width: 18ch;
  margin-bottom: 13px;
  font-size: clamp(2rem, 3.2vw, 3.55rem);
  line-height: 0.98;
}

.scroll-story__step span {
  display: block;
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.scroll-story__rail {
  position: absolute;
  right: 0;
  bottom: 53px;
  left: 0;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
}

.scroll-story__rail-fill {
  display: block;
  width: 100%;
  height: 100%;
  background: #e4c98f;
  transform: scaleX(var(--story-progress, 0));
  transform-origin: left center;
  will-change: transform;
}

.scroll-story__status,
.scroll-story__hint {
  position: absolute;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-story__status {
  top: clamp(116px, 16vh, 182px);
  right: 0;
  transition: opacity 180ms ease;
}

.scroll-story.is-ready .scroll-story__status {
  opacity: 0;
}

.scroll-story__hint {
  right: 0;
  bottom: 68px;
}

.scroll-story.is-static {
  height: auto;
}

.scroll-story.is-static .scroll-story__sticky {
  position: relative;
  height: auto;
  min-height: 0;
  padding-block: 110px;
}

.scroll-story.is-static .scroll-story__poster {
  opacity: 0.34;
}

.scroll-story.is-static .scroll-story__canvas,
.scroll-story.is-static .scroll-story__status,
.scroll-story.is-static .scroll-story__hint,
.scroll-story.is-static .scroll-story__rail {
  display: none;
}

.scroll-story.is-static .scroll-story__chrome {
  height: auto;
}

.scroll-story.is-static .scroll-story__heading,
.scroll-story.is-static .scroll-story__steps,
.scroll-story.is-static .scroll-story__step {
  position: relative;
  inset: auto;
}

.scroll-story.is-static .scroll-story__steps {
  display: grid;
  width: 100%;
  min-height: 0;
  gap: 14px;
  margin-top: 100px;
}

.scroll-story.is-static .scroll-story__step {
  visibility: visible;
  opacity: 1;
  transform: none;
}

.section-heading {
  margin-bottom: clamp(48px, 7vw, 88px);
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.7fr);
  align-items: end;
  gap: 8vw;
}

.section-heading--split > p {
  max-width: 42ch;
  margin-bottom: 8px;
  color: var(--muted);
}

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

.venue-canvas {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(320px, 0.65fr);
  min-height: 700px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.venue-map {
  position: relative;
  min-height: 700px;
  overflow: hidden;
}

.venue-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 18, 17, 0.2);
  pointer-events: none;
}

.venue-map > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-point {
  position: absolute;
  z-index: 2;
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  border: 0;
  padding: 8px 12px 8px 8px;
  background: rgba(247, 248, 245, 0.94);
  color: var(--ink);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  transition: color 180ms ease, background-color 180ms ease, transform 180ms var(--ease);
}

.map-point:hover,
.map-point[aria-pressed="true"] {
  background: var(--oxide);
  color: var(--white);
  transform: translateY(-3px);
}

.map-point span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.65rem;
}

.map-point b {
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.map-point--arrival { left: 13%; bottom: 10%; }
.map-point--halls { right: 16%; top: 40%; }
.map-point--lawn { left: 44%; bottom: 24%; }
.map-point--parking { right: 9%; bottom: 10%; }

.canvas-detail {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 70px);
  color: var(--white);
}

.canvas-detail__index,
.matcher-result__label {
  margin-bottom: 30px;
  color: #e4c98f;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.canvas-detail h3 {
  margin-bottom: 26px;
  font-size: clamp(2.4rem, 3.7vw, 4.2rem);
}

.canvas-detail > p:not(.canvas-detail__index) {
  color: rgba(255, 255, 255, 0.68);
}

.canvas-detail__facts {
  margin: 26px 0 34px;
}

.canvas-detail__facts div {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 14px 0;
}

.canvas-detail__facts dt {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
}

.canvas-detail__facts dd {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
}

.matcher-section,
.gallery-section,
.enquiry-section {
  background: var(--ink);
  color: var(--white);
}

.matcher-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.15fr 0.85fr;
  gap: clamp(30px, 5vw, 76px);
  align-items: start;
}

.matcher-copy h2 {
  margin-bottom: 26px;
  font-size: clamp(2.75rem, 4.5vw, 5rem);
}

.matcher-copy > p:last-child {
  color: rgba(255, 255, 255, 0.64);
}

.venue-matcher {
  display: grid;
  gap: 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  padding-left: clamp(30px, 4vw, 62px);
}

.field {
  display: grid;
  gap: 8px;
}

.field label,
.setting-options legend {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 0;
  padding: 10px 0;
  background: transparent;
  color: inherit;
}

.field textarea {
  resize: vertical;
}

.field select option {
  color: var(--ink);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-bottom-color: #ff9a8d;
}

.field-hint {
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.72rem;
}

.setting-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0;
  border: 0;
  padding: 0;
}

.setting-options legend {
  margin-bottom: 10px;
}

.setting-options label {
  position: relative;
}

.setting-options input {
  position: absolute;
  opacity: 0;
}

.setting-options span {
  display: grid;
  min-height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  font-size: 0.75rem;
  transition: color 180ms ease, background-color 180ms ease;
}

.setting-options input:checked + span {
  background: var(--white);
  color: var(--ink);
}

.setting-options input:focus-visible + span {
  outline: 3px solid var(--brass);
  outline-offset: 3px;
}

.matcher-result {
  min-height: 450px;
  padding: clamp(30px, 4vw, 52px);
  background: var(--garden);
}

.matcher-result h3 {
  margin-bottom: 20px;
}

.matcher-result > p:not(.matcher-result__label) {
  color: rgba(255, 255, 255, 0.72);
}

.matcher-result__meta {
  display: grid;
  gap: 10px;
  margin: 30px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 0;
}

.matcher-result__meta span {
  font-size: 0.72rem;
}

.spaces-section {
  background: var(--cloud);
}

.space-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.space-card {
  position: relative;
  height: 610px;
  min-height: 0;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.space-card--wide {
  grid-column: span 2;
  height: 650px;
}

.space-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.space-card::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: rgba(10, 15, 14, 0.72);
  pointer-events: none;
}

.space-card:hover > img {
  transform: scale(1.025);
}

.space-card__body {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) minmax(220px, 0.65fr) auto;
  gap: 20px;
  align-items: end;
  padding: clamp(28px, 4vw, 56px);
}

.space-card__number {
  margin: 0;
  color: #e4c98f;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.space-card__body h3,
.space-card__body p {
  margin: 0;
}

.space-card__body p:not(.space-card__number) {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.86rem;
}

.space-card__body > span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.space-card:not(.space-card--wide) .space-card__body {
  grid-template-columns: 42px 1fr;
}

.space-card:not(.space-card--wide) .space-card__body > p:not(.space-card__number),
.space-card:not(.space-card--wide) .space-card__body > span {
  grid-column: 2;
}

.space-card--portrait img {
  object-position: center 48%;
}

.space-card--lawn img {
  object-position: center 12%;
}

.data-note {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.gallery-section {
  overflow: hidden;
}

.gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.gallery-heading h2 {
  max-width: 770px;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.gallery-filters button {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 0 17px;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gallery-filters button:hover,
.gallery-filters button.is-active {
  background: var(--white);
  color: var(--ink);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 90px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  grid-column: span 4;
  grid-row: span 6;
  border: 0;
  padding: 0;
  overflow: hidden;
  background: var(--ink-soft);
  color: var(--white);
  text-align: left;
  transition: opacity 260ms ease, transform 260ms var(--ease);
}

.gallery-item--landscape,
.gallery-item--wide {
  grid-column: span 8;
}

.gallery-item--landscape {
  grid-row: span 7;
}

.gallery-item--portrait {
  grid-row: span 7;
}

.gallery-item[hidden] {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease), filter 260ms ease;
}

.gallery-item--screen img {
  object-position: 36% center;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 58% 0 0;
  background: rgba(10, 15, 14, 0.66);
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item > span {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 5px;
  padding: 24px;
}

.gallery-item b {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 400;
}

.gallery-item small {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.reels-heading__aside {
  display: grid;
  justify-items: start;
  gap: 24px;
}

.reels-heading__aside > p {
  max-width: 31ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.reels-viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--brass) rgba(255, 255, 255, 0.12);
  overscroll-behavior-inline: contain;
}

.reels-viewport:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 6px;
}

.reels-track {
  display: flex;
  width: max-content;
  gap: 16px;
  padding-bottom: 16px;
}

.reel-card {
  position: relative;
  display: flex;
  flex: 0 0 clamp(220px, 24vw, 310px);
  aspect-ratio: 9 / 16;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 22px;
  background: var(--ink-soft);
  color: var(--white);
  text-decoration: none;
  scroll-snap-align: start;
  transition: transform 300ms var(--ease);
}

.reel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 14, 0.32);
  transition: background 300ms ease;
}

.reel-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.reel-card:hover { transform: translateY(-5px); }
.reel-card:hover::after { background: rgba(10, 15, 14, 0.18); }
.reel-card:hover > img { transform: scale(1.025); }

.reel-card__number,
.reel-card__label {
  position: relative;
  z-index: 1;
}

.reel-card__number {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.reel-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background: rgba(15, 21, 20, 0.28);
}

.reel-card__play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 53%;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--white);
  transform: translate(-50%, -50%);
}

.reel-card__label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.proof-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.6fr 0.65fr;
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
}

.proof-rating {
  display: flex;
  align-items: center;
  gap: 18px;
}

.proof-rating > span {
  font-family: var(--display);
  font-size: 5rem;
  line-height: 1;
}

.stars {
  color: var(--brass);
  letter-spacing: 0.1em;
}

.proof-rating p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.proof-grid blockquote {
  margin: 0;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  padding-inline: clamp(30px, 5vw, 76px);
}

.proof-grid blockquote p {
  margin-bottom: 26px;
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.7vw, 4.15rem);
  line-height: 1.07;
  letter-spacing: -0.035em;
}

.proof-grid blockquote footer {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.leadership-section {
  background: var(--cloud);
}

.leadership-heading {
  margin-bottom: clamp(38px, 6vw, 72px);
}

.leadership-heading > p {
  max-width: 31ch;
  color: var(--muted);
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.leader-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.62fr) minmax(0, 1fr);
  min-height: 350px;
  background: var(--ink);
  color: var(--white);
}

.leader-card__portrait {
  min-height: 100%;
  overflow: hidden;
  background: var(--cloud-deep);
}

.leader-card__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.leader-card__body {
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 3.5vw, 48px);
}

.leader-card__role {
  margin: 0 0 18px;
  color: var(--brass);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.leader-card h3 {
  max-width: 11ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.leader-card blockquote {
  margin: auto 0 0;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.leader-card blockquote p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.6;
}

.visit-section {
  background: var(--cloud);
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.4fr);
  gap: clamp(48px, 9vw, 140px);
  align-items: center;
}

.visit-copy h2 {
  margin-bottom: 30px;
}

.visit-copy > p:not(.eyebrow) {
  max-width: 48ch;
  color: var(--muted);
}

.visit-copy address {
  margin: 34px 0;
  font-style: normal;
  line-height: 1.8;
}

.visit-image {
  position: relative;
  margin: 0;
}

.visit-image::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -28px;
  right: -28px;
  width: 58%;
  height: 48%;
  background: var(--oxide);
}

.visit-image img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
}

.visit-image figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 12px 16px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

.enquiry-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(50px, 9vw, 140px);
}

.enquiry-copy h2 {
  margin-bottom: 28px;
}

.enquiry-copy > p:not(.eyebrow) {
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.62);
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 40px;
}

.contact-lines a {
  width: fit-content;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  overflow-wrap: anywhere;
}

.enquiry-form {
  display: grid;
  gap: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.field-error {
  min-height: 18px;
  margin: 0;
  color: #ff9a8d;
  font-size: 0.72rem;
}

.form-submit {
  align-items: flex-start;
}

.form-submit p {
  max-width: 370px;
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
}

.form-status {
  min-height: 24px;
  color: #e4c98f;
  font-size: 0.8rem;
}

.site-footer {
  padding: 74px 0 40px;
  background: var(--ink-deep);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.7fr);
  gap: 48px;
}

.footer-brand img {
  width: 150px;
  height: 100px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 30ch;
  color: rgba(255, 255, 255, 0.55);
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-grid a,
.footer-grid p:not(.footer-label),
.footer-grid address {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
}

.footer-grid address {
  margin-top: 8px;
  font-style: normal;
  line-height: 1.75;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-label {
  margin-bottom: 8px;
  color: #e4c98f;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.telugu {
  font-family: var(--telugu);
  font-size: 1rem;
}

.copyright {
  margin-top: auto;
  padding-top: 30px;
}

.lightbox {
  width: min(1160px, calc(100vw - 40px));
  max-width: none;
  height: min(820px, calc(100dvh - 40px));
  max-height: none;
  border: 0;
  padding: 0;
  background: var(--ink-deep);
  color: var(--white);
  overflow: hidden;
}

.lightbox::backdrop {
  background: rgba(5, 8, 7, 0.92);
}

.lightbox[open] {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 70px;
  align-items: center;
}

.lightbox figure {
  margin: 0;
  height: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
}

.lightbox figure img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.lightbox figcaption {
  min-height: 56px;
  padding: 16px 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  text-align: center;
}

.lightbox__close,
.lightbox__nav {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(15, 21, 20, 0.72);
  color: var(--white);
}

.lightbox__close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
}

.lightbox__nav {
  justify-self: center;
}

.lightbox svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.noscript-note {
  padding: 16px;
  background: var(--cloud);
}

@keyframes hero-settle {
  to { transform: scale(1); }
}

@media (max-width: 1080px) {
  :root { --container: min(100% - 40px, 940px); }

  .site-header { grid-template-columns: 120px 1fr auto; }
  .primary-nav { gap: 20px; }
  .hero__facts { padding-inline: 40px; }
  .hero__scroll { display: none; }

  .venue-canvas { grid-template-columns: 1.45fr 0.75fr; }
  .matcher-grid { grid-template-columns: repeat(2, 1fr); }
  .matcher-copy { grid-column: span 2; max-width: 720px; }
  .matcher-result { min-height: 100%; }

  .space-card__body { grid-template-columns: 42px 1fr; }
  .space-card__body > p:not(.space-card__number),
  .space-card__body > span { grid-column: 2; }

  .proof-grid { grid-template-columns: 0.6fr 1.4fr; }
  .proof-grid > .text-link { grid-column: 2; }
  .proof-grid blockquote { border-right: 0; }
}

@media (max-width: 820px) {
  .reel-card { flex-basis: min(42vw, 280px); }
  .leadership-grid { grid-template-columns: 1fr; }
  .leader-card { min-height: 320px; }

  :root {
    --container: min(100% - 32px, 680px);
    --section: 88px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 76px;
    padding-inline: 18px;
  }

  .brand { width: 94px; height: 60px; }
  .header-cta { display: none; }

  .menu-button {
    position: relative;
    z-index: 2;
    display: grid;
    width: 48px;
    height: 48px;
    place-content: center;
    gap: 7px;
    border: 0;
    background: transparent;
    color: var(--white);
  }

  .menu-button__line {
    display: block;
    width: 24px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-button[aria-expanded="true"] .menu-button__line:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-button[aria-expanded="true"] .menu-button__line:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

  .primary-nav {
    position: fixed;
    inset: 0;
    width: 100%;
    justify-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    padding: 100px 28px 50px;
    background: var(--ink-deep);
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms var(--ease), visibility 180ms;
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .primary-nav a {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 17px 0;
    font-family: var(--display);
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .primary-nav a.primary-nav__mobile-cta {
    display: inline-flex;
    width: auto;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 0 22px;
    font-family: var(--body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .primary-nav a.primary-nav__mobile-cta::after {
    display: none;
  }

  .hero { min-height: 850px; }
  .hero__content { padding-bottom: 240px; }
  .hero h1 { font-size: clamp(3.3rem, 11.4vw, 4.75rem); }
  .hero__facts { grid-template-columns: repeat(2, 1fr); padding: 0 16px; }
  .hero__facts div { min-height: 88px; }
  .hero__facts div:nth-child(3) { border-top: 1px solid rgba(255, 255, 255, 0.15); }
  .hero__facts div:nth-child(4) { border-top: 1px solid rgba(255, 255, 255, 0.15); border-right: 1px solid rgba(255, 255, 255, 0.15); }

  .scroll-story { height: 470vh; }
  .scroll-story__heading { top: 104px; }
  .scroll-story__heading h2 { font-size: clamp(3.2rem, 12vw, 5.5rem); }
  .scroll-story__steps { bottom: 86px; width: min(620px, 100%); }
  .scroll-story__step { padding: 24px; }
  .scroll-story__rail { bottom: 38px; }
  .scroll-story__hint { display: none; }

  .section-heading--split,
  .venue-canvas,
  .matcher-grid,
  .visit-grid,
  .enquiry-grid,
  .proof-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-heading--split { align-items: start; gap: 28px; }
  .venue-canvas { min-height: 0; }
  .venue-map { min-height: 560px; }
  .canvas-detail { min-height: 520px; }

  .matcher-copy { grid-column: auto; }
  .venue-matcher { border-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.16); padding: 36px 0 0; }
  .matcher-result { min-height: 420px; }

  .space-list { grid-template-columns: 1fr; }
  .space-card,
  .space-card--wide { grid-column: auto; height: 560px; min-height: 0; }
  .space-card__body,
  .space-card:not(.space-card--wide) .space-card__body { grid-template-columns: 42px 1fr; }
  .space-card__body > p:not(.space-card__number),
  .space-card__body > span,
  .space-card:not(.space-card--wide) .space-card__body > p:not(.space-card__number),
  .space-card:not(.space-card--wide) .space-card__body > span { grid-column: 2; }

  .gallery-heading { align-items: flex-start; flex-direction: column; }
  .gallery-filters { justify-content: flex-start; }
  .gallery-grid { display: grid; grid-template-columns: 1fr; grid-auto-rows: auto; }
  .gallery-item,
  .gallery-item--landscape,
  .gallery-item--wide,
  .gallery-item--portrait,
  .gallery-item:first-child { grid-column: auto; grid-row: auto; aspect-ratio: 4 / 5; }
  .gallery-item:first-child,
  .gallery-item--wide,
  .gallery-item--landscape { aspect-ratio: 4 / 3; }

  .proof-grid { gap: 40px; }
  .proof-grid blockquote { grid-row: 1; border: 0; border-bottom: 1px solid var(--line); padding: 0 0 40px; }
  .proof-grid > .text-link { grid-column: auto; }

  .visit-grid { gap: 52px; }
  .visit-image::before { right: -12px; }

  .footer-grid { gap: 28px; }
  .footer-grid > div:not(.footer-brand) { border-top: 1px solid rgba(255, 255, 255, 0.12); padding-top: 22px; }
  .footer-grid > div:not(.footer-brand) { gap: 0; }
  .footer-grid a,
  .contact-lines a { display: flex; min-height: 44px; align-items: center; }
  .copyright { padding-top: 16px; }
}

@media (max-width: 560px) {
  .reels-heading__aside { gap: 18px; }
  .reel-card { flex-basis: min(72vw, 260px); padding: 16px; }
  .reel-card__play { width: 46px; height: 46px; }
  .leadership-heading { margin-bottom: 32px; }

  /* Stack the portrait above the copy so the face reads at full card width
     instead of being squeezed into a narrow side column. */
  .leader-card {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }
  .leader-card__portrait {
    aspect-ratio: 4 / 5;
    min-height: 0;
  }
  .leader-card__portrait img {
    /* Faces sit in the upper-middle of both source frames. */
    object-position: center 18%;
  }
  .leader-card__body { padding: 26px 22px 30px; }
  .leader-card h3 { max-width: none; font-size: 1.8rem; }
  .leader-card blockquote { margin-top: 24px; padding-top: 20px; }

  :root {
    --container: min(100% - 32px, 500px);
    --section: 64px;
  }

  h2 { font-size: clamp(2.05rem, 9.6vw, 2.9rem); }

  .section-heading { margin-bottom: 40px; }

  .hero { min-height: max(760px, 100svh); }
  .hero__image { object-position: 54% center; }
  .hero__content { padding-top: 96px; padding-bottom: 200px; }
  .hero h1 { font-size: clamp(2.3rem, 10.4vw, 3.15rem); }
  .hero__intro { font-size: 0.98rem; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 12px; }
  .hero__facts { padding: 0; }
  .hero__facts div { padding-inline: 18px; }
  .hero__facts strong { font-size: 1.5rem; }

  .scroll-story { height: 340vh; }
  .scroll-story__sticky { min-height: 700px; }
  .scroll-story__heading { top: 94px; }
  .scroll-story__heading h2 { font-size: clamp(2.2rem, 10vw, 3rem); }
  .scroll-story__steps { bottom: 76px; min-height: 275px; }
  .scroll-story__step { padding: 21px 20px; }
  .scroll-story__step h3 { max-width: 19ch; font-size: clamp(1.6rem, 7.4vw, 2.2rem); }
  .scroll-story__step span { font-size: 0.78rem; }
  .scroll-story__rail { bottom: 28px; }

  .venue-map { min-height: 0; aspect-ratio: 4 / 3; }
  .map-point { padding-right: 8px; }
  .map-point b { display: none; }
  .map-point--arrival { left: 8%; bottom: 11%; }
  .map-point--halls { right: 8%; top: 40%; }
  .map-point--lawn { left: 36%; bottom: 27%; }
  .map-point--parking { right: 8%; bottom: 11%; }
  .canvas-detail { min-height: 0; padding: 40px 24px; }

  .matcher-result { min-height: 0; padding: 30px 24px; }
  .setting-options { grid-template-columns: 1fr; }

  .space-list { gap: 24px; }
  .space-card,
  .space-card--wide {
    height: auto;
    min-height: 0;
    display: grid;
    grid-template-rows: auto auto;
  }
  .space-card > img {
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .space-card::after { display: none; }
  .space-card__body,
  .space-card:not(.space-card--wide) .space-card__body {
    position: relative;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px 14px;
    align-items: start;
    padding: 24px 20px 28px;
    background: var(--ink);
  }
  .space-card__body h3 { font-size: clamp(1.6rem, 7.4vw, 2rem); }

  .gallery-filters {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-filters button { width: 100%; padding-inline: 10px; }
  .gallery-grid { gap: 14px; }

  .proof-rating > span { font-size: 3rem; }
  .proof-grid blockquote p { font-size: clamp(1.6rem, 7.4vw, 2rem); }

  .visit-grid { gap: 44px; }

  .form-row { grid-template-columns: 1fr; gap: 24px; }
  .form-submit { align-items: stretch; flex-direction: column; }
  .form-submit .button { width: 100%; }

  .lightbox { width: 100vw; height: 100dvh; }
  .lightbox[open] { grid-template-columns: 48px minmax(0, 1fr) 48px; }
  .lightbox__nav { width: 44px; height: 44px; }
}

@media (min-width: 561px) and (max-width: 820px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item,
  .gallery-item:first-child,
  .gallery-item--landscape,
  .gallery-item--wide,
  .gallery-item--portrait {
    grid-column: auto;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 360px) {
  .hero h1 { font-size: clamp(2.05rem, 9.8vw, 2.5rem); }
  .hero__intro { font-size: 0.94rem; }

  .scroll-story__heading h2 { font-size: clamp(2rem, 9.2vw, 2.5rem); }
}

@media (max-height: 700px) {
  .scroll-story {
    height: auto;
  }

  .scroll-story__sticky {
    position: relative;
    height: auto;
    min-height: 0;
    padding-block: 72px;
  }

  .scroll-story__poster { opacity: 0.34 !important; }
  .scroll-story__canvas,
  .scroll-story__status,
  .scroll-story__hint,
  .scroll-story__rail { display: none; }
  .scroll-story__chrome { height: auto; }
  .scroll-story__heading,
  .scroll-story__steps,
  .scroll-story__step { position: relative; inset: auto; }
  .scroll-story__steps {
    display: grid;
    width: 100%;
    min-height: 0;
    gap: 12px;
    margin-top: 48px;
  }
  .scroll-story__step {
    visibility: visible;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 820px) and (max-height: 520px) {
  .primary-nav {
    justify-content: flex-start;
    padding: 68px 20px 16px;
  }

  .primary-nav > a:not(.primary-nav__mobile-cta) {
    padding-block: 6px;
    font-size: 1.6rem;
  }

  .primary-nav a.primary-nav__mobile-cta { min-height: 48px; margin-top: 8px; }
}

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

  .scroll-story {
    height: auto;
  }

  .scroll-story__sticky {
    position: relative;
    height: auto;
    min-height: 0;
    padding-block: 100px;
  }

  .scroll-story__poster {
    opacity: 0.34 !important;
  }

  .scroll-story__canvas,
  .scroll-story__status,
  .scroll-story__hint,
  .scroll-story__rail {
    display: none;
  }

  .scroll-story__chrome {
    height: auto;
  }

  .scroll-story__heading,
  .scroll-story__steps,
  .scroll-story__step {
    position: relative;
    inset: auto;
  }

  .scroll-story__steps {
    display: grid;
    width: 100%;
    min-height: 0;
    gap: 14px;
    margin-top: 96px;
  }

  .scroll-story__step {
    visibility: visible;
    opacity: 1;
    transform: none;
  }
}

@media (max-height: 700px) {
  .scroll-story.is-static .scroll-story__sticky { padding-block: 72px; }
  .scroll-story.is-static .scroll-story__steps { gap: 12px; margin-top: 48px; }
}
