:root {
  --ink: #151116;
  --ink-soft: #31252d;
  --paper: #fffaf5;
  --paper-muted: #f8e9ec;
  --pink: #e7a2b8;
  --pink-light: #f6d7e1;
  --berry: #8a244d;
  --berry-dark: #56142f;
  --gold: #c99a45;
  --line: rgba(255, 250, 245, 0.28);
  --shadow: 0 24px 70px rgba(27, 12, 21, 0.28);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--sans);
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  background: var(--ink);
  transform: translateX(0);
  transition: transform 0.8s var(--ease);
}

body.is-ready::before {
  transform: translateX(101%);
}

body.is-leaving-next::before {
  transform: translateX(-101%);
  animation: wipe-next 0.55s var(--ease) forwards;
}

body.is-leaving-prev::before {
  transform: translateX(101%);
  animation: wipe-prev 0.55s var(--ease) forwards;
}

@keyframes wipe-next {
  to { transform: translateX(0); }
}

@keyframes wipe-prev {
  to { transform: translateX(0); }
}

a {
  color: inherit;
}

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

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

img {
  max-width: 100%;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 64px);
  pointer-events: none;
}

.site-header > * {
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand__logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 5px 18px rgba(0, 0, 0, 0.25));
}

.brand__text {
  display: grid;
  gap: 1px;
}

.brand__name {
  font-family: var(--serif);
  font-size: 1.06rem;
  letter-spacing: 0.04em;
}

.brand__role {
  font-size: 0.67rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.76;
}

.menu-button {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(20, 14, 18, 0.18);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: 0.25s ease;
}

.menu-button:hover,
.menu-button:focus-visible {
  color: var(--ink);
  background: var(--paper);
  transform: rotate(8deg);
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
  display: block;
  transition: 0.25s ease;
}

.menu-button span {
  margin: 4px 0;
}

.menu-button[aria-expanded="true"] span {
  opacity: 0;
}

.menu-button[aria-expanded="true"]::before {
  transform: translateY(5px) rotate(45deg);
}

.menu-button[aria-expanded="true"]::after {
  transform: translateY(-5px) rotate(-45deg);
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 25;
  display: grid;
  place-items: center;
  padding: 110px 24px 40px;
  background:
    radial-gradient(circle at 80% 15%, rgba(231, 162, 184, 0.28), transparent 30%),
    linear-gradient(135deg, rgba(21, 17, 22, 0.98), rgba(86, 20, 47, 0.97));
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.site-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.site-menu__list {
  width: min(720px, 100%);
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: menu;
}

.site-menu__list li {
  counter-increment: menu;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.site-menu__list a {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 17px 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 6vw, 4.8rem);
  line-height: 1;
  text-decoration: none;
  transition: transform 0.25s ease, color 0.25s ease;
}

.site-menu__list a::before {
  content: "0" counter(menu);
  width: 34px;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  opacity: 0.55;
}

.site-menu__list a:hover,
.site-menu__list a:focus-visible {
  color: var(--pink-light);
  transform: translateX(14px);
}

.slide {
  --photo: none;
  --photo-position: center center;
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  isolation: isolate;
  display: grid;
  align-items: center;
  padding: 120px clamp(24px, 6vw, 92px) 110px;
  background: var(--ink);
  overflow: hidden;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: var(--photo);
  background-size: cover;
  background-position: var(--photo-position);
  transform: scale(var(--photo-scale, 1.035));
  animation: image-in 1.5s var(--ease) both;
}

@keyframes image-in {
  from { transform: scale(var(--photo-scale-start, 1.095)); filter: saturate(0.6); }
  to { transform: scale(var(--photo-scale, 1.035)); filter: saturate(1); }
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(17, 11, 15, 0.93) 0%, rgba(17, 11, 15, 0.76) 40%, rgba(17, 11, 15, 0.16) 74%, rgba(17, 11, 15, 0.25) 100%),
    linear-gradient(0deg, rgba(17, 11, 15, 0.62), transparent 45%);
}

.slide--right::after {
  background:
    linear-gradient(270deg, rgba(17, 11, 15, 0.94) 0%, rgba(17, 11, 15, 0.8) 41%, rgba(17, 11, 15, 0.08) 77%, rgba(17, 11, 15, 0.2) 100%),
    linear-gradient(0deg, rgba(17, 11, 15, 0.6), transparent 45%);
}

.slide--soft::after {
  background:
    linear-gradient(90deg, rgba(28, 13, 22, 0.97) 0%, rgba(45, 20, 32, 0.86) 52%, rgba(45, 20, 32, 0.18) 100%),
    linear-gradient(0deg, rgba(21, 12, 17, 0.58), transparent 45%);
}

.slide__content {
  width: min(720px, 53vw);
  animation: copy-in 1s 0.18s var(--ease) both;
}

.slide--right .slide__content {
  justify-self: end;
}

@keyframes copy-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--pink-light);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

.display {
  margin: 0;
  max-width: 11ch;
  font-family: var(--serif);
  font-size: clamp(3.3rem, 7.2vw, 8.1rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.display em {
  color: var(--pink-light);
  font-weight: 400;
}

.display--medium {
  font-size: clamp(2.8rem, 5.8vw, 6.4rem);
  max-width: 10ch;
}

.lede {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 250, 245, 0.84);
  font-size: clamp(1rem, 1.5vw, 1.23rem);
  line-height: 1.65;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--ink);
  background: var(--paper);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border 0.25s ease;
}

.button::after {
  content: "→";
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
  background: var(--pink-light);
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(4px);
}

.button--ghost {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  color: var(--ink);
  border-color: var(--paper);
  background: var(--paper);
}

.hero-mark {
  position: absolute;
  right: clamp(22px, 5vw, 78px);
  top: 50%;
  z-index: -1;
  font-family: var(--serif);
  font-size: clamp(18rem, 36vw, 42rem);
  line-height: 0.7;
  color: rgba(255, 255, 255, 0.055);
  transform: translateY(-50%) rotate(10deg);
  user-select: none;
}

.suit-row {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  color: var(--pink-light);
  font-family: var(--serif);
  font-size: 1.4rem;
}

.suit-row span:nth-child(2),
.suit-row span:nth-child(3) {
  color: var(--paper);
}

.card-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.info-card,
.project-card,
.product-card,
.booking-card {
  position: relative;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  background: rgba(255, 250, 245, 0.92);
  color: var(--ink);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.info-card {
  min-height: 154px;
  padding: 24px 22px;
  transform: rotate(var(--tilt, 0deg));
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-8px) rotate(0deg);
  box-shadow: 0 30px 80px rgba(27, 12, 21, 0.4);
}

.info-card:nth-child(1) { --tilt: -1.7deg; }
.info-card:nth-child(2) { --tilt: 1.2deg; }
.info-card:nth-child(3) { --tilt: -0.6deg; }

.card-corner {
  display: grid;
  gap: 0;
  color: var(--berry);
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 0.9;
}

.card-corner span:last-child {
  font-size: 0.85rem;
}

.info-card h3,
.project-card h3,
.product-card h3,
.booking-card h3 {
  margin: 18px 0 7px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.info-card p,
.project-card p,
.product-card p,
.booking-card p {
  margin: 0;
  color: rgba(21,17,22,0.68);
  font-size: 0.82rem;
  line-height: 1.55;
}

.philosophy {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  align-items: start;
  margin-top: 24px;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255,255,255,0.25);
}

.philosophy__quote {
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 0.7;
  color: var(--pink-light);
}

.philosophy p {
  margin: 0;
  color: rgba(255,250,245,0.83);
  font-size: 0.93rem;
  line-height: 1.6;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
  margin-top: 30px;
}

.project-card {
  min-height: 220px;
  padding: 23px;
  overflow: hidden;
  transition: transform 0.3s var(--ease), background 0.3s ease;
}

.project-card:hover {
  transform: translateY(-7px) rotate(-0.5deg);
  background: #fff;
}

.project-card__number {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--berry);
  font-family: var(--serif);
  font-size: 1.4rem;
}

.project-card__number span:last-child {
  font-size: 1rem;
}

.project-card__tag {
  position: absolute;
  inset: auto 20px 18px 20px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(21,17,22,0.54);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-card__tag::before {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.76fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 32px;
}

.booking-card {
  padding: 28px;
}

.booking-card--accent {
  color: var(--paper);
  background: linear-gradient(145deg, rgba(138,36,77,0.95), rgba(67,20,43,0.96));
}

.booking-card--accent p {
  color: rgba(255,250,245,0.73);
}

.booking-card__meta {
  display: grid;
  gap: 12px;
  margin: 20px 0 26px;
}

.booking-card__meta div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 11px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  font-size: 0.77rem;
}

.booking-card__meta span:first-child {
  opacity: 0.66;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.product-card {
  min-height: 238px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.product-card:nth-child(2) {
  transform: translateY(-8px) rotate(1deg);
}

.product-card:hover {
  transform: translateY(-10px) rotate(0deg);
  box-shadow: 0 36px 90px rgba(27,12,21,0.45);
}

.product-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.product-card__price {
  color: var(--berry);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.product-card .mini-link {
  margin-top: auto;
}

.mini-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  color: var(--berry);
  border: 0;
  background: transparent;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

.mini-link::after {
  content: "↗";
  font-size: 0.95rem;
}

.slide-nav {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 20px clamp(20px, 4vw, 64px) 22px;
  color: rgba(255,250,245,0.72);
  background: linear-gradient(0deg, rgba(15,10,13,0.72), transparent);
}

.slide-nav__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  color: inherit;
  border: 0;
  background: transparent;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.slide-nav__button:hover,
.slide-nav__button:focus-visible {
  color: var(--paper);
  transform: translateX(-4px);
}

.slide-nav__button--next {
  justify-self: end;
}

.slide-nav__button--next:hover,
.slide-nav__button--next:focus-visible {
  transform: translateX(4px);
}

.slide-nav__button[aria-disabled="true"] {
  opacity: 0.25;
  pointer-events: none;
}

.slide-nav__progress {
  display: flex;
  align-items: center;
  gap: 9px;
}

.progress-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.progress-dot[aria-current="page"] {
  width: 28px;
  background: var(--paper);
}

.slide-count {
  position: fixed;
  right: clamp(20px, 4vw, 64px);
  bottom: 67px;
  z-index: 20;
  color: rgba(255,250,245,0.56);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 86px;
  z-index: 80;
  width: min(430px, calc(100% - 32px));
  padding: 15px 18px;
  color: var(--ink);
  border-radius: 12px;
  background: var(--paper);
  box-shadow: var(--shadow);
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: center;
  opacity: 0;
  transform: translate(-50%, 18px);
  pointer-events: none;
  transition: 0.3s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(17,11,15,0.78);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__dialog {
  width: min(620px, 100%);
  max-height: min(760px, calc(100svh - 48px));
  overflow: auto;
  padding: clamp(24px, 4vw, 42px);
  color: var(--ink);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: translateY(20px) rotate(-0.5deg);
  transition: transform 0.35s var(--ease);
}

.modal.is-open .modal__dialog {
  transform: translateY(0) rotate(0deg);
}

.modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.modal__header h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.7rem);
  font-weight: 400;
  line-height: 0.95;
}

.modal__close {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(21,17,22,0.18);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.prototype-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

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

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  border: 1px solid rgba(21,17,22,0.16);
  border-radius: 10px;
  background: #fff;
  outline: none;
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--berry);
  box-shadow: 0 0 0 3px rgba(138,36,77,0.12);
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(21,17,22,0.56);
  font-size: 0.73rem;
  line-height: 1.5;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-160%);
  transition: 0.2s ease;
}

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

@media (max-width: 1050px) {
  body {
    overflow: auto;
  }

  .slide {
    min-height: 100svh;
    padding-top: 116px;
    padding-bottom: 130px;
  }

  .slide__content {
    width: min(740px, 72vw);
  }

  .slide::after,
  .slide--right::after,
  .slide--soft::after {
    background:
      linear-gradient(90deg, rgba(17,11,15,0.94) 0%, rgba(17,11,15,0.78) 58%, rgba(17,11,15,0.24) 100%),
      linear-gradient(0deg, rgba(17,11,15,0.78), transparent 50%);
  }

  .slide--right .slide__content {
    justify-self: start;
  }

  .portfolio-grid,
  .shop-grid,
  .card-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .info-card:last-child,
  .product-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand__logo {
    width: 54px;
    height: 54px;
  }

  .brand__role {
    display: none;
  }

  .menu-button {
    width: 42px;
    height: 42px;
  }

  .slide {
    min-height: 100svh;
    align-items: end;
    padding: 225px 18px 82px;
  }

  .slide::before {
    background-position: var(--mobile-photo-position, var(--photo-position));
  }

  .slide::after,
  .slide--right::after,
  .slide--soft::after {
    background:
      linear-gradient(0deg, rgba(17,11,15,0.98) 0%, rgba(17,11,15,0.86) 44%, rgba(17,11,15,0.15) 78%, rgba(17,11,15,0.22) 100%);
  }

  .slide__content {
    width: 100%;
  }

  .eyebrow {
    margin-bottom: 14px;
  }

  .display,
  .display--medium {
    max-width: 12ch;
    font-size: clamp(2.25rem, 10.5vw, 3.65rem);
    line-height: 0.96;
  }

  .lede {
    margin-top: 18px;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .actions {
    margin-top: 24px;
  }

  .button {
    min-height: 48px;
    padding: 0 18px;
  }

  .card-stack,
  .portfolio-grid,
  .shop-grid,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .card-stack,
  .portfolio-grid,
  .shop-grid,
  .booking-layout {
    max-height: 38svh;
    overflow: auto;
    padding: 4px 6px 15px 2px;
    scroll-snap-type: y proximity;
  }

  .info-card,
  .project-card,
  .product-card,
  .booking-card {
    scroll-snap-align: start;
  }

  .info-card:last-child,
  .product-card:last-child {
    grid-column: auto;
  }

  .product-card:nth-child(2) {
    transform: none;
  }

  .philosophy {
    grid-template-columns: 54px 1fr;
  }

  .slide-nav {
    grid-template-columns: 1fr auto 1fr;
    padding: 18px 16px 18px;
  }

  .slide-nav__button span {
    display: none;
  }

  .slide-count {
    right: 17px;
    bottom: 62px;
  }

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

  .field--full,
  .form-note {
    grid-column: auto;
  }
}

@media (min-width: 1051px) {
  body[data-slide="2"] .slide {
    --photo-scale: 1.005;
    --photo-scale-start: 1.065;
  }

  body[data-slide="4"] .slide {
    --photo-scale: 1.015;
    --photo-scale-start: 1.075;
  }
}

@media (min-width: 1051px) and (max-height: 920px) {
  .slide {
    height: 100vh;
    height: 100svh;
    min-height: 0;
    padding-top: clamp(92px, 11vh, 108px);
    padding-bottom: clamp(74px, 9vh, 88px);
  }

  .slide__content {
    width: min(720px, 55vw);
    max-height: calc(100svh - 166px);
  }

  .eyebrow {
    margin-bottom: clamp(10px, 1.5vh, 16px);
  }

  .display {
    font-size: clamp(3rem, min(6.5vw, 10.8vh), 6.8rem);
  }

  .display--medium {
    font-size: clamp(2.65rem, min(5.2vw, 8.9vh), 5.65rem);
  }

  .lede {
    margin-top: clamp(13px, 1.9vh, 19px);
    font-size: clamp(0.9rem, 1.25vw, 1.08rem);
    line-height: 1.48;
  }

  .actions,
  .card-stack,
  .portfolio-grid,
  .shop-grid,
  .booking-layout {
    margin-top: clamp(14px, 2.2vh, 20px);
  }

  .button {
    min-height: 46px;
    padding-inline: 20px;
  }

  .info-card,
  .project-card,
  .product-card,
  .booking-card {
    padding: clamp(15px, 2vh, 19px);
  }

  .info-card {
    min-height: clamp(116px, 15.5vh, 138px);
  }

  .info-card h3,
  .project-card h3,
  .product-card h3,
  .booking-card h3 {
    margin-top: 12px;
    font-size: 1.18rem;
  }

  .info-card p,
  .project-card p,
  .product-card p,
  .booking-card p {
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .philosophy {
    grid-template-columns: 70px 1fr;
    gap: 14px;
    margin-top: 14px;
    padding-top: 13px;
  }

  .philosophy__quote {
    font-size: 3.25rem;
  }

  .philosophy p {
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .project-card {
    min-height: clamp(166px, 22vh, 194px);
  }

  .project-card__tag {
    inset: auto 16px 14px 16px;
  }

  .booking-layout {
    gap: 16px;
  }

  .booking-card__meta {
    gap: 6px;
    margin: 10px 0 13px;
  }

  .booking-card__meta div {
    padding-bottom: 6px;
  }

  body[data-slide="4"] .booking-layout {
    margin-top: 12px;
  }

  body[data-slide="4"] .booking-card .button {
    min-height: 42px;
  }

  .product-card {
    min-height: clamp(176px, 24vh, 210px);
  }

  .product-card:nth-child(2) {
    transform: translateY(-4px) rotate(1deg);
  }
}

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