/* ============================================================
   Tillie — Lifestyle UGC Creator
   Design system: premium "clean girl / cozy lifestyle, earthy warm"
   Fonts: Fraunces (display) + Mulish (body)
   Palette is contrast-engineered: all text pulls from espresso/cocoa;
   warm mids (oak/clay/sage/blush) are decorative only.
   ============================================================ */

:root {
  /* ── Surfaces ── */
  --cream:        #FAF6EF;
  --latte:        #F1E8DA;
  --oat:          #E7D9C4;

  /* ── Warm structure (NOT for body text) ── */
  --oak:          #C9A981;
  --clay:         #B68A6A;

  /* ── Ink ── */
  --espresso:     #2E2420;
  --cocoa:        #4A3B33;
  --espresso-700: #3A2E28;

  /* ── Sage ── */
  --sage:         #8A9A82;
  --sage-deep:    #5A6B52;
  --sage-bg:      #DDE3D6;

  /* ── Blush accent (~5% budget) ── */
  --blush:        #E8C9C2;
  --blush-deep:   #A05C52;

  /* ── Roles ── */
  --bg:           var(--cream);
  --ink:          var(--espresso);
  --ink-soft:     var(--cocoa);
  --line:         #E6DCCB;
  --cta:          var(--espresso);

  /* ── Type scale (16px base, Major Third) ── */
  --step--1: 0.8rem;
  --step-0:  1rem;
  --step-1:  1.25rem;
  --step-2:  1.563rem;
  --step-3:  1.953rem;
  --step-4:  2.75rem;
  --step-5:  clamp(2.75rem, 6vw, 5.25rem);

  /* ── Spacing (8px base) ── */
  --space-2xs: 0.5rem;
  --space-xs:  0.75rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1200px;
  --measure: 64ch;

  --shadow-soft: 0 1px 2px rgba(46,36,32,.04), 0 8px 30px rgba(46,36,32,.06);
  --shadow-lift: 0 6px 16px rgba(46,36,32,.08), 0 24px 60px rgba(46,36,32,.12);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Mulish", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: var(--step-0);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: var(--sage-deep); text-decoration: none; }

/* film-grain overlay — subtle, page-wide */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: .045; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── Typography ── */
h1, h2, h3, .display {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 540;
  font-variation-settings: "opsz" 144, "SOFT" 60, "WONK" 0;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--ink);
}
h2 { font-size: var(--step-4); line-height: 1.12; }
h3 { font-size: var(--step-2); line-height: 1.25; font-weight: 560; }
p  { max-width: var(--measure); }
.lead { font-size: var(--step-1); color: var(--ink-soft); }

.eyebrow {
  font-family: "Mulish", sans-serif;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: var(--step--1);
  font-weight: 700;
  color: var(--clay);
}
.serif-accent { font-family: "Fraunces", serif; font-style: italic; font-weight: 460; }

/* ── Layout ── */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--space-md); }
section { padding-block: var(--space-2xl); }
.section-head { max-width: 52ch; margin-bottom: var(--space-lg); }
.section-head .eyebrow { display: block; margin-bottom: var(--space-xs); }
.bg-latte { background: var(--latte); }
.bg-sage  { background: var(--sage-bg); }
.bg-dark  { background: var(--espresso-700); color: var(--cream); }
.bg-dark h2, .bg-dark h3 { color: var(--cream); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 700; font-size: var(--step-0);
  padding: .85em 1.6em; border-radius: 999px;
  border: 1.5px solid transparent; cursor: pointer;
  transition: background .22s var(--ease), color .22s var(--ease),
              transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.btn-primary { background: var(--cta); color: var(--cream); }
.btn-primary:hover { background: var(--cocoa); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--oak); }
.btn-ghost:hover { background: var(--oat); transform: translateY(-2px); }
.btn-lg { font-size: var(--step-1); padding: 1em 1.9em; }

/* ── Nav ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled { background: rgba(250,246,239,.86); backdrop-filter: blur(10px);
  border-bottom-color: var(--line); box-shadow: 0 2px 20px rgba(46,36,32,.05); }
.nav .brand { font-family: "Fraunces", serif; font-size: var(--step-2); font-weight: 600; color: var(--ink); letter-spacing: .01em; }
.nav .brand span { color: var(--clay); }
.nav-links { display: flex; align-items: center; gap: var(--space-lg); list-style: none; }
.nav-links a { color: var(--ink-soft); font-weight: 600; font-size: var(--step-0); position: relative; }
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 1.5px; width: 0;
  background: var(--clay); transition: width .25s var(--ease);
}
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .25s var(--ease); }

/* ── Hero ── */
.hero { padding-block: var(--space-2xl) var(--space-2xl); }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--space-2xl);
  align-items: center;
}
.hero-copy .eyebrow { margin-bottom: var(--space-md); display: block; }
.hero h1 { font-size: var(--step-5); margin-bottom: var(--space-md);
  font-variation-settings: "opsz" 144, "SOFT" 70, "WONK" 0; font-weight: 500; }
.hero h1 em { font-style: italic; color: var(--clay); font-weight: 460; }
.hero .lead { margin-bottom: var(--space-lg); max-width: 46ch; }
.hero-cta { display: flex; gap: var(--space-sm); flex-wrap: wrap; }
.hero-media { position: relative; }
.hero-media .frame {
  position: relative; border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow-lift); aspect-ratio: 4 / 5; background: var(--oat);
}
.hero-media .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-media .mat {
  position: absolute; inset: auto -18px -18px auto; width: 62%; height: 62%;
  background: var(--blush); border-radius: 20px; z-index: -1;
}
.hero-media .badge {
  position: absolute; left: -22px; bottom: 28px;
  background: var(--cream); border: 1px solid var(--line); border-radius: 14px;
  padding: .7em 1em; box-shadow: var(--shadow-soft); font-size: var(--step--1);
  display: flex; align-items: center; gap: .55em; font-weight: 700; color: var(--ink-soft);
}
.hero-media .badge b { color: var(--ink); font-size: var(--step-0); }

/* ── About ── */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: var(--space-2xl); align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow-soft); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.tags { display: flex; flex-wrap: wrap; gap: var(--space-2xs); margin-top: var(--space-md); }
.tag {
  display: inline-flex; align-items: center; gap: .4em;
  background: var(--cream); border: 1px solid var(--line); border-radius: 999px;
  padding: .45em 1em; font-size: var(--step--1); font-weight: 600; color: var(--ink-soft);
}
.about p + p { margin-top: var(--space-sm); }

/* ── Category cards ── */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.cat {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-soft);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.cat:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.cat .ph { aspect-ratio: 5/4; overflow: hidden; background: var(--oat); }
.cat .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), filter .6s var(--ease); }
.cat:hover .ph img { transform: scale(1.04); filter: brightness(1.03); }
.cat .body { padding: var(--space-md); }
.cat .body h3 { margin-bottom: var(--space-2xs); }
.cat .body p { color: var(--ink-soft); font-size: var(--step-0); }

/* ── Portfolio bento ── */
.bento {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px; gap: var(--space-sm);
}
.tile {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--oat); box-shadow: var(--shadow-soft); cursor: pointer;
}
.tile img, .tile video { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), filter .6s var(--ease); }
.tile:hover img, .tile:hover video { transform: scale(1.04); filter: brightness(1.03); }
.tile .meta {
  position: absolute; inset: auto 0 0 0; padding: var(--space-sm);
  background: linear-gradient(transparent, rgba(46,36,32,.62));
  color: var(--cream); opacity: 0; transform: translateY(8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.tile:hover .meta { opacity: 1; transform: none; }
.tile .meta .k { font-size: var(--step--1); letter-spacing: .12em; text-transform: uppercase; font-weight: 700; opacity: .85; }
.tile .meta .t { font-family: "Fraunces", serif; font-size: var(--step-1); }
.tile .play {
  position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none;
}
.tile .play span {
  width: 56px; height: 56px; border-radius: 50%; background: rgba(250,246,239,.9);
  display: grid; place-items: center; box-shadow: var(--shadow-soft);
}
.tile .play span::after { content: ""; border-left: 16px solid var(--espresso); border-top: 10px solid transparent; border-bottom: 10px solid transparent; margin-left: 4px; }
.tile.span-2col { grid-column: span 2; }
.tile.span-2row { grid-row: span 2; }
.tag-pill {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  background: rgba(250,246,239,.92); color: var(--ink-soft);
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .35em .7em; border-radius: 999px;
}

/* ── Services ── */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.svc {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: var(--space-lg); display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.svc .ico { font-size: 28px; margin-bottom: var(--space-sm); }
.svc h3 { margin-bottom: var(--space-sm); }
.svc ul { list-style: none; padding: 0; display: grid; gap: .5em; }
.svc li { display: flex; gap: .6em; align-items: flex-start; color: var(--ink-soft); }
.svc li::before { content: ""; flex: none; width: 7px; height: 7px; border-radius: 50%; background: var(--sage); margin-top: .65em; }
.svc .detail { margin-top: auto; padding-top: var(--space-md); border-top: 1px solid var(--line);
  font-size: var(--step--1); color: var(--ink-soft); }
.svc .price { display: block; font-family: "Fraunces", serif; font-size: var(--step-1); color: var(--ink); margin-top: var(--space-xs); }

/* ── Process ── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); counter-reset: s; }
.step { padding: var(--space-md); }
.step .n { counter-increment: s; font-family: "Fraunces", serif; font-size: var(--step-3);
  color: var(--clay); display: block; margin-bottom: var(--space-2xs); }
.step .n::before { content: "0" counter(s); }
.step h3 { font-size: var(--step-1); margin-bottom: var(--space-2xs); }
.step p { font-size: var(--step-0); color: var(--ink-soft); }

/* ── Quote band ── */
.quote { text-align: center; }
.quote blockquote { font-family: "Fraunces", serif; font-size: var(--step-3); line-height: 1.3;
  max-width: 22ch; margin-inline: auto; font-weight: 480; }
.quote .pillrow { display: flex; flex-wrap: wrap; gap: var(--space-2xs); justify-content: center; margin-top: var(--space-lg); }
.quote .pillrow .tag { background: rgba(250,246,239,.08); border-color: rgba(250,246,239,.25); color: var(--cream); }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: var(--space-2xl); align-items: start; }
.contact-copy h2 { margin-bottom: var(--space-sm); }
.contact-copy .lead { margin-bottom: var(--space-lg); }
.contact-list { list-style: none; padding: 0; display: grid; gap: var(--space-sm); }
.contact-list li { display: flex; gap: .7em; align-items: center; color: var(--ink-soft); }
.contact-list .ico { width: 38px; height: 38px; flex: none; border-radius: 50%; background: var(--oat);
  display: grid; place-items: center; }
.socials { display: flex; gap: var(--space-sm); margin-top: var(--space-lg); }
.socials a { width: 42px; height: 42px; border-radius: 50%; background: var(--cream); border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--ink); transition: transform .2s var(--ease), background .2s var(--ease); }
.socials a:hover { transform: translateY(-3px); background: var(--oat); }

form.collab { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: var(--space-lg); box-shadow: var(--shadow-soft); display: grid; gap: var(--space-md); }
.field { display: grid; gap: .4em; }
.field label { font-weight: 700; font-size: var(--step--1); letter-spacing: .02em; }
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink); background: var(--bg);
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: .7em .9em;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sage-deep); box-shadow: 0 0 0 3px rgba(90,107,82,.15);
}
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: .5em; }
.check { display: flex; gap: .5em; align-items: center; font-size: var(--step-0); color: var(--ink-soft); font-weight: 600; }
.check input { width: 18px; height: 18px; accent-color: var(--sage-deep); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: var(--step--1); color: var(--ink-soft); }
.form-status { font-weight: 700; min-height: 1.4em; }
.form-status.ok { color: var(--sage-deep); }
.form-status.err { color: var(--blush-deep); }

/* ── Footer ── */
.footer { background: var(--espresso-700); color: var(--cream); padding-block: var(--space-xl) var(--space-lg); }
.footer .wrap { display: grid; gap: var(--space-lg); }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-lg); align-items: start; }
.footer .brand { font-family: "Fraunces", serif; font-size: var(--step-3); }
.footer .brand span { color: var(--oak); }
.footer a { color: var(--oat); }
.footer-cols { display: flex; gap: var(--space-2xl); flex-wrap: wrap; }
.footer-cols h4 { font-size: var(--step--1); letter-spacing: .12em; text-transform: uppercase; color: var(--oak); margin-bottom: var(--space-sm); font-family: "Mulish", sans-serif; font-weight: 800; }
.footer-cols ul { list-style: none; padding: 0; display: grid; gap: .5em; }
.footer-fine { border-top: 1px solid rgba(250,246,239,.16); padding-top: var(--space-md);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-sm);
  font-size: var(--step--1); color: rgba(250,246,239,.7); }
/* deferred AI/disclosure slot — trivial to populate later */
.disclosure { font-size: var(--step--1); color: rgba(250,246,239,.55); max-width: 60ch; }

/* ── Reveal animation (progressive enhancement: hidden only when JS is present) ── */
.reveal { transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js .reveal { opacity: 0; transform: translateY(18px); }
html.js .reveal.is-in { opacity: 1; transform: none; }

/* ── Lightbox ── */
.lightbox { position: fixed; inset: 0; z-index: 1000; display: none; place-items: center;
  background: rgba(28,22,18,.82); backdrop-filter: blur(6px); padding: var(--space-lg); }
.lightbox.open { display: grid; }
.lightbox .inner { max-width: min(92vw, 520px); max-height: 88vh; }
.lightbox img, .lightbox video { max-width: 100%; max-height: 88vh; border-radius: var(--radius); box-shadow: var(--shadow-lift); }
.lightbox .close { position: absolute; top: 18px; right: 22px; background: none; border: 0; color: var(--cream);
  font-size: 34px; cursor: pointer; line-height: 1; }

/* ── Responsive ── */
@media (max-width: 980px) {
  :root { --space-2xl: 4.5rem; }
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .hero-media { max-width: 460px; margin-inline: auto; }
  .about-media { max-width: 420px; }
  .cat-grid, .svc-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .tile.span-2col { grid-column: span 2; }
}
@media (max-width: 720px) {
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: var(--space-md); background: var(--cream); padding: var(--space-2xl) var(--space-xl);
    transform: translateX(100%); transition: transform .3s var(--ease); box-shadow: var(--shadow-lift);
  }
  .nav-links.open { transform: none; }
  .nav-toggle { display: block; z-index: 101; }
  .field-row, .checks { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
}
/* ── Portfolio filter bar ── */
.filterbar { display: flex; flex-wrap: wrap; gap: .5em; margin-bottom: var(--space-md); }
.filter { font-family: inherit; font-weight: 700; font-size: var(--step--1); letter-spacing: .04em;
  background: var(--cream); border: 1.5px solid var(--line); color: var(--cocoa);
  padding: .5em 1.1em; border-radius: 999px; cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease); }
.filter:hover { border-color: var(--oak); }
.filter.is-active { background: var(--espresso); color: var(--cream); border-color: var(--espresso); }
.tile.is-hidden { display: none; }

/* ── Media kit band ── */
.mediakit .mk-band { display: grid; grid-template-columns: 1.3fr .7fr; gap: var(--space-2xl);
  align-items: center; background: var(--latte); border: 1px solid var(--line);
  border-radius: var(--radius); padding: var(--space-xl); }
.mediakit .section-head { margin-bottom: var(--space-md); }
.mk-copy .eyebrow { display: block; margin-bottom: var(--space-xs); }
.mk-copy h2 { margin-bottom: var(--space-xs); }
.mk-preview { display: block; transition: transform .3s var(--ease); }
.mk-preview:hover { transform: translateY(-4px); }
.mk-preview img { border-radius: var(--radius); box-shadow: var(--shadow-lift); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
@media (max-width: 980px) { .mediakit .mk-band { grid-template-columns: 1fr; gap: var(--space-lg); } .mk-preview { max-width: 360px; } }

/* ============================================================
   Artful enhancements (bells & whistles — tasteful-premium)
   ============================================================ */

/* scroll progress bar */
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 200;
  background: linear-gradient(90deg, var(--clay), var(--blush-deep)); }

/* hand-drawn squiggle accent (draws on reveal) */
.squiggle { display: block; width: clamp(170px, 28vw, 300px); height: 16px; margin-top: 8px; color: var(--blush-deep); overflow: visible; }
.squiggle path { stroke: currentColor; stroke-width: 3.5; fill: none; stroke-linecap: round;
  stroke-dasharray: 640; stroke-dashoffset: 640; }
.squiggle.is-in path { animation: draw 1.1s var(--ease) .15s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* floating hero badge + parallax-ready frame */
.hero-media .frame { will-change: transform; transition: transform .25s var(--ease); }
.hero-media .badge { animation: float 5.5s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* infinite marquee ribbon */
.marquee { background: var(--espresso-700); color: var(--cream); padding: var(--space-md) 0; overflow: hidden;
  border-block: 1px solid rgba(250,246,239,.10); }
.marquee-track { display: flex; gap: var(--space-lg); width: max-content; animation: scroll-x 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: "Fraunces", serif; font-size: var(--step-3); font-style: italic;
  white-space: nowrap; display: inline-flex; align-items: center; gap: var(--space-lg); opacity: .94; }
.marquee-track span::after { content: "✦"; color: var(--oak); font-style: normal; font-size: .62em; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* button shine sweep */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after { content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(250,246,239,.30), transparent);
  transform: skewX(-18deg); transition: left .65s var(--ease); pointer-events: none; }
.btn-primary:hover::after { left: 150%; }

/* organic wave divider */
.wave-wrap { position: relative; line-height: 0; }
.wave { display: block; width: 100%; height: 56px; }

/* phone frame for the featured reel */
.tile.phone { background: #18120f; padding: 9px; border-radius: 30px; box-shadow: var(--shadow-lift); }
.tile.phone video { border-radius: 22px; height: 100%; }
.tile.phone::before { content: ""; position: absolute; top: 17px; left: 50%; transform: translateX(-50%);
  width: 46px; height: 5px; border-radius: 3px; background: rgba(250,246,239,.45); z-index: 4; }
.tile.phone .tag-pill { top: 20px; left: 18px; }

/* clip-path image reveal */
html.js .img-reveal { clip-path: inset(0 0 100% 0); transition: clip-path 1.05s var(--ease); }
html.js .img-reveal.is-in { clip-path: inset(0 0 0 0); }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .cat:hover .ph img, .tile:hover img, .tile:hover video { transform: none; }
  .marquee-track { animation: none; }
  .hero-media .badge { animation: none; }
  .squiggle path { stroke-dashoffset: 0; animation: none; }
  html.js .img-reveal { clip-path: none !important; }
}
