/* =========================================================
   Katarina · UGC + Content Creator Portfolio (v2)
   Direction: Mediterranean editorial. Refined, sun-bleached,
   with a hard editorial spine and one bold display moment.
   Palette: #B3D6FE bg · #F3FFAB accent · #1A2A4A navy.
   ========================================================= */

:root {
  --bg: #B3D6FE;
  --bg-soft: #C7E0FE;
  --bg-deep: #9CC1F0;
  --accent: #F3FFAB;
  --accent-deep: #E2F082;
  --navy: #1A2A4A;
  --navy-soft: #3F557E;
  --navy-mute: #6B82A8;
  --cream: #FFF8E7;
  --amber: #F5C95B;
  --white: #FFFFFF;

  --display: 'Staatliches', 'Bebas Neue', Impact, 'Arial Narrow', sans-serif;
  --ui: 'Ibarra Real Nova', Georgia, 'Times New Roman', serif;

  --max: 1280px;
  --radius: 22px;
  --radius-sm: 14px;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  --rule: 1px solid color-mix(in oklab, var(--navy) 15%, transparent);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--ui);
  font-weight: 491;
  background: var(--bg);
  color: var(--navy);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv01";
  overflow-x: hidden;
}

/* subtle grain texture, fixed to viewport for atmosphere */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .055;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

a { color: inherit; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--accent); color: var(--navy); }

/* ---------- Top bar (transparent over hero, solid after scroll) ---------- */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 2rem;
  background: transparent;
  z-index: 50;
  border-bottom: 1px solid transparent;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), background .35s var(--ease), backdrop-filter .35s var(--ease), border-color .35s var(--ease);
}
.topbar.scrolled {
  opacity: 1;
  pointer-events: auto;
  transform: none;
  background: color-mix(in oklab, var(--bg) 78%, white);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: color-mix(in oklab, var(--navy) 10%, transparent);
}
.topbar .logo {
  font-family: var(--ui);
  font-weight: 600;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: -.01em;
  transition: color .3s var(--ease);
}
.topbar.scrolled .logo { color: var(--navy); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0 auto;
}
.nav-links a {
  color: var(--accent);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: .92;
  transition: opacity .2s var(--ease), color .3s var(--ease);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { transform: scaleX(1); }
.topbar.scrolled .nav-links a { color: var(--navy); opacity: .75; }

.topbar-cta {
  background: var(--accent);
  color: var(--navy);
  text-decoration: none;
  padding: .7rem 1.15rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .2s var(--ease), background .2s var(--ease), color .3s var(--ease);
  white-space: nowrap;
}
.topbar-cta:hover { transform: translateY(-1px); background: var(--accent-deep); }
.topbar.scrolled .topbar-cta { background: var(--navy); color: var(--accent); }
.topbar.scrolled .topbar-cta:hover { background: #0F1B33; }

/* ---------- Hero (full-screen video background) ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy) url('images/hero.jpg') center/cover no-repeat;
  isolation: isolate;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 75%;
  z-index: 0;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(26,42,74,0) 0%, rgba(26,42,74,.15) 60%, rgba(26,42,74,.55) 100%),
    linear-gradient(180deg, rgba(26,42,74,.4) 0%, rgba(26,42,74,.05) 30%, rgba(26,42,74,.55) 100%);
  pointer-events: none;
}

/* Editorial corner labels */
.hero-corner {
  position: absolute;
  z-index: 3;
  color: var(--accent);
  font-family: var(--ui);
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0;
  animation: fadeUp .9s var(--ease-out) .8s forwards;
}
.hero-corner--tl { top: 6rem; left: 2rem; display: flex; gap: .55rem; align-items: baseline; }
.hero-corner--tr { top: 6rem; right: 2rem; }
.hero-corner--bl { bottom: 2rem; left: 2rem; }
.hero-corner-num {
  font-family: var(--display);
  font-size: 1.6rem;
  letter-spacing: 0;
}
.hero-corner-label { opacity: .85; }

/* KATARINA — the one big moment */
.hero-name {
  position: relative;
  z-index: 2;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(4rem, 16.5vw, 15rem);
  line-height: .88;
  letter-spacing: .015em;
  color: var(--accent);
  text-align: center;
  margin: 0;
  padding: 0 1rem;
  text-shadow: 0 6px 40px rgba(0, 0, 0, .35);
  max-width: 100vw;
  opacity: 0;
  transform: translateY(40px) scale(1.04);
  animation: heroIn 1.4s var(--ease-out) .4s forwards;
}
.hero-sub {
  position: relative;
  z-index: 2;
  margin-top: 1.25rem;
  color: var(--accent);
  font-family: var(--ui);
  font-style: italic;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  letter-spacing: .04em;
  opacity: 0;
  animation: fadeUp .9s var(--ease-out) 1s forwards;
}
.hero-handle {
  position: relative;
  z-index: 2;
  margin-top: .75rem;
  color: var(--accent);
  font-family: var(--display);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  letter-spacing: .15em;
  text-transform: lowercase;
  text-decoration: none;
  opacity: 0;
  transition: opacity .2s var(--ease), transform .2s var(--ease), text-shadow .2s var(--ease);
  animation: fadeUp .9s var(--ease-out) 1.15s forwards;
}
.hero-handle:hover {
  transform: translateY(-1px);
  text-shadow: 0 0 24px color-mix(in oklab, var(--accent) 60%, transparent);
}

.hero-scroll {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  color: var(--accent);
  text-decoration: none;
  font-family: var(--ui);
  font-size: .7rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 3;
  opacity: 0;
  animation: fadeUp .9s var(--ease-out) 1.2s forwards;
}
.hero-scroll-line {
  width: 1px;
  height: 38px;
  background: var(--accent);
  display: block;
  transform-origin: top;
  animation: lineDrop 1.8s var(--ease-out) infinite;
}

@keyframes heroIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes navIn {
  to { opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes lineDrop {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  46% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Shared button ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 1rem 1.7rem;
  border-radius: 999px;
  font-family: var(--ui);
  font-weight: 600;
  font-size: .92rem;
  text-decoration: none;
  letter-spacing: .03em;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
  border: 1.5px solid transparent;
}
.btn.primary { background: var(--navy); color: var(--accent); }
.btn.primary:hover { transform: translateY(-2px); background: #0F1B33; }
.btn.ghost {
  background: transparent;
  color: var(--navy);
  border-color: color-mix(in oklab, var(--navy) 35%, transparent);
}
.btn.ghost:hover { background: color-mix(in oklab, var(--navy) 8%, transparent); transform: translateY(-2px); }
.btn.block { width: 100%; }

/* ---------- Marquee strip ---------- */
.marquee {
  position: relative;
  z-index: 5;
  background: var(--navy);
  color: var(--accent);
  padding: 1.1rem 0;
  overflow: hidden;
  border-top: 1px solid color-mix(in oklab, var(--accent) 18%, var(--navy));
  border-bottom: 1px solid color-mix(in oklab, var(--accent) 18%, var(--navy));
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  width: max-content;
  animation: marquee 42s linear infinite;
  font-family: var(--display);
  font-size: clamp(.95rem, 1.4vw, 1.25rem);
  text-transform: uppercase;
  letter-spacing: .2em;
  white-space: nowrap;
  padding-left: 2.25rem;
}
.marquee-dot {
  color: color-mix(in oklab, var(--accent) 55%, transparent);
  font-size: .85em;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Editorial section counter ---------- */
.section-num {
  display: flex;
  align-items: baseline;
  gap: .9rem;
  margin-bottom: 1.25rem;
  font-family: var(--ui);
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--navy-soft);
  padding-bottom: .9rem;
  border-bottom: var(--rule);
}
.section-num span {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  color: var(--navy);
  letter-spacing: 0;
}
.section-num em {
  font-style: italic;
  font-weight: 500;
  font-size: .85rem;
  color: var(--navy);
}
.section-num.inverted { border-color: color-mix(in oklab, var(--accent) 30%, transparent); color: color-mix(in oklab, var(--accent) 70%, white); }
.section-num.inverted span { color: var(--accent); }
.section-num.inverted em { color: var(--accent); }

.section-h {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: .95;
  letter-spacing: .005em;
  color: var(--navy);
  margin-bottom: .5rem;
}
#work .section-h {
  display: inline-block;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: color-mix(in oklab, var(--navy) 20%, transparent);
  text-underline-offset: 12px;
}
.section-lead {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  color: var(--navy-soft);
  max-width: 640px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* ---------- About ---------- */
.about {
  position: relative;
  z-index: 2;
  padding: 7rem 2rem 6rem;
  max-width: var(--max);
  margin: 0 auto;
}
.about-title {
  font-family: var(--display);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(3.2rem, 9vw, 7rem);
  line-height: .92;
  letter-spacing: .015em;
  color: var(--navy);
  text-transform: uppercase;
  margin: 0 0 .75rem;
}
.about-tagline {
  font-family: var(--ui);
  font-style: italic;
  font-weight: 491;
  font-size: clamp(1.2rem, 1.7vw, 1.6rem);
  color: var(--navy);
  letter-spacing: .01em;
  margin: 0 0 3rem;
  max-width: 720px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4rem;
  align-items: start;
}
.about-media .media-frame {
  max-width: 460px;
  margin: 0 auto;
}
.about-location {
  margin: 1.4rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--ui);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--navy);
  letter-spacing: .02em;
  max-width: 460px;
}
.about-location-icon {
  width: 18px;
  height: 18px;
  color: var(--navy);
  flex-shrink: 0;
}
.about-text { max-width: 620px; }
.about-bullets {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  display: grid;
  gap: .9rem;
}
.about-bullets li {
  position: relative;
  padding-left: 1.65rem;
  font-family: 'Fraunces', 'Times New Roman', Georgia, serif;
  font-variation-settings: "SOFT" 50, "WONK" 1, "opsz" 36;
  font-size: clamp(1.05rem, 1.25vw, 1.25rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -.005em;
  color: var(--navy);
}
.about-bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -.15em;
  color: var(--navy);
  font-size: 1.6em;
  line-height: 1;
}

/* Stand-out email + socials */
.about-contact {
  margin-top: 2.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
.email-cta {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: 1.15rem 1.8rem;
  background: var(--navy);
  color: var(--accent);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: transform .25s var(--ease), background .25s var(--ease);
  max-width: 100%;
}
.email-cta-icon {
  width: 22px;
  height: 22px;
  color: var(--accent);
  flex-shrink: 0;
}
.email-cta:hover {
  transform: translateY(-2px);
  background: #0F1B33;
}
.email-cta-addr {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  letter-spacing: .015em;
  color: var(--accent);
  word-break: break-all;
}
.about-socials {
  display: flex;
  gap: .75rem;
  align-items: center;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid color-mix(in oklab, var(--navy) 35%, transparent);
  color: var(--navy);
  text-decoration: none;
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease), border-color .2s var(--ease);
}
.social-icon svg { width: 22px; height: 22px; }
.social-icon:hover {
  background: var(--navy);
  color: var(--accent);
  border-color: var(--navy);
  transform: translateY(-2px);
}

/* ---------- Shared media frame ---------- */
.media-frame {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg,
    color-mix(in oklab, var(--bg-deep) 90%, var(--navy)),
    color-mix(in oklab, var(--bg) 70%, var(--navy)));
  box-shadow:
    0 30px 80px rgba(26, 42, 74, .18),
    0 2px 0 0 var(--navy),
    -10px 10px 0 0 var(--accent);
  transition: transform .4s var(--ease);
}
.media-frame:hover { transform: translateY(-3px); }
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 2;
}
.frame-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--accent);
  color: var(--navy);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .4rem .8rem;
  border-radius: 999px;
  z-index: 3;
}

/* ---------- Tinted sections (multi-shade background rhythm) ---------- */
section.tinted { position: relative; }
section.tinted::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  background: var(--bg-soft);
  z-index: -1;
}

/* ---------- Numbers ---------- */
.numbers {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem 2rem;
  padding: 4.5rem 2rem;
  max-width: var(--max);
  margin: 0 auto;
  border-top: var(--rule);
  border-bottom: var(--rule);
}
.stat { text-align: center; }
.num-wrap { display: inline-flex; align-items: baseline; gap: .15rem; }
.num {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  color: var(--navy);
  line-height: 1;
  letter-spacing: 0;
}
.suffix {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.8vw, 2.2rem);
  color: var(--navy);
}
.stat .label {
  display: block;
  margin-top: .6rem;
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy-soft);
  font-weight: 500;
}

/* ---------- Work ---------- */
.work {
  position: relative; z-index: 2;
  padding: 7rem 2rem 5rem;
  max-width: var(--max);
  margin: 0 auto;
}
.work-vertical { margin-bottom: 5.5rem; }
.work-vertical:last-of-type { margin-bottom: 0; }
.work-vertical-head {
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: var(--rule);
}
#work-travel .work-vertical-head {
  border-bottom: none;
  padding-bottom: 0;
}
.vertical-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: .95;
  letter-spacing: .005em;
  color: var(--accent);
  margin: 0 0 .65rem;
}
.vertical-lead {
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  color: var(--navy-soft);
  line-height: 1.6;
  max-width: none;
  margin: 0;
}
.work-vertical-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Pets section: editorial panel with a copy column beside the video + Ziggy photo. */
.pets-panel {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.75rem, 3vw, 2.75rem);
  border-radius: var(--radius);
  background: linear-gradient(135deg,
    color-mix(in oklab, var(--bg-soft) 80%, white),
    color-mix(in oklab, var(--bg) 88%, white));
  box-shadow:
    0 30px 80px rgba(26, 42, 74, .14),
    -12px 12px 0 0 var(--accent);
}
.pets-copy {
  flex: 1 1 220px;
  max-width: 22rem;
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.pets-headline {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: .92;
  color: var(--navy);
  margin: 0;
}
.pets-bio-text {
  margin: 0;
  font-family: var(--ui);
  font-size: clamp(1.02rem, 1.15vw, 1.18rem);
  line-height: 1.55;
  color: var(--navy-soft);
}
.pets-media {
  display: flex;
  align-items: stretch;
  gap: clamp(1rem, 1.5vw, 1.5rem);
}
.pets-figure {
  margin: 0;
}
.pets-figure-video { width: 286px; }
.pets-figure-photo { width: 286px; }
.pets-intro-photo {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: color-mix(in oklab, var(--navy) 8%, var(--bg-deep));
}
.pets-intro-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pets-panel .work-vertical-grid {
  grid-template-columns: 1fr;
}
/* This section is about Ziggy, so hide the per-card brand label here. */
#work-pets .card-caption { display: none; }

/* Cards */
.card {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: var(--radius);
  overflow: hidden;
  background: color-mix(in oklab, var(--navy) 8%, var(--bg-deep));
  cursor: pointer;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  box-shadow: 0 6px 22px rgba(26, 42, 74, .08);
  isolation: isolate;
}
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid var(--accent);
  border-radius: var(--radius);
  opacity: 0;
  transform: scale(.96);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
  pointer-events: none;
  z-index: 3;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(26, 42, 74, .22);
}
.card:hover::after { opacity: 1; transform: scale(1); }
.card img,
.card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.card:hover img,
.card:hover video { transform: scale(1.05); }
/* The lazily-created <video> sits on top of the poster <img>. Keep it hidden
   until it has actually painted a frame (JS adds .has-video on loadeddata /
   playing) so iOS never shows a black rectangle over the poster while the
   clip is still loading. */
.card-video {
  opacity: 0;
  transition: opacity .35s var(--ease), transform .8s var(--ease);
}
.card-item.has-video .card-video { opacity: 1; }
/* Custom play/pause overlay — visible only on card hover */
.card-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(.9);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(20, 30, 50, .55);
  border: 1.5px solid var(--accent);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease), background .2s var(--ease), color .2s var(--ease);
  z-index: 3;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.card:hover .card-play {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.card-play:hover {
  background: var(--accent);
  color: var(--navy);
}
.card-play svg { width: 30px; height: 30px; display: block; }
.card-play .cp-pause { display: none; }
.card-item.is-playing .card-play .cp-play { display: none; }
.card-item.is-playing .card-play .cp-pause { display: block; }

/* Touch devices have no hover: always show the play affordance so users
   know the cards are tappable. Hide it once a clip is playing. */
@media (hover: none) {
  .card-play {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
  }
  .card-item.is-playing .card-play { opacity: 0; }
  .card-seek { opacity: 1; }
}

/* Floating seek bar at the bottom of the video bubble */
.card-seek {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.1rem;
  height: 6px;
  background: rgba(20, 30, 50, .55);
  border-radius: 999px;
  cursor: pointer;
  z-index: 4;
  touch-action: none;
  transition: height .2s var(--ease), background .2s var(--ease);
  box-shadow: 0 2px 14px rgba(0, 0, 0, .25);
}
.card:hover .card-seek {
  height: 8px;
  background: rgba(20, 30, 50, .7);
}
.card-seek-fill {
  position: relative;
  height: 100%;
  width: 0;
  background: var(--accent);
  border-radius: 999px;
  pointer-events: none;
}
.card-seek-dot {
  position: absolute;
  top: 50%;
  right: -7px;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .35), 0 0 0 2px rgba(20, 30, 50, .35);
  pointer-events: none;
  transition: width .2s var(--ease), height .2s var(--ease), right .2s var(--ease);
}
.card:hover .card-seek-dot {
  width: 18px;
  height: 18px;
  right: -9px;
}

/* Card caption sits BELOW the video bubble */
.card-caption {
  padding: .9rem .1rem 0;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.card-caption .brand {
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -.005em;
  color: var(--navy);
  line-height: 1.25;
}
.card-caption .style {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--navy-soft);
  font-weight: 600;
}
.card-caption .location {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: .4rem;
  font-family: var(--ui);
  font-style: italic;
  font-size: .88rem;
  color: var(--navy);
  letter-spacing: .01em;
}
.card-caption .location-icon {
  width: 14px;
  height: 14px;
  color: var(--navy);
  flex-shrink: 0;
}

/* Placeholder cards */
.card.placeholder {
  background:
    linear-gradient(135deg,
      color-mix(in oklab, var(--bg-deep) 80%, var(--navy)),
      color-mix(in oklab, var(--bg) 60%, var(--navy)));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  color: var(--cream);
  border: 1.5px dashed color-mix(in oklab, var(--cream) 50%, transparent);
}
.card.placeholder .ph-tag-text {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.15;
  margin-bottom: .55rem;
  color: var(--accent);
}
.card.placeholder .ph-sub {
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .85;
  font-family: var(--ui);
}

.empty-hint {
  margin-top: 2rem;
  font-size: .92rem;
  color: var(--navy-soft);
  text-align: center;
}
.empty-hint code {
  background: color-mix(in oklab, var(--navy) 8%, transparent);
  padding: .15rem .45rem;
  border-radius: 6px;
  font-size: .85em;
}

/* ---------- Photography ---------- */
.photography {
  position: relative; z-index: 2;
  padding: 6rem 2rem 5rem;
  max-width: var(--max);
  margin: 0 auto;
}
/* Bold heading + subtitle, reference-inspired */
.photography-h {
  font-size: clamp(3.25rem, 9.5vw, 7rem);
  line-height: .86;
  margin-bottom: .1rem;
}
.photography-sub {
  font-style: italic;
  font-size: clamp(1.15rem, 1.8vw, 1.6rem);
  color: var(--navy-soft);
  max-width: none;
  margin-bottom: 2.75rem;
  letter-spacing: .01em;
}
/* Masonry: photos shown uncropped at their natural aspect ratio */
.photo-grid {
  column-count: 3;
  column-gap: 1rem;
}
#photography .photo-card {
  aspect-ratio: auto;
  height: auto;
  break-inside: avoid;
  margin-bottom: 1rem;
  display: block;
}
#photography .photo-card img {
  position: static;
  width: 100%;
  height: auto;
  display: block;
}
.photo-card {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: color-mix(in oklab, var(--navy) 8%, var(--bg-deep));
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  box-shadow: 0 4px 16px rgba(26, 42, 74, .08);
}
.photo-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(26, 42, 74, .15); }
.photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.photo-card:hover img { transform: scale(1.04); }
.photo-card .meta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: .85rem 1rem 1rem;
  background: linear-gradient(to top, rgba(26, 42, 74, .92), transparent);
  color: var(--cream);
}
.photo-card .meta .brand {
  font-weight: 600;
  font-size: .95rem;
  color: var(--white);
}
.photo-card .meta .style {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--accent) 90%, white);
  font-weight: 500;
}
.photo-card.placeholder {
  background: linear-gradient(135deg,
    color-mix(in oklab, var(--bg-deep) 80%, var(--navy)),
    color-mix(in oklab, var(--bg) 60%, var(--navy)));
  border: 1.5px dashed color-mix(in oklab, var(--cream) 50%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-family: var(--ui);
  font-style: italic;
  font-size: .95rem;
}

/* ---------- Services / Packages ---------- */
.services {
  position: relative; z-index: 2;
  padding: 7rem 2rem 5rem;
  max-width: var(--max);
  margin: 0 auto;
}
/* Accent "rates on request" note under the title */
.rates-note {
  display: inline-block;
  margin: -.4rem 0 2.5rem;
  font-family: var(--ui);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #F25C8A;
}

/* Process timeline (UGC Production) */
.timeline-card {
  position: relative;
  padding: 2.4rem 2.1rem 2.5rem;
  background: color-mix(in oklab, var(--bg) 50%, white);
  border: 1px solid color-mix(in oklab, var(--navy) 12%, transparent);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.timeline-card h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.7rem, 2.4vw, 2.1rem);
  color: var(--navy);
  margin: 0;
}
.timeline-sub {
  font-family: var(--ui);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--navy-soft);
  max-width: 62ch;
  margin: 0;
}
.timeline {
  list-style: none;
  position: relative;
  margin: 1.4rem 0 .5rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 1.1rem; right: 1.1rem;
  height: 2px;
  background: color-mix(in oklab, var(--navy) 16%, transparent);
  z-index: 0;
}
.tl-step {
  position: relative;
  padding-top: 2.9rem;
}
.tl-num {
  position: absolute;
  top: 0; left: 0;
  width: 2rem; height: 2rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--accent);
  font-family: var(--display);
  font-size: 1.05rem;
  line-height: 1;
  z-index: 2;
}
.tl-day {
  display: block;
  font-size: .66rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--navy-soft);
  margin-bottom: .3rem;
}
.tl-step h4 {
  font-family: var(--ui);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin: 0 0 .35rem;
}
.tl-step p {
  font-family: var(--ui);
  font-size: .98rem;
  line-height: 1.5;
  color: var(--navy-soft);
  margin: 0;
}
.timeline-turnaround {
  font-family: var(--ui);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy);
  margin: .75rem 0 .25rem;
  padding: .55rem .95rem;
  background: color-mix(in oklab, var(--accent) 55%, white);
  border-radius: var(--radius-sm);
  align-self: flex-start;
}
.timeline-cta { align-self: flex-start; }

.value-kicker {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--navy-soft);
  font-weight: 600;
  margin: 2.75rem 0 1.1rem;
}
.value-kicker:first-of-type { margin-top: 2.25rem; }
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.1rem;
}
.value-card {
  padding: 1.5rem 1.45rem 1.6rem;
  border-radius: var(--radius-sm);
  background: color-mix(in oklab, var(--bg) 38%, white);
  border: 1px solid color-mix(in oklab, var(--navy) 10%, transparent);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.value-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(26, 42, 74, .1); }
.value-card h4 {
  position: relative;
  font-family: var(--ui);
  font-weight: 700;
  font-size: 1.08rem;
  line-height: 1.25;
  color: var(--navy);
  margin: 0 0 .5rem;
  padding-left: 1.1rem;
}
.value-card h4::before {
  content: "";
  position: absolute;
  left: 0; top: .5em;
  width: .6rem; height: .6rem;
  border-radius: 2px;
  background: var(--accent-deep);
}
.value-card p {
  font-family: var(--ui);
  font-size: .93rem;
  line-height: 1.5;
  color: var(--navy-soft);
  margin: 0;
}
.packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.package {
  position: relative;
  padding: 2.2rem 1.85rem 2.35rem;
  background: color-mix(in oklab, var(--bg) 50%, white);
  border: 1px solid color-mix(in oklab, var(--navy) 12%, transparent);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.package:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(26, 42, 74, .12); }
.package.featured {
  background: var(--navy);
  color: var(--accent);
  border-color: var(--navy);
  box-shadow: 0 10px 32px rgba(26, 42, 74, .25);
}
.package.featured h3,
.package.featured .pkg-tag,
.package.featured .pkg-price,
.package.featured ul,
.package.featured li { color: var(--accent); }
.package.featured ul li::before { background: var(--accent); }
.package.featured .btn.primary {
  background: var(--accent);
  color: var(--navy);
}
.package.featured .btn.primary:hover { background: var(--accent-deep); }

.pill {
  position: absolute;
  top: -.7rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--navy);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .35rem .85rem;
  border-radius: 999px;
  white-space: nowrap;
}
.pkg-tag {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--navy-soft);
  font-weight: 600;
}
.package h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.7rem, 2.4vw, 2.1rem);
  color: var(--navy);
  letter-spacing: 0;
}
.pkg-price {
  font-size: .95rem;
  color: var(--navy-soft);
  font-weight: 500;
  letter-spacing: .01em;
  margin-top: -.65rem;
}
.package ul {
  list-style: none;
  display: grid;
  gap: .5rem;
  margin-bottom: .5rem;
}
.package ul li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--navy);
}
.package ul li::before {
  content: "";
  position: absolute;
  left: 0; top: .65em;
  width: .55rem; height: 1px;
  background: var(--navy);
}

/* ---------- Connect ---------- */
.connect {
  position: relative;
  z-index: 2;
  padding: 8rem 2rem 8rem;
  text-align: center;
  background: var(--navy);
  color: var(--accent);
  margin-top: 4rem;
  overflow: hidden;
}
.connect::before {
  content: "";
  position: absolute;
  top: -30%; left: -10%;
  width: 70%; height: 70%;
  background: radial-gradient(closest-side, color-mix(in oklab, var(--accent) 22%, transparent), transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}
.connect::after {
  content: "";
  position: absolute;
  bottom: -30%; right: -10%;
  width: 60%; height: 60%;
  background: radial-gradient(closest-side, color-mix(in oklab, var(--amber) 18%, transparent), transparent 70%);
  pointer-events: none;
  filter: blur(50px);
}
.connect > * { position: relative; z-index: 1; }
.connect .section-num { max-width: 880px; margin-left: auto; margin-right: auto; }
.connect-headline {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 1;
  letter-spacing: .005em;
  color: var(--accent);
  margin: 1rem auto 1.5rem;
  max-width: 920px;
}
.connect-body {
  max-width: 620px;
  margin: 0 auto 2.5rem;
  color: color-mix(in oklab, var(--accent) 80%, white);
  font-size: 1.08rem;
  line-height: 1.7;
}
.email-btn {
  display: inline-block;
  padding: 1.2rem 2.2rem;
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .02em;
  margin-bottom: 2.5rem;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.email-btn:hover { transform: translateY(-2px); background: var(--accent); color: var(--navy); }
.connect-note {
  font-family: var(--ui);
  font-size: 1.05rem;
  color: color-mix(in oklab, var(--accent) 75%, white);
  margin-bottom: 1.4rem;
}
.socials {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.socials .social-icon {
  color: var(--accent);
  border-color: color-mix(in oklab, var(--accent) 45%, transparent);
}
.socials .social-icon:hover {
  background: var(--accent);
  color: var(--navy);
  border-color: var(--accent);
}

/* ---------- Footer ---------- */
footer {
  padding: 2rem;
  text-align: center;
  background: var(--navy);
  color: color-mix(in oklab, var(--accent) 55%, var(--navy));
  font-size: .82rem;
  letter-spacing: .04em;
  border-top: 1px solid color-mix(in oklab, var(--accent) 15%, transparent);
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  background: rgba(20, 30, 50, .94);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 2rem;
  animation: fade .25s var(--ease);
}
.lightbox.open { display: flex; }
.lightbox video,
.lightbox img {
  max-width: min(720px, 100%);
  max-height: 80vh;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
  background: black;
}
.lightbox-meta {
  color: var(--accent);
  text-align: center;
  font-size: .9rem;
  letter-spacing: .04em;
  max-width: 720px;
}
.lightbox-meta strong { color: var(--white); font-weight: 600; }
.lightbox-meta .tag {
  display: inline-block;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .85;
  margin-left: .5rem;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: var(--accent);
  color: var(--navy);
  width: 48px; height: 48px;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  font-weight: 700;
  transition: transform .2s var(--ease);
}
.lightbox-close:hover { transform: rotate(90deg); }

@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .nav-links { display: none; }
  .topbar { padding: 1rem 1.25rem; }
  .topbar-cta { padding: .6rem .95rem; font-size: .72rem; }
  .hero { min-height: 92vh; }
  /* Hide the top corner labels on narrow viewports — they collide with KATARINA. Keep the bottom-left REEL · 2026 as decoration. */
  .hero-corner--tl, .hero-corner--tr { display: none; }
  .hero-corner--bl { bottom: 1.25rem; left: 1.25rem; }
  .hero-name { font-size: clamp(3.4rem, 18vw, 9rem); }
  .marquee-track { gap: 1.5rem; padding-left: 1.5rem; }
  .about { padding: 4.5rem 1.25rem 3.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-media .media-frame { max-width: 380px; }
  .numbers { padding: 3rem 1.25rem; gap: 2rem 1rem; }
  .work, .photography, .services { padding-left: 1.25rem; padding-right: 1.25rem; }
  .timeline { grid-template-columns: 1fr; gap: 0; }
  .timeline::before {
    top: 1rem; bottom: 1rem; left: 1rem; right: auto;
    width: 2px; height: auto;
  }
  .tl-step { padding-top: 0; padding-left: 3rem; padding-bottom: 1.5rem; }
  .tl-step:last-child { padding-bottom: 0; }
  .tl-num { top: -.1rem; }
  .connect { padding: 6rem 1.5rem; }
  .work-vertical { margin-bottom: 3.5rem; }
  .work-vertical-head { gap: .65rem; padding-bottom: 1rem; margin-bottom: 1.25rem; }
  .work-vertical-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
  .pets-panel {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 1.5rem;
  }
  .pets-copy { max-width: none; }
  .pets-media { flex-wrap: wrap; justify-content: center; gap: 1.25rem; }
  .pets-figure-video, .pets-figure-photo { width: 100%; max-width: 300px; }
  .pets-intro-photo { height: auto; aspect-ratio: 3/4; min-height: 0; }
  .photo-grid {
    column-count: 2;
    column-gap: .75rem;
  }
  #photography .photo-card { margin-bottom: .75rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-name { opacity: 1; transform: none; }
  .hero-sub, .hero-scroll, .hero-corner, .topbar { opacity: 1; }
}
