:root {
  --paper: #fdfcfb;
  --white: #fff;
  --ink: #501e2c;
  --ink-muted: #75676c;
  --line: #e6dee0;
  --accent: #e9472b;
  --blush: #f2e9e9;
  --sans: "Manrope", Arial, sans-serif;
  --serif: "Newsreader", Georgia, serif;
  --candle: #ae3428;
  --indigo: #501e2c;
  --moon: #fff;
  --deep-night: #26141b;
  --ink-line: #e6dee0;
  --gutter: clamp(22px, 4.6vw, 88px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 16px/1.6 var(--sans);
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  color: inherit;
  cursor: pointer;
  border: 0;
}
button:disabled {
  cursor: default;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex="0"]:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.05;
  font-weight: 650;
  letter-spacing: -0.055em;
}
h2 {
  font-size: clamp(38px, 4.7vw, 74px);
}
h2 em,
h3 em {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
}
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}
legend {
  padding: 0;
}
::selection {
  background: var(--ink);
  color: white;
}
[hidden] {
  display: none !important;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  background: white;
  padding: 12px 20px;
  transform: translateY(-200%);
}
.skip-link:focus {
  transform: none;
}
.eyebrow {
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
  line-height: 1.5;
}
.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 9px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  min-height: 56px;
  padding: 16px 23px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: white;
  font-weight: 650;
  font-size: 14px;
  line-height: 1.4;
  border-radius: 4px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #723044;
  transform: translateY(-2px);
}
.button span {
  font-size: 23px;
  line-height: 1;
}
.button.compact {
  min-height: 44px;
  padding: 10px 16px;
  gap: 20px;
  font-size: 12px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: none;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.5;
}
.text-link span {
  font-size: 22px;
  transition: transform 0.2s;
}
.text-link:hover span {
  transform: translate(3px, -2px);
}
.section-pad {
  padding: 110px var(--gutter);
}
.anchor-alias {
  scroll-margin-top: 100px;
}
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 var(--gutter);
  background: rgba(253, 252, 251, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand > span {
  font-size: 18px;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.brand-dot {
  color: var(--accent);
}
.brand-symbol {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.main-nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
}
.main-nav a,
.client-link {
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.main-nav a:hover,
.client-link:hover {
  color: var(--accent);
}
.header-actions {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-left: 36px;
}
.menu-toggle {
  display: none;
  background: transparent;
  width: 44px;
  height: 44px;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  height: 1px;
  background: var(--ink);
  margin: 7px 0;
}
.mobile-menu {
  position: fixed;
  top: 88px;
  inset-inline: 0;
  bottom: 0;
  background: var(--paper);
  z-index: 49;
  padding: 40px var(--gutter);
  overflow-y: auto;
}
.mobile-menu a {
  display: block;
  font-size: clamp(24px, 6vw, 40px);
  letter-spacing: -0.04em;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.hero {
  padding: 24px var(--gutter) 0;
}
.hero-top {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: center;
}
.hero-top > p:last-child {
  font-size: 12px;
  color: var(--ink-muted);
}
.hero-heading {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 40px;
  align-items: end;
  padding: 34px 0 38px;
}
.hero h1 {
  font-size: clamp(74px, 9.5vw, 168px);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.91;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-intro {
  padding: 0 0 5px 16%;
  max-width: 490px;
}
.hero-intro > p:first-child {
  font-size: clamp(18px, 1.65vw, 26px);
  line-height: 1.45;
  letter-spacing: -0.045em;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-intro > p:nth-child(2) {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-muted);
  margin-bottom: 20px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.hero-actions .button {
  min-height: 52px;
  padding-inline: 20px;
}
.hero-actions .text-link {
  cursor: pointer;
}
.hero-reassurance {
  margin-top: 13px;
  max-width: 410px;
  color: var(--ink-muted);
  font-size: 12px;
  line-height: 1.6;
}
.hero-picture {
  position: relative;
  height: clamp(320px, 33vw, 610px);
  isolation: isolate;
}
.hero-picture > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  border-radius: 4px;
}
.hero-picture-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 60%, #24151b80);
  border-radius: 4px;
}
.picture-caption {
  position: absolute;
  bottom: 26px;
  inset-inline: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  font-size: 14px;
}
.time-tag {
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
}
.hero-disc {
  position: absolute;
  top: -59px;
  right: 37px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3px;
  transform: rotate(10deg);
  transition: transform 0.4s;
}
.hero-disc > span {
  font-size: 12px;
  letter-spacing: 0.06em;
  font-weight: 750;
  line-height: 1.45;
  text-align: center;
}
.hero-disc b {
  font-size: 27px;
  font-weight: 400;
  line-height: 1;
}
.hero-disc:hover {
  transform: rotate(0) scale(1.05);
}
.hero-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 12px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.hero-bottom ul {
  display: flex;
  gap: 12px 25px;
  flex-wrap: wrap;
  list-style: none;
}
.hero-bottom li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-bottom li::before {
  content: "";
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
}
.hero-bottom a {
  font-weight: 650;
}
.hero-bottom a span {
  margin-left: 16px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 48px;
}
.section-heading .eyebrow {
  margin-bottom: 24px;
}
.section-heading > p {
  max-width: 310px;
  font-size: 15px;
  color: var(--ink-muted);
}
.manifesto {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}
.manifesto > .eyebrow {
  padding-top: 14px;
}
.manifesto h2 {
  font-size: clamp(38px, 4.1vw, 66px);
}
.manifesto > div > p {
  max-width: 570px;
  margin-top: 28px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-muted);
}
.manifesto-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 52px;
  border-top: 1px solid var(--line);
}
.manifesto-proof article {
  min-width: 0;
  padding: 24px 22px 0 0;
  border-right: 1px solid var(--line);
}
.manifesto-proof article + article {
  padding-left: 22px;
}
.manifesto-proof article:last-child {
  border-right: 0;
}
.manifesto-proof span {
  display: block;
  margin-bottom: 25px;
  color: var(--accent);
  font: italic 16px var(--serif);
}
.manifesto-proof strong {
  display: block;
  font-size: 16px;
  line-height: 1.35;
}
.manifesto-proof p {
  margin-top: 10px;
  color: var(--ink-muted);
  font-size: 13px;
  line-height: 1.65;
}
.expertises {
  background: var(--blush);
}
.expertise-layout {
  display: grid;
  grid-template-columns: 1fr 1.32fr;
  gap: 7%;
}
.expertise-tabs {
  padding-top: 4px;
  min-width: 0;
}
.expertise-tabs > button {
  width: 100%;
  display: grid;
  grid-template-columns: 26px 1fr 30px;
  gap: 20px;
  align-items: center;
  text-align: left;
  padding: 26px 0;
  background: none;
  border-bottom: 1px solid #d2bfc5;
  color: #826771;
  transition:
    color 0.2s,
    padding 0.25s;
}
.expertise-tabs > button > span {
  font-size: 12px;
  align-self: start;
  margin-top: 6px;
}
.expertise-tabs > button > strong {
  font-size: clamp(19px, 2vw, 30px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.045em;
}
.expertise-tabs > button > b {
  font-size: 28px;
  font-weight: 400;
  opacity: 0;
  transform: translate(-6px, 6px);
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.expertise-tabs > button[aria-selected="true"] {
  color: var(--ink);
  border-bottom-color: var(--ink);
}
.expertise-tabs > button[aria-selected="true"] b {
  opacity: 1;
  transform: none;
}
.expertise-tabs > button:hover {
  color: var(--ink);
  padding-left: 7px;
}
.expertise-note {
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-muted);
  padding-top: 36px;
}
.expertise-panel {
  background: var(--paper);
  border-radius: 4px;
  min-width: 0;
  overflow: hidden;
}
.expertise-image {
  height: 310px;
  position: relative;
  background: var(--ink);
  overflow: hidden;
}
.expertise-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    opacity 0.25s,
    transform 0.7s;
}
.expertise-image > span {
  position: absolute;
  inset: auto 22px 20px;
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-shadow: 0 1px 12px #000;
}
.expertise-image::after {
  content: "";
  position: absolute;
  inset: 65% 0 0;
  background: linear-gradient(transparent, #0006);
  pointer-events: none;
}
.expertise-image > span {
  z-index: 1;
}
.expertise-copy {
  padding: 30px 34px 32px;
}
.expertise-copy h3 {
  font-size: 31px;
  font-weight: 600;
  line-height: 1.15;
}
.expertise-copy > p {
  margin-top: 16px;
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.75;
  min-height: 80px;
}
.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 24px 0 20px;
}
.expertise-tags > span {
  font-size: 11px;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 2px;
}
.expertise-copy .text-link {
  width: 100%;
}
.day-experience {
  padding-bottom: 100px;
}
.day-tabs {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  margin-bottom: 25px;
}
.day-tabs button {
  text-align: left;
  background: none;
  border-top: 1px solid var(--line);
  padding: 16px 0 4px;
  position: relative;
  color: var(--ink-muted);
}
.day-tabs time {
  font-size: 26px;
  display: block;
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 1.2;
}
.day-tabs button > span {
  font-size: 11px;
  display: block;
  margin-top: 5px;
}
.day-tabs button[aria-selected="true"] {
  border-top: 2px solid var(--accent);
  color: var(--ink);
  padding-top: 15px;
}
.day-tabs button[aria-selected="true"] time {
  color: var(--accent);
}
.day-panel {
  position: relative;
  height: 620px;
  border-radius: 4px;
  overflow: hidden;
  background: #321e27;
  color: white;
}
.day-panel > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    opacity 0.3s,
    transform 1s;
  object-position: var(--day-position, center);
}
.day-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #26141be6 0%, #26141b70 40%, transparent 80%),
    linear-gradient(0deg, #1f131455, transparent 30%);
}
.day-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 6%;
  max-width: 430px;
  width: 47%;
}
.day-caption .eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #eacfd7;
}
.day-caption h3 {
  font-size: clamp(36px, 4.4vw, 64px);
  margin: 24px 0;
  line-height: 1.08;
}
.day-caption > p:not(.eyebrow) {
  max-width: 350px;
  font-size: 15px;
  line-height: 1.8;
  color: #f3e9ed;
}
.day-caption .text-link {
  margin-top: 24px;
}
.day-clock {
  position: absolute;
  top: 34px;
  right: 40px;
  font-size: clamp(60px, 8.3vw, 120px);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 1;
  color: #ffffffbf;
}
.day-arrows {
  position: absolute;
  bottom: 32px;
  right: 36px;
  display: flex;
  gap: 10px;
}
.day-arrows button {
  width: 48px;
  height: 48px;
  border: 1px solid #ffffff70;
  border-radius: 50%;
  background: #fff1;
  color: white;
  font-size: 25px;
  backdrop-filter: blur(4px);
}
.day-arrows button:hover {
  background: white;
  color: var(--ink);
}
.midnight {
  position: relative;
  min-height: 850px;
  height: 95svh;
  max-height: 1100px;
  overflow: hidden;
  background: #27141b;
  color: white;
  display: grid;
  place-items: center;
  text-align: center;
  isolation: isolate;
}
.midnight > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition:
    transform 2.4s cubic-bezier(0.2, 0.7, 0.2, 1),
    opacity 1s,
    filter 1.5s;
  filter: saturate(0.65);
  z-index: -2;
}
.midnight-shade {
  position: absolute;
  inset: 0;
  background: #24101bb3;
  transition: background 1.5s;
  z-index: -1;
}
.midnight-content {
  padding: 80px var(--gutter);
}
.midnight-content > .eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
}
.midnight-time {
  font-size: clamp(115px, 24vw, 350px);
  line-height: 1.15;
  letter-spacing: -0.08em;
  font-weight: 650;
  margin-left: -0.07em;
}
.midnight h2 {
  font-size: clamp(42px, 6.4vw, 94px);
  margin-top: 8px;
}
.midnight-content > p:not(.eyebrow) {
  max-width: 540px;
  margin: 22px auto 32px;
  color: #f5e4ea;
  font-size: 16px;
}
.light-button {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}
.light-button:hover {
  background: white;
  color: var(--ink);
}
.midnight-foot {
  position: absolute;
  bottom: 35px;
  font-size: 10px;
  letter-spacing: 0.12em;
  padding: 0 20px;
}
.midnight.is-midnight > img {
  transform: scale(1);
  filter: saturate(1);
}
.midnight.is-midnight .midnight-shade {
  background: #24101b73;
}
.midnight.is-midnight .midnight-time {
  color: #ffe2d8;
}
.midnight.is-midnight .midnight-content {
  animation: midnight-in 1.1s both;
}
@keyframes midnight-in {
  from {
    transform: translateY(15px);
    opacity: 0.6;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.project-card {
  position: relative;
  min-height: 520px;
  border-radius: 4px;
  overflow: hidden;
  color: white;
  background: var(--ink);
}
.project-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}
.project-card:first-child > img {
  object-position: 65% center;
}
.project-card:nth-child(2) > img {
  object-position: 64% center;
}
.project-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(
    0deg,
    #20151bea 0%,
    #20151b50 46%,
    transparent 75%
  );
}
.project-card > div {
  position: absolute;
  inset: auto 28px 32px;
  z-index: 1;
}
.project-card > div > span {
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.13em;
}
.project-card h3 {
  font-size: clamp(30px, 3vw, 45px);
  line-height: 1.08;
  margin: 18px 0 15px;
  letter-spacing: -0.045em;
}
.project-card p {
  font-size: 12px;
  max-width: 230px;
  color: #f5e3e9;
}
.project-card b {
  position: absolute;
  right: 0;
  bottom: 2px;
  font-size: 30px;
  font-weight: 400;
  transition: transform 0.3s;
}
.project-card:hover > img {
  transform: scale(1.045);
}
.project-card:hover b {
  transform: translate(4px, -4px);
}
.project-card-brand {
  background: var(--accent);
}
.project-card-brand::after {
  display: none;
}
.project-graphic {
  display: block;
  color: var(--ink);
  font-size: clamp(54px, 6vw, 92px);
  font-weight: 800;
  letter-spacing: -0.09em;
  line-height: 0.86;
  padding: 32px 28px;
}
.project-graphic em {
  font-style: normal;
  color: #ffc3aa;
}
.project-card-brand p {
  color: white;
}
.projects-aside {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--ink-muted);
}
.projects-aside a {
  color: var(--ink);
  border-bottom: 1px solid;
  margin-left: 6px;
}
.studio {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 8%;
  align-items: center;
  background: #f3efee;
  overflow: hidden;
}
.studio-copy .eyebrow {
  margin-bottom: 26px;
}
.studio-copy h2 {
  font-size: clamp(40px, 4.5vw, 69px);
}
.studio-copy > p:not(.eyebrow) {
  margin: 26px 0 32px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-muted);
  max-width: 395px;
}
.studio-caption {
  display: block;
  font-size: 11px;
  color: var(--ink-muted);
  margin-top: 16px;
}
.studio-preview {
  background: white;
  border: 1px solid #e3d8dc;
  border-radius: 9px;
  box-shadow: 0 20px 60px #501e2c12;
  transform: rotate(-2deg);
  overflow: hidden;
}
.preview-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  gap: 15px;
}
.preview-toolbar > span:nth-child(2) {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: var(--ink-muted);
}
.preview-dots {
  font-size: 8px;
  letter-spacing: 3px;
  color: #d8c9ce;
  white-space: nowrap;
}
.preview-welcome {
  padding: 32px 28px 24px;
}
.preview-welcome > span {
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
}
.preview-welcome h3 {
  font-size: 30px;
  line-height: 1.3;
  margin: 10px 0;
  font-weight: 600;
}
.preview-welcome h3 > span {
  color: var(--accent);
  margin-left: 12px;
}
.preview-welcome p {
  font-size: 11px;
  color: var(--ink-muted);
}
.preview-grid {
  padding: 0 24px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.preview-grid > a {
  position: relative;
  padding: 19px 17px;
  border: 1px solid #e9e1e4;
  border-radius: 4px;
  transition:
    background 0.2s,
    transform 0.2s;
  min-width: 0;
}
.preview-grid > a:hover {
  background: #fbf6f7;
  transform: translateY(-3px);
}
.preview-icon {
  font-size: 28px;
  line-height: 1;
  display: block;
  color: var(--accent);
  margin-bottom: 20px;
}
.preview-grid strong {
  display: block;
  font-size: 14px;
  font-weight: 650;
}
.preview-grid > a > span:last-of-type {
  display: block;
  font-size: 11px;
  line-height: 1.6;
  color: var(--ink-muted);
  margin-top: 7px;
  max-width: 165px;
}
.preview-grid b {
  position: absolute;
  right: 15px;
  top: 17px;
  font-size: 18px;
  font-weight: 400;
}
.preview-note {
  padding: 16px 20px;
  text-align: center;
  font-size: 11px;
  background: #faf7f8;
}
.preview-note .live-dot {
  height: 5px;
  width: 5px;
}
.approach ol {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7%;
  padding: 0;
  margin: 60px 0 0;
}
.approach li {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.approach li > span {
  font-size: 12px;
  color: var(--accent);
  font-weight: 650;
}
.approach h3 {
  font-size: 30px;
  margin: 32px 0 16px;
}
.approach li > p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-muted);
}
.faq {
  display: grid;
  grid-template-columns: 0.85fr 1.5fr;
  gap: 10%;
  border-top: 1px solid var(--line);
}
.faq h2 {
  margin-top: 24px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 23px 0;
  list-style: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  line-height: 1.65;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  font-size: 24px;
  font-weight: 400;
  transition: transform 0.25s;
}
.faq-list details[open] summary span {
  transform: rotate(45deg);
}
.faq-list details > p {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.8;
  padding: 0 30px 25px 0;
}
.quote {
  display: grid;
  grid-template-columns: 1fr 1.22fr;
  gap: 8%;
  background: var(--ink);
  color: white;
  align-items: start;
}
.quote-intro {
  padding-top: 25px;
  position: sticky;
  top: 140px;
}
.quote-intro > .eyebrow {
  font-size: 11px;
  color: #eac4cf;
}
.quote h2 {
  font-size: clamp(44px, 5.3vw, 80px);
  margin: 32px 0;
}
.quote-intro > p:not(.eyebrow) {
  font-size: 16px;
  line-height: 1.85;
  color: #efdde3;
}
.quote-assurance {
  display: grid;
  gap: 15px;
  padding-top: 55px;
  font-size: 12px;
  color: #cfa9b5;
}
.quote-assurance span:first-child {
  color: white;
}
.quote-reassurance {
  display: grid;
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid #ffffff2f;
}
.quote-reassurance p {
  display: grid;
  gap: 4px;
  padding: 17px 0;
  border-bottom: 1px solid #ffffff2f;
}
.quote-reassurance strong {
  color: white;
  font-size: 13px;
}
.quote-reassurance span {
  color: #cfa9b5;
  font-size: 12px;
  line-height: 1.55;
}
.quote-direct {
  margin-top: 28px;
  color: #cfa9b5;
  font-size: 12px;
  line-height: 1.7;
}
.quote-direct a {
  color: white;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.quote-card {
  padding: 38px 34px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 5px;
  min-width: 0;
  min-height: 655px;
}
.quote-progress {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 33px;
  font-size: 11px;
  color: var(--ink-muted);
}
.quote-progress > span:first-child {
  color: var(--accent);
  font-weight: 700;
}
.quote-progress > div {
  width: 100%;
  height: 2px;
  background: var(--line);
  margin-top: 0;
}
.quote-progress i {
  display: block;
  width: 33.333%;
  height: 100%;
  background: var(--accent);
  transition: width 0.3s;
}
.quote legend {
  font-size: 27px;
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: -0.045em;
}
.field-hint {
  font-size: 13px;
  color: var(--ink-muted);
  margin: 8px 0 25px;
}
.event-choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
}
.event-choices label,
.service-choices label {
  position: relative;
  cursor: pointer;
}
.event-choices input,
.service-choices input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.event-choices label > span {
  display: flex;
  flex-direction: column;
  border: 1px solid #cdbec4;
  padding: 18px 14px;
  min-height: 106px;
  border-radius: 3px;
  transition:
    background 0.2s,
    border-color 0.2s;
  padding-right: 22px;
}
.event-choices b {
  font-size: 14px;
  font-weight: 650;
  line-height: 1.4;
}
.event-choices small {
  font-size: 10px;
  color: var(--ink-muted);
  margin-top: 7px;
  line-height: 1.6;
}
.event-choices i {
  position: absolute;
  right: 12px;
  top: 10px;
  font-size: 17px;
  font-style: normal;
  color: #8a6b76;
}
.event-choices input:checked + span {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}
.event-choices input:checked + span small,
.event-choices input:checked + span i {
  color: #eed7df;
}
.event-choices input:focus-visible + span,
.service-choices input:focus-visible + span {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
}
.field {
  font-size: 12px;
  font-weight: 650;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
  color: var(--ink);
  margin-bottom: 18px;
}
.field-grid .field {
  margin-bottom: 0;
}
.field.wide {
  grid-column: 1/-1;
}
.field input,
.field select,
.field textarea {
  display: block;
  width: 100%;
  min-width: 0;
  min-height: 47px;
  border: 1px solid #cdbec4;
  background: white;
  color: var(--ink);
  font-size: 14px;
  padding: 11px 12px;
  border-radius: 3px;
  font-weight: 400;
  line-height: 1.5;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #8b7b81;
  opacity: 1;
}
.field small {
  font-size: 10px;
  color: var(--ink-muted);
  font-weight: 400;
}
.field textarea {
  resize: vertical;
}
.service-choices {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
  margin: 20px 0 26px;
}
.service-choices label > span {
  padding: 15px 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border: 1px solid #cdbec4;
  border-radius: 3px;
  font-size: 12px;
  line-height: 1.45;
  min-height: 63px;
}
.service-choices b {
  font-size: 20px;
  font-weight: 400;
  transition: transform 0.2s;
}
.service-choices input:checked + span {
  background: var(--blush);
  border-color: var(--ink);
}
.service-choices input:checked + span b {
  transform: rotate(45deg);
}
.form-error {
  color: #a92420;
  font-size: 13px;
  line-height: 1.6;
  margin-top: 18px;
}
.form-error:empty {
  margin: 0;
}
.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
.form-actions .button {
  margin-left: auto;
  min-height: 49px;
  font-size: 13px;
}
.form-actions .text-link {
  font-size: 12px;
  border: 0;
}
.brief-review {
  margin: 24px 0;
  padding: 18px;
  background: var(--blush);
  font-size: 13px;
  line-height: 1.75;
  border-radius: 3px;
}
.brief-review strong {
  display: block;
  margin-bottom: 6px;
}
.brief-review span {
  display: block;
  color: var(--ink-muted);
}
.quote-delivery-note,
.delivery-status {
  font-size: 11px;
  line-height: 1.8;
  color: var(--ink-muted);
}
.quote-result {
  padding: 25px 0 10px;
}
.result-symbol {
  display: block;
  font-size: 72px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 38px;
}
.quote-result h3 {
  font-size: 43px;
  line-height: 1.1;
  margin: 20px 0;
}
.quote-result > p:not(.eyebrow) {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.8;
}
.quote-result .button {
  width: 100%;
  margin: 30px 0 16px;
}
.quote-result .text-link {
  display: flex;
  width: 100%;
  margin-bottom: 22px;
}
.result-edit {
  display: block;
  font-size: 12px;
  text-decoration: underline;
  background: none;
  padding: 8px 0;
}
.quote-result .delivery-status {
  margin-top: 28px;
  font-size: 11px;
}
.mobile-conversion {
  display: none;
}
.footer {
  background: #28171e;
  color: white;
  padding: 65px var(--gutter) 24px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.footer-top > p {
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: -0.02em;
}
.footer-top > p em {
  font-family: var(--serif);
  font-size: 24px;
}
.footer-top .text-link {
  font-size: 13px;
}
.footer-wordmark {
  font-size: clamp(36px, 10.2vw, 196px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.065em;
  white-space: nowrap;
  margin: 70px 0 45px;
}
.footer-wordmark > span {
  color: var(--accent);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid #ffffff25;
  padding-top: 22px;
  color: #d3bfc7;
  font-size: 10px;
  letter-spacing: 0.02em;
}
.footer-bottom a:hover {
  color: white;
}
.night-experience .experience-stage {
  background: var(--paper);
}
.night-experience .experience-inner h2 {
  font-family: var(--sans);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 650;
  line-height: 1.12;
}
.night-experience .experience-media-brand {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.05em;
}
.night-experience .experience-primary {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}
.night-experience .experience-choice.is-selected {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}
.night-experience .experience-choice {
  background: white;
}
.night-experience .experience-choice.is-selected span {
  color: white;
  border-color: #ffffff70;
}
.night-experience .experience-choice.is-selected b {
  color: white;
}
.night-experience .experience-nav-button {
  font-size: 14px;
}
.night-experience .experience-progress > span {
  font-size: 12px;
}
.night-experience .experience-question-copy {
  font-size: 16px;
}
.night-experience .experience-media-caption span {
  font-size: 12px;
}
.night-experience .experience-media-caption p {
  font-size: 12px;
}
.night-experience .experience-media-caption strong {
  font-family: var(--sans);
  font-weight: 500;
}
.night-experience .experience-secondary {
  color: var(--ink);
  background: white;
}
.night-experience .experience-transition {
  background: var(--ink);
}
.reveal-ready {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.75s,
    transform 0.75s;
}
.reveal-ready.is-visible {
  opacity: 1;
  transform: none;
}
.hero h1 {
  animation: hero-in 0.85s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.hero-intro {
  animation: hero-in 0.85s 0.1s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (min-width: 1700px) {
  body > main,
  body > .footer {
    max-width: 2000px;
    margin-inline: auto;
  }
}
@media (max-width: 1100px) {
  .main-nav {
    gap: 18px;
  }
  .header-actions {
    gap: 18px;
    margin-left: 0;
  }
  .client-link {
    display: none;
  }
  .hero-intro {
    padding-left: 8%;
  }
  .section-pad {
    padding-block: 85px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 88px;
  }
  .header {
    height: 76px;
  }
  .main-nav {
    display: none;
  }
  .header-actions {
    margin-left: auto;
    gap: 12px;
  }
  .header-actions .button {
    font-size: 11px;
    min-height: 38px;
    padding: 10px 12px;
    gap: 8px;
  }
  .header-actions .button span {
    font-size: 18px;
  }
  .brand > span {
    font-size: 15px;
  }
  .brand-symbol {
    width: 34px;
    height: 34px;
  }
  .brand {
    gap: 8px;
  }
  .menu-toggle {
    display: block;
    width: 36px;
  }
  .mobile-menu {
    top: 76px;
  }
  .hero {
    padding-top: 22px;
  }
  .hero-top > p:last-child {
    display: none;
  }
  .hero-top .eyebrow {
    font-size: 10px;
    letter-spacing: 0.09em;
  }
  .hero-heading {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 30px 0 40px;
  }
  .hero h1 {
    font-size: clamp(63px, 14.8vw, 114px);
  }
  .hero-intro {
    padding: 0;
    max-width: none;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px 20px;
  }
  .hero-intro > p:first-child {
    font-size: 18px;
    margin: 0;
    grid-column: 1/-1;
  }
  .hero-intro > p:nth-child(2) {
    font-size: 13px;
    margin: 0;
  }
  .hero-intro .text-link {
    display: none;
  }
  .hero-picture {
    height: 420px;
    margin-inline: calc(-1 * var(--gutter));
    margin-top: 6px;
  }
  .hero-picture > img {
    border-radius: 0;
    object-position: 49% center;
  }
  .hero-disc {
    width: 88px;
    height: 88px;
    top: -44px;
    right: var(--gutter);
  }
  .hero-disc > span {
    font-size: 9px;
  }
  .hero-disc b {
    font-size: 22px;
  }
  .picture-caption {
    inset-inline: var(--gutter);
    bottom: 22px;
    font-size: 11px;
  }
  .time-tag {
    font-size: 30px;
  }
  .hero-bottom {
    font-size: 11px;
    padding: 16px 0;
  }
  .hero-bottom a {
    display: none;
  }
  .section-pad {
    padding-block: 65px;
  }
  .manifesto {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .manifesto > div > p {
    font-size: 16px;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading > p {
    margin-top: 24px;
    max-width: 100%;
  }
  .section-heading .eyebrow {
    margin-bottom: 20px;
  }
  .section-heading > .text-link {
    margin-top: 24px;
  }
}
@media (max-width: 1100px) {
  .expertise-layout {
    gap: 5%;
    grid-template-columns: 1fr 1.2fr;
  }
  .expertise-tabs > button {
    gap: 10px;
  }
  .expertise-image {
    height: 260px;
  }
  .expertise-copy {
    padding: 26px;
  }
  .day-panel {
    height: 540px;
  }
  .project-card {
    min-height: 470px;
  }
  .project-card > div {
    inset-inline: 22px;
  }
  .project-card h3 {
    font-size: 30px;
  }
  .project-card p {
    max-width: 190px;
  }
  .project-graphic {
    font-size: 64px;
    padding: 28px 22px;
  }
  .studio {
    gap: 5%;
    grid-template-columns: 1fr 1.3fr;
  }
  .preview-welcome h3 {
    font-size: 25px;
  }
  .preview-grid {
    padding-inline: 18px;
    gap: 8px;
  }
  .preview-grid > a {
    padding: 16px 12px;
  }
  .preview-grid strong {
    font-size: 12px;
  }
  .quote {
    gap: 5%;
    grid-template-columns: 1fr 1.35fr;
  }
  .quote-card {
    padding: 30px 26px;
  }
  .footer-top > p {
    font-size: 17px;
  }
  .footer-top .text-link {
    font-size: 12px;
  }
}
@media (max-width: 760px) {
  .expertise-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .expertise-tabs > button {
    padding-block: 19px;
    gap: 10px;
  }
  .expertise-tabs > button > strong {
    font-size: 23px;
  }
  .expertise-tabs > button[aria-selected="true"] {
    padding-block: 19px;
  }
  .expertise-note {
    display: none;
  }
  .expertise-image {
    height: 250px;
  }
  .expertise-copy {
    padding: 26px 22px;
  }
  .expertise-copy h3 {
    font-size: 28px;
  }
  .expertise-copy > p {
    font-size: 15px;
    min-height: 0;
  }
  .expertise-tags {
    margin-block: 20px;
  }
  .day-tabs {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 12px;
    scrollbar-width: thin;
    margin-bottom: 16px;
  }
  .day-tabs button {
    min-width: 94px;
    flex-shrink: 0;
  }
  .day-tabs time {
    font-size: 26px;
  }
  .day-panel {
    height: 630px;
    margin-inline: calc(-1 * var(--gutter));
    border-radius: 0;
  }
  .day-panel > img {
    object-position: var(--day-mobile-position, 60% center);
  }
  .day-overlay {
    background: linear-gradient(
      0deg,
      #22121cf2 0%,
      #22121b99 43%,
      #22121b1a 85%
    );
  }
  .day-caption {
    top: auto;
    bottom: 90px;
    left: var(--gutter);
    width: calc(100% - 2 * var(--gutter));
    max-width: 440px;
    transform: none;
  }
  .day-caption h3 {
    font-size: 40px;
    max-width: 320px;
    margin-block: 17px;
  }
  .day-caption > p:not(.eyebrow) {
    font-size: 14px;
    max-width: 330px;
  }
  .day-caption .text-link {
    margin-top: 14px;
  }
  .day-clock {
    top: 25px;
    right: var(--gutter);
    font-size: 70px;
  }
  .day-arrows {
    bottom: 22px;
    right: var(--gutter);
  }
  .day-arrows button {
    width: 43px;
    height: 43px;
  }
  .day-experience {
    padding-bottom: 0;
  }
  .midnight {
    height: 820px;
    min-height: 0;
    max-height: none;
  }
  .midnight-content {
    padding-inline: var(--gutter);
    width: 100%;
  }
  .midnight-content > .eyebrow {
    font-size: 10px;
    letter-spacing: 0.08em;
  }
  .midnight-time {
    font-size: 27vw;
    line-height: 1.6;
  }
  .midnight h2 {
    font-size: 45px;
  }
  .midnight-content > p:not(.eyebrow) {
    font-size: 14px;
    max-width: 300px;
  }
  .midnight-foot {
    font-size: 8px;
    bottom: 28px;
  }
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .project-card {
    min-height: 480px;
  }
  .project-card > div {
    inset-inline: 26px;
    bottom: 30px;
  }
  .project-card h3 {
    font-size: 39px;
  }
  .project-card p {
    font-size: 13px;
    max-width: 265px;
  }
  .project-card > div > span {
    font-size: 11px;
  }
  .project-graphic {
    font-size: 86px;
    padding: 32px 26px;
  }
  .projects-aside {
    text-align: left;
    font-size: 13px;
    line-height: 1.8;
  }
  .studio {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .studio-copy > p:not(.eyebrow) {
    max-width: 100%;
  }
  .studio-preview {
    transform: rotate(-1deg);
    margin: 0 -6px;
  }
  .preview-welcome {
    padding: 26px 22px;
  }
  .preview-welcome h3 {
    font-size: 26px;
  }
  .preview-grid > a {
    padding: 18px 14px;
  }
  .preview-grid strong {
    font-size: 13px;
  }
  .preview-grid > a > span:last-of-type {
    font-size: 11px;
  }
  .preview-toolbar {
    padding: 15px 20px;
  }
  .preview-toolbar > span:nth-child(2) {
    font-size: 8px;
  }
  .approach ol {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 35px;
  }
  .approach h3 {
    margin: 15px 0;
    font-size: 29px;
  }
  .approach li > p {
    font-size: 15px;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq-list summary {
    font-size: 14px;
    padding-block: 22px;
  }
  .quote {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .quote-intro {
    position: static;
    padding-top: 0;
  }
  .quote h2 {
    font-size: 53px;
    margin-block: 24px;
  }
  .quote-assurance {
    display: none;
  }
  .quote-card {
    padding: 30px 22px;
    min-height: 0;
    margin-inline: -7px;
  }
  .quote legend {
    font-size: 25px;
  }
  .event-choices label > span {
    padding: 17px 12px;
    min-height: 105px;
  }
  .event-choices b {
    font-size: 13px;
  }
  .event-choices small {
    font-size: 10px;
    max-width: 105px;
  }
  .event-choices i {
    display: none;
  }
  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
  }
  .field {
    font-size: 12px;
  }
  .service-choices {
    gap: 9px;
  }
  .service-choices label > span {
    font-size: 12px;
    padding: 12px;
    min-height: 66px;
  }
  .form-actions .button {
    font-size: 12px;
    gap: 15px;
    padding-inline: 16px;
  }
  .quote-result h3 {
    font-size: 38px;
  }
  .footer {
    padding-top: 45px;
  }
  .footer-top {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
  }
  .footer-top > p {
    font-size: 15px;
    margin-left: auto;
  }
  .footer-top > p em {
    font-size: 19px;
  }
  .footer-top .text-link {
    margin-top: 8px;
  }
  .footer-wordmark {
    font-size: 10vw;
    margin-block: 45px 32px;
  }
  .footer-bottom {
    font-size: 9px;
    gap: 18px 28px;
  }
  .footer-bottom > span:nth-child(2) {
    display: none;
  }
  .night-experience .experience-inner h2 {
    font-size: 32px;
  }
  .night-experience .experience-choice {
    font-size: 14px;
  }
}
@media (max-width: 370px) {
  .header-actions .button {
    max-width: 130px;
    font-size: 10px;
  }
  .header {
    gap: 10px;
  }
  .header-actions {
    gap: 4px;
  }
  .brand > span {
    font-size: 13px;
  }
  .brand-symbol {
    width: 30px;
    height: 30px;
  }
  .hero h1 {
    font-size: 14.9vw;
  }
  .quote-card {
    padding-inline: 17px;
  }
  .field-grid {
    grid-template-columns: 1fr;
  }
  .service-choices {
    grid-template-columns: 1fr;
  }
  .preview-welcome h3 {
    font-size: 23px;
  }
}
.brand-lockup {
  width: 152px;
  height: auto;
  display: block;
}
.footer .brand-lockup {
  width: 154px;
}
.hero h1 {
  line-height: 0.96;
}
.quote-card,
#project-form {
  scroll-margin-top: 110px;
}
.header-actions .button .button-label-long,
.header-actions .button .button-label-short,
.button .button-label-long,
.button .button-label-short {
  font-size: inherit;
  line-height: inherit;
  white-space: nowrap;
}
.button .button-label-short {
  display: none;
}
.expertise-copy > p,
.section-heading > p,
.approach li > p,
.faq-list details > p {
  font-size: 16px;
}
.hero-intro > p:nth-child(2) {
  font-size: 16px;
}
.field {
  font-size: 14px;
}
.field input,
.field select,
.field textarea {
  font-size: 16px;
}
.event-choices small {
  font-size: 12px;
}
.event-choices label > span {
  min-height: 116px;
}
.event-choices b,
.service-choices label > span {
  font-size: 14px;
}
.expertise-tags > span {
  font-size: 12px;
}
.project-card p {
  font-size: 14px;
}
.hero-disc {
  color: #28171e;
}
.project-card-brand {
  color: #28171e;
}
.project-card-brand p {
  color: #28171e;
}
.quote-progress > span:first-child {
  color: #b83723;
}
.preview-grid > a > span:last-of-type,
.studio-caption {
  font-size: 12px;
}
@media (max-width: 760px) {
  .brand-lockup {
    width: 122px;
  }
  .footer .brand-lockup {
    width: 132px;
  }
  .header-actions .button {
    max-width: 160px;
    min-height: 44px;
    font-size: 12px;
    gap: 16px;
  }
  .button .button-label-long {
    display: none;
  }
  .button .button-label-short {
    display: inline;
  }
  .hero h1 {
    line-height: 0.98;
  }
  .quote-card,
  #project-form {
    scroll-margin-top: 94px;
  }
}
@media (max-width: 370px) {
  .brand-lockup {
    width: 105px;
  }
  .quote-intro {
    min-width: 0;
  }
  .quote h2 {
    font-size: 46px;
  }
  .studio-preview {
    margin-inline: 0;
    transform: none;
  }
}
@media (max-width: 760px) {
  body {
    padding-bottom: 76px;
  }
  .hero-actions,
  .hero-reassurance {
    grid-column: 1 / -1;
  }
  .hero-actions {
    margin-top: 8px;
  }
  .hero-actions .button {
    width: 100%;
  }
  .hero-reassurance {
    margin-top: 0;
    font-size: 12px;
  }
  .hero-bottom ul {
    gap: 8px 18px;
  }
  .hero-bottom li {
    font-size: 11px;
  }
  .manifesto-proof {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }
  .manifesto-proof article,
  .manifesto-proof article + article {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .manifesto-proof article:last-child {
    border-bottom: 0;
  }
  .manifesto-proof span {
    margin-bottom: 12px;
  }
  .quote-reassurance {
    margin-top: 28px;
  }
  .quote-direct {
    margin-top: 24px;
  }
  .mobile-conversion {
    position: fixed;
    z-index: 46;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 66px;
    padding: 10px 10px 10px 15px;
    color: white;
    background: rgba(40, 23, 30, 0.97);
    border: 1px solid #ffffff2c;
    border-radius: 5px;
    box-shadow: 0 15px 40px #28171e42;
    backdrop-filter: blur(14px);
    transition: opacity 0.2s, transform 0.2s;
  }
  .mobile-conversion > span {
    display: grid;
    gap: 3px;
    min-width: 0;
  }
  .mobile-conversion strong {
    font-size: 12px;
    line-height: 1.2;
  }
  .mobile-conversion small {
    overflow: hidden;
    color: #d8bec6;
    font-size: 10px;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .mobile-conversion a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 44px;
    flex: 0 0 auto;
    padding: 10px 13px;
    color: var(--ink);
    background: white;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 700;
  }
  .mobile-conversion b {
    color: var(--accent);
    font-size: 17px;
    font-weight: 400;
  }
  .mobile-conversion.is-hidden {
    pointer-events: none;
    opacity: 0;
    transform: translateY(14px);
  }
  .menu-open .mobile-conversion {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal-ready {
    opacity: 1;
    transform: none;
  }
}

/* CRO focus: one cinematic promise, four useful chapters, one decision. */
.cro-focus .hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: calc(100svh - 88px);
  overflow: hidden;
  padding: 30px var(--gutter) 38px;
  color: white;
  background: var(--deep-night);
}
.cro-focus .hero-picture {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}
.cro-focus .hero-picture > img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-position: center 48%;
}
.cro-focus .hero-picture-shade {
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(25, 8, 14, 0.76) 0%, rgba(25, 8, 14, 0.36) 52%, rgba(25, 8, 14, 0.2) 100%),
    linear-gradient(0deg, rgba(25, 8, 14, 0.72) 0%, transparent 58%);
}
.cro-focus .hero-top,
.cro-focus .hero-heading {
  position: relative;
  z-index: 2;
}
.cro-focus .hero-top > p:last-child,
.cro-focus .hero-intro > p:first-child {
  color: white;
  text-shadow: 0 2px 20px rgba(20, 5, 10, 0.34);
}
.cro-focus .hero-heading {
  grid-template-columns: 1.55fr 0.75fr;
  align-items: end;
  gap: clamp(45px, 7vw, 120px);
  min-height: 0;
  padding: 0 0 74px;
}
.cro-focus .hero h1 {
  color: white;
  font-size: clamp(82px, 10.4vw, 172px);
  line-height: 0.88;
  text-shadow: 0 5px 28px rgba(20, 5, 10, 0.25);
}
.cro-focus .hero-intro {
  align-self: end;
  max-width: 430px;
  padding: 0;
}
.cro-focus .hero-intro > p:first-child {
  margin: 0 0 26px;
  font-size: clamp(20px, 1.7vw, 27px);
  font-weight: 550;
  line-height: 1.4;
  letter-spacing: -0.035em;
}
.cro-focus .hero-actions {
  gap: 18px;
}
.cro-focus .hero-actions .button {
  border-color: white;
  color: var(--ink);
  background: white;
}
.cro-focus .hero-actions .button:hover {
  color: white;
  background: var(--ink);
}
.cro-focus .hero-actions .text-link {
  border-color: white;
  color: white;
}
.cro-focus .picture-caption {
  z-index: 2;
  bottom: 26px;
  inset-inline: var(--gutter);
}
.cro-focus .hero-disc,
.cro-focus .quote-assurance {
  display: none;
}
.cro-focus .quote-reassurance p {
  padding-block: 12px;
}
.cro-focus .quote-reassurance span {
  display: none;
}

@media (max-width: 760px) {
  .cro-focus .hero {
    min-height: calc(100svh - 76px);
    padding: 22px var(--gutter) 28px;
  }
  .cro-focus .hero-heading {
    grid-template-columns: 1fr;
    align-content: end;
    gap: 24px;
    padding: 35px 0 20px;
  }
  .cro-focus .hero h1 {
    font-size: clamp(62px, 18vw, 88px);
    line-height: 0.9;
  }
  .cro-focus .hero-intro {
    max-width: 100%;
  }
  .cro-focus .hero-intro > p:first-child {
    margin-bottom: 20px;
    font-size: 19px;
    line-height: 1.42;
  }
  .cro-focus .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .cro-focus .hero-actions .button {
    width: 100%;
    min-height: 52px;
  }
  .cro-focus .hero-intro .text-link {
    display: inline-flex;
    width: 100%;
    font-size: 12px;
  }
  .cro-focus .picture-caption {
    display: none;
  }
  .cro-focus .hero-picture > img {
    object-position: 50% center;
  }
}

@media (max-width: 370px) {
  .cro-focus .hero-actions {
    grid-template-columns: 1fr;
  }
  .cro-focus .hero-actions .button,
  .cro-focus .hero-actions .text-link {
    width: 100%;
  }
}

/* ——— La demande courte, juste après le premier écran ——— */
.intake {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 5vw, 84px);
  align-items: start;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.intake-copy h2 {
  margin: 14px 0 20px;
  font: 500 clamp(38px, 4.4vw, 62px) / 1.02 var(--serif);
  letter-spacing: -0.035em;
}
.intake-copy h2 em {
  font-style: italic;
}
.intake-copy > p {
  max-width: 34ch;
  margin: 0;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.7;
}
.intake-direct {
  margin-top: 28px !important;
  font-size: 14px;
}
.intake-direct a {
  border-bottom: 1px solid currentColor;
  color: var(--candle);
  font-weight: 600;
}
.intake-form[hidden],
.intake-result[hidden] {
  display: none;
}
.intake-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 26px;
}
.intake-field {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 600;
}
.intake-field.wide {
  grid-column: 1 / -1;
}
.intake-field small {
  color: var(--ink-muted);
  font-weight: 400;
}
.intake-field input {
  width: 100%;
  min-height: 52px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
}
.intake-field input::placeholder {
  color: #b3a3a7;
  font-weight: 400;
}
.intake-field input:focus {
  border-bottom-color: var(--candle);
  outline: none;
}
.intake-services {
  margin: 30px 0 0;
  padding: 0;
  border: 0;
}
.intake-services legend {
  padding: 0;
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 600;
}
.intake-services label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 12px 10px 0 0;
  padding: 10px 15px;
  border: 1px solid var(--line);
  cursor: pointer;
  font-size: 14px;
  transition:
    border-color 160ms ease,
    background 160ms ease;
}
.intake-services label:hover {
  border-color: var(--candle);
}
.intake-services input {
  width: 15px;
  height: 15px;
  accent-color: var(--candle);
}
.intake-services label:has(input:checked) {
  border-color: var(--ink);
  background: var(--blush);
}
.intake-error {
  margin: 22px 0 0;
  color: var(--candle);
  font-size: 14px;
  font-weight: 600;
}
.intake-error[hidden] {
  display: none;
}
.intake-form .button {
  margin-top: 26px;
  width: 100%;
  max-width: 340px;
}
.intake-note {
  margin: 16px 0 0;
  color: var(--ink-muted);
  font-size: 13px;
}
.intake-result {
  padding: clamp(26px, 3vw, 40px);
  background: var(--blush);
}
.intake-result h3 {
  margin: 0 0 12px;
  font: 500 clamp(26px, 2.6vw, 34px) / 1.1 var(--serif);
}
.intake-result p {
  max-width: 42ch;
  margin: 0;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.7;
}
.intake-result-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  margin: 26px 0 20px;
}

@media (max-width: 900px) {
  .intake {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }
}
@media (max-width: 560px) {
  .intake-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .intake-form .button {
    max-width: none;
  }
  .intake-services label {
    margin-right: 8px;
    padding: 9px 13px;
    font-size: 13px;
  }
}

/* ——— Dernière porte, après les questions ——— */
.closing {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding-block: clamp(70px, 8vw, 120px);
  border-top: 1px solid var(--line);
  text-align: center;
}
.closing h2 {
  margin: 0;
  font: 500 clamp(34px, 4vw, 56px) / 1.05 var(--serif);
  letter-spacing: -0.035em;
}
.closing h2 em {
  font-style: italic;
}
.closing p {
  max-width: 34ch;
  margin: 0;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.7;
}
.closing .button {
  margin-top: 10px;
}

/* ——— Avis déposés par les mariés ——— */
.avis {
  background: var(--white);
  border-top: 1px solid var(--line);
}
.avis-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
  margin-top: 46px;
}
.avis-card {
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 3vw, 40px);
  border: 1px solid var(--line);
  background: var(--paper);
}
.avis-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 15px;
  letter-spacing: 0.12em;
}
.avis-note b {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}
.avis-card h3 {
  margin: 0 0 14px;
  font: 500 clamp(21px, 2vw, 27px) / 1.25 var(--serif);
  letter-spacing: -0.02em;
}
.avis-card blockquote {
  flex: 1;
  margin: 0;
}
.avis-card blockquote p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.75;
}
.avis-card footer {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 12px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
.avis-card footer span {
  color: var(--ink-muted);
  font-size: 13px;
}

@media (max-width: 760px) {
  .avis-list {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Le premier écran n'a plus qu'une ligne de contexte : elle reste à droite. */
.hero-top {
  justify-content: flex-end;
}

/* ——— Rythme clair et sombre, une section sur deux ——— */
.studio {
  background: var(--white);
}
.expertises {
  background: var(--blush);
}
.intake {
  background: var(--white);
}
.avis {
  background: var(--blush);
}
.faq {
  background: var(--white);
}
.closing {
  background: var(--blush);
  border-top: 0;
}
.avis {
  border-top: 0;
}
.intake {
  border-bottom: 0;
}

/* ——— En-tête : le mot-symbole prend le centre ——— */
@media (min-width: 761px) {
  .header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
  .header .brand {
    order: 2;
    justify-self: center;
  }
  .header .main-nav {
    order: 1;
    justify-self: start;
  }
  .header .header-actions {
    order: 3;
    justify-self: end;
  }
  .brand-lockup {
    width: 178px;
  }
}

/* Sur téléphone, le logo respire davantage. */
@media (max-width: 760px) {
  .brand-lockup {
    width: 156px;
  }
}
@media (max-width: 370px) {
  .brand-lockup {
    width: 132px;
  }
}

/* ——— Les trois associés ——— */
.equipe {
  background: var(--white);
}
.equipe-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 34px);
  margin-top: 46px;
}
.equipe-card {
  display: grid;
  gap: 0;
}
.equipe-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.equipe-mark {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  background: var(--blush);
}
.equipe-mark img {
  width: 78px;
  height: 78px;
  aspect-ratio: auto;
  opacity: 0.42;
}
.equipe-card h3 {
  margin: 20px 0 4px;
  font: 500 clamp(23px, 2.2vw, 30px) / 1.15 var(--serif);
  letter-spacing: -0.02em;
}
.equipe-card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 14px;
}

/* Le rythme des fonds reprend après la section équipe. */
.faq {
  background: var(--blush);
}
.closing {
  background: var(--white);
}

@media (max-width: 760px) {
  .equipe-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 430px) {
  .equipe-list {
    grid-template-columns: minmax(0, 1fr);
    max-width: 320px;
  }
}

/* Les trois associés tiennent en une rangée discrète, pas en pleine largeur. */
.equipe-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 560px;
  gap: clamp(14px, 1.8vw, 24px);
  margin-top: 40px;
}
.equipe-card h3 {
  margin: 14px 0 2px;
  font-size: clamp(18px, 1.5vw, 21px);
}
.equipe-card p {
  font-size: 13px;
}
.equipe-mark img {
  width: 46px;
  height: 46px;
}

@media (max-width: 760px) {
  .equipe-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
  }
}
@media (max-width: 430px) {
  .equipe-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
    gap: 10px;
  }
  .equipe-card h3 {
    margin-top: 10px;
    font-size: 16px;
  }
  .equipe-card p {
    font-size: 12px;
  }
}

/* Le médaillon d'attente ne doit pas imposer sa taille à la grille. */
.equipe-card,
.equipe-mark {
  min-width: 0;
}
.equipe-mark {
  width: 100%;
}

/* Les cartes de la rangée s'alignent en haut : les portraits restent carrés
   au lieu de s'étirer sur la hauteur de la carte la plus haute. */
.equipe-card {
  align-content: start;
}
.equipe-card > img,
.equipe-card > .equipe-mark {
  align-self: start;
  height: auto;
  aspect-ratio: 1;
}

/* ——— La soirée : une section sombre, comme la scène ——— */
.nuit {
  background: var(--deep-night);
  color: #fff;
}
.nuit .eyebrow {
  color: var(--accent);
}
.nuit h2 {
  color: #fff;
}
.nuit .section-heading > p {
  color: rgba(255, 255, 255, 0.62);
}
.nuit-grille {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 48px;
}
.nuit-grille figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #1a0f14;
}
.nuit-grille img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4 / 3;
  transition: transform 600ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.nuit-grille figure:hover img {
  transform: scale(1.04);
}
.nuit-grille .grand {
  grid-column: span 2;
  grid-row: span 2;
}
.nuit-grille .grand img {
  aspect-ratio: 1;
}
.nuit-grille .haut {
  grid-row: span 2;
}
.nuit-grille .haut img {
  aspect-ratio: 2 / 3;
}
.nuit-grille .bande {
  grid-column: 1 / -1;
}
.nuit-grille .bande img {
  aspect-ratio: 4 / 1;
}

@media (max-width: 900px) {
  .nuit-grille {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .nuit-grille .grand {
    grid-column: span 2;
    grid-row: auto;
  }
  .nuit-grille .grand img {
    aspect-ratio: 16 / 10;
  }
  .nuit-grille .haut {
    grid-row: auto;
  }
  .nuit-grille .haut img {
    aspect-ratio: 4 / 5;
  }
  .nuit-grille .bande img {
    aspect-ratio: 3 / 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .nuit-grille img {
    transition: none;
  }
  .nuit-grille figure:hover img {
    transform: none;
  }
}

/* Rythme des fonds : la galerie sombre coupe la page en deux. */
.expertises { background: var(--white); }
.intake { background: var(--white); }
.avis { background: var(--blush); }
.equipe { background: var(--white); }
.studio { background: var(--blush); }
.faq { background: var(--white); }
.closing { background: var(--blush); }

/* Les tuiles de tailles différentes laissent des trous : on les comble. */
.nuit-grille {
  grid-auto-flow: dense;
  grid-auto-rows: 1fr;
}
