/* ==========================================================================
   Patricia Redulla — site styles
   You never need to edit this file. All words, videos and photos live in
   content.json. Colors are listed right below if you ever want them.
   ========================================================================== */

:root {
  --ivory: #F7F1E8;
  --ivory-deep: #EFE5D8;
  --sand: #E6D7C8;
  --blush: #E4CFC9;
  --taupe: #D9C3B4;
  --line: #E3D6C6;
  --line-strong: #C9B6A6;
  --rose: #A95770;
  --rose-deep: #8E4459;
  --rose-light: #E8C7CF;
  --choc: #4A302D;
  --choc-deep: #3A2523;
  --ink-soft: #7A5A50;
  --eyebrow: #8C5A4F;

  --serif: 'Cormorant Garamond', 'Cormorant', Georgia, 'Times New Roman', serif;
  --sans: 'Jost', 'Futura', 'Avenir Next', 'Helvetica Neue', system-ui, sans-serif;

  --gutter: clamp(20px, 5vw, 120px);
  --section: clamp(72px, 10vw, 140px);
  --radius: 6px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--choc);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
em { font-style: italic; color: var(--rose); }

:focus-visible { outline: 2px solid var(--rose); outline-offset: 3px; border-radius: 2px; }
.contact :focus-visible, .ribbon :focus-visible, .footer :focus-visible { outline-color: var(--rose-light); }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: var(--choc); color: var(--ivory); padding: 12px 18px; border-radius: 999px;
  text-decoration: none; font-size: 14px; transition: top .2s;
}
.skip-link:focus { top: 16px; }

.container { width: 100%; max-width: 1440px; margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

/* ---------- type ---------- */
.eyebrow {
  font-family: var(--sans); font-weight: 400;
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--eyebrow); margin-bottom: 18px;
}
.eyebrow--light { color: var(--rose-light); }
.display {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(46px, 7vw, 96px); line-height: .98; letter-spacing: -.01em;
}
.h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(40px, 5vw, 66px); line-height: 1.02; letter-spacing: -.005em;
}
.h2--sub { font-size: clamp(32px, 3.6vw, 48px); margin-top: clamp(56px, 7vw, 96px); }
.lede { font-size: clamp(17px, 1.4vw, 19px); line-height: 1.7; max-width: 34em; }
.label { font-family: var(--sans); font-weight: 400; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--eyebrow); }
.small { font-size: 14px; }
.muted { color: var(--ink-soft); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 32px; border-radius: 999px;
  font-family: var(--sans); font-weight: 400; font-size: 13px; letter-spacing: .16em; text-transform: uppercase;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.btn svg { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn--sm { min-height: 44px; padding: 0 22px; font-size: 12px; }
.btn--big { min-height: 60px; padding: 0 40px; font-size: 14px; }
.btn--rose { background: var(--rose); color: #fff; }
.btn--rose:hover { background: var(--rose-deep); color: #fff; }
.btn--line { border-color: var(--choc); color: var(--choc); }
.btn--line:hover { background: var(--choc); color: var(--ivory); }
.btn--light { background: var(--ivory); color: var(--choc); }
.btn--light:hover { background: #fff; color: var(--choc); }
.btn--ghost-light { border-color: rgba(247, 241, 232, .6); color: var(--ivory); }
.btn--ghost-light:hover { background: var(--ivory); color: var(--choc); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 241, 232, .9);
  -webkit-backdrop-filter: saturate(140%) blur(10px); backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease);
}
.nav.is-scrolled { border-bottom-color: var(--line); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 76px; }
.nav__brand { font-family: var(--serif); font-style: italic; font-size: 26px; text-decoration: none; white-space: nowrap; }
.nav__links { display: flex; gap: clamp(18px, 2.4vw, 40px); }
.nav__links a:not(.btn) {
  font-weight: 400; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; text-decoration: none;
  padding: 10px 0; position: relative;
}
.nav__links a:not(.btn)::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 4px; height: 1px; background: var(--rose);
  transition: right .35s var(--ease);
}
.nav__links a:not(.btn):hover::after, .nav__links a.is-active::after { right: 0; }
.nav__links-cta { display: none; }
.nav__toggle {
  display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: none; cursor: pointer; color: var(--choc);
}
.nav__toggle svg { width: 24px; height: 24px; }

@media (max-width: 960px) {
  .nav__cta { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__menu {
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--ivory); border-bottom: 1px solid var(--line);
    padding: 8px var(--gutter) 28px;
    display: none;
  }
  .nav.is-open .nav__menu { display: block; animation: drop .35s var(--ease); }
  .nav__links { flex-direction: column; gap: 0; }
  .nav__links a:not(.btn) {
    display: block; padding: 16px 0; font-family: var(--serif); font-size: 28px; letter-spacing: 0; text-transform: none;
    border-bottom: 1px solid var(--line);
  }
  .nav__links a:not(.btn)::after { display: none; }
  .nav__links-cta { display: block; margin-top: 24px; }
  .nav__links-cta .btn { width: 100%; }
}
@keyframes drop { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* ---------- hero ---------- */
.hero { padding: clamp(40px, 7vw, 100px) 0 clamp(72px, 9vw, 130px); }
.hero__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.hero__copy .lede { margin-top: 28px; }
.hero__art { position: relative; padding-left: clamp(0px, 4vw, 60px); padding-bottom: clamp(40px, 5vw, 70px); }
.hero__photo {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover;
  border-radius: 999px 999px var(--radius) var(--radius);
  background: var(--sand);
}
.hero__reel {
  position: absolute; left: 0; bottom: 0;
  width: clamp(130px, 15vw, 210px); aspect-ratio: 9 / 16;
  border: 7px solid var(--ivory); border-radius: var(--radius); padding: 0; overflow: hidden;
  background: var(--taupe); cursor: pointer;
  box-shadow: 0 20px 50px -20px rgba(74, 48, 45, .45);
  transition: transform .5s var(--ease);
}
.hero__reel:hover { transform: translateY(-6px) rotate(-1deg); }
.hero__reel-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__reel-label {
  position: absolute; left: 0; right: 0; bottom: 12px; text-align: center;
  color: #fff; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; font-weight: 400;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .45);
}
.hero__caption {
  position: absolute; top: 8px; left: clamp(0px, 4vw, 60px);
  transform: translateX(-100%) rotate(-90deg); transform-origin: top right;
  font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--eyebrow); white-space: nowrap;
}

/* photo placeholders (shown until you add the real photo) */
.photo-empty {
  display: flex; align-items: center; justify-content: center;
  background: var(--sand); color: var(--rose);
}
.photo-empty span { font-family: var(--serif); font-style: italic; font-size: clamp(64px, 9vw, 120px); opacity: .55; }

.play-dot {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(247, 241, 232, .92); color: var(--choc);
  transition: transform .4s var(--ease), background-color .3s;
}
.play-dot svg { width: 22px; height: 22px; margin-left: 3px; }

/* ---------- ribbon ---------- */
.ribbon { background: var(--choc); color: var(--ivory); overflow: hidden; padding: 22px 0; }
.ribbon__track {
  display: flex; gap: 44px; width: max-content;
  font-family: var(--serif); font-style: italic; font-size: clamp(26px, 3vw, 36px); line-height: 1;
  animation: ribbon 60s linear infinite;
}
.ribbon__star { color: var(--rose-light); font-style: normal; font-size: .7em; align-self: center; }
@keyframes ribbon { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
.section { padding: var(--section) 0; }
.section--tint { background: var(--ivory-deep); }
.section--rule > .container { border-top: 1px solid var(--line); padding-top: var(--section); }
.section--rule { padding-top: 0; }
.section__head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 28px; margin-bottom: clamp(36px, 5vw, 60px); }

/* ---------- portfolio ---------- */
.chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  min-height: 44px; padding: 0 22px; border-radius: 999px; cursor: pointer;
  border: 1px solid var(--line-strong); background: transparent; color: var(--choc);
  font-weight: 400; font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.chip:hover { border-color: var(--choc); }
.chip[aria-pressed="true"] { background: var(--choc); border-color: var(--choc); color: var(--ivory); }

.grid-videos { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(28px, 3.5vw, 48px) clamp(14px, 2.2vw, 32px); }
.card { display: flex; flex-direction: column; gap: 12px; transition: opacity .4s var(--ease), transform .4s var(--ease); }
.card.is-hiding { opacity: 0; transform: scale(.97); }
.card[hidden] { display: none; }
.card__media {
  position: relative; display: block; width: 100%; aspect-ratio: 9 / 16; padding: 0; border: 0;
  border-radius: var(--radius); overflow: hidden; background: var(--blush); cursor: pointer;
}
.card:nth-child(4n + 2) .card__media { background: var(--sand); }
.card:nth-child(4n + 3) .card__media { background: var(--taupe); }
.card:nth-child(4n + 4) .card__media { background: #DCD3C1; }
.card__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.card__media:hover .card__video, .card__media:focus-visible .card__video { transform: scale(1.04); }
.card__media:hover .play-dot, .card__media:focus-visible .play-dot { transform: translate(-50%, -50%) scale(1.08); background: #fff; }
.card__media.is-previewing .play-dot { opacity: 0; transform: translate(-50%, -50%) scale(.9); }
.card__tag {
  position: absolute; top: 12px; left: 12px; z-index: 1;
  padding: 5px 12px; border-radius: 999px; background: var(--ivory);
  font-weight: 400; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--choc);
}
.card__media--empty { cursor: default; display: grid; place-items: center; }
.card__soon { font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--ink-soft); }
.card__title { font-family: var(--serif); font-weight: 400; font-size: clamp(20px, 1.8vw, 24px); line-height: 1.15; }
.card__meta { font-size: 13px; color: var(--ink-soft); letter-spacing: .03em; margin-top: -4px; }

/* ---------- results ---------- */
.metrics { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; margin: 44px 0 16px; }
.metric { background: var(--ivory-deep); border-radius: var(--radius); padding: 30px 26px; display: flex; flex-direction: column; gap: 6px; }
.metric__num { font-family: var(--serif); font-size: clamp(44px, 5vw, 64px); line-height: 1; color: var(--rose); }
.metric__label { font-weight: 400; font-size: 15px; }
.metric__detail { font-size: 13px; color: var(--ink-soft); }
.quotes { display: grid; gap: 24px; margin-top: 48px; }
.quotes--1 { max-width: 880px; }
.quotes--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.quotes--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; gap: 18px; }
.quote__mark { font-family: var(--serif); font-size: 88px; line-height: .6; height: 36px; color: var(--rose); }
.quote blockquote { font-family: var(--serif); font-style: italic; font-size: clamp(22px, 2.2vw, 28px); line-height: 1.32; }
.quote figcaption { font-weight: 400; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); }

/* ---------- about ---------- */
.about { display: grid; grid-template-columns: 5fr 6fr; gap: clamp(40px, 7vw, 120px); align-items: center; }
.about__img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); background: var(--taupe); }
.about .h2 { margin-bottom: 28px; }
.prose p + p { margin-top: 1.1em; }
.prose { font-size: 18px; line-height: 1.75; }
.about .label { margin-top: 40px; padding-top: 28px; border-top: 1px solid #D4C1B0; }
.services { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 28px; margin-top: 18px; font-weight: 400; font-size: 15px; }
.services li { display: flex; gap: 10px; align-items: baseline; }
.services li::before { content: '✦'; color: var(--rose); font-size: 10px; }

/* ---------- collaborations ---------- */
.brands { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 18px; margin-top: 44px; }
.brand, .brand a {
  min-height: 110px; display: flex; align-items: center; justify-content: center; text-align: center;
  border: 1px solid var(--line); border-radius: var(--radius); padding: 18px;
  font-family: var(--serif); font-size: 24px; text-decoration: none;
}
.brand:has(a) { border: 0; padding: 0; }
.brand a { width: 100%; transition: border-color .3s; }
.brand a:hover { border-color: var(--rose); }
.brand img { max-height: 54px; width: auto; object-fit: contain; filter: grayscale(1) sepia(.35); opacity: .8; }
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(28px, 4vw, 56px); margin-top: 40px; }
.step { border-top: 1px solid var(--line); padding-top: 24px; }
.step__num { display: block; font-family: var(--serif); font-style: italic; font-size: 42px; line-height: 1; color: var(--rose); margin-bottom: 14px; }
.step__title { font-family: var(--serif); font-weight: 400; font-size: 28px; line-height: 1.1; margin-bottom: 10px; }
.step p { font-size: 16px; }

/* ---------- contact ---------- */
.contact { background: var(--choc); color: var(--ivory); padding: var(--section) 0; }
.contact em { color: var(--rose-light); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 110px); align-items: start; }
.contact__grid--solo { grid-template-columns: 1fr; text-align: center; justify-items: center; }
.contact__grid--solo .lede { margin-left: auto; margin-right: auto; }
.contact__grid--solo .contact__links { align-items: center; }
.display--contact { font-size: clamp(44px, 6vw, 84px); margin-bottom: 28px; }
.contact__grid--solo .display--contact { max-width: 13em; }
.contact__links { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; margin-top: 36px; }
.contact__email { font-family: var(--serif); font-style: italic; font-size: clamp(24px, 2.4vw, 30px); text-decoration: none; border-bottom: 1px solid rgba(247, 241, 232, .4); }
.contact__email:hover { border-bottom-color: var(--rose-light); }
.socials { display: flex; flex-wrap: wrap; gap: 8px 28px; }
.socials a { font-weight: 400; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; text-decoration: none; display: inline-block; padding: 12px 0; }
.socials a:hover { color: var(--rose-light); }

.form { display: flex; flex-direction: column; gap: 22px; background: rgba(247, 241, 232, .05); border: 1px solid rgba(247, 241, 232, .16); border-radius: var(--radius); padding: clamp(24px, 3.5vw, 44px); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-weight: 400; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--rose-light); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px; padding: 12px 16px;
  background: rgba(247, 241, 232, .06); color: var(--ivory);
  border: 1px solid rgba(247, 241, 232, .32); border-radius: 4px; font-size: 16px;
  transition: border-color .25s, background-color .25s;
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ivory) 50%), linear-gradient(135deg, var(--ivory) 50%, transparent 50%); background-position: calc(100% - 22px) 22px, calc(100% - 17px) 22px; background-size: 5px 5px; background-repeat: no-repeat; }
.field select option { color: var(--choc); }
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(247, 241, 232, .55); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--rose-light); background-color: rgba(247, 241, 232, .1); }
.field [aria-invalid="true"] { border-color: #F2A7B8; }
.form .btn { align-self: flex-start; }
.form .btn[disabled] { opacity: .6; cursor: wait; }
.form__status { font-size: 15px; min-height: 1.6em; }
.form__status.is-ok { color: var(--rose-light); font-family: var(--serif); font-style: italic; font-size: 22px; }
.form__status.is-error { color: #F7C9D3; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.footer { background: var(--choc-deep); color: #D9C9BD; font-size: 12px; letter-spacing: .1em; padding: 26px 0; }
.footer__inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 24px; }
.footer a { text-decoration: none; }
.footer a:hover { color: var(--ivory); }

/* ---------- sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: 16px; right: 16px; bottom: max(16px, env(safe-area-inset-bottom)); z-index: 40;
  box-shadow: 0 10px 30px -8px rgba(74, 48, 45, .45);
  opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
  display: none;
}
@media (max-width: 960px) {
  .sticky-cta { display: inline-flex; }
  .sticky-cta.is-visible { opacity: 1; transform: none; pointer-events: auto; }
}

/* ---------- lightbox ---------- */
.lightbox {
  width: 100vw; height: 100dvh; max-width: none; max-height: none; margin: 0; padding: 0; border: 0;
  background: rgba(38, 24, 22, .94); color: var(--ivory);
}
.lightbox::backdrop { background: rgba(38, 24, 22, .6); }
.lightbox[open] { display: grid; place-items: center; animation: fade .3s var(--ease); }
.lightbox__inner { position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; gap: clamp(8px, 3vw, 40px); padding: 64px 16px 24px; }
.lightbox__figure { display: flex; flex-direction: column; gap: 14px; align-items: center; max-height: 100%; }
.lightbox__video { height: min(calc(100dvh - 150px), calc(92vw * 16 / 9), 996px); aspect-ratio: 9 / 16; width: auto; object-fit: contain; border-radius: var(--radius); background: #000; }
.lightbox__caption { text-align: center; display: flex; flex-direction: column; gap: 2px; }
.lightbox__title { font-family: var(--serif); font-size: 24px; }
.lightbox__meta { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--rose-light); }
.lightbox__close, .lightbox__nav {
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(247, 241, 232, .35);
  background: rgba(247, 241, 232, .06); color: var(--ivory); display: grid; place-items: center; cursor: pointer; flex-shrink: 0;
  transition: background-color .25s, border-color .25s;
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(247, 241, 232, .16); border-color: var(--ivory); }
.lightbox__close svg, .lightbox__nav svg { width: 22px; height: 22px; }
.lightbox__close { position: absolute; top: 14px; right: 14px; }
.lightbox__nav[hidden] { display: none; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

/* ---------- scroll reveal (only when JavaScript is on) ---------- */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .grid-videos .card.reveal:nth-child(4n + 2) { transition-delay: .08s; }
.js .grid-videos .card.reveal:nth-child(4n + 3) { transition-delay: .16s; }
.js .grid-videos .card.reveal:nth-child(4n + 4) { transition-delay: .24s; }

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .grid-videos { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 960px) {
  .hero__grid, .about, .contact__grid { grid-template-columns: 1fr; }
  .hero__art { max-width: 520px; width: 100%; margin: 0 auto; }
  .hero__caption { display: none; }
  .quotes--2, .quotes--3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .about__photo { max-width: 520px; }
  .contact { padding-bottom: calc(var(--section) + 40px); }
}
@media (max-width: 720px) {
  .grid-videos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section__head { align-items: flex-start; }
  .chips { flex-wrap: nowrap; overflow-x: auto; width: calc(100% + 2 * var(--gutter)); margin: 0 calc(-1 * var(--gutter)); padding: 2px var(--gutter) 6px; scrollbar-width: none; }
  .chips::-webkit-scrollbar { display: none; }
  .chip { flex-shrink: 0; }
  .play-dot { width: 48px; height: 48px; }
  .play-dot svg { width: 18px; height: 18px; }
  .form__row { grid-template-columns: 1fr; }
  .services { grid-template-columns: 1fr; }
  .btn-row .btn { flex: 1 1 100%; }
  .lightbox__nav { position: absolute; bottom: 20px; }
  .lightbox__nav--prev { left: calc(50% - 60px); }
  .lightbox__nav--next { right: calc(50% - 60px); }
  .lightbox__inner { padding-bottom: 84px; }
  .lightbox__video { height: min(calc(100dvh - 220px), calc(92vw * 16 / 9)); }
  .nav.is-open ~ .sticky-cta { opacity: 0; pointer-events: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; transition-delay: 0s !important; }
  .ribbon__track { animation: none; }
  .js .reveal { opacity: 1; transform: none; }
}

@media print {
  .nav, .sticky-cta, .lightbox, .ribbon { display: none !important; }
  .js .reveal { opacity: 1; transform: none; }
}
