:root {
  --color-ivory: #f6f0e7;
  --color-paper: #fffaf2;
  --color-stone: #e5d8c8;
  --color-stone-strong: #c7b59e;
  --color-taupe: #907d68;
  --color-charcoal: #1f1b16;
  --color-ink-soft: #5f5449;
  --color-muted: #8a7b6a;
  --color-cta: #2b221b;
  --color-cta-hover: #18130f;
  --color-focus: #7b593c;
  --color-sage: #6d7568;
  --shadow-soft: 0 28px 92px rgba(43, 34, 27, 0.13);
  --shadow-card: 0 18px 54px rgba(43, 34, 27, 0.09);
  --font-body: "Host Grotesk", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --text-xs: 0.78rem;
  --text-sm: 0.91rem;
  --text-base: clamp(1rem, 0.96rem + 0.18vw, 1.08rem);
  --text-lg: clamp(1.18rem, 1.05rem + 0.45vw, 1.42rem);
  --text-xl: clamp(1.5rem, 1.26rem + 0.86vw, 2rem);
  --text-2xl: clamp(2.55rem, 1.35rem + 4vw, 4.55rem);
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --max-page: 1320px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-cinematic: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-cinematic-inout: cubic-bezier(0.77, 0, 0.175, 1);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--color-ivory);
  color: var(--color-charcoal);
  font-family: var(--font-body);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(199, 181, 158, 0.3), transparent 28rem),
    linear-gradient(135deg, rgba(205, 189, 168, 0.2), transparent 34rem),
    linear-gradient(315deg, rgba(109, 117, 104, 0.1), transparent 28rem),
    var(--color-ivory);
  color: var(--color-charcoal);
  font-size: var(--text-base);
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

.cinematic-home {
  background:
    radial-gradient(circle at 74% 8%, rgba(199, 181, 158, 0.34), transparent 27rem),
    radial-gradient(circle at 9% 34%, rgba(255, 250, 242, 0.7), transparent 30rem),
    linear-gradient(135deg, rgba(229, 216, 200, 0.34), transparent 34rem),
    var(--color-ivory);
}

.cinematic-home::before {
  background-image:
    linear-gradient(rgba(31, 27, 22, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 27, 22, 0.025) 1px, transparent 1px);
  background-size: 4px 4px;
  content: "";
  inset: 0;
  opacity: 0.16;
  pointer-events: none;
  position: fixed;
  z-index: 0;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid rgba(122, 85, 51, 0.58);
  outline-offset: 4px;
}

.skip-link {
  background: var(--color-cta);
  border-radius: var(--radius-sm);
  color: var(--color-paper);
  left: 1rem;
  padding: 0.65rem 0.85rem;
  position: fixed;
  top: 1rem;
  transform: translateY(-180%);
  z-index: 20;
}

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

.site-header {
  align-items: center;
  backdrop-filter: blur(20px);
  background: rgba(246, 240, 231, 0.84);
  border-bottom: 1px solid rgba(32, 28, 24, 0.09);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 0.78rem max(1.15rem, calc((100vw - var(--max-page)) / 2));
  position: sticky;
  right: 0;
  top: 0;
  transition:
    background 240ms var(--ease-out),
    border-color 240ms var(--ease-out),
    backdrop-filter 240ms var(--ease-out),
    color 240ms var(--ease-out);
  z-index: 10;
}

.has-hero-header .site-header {
  backdrop-filter: none;
  background: transparent;
  border-bottom-color: transparent;
  color: var(--color-paper);
  position: fixed;
  text-shadow: 0 1px 18px rgba(12, 10, 8, 0.28);
}

.has-hero-header .site-header__brand,
.has-hero-header .site-header__link,
.has-hero-header .site-header__toggle {
  color: var(--color-paper);
}

.has-hero-header .site-header:not(.is-scrolled) .site-header__link[aria-current="page"] {
  color: var(--color-paper);
}

.has-hero-header .site-header__brand-line {
  color: rgba(255, 250, 242, 0.72);
}

.has-hero-header .site-header .ui-button--small {
  background: rgba(255, 250, 242, 0.12);
  border-color: rgba(255, 250, 242, 0.45);
  color: var(--color-paper);
}

.has-hero-header .site-header.is-scrolled {
  backdrop-filter: blur(20px);
  background: rgba(246, 240, 231, 0.9);
  border-bottom-color: rgba(32, 28, 24, 0.09);
  color: var(--color-charcoal);
  text-shadow: none;
}

.has-hero-header .site-header.is-scrolled .site-header__brand,
.has-hero-header .site-header.is-scrolled .site-header__link,
.has-hero-header .site-header.is-scrolled .site-header__toggle {
  color: var(--color-charcoal);
}

.has-hero-header .site-header.is-scrolled .site-header__brand-line {
  color: var(--color-taupe);
}

.has-hero-header .site-header.is-scrolled .ui-button--small {
  background: var(--color-cta);
  border-color: var(--color-cta);
  color: var(--color-paper);
}

.cinematic-home .site-header {
  backdrop-filter: none;
  background: transparent;
  border-bottom-color: transparent;
  color: var(--color-paper);
  position: fixed;
  text-shadow: 0 1px 18px rgba(12, 10, 8, 0.24);
}

.cinematic-home .site-header.is-scrolled {
  backdrop-filter: blur(20px);
  background: rgba(246, 240, 231, 0.9);
  border-bottom-color: rgba(32, 28, 24, 0.09);
}

.cinematic-home .site-header__brand,
.cinematic-home .site-header__link,
.cinematic-home .site-header__toggle {
  color: var(--color-paper);
}

.cinematic-home .site-header:not(.is-scrolled) .site-header__link[aria-current="page"] {
  color: var(--color-paper);
}

.cinematic-home .site-header .ui-button--small {
  background: rgba(255, 250, 242, 0.1);
  border-color: rgba(255, 250, 242, 0.42);
  color: var(--color-paper);
}

.cinematic-home .site-header.is-scrolled {
  text-shadow: none;
}

.cinematic-home .site-header.is-scrolled .site-header__brand,
.cinematic-home .site-header.is-scrolled .site-header__link,
.cinematic-home .site-header.is-scrolled .site-header__toggle {
  color: var(--color-charcoal);
}

.cinematic-home .site-header.is-scrolled .ui-button--small {
  background: var(--color-cta);
  border-color: var(--color-cta);
  color: var(--color-paper);
}

.site-header__brand {
  color: var(--color-charcoal);
  display: grid;
  gap: 0.05rem;
}

.site-header__brand-name {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0;
}

.site-header__brand-line {
  color: var(--color-taupe);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header__nav {
  align-items: center;
  display: flex;
  gap: clamp(0.75rem, 1.6vw, 1.5rem);
}

.site-header__link {
  color: var(--color-ink-soft);
  font-size: var(--text-sm);
  min-height: 2.35rem;
  padding: 0.38rem 0;
  position: relative;
  transition: color 180ms var(--ease-out);
}

.site-header__link:hover,
.site-header__link[aria-current="page"] {
  color: var(--color-charcoal);
}

.site-header__link::after {
  background: currentColor;
  bottom: 0.25rem;
  content: "";
  height: 1px;
  left: 0;
  opacity: 0;
  position: absolute;
  transform: scaleX(0.65);
  transform-origin: left;
  transition:
    opacity 180ms var(--ease-out),
    transform 180ms var(--ease-out);
  width: 100%;
}

.site-header__link:hover::after,
.site-header__link[aria-current="page"]::after {
  opacity: 0.42;
  transform: scaleX(1);
}

.site-header__toggle {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--color-charcoal);
  display: none;
  gap: var(--space-2);
  min-height: 2.75rem;
  padding: 0;
}

.site-header__toggle-line {
  background: currentColor;
  display: block;
  height: 1px;
  width: 18px;
}

.site-header__toggle-text {
  font-size: var(--text-sm);
}

.site-main {
  overflow-x: clip;
  position: relative;
  z-index: 1;
}

body:not(.home-page) .site-main {
  margin: 0 auto;
  max-width: var(--max-page);
  padding: clamp(1.15rem, 2.5vw, 2rem);
}

.page-content-after-hero {
  --page-content-pad: clamp(1.15rem, 2.5vw, 2rem);
  background:
    linear-gradient(180deg, rgba(246, 240, 231, 0.98), var(--color-ivory) 5rem),
    var(--color-ivory);
  border-top: 1px solid rgba(32, 28, 24, 0.1);
  box-shadow: 0 -22px 72px rgba(43, 34, 27, 0.06);
  margin: 0 auto;
  max-width: var(--max-page);
  padding: 0 var(--page-content-pad) var(--page-content-pad);
  position: relative;
  z-index: 1;
}

.ui-button {
  align-items: center;
  background: var(--color-cta);
  border: 1px solid var(--color-cta);
  border-radius: var(--radius-sm);
  color: var(--color-paper);
  display: inline-flex;
  font-size: var(--text-sm);
  font-weight: 600;
  gap: 0.5rem;
  justify-content: center;
  min-height: 2.75rem;
  overflow: hidden;
  padding: 0.68rem 1.05rem;
  position: relative;
  transition:
    background 180ms var(--ease-out),
    border-color 180ms var(--ease-out),
    box-shadow 260ms var(--ease-cinematic),
    color 180ms var(--ease-out),
    transform 260ms var(--ease-cinematic);
}

/* Tasteful light sweep across the button on hover (no neon, no shimmer loop). */
.ui-button::after {
  background: linear-gradient(105deg, transparent 32%, rgba(255, 250, 242, 0.26) 50%, transparent 68%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  transform: translateX(-130%);
  transition: transform 760ms var(--ease-cinematic);
}

.ui-button:hover::after {
  transform: translateX(130%);
}

.ui-button:hover {
  background: var(--color-cta-hover);
  border-color: var(--color-cta-hover);
  box-shadow: 0 16px 32px rgba(43, 34, 27, 0.2);
  transform: translateY(-2px);
}

.ui-button:active {
  box-shadow: 0 6px 14px rgba(43, 34, 27, 0.18);
  transform: translateY(1px) scale(0.985);
}

.ui-button__arrow {
  transition: transform 380ms var(--ease-cinematic);
  width: 20px;
}

.ui-button:hover .ui-button__arrow {
  transform: translateX(5px);
}

.ui-button--secondary {
  background: rgba(251, 248, 242, 0.74);
  border-color: rgba(32, 28, 24, 0.18);
  color: var(--color-charcoal);
}

.ui-button--secondary:hover {
  background: var(--color-paper);
  border-color: rgba(32, 28, 24, 0.28);
  color: var(--color-charcoal);
}

.ui-button--small {
  min-height: 2.35rem;
  padding: 0.5rem 0.78rem;
}

.section-kicker {
  color: var(--color-taupe);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin: 0 0 var(--space-3);
  text-transform: uppercase;
}

.section-title {
  font-size: var(--text-xl);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.12;
  margin: 0;
  max-width: 16ch;
}

.hero-section {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 4vw, 4.75rem);
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  min-height: min(550px, calc(100dvh - 4.25rem));
  padding: clamp(1.65rem, 4vw, 3rem) 0 clamp(1.5rem, 3vw, 2.35rem);
  position: relative;
}

.cinematic-hero {
  background: var(--color-charcoal);
  color: var(--color-paper);
  display: grid;
  grid-template-columns: minmax(0, 0.43fr) minmax(0, 0.57fr);
  min-height: 100svh;
  min-height: 100dvh;
  overflow: hidden;
  position: relative;
}

.cinematic-hero__copy-panel {
  align-items: end;
  background:
    radial-gradient(circle at 18% 78%, rgba(144, 125, 104, 0.18), transparent 22rem),
    linear-gradient(180deg, rgba(255, 250, 242, 0.035), transparent 34%),
    var(--color-charcoal);
  display: flex;
  min-width: 0;
  padding: clamp(6.2rem, 12vh, 8.5rem) clamp(1.25rem, 4.8vw, 5rem) clamp(2.5rem, 7vh, 4.6rem) max(1.15rem, calc((100vw - var(--max-page)) / 2));
  position: relative;
  z-index: 2;
}

.cinematic-hero__copy-panel::after {
  background: linear-gradient(90deg, transparent, rgba(12, 10, 8, 0.26));
  bottom: 0;
  content: "";
  pointer-events: none;
  position: absolute;
  right: -2.6rem;
  top: 0;
  width: 2.6rem;
  z-index: 3;
}

.cinematic-hero__copy {
  max-width: 38rem;
  position: relative;
  z-index: 4;
}

.cinematic-hero .hero-section__positioning {
  color: rgba(255, 250, 242, 0.72);
  margin: 0;
  max-width: 48ch;
}

.cinematic-hero .hero-section__title {
  color: var(--color-paper);
  font-size: clamp(2.18rem, 3.85vw, 4.05rem);
  line-height: 1.02;
  margin: var(--space-3) 0 0;
  max-width: 13.5ch;
  text-shadow: 0 18px 60px rgba(12, 10, 8, 0.22);
  text-wrap: balance;
}

.cinematic-hero .hero-section__text {
  color: rgba(255, 250, 242, 0.8);
  margin: var(--space-4) 0 0;
  max-width: 53ch;
}

.cinematic-hero .hero-section__actions {
  margin-top: var(--space-5);
}

.cinematic-hero .ui-button {
  background: var(--color-paper);
  border-color: rgba(255, 250, 242, 0.88);
  color: var(--color-cta);
}

.cinematic-hero .ui-button:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--color-cta-hover);
}

.cinematic-hero .ui-button--secondary {
  background: rgba(255, 250, 242, 0.08);
  border-color: rgba(255, 250, 242, 0.42);
  color: var(--color-paper);
}

.cinematic-hero .ui-button--secondary:hover {
  background: rgba(255, 250, 242, 0.15);
  border-color: rgba(255, 250, 242, 0.68);
  color: var(--color-paper);
}

.magnetic-button {
  transform: translate3d(var(--magnetic-x, 0), var(--magnetic-y, 0), 0) translateY(var(--magnetic-lift, 0)) scale(var(--magnetic-scale, 1));
  transition:
    background 260ms var(--ease-cinematic),
    border-color 260ms var(--ease-cinematic),
    color 260ms var(--ease-cinematic),
    box-shadow 520ms var(--ease-cinematic),
    transform 640ms var(--ease-cinematic);
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .magnetic-button:hover {
    --magnetic-lift: -1px;
    --magnetic-scale: 1.01;
  }
}

.magnetic-button:active {
  --magnetic-lift: 0;
  --magnetic-scale: 0.99;
  transition-duration: 120ms;
}

.cinematic-hero__meta {
  border-block: 1px solid rgba(255, 250, 242, 0.18);
  color: rgba(255, 250, 242, 0.7);
  display: grid;
  font-size: var(--text-xs);
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  line-height: 1.28;
  margin-top: clamp(1.5rem, 3.2vw, 2.7rem);
  max-width: 34rem;
}

.cinematic-hero__meta span {
  padding: 0.78rem 0.75rem 0.78rem 0;
}

.cinematic-hero__meta span + span {
  border-left: 1px solid rgba(255, 250, 242, 0.16);
  padding-left: 0.75rem;
}

.cinematic-hero__media {
  background: #c9b79f;
  display: block;
  margin: 0;
  min-height: 100svh;
  min-height: 100dvh;
  overflow: hidden;
  position: relative;
}

.cinematic-hero__media::before {
  background: linear-gradient(90deg, rgba(31, 27, 22, 0.2), transparent 18%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.cinematic-hero__fallback {
  animation: heroMediaSettle 1200ms var(--ease-cinematic) both;
  display: block;
  filter: saturate(1.03) contrast(1.02) brightness(1.02);
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: 58% center;
  position: absolute;
  transform-origin: center;
  width: 100%;
  z-index: 1;
}

@keyframes heroMediaSettle {
  from {
    opacity: 0.88;
    transform: scale(1.035);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (hover: hover) and (pointer: fine) {
  .cinematic-hero__media:hover .cinematic-hero__fallback {
    transform: scale(1.012);
    transition: transform 900ms var(--ease-cinematic), filter 900ms var(--ease-cinematic);
  }
}

.hero-section::before {
  background: linear-gradient(90deg, rgba(31, 27, 22, 0.52), transparent);
  bottom: clamp(1rem, 6vw, 5rem);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: min(5rem, 22vw);
}

.hero-section__positioning {
  color: var(--color-taupe);
  font-size: var(--text-sm);
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 var(--space-4);
  max-width: 45ch;
}

.hero-section__title {
  font-size: clamp(2.35rem, 3.45vw, 3.75rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.02;
  margin: 0;
  max-width: 20ch;
}

.hero-section__text {
  color: var(--color-ink-soft);
  line-height: 1.62;
  margin: var(--space-4) 0 0;
  max-width: 58ch;
}

.hero-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.hero-section__visual {
  min-width: 0;
  position: relative;
}

.hero-section__visual::after {
  background: rgba(199, 181, 158, 0.48);
  bottom: -1.25rem;
  content: "";
  height: 7.5rem;
  position: absolute;
  right: 0;
  width: min(28rem, 62vw);
  z-index: -1;
}

.visual-frame {
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(160deg, rgba(255, 250, 242, 0.98), rgba(229, 216, 200, 0.72)),
    var(--color-paper);
  border: 1px solid rgba(32, 28, 24, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  position: relative;
}

.visual-frame__media {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.visual-frame__chrome {
  align-items: center;
  border-bottom: 1px solid rgba(32, 28, 24, 0.08);
  display: flex;
  gap: 0.38rem;
  height: 2.2rem;
  padding: 0 var(--space-4);
}

.visual-frame__chrome span {
  background: rgba(32, 28, 24, 0.16);
  border-radius: 999px;
  height: 0.42rem;
  width: 0.42rem;
}

.visual-frame__scene {
  display: grid;
  gap: clamp(0.62rem, 1.4vw, 1rem);
  grid-template-rows: 0.2fr 1.12fr 0.36fr 0.24fr 0.34fr;
  height: calc(100% - 2.2rem);
  padding: clamp(1rem, 3vw, 1.6rem);
  transform: translateY(0);
  transition: transform 520ms var(--ease-out);
}

.visual-frame__masthead {
  background:
    linear-gradient(90deg, rgba(32, 28, 24, 0.8) 0 34%, transparent 34%),
    linear-gradient(90deg, transparent 0 58%, rgba(154, 135, 114, 0.35) 58% 100%);
  border-bottom: 1px solid rgba(32, 28, 24, 0.1);
}

.visual-frame__image {
  background:
    linear-gradient(135deg, rgba(43, 34, 27, 0.2), transparent),
    radial-gradient(circle at 70% 18%, rgba(246, 240, 231, 0.86), transparent 30%),
    linear-gradient(155deg, #c8b69e, #efe4d5 43%, #7f8779);
  border-radius: var(--radius-md);
  position: relative;
}

.visual-frame__image::before {
  border: 1px solid rgba(31, 27, 22, 0.2);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  content: "";
  height: 68%;
  left: 53%;
  position: absolute;
  top: 14%;
  transform: translateX(-50%);
  transition: transform 520ms var(--ease-out);
  width: 43%;
}

.visual-frame__image::after {
  background: linear-gradient(90deg, rgba(31, 27, 22, 0.18), rgba(31, 27, 22, 0));
  bottom: 16%;
  content: "";
  height: 1px;
  left: 11%;
  position: absolute;
  width: 78%;
}

.visual-frame__copy,
.visual-frame__story {
  align-content: start;
  display: grid;
  gap: 0.48rem;
}

.visual-frame__copy span,
.visual-frame__story span {
  background: rgba(32, 28, 24, 0.14);
  display: block;
  height: 0.62rem;
}

.visual-frame__copy span:nth-child(1) {
  background: rgba(32, 28, 24, 0.42);
  width: 64%;
}

.visual-frame__copy span:nth-child(2) {
  width: 92%;
}

.visual-frame__copy span:nth-child(3) {
  width: 72%;
}

.visual-frame__story {
  grid-template-columns: 0.42fr 0.74fr 0.52fr;
}

.visual-frame__story span {
  background: rgba(144, 125, 104, 0.2);
  border-radius: 999px;
}

.visual-frame__booking {
  align-items: end;
  display: grid;
  gap: var(--space-2);
  grid-template-columns: 1fr 0.55fr;
}

.visual-frame__booking span {
  background: rgba(49, 40, 31, 0.1);
  border: 1px solid rgba(32, 28, 24, 0.08);
  border-radius: var(--radius-sm);
  min-height: 2.25rem;
}

.visual-frame__booking span:last-child {
  background: var(--color-cta);
}

.visual-frame--hero {
  aspect-ratio: 1.08;
  min-height: 22rem;
}

.visual-frame--aparthotel .visual-frame__image {
  background:
    linear-gradient(135deg, rgba(43, 34, 27, 0.18), transparent),
    linear-gradient(90deg, rgba(255, 250, 242, 0.72) 0 29%, transparent 29% 34%, rgba(255, 250, 242, 0.44) 34% 64%, transparent 64%),
    linear-gradient(155deg, #c9b79f, #eee0ce 45%, #878d7f);
}

.visual-frame--coastal .visual-frame__image {
  background:
    linear-gradient(145deg, rgba(251, 248, 242, 0.14), transparent),
    linear-gradient(160deg, #b5c2bd, #ece3d2 48%, #8b9b9a);
}

.visual-frame--mountain .visual-frame__image {
  background:
    linear-gradient(145deg, rgba(49, 40, 31, 0.15), transparent),
    linear-gradient(160deg, #817968, #d8c4a8 48%, #4f5d50);
}

.visual-frame--mountain .visual-frame__story span {
  background: rgba(109, 117, 104, 0.24);
}

.proof-strip {
  border-block: 1px solid rgba(32, 28, 24, 0.15);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 calc(var(--page-content-pad) * -1) clamp(1.15rem, 3vw, 2rem);
}

.proof-strip__item {
  align-items: baseline;
  color: var(--color-charcoal);
  display: flex;
  gap: var(--space-3);
  font-size: clamp(0.98rem, 0.94rem + 0.12vw, 1.05rem);
  font-weight: 500;
  line-height: 1.35;
  padding: 0.95rem clamp(1rem, 2.4vw, 1.8rem);
}

.proof-strip__item span {
  color: var(--color-taupe);
  font-size: clamp(0.8rem, 0.76rem + 0.08vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.proof-strip__item + .proof-strip__item {
  border-left: 1px solid rgba(32, 28, 24, 0.11);
}


.portfolio-preview {
  align-items: start;
  border-bottom: 1px solid rgba(32, 28, 24, 0.1);
  display: grid;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.25fr);
  padding: clamp(1.55rem, 4vw, 3rem) 0;
}

.portfolio-preview__intro p:not(.section-kicker) {
  color: var(--color-ink-soft);
  margin: var(--space-4) 0 0;
  max-width: 58ch;
}

.portfolio-preview__intro .ui-button {
  margin-top: var(--space-5);
}

.portfolio-preview__grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.portfolio-preview__item {
  color: var(--color-charcoal);
  display: grid;
  gap: var(--space-3);
}

.portfolio-preview__media {
  align-items: end;
  aspect-ratio: 0.88;
  background:
    linear-gradient(180deg, rgba(31, 27, 22, 0.02), rgba(31, 27, 22, 0.1)),
    var(--color-paper);
  border: 1px solid rgba(32, 28, 24, 0.12);
  border-radius: var(--radius-md);
  display: flex;
  overflow: hidden;
  padding: 0.8rem;
  position: relative;
  transition:
    border-color 280ms var(--ease-cinematic),
    box-shadow 360ms var(--ease-cinematic),
    transform 360ms var(--ease-cinematic);
}

.portfolio-preview__media::before {
  background: linear-gradient(135deg, rgba(199, 181, 158, 0.34), transparent 52%);
  content: "";
  inset: 0;
  position: absolute;
}

.portfolio-preview__media span {
  color: var(--color-taupe);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  position: relative;
  text-transform: uppercase;
}

.portfolio-preview__item p {
  color: var(--color-taupe);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin: 0;
  text-transform: uppercase;
}

.portfolio-preview__item h3 {
  font-size: var(--text-lg);
  font-weight: 500;
  line-height: 1.18;
  margin: 0;
}

@media (hover: hover) and (pointer: fine) {
  .portfolio-preview__item:hover .portfolio-preview__media {
    border-color: rgba(32, 28, 24, 0.22);
    box-shadow: var(--shadow-card);
    transform: translateY(-3px);
  }
}

.approach-section,
.quote-section {
  align-items: start;
  display: grid;
  gap: clamp(1.35rem, 3vw, 3rem);
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  padding: clamp(1.35rem, 3.6vw, 2.65rem) 0;
}

.approach-section__body p,
.quote-section__copy p {
  color: var(--color-ink-soft);
  margin: 0;
  max-width: 66ch;
}

.approach-section__grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.approach-section__chip {
  background: rgba(251, 248, 242, 0.62);
  border: 1px solid rgba(32, 28, 24, 0.12);
  border-radius: 999px;
  color: var(--color-ink-soft);
  font-size: var(--text-sm);
  padding: 0.42rem 0.7rem;
}

.demo-section {
  padding: clamp(1.35rem, 3.8vw, 2.75rem) 0;
}

.demos-layout {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  padding: clamp(2.25rem, 5.4vw, 4.4rem) 0;
}

.demos-layout__intro {
  align-self: center;
  border-block: 1px solid rgba(32, 28, 24, 0.11);
  padding: clamp(1.25rem, 3vw, 2.3rem) 0;
}

.demos-layout__intro .page-hero__title {
  max-width: 13ch;
}

.demos-layout__intro .page-hero__text {
  margin-top: var(--space-4);
  max-width: 52ch;
}

.demos-layout .demo-card {
  grid-column: auto;
  min-height: 100%;
}

.demos-layout .demo-card:nth-of-type(1) {
  grid-column: 2;
  grid-row: 1;
}

.demos-layout .demo-card:nth-of-type(2) {
  grid-column: 1;
  grid-row: 2;
}

.demos-layout .demo-card:nth-of-type(3) {
  grid-column: 2;
  grid-row: 2;
}

.demos-layout .demo-card__preview .visual-frame,
.demos-layout .demo-card:nth-child(1) .demo-card__preview .visual-frame {
  aspect-ratio: 1.72;
}

.demos-layout .demo-card:nth-of-type(1) .demo-card__preview .visual-frame {
  aspect-ratio: 1.45;
}

.demo-section__head {
  align-items: end;
  display: grid;
  gap: var(--space-5);
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  margin-bottom: var(--space-4);
}

.demo-section__intro {
  color: var(--color-ink-soft);
  margin: 0;
  max-width: 58ch;
}

.demo-grid {
  display: grid;
  gap: var(--space-4);
  grid-auto-flow: dense;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.demo-card {
  background: rgba(251, 248, 242, 0.7);
  border: 1px solid rgba(32, 28, 24, 0.11);
  border-radius: var(--radius-lg);
  box-shadow: 0 0 0 rgba(49, 40, 31, 0);
  color: var(--color-charcoal);
  display: grid;
  overflow: hidden;
  transition:
    border-color 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out),
    transform 220ms var(--ease-out);
}

.demo-card:nth-child(1) {
  grid-column: span 6;
}

.demo-card:nth-child(2),
.demo-card:nth-child(3) {
  grid-column: span 3;
}

.demo-card:hover {
  border-color: rgba(32, 28, 24, 0.22);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

.demo-card:active {
  transform: translateY(-1px) scale(0.996);
}

.demo-card__preview {
  padding: 0.65rem 0.65rem 0;
}

.demo-card__preview .visual-frame {
  aspect-ratio: 1.62;
  border-radius: var(--radius-md);
  box-shadow: none;
}

.demo-card:nth-child(1) .demo-card__preview .visual-frame {
  aspect-ratio: 2.62;
}

.demo-card:hover .visual-frame__scene {
  transform: translateY(-13%);
}

.demo-card:hover .visual-frame__image::before {
  transform: translateX(-50%) translateY(-4%);
}

.demo-card__body {
  padding: 0.9rem;
}

.demo-card__eyebrow {
  color: var(--color-taupe);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin: 0 0 var(--space-2);
  text-transform: uppercase;
}

.demo-card__title {
  font-size: var(--text-lg);
  font-weight: 500;
  line-height: 1.18;
  margin: 0;
}

.demo-card__text {
  color: var(--color-ink-soft);
  font-size: var(--text-sm);
  line-height: 1.5;
  margin: var(--space-3) 0 0;
}

.demo-card__link {
  color: var(--color-charcoal);
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  margin-top: var(--space-3);
}

.quote-section {
  border-top: 1px solid rgba(32, 28, 24, 0.11);
  padding-bottom: clamp(1.7rem, 4vw, 3rem);
}

.quote-contact-card {
  background: rgba(251, 248, 242, 0.58);
  border: 1px solid rgba(32, 28, 24, 0.12);
  border-radius: var(--radius-md);
  box-shadow: inset 0 1px 0 rgba(255, 250, 242, 0.72);
  margin-top: var(--space-5);
  max-width: 24rem;
  padding: 0.85rem 0.95rem;
}

.quote-contact-card p {
  font-size: var(--text-sm);
  line-height: 1.45;
  margin: 0;
}

.quote-contact-card__label {
  color: var(--color-charcoal) !important;
  font-weight: 600;
  margin-bottom: 0.2rem !important;
}

.quote-contact-card a {
  color: var(--color-charcoal);
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  margin-top: 0.38rem;
  text-decoration: underline;
  text-decoration-color: rgba(144, 125, 104, 0.55);
  text-underline-offset: 0.18em;
}

.quote-form {
  background: rgba(251, 248, 242, 0.72);
  border: 1px solid rgba(32, 28, 24, 0.12);
  border-radius: var(--radius-lg);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 242, 0.84),
    var(--shadow-card);
  display: grid;
  gap: var(--space-3);
  padding: clamp(0.9rem, 1.8vw, 1.2rem);
}

.quote-form__row {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quote-form__footer {
  align-items: center;
  display: flex;
  gap: var(--space-4);
  justify-content: space-between;
}

.quote-form__note,
.quote-form__status {
  color: var(--color-muted);
  font-size: var(--text-sm);
  line-height: 1.45;
  margin: 0;
}

.ui-field {
  display: grid;
  gap: var(--space-2);
}

.ui-field__label {
  color: var(--color-ink-soft);
  font-size: var(--text-sm);
  font-weight: 500;
}

.ui-field__input {
  appearance: none;
  background: rgba(245, 240, 232, 0.76);
  border: 1px solid rgba(32, 28, 24, 0.16);
  border-radius: var(--radius-sm);
  color: var(--color-charcoal);
  min-height: 2.75rem;
  padding: 0.68rem 0.75rem;
  width: 100%;
}

.ui-field__input--select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--color-taupe) 50%),
    linear-gradient(135deg, var(--color-taupe) 50%, transparent 50%);
  background-position:
    calc(100% - 1.05rem) 50%,
    calc(100% - 0.78rem) 50%;
  background-repeat: no-repeat;
  background-size: 0.28rem 0.28rem, 0.28rem 0.28rem;
  padding-right: 2.1rem;
}

.ui-field__input--textarea {
  min-height: 8rem;
  resize: vertical;
}

.ui-field__input:focus {
  border-color: rgba(122, 85, 51, 0.6);
}

.ui-field__input:focus:invalid {
  border-color: rgba(123, 89, 60, 0.74);
}

.page-hero,
.placeholder-demo {
  min-height: calc(100dvh - 10rem);
  padding: clamp(3rem, 8vw, 5.5rem) 0;
}

.placeholder-demo {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.64fr);
}

.placeholder-demo__visual .visual-frame {
  aspect-ratio: 1.08;
  box-shadow: var(--shadow-card);
}

.page-hero__title,
.placeholder-demo__title {
  font-size: var(--text-2xl);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0;
  max-width: 14ch;
}

.page-hero__text,
.placeholder-demo__text {
  color: var(--color-ink-soft);
  margin: var(--space-5) 0 0;
  max-width: 62ch;
}

.page-hero--wide {
  border-bottom: 1px solid rgba(32, 28, 24, 0.1);
  min-height: 0;
  padding: clamp(3.4rem, 7vw, 6rem) 0 clamp(2.4rem, 5vw, 4rem);
}

.page-hero--wide .page-hero__title {
  max-width: 17ch;
}

.page-hero--wide .page-hero__text {
  font-size: var(--text-lg);
  line-height: 1.58;
  max-width: 61ch;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.content-section,
.split-section {
  border-bottom: 1px solid rgba(32, 28, 24, 0.09);
  padding: clamp(2.3rem, 5.4vw, 4.4rem) 0;
}

.split-section {
  align-items: start;
  display: grid;
  gap: clamp(1.6rem, 4vw, 4.25rem);
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
}

.section-head {
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
  max-width: 74ch;
}

.section-head .section-title,
.split-section .section-title {
  max-width: 23ch;
}

.section-head p:not(.section-kicker),
.section-copy p,
.value-card p,
.pricing-card p,
.factor-card p,
.fit-list li,
.editorial-list li,
.closing-cta p,
.faq-item p {
  color: var(--color-ink-soft);
}

.section-head p:not(.section-kicker),
.section-copy p {
  margin: var(--space-4) 0 0;
  max-width: 68ch;
}

.section-copy p:first-child {
  margin-top: 0;
}

.editorial-list {
  display: grid;
  gap: 0.62rem;
  list-style: none;
  margin: var(--space-4) 0 0;
  padding: 0;
}

.editorial-list li {
  line-height: 1.55;
  padding-left: 1.05rem;
  position: relative;
}

.editorial-list li::before {
  background: var(--color-taupe);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  top: 0.78em;
  width: 0.48rem;
}

.value-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-card,
.factor-card,
.fit-list {
  background: rgba(251, 248, 242, 0.66);
  border: 1px solid rgba(32, 28, 24, 0.11);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 1px 0 rgba(255, 250, 242, 0.72);
}

.value-card {
  min-height: 15.5rem;
  padding: clamp(1rem, 2vw, 1.35rem);
}

.value-card__title,
.factor-card h3,
.fit-list h3 {
  font-size: var(--text-lg);
  font-weight: 500;
  line-height: 1.18;
  margin: 0;
}

.value-card p,
.factor-card p {
  font-size: var(--text-sm);
  line-height: 1.55;
  margin: var(--space-3) 0 0;
}

.fit-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fit-list {
  padding: clamp(1rem, 2.2vw, 1.35rem);
}

.fit-list .editorial-list {
  margin-top: var(--space-3);
}

.closing-cta {
  align-items: end;
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.74), rgba(229, 216, 200, 0.42)),
    var(--color-paper);
  border: 1px solid rgba(32, 28, 24, 0.11);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  display: grid;
  gap: var(--space-4);
  grid-template-columns: minmax(0, 1fr) auto;
  margin: clamp(2rem, 5vw, 4rem) 0 0;
  padding: clamp(1.15rem, 3vw, 2rem);
}

.closing-cta h2 {
  font-size: var(--text-xl);
  font-weight: 500;
  line-height: 1.12;
  margin: 0;
  max-width: 20ch;
}

.closing-cta p {
  grid-column: 1;
  margin: 0;
  max-width: 62ch;
}

.closing-cta .ui-button {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.pricing-grid {
  align-items: stretch;
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-jump-card {
  align-items: center;
  background: rgba(251, 248, 242, 0.64);
  border: 1px solid rgba(32, 28, 24, 0.11);
  border-radius: var(--radius-lg);
  display: flex;
  gap: var(--space-4);
  justify-content: space-between;
  margin-top: var(--space-4);
  padding: clamp(0.9rem, 2vw, 1.15rem);
}

.faq-jump-card h3 {
  font-size: var(--text-lg);
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
}

.faq-jump-card p {
  color: var(--color-ink-soft);
  font-size: var(--text-sm);
  line-height: 1.5;
  margin: 0.35rem 0 0;
  max-width: 62ch;
}

.pricing-card {
  background: rgba(251, 248, 242, 0.72);
  border: 1px solid rgba(32, 28, 24, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 1px 0 rgba(255, 250, 242, 0.78);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: clamp(1rem, 2vw, 1.35rem);
}

.pricing-card--featured {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.86), rgba(236, 226, 212, 0.76)),
    var(--color-paper);
  border-color: rgba(43, 34, 27, 0.28);
  box-shadow: var(--shadow-card);
  transform: translateY(-0.35rem);
}

.pricing-card__flag {
  align-self: flex-start;
  background: rgba(43, 34, 27, 0.08);
  border: 1px solid rgba(43, 34, 27, 0.12);
  border-radius: 999px;
  color: var(--color-charcoal);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin: 0;
  padding: 0.28rem 0.55rem;
  text-transform: uppercase;
}

.pricing-card__name {
  font-size: var(--text-lg);
  font-weight: 500;
  line-height: 1.16;
  margin: 0;
}

.pricing-card__price {
  color: var(--color-charcoal);
  font-size: clamp(1.28rem, 2vw, 1.72rem);
  font-weight: 500;
  line-height: 1.15;
  margin: 0;
}

.pricing-card__best {
  color: var(--color-charcoal);
  font-weight: 500;
  line-height: 1.45;
  margin: 0;
}

.pricing-card p {
  font-size: var(--text-sm);
  line-height: 1.5;
  margin: 0;
}

.pricing-card__block {
  border-top: 1px solid rgba(32, 28, 24, 0.1);
  margin-top: var(--space-2);
  padding-top: var(--space-3);
}

.pricing-card__block h4 {
  font-size: var(--text-sm);
  font-weight: 600;
  margin: 0 0 var(--space-2);
}

.pricing-card__block .editorial-list {
  gap: 0.45rem;
  margin-top: 0;
}

.pricing-card__block .editorial-list li,
.pricing-card__note {
  font-size: 0.86rem;
  line-height: 1.46;
}

.pricing-card__note {
  border-top: 1px solid rgba(32, 28, 24, 0.08);
  color: var(--color-ink-soft);
  margin-top: auto;
  padding-top: var(--space-3);
}

.pricing-card__note + .pricing-card__note {
  margin-top: 0;
}

.pricing-card__note strong {
  color: var(--color-charcoal);
  font-weight: 600;
}

.factor-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.factor-card {
  min-height: 13rem;
  padding: clamp(0.95rem, 2vw, 1.2rem);
}

.factor-card span {
  color: var(--color-taupe);
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-3);
}

.faq-list {
  border-top: 1px solid rgba(32, 28, 24, 0.12);
}

.content-section--faqs {
  padding-top: clamp(1.8rem, 4vw, 3.1rem);
  scroll-margin-top: 5.5rem;
}

.faq-item {
  border-bottom: 1px solid rgba(32, 28, 24, 0.12);
}

.faq-item summary {
  color: var(--color-charcoal);
  cursor: pointer;
  font-size: var(--text-lg);
  font-weight: 500;
  line-height: 1.25;
  list-style: none;
  padding: 1.1rem 2.4rem 1.1rem 0;
  position: relative;
}

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

.faq-item summary::after {
  content: "+";
  color: var(--color-taupe);
  font-size: 1.2rem;
  font-weight: 400;
  position: absolute;
  right: 0.25rem;
  top: 1.04rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  line-height: 1.58;
  margin: 0;
  max-width: 76ch;
  padding: 0 0 1.15rem;
}

.placeholder-demo__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.site-footer {
  border-top: 1px solid rgba(32, 28, 24, 0.1);
  color: var(--color-muted);
  display: flex;
  font-size: var(--text-sm);
  gap: var(--space-4);
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max-page);
  padding: var(--space-5) clamp(1.15rem, 2.5vw, 2rem);
}

.site-footer p {
  margin: 0;
}

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

.has-reveal .reveal-panel {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 520ms var(--ease-out),
    transform 520ms var(--ease-out);
  transition-delay: calc(var(--reveal-index, 0) * 80ms);
}

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

@media (max-width: 880px) {
  .site-header {
    padding: 0.9rem 1.15rem;
  }

  .site-header__toggle {
    display: flex;
  }

  .site-header__nav {
    background: rgba(251, 248, 242, 0.96);
    border: 1px solid rgba(32, 28, 24, 0.12);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    display: none;
    flex-direction: column;
    gap: 0;
    min-width: min(20rem, calc(100vw - 2rem));
    padding: var(--space-2);
    position: absolute;
    right: 1rem;
    top: calc(100% + 0.5rem);
  }

  .site-header__nav.is-open {
    display: flex;
  }

  .has-hero-header .site-header__nav {
    color: var(--color-charcoal);
    text-shadow: none;
  }

  .has-hero-header .site-header__nav .site-header__link,
  .has-hero-header .site-header__nav .ui-button {
    color: var(--color-charcoal);
  }

  .has-hero-header .site-header:not(.is-scrolled) .site-header__nav .site-header__link[aria-current="page"] {
    color: var(--color-charcoal);
  }

  .has-hero-header .site-header__nav .ui-button {
    background: var(--color-cta);
    border-color: var(--color-cta);
    color: var(--color-paper);
  }

  .cinematic-home .site-header__nav {
    background: rgba(251, 248, 242, 0.96);
    color: var(--color-charcoal);
  }

  .cinematic-home .site-header__nav .ui-button {
    background: var(--color-cta);
    border-color: var(--color-cta);
    color: var(--color-paper);
  }

  .site-header__link,
  .site-header__nav .ui-button {
    justify-content: flex-start;
    width: 100%;
  }

  .site-header__link {
    min-height: 2.75rem;
    padding: 0.72rem 0.75rem;
  }

  .cinematic-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .cinematic-hero__copy-panel {
    min-height: min(58rem, 62svh);
    padding: 6.2rem 1.15rem 2rem;
  }

  .cinematic-hero__copy-panel::after {
    background: linear-gradient(180deg, transparent, rgba(12, 10, 8, 0.18));
    bottom: -1.8rem;
    height: 1.8rem;
    left: 0;
    right: 0;
    top: auto;
    width: auto;
  }

  .cinematic-hero__copy {
    max-width: 42rem;
  }

  .cinematic-hero__media {
    min-height: 48svh;
    min-height: 48dvh;
  }

  .cinematic-hero__fallback {
    object-position: 64% center;
  }

  .portfolio-preview,
  .approach-section,
  .quote-section,
  .demo-section__head,
  .split-section,
  .closing-cta {
    grid-template-columns: 1fr;
  }

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

  .pricing-card--featured {
    transform: none;
  }

  .closing-cta .ui-button {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  .portfolio-preview__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .proof-strip,
  .demo-grid,
  .quote-form__row,
  .placeholder-demo {
    grid-template-columns: 1fr;
  }

  .demos-layout {
    grid-template-columns: 1fr;
    padding: clamp(2rem, 6vw, 3rem) 0;
  }

  .demos-layout__intro {
    align-self: auto;
  }

  .demos-layout .demo-card:nth-of-type(1),
  .demos-layout .demo-card:nth-of-type(2),
  .demos-layout .demo-card:nth-of-type(3) {
    grid-column: 1;
    grid-row: auto;
  }

  .demo-card,
  .demo-card:nth-child(1),
  .demo-card:nth-child(2),
  .demo-card:nth-child(3) {
    grid-column: 1 / -1;
  }

  .proof-strip__item + .proof-strip__item {
    border-left: 0;
    border-top: 1px solid rgba(32, 28, 24, 0.1);
  }

  .site-footer {
    display: grid;
  }

  .placeholder-demo {
    min-height: 0;
  }

  .placeholder-demo__visual {
    max-width: 32rem;
  }
}

@media (max-width: 560px) {
  .site-main {
    padding: 0;
  }

  body:not(.home-page) .site-main,
  .page-content-after-hero {
    --page-content-pad: 1rem;
    padding: var(--page-content-pad);
  }

  .cinematic-hero .hero-section__title {
    font-size: clamp(2.15rem, 10vw, 3.3rem);
    max-width: 12.8ch;
  }

  .cinematic-hero .hero-section__text {
    max-width: 35ch;
  }

  .cinematic-hero__meta {
    display: none;
  }

  .cinematic-hero__copy-panel {
    min-height: 56svh;
    min-height: 56dvh;
    padding: 5.4rem 1rem 1.65rem;
  }

  .cinematic-hero__media {
    min-height: 42svh;
    min-height: 42dvh;
  }

  .cinematic-hero__fallback {
    object-position: 68% center;
  }

  .portfolio-preview {
    gap: var(--space-4);
    grid-template-columns: 1fr;
    padding: var(--space-5) 0;
  }

  .portfolio-preview__grid {
    grid-template-columns: 1fr;
  }

  .portfolio-preview__media {
    aspect-ratio: 1.45;
  }

  .approach-section,
  .quote-section {
    gap: var(--space-4);
    padding: var(--space-5) 0;
  }

  .section-title {
    font-size: clamp(1.35rem, 6vw, 1.7rem);
  }

  .hero-section__actions {
    margin-top: var(--space-4);
  }

  .hero-section__actions,
  .quote-form__footer,
  .page-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-section__actions .ui-button,
  .quote-form__footer .ui-button,
  .page-hero__actions .ui-button {
    width: 100%;
  }

  .visual-frame__chrome {
    height: 1.9rem;
  }

  .visual-frame__scene {
    height: calc(100% - 1.9rem);
    padding: 1rem;
  }

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

  .proof-strip__item {
    align-items: baseline;
    display: flex;
    font-size: 0.94rem;
    gap: var(--space-3);
    line-height: 1.3;
    padding: 0.78rem 1rem;
  }

  .proof-strip__item + .proof-strip__item {
    border-left: 0;
    border-top: 1px solid rgba(32, 28, 24, 0.1);
  }

  .approach-section__grid {
    display: grid;
    gap: 0.4rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .approach-section__chip {
    border-radius: var(--radius-sm);
    font-size: 0.74rem;
    line-height: 1.2;
    padding: 0.36rem 0.42rem;
  }

  .demo-section__head {
    gap: var(--space-3);
    margin-bottom: var(--space-3);
  }

  .demo-card {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

  .demo-card__preview {
    padding: 0.55rem;
  }

  .demo-card__body {
    padding: 0.7rem 0.75rem 0.7rem 0;
  }

  .demo-card__preview .visual-frame,
  .demo-card:nth-child(1) .demo-card__preview .visual-frame {
    aspect-ratio: 0.84;
  }

  .demo-card__preview .visual-frame__scene {
    gap: 0.4rem;
    padding: 0.65rem;
  }

  .demo-card__preview .visual-frame__story,
  .demo-card__preview .visual-frame__copy span:nth-child(3) {
    display: none;
  }

  .demo-card__preview .visual-frame__booking span {
    min-height: 1.2rem;
  }

  .demo-card__title {
    font-size: 1rem;
  }

  .demo-card__text {
    font-size: 0.82rem;
    line-height: 1.42;
  }

  .quote-form__row {
    grid-template-columns: 1fr;
  }

  .page-hero--wide {
    padding: 2.6rem 0 2rem;
  }

  .page-hero--wide .page-hero__text {
    font-size: var(--text-base);
  }

  .content-section,
  .split-section {
    padding: var(--space-7) 0;
  }

  .value-grid,
  .pricing-grid,
  .factor-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .faq-jump-card {
    align-items: stretch;
    flex-direction: column;
  }

  .faq-jump-card .ui-button {
    width: 100%;
  }

  .value-card,
  .factor-card {
    min-height: 0;
  }

  .closing-cta {
    margin-top: var(--space-7);
  }

  .faq-item summary {
    font-size: 1rem;
    padding-right: 1.8rem;
  }

  .quote-form {
    gap: 0.65rem;
  }

  .quote-form__footer {
    gap: 0.65rem;
  }

  .quote-form__note {
    font-size: 0.78rem;
  }

  .ui-field {
    gap: 0.35rem;
  }

  .ui-field__label {
    font-size: 0.82rem;
  }

  .ui-field__input {
    min-height: 2.55rem;
    padding: 0.58rem 0.62rem;
  }

  .ui-field__input--textarea {
    min-height: 4.4rem;
  }
}

@media (max-width: 360px) {
  .quote-form__row,
  .demo-card {
    grid-template-columns: 1fr;
  }

  .demo-card__body {
    padding: 0 0.75rem 0.75rem;
  }
}

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

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

  .demo-card:hover .visual-frame__scene {
    transform: none;
  }

  .demo-card:hover .visual-frame__image::before {
    transform: translateX(-50%);
  }
}
/* Fjellro House demo */
.fjellro-page {
  --fj-cream: #f5f0e8;
  --fj-cream-dark: #ede8dc;
  --fj-forest: #1e2e1e;
  --fj-forest-mid: #253525;
  --fj-rust: #b84a2e;
  --fj-rust-hover: #9e3d24;
  --fj-text: #1a1a14;
  --fj-mid: #4a4a3a;
  --fj-light: #8a8a7a;
  --fj-border: rgba(0, 0, 0, 0.09);
  background: var(--fj-cream);
  color: var(--fj-text);
  font-family: "Host Grotesk", ui-sans-serif, system-ui, sans-serif;
}

.fjellro-page .site-header,
.fjellro-page .site-footer {
  display: none;
}

body.fjellro-page .site-main {
  margin: 0;
  max-width: none;
  min-height: auto;
  overflow-x: visible;
  padding: 0;
}

.fjellro-shell {
  background: var(--fj-cream);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.025);
  margin: 0 auto;
  max-width: 1536px;
  min-height: 960px;
  min-width: 1180px;
  overflow: hidden;
}

.fjellro-nav {
  align-items: center;
  background: var(--fj-cream);
  border-bottom: 1px solid var(--fj-border);
  display: flex;
  height: 68px;
  justify-content: space-between;
  padding: 0 40px;
  position: sticky;
  top: 0;
  z-index: 30;
}

.fjellro-brand {
  align-items: center;
  color: var(--fj-text);
  display: flex;
  flex: 0 0 auto;
  gap: 13px;
  text-decoration: none;
}

.fjellro-mark {
  color: var(--fj-text);
  flex: 0 0 40px;
}

.fjellro-brand span {
  display: grid;
  gap: 2px;
}

.fjellro-brand strong {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.fjellro-brand small {
  color: var(--fj-mid);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
}

.fjellro-nav__links {
  align-items: center;
  display: flex;
  gap: 40px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}

.fjellro-nav__links a {
  color: var(--fj-text);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  position: relative;
  text-decoration: none;
  transition: color 220ms var(--ease-out);
}

.fjellro-nav__links a::after {
  background: var(--fj-rust);
  bottom: -7px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 250ms var(--ease-out);
  width: 100%;
}

.fjellro-nav__links a:hover,
.fjellro-nav__links a:focus-visible {
  color: var(--fj-rust);
}

.fjellro-nav__links a:hover::after,
.fjellro-nav__links a:focus-visible::after {
  transform: scaleX(1);
}

.fjellro-cta,
.fjellro-booking__submit {
  align-items: center;
  background: var(--fj-rust);
  border: 0;
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  gap: 9px;
  justify-content: center;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 14px 26px;
  text-decoration: none;
  transition: background 200ms var(--ease-out), box-shadow 200ms var(--ease-out), transform 180ms var(--ease-out);
  white-space: nowrap;
}

.fjellro-cta svg,
.fjellro-booking__submit svg {
  fill: none;
  height: 16px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
  width: 16px;
}

.fjellro-cta:hover,
.fjellro-booking__submit:hover {
  background: var(--fj-rust-hover);
  box-shadow: 0 4px 14px rgba(184, 74, 46, 0.35);
  transform: translateY(-1px);
}

.fjellro-hero {
  position: relative;
}

.fjellro-hero__grid {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 740px;
  height: 625px;
  overflow: hidden;
  position: relative;
}


.fjellro-hero__grid > * {
  min-height: 0;
}

.fjellro-strip,
.fjellro-copy,
.fjellro-photo {
  height: 625px;
}

.fjellro-strip {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  height: 100%;
}

.fjellro-strip figure,
.fjellro-photo {
  margin: 0;
  overflow: hidden;
  position: relative;
}

.fjellro-strip img,
.fjellro-photo > img,
.fjellro-map > img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.fjellro-strip img {
  transform: scale(1.01);
  transition: transform 620ms var(--ease-cinematic);
}

.fjellro-strip figure:hover img {
  transform: scale(1.055);
}

.fjellro-copy {
  background: var(--fj-cream);
  display: flex;
  flex-direction: column;
  padding: 55px 48px 0 52px;
  position: relative;
  z-index: 2;
}

.fjellro-copy h1 {
  color: var(--fj-text);
  font-size: 74px;
  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 20px;
  max-width: 540px;
  text-wrap: balance;
}

.fjellro-copy h1 span {
  white-space: nowrap;
}

.fjellro-rule {
  background: var(--fj-rust);
  border-radius: 2px;
  display: block;
  height: 3px;
  margin: 0 0 22px;
  width: 52px;
}

.fjellro-copy p {
  color: var(--fj-mid);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
  max-width: 420px;
}

.fjellro-photo {
  background: #d9d9d0;
}

.fjellro-photo > img {
  filter: saturate(0.95) contrast(0.98);
  transform: scale(1.035);
  transform-origin: center;
  transition: transform 140ms linear;
  will-change: transform;
}

.fjellro-snow {
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.fjellro-badge {
  height: 118px;
  position: absolute;
  right: 40px;
  top: 32px;
  width: 118px;
  z-index: 4;
}

.fjellro-badge svg {
  display: block;
  height: 100%;
  width: 100%;
}

.fjellro-badge circle {
  fill: rgba(245, 240, 232, 0.1);
  stroke: rgba(255, 255, 255, 0.65);
  stroke-dasharray: 4 3;
  stroke-width: 1.2;
}

.fjellro-badge .inner {
  fill: none;
  stroke: rgba(255, 255, 255, 0.38);
  stroke-dasharray: none;
  stroke-width: 0.8;
}

.fjellro-badge text {
  fill: rgba(255, 255, 255, 0.82);
  font-family: "Host Grotesk", sans-serif;
  font-size: 7.5px;
  font-weight: 500;
  letter-spacing: 3.2px;
}

.fjellro-badge .mountain {
  fill: rgba(255, 255, 255, 0.1);
  stroke: rgba(255, 255, 255, 0.72);
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.fjellro-trail {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  bottom: 49px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  color: var(--fj-text);
  display: block;
  padding: 18px 20px 16px;
  position: absolute;
  right: 28px;
  text-decoration: none;
  transition: box-shadow 220ms var(--ease-out), transform 220ms var(--ease-out);
  width: 246px;
  z-index: 5;
}

.fjellro-trail:hover {
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.24);
  transform: translateY(-2px);
}

.fjellro-trail strong {
  align-items: center;
  display: flex;
  font-size: 14px;
  font-weight: 600;
  gap: 8px;
  line-height: 1.25;
}

.fjellro-trail strong span {
  background: #5a9e5a;
  border-radius: 50%;
  flex: 0 0 8px;
  height: 8px;
  width: 8px;
}

.fjellro-trail small {
  color: var(--fj-mid);
  display: block;
  font-size: 12px;
  margin: 3px 0 10px 16px;
}

.fjellro-trail p {
  color: var(--fj-mid);
  font-size: 12px;
  line-height: 1.55;
  margin: 0 0 12px;
}

.fjellro-trail em {
  color: var(--fj-rust);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
}

.fjellro-seasonal {
  background: var(--fj-forest);
  border-radius: 14px;
  bottom: -34px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  color: #fff;
  left: 210px;
  padding: 28px 32px 22px;
  position: absolute;
  width: 602px;
  z-index: 20;
}

.fjellro-seasonal__kicker {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 1;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.fjellro-seasonal__tabs {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  margin-bottom: 22px;
}

.fjellro-seasonal__tab {
  align-items: center;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.5);
  display: inline-flex;
  font: inherit;
  font-size: 13px;
  font-weight: 400;
  gap: 7px;
  padding: 8px 16px 12px;
  position: relative;
  transition: color 180ms var(--ease-out);
  white-space: nowrap;
}

.fjellro-seasonal__tab svg,
.fjellro-experience__icon svg,
.fjellro-benefits svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fjellro-seasonal__tab svg {
  height: 13px;
  opacity: 0.78;
  stroke-width: 1.4;
  width: 13px;
}

.fjellro-seasonal__tab::after {
  background: transparent;
  bottom: -1px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  transition: background 180ms var(--ease-out);
}

.fjellro-seasonal__tab:hover,
.fjellro-seasonal__tab.is-active {
  color: #fff;
}

.fjellro-seasonal__tab.is-active {
  font-weight: 500;
}

.fjellro-seasonal__tab.is-active::after {
  background: var(--fj-rust);
}

.fjellro-seasonal__panel {
  display: none;
  grid-template-columns: repeat(3, 1fr);
}

.fjellro-seasonal__panel.is-active {
  display: grid;
}

.fjellro-experience {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 18px;
}

.fjellro-experience:first-child {
  border-left: 0;
  padding-left: 0;
}

.fjellro-experience__num {
  color: rgba(255, 255, 255, 0.35);
  display: block;
  font-size: 11px;
  line-height: 1;
  margin-bottom: 10px;
}

.fjellro-experience__icon {
  color: rgba(255, 255, 255, 0.42);
  display: block;
  height: 20px;
  margin-bottom: 10px;
  width: 20px;
}

.fjellro-experience__icon svg {
  height: 20px;
  stroke-width: 1.35;
  width: 20px;
}

.fjellro-experience h3 {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  margin: 0 0 8px;
  max-width: 130px;
}

.fjellro-experience p {
  color: rgba(255, 255, 255, 0.48);
  font-size: 11.5px;
  font-weight: 300;
  line-height: 1.55;
  margin: 0 0 12px;
}

.fjellro-experience time {
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
  letter-spacing: 0.03em;
}

.fjellro-seasonal__link {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--fj-rust);
  display: block;
  font-size: 12.5px;
  font-weight: 400;
  margin-top: 16px;
  padding-top: 14px;
  text-decoration: none;
  transition: opacity 180ms var(--ease-out);
}

.fjellro-seasonal__link:hover {
  opacity: 0.72;
}

.fjellro-booking {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 630px;
  min-height: 179px;
}

.fjellro-booking__bar {
  background: var(--fj-cream-dark);
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 42px 40px 22px;
}

.fjellro-booking__label {
  color: var(--fj-mid);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 1;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.fjellro-booking__row {
  align-items: center;
  display: flex;
  min-width: 0;
}

.fjellro-field {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  display: grid;
  gap: 5px;
  margin-right: 28px;
  padding-right: 28px;
}

.fjellro-field > span {
  color: var(--fj-light);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
}

.fjellro-field button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--fj-text);
  display: inline-flex;
  font-size: 15px;
  font-weight: 400;
  gap: 8px;
  line-height: 1;
  padding: 0;
  text-align: left;
  transition: color 180ms var(--ease-out);
  white-space: nowrap;
}

.fjellro-field button:hover {
  color: var(--fj-rust);
}

.fjellro-field svg,
.fjellro-guarantee svg {
  fill: none;
  flex: 0 0 auto;
  height: 15px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
  width: 15px;
}

.fjellro-field--room {
  min-width: 220px;
}

.fjellro-field--room button {
  gap: 10px;
}

.fjellro-field--room img {
  border-radius: 6px;
  height: 36px;
  object-fit: cover;
  width: 36px;
}

.fjellro-field--room b,
.fjellro-field--room small {
  display: block;
}

.fjellro-field--room b {
  color: var(--fj-text);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 2px;
}

.fjellro-field--room small {
  color: var(--fj-light);
  font-size: 11px;
  font-weight: 400;
}

.fjellro-booking__submit {
  font-size: 15px;
  margin-left: auto;
  padding: 16px 28px;
}

.fjellro-guarantee {
  align-items: center;
  color: var(--fj-light);
  display: flex;
  font-size: 11.5px;
  gap: 7px;
  line-height: 1;
  margin: 14px 0 0;
}

.fjellro-guarantee svg {
  color: #5a9e5a;
  height: 14px;
  width: 14px;
}

.fjellro-map {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  min-height: 179px;
  overflow: hidden;
  position: relative;
}

.fjellro-map::after {
  background: rgba(245, 240, 232, 0.08);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.fjellro-pin {
  align-items: center;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.13);
  color: var(--fj-text);
  display: inline-flex;
  font-size: 11px;
  font-weight: 500;
  gap: 6px;
  padding: 5px 10px 5px 5px;
  position: absolute;
  z-index: 2;
}

.fjellro-pin i {
  align-items: center;
  background: var(--fj-forest);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  font-size: 9px;
  font-style: normal;
  height: 20px;
  justify-content: center;
  width: 20px;
}

.fjellro-pin b {
  display: grid;
  font-weight: 500;
  gap: 1px;
  line-height: 1.05;
}

.fjellro-pin small {
  color: #666;
  font-size: 10px;
  font-weight: 300;
}

.fjellro-pin--house {
  left: 27%;
  top: 44%;
}

.fjellro-pin--peak {
  right: 20%;
  top: 25%;
}

.fjellro-pin--peak i {
  background: #4a6e5a;
}

.fjellro-pin--trail {
  bottom: 26%;
  right: 14%;
}

.fjellro-pin--trail i {
  background: #6a6a5a;
  height: 16px;
  width: 16px;
}

.fjellro-pin--trail i::before {
  background: #fff;
  border-radius: 50%;
  content: "";
  height: 4px;
  width: 4px;
}

.fjellro-map__zoom {
  display: grid;
  gap: 1px;
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 3;
}

.fjellro-map__zoom button,
.fjellro-map__compass {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: var(--fj-text);
  display: inline-flex;
  font: inherit;
  font-size: 16px;
  font-weight: 300;
  height: 30px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  transition: background 160ms var(--ease-out);
  width: 30px;
}

.fjellro-map__zoom button:first-child {
  border-radius: 6px 6px 0 0;
}

.fjellro-map__zoom button:last-child {
  border-radius: 0 0 6px 6px;
}

.fjellro-map__zoom button:hover,
.fjellro-map__compass:hover {
  background: var(--fj-cream);
}

.fjellro-map__compass {
  border-radius: 6px;
  bottom: 16px;
  font-size: 14px;
  position: absolute;
  right: 16px;
  z-index: 3;
}

.fjellro-benefits {
  background: var(--fj-forest);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 88px;
}

.fjellro-benefits article {
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 16px;
  padding: 0 40px;
}

.fjellro-benefits article:last-child {
  border-right: 0;
}

.fjellro-benefits svg {
  color: rgba(255, 255, 255, 0.42);
  flex: 0 0 28px;
  height: 28px;
  stroke-width: 1.35;
  width: 28px;
}

.fjellro-benefits span,
.fjellro-benefits strong,
.fjellro-benefits small {
  display: block;
}

.fjellro-benefits strong {
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 3px;
}

.fjellro-benefits small {
  color: rgba(255, 255, 255, 0.44);
  font-size: 11.5px;
  font-weight: 300;
  line-height: 1.25;
}

@media (max-width: 1230px) {
  .fjellro-shell {
    min-width: 0;
  }

  .fjellro-nav__links {
    display: none;
  }

  .fjellro-hero__grid,
  .fjellro-booking,
  .fjellro-benefits {
    grid-template-columns: 1fr;
    height: auto;
  }

  .fjellro-strip {
    display: none;
  }

  .fjellro-copy {
    min-height: 360px;
  }

  .fjellro-photo {
    height: 520px;
  }

  .fjellro-seasonal {
    bottom: auto;
    left: auto;
    margin: -70px 20px 0;
    position: relative;
    width: auto;
  }

  .fjellro-booking__row {
    align-items: stretch;
    display: grid;
    gap: 18px;
  }

  .fjellro-field {
    border-right: 0;
    margin-right: 0;
    padding-right: 0;
  }

  .fjellro-map {
    height: 260px;
  }

  .fjellro-benefits {
    height: auto;
  }

  .fjellro-benefits article {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 26px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fjellro-page *,
  .fjellro-page *::before,
  .fjellro-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .fjellro-snow {
    display: none;
  }

  .fjellro-photo > img,
  .fjellro-strip img {
    transform: none !important;
  }
}
/* Fjellro fidelity and booking interaction pass */
.fjellro-demo-banner {
  align-items: center;
  background: #182718;
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  gap: 1rem;
  height: 32px;
  justify-content: space-between;
  padding: 0 34px 0 38px;
}

.fjellro-demo-banner p {
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.25;
  margin: 0;
}

.fjellro-demo-banner a {
  color: #f5d2bd;
  font-size: 11.5px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.fjellro-demo-banner a:hover {
  color: #fff;
}

.fjellro-nav {
  height: 54px;
  padding: 0 34px 0 38px;
}

.fjellro-mark {
  flex-basis: 34px;
  height: 34px;
  width: 34px;
}

.fjellro-brand {
  gap: 12px;
}

.fjellro-brand strong {
  font-size: 12px;
}

.fjellro-brand small {
  font-size: 8px;
}

.fjellro-cta {
  padding: 12px 24px;
}

.fjellro-hero__grid {
  grid-template-columns: 235px minmax(0, 1fr) 690px;
  height: 631px;
}

.fjellro-strip,
.fjellro-copy,
.fjellro-photo {
  height: 631px;
}

.fjellro-strip img {
  transform: scale(1.015);
}

.fjellro-copy {
  padding: 42px 42px 0 52px;
}

.fjellro-copy h1 {
  font-size: 72px;
  font-style: normal;
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.01;
  margin-bottom: 18px;
  max-width: 590px;
}

.fjellro-rule {
  height: 2px;
  margin-bottom: 18px;
  width: 62px;
}

.fjellro-copy p {
  font-size: 15px;
  line-height: 1.5;
  max-width: 430px;
}

.fjellro-photo > img {
  filter: brightness(1.09) saturate(0.94) sepia(0.045) contrast(0.98);
  object-position: 50% 46%;
  transform: scale(1.018);
}

.fjellro-badge {
  height: 130px;
  right: 36px;
  top: 30px;
  width: 130px;
}

.fjellro-trail {
  background: rgba(20, 32, 20, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  bottom: 12px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  color: rgba(255, 255, 255, 0.9);
  padding: 13px 15px 12px;
  right: 34px;
  width: 214px;
}

.fjellro-trail small,
.fjellro-trail p {
  color: rgba(255, 255, 255, 0.68);
}

.fjellro-trail em {
  color: #d08a62;
}

.fjellro-seasonal {
  background:
    radial-gradient(circle at 92% 18%, rgba(184, 116, 66, 0.08), transparent 13rem),
    linear-gradient(rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.01)),
    var(--fj-forest);
  border: 1px solid rgba(214, 188, 151, 0.24);
  bottom: 37px;
  box-sizing: border-box;
  height: 276px;
  left: 260px;
  padding: 14px 18px 12px;
  width: 560px;
}

.fjellro-seasonal::before {
  background-image:
    radial-gradient(circle at 10% 20%, rgba(184, 116, 66, 0.12) 0 1px, transparent 1.5px),
    linear-gradient(115deg, rgba(184, 116, 66, 0.06), transparent 45%);
  content: "";
  inset: 0;
  opacity: 0.35;
  pointer-events: none;
  position: absolute;
}

.fjellro-seasonal > * {
  position: relative;
}

.fjellro-seasonal__kicker {
  margin-bottom: 10px;
}

.fjellro-seasonal__tabs {
  margin-bottom: 10px;
}

.fjellro-seasonal__tab {
  font-size: 11.5px;
  padding: 5px 9px 8px;
}

.fjellro-experience {
  padding: 0 12px;
  text-align: center;
}

.fjellro-experience__num {
  align-items: center;
  border: 1px solid rgba(209, 139, 85, 0.36);
  border-radius: 50%;
  display: inline-flex;
  height: 22px;
  justify-content: center;
  margin: 0 auto 5px;
  width: 22px;
}

.fjellro-experience__icon {
  height: 20px;
  margin: 0 auto 5px;
  width: 20px;
}

.fjellro-experience__icon svg {
  height: 20px;
  width: 20px;
}

.fjellro-experience h3 {
  font-size: 12.2px;
  line-height: 1.25;
  margin-left: auto;
  margin-right: auto;
  max-width: 132px;
}

.fjellro-experience p {
  color: rgba(255, 255, 255, 0.56);
  font-size: 9.7px;
  line-height: 1.34;
  margin-bottom: 6px;
}

.fjellro-seasonal__link {
  margin-top: 7px;
  padding-top: 8px;
  text-align: center;
}

.fjellro-booking {
  border: 1px solid rgba(31, 27, 22, 0.13);
  border-radius: 15px;
  box-shadow: 0 12px 34px rgba(31, 27, 22, 0.08);
  grid-template-columns: minmax(0, 1fr) 500px;
  margin: 0 34px;
  min-height: 148px;
  position: relative;
  width: calc(100% - 68px);
  z-index: 22;
}

.fjellro-booking__bar {
  border-radius: 15px 0 0 15px;
  border-right: 1px solid rgba(31, 27, 22, 0.08);
  border-top: 0;
  padding: 14px 22px 9px 24px;
  position: relative;
}

.fjellro-booking__label {
  margin-bottom: 10px;
}

.fjellro-field {
  margin-right: 14px;
  padding-right: 14px;
}

.fjellro-field button {
  border-radius: 6px;
  min-height: 36px;
}

.fjellro-field button:focus-visible,
.fjellro-popover button:focus-visible,
.fjellro-availability button:focus-visible,
.fjellro-availability a:focus-visible,
.fjellro-demo-banner a:focus-visible {
  outline: 2px solid rgba(184, 74, 46, 0.56);
  outline-offset: 3px;
}

.fjellro-field--room {
  min-width: 194px;
}

.fjellro-field--room img {
  height: 36px;
  width: 36px;
}

.fjellro-booking__submit {
  min-height: 58px;
  padding: 0 22px;
}

.fjellro-guarantee {
  margin-top: 9px;
}

.fjellro-booking__demo-note,
.fjellro-booking__error {
  color: var(--fj-light);
  font-size: 10px;
  line-height: 1.2;
  margin: 4px 0 0 21px;
}

.fjellro-booking__error {
  color: var(--fj-rust-hover);
  font-weight: 500;
}

.fjellro-map {
  border-radius: 0 15px 15px 0;
  border-top: 0;
  min-height: 148px;
}

.fjellro-map > img {
  object-position: center;
}

.fjellro-benefits {
  height: 78px;
}

.fjellro-benefits article {
  gap: 15px;
  padding: 0 50px;
}

.fjellro-benefits svg {
  height: 27px;
  width: 27px;
}

.fjellro-popover {
  background: rgba(255, 250, 242, 0.98);
  border: 1px solid rgba(31, 27, 22, 0.13);
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(31, 27, 22, 0.2);
  color: var(--fj-text);
  bottom: calc(100% + 12px);
  left: 24px;
  padding: 18px;
  position: absolute;
  top: auto;
  width: min(650px, calc(100vw - 40px));
  z-index: 40;
}

.fjellro-popover[hidden] {
  display: none;
}

.fjellro-popover__head {
  align-items: flex-start;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 14px;
}

.fjellro-popover__head strong,
.fjellro-popover__head span {
  display: block;
}

.fjellro-popover__head strong {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 3px;
}

.fjellro-popover__head span {
  color: var(--fj-mid);
  font-size: 12px;
  line-height: 1.35;
}

.fjellro-calendar__nav {
  display: flex;
  gap: 6px;
}

.fjellro-calendar__nav button,
.fjellro-counter button {
  align-items: center;
  background: var(--fj-cream);
  border: 1px solid rgba(31, 27, 22, 0.13);
  border-radius: 7px;
  color: var(--fj-text);
  display: inline-flex;
  height: 32px;
  justify-content: center;
  width: 32px;
}

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

.fjellro-month strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}

.fjellro-month__grid {
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(7, 1fr);
}

.fjellro-month__weekday {
  color: var(--fj-light);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding-bottom: 4px;
  text-align: center;
  text-transform: uppercase;
}

.fjellro-date-cell {
  align-items: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 7px;
  color: var(--fj-text);
  display: inline-flex;
  font-size: 12px;
  height: 34px;
  justify-content: center;
}

.fjellro-date-cell:hover:not(:disabled) {
  background: #efe6d7;
}

.fjellro-date-cell:disabled {
  color: rgba(138, 123, 106, 0.42);
  cursor: not-allowed;
}

.fjellro-date-cell.is-selected,
.fjellro-date-cell.is-range {
  background: var(--fj-forest);
  color: #fff;
}

.fjellro-date-cell.is-range {
  background: rgba(30, 46, 30, 0.14);
  color: var(--fj-text);
}

.fjellro-guests-popover {
  left: 280px;
  width: 320px;
}

.fjellro-room-popover {
  left: 520px;
  width: 420px;
}

.fjellro-counter {
  align-items: center;
  border-top: 1px solid rgba(31, 27, 22, 0.1);
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
}

.fjellro-counter:first-of-type {
  border-top: 0;
}

.fjellro-counter span,
.fjellro-counter b,
.fjellro-counter small {
  display: block;
}

.fjellro-counter b {
  font-size: 13px;
  font-weight: 600;
}

.fjellro-counter small {
  color: var(--fj-light);
  font-size: 11px;
}

.fjellro-counter div {
  align-items: center;
  display: flex;
  gap: 10px;
}

.fjellro-counter output {
  min-width: 18px;
  text-align: center;
}

.fjellro-room-list {
  display: grid;
  gap: 8px;
}

.fjellro-room-option {
  align-items: center;
  background: rgba(245, 240, 232, 0.7);
  border: 1px solid transparent;
  border-radius: 10px;
  display: flex;
  gap: 12px;
  padding: 8px;
  text-align: left;
  transition: background 160ms var(--ease-out), border-color 160ms var(--ease-out);
}

.fjellro-room-option:hover,
.fjellro-room-option.is-selected {
  background: #fffaf2;
  border-color: rgba(184, 74, 46, 0.38);
}

.fjellro-room-option img {
  border-radius: 8px;
  height: 54px;
  object-fit: cover;
  width: 54px;
}

.fjellro-room-option b,
.fjellro-room-option small {
  display: block;
}

.fjellro-room-option b {
  font-size: 13px;
  font-weight: 600;
}

.fjellro-room-option small {
  color: var(--fj-mid);
  font-size: 11.5px;
  line-height: 1.3;
}

.fjellro-availability {
  background: #fffaf2;
  border: 1px solid rgba(31, 27, 22, 0.16);
  border-radius: 16px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  color: var(--fj-text);
  max-width: 560px;
  padding: 30px;
  width: calc(100vw - 40px);
}

.fjellro-availability::backdrop {
  background: rgba(12, 18, 12, 0.44);
  backdrop-filter: blur(3px);
}

.fjellro-availability__close {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--fj-mid);
  display: inline-flex;
  font-size: 28px;
  height: 34px;
  justify-content: center;
  position: absolute;
  right: 16px;
  top: 14px;
  width: 34px;
}

.fjellro-availability__kicker {
  color: var(--fj-rust);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.fjellro-availability h2,
.fjellro-confirmation h2 {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.05;
  margin: 0 0 20px;
}

.fjellro-availability__summary {
  display: grid;
  gap: 0;
  margin: 0 0 16px;
}

.fjellro-availability__summary div {
  border-top: 1px solid rgba(31, 27, 22, 0.1);
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}

.fjellro-availability__summary dt {
  color: var(--fj-light);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fjellro-availability__summary dd {
  font-size: 14px;
  margin: 0;
  text-align: right;
}

.fjellro-availability__note,
.fjellro-confirmation p {
  color: var(--fj-mid);
  font-size: 13px;
  line-height: 1.55;
}

.fjellro-availability__reserve,
.fjellro-confirmation__actions a,
.fjellro-confirmation__actions button {
  align-items: center;
  background: var(--fj-rust);
  border: 0;
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 500;
  justify-content: center;
  padding: 13px 20px;
  text-decoration: none;
}

.fjellro-confirmation__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.fjellro-confirmation__actions button {
  background: var(--fj-forest);
}

@media (max-width: 1230px) {
  .fjellro-demo-banner {
    align-items: flex-start;
    height: auto;
    padding: 10px 20px;
  }

  .fjellro-nav {
    height: auto;
    min-height: 62px;
    padding: 10px 20px;
  }

  .fjellro-hero__grid {
    grid-template-columns: 1fr;
    height: auto;
  }

  .fjellro-copy,
  .fjellro-photo {
    height: auto;
  }

  .fjellro-copy {
    min-height: 330px;
    padding: 44px 24px 36px;
  }

  .fjellro-copy h1 {
    font-size: clamp(48px, 11vw, 68px);
  }

  .fjellro-seasonal {
    bottom: auto;
    height: auto;
    left: auto;
    margin: -70px 18px 22px;
    position: relative;
    width: auto;
    z-index: 1;
  }

  .fjellro-booking {
    grid-template-columns: 1fr;
    margin: 0 18px;
    position: relative;
    width: calc(100% - 36px);
    z-index: 2;
  }

  .fjellro-popover,
  .fjellro-guests-popover,
  .fjellro-room-popover {
    bottom: auto;
    left: 0;
    max-height: min(72vh, 620px);
    overflow: auto;
    top: 96px;
    width: 100%;
  }

  .fjellro-calendar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .fjellro-demo-banner {
    display: grid;
    gap: 6px;
  }

  .fjellro-seasonal__tabs {
    overflow-x: auto;
  }

  .fjellro-seasonal__panel.is-active {
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .fjellro-experience {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 0 0;
  }

  .fjellro-experience:first-child {
    border-top: 0;
  }

  .fjellro-booking__bar {
    padding: 24px 20px;
  }

  .fjellro-booking__submit {
    min-height: 52px;
    width: 100%;
  }

  .fjellro-availability {
    padding: 24px 20px;
  }

  .fjellro-availability__summary div {
    display: grid;
    gap: 4px;
  }

  .fjellro-availability__summary dd {
    text-align: left;
  }
}


/* Vela House coastal design hotel demo */
.vela-house-page {
  background: #0d0d0d;
  color: #fff;
  font-family: "Host Grotesk", ui-sans-serif, system-ui, sans-serif;
}

.vela-house-page .site-header,
.vela-house-page .site-footer {
  display: none;
}

body.vela-house-page .site-main {
  margin: 0;
  max-width: none;
  min-height: auto;
  overflow: visible;
  padding: 0;
}

.vela-shell,
.vela-shell * {
  box-sizing: border-box;
}

.vela-shell {
  background: #0d0d0d;
  color: #fff;
  font-family: "Host Grotesk", ui-sans-serif, system-ui, sans-serif;
  min-height: 100dvh;
  overflow: hidden;
}

.vela-hero {
  background: #0d0d0d;
  min-height: 100dvh;
  overflow: hidden;
  position: relative;
}

.vela-hero__image,
.vela-hero__shade {
  inset: 0;
  position: absolute;
}

.vela-hero__image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.vela-hero__image--composite {
  z-index: 1;
}

.vela-hero__image--composite img {
  filter: saturate(0.9) contrast(1.02) brightness(0.9);
  object-position: center;
}

.vela-hero__shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.56) 0%, rgba(0, 0, 0, 0.22) 34%, rgba(0, 0, 0, 0.14) 62%, rgba(0, 0, 0, 0.52) 100%),
    radial-gradient(ellipse at 18% 70%, rgba(0, 0, 0, 0.58), transparent 58%);
  pointer-events: none;
  z-index: 4;
}

.vela-nav {
  align-items: center;
  display: flex;
  inset: 0 0 auto;
  justify-content: space-between;
  padding: 30px 50px;
  position: absolute;
  z-index: 20;
}

.vela-wordmark,
.vela-nav__links a,
.vela-menu a {
  color: #fff;
  text-decoration: none;
}

.vela-wordmark {
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Visible "back to demos" link, stacked above the wordmark (dark/cinematic, high contrast). */
.vela-nav__left {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.vela-demo-return {
  color: rgba(238, 241, 242, 0.78);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 220ms ease;
  white-space: nowrap;
}
.vela-demo-return:hover,
.vela-demo-return:focus-visible {
  color: #ffffff;
}

.vela-nav__links {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3.2rem);
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}

.vela-nav__links a {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.24em;
  line-height: 1;
  padding-bottom: 0.55rem;
  position: relative;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.vela-nav__links a:hover,
.vela-nav__links a:focus-visible,
.vela-nav__links a.is-active {
  color: #fff;
}

.vela-nav__links a.is-active::after {
  background: rgba(255, 255, 255, 0.92);
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
}

.vela-menu-button {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  flex: 0 0 42px;
  height: 42px;
  justify-content: center;
  padding: 0;
  position: relative;
  transition: background 220ms ease, border-color 220ms ease;
  width: 42px;
}

.vela-menu-button:hover,
.vela-menu-button:focus-visible,
.vela-menu-button[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.86);
}

.vela-menu-button span {
  background: currentColor;
  height: 1px;
  left: 13px;
  position: absolute;
  width: 15px;
}

.vela-menu-button span:nth-child(1) { top: 15px; }
.vela-menu-button span:nth-child(2) { top: 21px; }
.vela-menu-button span:nth-child(3) { top: 27px; }

.vela-menu {
  background: rgba(10, 10, 10, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  display: grid;
  gap: 0;
  min-width: 220px;
  padding: 10px;
  position: absolute;
  right: 50px;
  top: 84px;
  z-index: 24;
}

.vela-menu[hidden] {
  display: none;
}

.vela-menu a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  padding: 13px 12px;
  text-transform: uppercase;
}

.vela-menu a:last-child {
  border-bottom: 0;
}

.vela-side-label {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.58rem;
  font-weight: 300;
  left: 18px;
  letter-spacing: 0.38em;
  line-height: 1;
  margin: 0;
  position: absolute;
  text-transform: uppercase;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
  white-space: nowrap;
  z-index: 18;
}

.vela-copy {
  left: clamp(4.5rem, 6vw, 5.4rem);
  max-width: min(29rem, 42vw);
  position: absolute;
  top: 47%;
  transform: translateY(-50%);
  z-index: 16;
}

.vela-coordinates {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  font-variant-numeric: tabular-nums;
  font-weight: 300;
  letter-spacing: 0.12em;
  margin: 0 0 1.35rem;
}

.vela-copy h1 {
  color: #fff;
  font-size: clamp(3.2rem, 6vw, 5.3rem);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.01;
  margin: 0 0 1.35rem;
  max-width: 9ch;
}

.vela-copy > p:not(.vela-coordinates) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.75;
  margin: 0 0 2.7rem;
  max-width: 26rem;
}

.vela-ghost-button {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #fff;
  display: inline-flex;
  font: inherit;
  font-size: 0.64rem;
  font-weight: 400;
  gap: 1rem;
  letter-spacing: 0.28em;
  min-height: 52px;
  padding: 0 2.2rem;
  text-transform: uppercase;
  transition: background 220ms ease, border-color 220ms ease;
}

.vela-ghost-button:hover,
.vela-ghost-button:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
}

.vela-season-tabs {
  background: rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(8px);
  bottom: 108px;
  left: 48px;
  max-width: calc(100% - 360px);
  padding: 18px 34px 14px;
  position: absolute;
  z-index: 16;
}

.vela-season-tabs div[role="tablist"] {
  display: flex;
  gap: clamp(1.2rem, 2.7vw, 2.5rem);
}

.vela-season-tab {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.4);
  font: inherit;
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.24em;
  padding: 0 0 0.72rem;
  position: relative;
  text-transform: uppercase;
  transition: color 220ms ease;
  white-space: nowrap;
}

.vela-season-tab:hover,
.vela-season-tab:focus-visible,
.vela-season-tab.is-active {
  color: #fff;
}

.vela-season-tab.is-active::before,
.vela-season-tab.is-active::after {
  background: #fff;
  content: "";
  left: 0;
  position: absolute;
}

.vela-season-tab.is-active::before {
  bottom: 0;
  height: 1px;
  right: 0;
}

.vela-season-tab.is-active::after {
  border-radius: 50%;
  bottom: -3px;
  height: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
}

.vela-season-tabs p {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  font-weight: 300;
  line-height: 1.55;
  margin: 1rem 0 0;
  max-width: 35rem;
}

.vela-experiences {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-left: 1px solid rgba(255, 255, 255, 0.09);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  bottom: 108px;
  padding: 28px 28px 0;
  position: absolute;
  right: 0;
  width: 248px;
  z-index: 17;
}

.vela-experiences > p {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 0.32em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.vela-experiences__rule {
  background: rgba(255, 255, 255, 0.16);
  display: block;
  height: 1px;
  margin-bottom: 0;
  position: relative;
}

.vela-experiences__rule::after {
  background: rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  content: "";
  height: 5px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 5px;
}

.vela-experience {
  align-items: center;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  display: flex;
  font: inherit;
  gap: 1rem;
  padding: 20px 0;
  text-align: left;
  transition: opacity 180ms ease;
  width: 100%;
}

.vela-experience:last-child {
  border-bottom: 0;
  padding-bottom: 26px;
}

.vela-experience:hover,
.vela-experience:focus-visible {
  opacity: 0.72;
}

.vela-experience svg {
  fill: none;
  flex: 0 0 26px;
  height: 24px;
  stroke: rgba(255, 255, 255, 0.65);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1;
  width: 26px;
}

.vela-experience span {
  font-size: 0.74rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.vela-booking {
  align-items: stretch;
  background: #0e0e0e;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  bottom: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  height: 108px;
  left: 0;
  margin: 0;
  position: absolute;
  right: 0;
  z-index: 20;
}

.vela-booking__fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vela-booking-field {
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 0 clamp(1.5rem, 3vw, 2.6rem);
  position: relative;
  transition: background 180ms ease;
}

.vela-booking-field:hover,
.vela-booking-field:focus-within {
  background: rgba(255, 255, 255, 0.026);
}

.vela-booking-field span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 0.28em;
  margin-bottom: 0.45rem;
  text-transform: uppercase;
}

.vela-booking-field b,
.vela-guests b {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.vela-booking-field input[type="date"] {
  cursor: pointer;
  inset: 0;
  opacity: 0;
  position: absolute;
  width: 100%;
}

.vela-guests {
  align-items: center;
  display: flex;
  gap: 0.75rem;
}

.vela-guests button {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  font: inherit;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.vela-booking__status {
  bottom: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  left: 2.6rem;
  margin: 0;
  position: absolute;
}

.vela-booking__submit {
  align-items: center;
  background: #fff;
  border: 0;
  color: #0d0d0d;
  display: inline-flex;
  font: inherit;
  font-size: 0.64rem;
  font-weight: 500;
  gap: 1rem;
  justify-content: center;
  letter-spacing: 0.26em;
  padding: 0 1.5rem;
  text-transform: uppercase;
  transition: background 180ms ease;
}

.vela-booking__submit:hover,
.vela-booking__submit:focus-visible {
  background: #efefef;
}

.vela-dialog {
  background: rgba(12, 12, 12, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  max-width: 540px;
  padding: 34px;
  width: calc(100vw - 40px);
}

.vela-dialog::backdrop {
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(4px);
}

.vela-dialog__close {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 28px;
  position: absolute;
  right: 18px;
  top: 14px;
}

.vela-dialog__kicker {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.vela-dialog h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin: 0 0 1rem;
}

.vela-dialog p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.65;
}

.vela-dialog a {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  display: inline-flex;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  margin-top: 1rem;
  padding: 14px 18px;
  text-decoration: none;
  text-transform: uppercase;
}

.vela-house-page :focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.82);
  outline-offset: 4px;
}

@media (max-width: 1020px) {
  .vela-nav {
    padding: 24px 28px;
  }

  .vela-nav__links {
    gap: 1.2rem;
  }

  .vela-nav__links a {
    font-size: 0.62rem;
  }

  .vela-copy {
    left: 4rem;
    max-width: 25rem;
  }

  .vela-experiences {
    right: 0;
    width: 222px;
  }

  .vela-season-tabs {
    left: 32px;
    max-width: calc(100% - 280px);
    padding: 16px 24px 14px;
  }

  .vela-season-tabs div[role="tablist"] {
    flex-wrap: wrap;
    gap: 1rem 1.4rem;
  }

  .vela-booking {
    grid-template-columns: minmax(0, 1fr) 230px;
  }
}

@media (max-width: 760px) {
  .vela-hero {
    min-height: 100svh;
    overflow: visible;
    padding-top: 72svh;
  }

  .vela-shell {
    overflow: visible;
  }

  .vela-hero__image--composite {
    bottom: auto;
    height: 72svh;
  }

  .vela-hero__image--composite img {
    object-position: center top;
  }

  .vela-side-label {
    display: none;
  }

  .vela-hero__shade {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.78) 62%, #0d0d0d 100%);
  }

  .vela-nav {
    padding: 18px 18px;
  }

  .vela-nav__links {
    display: none;
  }

  .vela-menu {
    left: 18px;
    right: 18px;
    top: 74px;
  }

  .vela-copy {
    left: 24px;
    max-width: calc(100% - 48px);
    top: 96px;
    transform: none;
  }

  .vela-copy h1 {
    font-size: clamp(3rem, 17vw, 4.8rem);
    max-width: 8.5ch;
  }

  .vela-copy > p:not(.vela-coordinates) {
    max-width: 20rem;
  }

  .vela-season-tabs,
  .vela-experiences,
  .vela-booking {
    position: relative;
  }

  .vela-season-tabs {
    bottom: auto;
    left: auto;
    margin: 0 18px;
    max-width: none;
    z-index: 10;
  }

  .vela-season-tabs div[role="tablist"] {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vela-season-tab {
    min-height: 44px;
    text-align: left;
    white-space: normal;
  }

  .vela-experiences {
    border-left: 0;
    bottom: auto;
    margin: 18px;
    right: auto;
    width: auto;
    z-index: 10;
  }

  .vela-booking {
    bottom: auto;
    grid-template-columns: 1fr;
    height: auto;
    left: auto;
    right: auto;
    z-index: 10;
  }

  .vela-booking__fields {
    grid-template-columns: 1fr;
  }

  .vela-booking-field {
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    border-right: 0;
    min-height: 84px;
    padding: 0 24px;
  }

  .vela-booking__status {
    bottom: auto;
    left: auto;
    padding: 14px 24px 0;
    position: relative;
  }

  .vela-booking__submit {
    min-height: 64px;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vela-house-page *,
  .vela-house-page *::before,
  .vela-house-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Vela House routed hospitality pages */
.vela-subpage {
  --vela-bg: #111111;
  --vela-panel: #141414;
  --vela-panel-alt: #1a1a1a;
  --vela-line: #2a2a2a;
  --vela-text: #e8e4df;
  --vela-muted: #7a7672;
  --vela-accent: #a89880;
  background: var(--vela-bg);
  color: var(--vela-text);
  font-family: "Host Grotesk", ui-sans-serif, system-ui, sans-serif;
}

.vela-subpage .vela-shell {
  background: var(--vela-bg);
  color: var(--vela-text);
  min-height: 100dvh;
  overflow: visible;
}

.vela-subpage h1,
.vela-subpage h2,
.vela-subpage h3,
.vela-subpage p {
  font-family: "Host Grotesk", ui-sans-serif, system-ui, sans-serif;
}

.vela-subpage a {
  color: inherit;
}

.vela-subpage-nav {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0));
  padding: 22px 40px;
}

.vela-subpage-kicker {
  color: rgba(232, 228, 223, 0.72);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.24em;
  margin: 0 0 1.1rem;
  text-transform: uppercase;
}

.vela-stay-hero,
.vela-reserve-hero {
  background: var(--vela-bg);
  min-height: 380px;
  overflow: hidden;
  position: relative;
}

.vela-stay-hero {
  min-height: 420px;
}

.vela-stay-hero img,
.vela-reserve-hero img {
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center 40%;
  position: absolute;
  width: 100%;
}

.vela-stay-hero__shade,
.vela-reserve-hero__shade {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.3) 48%, rgba(0, 0, 0, 0.14));
  inset: 0;
  position: absolute;
}

.vela-stay-hero__copy,
.vela-reserve-hero__copy {
  bottom: 48px;
  left: 48px;
  max-width: 520px;
  position: absolute;
  z-index: 2;
}

.vela-stay-hero__copy h1,
.vela-reserve-hero__copy h1,
.vela-sauna-copy h1 {
  color: var(--vela-text);
  font-size: clamp(46px, 3.8vw, 60px);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.08;
  margin: 0 0 1.2rem;
}

.vela-reserve-hero__copy h1 {
  font-size: clamp(44px, 3.7vw, 55px);
  line-height: 1.1;
}

.vela-stay-hero__copy p:last-child,
.vela-reserve-hero__copy p:last-child,
.vela-sauna-copy > p {
  color: rgba(232, 228, 223, 0.72);
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.65;
  margin: 0;
}

.vela-stay-filter {
  align-items: stretch;
  background: var(--vela-panel);
  border-bottom: 1px solid var(--vela-line);
  border-top: 1px solid var(--vela-line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(210px, 0.75fr);
  margin: 0;
}

.vela-stay-filter__field,
.vela-stay-filter__guest {
  border-right: 1px solid var(--vela-line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 86px;
  padding: 0 28px;
  text-decoration: none;
}

.vela-stay-filter__field span,
.vela-stay-filter__guest span,
.vela-reserve-booking__fields span {
  color: var(--vela-muted);
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  margin-bottom: 0.48rem;
  text-transform: uppercase;
}

.vela-stay-filter__field b,
.vela-stay-filter__guest b,
.vela-reserve-booking__fields b {
  color: var(--vela-text);
  font-size: 0.9rem;
  font-weight: 300;
}

.vela-stay-filter__guest {
  align-items: center;
  display: grid;
  grid-template-columns: auto 30px auto 30px;
  gap: 0.62rem;
  justify-content: start;
}

.vela-stay-filter__guest span {
  grid-column: 1 / -1;
}

.vela-stay-filter__guest button,
.vela-reserve-booking__guests button {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(232, 228, 223, 0.24);
  border-radius: 50%;
  color: var(--vela-text);
  display: inline-flex;
  font: inherit;
  height: 30px;
  justify-content: center;
  padding: 0;
  width: 30px;
}

.vela-stay-filter__submit,
.vela-reserve-booking__submit {
  align-items: center;
  background: var(--vela-text);
  border: 0;
  color: var(--vela-bg);
  display: inline-flex;
  font-size: 0.62rem;
  font-weight: 500;
  gap: 0.9rem;
  justify-content: center;
  letter-spacing: 0.22em;
  min-height: 86px;
  padding: 0 22px;
  text-decoration: none;
  text-transform: uppercase;
}

.vela-stay-filter__submit svg,
.vela-room-row__action svg,
.vela-sauna-copy__cta svg,
.vela-session-card > svg:last-child,
.vela-suite-card__action svg,
.vela-reserve-booking__submit svg {
  fill: none;
  height: 10px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2;
  width: 18px;
}

/* The cream submit buttons sit on var(--vela-text); the generic `.vela-subpage a { color: inherit }`
   rule was making their label inherit the light body colour (invisible on cream). Restore the dark
   label + arrow (svg uses currentColor) on these buttons only. */
.vela-subpage .vela-stay-filter__submit,
.vela-subpage .vela-reserve-booking__submit {
  color: var(--vela-bg);
}

.vela-room-listings {
  background: var(--vela-bg);
  padding: 40px;
}

.vela-room-row {
  align-items: stretch;
  border: 1px solid var(--vela-line);
  border-bottom: 0;
  display: grid;
  grid-template-columns: minmax(360px, 48vw) minmax(260px, 1fr) 180px 84px;
  min-height: 172px;
  transition: background 180ms ease;
}

.vela-room-row:last-child {
  border-bottom: 1px solid var(--vela-line);
}

.vela-room-row:hover {
  background: #151515;
}

.vela-room-row__media {
  border-right: 1px solid var(--vela-line);
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 0.42fr;
  overflow: hidden;
  padding: 8px;
  text-decoration: none;
}

.vela-room-row__media img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.vela-room-row__image-main {
  min-height: 156px;
}

.vela-room-row__stack {
  display: grid;
  gap: 8px;
}

.vela-room-row__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 34px;
}

.vela-room-row__copy span,
.vela-room-row__meta dt {
  color: var(--vela-muted);
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vela-room-row__copy h2 {
  color: var(--vela-text);
  font-size: 1.34rem;
  font-weight: 300;
  letter-spacing: -0.01em;
  margin: 0.75rem 0 1rem;
}

.vela-room-row__copy p,
.vela-room-row__meta dd {
  color: var(--vela-muted);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.55;
  margin: 0;
}

.vela-room-row__meta {
  border-left: 1px solid var(--vela-line);
  display: grid;
  gap: 1.3rem;
  margin: 0;
  padding: 34px 26px;
}

.vela-room-row__meta dd {
  color: var(--vela-text);
  margin-top: 0.45rem;
}

.vela-room-row__action {
  align-items: center;
  border-left: 1px solid var(--vela-line);
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
}

.vela-sauna-hero {
  display: grid;
  grid-template-columns: 67fr 33fr;
  min-height: 676px;
  position: relative;
}

.vela-sauna-hero figure {
  margin: 0;
  min-width: 0;
  overflow: hidden;
  position: relative;
}

.vela-sauna-hero figure::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.54));
  content: "";
  inset: 0;
  position: absolute;
}

.vela-sauna-hero img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.vela-sauna-hero__divider {
  background: rgba(232, 228, 223, 0.18);
  bottom: 0;
  left: 67%;
  position: absolute;
  top: 0;
  width: 1px;
}

.vela-sauna-copy {
  bottom: 62px;
  left: 48px;
  max-width: 450px;
  position: absolute;
  z-index: 2;
}

.vela-sauna-copy h1 {
  font-size: clamp(48px, 4vw, 60px);
}

.vela-sauna-copy__cta {
  align-items: center;
  border: 1px solid rgba(232, 228, 223, 0.52);
  display: inline-flex;
  font-size: 0.62rem;
  gap: 0.9rem;
  letter-spacing: 0.2em;
  margin-top: 2rem;
  min-height: 48px;
  padding: 0 22px;
  text-decoration: none;
  text-transform: uppercase;
}

.vela-sauna-sessions {
  border-bottom: 1px solid var(--vela-line);
  border-top: 1px solid var(--vela-line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vela-session-card {
  align-items: center;
  border-right: 1px solid var(--vela-line);
  display: grid;
  grid-template-columns: 52px 1fr auto 18px;
  gap: 20px;
  min-height: 132px;
  padding: 0 34px;
  text-decoration: none;
  transition: background 180ms ease;
}

.vela-session-card:last-child {
  border-right: 0;
}

.vela-session-card:hover {
  background: #171717;
}

.vela-session-card > svg:first-child {
  fill: none;
  height: 44px;
  stroke: var(--vela-muted);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.3;
  width: 44px;
}

.vela-session-card span {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vela-session-card b {
  color: var(--vela-muted);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vela-reserve-body {
  border: 1px solid var(--vela-line);
  display: grid;
  grid-template-columns: minmax(390px, 0.78fr) minmax(520px, 1fr);
  margin: 40px;
}

.vela-reserve-booking,
.vela-reserve-results {
  background: var(--vela-panel);
}

.vela-reserve-booking {
  border-right: 1px solid var(--vela-line);
  margin: 0;
}

.vela-reserve-booking__fields {
  border-bottom: 1px solid var(--vela-line);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vela-reserve-booking__fields > div {
  border-bottom: 1px solid var(--vela-line);
  border-right: 1px solid var(--vela-line);
  min-height: 72px;
  padding: 18px 22px;
}

.vela-reserve-booking__fields > div:nth-child(2n) {
  border-right: 0;
}

.vela-reserve-booking__fields > div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.vela-reserve-booking__guests {
  align-items: center;
  display: grid;
  grid-template-columns: auto 30px auto 30px;
  gap: 0.62rem;
}

.vela-reserve-booking__guests span {
  grid-column: 1 / -1;
}

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

.vela-calendar__month header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.vela-calendar__month header p {
  color: var(--vela-text);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  margin: 0;
  text-transform: uppercase;
}

.vela-calendar__month header svg {
  fill: none;
  height: 6px;
  stroke: var(--vela-muted);
  width: 10px;
}

.vela-calendar__weekdays,
.vela-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.vela-calendar__weekdays span {
  color: var(--vela-muted);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  padding-bottom: 9px;
  text-align: center;
  text-transform: uppercase;
}

.vela-calendar__day,
.vela-calendar__empty {
  align-items: center;
  aspect-ratio: 1;
  background: transparent;
  border: 0;
  color: rgba(232, 228, 223, 0.72);
  display: inline-flex;
  font: inherit;
  font-size: 0.72rem;
  justify-content: center;
  min-width: 0;
  position: relative;
}

.vela-calendar__day:hover:not(:disabled),
.vela-calendar__day:focus-visible {
  background: rgba(168, 152, 128, 0.14);
}

.vela-calendar__day.is-selected {
  background: var(--vela-accent);
  color: #101010;
}

.vela-calendar__day.is-limited::after {
  background: var(--vela-accent);
  border-radius: 50%;
  bottom: 5px;
  content: "";
  height: 3px;
  position: absolute;
  width: 3px;
}

.vela-calendar__day.is-unavailable {
  color: rgba(122, 118, 114, 0.45);
  text-decoration: line-through;
}

.vela-reserve-booking__legend {
  border-top: 1px solid var(--vela-line);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 18px 30px;
}

.vela-reserve-booking__legend span,
.vela-reserve-booking__note,
.vela-reserve-booking__status {
  color: var(--vela-muted);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.vela-reserve-booking__legend i {
  background: rgba(232, 228, 223, 0.72);
  border-radius: 50%;
  display: inline-block;
  height: 7px;
  margin-right: 0.5rem;
  width: 7px;
}

.vela-reserve-booking__legend span:nth-child(2) i {
  background: var(--vela-accent);
}

.vela-reserve-booking__legend span:nth-child(3) i {
  background: rgba(122, 118, 114, 0.45);
}

.vela-reserve-booking__note,
.vela-reserve-booking__status {
  margin: 0;
  padding: 0 30px 16px;
}

.vela-reserve-booking__submit {
  min-height: 62px;
  width: 100%;
}

.vela-reserve-results__header {
  align-items: center;
  border-bottom: 1px solid var(--vela-line);
  display: flex;
  height: 68px;
  justify-content: space-between;
  padding: 0 32px;
}

.vela-reserve-results__header p,
.vela-reserve-results__header span {
  color: var(--vela-text);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  margin: 0;
  text-transform: uppercase;
}

.vela-reserve-results__header span {
  color: var(--vela-muted);
  display: inline-flex;
  gap: 0.45rem;
}

.vela-reserve-results__header svg {
  fill: none;
  height: 6px;
  stroke: currentColor;
  width: 10px;
}

.vela-suite-card {
  border-bottom: 1px solid var(--vela-line);
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) auto;
  min-height: 166px;
}

.vela-suite-card.is-selected {
  background: rgba(168, 152, 128, 0.08);
}

.vela-suite-card:last-child {
  border-bottom: 0;
}

.vela-suite-card img {
  border-right: 1px solid var(--vela-line);
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.vela-suite-card__copy {
  align-self: center;
  padding: 26px 28px;
}

.vela-suite-card h3 {
  color: var(--vela-text);
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  margin: 0 0 0.55rem;
  text-transform: uppercase;
}

.vela-suite-card__copy p {
  color: var(--vela-muted);
  font-size: 0.76rem;
  font-weight: 300;
  line-height: 1.5;
  margin: 0 0 0.7rem;
}

.vela-suite-card__meta {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vela-suite-card__price {
  color: var(--vela-text) !important;
}

.vela-suite-card__price span {
  color: var(--vela-muted);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.vela-suite-card__action {
  align-items: center;
  align-self: center;
  background: transparent;
  border: 1px solid rgba(232, 228, 223, 0.34);
  color: var(--vela-text);
  display: inline-flex;
  font: inherit;
  font-size: 0.6rem;
  gap: 0.65rem;
  justify-self: end;
  letter-spacing: 0.14em;
  margin-right: 28px;
  min-height: 34px;
  padding: 0 15px;
  text-transform: uppercase;
  white-space: nowrap;
}

.vela-reserve-benefits {
  border: 1px solid var(--vela-line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 40px 40px;
}

.vela-reserve-benefits article {
  align-items: flex-start;
  border-right: 1px solid var(--vela-line);
  display: grid;
  gap: 0.6rem 1.2rem;
  grid-template-columns: 42px 1fr;
  padding: 28px;
}

.vela-reserve-benefits article:last-child {
  border-right: 0;
}

.vela-reserve-benefits svg {
  fill: none;
  grid-row: span 2;
  height: 36px;
  stroke: var(--vela-muted);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2;
  width: 36px;
}

.vela-reserve-benefits h2 {
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  margin: 0;
  text-transform: uppercase;
}

.vela-reserve-benefits p {
  color: var(--vela-muted);
  font-size: 0.76rem;
  font-weight: 300;
  line-height: 1.55;
  margin: 0;
}

.vela-suite-dialog {
  background: rgba(12, 12, 12, 0.97);
  border: 1px solid rgba(232, 228, 223, 0.18);
  color: var(--vela-text);
  max-width: 540px;
  padding: 34px;
  width: calc(100vw - 40px);
}

.vela-suite-dialog::backdrop {
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(4px);
}

.vela-suite-dialog__close {
  background: transparent;
  border: 0;
  color: rgba(232, 228, 223, 0.68);
  font-size: 28px;
  position: absolute;
  right: 18px;
  top: 14px;
}

.vela-suite-dialog h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin: 0 0 1rem;
}

.vela-suite-dialog p {
  color: rgba(232, 228, 223, 0.72);
  font-size: 0.92rem;
  line-height: 1.65;
}

.vela-suite-dialog__dismiss {
  background: transparent;
  border: 1px solid rgba(232, 228, 223, 0.5);
  color: var(--vela-text);
  font: inherit;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  margin-top: 1rem;
  padding: 14px 18px;
  text-transform: uppercase;
}

@media (max-width: 1120px) {
  .vela-stay-filter {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vela-stay-filter__submit {
    grid-column: span 2;
  }

  .vela-room-row {
    grid-template-columns: minmax(280px, 0.9fr) minmax(240px, 1fr);
  }

  .vela-room-row__meta,
  .vela-room-row__action {
    border-top: 1px solid var(--vela-line);
  }

  .vela-reserve-body {
    grid-template-columns: 1fr;
  }

  .vela-reserve-booking {
    border-bottom: 1px solid var(--vela-line);
    border-right: 0;
  }

  .vela-suite-card {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .vela-suite-card__action {
    grid-column: 2;
    justify-self: start;
    margin: 0 0 24px 28px;
  }
}

@media (max-width: 760px) {
  .vela-subpage-nav {
    padding: 18px;
  }

  .vela-stay-hero,
  .vela-reserve-hero {
    min-height: 420px;
  }

  .vela-stay-hero__copy,
  .vela-reserve-hero__copy,
  .vela-sauna-copy {
    bottom: 34px;
    left: 24px;
    max-width: calc(100% - 48px);
  }

  .vela-stay-hero__copy h1,
  .vela-reserve-hero__copy h1,
  .vela-sauna-copy h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .vela-stay-filter,
  .vela-room-row,
  .vela-sauna-hero,
  .vela-sauna-sessions,
  .vela-reserve-booking__fields,
  .vela-calendar,
  .vela-suite-card,
  .vela-reserve-benefits {
    grid-template-columns: 1fr;
  }

  .vela-room-listings,
  .vela-reserve-body,
  .vela-reserve-benefits {
    margin: 0;
    padding: 22px;
  }

  .vela-room-row {
    margin-bottom: 22px;
  }

  .vela-room-row__media {
    border-right: 0;
    min-height: 230px;
  }

  .vela-room-row__meta,
  .vela-room-row__action {
    border-left: 0;
  }

  .vela-room-row__action {
    min-height: 64px;
  }

  .vela-sauna-hero {
    min-height: auto;
  }

  .vela-sauna-hero figure {
    min-height: 48svh;
  }

  .vela-sauna-hero__divider {
    display: none;
  }

  .vela-session-card,
  .vela-reserve-benefits article {
    border-bottom: 1px solid var(--vela-line);
    border-right: 0;
  }

  .vela-reserve-body {
    border-left: 0;
    border-right: 0;
  }

  .vela-suite-card img {
    border-right: 0;
    min-height: 220px;
  }
}


/* Atelier Residences boutique aparthotel demo */
.atelier-page {
  --at-bg: #f7f5f0;
  --at-surface: #fbfaf7;
  --at-ink: #2e302f;
  --at-muted: #62675f;
  --at-line: #d9d4cb;
  --at-sage: #637267;
  --at-sage-hover: #58675d;
  --at-shadow: rgba(44, 39, 32, 0.1);
  --atelier-nav-height: 115px;
  background: var(--at-bg);
  color: var(--at-ink);
  font-family: "Host Grotesk", ui-sans-serif, system-ui, sans-serif;
}

.atelier-page .site-header,
.atelier-page .site-footer {
  display: none;
}

body.atelier-page .site-main {
  margin: 0;
  max-width: none;
  min-height: auto;
  overflow: visible;
  padding: 0;
}

.atelier-shell,
.atelier-shell * {
  box-sizing: border-box;
}

.atelier-shell {
  background: var(--at-bg);
  color: var(--at-ink);
  font-family: "Host Grotesk", ui-sans-serif, system-ui, sans-serif;
  margin: 0 auto;
  max-width: 1536px;
  min-height: 100dvh;
  overflow: hidden;
}

.atelier-shell a {
  color: inherit;
}

.atelier-nav {
  align-items: center;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 282px;
  height: var(--atelier-nav-height);
  padding: 0 64px;
  position: relative;
  z-index: 20;
}

.atelier-brand {
  display: inline-grid;
  gap: 8px;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  width: fit-content;
}

.atelier-brand strong {
  font-size: 1.28rem;
  font-weight: 400;
  letter-spacing: 0.46em;
}

.atelier-brand small {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.54em;
  padding-left: 34px;
}

.atelier-nav__links {
  align-items: center;
  display: flex;
  gap: clamp(2.1rem, 3.3vw, 4.6rem);
  justify-content: center;
}

.atelier-nav__links a,
.atelier-story__copy a,
.atelier-dialog a,
.atelier-menu a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.atelier-nav__links a {
  color: var(--at-ink);
  opacity: 0.9;
  transition: opacity 180ms ease;
  white-space: nowrap;
}

.atelier-nav__links a:hover,
.atelier-nav__links a:focus-visible {
  opacity: 0.58;
}

.atelier-nav__actions {
  align-items: center;
  display: flex;
  gap: 26px;
  justify-content: flex-end;
}

.atelier-nav__availability,
.atelier-booking__submit {
  align-items: center;
  background: var(--at-sage);
  border: 0;
  color: #fff;
  display: inline-flex;
  font-family: "Host Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  justify-content: center;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.atelier-nav__availability {
  height: 48px;
  min-width: 184px;
  padding: 0 22px;
}

.atelier-nav__availability:hover,
.atelier-nav__availability:focus-visible,
.atelier-booking__submit:hover,
.atelier-booking__submit:focus-visible {
  background: var(--at-sage-hover);
}

.atelier-menu-button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--at-ink);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  padding: 0;
  width: 42px;
}

.atelier-menu-button svg {
  fill: none;
  height: 24px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.15;
  width: 24px;
}

.atelier-menu {
  background: rgba(251, 250, 247, 0.96);
  border: 1px solid var(--at-line);
  box-shadow: 0 20px 44px var(--at-shadow);
  display: grid;
  min-width: 230px;
  padding: 10px;
  position: absolute;
  right: 64px;
  top: 88px;
  z-index: 30;
}

.atelier-menu[hidden] {
  display: none;
}

.atelier-menu a {
  border-bottom: 1px solid var(--at-line);
  color: var(--at-ink);
  padding: 13px 12px;
}

.atelier-menu a:last-child {
  border-bottom: 0;
}

.atelier-hero--image {
  aspect-ratio: 1672 / 941;
  display: block;
  margin: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.atelier-hero__final-image {
  display: block;
  height: auto;
  width: 100%;
}

.atelier-hero__cta-hitarea {
  background: transparent;
  border: 0;
  bottom: 20%;
  height: 8%;
  left: 39%;
  position: absolute;
  text-decoration: none;
  width: 22%;
  z-index: 2;
}

.atelier-hero__cta-hitarea:focus-visible {
  outline: 2px solid rgba(46, 48, 47, 0.65);
  outline-offset: 3px;
}

@media (max-width: 1099px) {
  .atelier-hero--image {
    aspect-ratio: 1672 / 941;
    height: auto;
    width: 100%;
  }

  .atelier-hero__final-image {
    display: block;
    height: auto;
    width: 100%;
  }
}

.atelier-section-label,
.atelier-booking__field b,
.atelier-dialog__kicker {
  color: var(--at-ink);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
}

.atelier-story__copy h2,
.atelier-closing-line,
.atelier-dialog h2 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.atelier-story__copy a {
  align-items: center;
  display: inline-flex;
  gap: 26px;
}

.atelier-story__copy a svg {
  fill: none;
  height: 12px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.15;
  width: 25px;
}

.atelier-booking {
  align-items: stretch;
  background: var(--at-surface);
  box-shadow: 0 12px 34px var(--at-shadow);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) 322px;
  height: 78px;
  margin: 26px auto 0;
  max-width: 1420px;
  position: relative;
  width: calc(100% - 116px);
  z-index: 8;
}

.atelier-booking__field {
  align-items: center;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--at-line);
  color: var(--at-ink);
  cursor: pointer;
  display: flex;
  font: inherit;
  gap: 24px;
  height: 100%;
  justify-content: flex-start;
  min-width: 0;
  padding: 0 58px;
  text-align: left;
  width: 100%;
}

.atelier-booking__field > svg:first-child {
  fill: none;
  flex: 0 0 27px;
  height: 27px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2;
  width: 27px;
}

.atelier-booking__field > svg:last-child {
  fill: none;
  height: 8px;
  margin-left: auto;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
  width: 14px;
}

.atelier-booking__field span {
  display: grid;
  gap: 8px;
}

.atelier-booking__field small {
  color: var(--at-ink);
  display: block;
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1;
}

.atelier-booking__submit {
  min-width: 0;
  padding: 0 38px;
}

.atelier-story {
  display: grid;
  gap: 66px;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.73fr) minmax(280px, 0.56fr);
  padding: 76px 112px 78px;
}

.atelier-story__copy {
  align-self: start;
  padding-top: 18px;
}

.atelier-section-label {
  align-items: center;
  display: inline-flex;
  gap: 18px;
  margin-bottom: 30px;
}

.atelier-section-label::after {
  background: var(--at-muted);
  content: "";
  height: 1px;
  width: 58px;
}

.atelier-story__copy h2 {
  color: #303131;
  font-size: 2.95rem;
  line-height: 1.08;
  margin: 0 0 32px;
}

.atelier-story__copy p:not(.atelier-section-label) {
  color: #575a56;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.74;
  margin: 0 0 34px;
  max-width: 390px;
}

.atelier-timeline {
  display: grid;
  gap: 38px;
  list-style: none;
  margin: 0;
  padding: 44px 0 0;
  position: relative;
}

.atelier-timeline::before {
  background: #9fa79d;
  bottom: 22px;
  content: "";
  left: 94px;
  position: absolute;
  top: 42px;
  width: 1px;
}

.atelier-timeline li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 46px;
  min-height: 47px;
  position: relative;
}

.atelier-timeline li::before {
  background: #7d897f;
  border-radius: 50%;
  content: "";
  height: 10px;
  left: 90px;
  position: absolute;
  top: 5px;
  width: 10px;
  z-index: 1;
}

.atelier-timeline time {
  color: #303131;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: right;
}

.atelier-timeline p {
  color: #575a56;
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.65;
  margin: 0;
}

.atelier-story__image {
  height: 492px;
  justify-self: center;
  overflow: hidden;
  width: 324px;
}

.atelier-story__image img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}

.atelier-amenities {
  border-top: 1px solid var(--at-line);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 40px 88px 38px;
}

.atelier-amenity {
  align-items: center;
  border-right: 1px solid var(--at-line);
  display: flex;
  gap: 24px;
  justify-content: center;
  min-height: 64px;
  padding: 0 20px;
}

.atelier-amenity:last-child {
  border-right: 0;
}

.atelier-amenity svg {
  fill: none;
  flex: 0 0 32px;
  height: 32px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.1;
  width: 32px;
}

.atelier-amenity span {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 1.55;
  text-transform: uppercase;
}

.atelier-closing-line {
  color: #383a38;
  font-size: 2rem;
  line-height: 1.2;
  margin: 38px 0 72px;
  text-align: center;
}

.atelier-dialog {
  background: var(--at-surface);
  border: 1px solid var(--at-line);
  box-shadow: 0 28px 80px rgba(44, 39, 32, 0.2);
  color: var(--at-ink);
  max-width: 510px;
  padding: 42px;
  width: calc(100vw - 42px);
}

.atelier-dialog::backdrop {
  background: rgba(34, 34, 30, 0.36);
  backdrop-filter: blur(4px);
}

.atelier-dialog__close {
  background: transparent;
  border: 0;
  color: var(--at-muted);
  font-size: 26px;
  position: absolute;
  right: 18px;
  top: 14px;
}

.atelier-dialog__kicker {
  margin-bottom: 18px;
}

.atelier-dialog h2 {
  font-size: 2.7rem;
  line-height: 1.05;
  margin: 0 0 18px;
}

.atelier-dialog p:not(.atelier-dialog__kicker) {
  color: var(--at-muted);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.6;
  margin: 0 0 24px;
}

.atelier-dialog a {
  background: var(--at-sage);
  color: #fff;
  display: inline-flex;
  padding: 15px 20px;
  text-decoration: none;
}

.atelier-page :focus-visible {
  outline: 2px solid rgba(110, 121, 111, 0.62);
  outline-offset: 4px;
}



.atelier-demo-return {
  align-items: center;
  background: rgba(251, 250, 247, 0.86);
  border: 1px solid rgba(217, 212, 203, 0.92);
  bottom: 22px;
  box-shadow: 0 14px 36px rgba(44, 39, 32, 0.12);
  color: var(--at-ink);
  display: inline-flex;
  font-size: 0.66rem;
  font-weight: 500;
  left: 22px;
  letter-spacing: 0.08em;
  padding: 12px 15px;
  position: fixed;
  text-decoration: none;
  text-transform: uppercase;
  z-index: 90;
}

@supports (backdrop-filter: blur(10px)) {
  .atelier-demo-return {
    backdrop-filter: blur(14px);
  }
}

.atelier-booking__date-wrap,
.atelier-booking__guest-wrap {
  min-width: 0;
  position: relative;
}

.atelier-booking__field--date,
.atelier-booking__field--guests {
  position: relative;
}

.atelier-booking__field--guests {
  height: 100%;
  width: 100%;
}

.atelier-booking__field:focus-within,
.atelier-booking__field:hover {
  background: rgba(110, 121, 111, 0.045);
}

.atelier-calendar-popover {
  background: var(--at-surface);
  border: 1px solid var(--at-line);
  box-shadow: 0 24px 64px rgba(44, 39, 32, 0.18);
  color: var(--at-ink);
  display: grid;
  gap: 18px;
  left: 0;
  padding: 20px;
  position: absolute;
  top: calc(100% + 12px);
  width: min(670px, calc(100vw - 48px));
  z-index: 50;
}

.atelier-calendar-popover[hidden] {
  display: none;
}

.atelier-calendar__header {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.atelier-calendar__header p {
  color: var(--at-ink);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin: 0;
  text-transform: uppercase;
}

.atelier-calendar__header div {
  display: flex;
  gap: 8px;
}

.atelier-calendar__header button,
.atelier-calendar-day {
  align-items: center;
  background: transparent;
  border: 1px solid var(--at-line);
  color: var(--at-ink);
  display: inline-flex;
  font: inherit;
  justify-content: center;
}

.atelier-calendar__header button {
  height: 34px;
  width: 34px;
}

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

.atelier-calendar-month h3 {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.atelier-calendar-grid {
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(7, 1fr);
}

.atelier-calendar-weekday {
  color: var(--at-muted);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0 0 7px;
  text-align: center;
  text-transform: uppercase;
}

.atelier-calendar-day {
  aspect-ratio: 1;
  border-color: transparent;
  font-size: 0.82rem;
  min-height: 40px;
  position: relative;
}

.atelier-calendar-day:hover:not(:disabled),
.atelier-calendar-day:focus-visible:not(:disabled) {
  background: rgba(110, 121, 111, 0.09);
  border-color: rgba(110, 121, 111, 0.28);
}

.atelier-calendar-day:disabled {
  color: rgba(46, 48, 47, 0.26);
  cursor: not-allowed;
}

.atelier-calendar-day.is-in-range {
  background: rgba(110, 121, 111, 0.12);
}

.atelier-calendar-day.is-selected {
  background: var(--at-sage);
  color: #fff;
}

.atelier-calendar-day.is-empty {
  visibility: hidden;
}

.atelier-guest-popover {
  background: var(--at-surface);
  border: 1px solid var(--at-line);
  box-shadow: 0 18px 44px rgba(44, 39, 32, 0.14);
  display: grid;
  gap: 18px;
  left: 24px;
  min-width: 250px;
  padding: 18px;
  position: absolute;
  top: calc(100% + 12px);
  z-index: 35;
}

.atelier-guest-popover[hidden] {
  display: none;
}

.atelier-guest-popover > span {
  display: grid;
  gap: 6px;
}

.atelier-guest-popover b {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.atelier-guest-popover small {
  color: var(--at-muted);
  font-size: 0.78rem;
}

.atelier-guest-counter {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.atelier-guest-counter button {
  align-items: center;
  background: transparent;
  border: 1px solid var(--at-line);
  color: var(--at-ink);
  display: inline-flex;
  font: inherit;
  font-size: 1.1rem;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.atelier-guest-counter button:disabled {
  color: rgba(46, 48, 47, 0.32);
}

.atelier-guest-counter output {
  color: var(--at-ink);
  font-size: 1.05rem;
  min-width: 4ch;
  text-align: center;
}

.atelier-booking__status {
  color: var(--at-muted);
  font-size: 0.76rem;
  left: 0;
  margin: 0;
  position: absolute;
  top: calc(100% + 10px);
}

.atelier-dialog__note {
  border-top: 1px solid var(--at-line);
  padding-top: 18px;
}

@media (max-width: 1180px) {
  .atelier-nav {
    grid-template-columns: 190px minmax(0, 1fr) 214px;
    padding: 0 46px;
  }

  .atelier-nav__links {
    gap: 1.5rem;
  }

  .atelier-nav__availability {
    min-width: 184px;
  }

  .atelier-booking {
    grid-template-columns: repeat(3, minmax(0, 1fr)) 223px;
    width: calc(100% - 116px);
  }

  .atelier-booking__field {
    padding: 0 28px;
  }

  .atelier-story {
    gap: 40px;
    padding-left: 54px;
    padding-right: 54px;
  }
}

@media (max-width: 980px) {
  .atelier-nav {
    grid-template-columns: 1fr auto;
  }

  .atelier-nav__links {
    display: none;
  }

  .atelier-nav__actions {
    grid-column: 2;
  }

  .atelier-nav__availability {
    min-width: 174px;
  }

  .atelier-booking {
    grid-template-columns: 1fr 1fr;
    height: auto;
    margin-top: 28px;
  }

  .atelier-booking__field,
  .atelier-booking__submit {
    min-height: 76px;
  }

  .atelier-story {
    grid-template-columns: 1fr;
    padding-top: 62px;
  }

  .atelier-story__image {
    justify-self: stretch;
    width: 100%;
  }

  .atelier-amenities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 30px 32px;
  }

  .atelier-amenity:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 640px) {

  .atelier-demo-return {
    bottom: 14px;
    font-size: 0.58rem;
    left: 14px;
    max-width: calc(100vw - 28px);
    padding: 10px 12px;
  }

  .atelier-guest-popover {
    left: 0;
    right: 0;
  }

  .atelier-calendar-popover {
    left: 50%;
    max-height: min(78vh, 620px);
    overflow: auto;
    transform: translateX(-50%);
    width: calc(100vw - 32px);
  }

  .atelier-calendar__months {
    grid-template-columns: 1fr;
  }

  .atelier-hero__cta-hitarea {
    bottom: 25%;
    height: 9%;
    left: 30%;
    width: 40%;
  }

  .atelier-nav {
    height: 86px;
    padding: 0 22px;
  }

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

  .atelier-brand small {
    font-size: 0.56rem;
    padding-left: 20px;
  }

  .atelier-nav__availability {
    display: none;
  }

  .atelier-booking {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
  }

  .atelier-booking__field {
    border-bottom: 1px solid var(--at-line);
    border-right: 0;
    padding: 0 24px;
  }

  .atelier-story {
    padding: 52px 24px 60px;
  }

  .atelier-story__copy h2 {
    font-size: 2.35rem;
  }

  .atelier-timeline::before {
    left: 76px;
  }

  .atelier-timeline li {
    gap: 32px;
  }

  .atelier-timeline li::before {
    left: 72px;
  }

  .atelier-amenities {
    grid-template-columns: 1fr;
  }

  .atelier-amenity,
  .atelier-amenity:nth-child(2n) {
    border-bottom: 1px solid var(--at-line);
    border-right: 0;
    justify-content: flex-start;
  }

  .atelier-amenity:last-child {
    border-bottom: 0;
  }

  .atelier-closing-line {
    font-size: 1.65rem;
    margin-bottom: 52px;
    padding: 0 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .atelier-page *,
  .atelier-page *::before,
  .atelier-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Atelier Residences routed subpages */
.atelier-subpage {
  background: var(--at-bg);
}

.atelier-subpage .atelier-shell {
  background: var(--at-bg);
}

.atelier-nav__links a[aria-current="page"] {
  color: var(--at-ink);
}

.atelier-nav__links a[aria-current="page"]::after {
  opacity: 0.72;
  transform: scaleX(1);
}

.atelier-nav__availability.is-current {
  background: var(--at-sage-hover);
}

.atelier-subpage-shell main {
  background: var(--at-bg);
  border-top: 1px solid var(--at-line);
}

.atelier-subpage-kicker {
  color: #8b6b47;
  font-family: "Host Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.2;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.atelier-subpage-hero {
  border-bottom: 1px solid var(--at-line);
  min-height: 310px;
  overflow: hidden;
  padding: 60px 64px;
  position: relative;
}

.atelier-subpage-hero__copy {
  max-width: 680px;
  position: relative;
  z-index: 2;
}

.atelier-subpage-hero h1,
.atelier-long-stays-hero h1,
.atelier-neighbourhood-hero h1,
.atelier-long-stays-intro h2,
.atelier-long-stays-bottom h2,
.atelier-result-card h2,
.atelier-apartment-card h2,
.atelier-neighbourhood-card h2 {
  font-family: "Host Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-weight: 300;
}

.atelier-subpage-hero h1 {
  color: var(--at-ink);
  font-size: clamp(52px, 4.6vw, 68px);
  letter-spacing: -0.055em;
  line-height: 0.98;
  margin: 0 0 28px;
}

.atelier-availability-hero h1 {
  font-size: clamp(56px, 5vw, 74px);
  line-height: 0.96;
}

.atelier-subpage-hero p:not(.atelier-subpage-kicker) {
  color: var(--at-muted);
  font-family: "Host Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.65;
  margin: 0;
  max-width: 560px;
}

.atelier-page-sketch {
  height: 360px;
  object-fit: contain;
  opacity: 0.13;
  pointer-events: none;
  position: absolute;
  right: -30px;
  top: -18px;
  width: 600px;
  z-index: 1;
}

.atelier-subpage-rule {
  background: var(--at-line);
  height: 1px;
  margin: 18px 0;
  width: 100%;
}

.atelier-text-link {
  align-items: center;
  border-bottom: 1px solid currentColor;
  color: var(--at-ink);
  display: inline-flex;
  font-family: "Host Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  gap: 10px;
  line-height: 1.2;
  padding-bottom: 3px;
  text-decoration: none;
  transition: color 180ms ease, gap 180ms ease;
}

.atelier-text-link:hover,
.atelier-text-link:focus-visible {
  color: #8b6b47;
  gap: 14px;
}

.atelier-text-link svg {
  fill: none;
  height: 12px;
  stroke: currentColor;
  stroke-width: 1.3;
  width: 24px;
}

.atelier-subpage-button {
  align-items: center;
  background: rgba(99, 114, 103, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.48);
  color: #fff;
  display: inline-flex;
  font-family: "Host Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  justify-content: center;
  letter-spacing: 0.12em;
  line-height: 1;
  min-height: 46px;
  padding: 0 26px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease;
}

.atelier-subpage-button:hover,
.atelier-subpage-button:focus-visible {
  background: var(--at-sage-hover);
}

.atelier-apartment-filters {
  background: var(--at-surface);
  border-bottom: 1px solid var(--at-line);
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
}

.atelier-apartment-filters a,
.atelier-apartment-filters button {
  align-items: center;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--at-line);
  color: var(--at-muted);
  display: flex;
  font-family: "Host Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.9rem;
  gap: 14px;
  min-height: 70px;
  padding: 0 28px;
  text-align: left;
  transition: background 160ms ease, color 160ms ease;
  width: 100%;
}

.atelier-apartment-filters button:last-child {
  border-right: 0;
}

.atelier-apartment-filters a:hover,
.atelier-apartment-filters button:hover,
.atelier-apartment-filters button.is-filtering {
  background: rgba(99, 114, 103, 0.05);
  color: var(--at-ink);
}

.atelier-apartment-filters svg {
  fill: none;
  height: 18px;
  margin-left: auto;
  stroke: currentColor;
  stroke-width: 1.3;
  width: 18px;
}

.atelier-apartment-filters svg:first-child {
  margin-left: 0;
}

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

.atelier-apartment-card {
  border-bottom: 1px solid var(--at-line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
  transition: background 180ms ease;
}

.atelier-apartment-card:nth-child(odd) {
  border-right: 1px solid var(--at-line);
}

.atelier-apartment-card:hover {
  background: rgba(99, 114, 103, 0.02);
}

.atelier-apartment-card.is-hidden {
  display: none;
}

.atelier-apartment-card__image {
  margin: 0;
  overflow: hidden;
}

.atelier-apartment-card__image img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
  width: 100%;
}

.atelier-apartment-card:hover img {
  transform: scale(1.03);
}

.atelier-apartment-card__body {
  border-left: 1px solid var(--at-line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
}

.atelier-apartment-card h2 {
  color: var(--at-ink);
  font-size: 1.72rem;
  letter-spacing: -0.045em;
  line-height: 1.08;
  margin: 0;
}

.atelier-apartment-card p {
  color: var(--at-muted);
  font-size: 0.82rem;
  line-height: 1.45;
  margin: 0;
}

.atelier-apartment-card p span {
  color: var(--at-line);
  padding: 0 8px;
}

.atelier-long-stays-hero {
  color: #fff;
  height: 500px;
  overflow: hidden;
  position: relative;
}

.atelier-long-stays-hero > img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.atelier-long-stays-hero__shade {
  background: linear-gradient(90deg, rgba(20, 18, 14, 0.72), rgba(20, 18, 14, 0.48) 38%, rgba(20, 18, 14, 0.08));
  inset: 0;
  position: absolute;
}

.atelier-long-stays-hero__content {
  bottom: 52px;
  left: 64px;
  max-width: 520px;
  position: absolute;
  z-index: 2;
}

.atelier-long-stays-hero h1 {
  color: #fff;
  font-size: clamp(54px, 4.8vw, 70px);
  letter-spacing: -0.055em;
  line-height: 0.98;
  margin: 0 0 26px;
}

.atelier-long-stays-hero p:not(.atelier-subpage-kicker) {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.65;
  margin: 0 0 13px;
}

.atelier-long-stays-features {
  background: #f5f0ea;
  border-bottom: 1px solid var(--at-line);
  display: grid;
  grid-template-columns: 380px repeat(5, minmax(0, 1fr));
}

.atelier-long-stays-intro,
.atelier-long-stays-feature {
  border-right: 1px solid var(--at-line);
}

.atelier-long-stays-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 44px 52px 64px;
}

.atelier-long-stays-intro h2,
.atelier-long-stays-bottom h2 {
  color: var(--at-ink);
  font-size: 2.35rem;
  letter-spacing: -0.045em;
  line-height: 1.04;
  margin: 0 0 18px;
}

.atelier-long-stays-intro p,
.atelier-long-stays-feature p,
.atelier-long-stays-bottom p {
  color: var(--at-muted);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.65;
  margin: 0;
}

.atelier-long-stays-feature {
  align-items: center;
  display: flex;
  flex-direction: column;
  min-height: 258px;
  padding: 44px 24px;
  text-align: center;
}

.atelier-long-stays-feature svg {
  fill: none;
  height: 42px;
  margin-bottom: 22px;
  stroke: var(--at-ink);
  stroke-width: 1.25;
  width: 42px;
}

.atelier-long-stays-feature h3 {
  color: var(--at-ink);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 14px;
}

.atelier-long-stays-bottom {
  border-bottom: 1px solid var(--at-line);
  display: grid;
  grid-template-columns: 420px 1fr 1fr;
  min-height: 340px;
}

.atelier-long-stays-bottom figure {
  border-right: 1px solid var(--at-line);
  margin: 0;
  overflow: hidden;
}

.atelier-long-stays-bottom figure img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.atelier-long-stays-bottom article,
.atelier-long-stays-bottom aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 64px;
  position: relative;
}

.atelier-long-stays-bottom article {
  border-right: 1px solid var(--at-line);
}

.atelier-long-stays-bottom article p {
  margin-bottom: 34px;
}

.atelier-long-stays-bottom aside {
  overflow: hidden;
}

.atelier-long-stays-bottom aside img {
  height: 360px;
  object-fit: contain;
  opacity: 0.14;
  position: absolute;
  right: -38px;
  top: -25px;
  width: 430px;
}

.atelier-long-stays-bottom aside strong {
  color: var(--at-ink);
  font-size: clamp(2.4rem, 4vw, 3.45rem);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.atelier-long-stays-bottom aside span {
  color: var(--at-muted);
  display: block;
  margin: 14px 0 26px;
  position: relative;
  z-index: 1;
}

.atelier-long-stays-bottom aside p {
  border-top: 1px solid var(--at-line);
  color: var(--at-muted);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  line-height: 1.7;
  padding-top: 24px;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.atelier-availability-search {
  background: var(--at-surface);
  border-bottom: 1px solid var(--at-line);
  border-top: 1px solid var(--at-line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  position: relative;
}

.atelier-availability-search .atelier-booking__date-wrap,
.atelier-availability-search .atelier-booking__guest-wrap {
  min-width: 0;
  position: relative;
}

.atelier-availability-search .atelier-booking__field {
  border-right: 1px solid var(--at-line);
  box-shadow: none;
  min-height: 78px;
  padding: 0 32px;
  width: 100%;
}

.atelier-availability-search .atelier-booking__submit {
  min-width: 216px;
}

.atelier-availability-search .atelier-calendar-popover {
  left: 32px;
  top: calc(100% + 12px);
}

.atelier-availability-results {
  display: grid;
}

.atelier-result-card {
  border-bottom: 1px solid var(--at-line);
  display: grid;
  grid-template-columns: 500px 1fr auto;
  min-height: 176px;
  transition: background 180ms ease;
}

.atelier-result-card:hover {
  background: rgba(99, 114, 103, 0.018);
}

.atelier-result-card figure {
  margin: 0;
  overflow: hidden;
}

.atelier-result-card figure img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
  width: 100%;
}

.atelier-result-card:hover figure img {
  transform: scale(1.03);
}

.atelier-result-card__body {
  border-left: 1px solid var(--at-line);
  padding: 30px 52px;
}

.atelier-result-card h2 {
  color: var(--at-ink);
  font-size: 2.2rem;
  letter-spacing: -0.05em;
  line-height: 1.05;
  margin: 0 0 8px;
}

.atelier-result-card__body > p {
  color: #8b6b47;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.atelier-result-card__amenities {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 11px 16px;
}

.atelier-result-card__amenities span {
  align-items: center;
  border-right: 1px solid var(--at-line);
  color: var(--at-muted);
  display: inline-flex;
  font-size: 0.82rem;
  gap: 7px;
  padding-right: 16px;
}

.atelier-result-card__amenities span:last-child {
  border-right: 0;
}

.atelier-result-card__amenities svg {
  fill: none;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.25;
  width: 16px;
}

.atelier-result-card__actions {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  padding: 28px 44px 28px 20px;
}

.atelier-result-card__actions button:first-child {
  background: var(--at-sage);
  border: 0;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  min-height: 46px;
  padding: 0 26px;
  text-transform: uppercase;
}

.atelier-result-card__details {
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--at-ink);
  font-size: 0.82rem;
  padding: 0 0 3px;
}

.atelier-neighbourhood-hero {
  border-bottom: 1px solid var(--at-line);
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: 440px;
}

.atelier-neighbourhood-hero figure {
  margin: 0;
  overflow: hidden;
}

.atelier-neighbourhood-hero figure img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.atelier-neighbourhood-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 64px 72px 56px 64px;
  position: relative;
}

.atelier-neighbourhood-hero h1 {
  color: var(--at-ink);
  font-size: clamp(48px, 4.4vw, 64px);
  letter-spacing: -0.055em;
  line-height: 0.98;
  margin: 0 0 32px;
  max-width: 620px;
}

.atelier-neighbourhood-hero p:not(.atelier-subpage-kicker) {
  color: var(--at-muted);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  margin: 0;
  max-width: 460px;
}

.atelier-neighbourhood-info {
  border-bottom: 1px solid var(--at-line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(360px, 1.5fr);
  min-height: 280px;
}

.atelier-neighbourhood-card {
  border-right: 1px solid var(--at-line);
  display: flex;
  flex-direction: column;
  padding: 32px;
}

.atelier-neighbourhood-card > svg {
  fill: none;
  height: 18px;
  margin-bottom: 16px;
  stroke: var(--at-muted);
  stroke-width: 1.2;
  width: 18px;
}

.atelier-neighbourhood-card h2 {
  color: var(--at-ink);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.2;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.atelier-neighbourhood-card p {
  border-bottom: 1px solid var(--at-line);
  color: var(--at-muted);
  flex: 1;
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.65;
  margin: 0 0 20px;
  padding-bottom: 20px;
}

.atelier-neighbourhood-map {
  margin: 0;
  overflow: hidden;
}

.atelier-neighbourhood-map img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.atelier-neighbourhood-cta {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 40px 48px;
}

.atelier-neighbourhood-cta .atelier-booking__submit {
  max-width: 580px;
  min-height: 62px;
  text-decoration: none;
  width: 100%;
}

@media (max-width: 1200px) {
  .atelier-nav {
    grid-template-columns: 205px minmax(0, 1fr) 270px;
    padding-inline: 44px;
  }

  .atelier-nav__links {
    gap: 24px;
  }

  .atelier-long-stays-features,
  .atelier-long-stays-bottom,
  .atelier-neighbourhood-info {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .atelier-long-stays-intro,
  .atelier-long-stays-feature,
  .atelier-long-stays-bottom figure,
  .atelier-long-stays-bottom article,
  .atelier-neighbourhood-card {
    border-bottom: 1px solid var(--at-line);
  }

  .atelier-result-card {
    grid-template-columns: 360px 1fr;
  }

  .atelier-result-card__actions {
    align-items: flex-start;
    border-left: 1px solid var(--at-line);
    grid-column: 2;
    padding-top: 0;
  }
}

@media (max-width: 900px) {
  .atelier-subpage-hero,
  .atelier-neighbourhood-hero__copy {
    padding: 48px 28px;
  }

  .atelier-subpage-hero h1,
  .atelier-long-stays-hero h1,
  .atelier-neighbourhood-hero h1 {
    font-size: clamp(2.8rem, 12vw, 4.2rem);
  }

  .atelier-apartment-filters,
  .atelier-apartments-grid,
  .atelier-apartment-card,
  .atelier-availability-search,
  .atelier-result-card,
  .atelier-neighbourhood-hero,
  .atelier-long-stays-features,
  .atelier-long-stays-bottom,
  .atelier-neighbourhood-info {
    grid-template-columns: 1fr;
  }

  .atelier-apartment-card:nth-child(odd),
  .atelier-apartment-card__body,
  .atelier-result-card__body,
  .atelier-result-card__actions,
  .atelier-neighbourhood-card,
  .atelier-long-stays-intro,
  .atelier-long-stays-feature,
  .atelier-long-stays-bottom article,
  .atelier-long-stays-bottom figure {
    border-right: 0;
  }

  .atelier-apartment-card__image,
  .atelier-result-card figure {
    min-height: 250px;
  }

  .atelier-result-card__actions {
    border-left: 0;
    grid-column: auto;
    padding: 0 28px 28px;
  }

  .atelier-long-stays-hero {
    height: 620px;
  }

  .atelier-long-stays-hero__content {
    bottom: 36px;
    left: 28px;
    right: 28px;
  }

  .atelier-neighbourhood-hero figure {
    height: 360px;
  }

  .atelier-neighbourhood-map {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .atelier-nav__links {
    display: none;
  }

  .atelier-subpage-hero h1,
  .atelier-long-stays-hero h1,
  .atelier-neighbourhood-hero h1 {
    letter-spacing: -0.045em;
  }

  .atelier-page-sketch {
    display: none;
  }

  .atelier-apartment-card__body,
  .atelier-long-stays-intro,
  .atelier-long-stays-feature,
  .atelier-long-stays-bottom article,
  .atelier-long-stays-bottom aside,
  .atelier-result-card__body,
  .atelier-neighbourhood-card {
    padding: 28px;
  }
}

/* =====================================================================
   NORVAIN REDESIGN SYSTEM
   Editorial hospitality journey: hero, diagnosis, transformation moment,
   demo showcase (three personalities), guided process, quote.
   ===================================================================== */

:root {
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-editorial: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --p-stone: #5d6b73;
  --p-tide: #74a8a3;
  --p-hearth: #b15a30;
}

/* ---- Shared display headings ---- */
.hero__title,
.diagnosis__title,
.transform__title,
.showcase__title,
.journey__title,
.quote__title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.0;
  margin: 0;
  text-wrap: balance;
}

/* ---- Reveal + parallax primitives (only armed when JS enables motion) ---- */
body.nv-reveal-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 760ms var(--ease-cinematic),
    transform 820ms var(--ease-cinematic);
  transition-delay: calc(var(--stagger, 0) * 80ms);
  will-change: opacity, transform;
}

body.nv-reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ---- Cinematic media mask reveal (scroll-triggered, reuses the reveal observer) ----
   The frame wipes open while the image inside settles from a slight push-in, giving a
   layered, video-like unveiling rather than a flat fade. transform + clip-path only. */
body.nv-reveal-ready [data-reveal="mask"] {
  opacity: 1;
  transform: none;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1150ms var(--ease-cinematic);
  transition-delay: calc(var(--stagger, 0) * 90ms);
  will-change: clip-path;
}

body.nv-reveal-ready [data-reveal="mask"].is-visible {
  clip-path: inset(0 0 0% 0);
}

body.nv-reveal-ready [data-reveal="mask"] img {
  transform: scale(1.14);
  transition: transform 1500ms var(--ease-cinematic);
  transition-delay: calc(var(--stagger, 0) * 90ms);
  will-change: transform;
}

body.nv-reveal-ready [data-reveal="mask"].is-visible img {
  transform: scale(1);
}

/* ---- Hero media: one-time cinematic load reveal (curtain wipe). Reduced-motion users
   get the fully-revealed frame with no animation. ---- */
.hero__media {
  clip-path: inset(0 0 0% 0);
}

@media (prefers-reduced-motion: no-preference) {
  .hero__media {
    animation: heroMaskReveal 1250ms var(--ease-cinematic) 140ms both;
  }
}

@keyframes heroMaskReveal {
  from {
    clip-path: inset(0 0 100% 0);
  }
  to {
    clip-path: inset(0 0 0% 0);
  }
}

/* ---- Header brand mark + condensed scroll state ---- */
.site-header__brand {
  align-items: center;
  display: flex;
  gap: 0.62rem;
}

.site-header__brand-mark {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--color-cta);
  display: inline-flex;
  height: 2.1rem;
  justify-content: center;
  opacity: 0.92;
  width: 2.1rem;
}

.site-header__brand-text {
  display: grid;
  gap: 0.04rem;
}

.site-header.is-scrolled {
  background: rgba(246, 240, 231, 0.94);
  box-shadow: 0 14px 38px rgba(43, 34, 27, 0.1);
}

/* ---- Home section framing ---- */
.nv-home {
  --gutter: clamp(1.15rem, 5vw, 4rem);
  --measure: 1240px;
}

.nv-home .site-main > section {
  margin-inline: auto;
  max-width: calc(var(--measure) + var(--gutter) * 2);
  padding-inline: var(--gutter);
  position: relative;
  width: 100%;
}

.nv-home .site-main > section + section {
  padding-block-start: clamp(3.5rem, 8vw, 7rem);
}

/* ============================ HERO ============================ */
.hero {
  align-items: center;
  display: grid;
  gap: clamp(1.6rem, 3.6vw, 3.5rem) clamp(1.6rem, 4vw, 3.75rem);
  grid-template-areas: "copy media";
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  min-height: min(880px, calc(100svh - 4.2rem));
  padding-block: clamp(2.4rem, 5vw, 4.5rem) clamp(2rem, 4vw, 3.5rem);
}

.hero__copy {
  grid-area: copy;
  max-width: 38ch;
}

.hero__positioning {
  color: var(--p-hearth);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.14em;
  margin: 0 0 var(--space-4);
  text-transform: uppercase;
}

.hero__title {
  font-size: clamp(2.7rem, 1.5rem + 4.6vw, 4.7rem);
}

.hero__text {
  color: var(--color-ink-soft);
  font-size: var(--text-lg);
  margin: var(--space-5) 0 0;
  max-width: 46ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
}

.ui-button--ghost {
  background: transparent;
  border-color: rgba(32, 28, 24, 0.24);
  color: var(--color-charcoal);
}

.ui-button--ghost:hover {
  background: rgba(32, 28, 24, 0.04);
  border-color: rgba(32, 28, 24, 0.4);
  color: var(--color-charcoal);
}

.hero__media {
  align-self: stretch;
  border-radius: 8px;
  grid-area: media;
  margin: 0;
  min-height: clamp(420px, 62vh, 720px);
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 110px rgba(31, 22, 14, 0.22);
}

.hero__media::after {
  background:
    radial-gradient(135% 120% at 72% 16%, transparent 50%, rgba(20, 14, 9, 0.34)),
    linear-gradient(180deg, transparent 60%, rgba(20, 14, 9, 0.26));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero__image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.08);
  width: 100%;
  will-change: transform;
}

/* Slow continuous Ken Burns gives the hero a video-like life; keeps the live parallax offset. */
@media (prefers-reduced-motion: no-preference) {
  .hero__image {
    animation: heroKenBurns 32s ease-in-out 1.1s infinite alternate;
  }
}

@keyframes heroKenBurns {
  from {
    transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.07) translate(0, 0);
  }
  to {
    transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.17) translate(-2.2%, -1.5%);
  }
}

/* ============================ PROOF STRIP ============================ */
.nv-home .proof-strip {
  border-block: 1px solid rgba(32, 28, 24, 0.16);
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: calc(var(--measure) + var(--gutter) * 2);
}

.nv-home .proof-strip__item {
  justify-content: center;
  padding-block: clamp(0.85rem, 1.6vw, 1.15rem);
  text-align: center;
}

/* ============================ DIAGNOSIS ============================ */
.diagnosis__head {
  max-width: 60ch;
}

.diagnosis__kicker,
.transform__kicker,
.journey__kicker {
  color: var(--color-taupe);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  margin: 0 0 var(--space-4);
  text-transform: uppercase;
}

.diagnosis__title {
  font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3.1rem);
  max-width: 22ch;
}

.diagnosis__lede {
  color: var(--color-ink-soft);
  font-size: var(--text-lg);
  margin: var(--space-5) 0 0;
  max-width: 52ch;
}

.diagnosis__list {
  display: grid;
  gap: clamp(1rem, 2.2vw, 1.75rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: clamp(2.25rem, 5vw, 3.75rem) 0 0;
  padding: 0;
}

.diagnosis__item {
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.7), rgba(255, 250, 242, 0.25));
  border: 1px solid rgba(32, 28, 24, 0.12);
  border-radius: 4px;
  padding: clamp(1.4rem, 2.4vw, 2rem);
  position: relative;
}

.diagnosis__index {
  color: var(--color-stone-strong);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 500;
  line-height: 1;
}

.diagnosis__label {
  color: var(--p-hearth);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: var(--space-4) 0 var(--space-2);
  text-transform: uppercase;
}

.diagnosis__item-title {
  font-size: var(--text-lg);
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
}

.diagnosis__note {
  color: var(--color-ink-soft);
  margin: var(--space-3) 0 0;
}

/* ======================= TRANSFORMATION MOMENT ======================= */
.transform__head {
  max-width: 60ch;
}

.transform__title {
  font-size: clamp(2rem, 1.2rem + 3vw, 3.4rem);
  max-width: 20ch;
}

.transform__lede {
  color: var(--color-ink-soft);
  font-size: var(--text-lg);
  margin: var(--space-5) 0 0;
  max-width: 54ch;
}

.transform__stage {
  --reveal: 0%;
  --progress: 1;
  margin-top: clamp(2rem, 4vw, 3.25rem);
}

/* Real-photo cinematic transformation: one boutique interior photo, two grades. A dull, flat,
   grayscale "generic website" grade is wiped away by the warm premium grade via a scroll-driven
   crop reveal + slow Ken Burns. Driven by --progress (0..1) from the rAF handler on
   [data-transform-stage]; reduced motion pins --progress:1 (premium grade fully shown). */
.transform__cine {
  aspect-ratio: 16 / 10;
  background: #14110d;
  border-radius: 12px;
  margin: 0;
  max-height: 80vh;
  overflow: hidden;
  position: relative;
  box-shadow: 0 44px 120px rgba(31, 22, 14, 0.32);
}

.transform__cine-img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.transform__cine-img--before {
  filter: grayscale(1) contrast(0.9) brightness(1.07) saturate(0.12);
  transform: scale(1.01);
}

.transform__cine-img--after {
  clip-path: inset(0 calc((1 - var(--progress, 1)) * 100%) 0 0);
  filter: saturate(1.08) contrast(1.05);
  transform: scale(calc(1.015 + var(--progress, 1) * 0.06));
  transform-origin: 60% 45%;
  transition: clip-path 120ms linear, transform 200ms linear;
}

.transform__cine-grade {
  background: linear-gradient(100deg, rgba(20, 14, 9, 0.32), transparent 38%);
  inset: 0;
  opacity: calc(1 - var(--progress, 1));
  pointer-events: none;
  position: absolute;
}

.transform__cine-seam {
  background: linear-gradient(180deg, rgba(255, 248, 237, 0), rgba(255, 246, 230, 0.92), rgba(255, 248, 237, 0));
  bottom: 0;
  left: calc(var(--progress, 1) * 100%);
  opacity: clamp(0, calc(min(var(--progress), calc(1 - var(--progress))) * 6), 1);
  position: absolute;
  top: 0;
  transform: translateX(-1px);
  width: 2px;
  box-shadow: 0 0 26px rgba(255, 244, 225, 0.6);
}

.transform__cine-vignette {
  background: radial-gradient(125% 125% at 52% 30%, transparent 54%, rgba(16, 11, 7, 0.4));
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.transform__state {
  border-radius: 999px;
  font-size: var(--text-xs);
  font-weight: 600;
  left: 1.1rem;
  letter-spacing: 0.06em;
  padding: 0.42rem 0.85rem;
  position: absolute;
  text-transform: uppercase;
  top: 1.1rem;
}

.transform__state--before {
  background: rgba(33, 28, 22, 0.72);
  color: rgba(255, 250, 242, 0.9);
  opacity: clamp(0, calc((0.6 - var(--progress)) * 4), 1);
}

.transform__state--after {
  background: var(--color-cta);
  color: var(--color-paper);
  opacity: clamp(0, calc((var(--progress) - 0.54) * 4), 1);
}

.transform__list {
  display: grid;
  gap: clamp(1rem, 2.4vw, 2rem);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  padding: 0;
}

.transform__list-index {
  color: var(--p-hearth);
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.transform__list-title {
  font-size: var(--text-base);
  font-weight: 600;
  margin: var(--space-2) 0 0;
}

.transform__list-note {
  color: var(--color-ink-soft);
  font-size: var(--text-sm);
  margin: var(--space-2) 0 0;
}

/* ============================ SHOWCASE ============================ */
.showcase__head {
  max-width: 56ch;
}

.showcase__title {
  font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3.1rem);
  max-width: 20ch;
}

.showcase__lede {
  color: var(--color-ink-soft);
  font-size: var(--text-lg);
  margin: var(--space-5) 0 0;
  max-width: 52ch;
}

.showcase__grid {
  display: grid;
  gap: clamp(1rem, 2.2vw, 1.75rem);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  margin-top: clamp(2.25rem, 5vw, 3.5rem);
}

.showcase-card {
  color: inherit;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition:
    transform 520ms var(--ease-cinematic),
    box-shadow 520ms var(--ease-cinematic),
    border-color 360ms var(--ease-out);
}

.showcase-card__media {
  margin: 0;
  overflow: hidden;
  position: relative;
}

.showcase-card__media img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease-cinematic);
  width: 100%;
}

.showcase-card__accent {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  margin: 0;
  text-transform: uppercase;
}

.showcase-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.1rem + 1.2vw, 2.05rem);
  font-weight: 500;
  line-height: 1.06;
  margin: var(--space-3) 0 0;
}

.showcase-card__tag {
  font-size: var(--text-base);
  font-style: italic;
  margin: var(--space-2) 0 0;
  opacity: 0.92;
}

.showcase-card__text {
  font-size: var(--text-sm);
  margin: var(--space-4) 0 0;
}

.showcase-card__action {
  align-items: center;
  display: inline-flex;
  font-size: var(--text-sm);
  font-weight: 600;
  gap: 0.5rem;
  margin-top: var(--space-5);
}

.showcase-card__action svg {
  transition: transform 420ms var(--ease-cinematic);
  width: 22px;
}

.showcase-card:hover .showcase-card__action svg {
  transform: translateX(5px);
}

/* -- Personality 1: Architectural (Atelier): bright, precise, portrait -- */
.showcase-card--architectural {
  background: var(--color-paper);
  border: 1px solid rgba(32, 28, 24, 0.18);
  border-radius: 2px;
  grid-column: span 5;
}

.showcase-card--architectural .showcase-card__media {
  aspect-ratio: 4 / 5;
}

.showcase-card--architectural .showcase-card__body {
  padding: clamp(1.4rem, 2vw, 1.9rem);
}

.showcase-card--architectural .showcase-card__accent {
  color: var(--p-stone);
}

.showcase-card--architectural:hover {
  border-color: rgba(32, 28, 24, 0.42);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.showcase-card--architectural:hover .showcase-card__media img {
  transform: scale(1.04);
}

/* -- Personality 2: Cinematic (Vela): dark, atmospheric, wide -- */
.showcase-card--cinematic {
  background: #14110d;
  border-radius: 5px;
  color: var(--color-paper);
  grid-column: span 7;
  justify-content: flex-end;
  min-height: clamp(380px, 40vw, 520px);
}

.showcase-card--cinematic .showcase-card__media {
  inset: 0;
  position: absolute;
}

.showcase-card--cinematic .showcase-card__media img {
  height: 100%;
}

.showcase-card--cinematic .showcase-card__media::after {
  background: linear-gradient(8deg, rgba(8, 8, 10, 0.92) 8%, rgba(8, 8, 10, 0.35) 46%, rgba(8, 8, 10, 0.12) 78%);
  content: "";
  inset: 0;
  position: absolute;
  transition: opacity 600ms var(--ease-out);
}

.showcase-card--cinematic .showcase-card__body {
  padding: clamp(1.6rem, 2.6vw, 2.4rem);
  position: relative;
  z-index: 1;
}

.showcase-card--cinematic .showcase-card__accent {
  color: var(--p-tide);
}

.showcase-card--cinematic .showcase-card__text {
  color: rgba(255, 250, 242, 0.8);
  max-width: 46ch;
}

.showcase-card--cinematic:hover {
  box-shadow: 0 36px 90px rgba(8, 8, 10, 0.5);
  transform: translateY(-4px);
}

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

/* -- Personality 3: Tactile (Fjellro): warm, layered, horizontal -- */
.showcase-card--tactile {
  background: #efe1d0;
  border-radius: 12px;
  color: #2a2017;
  display: grid;
  grid-column: span 12;
  grid-template-columns: 1.04fr 0.96fr;
}

.showcase-card--tactile .showcase-card__media {
  min-height: clamp(280px, 32vw, 420px);
  position: relative;
}

.showcase-card--tactile .showcase-card__media::after {
  background: linear-gradient(120deg, rgba(176, 90, 48, 0.16), transparent 60%);
  content: "";
  inset: 0;
  mix-blend-mode: multiply;
  position: absolute;
}

.showcase-card--tactile .showcase-card__body {
  align-self: center;
  padding: clamp(1.75rem, 3.5vw, 3.25rem);
}

.showcase-card--tactile .showcase-card__accent {
  color: var(--p-hearth);
}

.showcase-card--tactile .showcase-card__tag {
  color: #6a4a32;
}

.showcase-card--tactile .showcase-card__text {
  color: #4a3a2c;
  max-width: 48ch;
}

.showcase-card--tactile:hover {
  box-shadow: 0 30px 80px rgba(120, 64, 30, 0.24);
  transform: translateY(-4px);
}

.showcase-card--tactile:hover .showcase-card__media img {
  transform: scale(1.045);
}

.showcase__more {
  align-items: center;
  border-bottom: 1px solid currentColor;
  display: inline-flex;
  font-size: var(--text-sm);
  font-weight: 600;
  gap: 0.5rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: 0.2rem;
  width: fit-content;
}

.showcase__more svg {
  transition: transform 420ms var(--ease-cinematic);
  width: 30px;
}

.showcase__more:hover svg {
  transform: translateX(6px);
}

/* ============================ JOURNEY ============================ */
.journey__head {
  max-width: 52ch;
}

.journey__title {
  font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3.1rem);
  max-width: 20ch;
}

.journey__stack {
  --journey-progress: 0;
  align-items: start;
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.journey__aside {
  align-self: start;
  position: sticky;
  top: clamp(5rem, 16vh, 9rem);
}

.journey__aside-note {
  color: var(--color-ink-soft);
  margin: var(--space-5) 0 0;
  max-width: 34ch;
}

.journey__meter {
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
  max-width: 22rem;
}

.journey__count {
  align-items: baseline;
  display: flex;
  font-family: var(--font-display);
  gap: 0.55rem;
  margin: 0;
}

.journey__count b {
  color: var(--color-charcoal, #1f1b16);
  font-size: clamp(2.6rem, 1.8rem + 2.4vw, 3.7rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.journey__count span {
  color: var(--color-ink-soft);
  font-size: 1.35rem;
  font-weight: 500;
}

.journey__active-label {
  color: var(--p-hearth);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  margin: var(--space-3) 0 0;
  text-transform: uppercase;
}

.journey__steps {
  display: grid;
  gap: clamp(3rem, 7vw, 6rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.journey-step {
  display: grid;
  gap: clamp(1rem, 2vw, 1.6rem);
}

body.nv-reveal-ready .journey-step {
  opacity: 0.46;
  transition: opacity 620ms var(--ease-cinematic);
}

body.nv-reveal-ready .journey-step.is-active {
  opacity: 1;
}

.journey-step__media {
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  margin: 0;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
}

.journey-step__media::after {
  background: linear-gradient(180deg, transparent 52%, rgba(20, 15, 11, 0.46));
  content: "";
  inset: auto 0 0 0;
  height: 46%;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.journey-step__media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

/* The active step's real photo gets a slow Ken Burns drift (video-like). Reverts smoothly via the
   mask-reveal transition when the step deactivates. Off under reduced motion. */
@media (prefers-reduced-motion: no-preference) {
  .journey-step.is-active .journey-step__media img {
    animation: stepKenBurns 17s ease-in-out infinite alternate;
  }
}

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

.journey-step__index {
  bottom: clamp(0.7rem, 1.6vw, 1.15rem);
  color: rgba(247, 242, 233, 0.96);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.4rem);
  font-weight: 700;
  left: clamp(0.95rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
  line-height: 1;
  position: absolute;
  text-shadow: 0 2px 20px rgba(20, 15, 11, 0.5);
  z-index: 2;
}

.journey-step__label {
  color: var(--p-hearth);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  margin: 0;
  text-transform: uppercase;
}

.journey-step__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.15rem);
  font-weight: 600;
  letter-spacing: -0.014em;
  line-height: 1.08;
  margin: var(--space-2) 0 0;
}

.journey-step__note {
  color: var(--color-ink-soft);
  margin: var(--space-3) 0 0;
  max-width: 52ch;
}

/* ============================ QUOTE ============================ */
.quote {
  align-items: start;
  display: grid;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.quote__title {
  font-size: clamp(2rem, 1.3rem + 2.6vw, 3.2rem);
  max-width: 14ch;
}

.quote__lede {
  color: var(--color-ink-soft);
  font-size: var(--text-lg);
  margin: var(--space-5) 0 0;
  max-width: 44ch;
}

.quote__direct {
  border-top: 1px solid rgba(32, 28, 24, 0.16);
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
  padding-top: clamp(1rem, 2vw, 1.5rem);
}

.quote__direct-label {
  color: var(--color-taupe);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 0 0 var(--space-2);
  text-transform: uppercase;
}

.quote__direct-link {
  border-bottom: 1px solid currentColor;
  font-size: var(--text-lg);
  font-weight: 500;
  padding-bottom: 0.1rem;
}

.nv-home .quote-form {
  background: var(--color-paper);
  border: 1px solid rgba(32, 28, 24, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

/* ============================ FOOTER ============================ */
.site-footer__inner {
  align-items: center;
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
  grid-template-columns: minmax(0, 1fr) auto;
  margin-inline: auto;
  max-width: var(--max-page);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.15rem, 5vw, 4rem);
}

.site-footer__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0;
}

.site-footer__line {
  color: var(--color-taupe);
  font-size: var(--text-sm);
  margin: var(--space-2) 0 0;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1.75rem);
}

.site-footer__nav a {
  color: var(--color-ink-soft);
  font-size: var(--text-sm);
  transition: color 180ms var(--ease-out);
}

.site-footer__nav a:hover {
  color: var(--color-charcoal);
}

.site-footer__rights {
  color: var(--color-muted);
  font-size: var(--text-xs);
  grid-column: 1 / -1;
  margin: 0;
}

/* ============================ RESPONSIVE ============================ */
@media (max-width: 1000px) {
  .showcase-card--architectural,
  .showcase-card--cinematic {
    grid-column: span 12;
  }

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

@media (max-width: 760px) {
  .hero {
    grid-template-areas:
      "copy"
      "media";
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }

  .hero__media {
    min-height: clamp(280px, 60vw, 420px);
  }

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

  .showcase-card--tactile {
    grid-template-columns: minmax(0, 1fr);
  }

  .journey__stack {
    gap: clamp(2rem, 6vw, 3rem);
    grid-template-columns: minmax(0, 1fr);
  }

  .journey__aside {
    position: static;
  }

  .journey__meter {
    display: none;
  }

  .journey__steps {
    gap: clamp(2.5rem, 8vw, 4rem);
  }

  body.nv-reveal-ready .journey-step {
    opacity: 1;
  }

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

  .nv-home .proof-strip {
    grid-template-columns: minmax(0, 1fr);
  }

  .nv-home .proof-strip__item + .proof-strip__item {
    border-left: 0;
    border-top: 1px solid rgba(32, 28, 24, 0.11);
  }

  .site-footer__inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 480px) {
  .transform__list {
    grid-template-columns: minmax(0, 1fr);
  }

  .transform__chip i {
    display: none;
  }
}

/* ============================ REDUCED MOTION ============================ */
@media (prefers-reduced-motion: reduce) {
  body.nv-reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero__image {
    transform: scale(1.04);
  }

  .transform__stage {
    --reveal: 0%;
    --progress: 1;
  }

  .showcase-card,
  .showcase-card__media img,
  .showcase-card__action svg,
  .journey-step,
  .transform__cine-img--after {
    transition: none;
  }
}

/* ============================ CONTENT PAGES (work / approach / pricing) ============================ */
.nv-page {
  --gutter: clamp(1.15rem, 5vw, 4rem);
  --measure: 1240px;
}

.nv-page .site-main > section {
  margin-inline: auto;
  max-width: calc(var(--measure) + var(--gutter) * 2);
  padding-inline: var(--gutter);
  position: relative;
  width: 100%;
}

.nv-page .section-kicker {
  align-items: center;
  color: var(--p-hearth);
  display: flex;
  font-size: 0.72rem;
  font-weight: 600;
  gap: 0.7rem;
  letter-spacing: 0.16em;
  margin: 0 0 var(--space-4);
  text-transform: uppercase;
}

.nv-page .section-kicker::before {
  background: currentColor;
  content: "";
  flex: none;
  height: 1px;
  opacity: 0.65;
  width: clamp(18px, 4vw, 32px);
}

.nv-page .page-hero__title,
.nv-page .section-title,
.nv-page .split-section h2,
.nv-page .closing-cta h2 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.05;
}

.nv-page .page-hero__title {
  font-size: clamp(2.4rem, 1.5rem + 3.4vw, 4rem);
  max-width: 18ch;
}

.nv-page .section-title {
  font-size: clamp(1.85rem, 1.2rem + 2.3vw, 3rem);
  max-width: 22ch;
}

.nv-page .page-hero__text {
  font-size: var(--text-lg);
  max-width: 60ch;
}

.nv-page .split-section .section-copy p {
  font-size: var(--text-base);
}

/* Premium content surfaces */
.nv-page .value-card,
.nv-page .fit-list,
.nv-page .factor-card,
.nv-page .pricing-card {
  background: var(--color-paper);
  border: 1px solid rgba(32, 28, 24, 0.12);
  border-radius: 4px;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.45s var(--ease-out);
}

.nv-page .value-card:hover,
.nv-page .factor-card:hover,
.nv-page .pricing-card:hover {
  border-color: rgba(32, 28, 24, 0.22);
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.nv-page .value-card__title,
.nv-page .fit-list h3,
.nv-page .pricing-card__name,
.nv-page .factor-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.005em;
}

.nv-page .pricing-card__price {
  color: var(--color-charcoal);
  font-family: var(--font-display);
  font-size: 1.75rem;
}

.nv-page .pricing-card--featured {
  border-color: var(--p-hearth);
  box-shadow: 0 26px 60px -32px rgba(177, 90, 48, 0.55);
}

.nv-page .pricing-card__flag {
  color: var(--p-hearth);
}

.nv-page .factor-card span {
  color: var(--p-hearth);
  font-family: var(--font-display);
  font-size: 1.65rem;
}

.nv-page .faq-item {
  border-bottom: 1px solid rgba(32, 28, 24, 0.14);
}

.nv-page .faq-item summary {
  font-size: var(--text-lg);
  font-weight: 500;
  transition: color 0.3s var(--ease-out);
}

.nv-page .faq-item[open] summary,
.nv-page .faq-item summary:hover {
  color: var(--p-hearth);
}

.nv-page .closing-cta {
  background: var(--color-charcoal);
  border-radius: 6px;
  color: var(--color-paper);
  padding-block: clamp(2.6rem, 5vw, 4.25rem);
  text-align: left;
}

.nv-page .closing-cta h2 {
  color: var(--color-paper);
  font-size: clamp(1.9rem, 1.3rem + 2vw, 2.9rem);
  margin: 0 0 var(--space-4);
  max-width: 20ch;
}

.nv-page .closing-cta p {
  color: rgba(246, 240, 231, 0.78);
  margin: 0;
  max-width: 56ch;
}

.nv-page .closing-cta .ui-button {
  background: var(--color-paper);
  border-color: var(--color-paper);
  color: var(--color-charcoal);
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
}

.nv-page .closing-cta .ui-button:hover {
  background: var(--color-stone-strong);
  border-color: var(--color-stone-strong);
}

/* Demos page rhythm */
.nv-demos .showcase--page {
  padding-block: clamp(2.6rem, 6vw, 4.5rem);
}

.nv-demos .closing-cta {
  margin-block-start: clamp(0.5rem, 2vw, 1.5rem);
}

@media (prefers-reduced-motion: reduce) {
  .nv-page .value-card,
  .nv-page .factor-card,
  .nv-page .pricing-card {
    transition: none;
  }

  .nv-page .value-card:hover,
  .nv-page .factor-card:hover,
  .nv-page .pricing-card:hover {
    transform: none;
  }
}
