/* =========================================================================
   Maren Holst — editorial photography portfolio
   ========================================================================= */

:root {
  --bg: #0b0907;
  --bg-2: #110d0a;
  --surface: #15110d;
  --surface-2: #1c1712;
  --line: rgba(245, 237, 224, 0.08);
  --line-strong: rgba(245, 237, 224, 0.18);

  --text: #f5ede0;
  --text-dim: #d8cbb6;
  --text-mute: #b9ad9b;
  --text-fade: #847868;

  --amber: #e9a24a;
  --amber-2: #f5b65a;
  --amber-deep: #c98736;
  --amber-glow: rgba(233, 162, 74, 0.35);

  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --tracked: 0.22em;

  --radius-pill: 999px;
  --radius-lg: 14px;
  --radius-md: 10px;

  --shadow-soft: 0 24px 60px -28px rgba(0, 0, 0, 0.7);
  --shadow-amber: 0 16px 40px -16px rgba(233, 162, 74, 0.45);

  --max: 1240px;
  --gutter: clamp(20px, 4vw, 44px);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --nav-h: 60px;
}

/* -------------------- reset -------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}
input {
  font: inherit;
  color: inherit;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
figure,
blockquote,
dl,
dt,
dd {
  margin: 0;
}

::selection {
  background: var(--amber);
  color: #1a1208;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  padding: 10px 14px;
  background: var(--surface);
  color: var(--text);
  border-radius: 8px;
  z-index: 200;
}
.skip-link:focus {
  top: 16px;
}

/* -------------------- typography helpers -------------------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--tracked);
  text-transform: uppercase;
  color: var(--text-mute);
  margin: 0 0 18px;
}

.section__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--text);
}
.section__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--amber);
}
.section__lede {
  margin: 18px auto 0;
  max-width: 56ch;
  color: var(--text-mute);
  font-size: 16px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: var(--tracked);
  text-transform: uppercase;
  color: var(--amber-2);
  font-weight: 500;
  border-bottom: 1px solid rgba(245, 182, 90, 0.25);
  padding-bottom: 4px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease),
    gap 0.25s var(--ease);
}
.link-arrow:hover {
  color: var(--amber-2);
  border-color: var(--amber-2);
  gap: 14px;
}

/* -------------------- buttons -------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: var(--radius-pill);
  padding: 13px 22px;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    box-shadow 0.3s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn--pill {
  padding: 13px 24px;
  font-size: 14.5px;
}
.btn--primary {
  background: var(--amber);
  color: #1a1208;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), var(--shadow-amber);
}
.btn--primary:hover {
  background: var(--amber-2);
  transform: translateY(-1px);
}
.btn--block {
  width: 100%;
}

/* =========================================================================
   NAV — slim editorial bar
   ========================================================================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease),
    border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(11, 9, 7, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav__inner {
  height: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.nav__brand-mark {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 17px;
  letter-spacing: -0.005em;
  color: var(--text);
}
.nav__brand-mark em {
  font-style: italic;
  font-weight: 300;
  color: var(--amber);
  margin-right: 2px;
}
.nav__links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--tracked);
  text-transform: uppercase;
  color: var(--text-mute);
  transition: color 0.2s var(--ease);
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__links a:hover {
  color: var(--text);
}
.nav__links a:hover::after {
  transform: scaleX(1);
}
.nav__contact {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--tracked);
  text-transform: uppercase;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.25s var(--ease), color 0.2s var(--ease);
}
.nav__contact span {
  color: var(--amber);
  transition: transform 0.25s var(--ease);
}
.nav__contact:hover {
  gap: 12px;
}
.nav__contact:hover span {
  transform: translateX(2px);
}

.nav__toggle {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(20, 15, 10, 0.55);
  backdrop-filter: blur(10px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  width: 14px;
  height: 1px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(3px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(-3px) rotate(-45deg);
}

.nav__mobile {
  display: none;
}
.nav__mobile:not([hidden]) {
  display: flex;
  background: rgba(11, 9, 7, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid var(--line);
  padding: 22px var(--gutter) 32px;
  flex-direction: column;
  gap: 2px;
}
.nav__mobile a {
  display: block;
  padding: 14px 0;
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  border-bottom: 1px solid var(--line);
}
.nav__mobile-contact {
  margin-top: 14px;
  font-style: normal !important;
  font-family: var(--sans) !important;
  font-size: 12px !important;
  letter-spacing: var(--tracked);
  text-transform: uppercase;
  color: var(--amber-2) !important;
  border-bottom: 0 !important;
}

/* =========================================================================
   HERO — cinematic crossfade
   ========================================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: calc(var(--nav-h) + 24px) var(--gutter) 24px;
}

.hero__stage {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s var(--ease);
}
.hero__frame.is-active {
  opacity: 1;
}
.hero__img {
  position: absolute;
  inset: -6%;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  /* the ken-burns runs continuously; only the active frame is visible */
  animation: kenburns 18s ease-in-out infinite alternate;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 9, 7, 0.7) 0%,
    rgba(11, 9, 7, 0.28) 38%,
    rgba(11, 9, 7, 0.4) 65%,
    rgba(11, 9, 7, 0.92) 100%
  );
}
.hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 38%,
    rgba(11, 9, 7, 0.55) 100%
  );
  pointer-events: none;
}

.hero__content {
  align-self: center;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 0;
  animation: rise 1.2s var(--ease) both;
}
.hero__eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--tracked);
  text-transform: uppercase;
  color: var(--text-mute);
}
.hero__title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(64px, 13vw, 184px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--text);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
}
.hero__title em {
  font-style: italic;
  background: linear-gradient(180deg, #ffe9c5 0%, #f5b65a 65%, #c98736 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  margin: 0;
  max-width: 50ch;
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--text-dim);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

/* hero metadata bar */
.hero__meta {
  align-self: end;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(245, 237, 224, 0.15);
  font-variant-numeric: tabular-nums;
  animation: rise 1.2s 0.2s var(--ease) both;
}
.hero__meta-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}
.hero__location {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: var(--tracked);
  color: var(--text);
  text-transform: uppercase;
  transition: opacity 0.4s var(--ease);
}
.hero__exif {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-mute);
  font-feature-settings: "tnum";
  transition: opacity 0.4s var(--ease);
}
.hero__counter {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: var(--text);
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  transition: opacity 0.4s var(--ease);
}
.hero__meta.is-changing .hero__location,
.hero__meta.is-changing .hero__exif,
.hero__meta.is-changing .hero__counter {
  opacity: 0;
}

.hero__scroll {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: var(--tracked);
  color: var(--text-mute);
  text-transform: uppercase;
  text-decoration: none;
}
.hero__scroll i {
  display: block;
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, var(--text-mute), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
  transform-origin: top;
}

/* =========================================================================
   MARQUEE
   ========================================================================= */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  padding: 22px 0;
  position: relative;
}
.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-2), transparent);
}
.marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg-2), transparent);
}
.marquee__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee:hover .marquee__track {
  animation-play-state: paused;
}
.marquee__group {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.marquee__group span {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--text);
  padding: 0 28px;
  letter-spacing: -0.01em;
}
.marquee__group i {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  font-style: normal;
  text-indent: -9999px;
}

/* =========================================================================
   SECTIONS shared
   ========================================================================= */
.section {
  position: relative;
  padding: clamp(80px, 10vw, 130px) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.section__head {
  text-align: center;
  margin: 0 auto clamp(40px, 5vw, 60px);
  max-width: 720px;
}

/* =========================================================================
   FEATURED WORK — bento grid + custom cursor
   ========================================================================= */
.featured {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 14px;
  position: relative;
  cursor: none;
}
.featured__card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface);
}
.featured__card--lg {
  grid-row: 1 / span 2;
  grid-column: 1;
}
.featured__card--md {
  grid-column: span 1;
}
.featured__card--sm {
  grid-column: span 1;
}
.featured__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 1s var(--ease), filter 0.6s var(--ease);
  filter: saturate(0.92) brightness(0.92);
}
.featured__card:hover .featured__img {
  transform: scale(1.07);
  filter: saturate(1.05) brightness(1);
}
.featured__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px 22px 22px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(11, 9, 7, 0.4) 40%,
    rgba(11, 9, 7, 0.85) 100%
  );
  transform: translateY(20%);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.4s var(--ease);
}
.featured__card:hover .featured__caption {
  transform: translateY(0);
  opacity: 1;
}
.featured__title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  color: var(--text);
}
.featured__title em {
  font-style: italic;
  font-weight: 300;
}
.featured__meta {
  margin: 6px 0 0;
  font-size: 11px;
  letter-spacing: var(--tracked);
  text-transform: uppercase;
  color: var(--text-mute);
}

/* custom cursor */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--amber);
  color: #1a1208;
  pointer-events: none;
  z-index: 90;
  transform: translate3d(-100px, -100px, 0) scale(0);
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
  opacity: 0;
  display: grid;
  place-items: center;
  mix-blend-mode: normal;
  box-shadow: 0 12px 40px -10px rgba(233, 162, 74, 0.6);
}
.cursor-dot.is-active {
  opacity: 1;
}
.cursor-dot__inner {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: var(--tracked);
  text-transform: uppercase;
}

/* =========================================================================
   SERIES SPOTLIGHT
   ========================================================================= */
.series {
  padding: clamp(80px, 10vw, 130px) var(--gutter);
}
.series__layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.series__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface);
}
.series__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  animation: kenburns 24s ease-in-out infinite alternate;
}
.series__filmstrip {
  position: absolute;
  left: 14px;
  top: 14px;
  bottom: 14px;
  width: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}
.series__filmstrip i {
  display: block;
  width: 100%;
  height: 8px;
  background: rgba(11, 9, 7, 0.7);
  border-radius: 2px;
}
.series__caption {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.series__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--text);
}
.series__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--amber);
}
.series__body {
  margin: 0;
  color: var(--text-mute);
  max-width: 42ch;
  font-size: 16px;
  line-height: 1.65;
}
.series__stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 28px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  width: 100%;
  max-width: 420px;
}
.series__stats dt {
  font-size: 10px;
  letter-spacing: var(--tracked);
  color: var(--text-fade);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.series__stats dd {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--text);
}

/* =========================================================================
   NUMBERS
   ========================================================================= */
.numbers {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(60px, 8vw, 100px) var(--gutter);
  background: var(--bg-2);
}
.numbers__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.numbers__item {
  text-align: center;
}
.numbers__value {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(56px, 8vw, 104px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.numbers__label {
  display: block;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--tracked);
  color: var(--text-mute);
  text-transform: uppercase;
}

/* =========================================================================
   PRESS
   ========================================================================= */
.press {
  padding: 72px var(--gutter);
  text-align: center;
  max-width: var(--max);
  margin: 0 auto;
}
.press__label {
  margin: 0 0 28px;
  font-size: 10px;
  letter-spacing: var(--tracked);
  color: var(--text-fade);
  text-transform: uppercase;
}
.press__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
}
.press__row span {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--text-fade);
  letter-spacing: 0.01em;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
  cursor: default;
}
.press__row span:hover {
  color: var(--text);
  transform: translateY(-2px);
}

/* =========================================================================
   ABOUT
   ========================================================================= */
.about__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.about__portrait {
  position: relative;
}
.about__img {
  width: 100%;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  background-color: var(--surface);
  border-radius: var(--radius-lg);
  filter: saturate(0.9);
}
.about__caption {
  margin: 14px 0 0;
  font-size: 11px;
  letter-spacing: var(--tracked);
  color: var(--text-fade);
  text-transform: uppercase;
}
.about__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.about__body {
  margin: 0;
  color: var(--text-mute);
  font-size: 16px;
  line-height: 1.7;
  max-width: 52ch;
}

/* =========================================================================
   PRINTS
   ========================================================================= */
.prints__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.print {
  display: block;
  color: var(--text);
  transition: transform 0.4s var(--ease);
}
.print:hover {
  transform: translateY(-4px);
}
.print__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  background-color: var(--surface);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  filter: saturate(0.95);
  transition: filter 0.4s var(--ease);
}
.print:hover .print__img {
  filter: saturate(1.05);
}
.print__name {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.print__price {
  margin: 4px 0 0;
  font-size: 11px;
  letter-spacing: var(--tracked);
  color: var(--text-fade);
  text-transform: uppercase;
}
.prints__cta {
  text-align: center;
  margin-top: 48px;
}

/* =========================================================================
   CONTACT CTA
   ========================================================================= */
.cta {
  position: relative;
  padding: clamp(100px, 14vw, 180px) var(--gutter);
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.cta__bg {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center;
  z-index: -2;
  animation: kenburns 40s ease-in-out infinite alternate;
  filter: saturate(0.85);
}
.cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 9, 7, 0.85) 0%,
    rgba(11, 9, 7, 0.65) 50%,
    rgba(11, 9, 7, 0.95) 100%
  );
  z-index: -1;
}
.cta__content {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.cta__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}
.cta__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--amber);
}
.cta__sub {
  margin: 0;
  color: var(--text-dim);
  font-size: 16px;
  max-width: 48ch;
}
.cta__form {
  margin-top: 6px;
}

/* form (used by CTA) */
.hero__form {
  width: 100%;
  max-width: 520px;
}
.field--glass {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  background: rgba(20, 15, 10, 0.55);
  border: 1px solid rgba(245, 237, 224, 0.14);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.45);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field--glass:focus-within {
  border-color: rgba(233, 162, 74, 0.6);
  box-shadow: 0 0 0 4px rgba(233, 162, 74, 0.12),
    0 10px 30px -10px rgba(0, 0, 0, 0.5);
}
.field--glass input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 12px 18px;
  font-size: 15px;
  color: var(--text);
}
.field--glass input::placeholder {
  color: var(--text-fade);
}
.field--glass .btn {
  padding: 12px 22px;
  font-size: 14px;
}
.form__note {
  margin: 14px 0 0;
  min-height: 20px;
  font-size: 13px;
  letter-spacing: 0.01em;
  color: var(--amber-2);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg);
  padding: 56px var(--gutter) 28px;
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.footer__mark {
  font-family: var(--serif);
  font-size: 22px;
  margin: 0 0 6px;
  color: var(--text);
  font-weight: 400;
}
.footer__mark em {
  font-style: italic;
  font-weight: 300;
  color: var(--amber);
  margin-right: 2px;
}
.footer__tag {
  margin: 0;
  color: var(--text-fade);
  font-size: 13px;
  letter-spacing: 0.01em;
  max-width: 30ch;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer__h {
  font-size: 10px;
  letter-spacing: var(--tracked);
  text-transform: uppercase;
  color: var(--text-mute);
  margin: 0 0 16px;
}
.footer__cols a {
  display: block;
  padding: 6px 0;
  color: var(--text-dim);
  font-size: 14px;
  transition: color 0.2s var(--ease);
}
.footer__cols a:hover {
  color: var(--amber-2);
}
.footer__base {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-fade);
  font-size: 12px;
  letter-spacing: 0.02em;
}
.footer__social {
  display: flex;
  gap: 22px;
}
.footer__social a {
  color: var(--text-dim);
  font-size: 12px;
  letter-spacing: var(--tracked);
  text-transform: uppercase;
  transition: color 0.2s var(--ease);
}
.footer__social a:hover {
  color: var(--amber-2);
}

/* =========================================================================
   ANIMATIONS
   ========================================================================= */
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes kenburns {
  0% {
    transform: scale(1.03) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.14) translate3d(-2%, -1.5%, 0);
  }
}
@keyframes scrollLine {
  0%,
  100% {
    transform: scaleY(0.4);
    opacity: 0.2;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}
@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (min-width: 961px) {
  .nav__mobile,
  .nav__mobile:not([hidden]) {
    display: none !important;
  }
}

@media (max-width: 960px) {
  .nav__links,
  .nav__contact {
    display: none;
  }
  .nav__inner {
    grid-template-columns: 1fr auto;
  }
  .nav__toggle {
    display: inline-flex;
  }

  .featured {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 320px 240px 240px;
  }
  .featured__card--lg {
    grid-row: 1;
    grid-column: 1 / -1;
  }
  .featured__caption {
    transform: translateY(0);
    opacity: 1;
  }

  .series__layout,
  .about__layout {
    grid-template-columns: 1fr;
  }

  .numbers__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }

  .prints__row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 22px;
  }

  .hero {
    padding: calc(var(--nav-h) + 32px) 22px 32px;
  }
  .hero__title {
    font-size: clamp(64px, 18vw, 110px);
    line-height: 0.92;
  }
  .hero__meta {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    gap: 8px;
  }
  .hero__meta-right {
    text-align: left;
  }

  .marquee__group span {
    font-size: 26px;
    padding: 0 18px;
  }

  .featured {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 280px);
    cursor: auto;
  }
  .featured__card--lg {
    grid-row: 1;
    grid-column: 1;
  }

  .field--glass {
    flex-direction: column;
    align-items: stretch;
    border-radius: 22px;
    padding: 8px;
    gap: 8px;
  }
  .field--glass input {
    text-align: center;
    padding: 14px 12px;
  }
  .field--glass .btn {
    border-radius: var(--radius-pill);
    padding: 14px 22px;
  }

  .footer__cols {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__base {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* hide custom cursor on touch devices */
@media (pointer: coarse) {
  .cursor-dot {
    display: none !important;
  }
  .featured {
    cursor: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .marquee__track {
    animation: none;
  }
  .hero__img,
  .series__img,
  .cta__bg {
    animation: none;
  }
}
