/* =============================================
   SHIVOHAM RESTAURANT — modern editorial layout
   Chopta Resort design tokens
============================================= */

:root{
  --cream: #FFFAF3;
  --cream-deep: #FFF1DE;
  --ink: #2B2420;
  --ink-soft: #5C5248;
  --orange: #F2731D;
  --orange-deep: #D85E10;
  --sky: #6FB7E0;
  --sky-pale: #DFF0FA;
  --navy: #1F3B4D;
  --gold: #F4A93E;
  --line: rgba(43,36,32,0.10);
  --muted: rgba(255,250,243,0.72);

  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Jost', 'Helvetica Neue', sans-serif;

  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);

  /* kept in sync with the real header iframe height via JS so the
     fixed header never overlaps page content, on any screen size —
     this is just a close first-paint estimate before JS corrects it */
  --header-h: 132px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
html, body{ margin: 0; padding: 0; }
body{
  background: var(--cream);
  color: var(--ink);
  /* font-family: var(--font-body); */
  -webkit-font-smoothing: antialiased;
  /* pushes all content below the now-fixed header so nothing is
     hidden underneath it; value tracks --header-h exactly */
  padding-top: var(--site-header-h, var(--header-h));
}

a{ text-decoration: none; }
a.seo-kw{
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: var(--orange);
}
a.seo-kw:hover{ color: var(--orange); }
img{ max-width: 100%; display: block; }
hr{ border: none; border-top: 1px solid var(--line); margin: 34px 0; }

.header-frame{
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  border: none;
  height: var(--header-h);
  z-index: 1100;
}

/* slim reading-progress line, sits just under the fixed header */
.scroll-progress{
  position: fixed;
  top: var(--header-h);
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  z-index: 999;
  pointer-events: none;
}
.scroll-progress__bar{
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--orange) 0%, var(--gold) 100%);
  transition: width 0.12s linear;
}
@media (prefers-reduced-motion: reduce){
  .scroll-progress__bar{ transition: none; }
}

.footer-frame{
  display: block;
  width: 100%;
  border: none;
  /* real height is reported by footer.html via postMessage, same
     technique as the header — this is just a sane first-paint value */
  height: 526px;
}

.eyebrow{
  /* font-family: var(--font-body); */
  font-weight: 600;
  font-size: 0.76rem;
  /* letter-spacing: 0.16em; */
  text-transform: uppercase;
  color: var(--orange-deep);
  margin: 0 0 14px;
}
.eyebrow-ink{ color: var(--ink-soft); }
.eyebrow-sky{ color: var(--sky); }
.eyebrow-on-photo{
  color: #FFF6E8;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}

h1, h2{ font-family: var(--font-display); color: var(--ink); margin: 0; }

/* ================= SCROLL ENTRANCE SYSTEM =================
   Generic reveal-on-scroll used across every section. Elements
   start hidden/offset and animate in once, the moment they cross
   into the viewport (see restaurant.js IntersectionObservers).
   [data-reveal]        -> whole sections / blocks
   [data-reveal-child]  -> individual items inside a section, each
                            can carry its own transition-delay for
                            a staggered "cascade" entrance
============================================================= */
[data-reveal]{
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .9s var(--ease-premium), transform .9s var(--ease-premium);
  will-change: opacity, transform;
}
[data-reveal].is-visible{
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-child]{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-premium), transform .7s var(--ease-premium);
  will-change: opacity, transform;
}
[data-reveal-child].is-visible{
  opacity: 1;
  transform: translateY(0);
}
/* staggered cascades for groups of siblings */
.menu-features li:nth-child(1){ transition-delay: .05s; }
.menu-features li:nth-child(2){ transition-delay: .11s; }
.menu-features li:nth-child(3){ transition-delay: .17s; }
.menu-features li:nth-child(4){ transition-delay: .23s; }
.menu-features li:nth-child(5){ transition-delay: .29s; }
.menu-features li:nth-child(6){ transition-delay: .35s; }
.rest-exp-card:nth-child(1){ transition-delay: 0s; }
.rest-exp-card:nth-child(2){ transition-delay: .08s; }
.rest-exp-card:nth-child(3){ transition-delay: .16s; }
.rest-exp-card:nth-child(4){ transition-delay: .24s; }

@media (prefers-reduced-motion: reduce){
  [data-reveal], [data-reveal-child]{ transition: none; opacity: 1; transform: none; }
}

.btn-primary{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 30px;
  border-radius: 100px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 10px 22px rgba(242,115,29,0.28);
  transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
}
.btn-primary:hover{
  background: var(--orange-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(242,115,29,0.36);
}
.btn-ghost{
  display: inline-flex;
  align-items: center;
  height: 50px;
  padding: 0 6px;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--ink);
}
.btn-ghost-on-navy{ color: var(--cream); border-bottom-color: rgba(255,250,243,0.4); }
.btn-ghost-on-navy:hover{ border-bottom-color: var(--cream); }

/* ================= HERO ================= */
.hero{
    position:relative;
    width:100%;
    min-height:60vh;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    isolation:isolate;
    font-family:var(--font-body);
  }
 
  /* ---- background: swap the url() below for your own photo ---- */
  .hero-bg{
    position:absolute;
    inset:0;
    z-index:-2;
    /* background:
      radial-gradient(120% 90% at 50% 100%, rgba(242,115,29,0.18), transparent 60%),
      linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 55%, #0e1b23 100%); */
    background-image:
      /* radial-gradient(120% 90% at 50% 100%, rgba(242,115,29,0.18), transparent 60%),
      linear-gradient(155deg, rgba(31,59,77,0.25), rgba(14,27,35,0.6)), */
      url('../images/resort-page-img.jpg');           /* <-- put your dining-table photo here */
    background-size:cover;
    background-position:center;
    animation:kenburns 18s ease-in-out infinite alternate;
  }
 
  /* darkening pass so centered text stays legible over any photo */
  .hero-veil{
    position:absolute;
    inset:0;
    z-index:-1;
    background:
      linear-gradient(90deg, rgba(35, 29, 14, 0.75) 0%, rgba(35, 29, 14, 0.32) 22%, rgba(35, 27, 14, 0.32) 78%, rgba(35, 22, 14, 0.75) 100%),
      linear-gradient(180deg, rgba(35, 30, 14, 0.55) 0%, rgba(149, 98, 48, 0.45) 35%, rgba(35, 26, 14, 0.12) 60%, rgba(35, 27, 14, 0.7) 100%);
  }
 
  /* faint grain so the warm gradient doesn't look flat/AI-smooth */
  .hero-grain{
    position:absolute; inset:0; z-index:-1; opacity:.05; mix-blend-mode:overlay;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }
 
  .hero-content{
    position:relative;
    text-align:center;
    max-width:720px;
    padding:96px 24px 84px;
    display:flex;
    flex-direction:column;
    align-items:center;
  }
 
  .hero-eyebrow{
    font-size:12px;
    letter-spacing:0.32em;
    text-transform:uppercase;
    color:var(--gold);
    font-weight:500;
    opacity:0;
    animation:riseIn .8s ease-out .15s forwards;
  }
 
  .hero-eyebrow::before,
  .hero-eyebrow::after{
    content:'';
    display:inline-block;
    width:22px;
    height:1px;
    background:var(--orange);
    vertical-align:middle;
    margin:0 10px 3px;
  }
 
  .hero-title{
    font-family:var(--font-display);
    font-weight:600;
    font-size:clamp(2.4rem, 6vw, 4.4rem);
    line-height:1.05;
    color:var(--cream);
    margin-top:18px;
    letter-spacing:-0.01em;
    text-shadow:0 8px 30px rgba(0,0,0,0.45);
    opacity:0;
    animation:riseIn .9s ease-out .3s forwards;
  }
 
  .hero-title em{
    font-style:italic;
    font-weight:500;
    color:var(--gold);
  }
 
  /* ---- signature: a quiet ridgeline, with one small window-light ---- */
  .hero-ridge{
    width:220px;
    height:34px;
    margin-top:26px;
    opacity:0;
    animation:riseIn .9s ease-out .5s forwards;
  }
 
  .hero-ridge path{
    fill:none;
    stroke:var(--orange);
    stroke-width:1.4;
    opacity:0.75;
  }
 
  .hero-ridge circle{
    fill:var(--gold);
    filter:drop-shadow(0 0 4px var(--gold));
    animation:flicker 3.6s ease-in-out infinite;
  }
 
  .hero-breadcrumb{
    margin-top:22px;
    display:flex;
    align-items:center;
    gap:10px;
    font-size:13px;
    letter-spacing:0.04em;
    color:var(--muted);
    opacity:0;
    animation:riseIn .9s ease-out .65s forwards;
  }
 
  .hero-breadcrumb a{
    color:var(--gold);
    text-decoration:none;
    transition:color .2s ease, opacity .2s ease;
  }
  .hero-breadcrumb a:hover{ color:var(--cream); }
  .hero-breadcrumb a:focus-visible{ outline:1px solid var(--gold); outline-offset:3px; border-radius:2px; }
 
  .hero-breadcrumb .sep{ color:var(--orange); opacity:0.6; font-size:11px; }
  .hero-breadcrumb .current{ color:var(--cream); }
 
  @keyframes riseIn{
    from{ opacity:0; transform:translateY(14px); }
    to{ opacity:1; transform:translateY(0); }
  }
 
  @keyframes kenburns{
    from{ transform:scale(1); }
    to{ transform:scale(1.08); }
  }
 
  @keyframes flicker{
    0%, 100%{ opacity:1; }
    45%{ opacity:0.55; }
    55%{ opacity:0.9; }
  }
 
  @media (prefers-reduced-motion: reduce){
    .hero-bg{ animation:none; }
    .hero-eyebrow, .hero-title, .hero-ridge, .hero-breadcrumb{ animation:none; opacity:1; }
    .hero-ridge circle{ animation:none; }
  }
 
  @media (max-width:640px){
    .hero{ min-height:52vh; }
    .hero-content{ padding:72px 20px 56px; }
    .hero-eyebrow::before, .hero-eyebrow::after{ width:14px; margin:0 6px 3px; }
  }

/* ================= STATEMENT ================= */
.statement{
  max-width: 760px;
  margin: 0 auto;
  padding: 110px 40px;
  text-align: center;
}
.statement p{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  line-height: 1.35;
  color: var(--ink);
  margin: 0;
}
.statement a{
  color: var(--orange-deep);
  box-shadow: inset 0 -0.06em 0 var(--orange-deep);
}

/* ================= STORY — sticky media ================= */
.story{
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream-deep);
}
.story-media{
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.story-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-copy{
  padding: 120px 64px 140px;
  max-width: 560px;
}
.story-copy p{
  font-size: 1.06rem;
  line-height: 1.85;
  color: var(--ink);
  margin: 0 0 22px;
}
.story-copy a{
  color: var(--orange-deep);
  box-shadow: inset 0 -0.06em 0 rgba(216,94,16,0.4);
}
.story-copy a:hover{ box-shadow: inset 0 -0.06em 0 var(--orange-deep); }

/* ================= QUOTE ================= */
.quote-band{
  background: var(--navy);
  padding: 130px 40px;
  text-align: center;
}
.quote{
  max-width: 880px;
  margin: 0 auto 28px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.6rem, 4vw, 2.7rem);
  line-height: 1.3;
  color: var(--cream);
}
.quote-sep{
  color: var(--gold);
  margin: 0 18px;
  font-style: normal;
}
.quote-context{
  max-width: 560px;
  margin: 0 auto;
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--sky-pale);
  opacity: 0.85;
}

/* ================= CTA ================= */
.cta{
  background: var(--cream);
  padding: 130px 40px;
}
.cta-inner{ max-width: 640px; margin: 0 auto; text-align: center; }
.cta h2{
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 6px 0 36px;
}
.cta-actions{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.cta .btn-ghost{ color: var(--ink); border-bottom-color: var(--ink); }

/* ================= RESPONSIVE ================= */
@media (max-width: 900px){
  .story{ grid-template-columns: 1fr; }
  .story-media{ position: relative; height: 52vh; }
  .story-copy{ padding: 70px 28px 90px; max-width: none; }
  .statement{ padding: 80px 24px; }
  .quote-band{ padding: 90px 24px; }
  .cta{ padding: 90px 24px; }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .btn-primary{ transition: none; }
}





.rest-experience {
  padding: 80px 0;
  background:
    radial-gradient(ellipse 900px 500px at 15% 8%, rgba(244,169,62,0.12), transparent 60%),
    linear-gradient(180deg, var(--sky-pale) 0%, var(--cream) 100%);
}

.rest-exp-intro {
  text-align: center;
  margin-bottom: 50px;
}
.rest-exp-intro .eyebrow { margin-bottom: 22px; }
.rest-exp-intro h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
}
.rest-exp-intro h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--orange);
}

.rest-exp-grid {
  display: flex;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 85%;
  margin: 0 auto;
}

.rest-exp-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 25px 20px;
  box-shadow: 0 16px 36px rgba(43,36,32,0.06);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-premium), transform 0.7s var(--ease-premium), box-shadow 0.4s var(--ease-premium);
}
.rest-exp-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.rest-exp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(43,36,32,0.12);
}

.rest-exp-card__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--cream-deep);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: background 0.3s ease, color 0.3s ease;
}
.rest-exp-card:hover .rest-exp-card__icon {
  background: var(--orange);
  color: #fff;
}

.rest-exp-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  margin: 0 0 10px;
}

.rest-exp-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 768px) {
  .rest-exp-grid { grid-template-columns: 1fr; }
}














.menu-wrap{
    position:relative;
    z-index:1;
    max-width:1200px;
    margin:0 auto;
    padding: 64px 24px 90px;
  }
  .menu-grid{
  display:grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 44px;
  align-items:center;
}
@media (max-width: 860px){
  .menu-grid{ grid-template-columns: 1fr; }
}
 
  /* ===== Header / intro copy ===== */
  .menu-intro{
   max-width:none;
  margin:0;
  text-align:left;
  }
  .menu-intro .eyebrow{
    color:var(--orange-deep);
    font-size:12px;
    letter-spacing:0.35em;
    text-transform:uppercase;
    font-weight:600;
  }
  .menu-intro h1{
    font-size:clamp(2.2rem, 5vw, 3.6rem);
    margin:8px 0 18px;
    font-weight:600;
    line-height:1.05;
  }
  .menu-intro p{
    color:var(--ink-soft);
    font-size:15.5px;
    line-height:1.75;
    margin:0 0 22px;
  }
  .menu-intro a{
    color:var(--orange-deep);
    text-decoration:none;
    border-bottom:1px solid rgba(216,94,16,0.35);
    transition: border-color 0.2s ease, color 0.2s ease;
  }
  .menu-intro a:hover{ color:var(--orange); border-color:var(--orange); }
 
  .menu-features{
    list-style:none;
    margin:0 0 22px;
    padding:0;
    display:grid;
      grid-template-columns: 1fr; 
    gap:12px 24px;
    text-align:left;
  }
  .menu-features li{
    display:flex;
    align-items:flex-start;
    gap:10px;
    font-size:14.5px;
    color:var(--ink-soft);
    line-height:1.5;
  }
  .menu-features li svg{
    flex-shrink:0;
    width:18px; height:18px;
    margin-top:2px;
    stroke:var(--orange-deep);
  }
  .menu-features a{ color:var(--orange-deep); border-bottom:1px solid rgba(216,94,16,0.35); text-decoration:none; }
  .menu-features a:hover{ color:var(--orange); }
 
  .menu-note{
    display:inline-block;
    background:var(--sky-pale);
    border:1px solid rgba(111,183,224,0.4);
    color:var(--navy);
    font-size:13px;
    line-height:1.6;
    padding:10px 18px;
    border-radius:10px;
  }
  .menu-note a{ color:var(--navy); font-weight:600; text-decoration:underline; }
 
  @media (max-width:560px){
    .menu-features{ grid-template-columns:1fr; }
  }
 
  /* ===== Book viewer ===== */
  .book-stand{
    position:relative;
    background: linear-gradient(180deg, var(--cream-deep) 0%, var(--cream) 65%);
    border-radius: 28px;
    padding: 28px 20px 20px;
    border:1px solid var(--line);
    box-shadow: 0 40px 70px -40px rgba(43,36,32,0.35);
  }
 
  /* little "spine" ribbon at top, a nod to a real menu book */
  .book-stand::before{
    content:"";
    position:absolute;
    top:0; left:50%;
    transform:translateX(-50%);
    width:64px; height:22px;
    background:var(--orange);
    border-radius:0 0 8px 8px;
    box-shadow: 0 4px 10px rgba(216,94,16,0.35);
  }
 
  .book-viewport{
    position:relative;
    perspective: 2400px;
    display:flex;
    align-items:center;
    justify-content:center;
    min-height: 560px;
  }
 
  .page-shell{
    position:relative;
    cursor: zoom-in;
    width: min(78vw, 400px);
    aspect-ratio: 1414 / 2000; /* matches source menu page proportions */
    border-radius: 10px;
    overflow:hidden;
    background:#fff;
    box-shadow:
      0 2px 4px rgba(43,36,32,0.08),
      0 24px 48px -20px rgba(43,36,32,0.35);
    transform-style: preserve-3d;
    transform-origin: left center;
    transition: transform 0.55s cubic-bezier(.4,.1,.25,1), opacity 0.4s ease;
  }
 
  .page-shell img{
    display:block;
    width:100%; height:100%;
    object-fit:cover;
    object-position:top center;
  }
 
  /* page-turn animation states, toggled by JS */
  .page-shell.turning-next{ transform: rotateY(-16deg) scale(0.97); opacity:0.55; }
  .page-shell.turning-prev{ transform: rotateY(16deg) scale(0.97); opacity:0.55; }
 
  .page-badge{
    position:absolute;
    bottom:14px; right:14px;
    background:rgba(31,59,77,0.85);
    color:var(--cream);
    font-size:11px;
    letter-spacing:0.08em;
    padding:5px 10px;
    border-radius:20px;
    font-family:var(--font-body);
  }
 
  /* Arrows */
  .book-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:50px; height:50px;
    border-radius:50%;
    border:1px solid var(--line);
    background:var(--cream);
    display:flex; align-items:center; justify-content:center;
    cursor:pointer;
    z-index:5;
    box-shadow: 0 10px 24px -8px rgba(43,36,32,0.2);
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
  }
  .book-nav:hover{
    border-color:var(--orange);
    background:var(--sky-pale);
    transform:translateY(-50%) scale(1.06);
  }
  .book-nav:active{ transform:translateY(-50%) scale(0.94); }
  .book-nav svg{ width:18px; height:18px; stroke:var(--ink); }
  .book-nav.prev{ left:0; }
  .book-nav.next{ right:0; }
 
  @media (max-width:640px){
    .book-nav{ width:40px; height:40px; }
    .book-nav.prev{ left:-4px; }
    .book-nav.next{ right:-4px; }
    .book-viewport{ min-height:420px; }
  }
 
  /* ===== Thumbnails ===== */
  .thumb-rail{
    display:flex;
    gap:12px;
    overflow-x:auto;
    padding: 26px 6px 6px;
    scrollbar-width: thin;
    justify-content: center;
    scrollbar-color: var(--orange) transparent;
  }
  .thumb-rail::-webkit-scrollbar{ height:6px; }
  .thumb-rail::-webkit-scrollbar-thumb{ background:var(--orange); border-radius:4px; }
 
  .thumb{
    flex:0 0 auto;
    width:56px;
    aspect-ratio: 1414/2000;
    border-radius:6px;
    overflow:hidden;
    border:2px solid transparent;
    cursor:pointer;
    opacity:0.6;
    transition: opacity 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    background:#fff;
  }
  .thumb img{ width:100%; height:100%; object-fit:cover; object-position:top center; }
  .thumb:hover{ opacity:0.9; transform:translateY(-2px); }
  .thumb.is-active{
    opacity:1;
    border-color:var(--orange);
    box-shadow: 0 6px 14px -6px rgba(216,94,16,0.5);
  }
 
  .page-counter{
    text-align:center;
    margin-top:14px;
    font-size:12.5px;
    letter-spacing:0.08em;
    color:var(--ink-soft);
  }
  .page-counter b{ color:var(--orange-deep); }
 
  :focus-visible{ outline:2px solid var(--orange); outline-offset:3px; }


  .lightbox{
  position:fixed;
  inset:0;
  background:rgba(43,36,32,0.92);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:32px;
  opacity:0;
  pointer-events:none;
  transition: opacity 0.3s ease;
  /* must sit above the now-fixed header (z-index:1000) or the nav
     bar would visually punch through the fullscreen menu overlay */
  z-index: 1100;
}
.lightbox.is-open{
  opacity:1;
  pointer-events:auto;
}
.lightbox img{
  max-width:100%;
  max-height:100%;
  border-radius:8px;
  box-shadow:0 30px 60px rgba(0,0,0,0.5);
}
.lightbox-close{
  position:absolute;
  top:20px; right:20px;
  width:44px; height:44px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,0.3);
  background:rgba(255,255,255,0.1);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
}
.lightbox-close svg{ width:20px; height:20px; stroke:var(--cream); }
.lightbox-close:hover{ background:rgba(255,255,255,0.2); }
.lightbox-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:52px; height:52px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,0.3);
  background:rgba(255,255,255,0.1);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  transition: background 0.2s ease;
}
.lightbox-nav:hover{ background:rgba(255,255,255,0.2); }
.lightbox-nav svg{ width:20px; height:20px; stroke:var(--cream); }
.lightbox-nav.prev{ left:20px; }
.lightbox-nav.next{ right:20px; }

@media (max-width:640px){
  .lightbox-nav{ width:40px; height:40px; }
  .lightbox-nav.prev{ left:8px; }
  .lightbox-nav.next{ right:8px; }
}