:root {
  --cream: #fbf7f3;
  --paper: #f4ede4;
  --ink: #171413;
  --charcoal: #262627;
  --taupe: #9b8d7c;
  --line: rgba(38, 38, 39, 0.16);
  --gold: #c6a25f;
  --gold-soft: rgba(198, 162, 95, 0.18);
  --blush: #d95a56;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  background: var(--cream);
}
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overscroll-behavior-y: none;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
::selection { background: var(--gold); color: var(--ink); }
.skip-link {
  position: fixed;
  top: -4rem;
  left: 1rem;
  z-index: 100;
  padding: .75rem 1rem;
  background: var(--cream);
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: 1.25rem;
  min-height: 78px;
  padding: .65rem 4.6vw;
  color: var(--ink);
  background: rgba(251, 247, 243, .82);
  border-bottom: 1px solid rgba(38,38,39,.1);
  backdrop-filter: blur(16px);
  transition: .25s ease;
}
.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(251, 247, 243, .95);
}
.brand-lockup img {
  width: clamp(132px, 12vw, 174px);
  height: auto;
}
.desktop-nav {
  justify-self: center;
  display: flex;
  gap: clamp(.9rem, 1.8vw, 2rem);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.desktop-nav a,
.nav-cta {
  color: rgba(23,20,19,.72);
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.desktop-nav a:hover,
.nav-cta:hover { color: var(--ink); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  max-width: 250px;
  padding: .7rem 1rem;
  border: 1px solid rgba(198,162,95,.72);
  background: rgba(251,247,243,.4);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}
.language-picker {
  position: relative;
  justify-self: end;
}
.language-current,
.lang-button {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  min-height: 38px;
  border: 1px solid rgba(198,162,95,.48);
  background: rgba(251,247,243,.76);
  color: rgba(23,20,19,.72);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}
.language-current {
  padding: .45rem .72rem;
}
.language-chevron {
  color: var(--gold);
  font-size: 1rem;
  line-height: 1;
}
.language-menu {
  position: absolute;
  top: calc(100% + .5rem);
  right: 0;
  z-index: 80;
  display: grid;
  gap: .35rem;
  min-width: 170px;
  padding: .45rem;
  border: 1px solid rgba(198,162,95,.42);
  background: rgba(251,247,243,.97);
  box-shadow: 0 18px 45px rgba(38,38,39,.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease;
}
.language-picker.open .language-menu,
.language-picker:focus-within .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.lang-button {
  width: 100%;
  justify-content: flex-start;
  padding: .55rem .65rem;
  border-color: transparent;
  background: transparent;
}
.lang-button:hover,
.lang-button.active {
  color: var(--ink);
  background: rgba(198,162,95,.14);
}
.flag {
  width: 18px;
  height: 12px;
  display: inline-block;
  border: 1px solid rgba(38,38,39,.18);
  box-shadow: 0 1px 0 rgba(255,255,255,.5) inset;
}
.flag-nl { background: linear-gradient(#ae1c28 0 33%, #fff 33% 66%, #21468b 66%); }
.flag-en {
  position: relative;
  overflow: hidden;
  background: #012169;
}
.flag-en::before,
.flag-en::after {
  content: "";
  position: absolute;
  inset: 0;
}
.flag-en::before {
  background:
    linear-gradient(33deg, transparent 0 43%, #fff 43% 52%, transparent 52%),
    linear-gradient(147deg, transparent 0 43%, #fff 43% 52%, transparent 52%),
    linear-gradient(33deg, transparent 0 47%, #c8102e 47% 51%, transparent 51%),
    linear-gradient(147deg, transparent 0 47%, #c8102e 47% 51%, transparent 51%);
}
.flag-en::after {
  background:
    linear-gradient(90deg, transparent 0 39%, #fff 39% 61%, transparent 61%),
    linear-gradient(0deg, transparent 0 30%, #fff 30% 70%, transparent 70%),
    linear-gradient(90deg, transparent 0 44%, #c8102e 44% 56%, transparent 56%),
    linear-gradient(0deg, transparent 0 39%, #c8102e 39% 61%, transparent 61%);
}
.flag-fr { background: linear-gradient(90deg, #0055a4 0 33%, #fff 33% 66%, #ef4135 66%); }
.flag-de { background: linear-gradient(#000 0 33%, #dd0000 33% 66%, #ffce00 66%); }
.menu-toggle,
.mobile-nav { display: none; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 6rem 5vw 3rem;
  color: var(--ink);
  overflow: hidden;
  background: var(--cream);
}
.hero-video {
  position: absolute;
  inset: 0;
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(.98) brightness(1.05);
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: linear-gradient(180deg, rgba(251,247,243,.36), rgba(251,247,243,.16) 45%, rgba(251,247,243,.38));
}
.hero-logo-only {
  width: min(920px, 78vw);
  filter: drop-shadow(0 16px 38px rgba(23,20,19,.22));
}
.kicker,
.price-grid article > p {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}
h1 { font-size: clamp(3.1rem, 7vw, 7.6rem); }
h2 { font-size: clamp(2.7rem, 5.4vw, 6rem); }
h3 { font-size: clamp(1.65rem, 2.5vw, 2.8rem); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .85rem 1.2rem;
  border: 1px solid currentColor;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.25;
  text-transform: uppercase;
}
.button.primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.button.ghost {
  color: var(--ink);
  background: rgba(251,247,243,.5);
  border-color: rgba(198,162,95,.72);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.2rem;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  max-width: 1180px;
  margin: 0 auto;
  padding: 4.6rem 5vw 5rem;
  background: var(--cream);
}
.reviews article {
  min-height: 180px;
  padding: 0;
  border-right: 0;
}
.reviews p {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(1.02rem, 1.28vw, 1.24rem);
  font-style: italic;
  line-height: 1.5;
}
.reviews span {
  display: block;
  margin-top: 1.25rem;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.intro-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: 2.2rem;
  padding: 7.2rem 5vw 7.6rem;
  text-align: center;
  background: linear-gradient(180deg, var(--paper) 0, var(--cream) 38%);
}
.intro-text {
  display: grid;
  justify-items: center;
  gap: 1rem;
  width: min(980px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.intro-copy h1 { width: min(980px, 100%); }
.intro-copy p:not(.kicker) {
  width: min(720px, 100%);
  margin: 0;
  color: rgba(23,20,19,.72);
  font-size: clamp(1.04rem, 1.3vw, 1.24rem);
}
.intro-image {
  width: min(680px, 82vw);
  margin: .6rem auto 0;
  padding: .65rem;
  border: 1px solid var(--line);
  background: rgba(251,247,243,.8);
}
.intro-image img {
  width: 100%;
  height: clamp(260px, 38vw, 430px);
  object-fit: cover;
}

.teasers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .28rem;
  width: calc(100% - 10vw);
  max-width: 1320px;
  margin: 0 auto;
  padding: .28rem;
  background: var(--gold);
  scroll-margin-top: 88px;
}
.teasers article {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background: var(--charcoal);
}
.teasers video {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  filter: saturate(.96) contrast(1.03) brightness(.88);
}
.teasers button {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  color: #fff;
  background: rgba(23,20,19,.12);
  border: 1px solid var(--gold);
  padding: .85rem 1.2rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(6px);
}

.photo-carousel {
  position: relative;
  padding: 7.5rem 5vw;
  overflow: hidden;
  background: var(--cream);
}
.carousel-stage {
  position: relative;
  height: clamp(420px, 52vw, 680px);
  max-width: 1180px;
  margin: 0 auto;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  width: min(760px, 74vw);
  margin: 0 auto;
  opacity: 0;
  transform: scale(.88);
  transition: opacity .35s ease, transform .35s ease, filter .35s ease;
  pointer-events: none;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
}
.carousel-slide.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  z-index: 2;
  pointer-events: auto;
}
.carousel-slide.prev,
.carousel-slide.next {
  opacity: .34;
  z-index: 1;
  filter: saturate(.85);
}
.carousel-slide.prev {
  transform: translateX(-56%) scale(.86);
  mask-image: linear-gradient(90deg, transparent, #000 36%, #000);
}
.carousel-slide.next {
  transform: translateX(56%) scale(.86);
  mask-image: linear-gradient(90deg, #000, #000 64%, transparent);
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  background: rgba(251,247,243,.82);
  color: var(--ink);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
}
.carousel-prev { left: max(1rem, 5vw); }
.carousel-next { right: max(1rem, 5vw); }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: .55rem;
  margin-top: 1.3rem;
}
.carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}
.carousel-dots button.active { background: var(--gold); }

.work-grid,
.collective {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 5vw;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 8.5rem 5vw;
  background: var(--cream);
}
.section-copy p:not(.kicker) {
  max-width: 760px;
  color: rgba(23,20,19,.72);
  font-size: 1.05rem;
}
.editorial-stack {
  display: grid;
  grid-template-columns: .78fr 1fr;
  gap: .65rem;
  align-items: end;
}
.editorial-stack img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}
.editorial-stack img:first-child { height: 430px; }

.approach,
.pricing {
  padding: 8rem 5vw;
  background: var(--paper);
}
.section-head {
  display: block;
}
.section-head p:not(.kicker) {
  max-width: 650px;
  color: rgba(23,20,19,.72);
  font-size: 1.05rem;
}
.approach-layout {
  display: grid;
  grid-template-columns: .9fr .72fr;
  gap: 5vw;
  align-items: center;
}
.approach-photo {
  margin: 0;
  padding: .55rem;
  border: 1px solid var(--line);
  background: var(--cream);
}
.approach-photo img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.cta-band {
  display: grid;
  grid-template-columns: .85fr .55fr;
  align-items: center;
  gap: 5vw;
  max-width: 1180px;
  margin: 0 auto;
  padding: 6.4rem 5vw;
  text-align: left;
  background: #fffaf5;
}
.cta-band p {
  max-width: 620px;
  margin: 1rem 0 1.4rem;
  color: rgba(23,20,19,.72);
}
.cta-band img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.team-frame {
  margin: 0;
  padding: .7rem;
  border: 1px solid var(--line);
  background: var(--paper);
}
.team-frame img {
  width: 100%;
  min-height: 540px;
  object-fit: cover;
}

.makers {
  padding: 8rem 5vw;
  background: var(--paper);
}
.makers .section-head {
  margin-bottom: 3rem;
}
.maker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.maker-grid article {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  border: 1px solid var(--line);
  background: var(--cream);
}
.maker-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(.08) contrast(1.03);
}
.maker-grid article > div { padding: 1.45rem; }
.maker-grid article p:first-child {
  margin: 0 0 .8rem;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.maker-grid h3 { font-size: clamp(2rem, 3vw, 3rem); }
.maker-grid article p:last-child {
  margin: 1rem 0 0;
  color: rgba(23,20,19,.68);
}

.photobooth {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: 5vw;
  align-items: center;
  padding: 8rem 5vw;
  color: var(--ink);
  background: #f7f1ea;
}
.photobooth-copy p:not(.kicker) {
  max-width: 650px;
  color: rgba(23,20,19,.72);
}
.photobooth-price {
  display: grid;
  gap: .65rem;
  margin-top: 2rem;
  padding: 1.2rem;
  border: 1px solid rgba(198,162,95,.4);
  background: rgba(251,247,243,.72);
}
.photobooth-price span {
  font-family: var(--serif);
  font-size: 2rem;
}
.photobooth-price strong {
  color: var(--ink);
  font-size: .9rem;
  font-style: italic;
  font-weight: 800;
  line-height: 1.45;
}
.photobooth img {
  width: 100%;
  max-height: 640px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.pricing-head {
  max-width: 1040px;
  margin: 0 auto 3.2rem;
  text-align: center;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: var(--cream);
}
.price-grid article {
  padding: 2rem 1.5rem 2.4rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}
.price-grid article:nth-child(4n) { border-right: 0; }
.price-grid article:last-child { border-bottom: 0; }
.hearts {
  min-height: 1.6rem;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.62rem;
  letter-spacing: .08em;
  line-height: 1;
  text-align: center;
}
.price-grid article > p {
  margin: .9rem 0 .35rem;
  color: var(--ink);
  text-align: center;
}
.price-grid h3 {
  min-height: 2.8rem;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}
.price-grid strong {
  display: block;
  margin: 1.1rem 0;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
}
.price-grid ul {
  margin: 0;
  padding-left: 1.15rem;
  color: rgba(23,20,19,.72);
  font-size: .92rem;
}
.price-grid li + li { margin-top: .65rem; }
.price-grid .combo-card {
  grid-column: span 1;
  min-height: 230px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 2rem;
  text-align: center;
  background: #fffaf5;
}
.price-grid .combo-card h3 {
  margin-top: .9rem;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}
.price-grid .combo-card strong {
  display: block;
  margin-top: 1rem;
  color: var(--ink);
  font-size: 1.05rem;
  text-transform: uppercase;
}
.featured-discount {
  border-color: rgba(198,162,95,.48) !important;
  background: #e9dccd !important;
}

.contact {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 5vw;
  align-items: start;
  padding: 8rem 5vw;
  color: var(--ink);
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.contact p {
  max-width: 620px;
  color: rgba(23,20,19,.72);
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  background: var(--paper);
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  color: rgba(23,20,19,.72);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.contact-form .wide { grid-column: 1 / -1; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(38,38,39,.22);
  background: rgba(251,247,243,.52);
  color: var(--ink);
  padding: .85rem;
  font: inherit;
  font-size: 1rem;
  text-transform: none;
  outline: 0;
}
.contact-form textarea {
  min-height: 150px;
  resize: vertical;
  border: 1px solid rgba(38,38,39,.18);
}
.contact-form button {
  grid-column: 1 / -1;
  justify-self: start;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  padding: .9rem 1.2rem;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
}
.form-status {
  display: none;
  grid-column: 1 / -1;
  margin: .25rem 0 0;
  color: rgba(23,20,19,.72);
  font-size: .9rem;
  font-weight: 700;
}
.form-status.visible { display: block; }
.footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 2rem;
  align-items: center;
  padding: 2.4rem 5vw;
  color: rgba(23,20,19,.72);
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.footer img { width: 260px; }
.footer p { margin: 0; }
.footer p:last-child {
  display: flex;
  gap: 1rem;
  align-items: center;
  white-space: nowrap;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 5vw;
  background: rgba(251,247,243,.92);
}
.video-modal.open { display: grid; }
.video-modal button {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  color: var(--ink);
  background: rgba(251,247,243,.72);
  border: 1px solid rgba(38,38,39,.28);
  padding: .8rem 1rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  cursor: pointer;
}
.video-modal video {
  width: min(1100px, 100%);
  max-height: 80vh;
  background: var(--cream);
  box-shadow: 0 20px 70px rgba(38,38,39,.18);
}
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1240px) {
  .desktop-nav,
  .nav-cta { display: none; }
  .site-header { grid-template-columns: auto 1fr auto auto; }
  .language-picker { justify-self: end; }
  .menu-toggle {
    justify-self: end;
    display: inline-grid;
    gap: .36rem;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid rgba(38,38,39,.24);
    background: rgba(251,247,243,.5);
  }
  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
  }
  .mobile-nav {
    position: fixed;
    inset: 78px 0 auto;
    z-index: 45;
    display: none;
    grid-template-columns: 1fr;
    padding: 1rem 5vw 1.4rem;
    color: var(--ink);
    background: rgba(251,247,243,.98);
    border-bottom: 1px solid rgba(38,38,39,.12);
  }
  .mobile-nav.open { display: grid; }
  .mobile-nav a {
    padding: .75rem 0;
    border-bottom: 1px solid rgba(38,38,39,.12);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .78rem;
  }
  .reviews,
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews { gap: 2rem; }
  .teasers { grid-template-columns: 1fr; }
  .price-grid article:nth-child(2n) { border-right: 0; }
  .price-grid article:nth-child(-n+8) { border-bottom: 1px solid var(--line); }
  .price-grid .combo-card { grid-column: span 1; }
  .work-grid,
  .collective,
  .cta-band,
  .photobooth,
  .contact,
  .approach-layout {
    grid-template-columns: 1fr;
  }
  .maker-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .site-header {
    gap: .75rem;
    padding-inline: 4vw;
  }
  .brand-lockup img { width: 122px; }
  .language-current { min-height: 38px; padding: .35rem .55rem; }
  .language-current span:not(.flag):not(.language-chevron) { display: none; }
  .language-menu { right: -56px; }
  .lang-button { font-size: .64rem; }
  .flag {
    width: 15px;
    height: 10px;
  }
  h1 { font-size: clamp(3.05rem, 15vw, 4.9rem); }
  h2 { font-size: clamp(2.5rem, 13vw, 3.7rem); }
  .hero {
    min-height: 82svh;
    padding-top: 6rem;
  }
  .hero-logo-only {
    width: min(560px, 86vw);
  }
  .reviews,
  .teasers,
  .price-grid,
  .editorial-stack,
  .footer,
  .contact-form {
    grid-template-columns: 1fr;
  }
  .reviews article,
  .price-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .reviews article:last-child,
  .price-grid article:last-child {
    border-bottom: 0;
  }
  .intro-copy,
  .work-grid,
  .approach,
  .cta-band,
  .collective,
  .makers,
  .photobooth,
  .pricing,
  .contact {
    padding: 5.5rem 5vw;
  }
  .teasers article,
  .teasers video {
    min-height: 360px;
  }
  .teasers {
    width: calc(100% - 8vw);
  }
  .photo-carousel { padding: 5.5rem 0; }
  .carousel-stage {
    height: 420px;
  }
  .carousel-slide {
    width: min(300px, 76vw);
  }
  .carousel-slide.prev {
    transform: translateX(-48%) scale(.84);
  }
  .carousel-slide.next {
    transform: translateX(48%) scale(.84);
  }
  .editorial-stack img,
  .editorial-stack img:first-child {
    height: 380px;
  }
  .team-frame img {
    min-height: 420px;
  }
  .contact-form .wide,
  .contact-form button {
    grid-column: auto;
  }
  .footer {
    justify-items: start;
    gap: .8rem;
  }
  .footer p:last-child {
    flex-wrap: wrap;
    white-space: normal;
  }
}
