:root{
  --bg:#FAFAF8;
  --ink:#111111;
  --nav-h:52px;
}
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth; overflow-x:hidden;}
body{
  background:var(--bg);
  color:var(--ink);
  font-family:'Inter',Helvetica,Arial,sans-serif;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

/* ---- Fixed nav pill, top-left ---- */
.nav-hover-zone{
  position:fixed;
  top:16px;
  left:16px;
  z-index:100;
}
nav{
  display:flex;
  align-items:center;
  gap:36px;
  background:#fff;
  border-radius:8px;
  box-shadow:0 2px 14px rgba(0,0,0,.08);
  padding:14px 22px;
  height:var(--nav-h);
  width:fit-content;
}

/* ---- About panel (hover on logo) ---- */
.about-panel{
  max-height:0;
  overflow:hidden;
  opacity:0;
  transition:opacity .3s ease, max-height .45s ease;
  pointer-events:none;
}
.nav-hover-zone:hover .about-panel{
  max-height:620px;
  opacity:1;
  pointer-events:auto;
}
.about-panel-inner{
  margin-top:8px;
  background:#fff;
  border-radius:8px;
  box-shadow:0 10px 30px rgba(0,0,0,.14);
  padding:32px 36px 30px;
  width:min(1040px, 92vw);
  display:flex;
  flex-wrap:wrap;
  gap:40px 40px;
}
.about-panel-bio{
  flex:1 1 250px;
  font-size:14px;
  line-height:1.7;
  color:#333;
}
.about-panel-bio p + p{
  margin-top:14px;
}
.about-panel-clients,
.about-panel-services{
  flex:0 0 195px;
}
.about-panel-col{
  flex:0 0 185px;
  display:flex;
  flex-direction:column;
  gap:26px;
}
.about-panel-clients .label,
.about-panel-services .label,
.about-panel-contact .label,
.about-panel-follow .label{
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:600;
  color:#9a9a9a;
  margin-bottom:10px;
}
.about-panel-clients div:not(.label),
.about-panel-services div:not(.label),
.about-panel-contact div:not(.label),
.about-panel-follow div:not(.label){
  font-size:14px;
  line-height:1.9;
  color:var(--ink);
}
.about-panel-contact a,
.about-panel-follow a{
  color:var(--ink);
  text-decoration:none;
  border-bottom:1px solid rgba(17,17,17,.25);
}
.about-panel-contact a:hover,
.about-panel-follow a:hover{
  border-bottom-color:var(--ink);
}
.about-panel-contact .spacer{
  margin-top:8px;
}
@media (max-width:900px){
  .about-panel-inner{
    width:88vw;
  }
}
@media (max-width:640px){
  .about-panel-inner{
    flex-direction:column;
    flex-wrap:nowrap;
    gap:20px;
    width:88vw;
    padding:26px 24px 24px;
    max-height:70vh;
    overflow-y:auto;
  }
  .about-panel-clients,
  .about-panel-services,
  .about-panel-col{
    flex:0 0 auto;
  }
  .about-panel-col{
    gap:20px;
  }
  .nav-hover-zone:hover .about-panel{
    max-height:80vh;
  }
}
nav .logo{
  font-weight:700;
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
  white-space:nowrap;
  color:var(--ink);
  text-decoration:none;
}
nav ul{
  list-style:none;
  display:flex;
  gap:22px;
}
nav a{
  position:relative;
  color:#9a9a9a;
  text-decoration:none;
  font-size:12px;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-weight:500;
}
nav ul li:first-child a{
  color:var(--ink);
  font-weight:600;
}
nav a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-4px;
  width:100%;
  height:1px;
  background:#000;
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .35s ease;
}
nav a:hover{color:#000;}
nav a:hover::after{transform:scaleX(1);}

/* ---- Full-bleed project sections (homepage) ---- */
.project{
  position:relative;
  height:calc(100vh - 96px);
  width:100%;
  overflow:hidden;
  display:flex;
  align-items:center;
  opacity:0;
  transform:translateY(24px);
  transition:opacity .9s ease, transform .9s ease;
  text-decoration:none;
  color:inherit;
  cursor:pointer;
}
.project.in-view{
  opacity:1;
  transform:translateY(0);
}
.project-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform:scale(1);
  transition:transform 1.1s cubic-bezier(.16,.8,.24,1);
}
.project:hover .project-bg{
  transform:scale(1.05);
}
.project-motion{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:1;
  opacity:0;
  transition:opacity .5s ease;
  pointer-events:none;
}
.project:hover .project-motion{
  opacity:1;
}
.project-label{
  position:absolute;
  left:24px;
  bottom:28px;
  z-index:2;
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:500;
}
.project-label.pill{
  background:#fff;
  color:var(--ink);
  padding:9px 16px;
  border-radius:6px;
  box-shadow:0 2px 10px rgba(0,0,0,.10);
}
.project-label.next-peek{
  top:24px;
  bottom:auto;
  opacity:0;
  transition:opacity .35s ease;
}
.project.peeking .project-label.next-peek{
  opacity:1;
}

/* ---- Footer / Info ---- */
footer{
  background:var(--bg);
  padding:140px 24px 100px;
  text-align:center;
}
footer h2{
  font-family:'Cormorant Garamond',Georgia,serif;
  font-weight:400;
  font-style:italic;
  font-size:clamp(32px,5vw,56px);
  letter-spacing:.02em;
  margin-bottom:28px;
}
footer a.email{
  display:inline-block;
  font-size:13px;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--ink);
  text-decoration:none;
  border-bottom:1px solid var(--ink);
  padding-bottom:4px;
  margin-bottom:40px;
}
footer .meta{
  font-size:11px;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:#888;
}

/* ==== Project detail page ==== */
.detail-hero{
  position:relative;
  height:88vh;
  width:100%;
  overflow:hidden;
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:flex-end;
}
.detail-hero::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.45), rgba(0,0,0,0) 45%);
}
.detail-hero-text{
  position:relative;
  z-index:2;
  padding:0 6% 64px;
  color:#fff;
}
.detail-hero-text .eyebrow{
  font-size:11px;
  letter-spacing:.1em;
  text-transform:uppercase;
  opacity:.85;
  margin-bottom:14px;
}
.detail-hero-text h1{
  font-family:'Cormorant Garamond',Georgia,serif;
  font-weight:400;
  font-size:clamp(40px,7vw,88px);
  letter-spacing:.08em;
  line-height:1.05;
  text-shadow:0 2px 24px rgba(0,0,0,.3);
}

.detail-hero-video{
  position:relative;
  height:88vh;
  width:100%;
  overflow:hidden;
  display:flex;
  align-items:flex-end;
  background:#f1ebd8;
}
.detail-hero-video video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.detail-hero-video .detail-hero-text{
  color:var(--ink);
}
.detail-hero-video .detail-hero-text .eyebrow{
  opacity:.65;
}
.detail-hero-video .detail-hero-text h1{
  text-shadow:none;
}

.detail-hero-plain{
  padding:150px 6% 56px;
  background:#f1ebd8;
}
.detail-hero-plain .eyebrow{
  font-size:11px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:#6b6b5d;
  margin-bottom:14px;
}
.detail-hero-plain h1{
  font-family:'Cormorant Garamond',Georgia,serif;
  font-weight:400;
  font-size:clamp(40px,7vw,88px);
  letter-spacing:.08em;
  line-height:1.05;
  color:var(--ink);
}

.detail-motion video{
  width:100%;
  display:block;
  border-radius:2px;
}

.detail-body{
  max-width:760px;
  margin:0 auto;
  padding:110px 24px 60px;
}
.detail-body p{
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(20px,2.4vw,28px);
  line-height:1.55;
  color:#222;
  margin-bottom:28px;
}
.detail-body h3{
  font-size:11px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:#888;
  margin:40px 0 10px;
  font-weight:600;
}
.detail-body .keywords{
  font-size:14px;
  color:#444;
  letter-spacing:.02em;
}

.detail-motion{
  max-width:420px;
  margin:0 auto;
  padding:0 24px 50px;
  text-align:center;
}
.detail-motion img{
  width:100%;
  display:block;
  border-radius:2px;
}
.detail-motion .label{
  font-size:11px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:#888;
  margin-bottom:14px;
}

.detail-gallery{
  display:flex;
  flex-direction:column;
  gap:2px;
  background:#eee;
}
.detail-gallery img{
  width:100%;
  display:block;
}
.detail-gallery.two-col{
  flex-direction:row;
  flex-wrap:wrap;
}
.detail-gallery.two-col img{
  width:calc(50% - 1px);
  object-fit:cover;
}

.back-link{
  display:block;
  text-align:center;
  padding:70px 24px 10px;
  font-size:11px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:#888;
  text-decoration:none;
}
.back-link:hover{color:#000;}

.video-note{
  text-align:center;
  padding:50px 24px 0;
}
.video-note a{
  display:inline-block;
  margin-top:14px;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--ink);
  text-decoration:none;
  border-bottom:1px solid var(--ink);
  padding-bottom:3px;
}
.video-note p{
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(18px,2vw,22px);
  color:#444;
}

@media (max-width:640px){
  nav{gap:14px; padding:11px 14px; left:10px; top:10px;}
  nav .logo{font-size:11px;}
  nav a{font-size:10px;}
  .detail-gallery.two-col img{width:100%;}
}

/* ==== Editorial detail layout — sticky info card + scrolling figure column ==== */
.editorial-wrap{
  display:flex;
  align-items:flex-start;
  gap:60px;
  max-width:1400px;
  margin:0 auto;
  padding:0 6% 40px;
}
.editorial-sticky{
  position:sticky;
  top:24px;
  width:280px;
  flex-shrink:0;
  padding-top:24px;
  align-self:flex-start;
}
.editorial-card{
  background:#fff;
  padding:22px 24px;
  box-shadow:0 2px 16px rgba(0,0,0,.07);
}
.editorial-card .eyebrow{
  font-size:11px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:#888;
  margin-bottom:14px;
}
.editorial-card p{
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:16px;
  line-height:1.55;
  color:#333;
}
.editorial-col{
  flex:1;
  min-width:0;
  padding-top:24px;
}
.editorial-hero{
  position:relative;
  height:78vh;
  overflow:hidden;
  margin-bottom:70px;
  background:#141110;
}
.editorial-hero::after{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.38);
  z-index:1;
}
.editorial-hero img{
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.82;
}
.editorial-hero.no-word::after{background:rgba(0,0,0,.08);}
.editorial-hero.no-word img{opacity:1;}
.editorial-hero .word{
  position:absolute;
  inset:0;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:'Cormorant Garamond',Georgia,serif;
  font-weight:300;
  font-size:clamp(48px,9vw,140px);
  letter-spacing:.16em;
  color:rgba(255,255,255,.92);
  text-shadow:0 2px 30px rgba(0,0,0,.35);
  pointer-events:none;
}
.editorial-lede p{
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(18px,2vw,22px);
  line-height:1.6;
  color:#333;
  max-width:640px;
  margin-bottom:22px;
}
.editorial-lede{margin-bottom:80px;}
.editorial-concept{
  display:flex;
  gap:40px;
  margin:0 0 90px;
}
.editorial-concept .label{
  width:150px;
  flex-shrink:0;
  font-size:11px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:#888;
  padding-top:4px;
}
.editorial-concept p{
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(17px,1.8vw,20px);
  line-height:1.6;
  color:#333;
  max-width:600px;
}
.editorial-figure{margin:0 0 90px;}
.editorial-figure img{width:100%; display:block;}
.editorial-figure figcaption{
  margin-top:16px;
  max-width:520px;
  font-family:'Cormorant Garamond',Georgia,serif;
  font-style:italic;
  font-size:15px;
  line-height:1.5;
  color:#666;
}
.editorial-figure.two-up{display:flex; flex-wrap:wrap; align-items:flex-start; gap:2px;}
.editorial-figure.two-up img{width:calc(50% - 1px); object-fit:cover;}
.editorial-figure.two-up figcaption{width:100%; margin-top:16px;}
.editorial-figure.three-up{display:flex; flex-wrap:wrap; gap:16px;}
.editorial-figure.three-up img{width:calc(33.333% - 11px); object-fit:cover;}
.editorial-figure.three-up figcaption{width:100%; margin-top:16px;}
@media (max-width:640px){
  .editorial-figure.three-up{flex-direction:column;}
  .editorial-figure.three-up img{width:100%;}
}
.editorial-figure.dark{background:#141110; padding:56px;}
.editorial-figure.dark.two-up{gap:24px;}
.editorial-figure.dark img{box-shadow:0 20px 60px rgba(0,0,0,.35);}
.editorial-figure.dark figcaption{color:#aaa;}

.editorial-flip-band{
  position:relative;
  background:#fff;
  padding:48px 0;
  margin:0 0 16px;
  overflow:hidden;
}
.editorial-image-band{
  position:relative;
  margin:0 0 16px;
  overflow:hidden;
}
.editorial-image-band img{
  width:100%;
  display:block;
}
.editorial-flip{
  position:relative;
  cursor:none;
  background:#fff;
  overflow:hidden;
  max-width:440px;
  margin:0 auto;
}
[data-reveal]{
  opacity:0;
  transition:opacity .9s ease, transform .9s ease;
}
[data-reveal="left"]{transform:translateX(-48px);}
[data-reveal].in-view{
  opacity:1;
  transform:translateX(0);
}
@media (max-width:640px){
  [data-reveal]{opacity:1; transform:none; transition:none;}
}
[data-slide]{
  transition:transform .5s cubic-bezier(.22,.61,.36,1), opacity .45s ease;
}
[data-slide="left"]{
  transform:translateX(-130%);
  opacity:0;
}
[data-slide="left"].in-view{
  transform:translateX(0);
  opacity:1;
}
@media (max-width:640px){
  [data-slide]{opacity:1; transform:none; transition:none;}
}
.editorial-flip .face{
  display:block;
  width:100%;
  transition:opacity .6s ease;
}
.editorial-flip .face.front{opacity:1;}
.editorial-flip .face.back{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:contain;
  opacity:0;
}
.editorial-flip.flipped .face.front{opacity:0;}
.editorial-flip.flipped .face.back{opacity:1;}
@media (max-width:640px){
  .editorial-flip{cursor:pointer;}
  .editorial-flip .flip-cursor{display:none;}
}

.editorial-flip[data-flip-sequence]{
  cursor:default;
  transform:translateX(-130%);
  opacity:0;
  transition:transform .5s cubic-bezier(.22,.61,.36,1), opacity .45s ease;
}
.editorial-flip[data-flip-sequence].seq-front,
.editorial-flip[data-flip-sequence].seq-back{
  transform:translateX(0);
  opacity:1;
}
.editorial-flip[data-flip-sequence].seq-right{
  transform:translateX(130%);
  opacity:0;
  transition:transform .4s cubic-bezier(.5,0,.75,.2), opacity .3s ease;
}
.editorial-flip[data-flip-sequence].seq-back .face.front{opacity:0;}
.editorial-flip[data-flip-sequence].seq-back .face.back{opacity:1;}
@media (max-width:640px){
  .editorial-flip[data-flip-sequence]{opacity:1; transform:none; transition:none;}
  .editorial-flip[data-flip-sequence].seq-right{opacity:1; transform:none;}
}

.editorial-overview{
  display:flex;
  gap:40px;
  margin:0 0 90px;
  padding:40px 0;
  border-top:1px solid #e4e2dd;
  border-bottom:1px solid #e4e2dd;
}
.editorial-overview .label{
  width:150px;
  flex-shrink:0;
  font-size:11px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:#888;
  padding-top:4px;
}
.editorial-overview-body{max-width:600px;}
.editorial-overview p{
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(17px,1.8vw,20px);
  line-height:1.6;
  color:#333;
  margin-bottom:20px;
}
.editorial-overview ul{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.editorial-overview li{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:#111;
  font-weight:500;
  line-height:1;
}
.editorial-overview li::before{
  content:'';
  flex-shrink:0;
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--taskapi-accent,#C8714A);
}
.editorial-quote{
  margin:0 0 90px;
  padding:10px 0 10px 40px;
  border-left:2px solid #111;
  max-width:720px;
}
.editorial-quote p{
  font-family:'Cormorant Garamond',Georgia,serif;
  font-style:italic;
  font-weight:300;
  font-size:clamp(24px,3vw,34px);
  line-height:1.4;
  color:#111;
}
.editorial-quote cite{
  display:block;
  margin-top:18px;
  font-style:normal;
  font-size:11px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:#888;
}
@media (max-width:640px){
  .editorial-overview{flex-direction:column; gap:16px;}
  .editorial-quote{padding-left:20px;}
}

@media (max-width:900px){
  .editorial-wrap{flex-direction:column; gap:0;}
  .editorial-sticky{position:static; width:auto; padding-top:32px;}
  .editorial-card{margin-bottom:10px;}
  .editorial-col{padding-top:0;}
}
@media (max-width:640px){
  .editorial-figure.two-up{flex-direction:column;}
  .editorial-figure.two-up img{width:100%;}
  .editorial-figure.dark{padding:24px;}
}

/* ==== Editorial carousel — swipeable, one-at-a-time slider ==== */
.editorial-carousel{
  position:relative;
  margin:0 0 16px;
}
.editorial-carousel.dark{background:#141110; padding:56px;}
.editorial-carousel.fullscreen{
  width:100vw;
  position:relative;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  margin-top:40px;
  margin-bottom:16px;
  height:92vh;
  padding:0;
  background:var(--bg);
}
.editorial-carousel-track{
  display:flex;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
  height:100%;
}
.editorial-carousel-track::-webkit-scrollbar{display:none;}
.editorial-carousel-slide{
  flex:0 0 100%;
  scroll-snap-align:center;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:opacity .5s ease;
}
.editorial-carousel-slide img{
  width:100%;
  max-height:74vh;
  object-fit:contain;
  display:block;
}
.editorial-carousel.fullscreen .editorial-carousel-slide img{
  width:auto;
  height:100%;
  max-height:100%;
  max-width:100%;
}
.editorial-carousel.fullscreen.fill .editorial-carousel-slide img{
  width:100%;
  height:100%;
  max-width:100%;
  object-fit:cover;
}
.editorial-carousel.dark .editorial-carousel-slide img{
  box-shadow:0 20px 60px rgba(0,0,0,.35);
}
.editorial-carousel-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  border-radius:50%;
  background:var(--bg);
  border:1px solid rgba(17,17,17,.35);
  cursor:pointer;
  font-size:18px;
  color:#111;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background .2s ease, transform .2s ease;
  z-index:3;
}
.editorial-carousel-arrow:hover{background:#fff; transform:translateY(-50%) scale(1.06);}
.editorial-carousel-arrow.prev{left:16px;}
.editorial-carousel-arrow.next{right:16px;}
.editorial-carousel.fullscreen .editorial-carousel-arrow.prev{left:28px;}
.editorial-carousel.fullscreen .editorial-carousel-arrow.next{right:28px;}
.editorial-carousel-counter{
  position:absolute;
  left:20px;
  bottom:20px;
  font-family:'Inter',sans-serif;
  font-size:11px;
  letter-spacing:.06em;
  color:#111;
  z-index:3;
  background:var(--bg);
  border:1px solid rgba(17,17,17,.35);
  padding:5px 11px;
  border-radius:20px;
}
@media (max-width:640px){
  .editorial-carousel.dark{padding:24px;}
  .editorial-carousel.fullscreen{height:70vh;}
  .editorial-carousel-arrow{width:36px; height:36px; font-size:14px;}
}

/* ---- Menu flip cards ---- */
.menu-flip-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:36px;
  margin:56px 0 16px;
}
.menu-flip{
  position:relative;
  perspective:1800px;
  cursor:none;
  aspect-ratio:1100/1556;
  opacity:0;
  transition:opacity 1s cubic-bezier(.2,.7,.2,1), transform 1s cubic-bezier(.2,.7,.2,1);
}
.menu-flip-grid .menu-flip:nth-child(1){ transform:translateX(-110px); }
.menu-flip-grid .menu-flip:nth-child(2){ transform:translateX(110px); transition-delay:.1s; }
.menu-flip-grid.in-view .menu-flip{
  opacity:1;
  transform:translateX(0);
}
.menu-flip-inner{
  position:relative;
  width:100%;
  height:100%;
  transform-style:preserve-3d;
  transition:transform .8s cubic-bezier(.65,.15,.15,1);
}
.menu-flip.flipped .menu-flip-inner{
  transform:rotateY(180deg);
}
.menu-flip-face{
  position:absolute;
  inset:0;
  backface-visibility:hidden;
  -webkit-backface-visibility:hidden;
  overflow:hidden;
}
.menu-flip-face img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.menu-flip-face.back{
  transform:rotateY(180deg);
}
.flip-cursor{
  position:absolute;
  top:0;
  left:0;
  width:80px;
  height:80px;
  margin-left:-40px;
  margin-top:-40px;
  border-radius:50%;
  background:#2b1c12;
  color:#e2833e;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:'Inter',sans-serif;
  font-weight:600;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  pointer-events:none;
  box-shadow:0 8px 24px rgba(0,0,0,.35);
  opacity:0;
  transform:scale(.8);
  transition:opacity .25s ease, transform .25s ease;
  z-index:5;
}
.menu-flip:hover .flip-cursor,
.editorial-flip:hover .flip-cursor{
  opacity:1;
  transform:scale(1);
}
.menu-flip-caption{
  text-align:center;
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-size:15px;
  color:#888;
  margin-top:4px;
  margin-bottom:56px;
}
@media (max-width:640px){
  .menu-flip-grid{grid-template-columns:1fr; gap:24px;}
  .menu-flip{cursor:pointer;}
  .flip-cursor{display:none;}
  .menu-flip-grid .menu-flip:nth-child(1){ transform:translateY(50px); }
  .menu-flip-grid .menu-flip:nth-child(2){ transform:translateY(50px); }
  .menu-flip-grid.in-view .menu-flip{ transform:translateY(0); }
}

/* ---- Endless drag marquee (label variations) ---- */
.editorial-marquee{
  position:relative;
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  margin-top:16px;
  margin-bottom:8px;
  overflow:hidden;
  cursor:grab;
}
.editorial-marquee.dragging{
  cursor:grabbing;
}
.editorial-marquee-track{
  display:flex;
  width:max-content;
  will-change:transform;
}
.editorial-marquee-track img{
  height:78vh;
  width:auto;
  display:block;
  flex-shrink:0;
  margin-right:14vw;
  -webkit-user-drag:none;
  user-select:none;
  pointer-events:none;
}
.editorial-marquee-caption{
  text-align:center;
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-size:15px;
  color:#888;
  margin:16px 0 70px;
}
@media (max-width:640px){
  .editorial-marquee-track img{ height:42vh; }
  .editorial-marquee-caption{ margin-bottom:48px; }
}

/* ---- Tight edge-to-edge filmstrip (checkerboard-style, no gaps) ---- */
.editorial-marquee.tight{
  margin-top:40px;
  margin-bottom:8px;
}
.editorial-marquee.tight .editorial-marquee-track img{
  height:440px;
  margin-right:0;
}
@media (max-width:640px){
  .editorial-marquee.tight .editorial-marquee-track img{ height:220px; }
}
