@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&family=Manrope:wght@400;500;600&display=swap');

:root {
  color-scheme: dark;
  --ink: #08090b;
  --ink-soft: #101216;
  --paper: #f5f4ef;
  --muted: rgba(245, 244, 239, .64);
  --line: rgba(255, 255, 255, .14);
  --gold: #c8b38c;
  --page: min(92vw, 1480px);
  --ease: cubic-bezier(.2, .72, .2, 1);
  --scroll-progress: 0%;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  z-index: 90;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 12%, rgba(200,179,140,.055), transparent 28%),
    linear-gradient(115deg, transparent 28%, rgba(255,255,255,.018) 48%, transparent 68%);
  mix-blend-mode: screen;
}
body.viewer-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 1rem;
  top: 1rem;
  padding: .8rem 1rem;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  border-bottom: 1px solid transparent;
  background: linear-gradient(to bottom, rgba(5, 6, 8, .78), transparent);
  transition: height .5s var(--ease), background .5s var(--ease), border-color .5s var(--ease), backdrop-filter .5s var(--ease);
}
.site-header.is-scrolled {
  height: 66px;
  background: rgba(8, 9, 11, .84);
  border-color: var(--line);
  backdrop-filter: blur(18px) saturate(130%);
  box-shadow: 0 14px 42px rgba(0,0,0,.2);
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: var(--scroll-progress);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,179,140,.85));
  box-shadow: 0 0 14px rgba(200,179,140,.28);
  transition: width .12s linear;
}
.brand { display: inline-flex; align-items: center; gap: .8rem; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 35px;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.52);
  border-radius: 50%;
  font-family: Manrope, sans-serif;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .06em;
}
.brand-name { font-size: .84rem; font-weight: 500; letter-spacing: .04em; }
.brand-name i { color: var(--muted); font-style: normal; font-weight: 300; }
.header-links { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.site-header nav { display: flex; align-items: center; gap: clamp(1.1rem, 2.5vw, 2.8rem); }
.site-header nav a {
  color: rgba(255,255,255,.72);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .09em;
  transition: color .3s ease;
}
.site-header nav a:hover, .site-header nav a:focus-visible { color: #fff; }
.site-header .nav-contact {
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  padding: .7rem 1.1rem;
}
.header-socials {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding-left: clamp(.8rem, 1.5vw, 1.35rem);
  border-left: 1px solid rgba(255,255,255,.18);
}
.header-socials a {
  display: grid;
  place-items: center;
  width: 29px;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: rgba(255,255,255,.64);
  font: 600 .58rem/1 Manrope, sans-serif;
  letter-spacing: 0;
  text-transform: none;
  transition: color .3s ease, border-color .3s ease, background .3s ease, transform .3s var(--ease);
}
.header-socials a:last-child { font-size: .76rem; }
.header-socials a:hover, .header-socials a:focus-visible {
  color: #fff;
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.08);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 760px;
  height: 92svh;
  overflow: hidden;
  isolation: isolate;
  background: #111;
}
.hero:focus-visible { outline: 1px solid var(--gold); outline-offset: -1px; }
.hero-stage, .hero-slide { position: absolute; inset: 0; }
.hero-slide {
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 1.1s var(--ease), transform 8s linear;
}
.hero-slide.is-active { z-index: 1; opacity: 1; transform: scale(1); }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.hero-shade {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,6,8,.48) 0%, rgba(5,6,8,.18) 38%, transparent 72%),
    linear-gradient(0deg, rgba(8,9,11,.9) 0%, rgba(8,9,11,.22) 35%, transparent 62%);
}
.hero-copy {
  position: absolute;
  z-index: 3;
  left: 5vw;
  top: auto;
  bottom: clamp(5.5rem, 10vh, 8rem);
  width: min(720px, 78vw);
}
.eyebrow {
  margin: 0 0 1.35rem;
  color: var(--gold);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.hero h1, .collections-intro h2, .print-copy h2, .contact h2 {
  margin: 0;
  font-family: Manrope, sans-serif;
  font-size: clamp(3.2rem, min(6.6vw, 10vh), 7.2rem);
  font-weight: 400;
  line-height: .93;
  letter-spacing: -.06em;
}
.hero h1 {
  font-size: clamp(3.5rem, min(6.3vw, 9.5vh), 6.8rem);
  text-shadow: 0 2px 26px rgba(0,0,0,.25);
  animation: hero-copy-in 1.1s var(--ease) .18s both;
}
.hero-line {
  width: min(540px, 100%);
  margin: 1.45rem 0 0;
  color: rgba(255,255,255,.74);
  font-size: clamp(.9rem, 1.05vw, 1.05rem);
  line-height: 1.65;
  animation: hero-copy-in 1.1s var(--ease) .34s both;
}
@keyframes hero-copy-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.hero-actions { display: flex; gap: .7rem; margin-top: 2rem; }
.primary-action, .quiet-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: .9rem 1.35rem;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .07em;
  transition: transform .35s var(--ease), background .35s ease, color .35s ease, border-color .35s ease;
}
.primary-action {
  background: linear-gradient(135deg, #fff, var(--paper) 58%, #dedbd1);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(0,0,0,.16), inset 0 1px rgba(255,255,255,.9);
}
.quiet-action { border: 1px solid rgba(255,255,255,.28); background: rgba(8,9,11,.16); backdrop-filter: blur(10px); }
.primary-action:hover, .quiet-action:hover { transform: translateY(-2px); }
.quiet-action:hover { border-color: rgba(255,255,255,.62); background: rgba(255,255,255,.1); }
.hero-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  place-items: center;
  width: 54px;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  background: rgba(9,10,12,.18);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(12px);
  opacity: .7;
  transform: translateY(-50%);
  transition: opacity .3s ease, background .3s ease, transform .3s var(--ease);
}
.hero-arrow:hover { opacity: 1; background: rgba(255,255,255,.12); transform: translateY(-50%) scale(1.05); }
.hero-arrow span { margin-top: -.12em; font-size: 2rem; font-weight: 200; }
.hero-arrow--previous { left: 1.4vw; }
.hero-arrow--next { right: 1.4vw; }
.hero-progress {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 3.2rem;
  display: flex;
  gap: .55rem;
  transform: translateX(-50%);
}
.hero-progress button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: width .4s var(--ease), border-radius .4s var(--ease), background .4s ease;
}
.hero-progress button.is-active { width: 30px; border-radius: 20px; background: #fff; }
.hero-count {
  position: absolute;
  z-index: 4;
  right: 5vw;
  bottom: 2.75rem;
  display: flex;
  align-items: center;
  gap: .7rem;
  margin: 0;
  color: rgba(255,255,255,.7);
  font: 500 .65rem/1 Manrope, sans-serif;
  letter-spacing: .14em;
}
.hero-count i { width: 48px; height: 1px; background: rgba(255,255,255,.42); }

.collections { padding: 4.8rem 0 1.25rem; background: var(--ink); }
.collections-intro {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 5vw;
  align-items: end;
  width: var(--page);
  margin: 0 auto 4.75rem;
}
.collections-intro .eyebrow { grid-column: 1 / -1; margin-bottom: -.8rem; }
.collections-intro h2 { font-size: clamp(3rem, 5vw, 6.2rem); }
.collections-intro > p:last-child {
  max-width: 480px;
  margin: 0 0 .35rem;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.75;
}
.collection-row { margin: 0 0 3rem; scroll-margin-top: 90px; }
.row-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  width: var(--page);
  margin: 0 auto -1.4rem;
  position: relative;
  z-index: 10;
}
.row-index { margin: 0 0 .55rem; color: rgba(255,255,255,.42); font-size: .6rem; font-weight: 500; letter-spacing: .17em; text-transform: uppercase; }
.row-heading h3 { margin: 0; font: 500 clamp(1.7rem, 2.6vw, 3rem)/1 Manrope, sans-serif; letter-spacing: -.04em; }
.row-heading h3 a { display: inline-flex; align-items: center; gap: .55rem; }
.row-heading h3 span {
  color: rgba(255,255,255,.38);
  font: 300 .8rem/1 Manrope, sans-serif;
  transform: translateY(.1rem);
  transition: color .3s ease, transform .35s var(--ease);
}
.row-heading h3 a:hover span { color: #fff; transform: translate(.18rem, -.08rem); }
.row-controls { display: flex; gap: .55rem; }
.row-controls button {
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: rgba(255,255,255,.72);
  cursor: pointer;
  font-size: 1.35rem;
  transition: background .3s ease, border-color .3s ease, color .3s ease, transform .3s var(--ease);
}
.row-controls button:hover { color: #fff; border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.07); transform: scale(1.05); }
.rail-shell { position: relative; overflow: hidden; }
.rail-shell::before, .rail-shell::after {
  content: "";
  position: absolute;
  z-index: 8;
  top: 0;
  bottom: 0;
  width: 5vw;
  pointer-events: none;
}
.rail-shell::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.rail-shell::after { right: 0; background: linear-gradient(-90deg, var(--ink), transparent); }
.photo-rail {
  display: flex;
  gap: clamp(.75rem, 1.2vw, 1.2rem);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 3.9rem max(4vw, calc((100vw - 1480px) / 2)) 2.8rem;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  outline: none;
}
.photo-rail::-webkit-scrollbar { display: none; }
.photo-card {
  position: relative;
  flex: 0 0 clamp(255px, 27vw, 430px);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 5px;
  background: #15171b;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  cursor: pointer;
  scroll-snap-align: start;
  transform: scale(1);
  transform-origin: center;
  transition: transform .72s var(--ease), border-radius .55s var(--ease), box-shadow .72s var(--ease);
  will-change: transform;
}
.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(150deg, rgba(255,255,255,.12), transparent 22%, transparent 72%, rgba(0,0,0,.08));
  opacity: .35;
  transition: opacity .65s ease;
}
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transform: scale(1.01);
  transition: transform 1.1s var(--ease), filter .7s ease;
}
.photo-card-glow {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0);
  border-radius: inherit;
  box-shadow: inset 0 -40px 60px rgba(0,0,0,0);
  transition: border-color .65s ease, box-shadow .65s ease;
}
.photo-card.is-previewing {
  z-index: 6;
  border-radius: 8px;
  box-shadow: 0 26px 62px rgba(0,0,0,.58);
  transform: scale(1.35);
}
.photo-card.is-previewing::after { opacity: .58; }
.photo-card.is-previewing img { transform: scale(1.045); filter: saturate(1.06) contrast(1.02); }
.photo-card.is-previewing .photo-card-glow { border-color: rgba(255,255,255,.26); box-shadow: inset 0 -45px 65px rgba(0,0,0,.18); }
.photo-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 5px; }

.print-note {
  position: relative;
  display: block;
  min-height: min(76svh, 760px);
  margin-top: 0;
  overflow: hidden;
  isolation: isolate;
  background: #111216;
  color: var(--paper);
}
.print-note::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5,6,8,.84) 0%, rgba(5,6,8,.54) 36%, rgba(5,6,8,.08) 70%),
    linear-gradient(0deg, rgba(5,6,8,.75), transparent 52%);
}
.print-note::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(112deg, transparent 36%, rgba(255,255,255,.14) 50%, transparent 64%);
  opacity: 0;
  transform: translateX(-32%);
  transition: opacity 1.2s ease, transform 1.8s var(--ease);
}
.print-note.is-visible::after { opacity: .35; transform: translateX(32%); }
.print-visual { position: absolute; inset: 0; min-height: 0; background: #222 center 45%/cover no-repeat; transform: scale(1.015); }
.print-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: end;
  width: min(660px, 88vw);
  min-height: min(76svh, 760px);
  padding: clamp(4rem, 7vw, 7rem) 5vw;
}
.print-copy .eyebrow { color: var(--gold); }
.print-copy h2 { font-size: clamp(3.2rem, 5.6vw, 6.4rem); text-shadow: 0 2px 28px rgba(0,0,0,.28); }
.print-copy > p:not(.eyebrow) { max-width: 500px; margin: 1.6rem 0 2.2rem; color: rgba(255,255,255,.72); line-height: 1.7; }
.primary-action--light { align-self: start; background: linear-gradient(135deg, #fff, #ece9e1); color: #111216; }

.contact {
  width: var(--page);
  margin: 0 auto;
  padding: 8rem 0 6.5rem;
  text-align: center;
}

.scroll-reveal {
  opacity: 0;
  filter: blur(5px);
  transform: translate3d(0, 26px, 0);
  transition:
    opacity .9s var(--ease) var(--reveal-delay, 0ms),
    transform .95s var(--ease) var(--reveal-delay, 0ms),
    filter .9s ease var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}
.scroll-reveal[data-reveal-direction="left"] { transform: translate3d(-24px, 12px, 0); }
.scroll-reveal[data-reveal-direction="right"] { transform: translate3d(24px, 12px, 0); }
.scroll-reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}
.contact h2 { font-size: clamp(3.2rem, 6vw, 7rem); }
.contact > p:not(.eyebrow) { max-width: 530px; margin: 2rem auto 2.7rem; color: var(--muted); line-height: 1.7; }
.contact-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: .7rem; }
.contact-actions a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .95rem 1.4rem;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .07em;
  transition: background .3s ease, color .3s ease, transform .3s var(--ease);
}
.contact-actions a:hover { background: var(--paper); color: var(--ink); transform: translateY(-2px); }

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 2rem 4vw;
  border-top: 1px solid var(--line);
  color: rgba(255,255,255,.42);
  font-size: .65rem;
  letter-spacing: .08em;
}
footer p { margin: 0; }
footer p:last-child { justify-self: end; }
.brand--footer { color: #fff; }

.viewer {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
}
.viewer::backdrop { background: rgba(4,5,6,.93); backdrop-filter: blur(18px); }
.viewer[open] { animation: viewer-in .5s var(--ease) both; }
@keyframes viewer-in { from { opacity: 0; } to { opacity: 1; } }
.viewer-frame { position: relative; display: grid; place-items: center; width: 100%; height: 100%; padding: 5rem 7vw 4rem; }
.viewer figure { display: grid; place-items: center; width: 100%; height: 100%; margin: 0; }
.viewer figure img { max-width: 100%; max-height: 82dvh; width: auto; height: auto; object-fit: contain; box-shadow: 0 30px 90px rgba(0,0,0,.45); }
.viewer-close, .viewer-arrow {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  background: rgba(0,0,0,.18);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(10px);
}
.viewer-close { top: 1.6rem; right: 2rem; width: 44px; height: 44px; font-size: 1.35rem; }
.viewer-arrow { top: 50%; width: 50px; height: 50px; font-size: 2rem; transform: translateY(-50%); }
.viewer-arrow--previous { left: 2rem; }
.viewer-arrow--next { right: 2rem; }
.viewer-count { position: absolute; left: 50%; bottom: 1.6rem; margin: 0; color: rgba(255,255,255,.52); font-size: .66rem; letter-spacing: .15em; transform: translateX(-50%); }

@media (max-width: 900px) {
  .site-header { height: 68px; padding: 0 5vw; }
  .site-header nav a:not(.nav-contact) { display: none; }
  .header-links { gap: .75rem; }
  .header-socials { padding-left: .75rem; }
  .hero { min-height: 670px; height: 88svh; }
  .hero-copy { left: 6vw; top: auto; bottom: clamp(5.5rem, 9vh, 7rem); width: 84vw; }
  .hero h1 { font-size: clamp(3.1rem, 10vw, 5.5rem); }
  .hero-shade { background: linear-gradient(90deg, rgba(5,6,8,.48), transparent 78%), linear-gradient(0deg, rgba(8,9,11,.92), transparent 52%); }
  .hero-arrow { width: 46px; opacity: .78; }
  .hero-arrow--previous { left: 2vw; }
  .hero-arrow--next { right: 2vw; }
  .hero-count { display: none; }
  .collections { padding-top: 4.2rem; }
  .collections-intro { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 4rem; }
  .collections-intro .eyebrow { grid-column: auto; }
  .collections-intro > p:last-child { max-width: 600px; }
  .photo-card { flex-basis: clamp(245px, 55vw, 380px); }
  .photo-card.is-previewing { transform: scale(1.24); }
  .print-note, .print-copy { min-height: 68svh; }
  .print-copy { width: min(620px, 90vw); padding: 4.5rem 6vw; }
  footer { grid-template-columns: 1fr 1fr; }
  footer > p:nth-of-type(1) { display: none; }
}

@media (max-width: 600px) {
  :root { --page: 88vw; }
  .brand-name { font-size: .76rem; }
  .brand-name i { display: none; }
  .site-header .nav-contact { padding: .62rem .9rem; }
  .header-socials { gap: .32rem; padding-left: .55rem; }
  .header-socials a { width: 27px; }
  .hero { min-height: 650px; height: 86svh; }
  .hero-slide img { object-position: 58% center; }
  .hero-copy { left: 6vw; top: auto; bottom: 6.4rem; width: 88vw; }
  .hero h1 { font-size: clamp(2.8rem, 13vw, 4.4rem); }
  .hero-line { max-width: 92%; font-size: .88rem; line-height: 1.55; }
  .hero-actions { margin-top: 1.5rem; }
  .quiet-action { display: none; }
  .hero-arrow { top: auto; bottom: 2rem; width: 42px; }
  .hero-arrow--previous { left: 6vw; }
  .hero-arrow--next { left: calc(6vw + 52px); right: auto; }
  .hero-progress { left: auto; right: 6vw; bottom: 3.05rem; transform: none; }
  .hero-progress button { width: 5px; height: 5px; }
  .hero-progress button.is-active { width: 20px; }
  .collections { padding-top: 3.4rem; }
  .collections-intro { margin-bottom: 3rem; }
  .collections-intro h2 { font-size: clamp(2.8rem, 13vw, 4.5rem); }
  .print-copy h2 { font-size: clamp(2.55rem, 11vw, 3.7rem); }
  .collection-row { margin-bottom: 2rem; }
  .row-heading { margin-bottom: -2.3rem; }
  .row-heading h3 { font-size: 1.55rem; }
  .row-controls button { width: 38px; }
  .rail-shell::before, .rail-shell::after { width: 4vw; }
  .photo-rail { gap: .65rem; padding-top: 4.2rem; padding-bottom: 2.5rem; }
  .photo-card { flex-basis: 72vw; }
  .photo-card.is-previewing { transform: none; }
  .print-note, .print-copy { min-height: 72svh; }
  .print-visual { min-height: 0; background-position: 56% center; }
  .print-copy { padding: 4rem 6vw; }
  .contact { padding: 5.8rem 0 4.8rem; }
  .contact h2 { font-size: clamp(3rem, 14vw, 4.6rem); }
  footer { grid-template-columns: 1fr; text-align: center; }
  footer .brand { justify-self: center; }
  footer p:last-child { justify-self: center; }
  .viewer-frame { padding: 4.5rem 1rem 3.5rem; }
  .viewer-arrow { top: auto; bottom: 1.2rem; width: 44px; height: 44px; }
  .viewer-arrow--previous { left: 1rem; }
  .viewer-arrow--next { right: 1rem; }
  .viewer-close { top: 1rem; right: 1rem; }
}

@media (max-height: 820px) and (min-width: 901px) {
  .hero-copy { top: auto; bottom: 4.6rem; }
  .hero h1 { font-size: clamp(3.4rem, min(5.8vw, 9vh), 5.5rem); }
  .hero-line { margin-top: 1.25rem; }
  .hero-actions { margin-top: 1.35rem; }
}

@media (hover: none), (pointer: coarse) {
  .photo-card.is-previewing { transform: 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; }
  .scroll-reveal { opacity: 1; filter: none; transform: none; }
}
