:root {
  --ink: #17120f;
  --ivory: #f8f5ee;
  --paper: #e9e1d6;
  --gold: #c9a56a;
  --display: "Arapey", Georgia, "Times New Roman", serif;
  --sans: "Urbanist", "Arial Nova", "Helvetica Neue", Arial, sans-serif;
  --logo-font: var(--sans);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  overflow-x: hidden;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  min-width: 0;
  margin: 0;
  color: var(--ivory);
  background: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; }
main, main > section, .site-footer { min-width: 0; }

h1, h2, h3 { font-family: var(--display); }

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--ivory);
  transform: translateY(-160%);
}

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

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #1d241c;
}

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

.hero__video {
  z-index: -3;
  display: block;
  inset: auto;
  top: 50%;
  left: 50%;
  width: 100vh;
  height: 100vw;
  object-fit: cover;
  object-position: center;
  transform: translate(-50%, -50%) rotate(-90deg);
}

.hero__veil {
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 10, 7, 0.84) 0%, rgba(8, 10, 8, 0.6) 27%, rgba(7, 8, 6, 0.13) 62%),
    linear-gradient(180deg, rgba(8, 7, 5, 0.48) 0%, transparent 28%, transparent 64%, rgba(7, 6, 5, 0.68) 100%);
}

.site-header {
  position: fixed;
  top: clamp(12px, 1.5vw, 22px);
  right: 16px;
  left: 16px;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
  align-items: center;
  width: min(calc(100% - 32px), 1120px);
  min-height: 60px;
  margin-inline: auto;
  padding: 8px 9px 8px 22px;
  color: var(--ivory);
  background: #211d1a;
  border: 1px solid rgba(248, 245, 238, 0.13);
  border-radius: 999px;
  box-shadow: 0 12px 36px rgba(10, 8, 7, 0.22);
  transition: background-color 300ms ease, border-color 300ms ease, color 300ms ease, box-shadow 300ms ease;
}

.brand { justify-self: start; min-width: 0; line-height: 1; }

.brand__name {
  font-family: var(--logo-font);
  display: block;
  font-size: clamp(11.9px, 0.85vw, 13.6px);
  font-weight: 400;
  line-height: 1.5;
  white-space: nowrap;
  letter-spacing: 0.055em;
}

.nav { display: flex; gap: clamp(22px, 2.7vw, 42px); align-items: center; }

.nav a, .header-cta {
  position: relative;
  font-size: 13px;
  letter-spacing: 0.025em;
}

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

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

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  min-height: 44px;
  padding: 10px 22px;
  border-radius: 999px;
  color: #17120f;
  background: #f8f5ee;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.16);
  transition: background-color 250ms ease, color 250ms ease;
}
.header-cta:hover { filter: brightness(0.92); }
.site-header[data-cta-tone="dark"] .header-cta { color: #f8f5ee; background: #17120f; }
.site-header[data-surface="hero"] {
  color: #f8f5ee;
  background: rgba(25, 22, 20, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  backdrop-filter: blur(18px) saturate(120%);
  box-shadow: 0 12px 34px rgba(8, 6, 5, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.site-header[data-surface="dark"] {
  color: #f8f5ee;
  background: #211d1a;
  border-color: rgba(248, 245, 238, 0.14);
  box-shadow: 0 12px 36px rgba(10, 8, 7, 0.28);
}

.site-header[data-surface="light"] {
  color: #17120f;
  background: #f1ebe1;
  border-color: rgba(23, 18, 15, 0.12);
  box-shadow: 0 12px 34px rgba(46, 36, 29, 0.14);
}

.site-header:has(.nav[data-open="true"]) { color: #f8f5ee; background: #17120f; border-color: rgba(248, 245, 238, 0.14); }

.menu-toggle { display: none; }

.sound-toggle {
  position: absolute;
  right: max(clamp(28px, 4.4vw, 70px), env(safe-area-inset-right));
  bottom: max(clamp(28px, 4vw, 58px), env(safe-area-inset-bottom));
  z-index: 28;
  display: inline-flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  color: var(--ivory);
  background: rgba(25, 22, 20, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  backdrop-filter: blur(18px) saturate(120%);
  box-shadow: 0 12px 34px rgba(8, 6, 5, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.sound-toggle:hover,
.sound-toggle:focus-visible {
  color: var(--ink);
  background: var(--ivory);
  transform: translateY(-2px);
}

.sound-toggle__icon {
  width: 20px;
  overflow: hidden;
  font-size: 20px;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 20;
}

.sound-toggle__label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

.hero__content {
  position: absolute;
  top: 50%;
  left: clamp(28px, 4.4vw, 70px);
  width: min(550px, 43vw);
  transform: translateY(-42%);
}

h1 {
  max-width: 590px;
  margin: 0;
  font-size: clamp(50px, 5.2vw, 84px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero__word {
  display: inline-block;
  transform-origin: left center;
}

.hero__letter {
  display: inline-block;
  transform-origin: left center;
  will-change: filter, opacity, transform;
}

.hero[data-hero-motion="pending"] .hero__word,
.hero[data-hero-motion="pending"] .hero__copy,
.hero[data-hero-motion="pending"] .hero__content > .button,
.hero[data-hero-motion="pending"] .hero__facts { opacity: 0; }

.hero__copy {
  max-width: 420px;
  margin: 22px 0 0;
  color: rgba(248, 245, 238, 0.78);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.58;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
  padding: 13px 23px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

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

.button--light:hover, .button--light:focus-visible {
  color: var(--ivory);
  background: rgba(23, 18, 15, 0.8);
  transform: translateY(-2px);
}

.hero__footer {
  position: absolute;
  right: clamp(28px, 4.4vw, 70px);
  bottom: clamp(28px, 4vw, 58px);
  left: clamp(28px, 4.4vw, 70px);
  z-index: 4;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.hero__facts-shell {
  position: relative;
  max-width: calc(100% - 128px);
  border-radius: 24px;
}

.hero__facts {
  position: relative;
  display: flex;
  gap: clamp(20px, 4vw, 64px);
  margin: 0;
  padding: 23px 28px 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(25, 22, 20, 0.2);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  backdrop-filter: blur(18px) saturate(120%);
  box-shadow: 0 12px 34px rgba(8, 6, 5, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero__facts div { position: relative; min-width: 95px; }
.hero__facts dt { margin-bottom: 7px; font-size: clamp(23px, 1.7vw, 29px); line-height: 1; }

.hero__facts dd {
  margin: 0;
  color: rgba(248, 245, 238, 0.85);
  font-size: 14px;
  font-synthesis: weight;
  font-weight: 300;
  letter-spacing: 0.035em;
}

.work {
  position: relative;
  display: grid;
  grid-template-columns: minmax(330px, 38vw) 1fr;
  align-items: center;
  min-height: min(920px, 100svh);
  overflow: hidden;
  padding: clamp(90px, 10vw, 150px) 0;
  color: var(--ink);
  background: #fff;
}

.work__intro {
  align-self: center;
  padding: 0 clamp(34px, 5.5vw, 88px);
}

.work__intro h2 {
  max-width: 470px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 4.5vw, 68px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.06em;
}

.work__copy {
  max-width: 390px;
  margin: 28px 0 0;
  color: #6d655c;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.65;
}

.work__controls {
  display: flex;
  gap: 9px;
  margin-top: 42px;
}

.work__arrow {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(23, 18, 15, 0.36);
  border-radius: 50%;
  cursor: pointer;
  place-items: center;
  transition: color 200ms ease, background 200ms ease, border-color 200ms ease, transform 200ms ease, opacity 200ms ease;
}

.work__arrow svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.work__arrow:hover:not(:disabled),
.work__arrow:focus-visible:not(:disabled) {
  color: var(--ivory);
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
}

.work__arrow:disabled { cursor: default; opacity: 0.28; }

.work__viewport {
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 6px 0 8px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: #918980 transparent;
  scrollbar-width: thin;
}

.work__viewport::-webkit-scrollbar { height: 6px; }
.work__viewport::-webkit-scrollbar-thumb { background: #918980; border-radius: 999px; }

.work__track {
  display: flex;
  gap: clamp(16px, 1.6vw, 26px);
  width: max-content;
  padding-bottom: 10px;
}

.work-card {
  width: clamp(280px, 23vw, 372px);
  padding: 0;
  color: var(--ink);
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  scroll-snap-align: start;
}

.work-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #d7cfc4;
}

.work-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(16, 11, 9, 0.12));
  opacity: 0;
  transition: opacity 350ms ease;
}

.work-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.work-card:hover img,
.work-card:focus-visible img { transform: scale(1.035); }
.work-card:hover .work-card__media::after { opacity: 1; }

.work-card__meta {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 15px 0 0;
  border-top: 1px solid rgba(23, 18, 15, 0.22);
}

.work-card__meta > span { display: grid; gap: 0; }

.work-card strong {
  font-family: var(--display);
  font-size: clamp(20px, 1.55vw, 25px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.work-card i {
  color: #71685f;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.work-card i {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  padding: 0;
  color: var(--ink);
  font-size: 0;
  border: 1px solid rgba(23, 18, 15, 0.38);
  border-radius: 50%;
  place-items: center;
  transition: color 200ms ease, background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.work-card i::after { content: "›"; font-size: 29px; font-weight: 300; line-height: 1; transform: translateY(-1px); }

.work-card:hover i,
.work-card:focus-visible i {
  color: var(--ivory);
  background: var(--ink);
  border-color: var(--ink);
  transform: translateX(2px);
}

.project-dialog {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  color: var(--ink);
  background: #fff;
  border: 0;
}

.project-dialog::backdrop { background: rgba(12, 9, 7, 0.72); }

.project-dialog__bar {
  position: sticky;
  top: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(24px, 5vw, 76px);
  background: rgba(238, 232, 222, 0.92);
  border-bottom: 1px solid rgba(23, 18, 15, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.project-dialog__bar h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 3.6vw, 56px);
  font-weight: 400;
  line-height: 1;
}

.project-dialog__bar button {
  position: relative;
  width: 48px;
  height: 48px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(23, 18, 15, 0.34);
  border-radius: 50%;
  cursor: pointer;
}

.project-dialog__bar button::before,
.project-dialog__bar button::after {
  content: "";
  position: absolute;
  top: 23px;
  left: 14px;
  width: 19px;
  height: 1px;
  background: currentColor;
}

.project-dialog__bar button::before { transform: rotate(45deg); }
.project-dialog__bar button::after { transform: rotate(-45deg); }

.project-dialog__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 30px);
  padding: clamp(24px, 4vw, 64px) clamp(24px, 5vw, 76px) 80px;
}

.project-dialog__gallery img {
  display: block;
  width: 100%;
  height: auto;
  background: #d7cfc4;
}

.project-dialog__gallery img:nth-child(3n + 1) { grid-column: 1 / -1; }

.services {
  padding: clamp(92px, 9vw, 144px) clamp(28px, 7vw, 112px);
  color: var(--ivory);
  background: #111111;
}

.services__header {
  display: flex;
  gap: 48px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(52px, 6vw, 88px);
}

@media (min-width: 901px) {
  .services[data-services-stack] {
    display: grid;
    grid-template-columns: minmax(230px, 0.62fr) minmax(0, 1.38fr);
    gap: clamp(40px, 5vw, 100px);
    align-items: start;
    padding-top: clamp(110px, 9vw, 150px);
    padding-bottom: clamp(110px, 9vw, 150px);
    overflow: visible;
  }

  .services[data-services-stack] .services__header {
    position: sticky;
    top: 118px;
    display: block;
    margin: 0;
    padding-top: 8px;
  }

  .services[data-services-stack] .services__header h2 { font-size: clamp(50px, 4.6vw, 74px); }

  .services[data-services-stack] .services__header > p {
    max-width: 360px;
    margin: 30px 0 0;
  }

  .services[data-services-stack] .services__grid {
    display: block;
    min-width: 0;
    padding-bottom: 48svh;
  }

  .services[data-services-stack] .service-tile,
  .services[data-services-stack] .service-tile--planning,
  .services[data-services-stack] .service-tile--creative,
  .services[data-services-stack] .service-tile--guest,
  .services[data-services-stack] .service-tile--day {
    position: sticky;
    top: 118px;
    width: 100%;
    height: clamp(460px, calc(100svh - 154px), 660px);
    min-height: 0;
    margin-bottom: 16svh;
    border: 0;
    box-shadow: 0 28px 75px rgba(0, 0, 0, 0.34);
    transform: scale(calc(1 - var(--cover-progress, 0) * 0.028));
    transform-origin: 50% 8%;
    will-change: transform;
  }

  .services[data-services-stack] .service-tile:nth-child(1) { z-index: 1; }
  .services[data-services-stack] .service-tile:nth-child(2) { z-index: 2; }
  .services[data-services-stack] .service-tile:nth-child(3) { z-index: 3; }
  .services[data-services-stack] .service-tile:nth-child(4) { z-index: 4; margin-bottom: 0; }

  .services[data-services-stack] .service-tile__body { padding: clamp(28px, 3vw, 46px); }

  .services[data-services-stack] .service-tile h3,
  .services[data-services-stack] .service-tile--creative h3,
  .services[data-services-stack] .service-tile--guest h3 { font-size: clamp(35px, 3.2vw, 50px); }

}

.services__header h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(48px, 5.4vw, 82px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.services__header p {
  max-width: 420px;
  margin: 0 0 5px;
  color: #c9c2b8;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.65;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, clamp(280px, 22vw, 350px));
  gap: clamp(14px, 1.4vw, 22px);
}

.service-tile {
  display: grid;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  color: var(--ink);
  background: #f3eee5;
}

.service-tile--planning {
  grid-column: span 7;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
}

.service-tile--creative {
  grid-column: span 5;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  background: #d7d7ca;
}

.service-tile--guest {
  grid-column: span 5;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  background: #d8c7b5;
}

.service-tile--day {
  grid-column: span 7;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  background: #ece7de;
}

.service-tile__media { min-width: 0; min-height: 0; margin: 0; overflow: hidden; }
.service-tile__media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.service-tile--planning .service-tile__media img { object-position: center 36%; }
.service-tile--creative .service-tile__media img { object-position: center; }
.service-tile--guest .service-tile__media img { object-position: 63% center; }
.service-tile--day .service-tile__media img { object-position: center 41%; }

.service-tile__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(24px, 2.4vw, 38px);
}

.service-tile__number {
  display: inline-block;
  margin-bottom: auto;
  color: rgba(23, 18, 15, 0.58);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.service-tile h3 {
  max-width: 540px;
  margin: clamp(24px, 3vw, 44px) 0 0;
  font-size: clamp(27px, 2.7vw, 43px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.service-tile p {
  max-width: 510px;
  margin: 14px 0 0;
  color: rgba(23, 18, 15, 0.68);
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.55;
}

.service-tile--creative h3,
.service-tile--guest h3 { font-size: clamp(25px, 2.2vw, 36px); }

.about {
  padding: clamp(96px, 12vw, 176px) clamp(28px, 7vw, 112px);
  color: var(--ink);
  background: #fff;
}

.about__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(0, 0.87fr);
  gap: clamp(48px, 8vw, 130px);
  width: 100%;
  align-items: center;
}

.about h2 {
  max-width: 670px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(43px, 4.25vw, 65px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.about__points {
  margin: clamp(36px, 4vw, 54px) 0 0;
  padding: 0;
  list-style: none;
}

.about__points li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 17px;
  align-items: center;
  padding: 18px 0;
}

.about__points p {
  max-width: 480px;
  margin: 0;
  color: #625b53;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.45;
}

.about__point-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--ink);
 }

.about__point-icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.about__media {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 0.91 / 1;
  background: #d7cfc4;
  border-radius: 0;
}

.about__media img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }

.about__link {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  margin-top: 35px;
  padding: 13px 18px;
  color: var(--ivory);
  background: var(--ink);
  border-radius: 999px;
  font-size: 13px;
  transition: background 200ms ease, color 200ms ease;
}

.about__link span { transition: transform 200ms ease; }
.about__link:hover, .about__link:focus-visible { color: var(--ink); background: var(--paper); }
.about__link:hover span, .about__link:focus-visible span { transform: translateX(4px); }

.celebration {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: 680px;
  padding: clamp(88px, 10vw, 150px) clamp(28px, 7vw, 112px);
  overflow: hidden;
  color: var(--ivory);
  background: #24201b;
}

.celebration__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.celebration::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(12, 10, 8, 0.88), rgba(12, 10, 8, 0.58) 55%, rgba(12, 10, 8, 0.22));
}

.celebration__content { max-width: 620px; }
.celebration h2 { margin: 0; font-size: clamp(48px, 5.6vw, 84px); font-weight: 400; line-height: 1.02; letter-spacing: -0.055em; }
.celebration__content > p { max-width: 470px; margin: 28px 0 0; font-size: 16px; line-height: 1.7; color: #e0dad1; }

.founder-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(48px, 9vw, 150px);
  padding: clamp(88px, 10vw, 152px) clamp(28px, 7vw, 112px);
  color: var(--ink);
  background: #fff;
}

.founder-note h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(42px, 4.7vw, 72px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.founder-note__character,
.founder-note__word { display: inline-block; }

.founder-note__character { will-change: opacity, transform; }
.founder-note__word { will-change: opacity, transform, filter; }

.founder-note__aside {
  max-width: 280px;
  margin: 36px 0 0;
  padding-top: 24px;
  border-top: 1px solid #cec2b1;
  color: #6d655c;
  font-size: 14px;
  line-height: 1.7;
}

.founder-note__letter {
  max-width: 610px;
  padding-top: 2px;
}

.founder-note__letter > p {
  margin: 0 0 24px;
  color: #62594f;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.85;
}

.founder-note__letter .founder-note__greeting {
  color: var(--ink);
  font-family: var(--display);
  font-size: 28px;
  font-style: italic;
  line-height: 1.3;
}

.founder-note__letter .founder-note__closing {
  margin-top: 32px;
  color: var(--ink);
}

.founder-note__signature {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid #cec2b1;
}

.founder-note__signature > span {
  font-family: var(--display);
  font-size: 24px;
  font-style: italic;
}

.founder-note__signature > p {
  margin: 12px 0 0;
  color: #6d655c;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.inquiry {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(52px, 9vw, 150px);
  align-items: start;
  padding: clamp(96px, 12vw, 176px) clamp(28px, 7vw, 112px);
  color: var(--ivory);
  background: var(--ink);
}

.inquiry h2 {
  max-width: 800px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(44px, 5.3vw, 80px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.06em;
}

.inquiry__copy {
  max-width: 530px;
  margin: 30px 0 0;
  color: rgba(248, 245, 238, 0.68);
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.58;
}

.inquiry-form { min-width: 0; }

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

.inquiry-form label,
.field {
  position: relative;
  display: grid;
  gap: 11px;
}

.inquiry-form label > span,
.field > span {
  color: rgba(248, 245, 238, 0.58);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.inquiry-form input,
.inquiry-form textarea,
.custom-select__trigger {
  width: 100%;
  padding: 0 0 12px;
  color: var(--ivory);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(248, 245, 238, 0.4);
  border-radius: 0;
  font: inherit;
  font-size: 15px;
  outline: 0;
  transition: border-color 180ms ease;
}

.inquiry-form textarea { min-height: 76px; resize: vertical; }
.inquiry-form input:focus,
.inquiry-form textarea:focus,
.custom-select__trigger:focus-visible { border-color: var(--ivory); }
.inquiry-form input[type="date"] { color-scheme: dark; }
.field--message { grid-column: 1 / -1; }

.custom-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
}

.custom-select__trigger svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
  transition: transform 180ms ease;
}

.custom-select__trigger[aria-expanded="true"] svg { transform: rotate(180deg); }

.custom-select__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  z-index: 5;
  padding: 7px;
  background: #28211d;
  border: 1px solid rgba(248, 245, 238, 0.26);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.custom-select__menu button {
  display: block;
  width: 100%;
  padding: 12px 13px;
  color: rgba(248, 245, 238, 0.76);
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 14px;
}

.custom-select__menu button:hover,
.custom-select__menu button:focus-visible { color: var(--ink); background: var(--ivory); }

.inquiry-form__footer {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  margin-top: 42px;
}

.inquiry-form__footer p {
  max-width: 335px;
  margin: 0;
  color: rgba(248, 245, 238, 0.54);
  font-size: 12px;
  line-height: 1.5;
}

.inquiry__button {
  display: inline-flex;
  gap: 36px;
  align-items: center;
  justify-content: space-between;
  min-width: 250px;
  padding: 12px 12px 12px 22px;
  color: var(--ink);
  background: var(--ivory);
  border-radius: 999px;
  font-size: 14px;
  transition: color 200ms ease, background 200ms ease, transform 200ms ease;
}

.inquiry__button span {
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--ivory);
  background: var(--ink);
  border-radius: 50%;
  place-items: center;
  transition: transform 200ms ease;
}

.inquiry__button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.inquiry__button:hover,
.inquiry__button:focus-visible { color: var(--ivory); background: #3b312b; transform: translateY(-2px); }
.inquiry__button:hover span,
.inquiry__button:focus-visible span { transform: translateX(3px); }

.site-footer {
  padding: 60px clamp(28px, 7vw, 112px) 30px;
  color: rgba(248, 245, 238, 0.76);
  background: #100d0b;
  border-top: 1px solid rgba(248, 245, 238, 0.15);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  width: 100%;
}

.site-footer__nav,
.site-footer__contact { display: grid; justify-items: start; gap: 9px; }

.site-footer__nav a,
.site-footer__contact a,
.site-footer__address,
.site-footer__legal { font-size: 13px; line-height: 1.5; }

.site-footer__contact p,
.site-footer__address span {
  margin: 0 0 8px;
  color: var(--ivory);
  font-size: 13px;
}

.site-footer__contact { justify-self: center; width: max-content; }
.site-footer__address { justify-self: end; margin: 0; text-align: right; font-style: normal; }
.site-footer__address span { display: inline-block; }

.site-footer__socials { display: flex; gap: 10px; margin-top: 13px; }

.site-footer__socials a {
  display: grid;
  width: 36px;
  height: 36px;
  color: var(--ivory);
  border: 1px solid rgba(248, 245, 238, 0.3);
  border-radius: 50%;
  font-size: 11px;
  place-items: center;
  transition: color 180ms ease, background 180ms ease;
}

.site-footer__socials a:hover,
.site-footer__socials a:focus-visible { color: var(--ink); background: var(--ivory); }

.site-footer__services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 64px 0 0;
}

.site-footer__services a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 15px;
  color: rgba(248, 245, 238, 0.72);
  border: 1px solid rgba(248, 245, 238, 0.22);
  border-radius: 999px;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.site-footer__services a:hover,
.site-footer__services a:focus-visible {
  color: var(--ink);
  background: var(--ivory);
  border-color: var(--ivory);
}

.site-footer__legal {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: clamp(22px, 4vw, 70px);
  margin-top: 24px;
}

.site-footer__legal p { margin: 0; }

.site-footer__wordmark {
  display: block;
  width: 100%;
  margin-top: clamp(56px, 7vw, 104px);
  color: #61564e;
  font-family: var(--display);
  font-size: clamp(20px, 7.5vw, 144px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.055em;
  text-align: center;
  white-space: nowrap;
}

.intro {
  display: grid;
  min-height: 70vh;
  padding: clamp(90px, 12vw, 180px) clamp(32px, 8vw, 130px);
  color: var(--ink);
  background: var(--paper);
}

.intro h2 {
  max-width: 850px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(52px, 6.8vw, 104px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.035em;
}

:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

@media (max-width: 900px) {
  .site-header { grid-template-columns: minmax(0, 1fr) auto auto; gap: 16px; }
  .header-cta { order: 2; }
  .menu-toggle { order: 3; }

  .nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
    justify-content: center;
    padding: 90px 9vw;
    visibility: hidden;
    background: rgba(23, 18, 15, 0.98);
    color: var(--ivory);
    opacity: 0;
    transition: opacity 250ms ease, visibility 250ms;
  }

  .nav a { font-family: var(--sans); font-size: clamp(43px, 9vw, 66px); }
  .nav[data-open="true"] { visibility: visible; opacity: 1; }
  .header-cta { padding: 10px 16px; }

  .menu-toggle {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px 0;
    color: inherit;
    background: transparent;
    border: 0;
    font-size: 13px;
    text-transform: uppercase;
  }

  .menu-toggle__icon { position: relative; display: block; width: 22px; height: 12px; }
  .menu-toggle__icon i { position: absolute; left: 0; width: 22px; height: 1px; background: currentColor; transition: transform 200ms ease, top 200ms ease; }
  .menu-toggle__icon i:first-child { top: 2px; }
  .menu-toggle__icon i:last-child { top: 9px; }
  .menu-toggle[aria-expanded="true"] i:first-child { top: 6px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i:last-child { top: 6px; transform: rotate(-45deg); }
  .hero__content { width: min(550px, 62vw); }

  .work {
    grid-template-columns: 36% 64%;
    min-height: 780px;
  }

  .work__intro { padding: 0 30px; }
  .work__intro h2 { font-size: clamp(44px, 6vw, 60px); }
  .work-card { width: clamp(260px, 34vw, 320px); }
  .work-card i { display: none; }

  .services__header { align-items: flex-start; }
  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 340px 430px 340px;
  }
  .service-tile--planning {
    grid-column: 1 / -1;
    grid-row: auto;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    min-height: 0;
  }
  .service-tile--creative,
  .service-tile--guest {
    grid-column: span 1;
    grid-template-columns: 1fr;
    grid-template-rows: 190px auto;
  }
  .service-tile--guest .service-tile__media { grid-row: 1; }
  .service-tile--guest .service-tile__body { grid-row: 2; }
  .service-tile--day { grid-column: 1 / -1; }

  .about__layout { grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr); gap: 42px; }

  .inquiry { gap: 50px; }

  .inquiry { grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.28fr); gap: 45px; }
  .site-footer__top { gap: 28px; }
}

@media (max-width: 820px) {
  .celebration { min-height: 620px; padding: 88px 24px; }
  .celebration::before { background: rgba(12, 10, 8, 0.7); }
  .celebration__content > p { font-size: 15px; }
  .hero { min-height: 720px; height: 100svh; }
  .hero__video { inset: 0; width: 100%; height: 100%; transform: none; }
  .hero__veil {
    background:
      linear-gradient(180deg, rgba(10, 8, 6, 0.6) 0%, rgba(9, 8, 6, 0.05) 29%, rgba(9, 7, 5, 0.2) 49%, rgba(9, 7, 5, 0.92) 100%),
      linear-gradient(90deg, rgba(10, 8, 6, 0.25), transparent 72%);
  }

  .site-header {
    top: 10px;
    right: 10px;
    left: 10px;
    width: calc(100% - 20px);
    min-height: 54px;
    padding: 6px 7px 6px 17px;
    gap: 12px;
  }
  .site-header .brand__name { font-size: clamp(8.5px, 2.21vw, 11.05px); }
  .menu-toggle__label { display: none; }
  .header-cta { padding: 10px 14px; font-size: 12px; }
  .sound-toggle { right: 24px; bottom: 25px; }

  .hero__content {
    top: auto;
    right: 24px;
    bottom: 144px;
    left: 24px;
    width: auto;
    transform: none;
  }

  h1 { max-width: 500px; font-size: clamp(48px, 13.5vw, 68px); line-height: 0.98; }
  .hero__copy { max-width: 390px; margin-top: 16px; font-size: 13px; }
  .button { margin-top: 19px; padding: 12px 19px; }
  .hero__footer { right: 24px; bottom: 25px; left: 24px; }
  .hero__facts { display: none; }

  .work {
    display: block;
    min-height: 0;
    padding: 84px 0 90px;
  }

  .work__intro { padding: 0 24px; }
  .work__intro h2 { max-width: 420px; font-size: clamp(46px, 13vw, 62px); }
  .work__copy { max-width: 360px; margin-top: 22px; }
  .work__controls { margin-top: 30px; }
  .work__viewport { margin-top: 44px; padding-left: 24px; }
  .work__track { gap: 14px; }
  .work-card { width: min(76vw, 320px); }
  .work-card__meta { padding-top: 15px; }
  .project-dialog__gallery { grid-template-columns: 1fr; }
  .project-dialog__gallery img:nth-child(3n + 1) { grid-column: auto; }

  .services { padding: 88px 24px; }
  .services__header { display: block; margin-bottom: 44px; }
  .services__header h2 { font-size: clamp(42px, 12vw, 58px); }
  .services__header p { margin-top: 22px; }
  .services__grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: auto;
    gap: 14px;
  }
  .service-tile--planning,
  .service-tile--creative,
  .service-tile--guest,
  .service-tile--day {
    grid-column: 1;
    grid-row: auto;
    grid-template-columns: 1fr;
    grid-template-rows: 220px auto;
    min-height: 0;
  }
  .service-tile--guest .service-tile__media,
  .service-tile--day .service-tile__media { grid-row: 1; }
  .service-tile--guest .service-tile__body,
  .service-tile--day .service-tile__body { grid-row: 2; }
  .service-tile__body,
  .service-tile--creative .service-tile__body,
  .service-tile--guest .service-tile__body { padding: 26px 22px 30px; }
  .service-tile__number,
  .service-tile--creative .service-tile__number,
  .service-tile--guest .service-tile__number { margin-bottom: 24px; }
  .service-tile h3,
  .service-tile--creative h3,
  .service-tile--guest h3 { font-size: clamp(29px, 8.5vw, 39px); }
  .service-tile p { margin-top: 13px; font-size: 13px; line-height: 1.5; }

  .about { display: block; padding: 88px 24px; }
  .about h2 { font-size: clamp(42px, 11.5vw, 58px); }
  .about__layout { display: block; }
  .about__media { margin-top: 44px; aspect-ratio: 1 / 1.05; border-radius: 0; }
  .about__points { margin-top: 36px; }
  .about__points li { gap: 14px; padding: 16px 0; }
  .about__points p { font-size: 14px; }

  .founder-note { grid-template-columns: 1fr; gap: 44px; padding: 80px 24px; }
  .founder-note h2 { font-size: clamp(40px, 10.5vw, 58px); }
  .founder-note__aside { margin-top: 28px; }
  .founder-note__letter { max-width: none; }

  .inquiry { display: block; padding: 88px 24px; }
  .inquiry h2 { font-size: clamp(42px, 11.5vw, 58px); }
  .inquiry__copy { margin-top: 24px; }
  .inquiry-form { margin-top: 42px; }
  .inquiry-form__grid { grid-template-columns: 1fr; gap: 24px; }
  .inquiry-form input,
  .inquiry-form textarea,
  .custom-select__trigger { font-size: 16px; }
  .field--message { grid-column: auto; }
  .inquiry-form__footer { display: grid; justify-items: start; margin-top: 34px; }
  .inquiry__button { min-width: min(100%, 280px); }
  .site-footer { padding: 44px 24px 22px; }
  .site-footer__top { grid-template-columns: 1fr; gap: 34px; }
  .site-footer__contact { justify-self: start; width: auto; }
  .site-footer__address { justify-self: start; text-align: left; }
  .site-footer__services { margin-top: 44px; }
  .site-footer__legal { grid-template-columns: 1fr; gap: 12px; margin-top: 48px; }
  .site-footer__wordmark { margin-top: 36px; }
  .intro { min-height: 60vh; }
}

/* The phone layout treats the services as a sequence of chapters. Each card
   remains pinned until the following card rises over it. */
@media (max-width: 680px) {
  body { font-size: 16px; }

  .sound-toggle { right: 20px; bottom: 18px; }

  .site-header {
    min-height: 52px;
    padding-left: 16px;
  }
  .site-header .brand__name { font-size: 12px; letter-spacing: 0.025em; }
  .header-cta { min-height: 40px; padding: 9px 13px; }

  .hero { min-height: 640px; }
  .hero__content { right: 20px; bottom: 106px; left: 20px; }
  h1 { font-size: clamp(44px, 13vw, 58px); }
  .hero__copy { max-width: 330px; line-height: 1.5; }
  .hero__footer { display: none; }

  .work { padding: 72px 0 76px; }
  .work__intro { padding-inline: 20px; }
  .work__intro h2 { font-size: clamp(40px, 11.5vw, 50px); line-height: 1.01; }
  .work__copy { margin-top: 18px; font-size: 12px; line-height: 1.6; }
  .work__controls { margin-top: 24px; }
  .work__arrow { width: 44px; height: 44px; }
  .work__viewport { margin-top: 34px; padding-left: 20px; }
  .work-card { width: min(78vw, 304px); }
  .work-card__meta { min-height: 66px; }

  .services {
    position: relative;
    padding: 74px 14px 18px;
    overflow: visible;
  }

  .services__header {
    display: grid;
    min-height: 64svh;
    margin: 0;
    padding: 0 7px 52px;
    align-content: center;
  }

  .services__header h2 {
    font-size: clamp(43px, 13vw, 56px);
    line-height: 0.94;
  }

  .services__header > p {
    max-width: 320px;
    margin-top: 24px;
    font-size: 12px;
    line-height: 1.62;
  }

  .services__grid {
    display: block;
    counter-reset: service-card;
    padding-bottom: 44svh;
  }

  .service-tile,
  .service-tile--planning,
  .service-tile--creative,
  .service-tile--guest,
  .service-tile--day {
    position: sticky;
    top: 72px;
    display: block;
    width: 100%;
    height: calc(100svh - 88px);
    min-height: 470px;
    max-height: 720px;
    margin: 0 0 15svh;
    overflow: hidden;
    color: var(--ivory);
    background: #29231f;
    border: 0;
    border-radius: 20px;
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.34);
    transform: scale(calc(1 - var(--cover-progress, 0) * 0.035));
    transform-origin: 50% 8%;
    transition: filter 80ms linear;
    will-change: transform;
  }

  .service-tile:nth-child(1) { z-index: 1; }
  .service-tile:nth-child(2) { z-index: 2; }
  .service-tile:nth-child(3) { z-index: 3; }
  .service-tile:nth-child(4) { z-index: 4; margin-bottom: 0; }

  .service-tile__media,
  .service-tile--guest .service-tile__media,
  .service-tile--day .service-tile__media {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
  }

  .service-tile__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(10, 8, 7, 0.18) 0%, transparent 34%),
      linear-gradient(0deg, rgba(10, 8, 7, 0.94) 0%, rgba(10, 8, 7, 0.7) 31%, transparent 68%);
  }

  .service-tile__media img,
  .service-tile--planning .service-tile__media img,
  .service-tile--creative .service-tile__media img,
  .service-tile--guest .service-tile__media img,
  .service-tile--day .service-tile__media img {
    object-position: center;
    transform: scale(calc(1.035 + var(--cover-progress, 0) * 0.025));
  }

  .service-tile--planning .service-tile__media img { object-position: center 34%; }
  .service-tile--creative .service-tile__media img { object-position: 49% center; }
  .service-tile--guest .service-tile__media img { object-position: 65% center; }
  .service-tile--day .service-tile__media img { object-position: 58% center; }

  .service-tile__body,
  .service-tile--creative .service-tile__body,
  .service-tile--guest .service-tile__body,
  .service-tile--day .service-tile__body {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
    padding: 26px 22px 28px;
    color: var(--ivory);
  }

  .service-tile__number,
  .service-tile--creative .service-tile__number,
  .service-tile--guest .service-tile__number {
    position: absolute;
    top: 23px;
    left: 22px;
    margin: 0;
    color: rgba(248, 245, 238, 0.8);
  }

  .service-tile__number::after { content: " / 04"; opacity: 0.55; }

  .service-tile h3,
  .service-tile--creative h3,
  .service-tile--guest h3 {
    max-width: 290px;
    margin: 0;
    font-size: clamp(38px, 11vw, 50px);
    line-height: 0.94;
    letter-spacing: -0.045em;
  }

  .service-tile p {
    max-width: 310px;
    margin-top: 15px;
    color: rgba(248, 245, 238, 0.78);
    font-size: 12px;
    line-height: 1.55;
  }

  .about { padding: 76px 20px; }
  .about h2 { font-size: clamp(39px, 11vw, 47px); line-height: 1.01; }
  .about__points { margin-top: 29px; }
  .about__points li { grid-template-columns: 32px minmax(0, 1fr); padding: 13px 0; }
  .about__points p { font-size: 12px; line-height: 1.5; }
  .about__media { margin-top: 36px; }

  .celebration { min-height: 580px; padding: 72px 20px; }
  .celebration h2 { font-size: clamp(46px, 13vw, 58px); }
  .celebration__content > p { margin-top: 20px; font-size: 13px; line-height: 1.6; }

  .founder-note { gap: 34px; padding: 72px 20px; }
  .founder-note h2 { font-size: clamp(39px, 11vw, 48px); }
  .founder-note__aside { margin-top: 20px; padding-top: 18px; }
  .founder-note__letter > p { margin-bottom: 19px; font-size: 14px; line-height: 1.72; }
  .founder-note__signature { margin-top: 27px; }

  .inquiry { padding: 76px 20px; }
  .inquiry h2 { font-size: clamp(40px, 11.5vw, 50px); }
  .inquiry-form { margin-top: 36px; }
  .site-footer { padding-inline: 20px; }

}

@media (max-width: 380px) {
  .site-header { padding-right: 6px; padding-left: 14px; }
  .site-header .brand__name { font-size: 11px; }
  .header-cta { min-height: 40px; padding-inline: 12px; }
  .sound-toggle { right: 20px; bottom: 18px; }
  .hero__content, .hero__footer { right: 20px; left: 20px; }
  .work__intro, .services, .about, .founder-note, .inquiry { padding-right: 20px; padding-left: 20px; }
  .work__viewport { padding-left: 20px; }
  .project-dialog__bar { padding-inline: 18px; }
  .project-dialog__gallery { padding-inline: 18px; }
}

@media (max-height: 620px) and (orientation: landscape) {
  .hero { min-height: 480px; }
  .hero__content { top: 46%; bottom: auto; width: min(560px, 58vw); transform: translateY(-42%); }
  .hero__copy { margin-top: 14px; }
  .hero__content > .button { margin-top: 14px; }
  .hero__footer { bottom: 18px; }
  .hero__facts { padding-block: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero[data-hero-motion="pending"] .hero__word,
  .hero[data-hero-motion="pending"] .hero__copy,
  .hero[data-hero-motion="pending"] .hero__content > .button,
  .hero[data-hero-motion="pending"] .hero__facts { opacity: 1; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-reduced-motion: reduce) and (max-width: 680px) {
  .services[data-services-stack] .services__grid { padding-bottom: 0; }

  .service-tile,
  .service-tile--planning,
  .service-tile--creative,
  .service-tile--guest,
  .service-tile--day {
    position: relative;
    top: auto;
    margin-bottom: 14px;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) and (min-width: 901px) {
  .services[data-services-stack] .services__grid { padding-bottom: 0; }

  .services[data-services-stack] .services__header,
  .services[data-services-stack] .service-tile {
    position: relative;
    top: auto;
  }

  .services[data-services-stack] .service-tile {
    margin-bottom: 24px;
    transform: none;
  }
}
