











      /* Prints table — desktop */

      /* Prints icon grid */
      .prints-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
        background: rgba(255,255,255,0.07);
        border: 1px solid rgba(255,255,255,0.07);
        overflow: hidden;
      }
      @media (min-width: 640px)  { .prints-grid { grid-template-columns: repeat(3, 1fr); } }
      @media (min-width: 1024px) { .prints-grid { grid-template-columns: repeat(6, 1fr); } }


.downloadTab {background:#252c38!important;} 
.downCol { font-size:1.3em!important; color:#d58d05!important;}
.rcorner {border-radius: 24px;}
      .print-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
        padding: 1.75rem 1rem;
        background: rgba(0,0,0,0.35);
        transition: background 0.25s ease;
      }
      .downloadHead {font-size: 2em; font-weight: bold; color: #cd8806; line-height: 28px; }
      .print-item:hover { background: rgba(255,255,255,0.06); }

      .print-icon {
        font-size: 2rem;
        line-height: 1;
        margin-bottom: 0.25rem;
      }
      .print-name {
        font-size: 0.82rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--color-on-surface, #e8e3dd);
        line-height: 21px;
      }
      .print-detail {
        font-size: 0.75rem;
        line-height: 1.5;
        color: var(--color-on-surface-variant, #a09890);
      }

#me{
    background-color: #404040; margin-bottom:10em; margin-top: 10em;
}

.wallpaperSection img { height: 50%!important;  }
#gallery {padding-top:9em!important;}
      
.contact-form {
  max-width: 700px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 18px;
  background: #1c1c1c;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  color: white;
}

.contact-form textarea {
  height: 180px;
}

/* Social */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 20px;
}

.social-card {
  background: var(--card-color);
  padding: 40px;
  text-align: center;
  border-radius: 20px;
  transition: 0.3s ease;
}

.social-card:hover {
  transform: translateY(-8px);
}

/* Footer */
.footer {
  text-align: center;
  padding: 30px;
  border-top: 1px solid var(--border-color);
  color: var(--muted-color);
}

/* Nav scroll fill — global, all screen sizes */
.banner.scrolled {
  background: rgba(29,35,43, 0.92) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    padding: 20px;
  }

  .nav-links {
    gap: 16px;
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr;
  }
} 



/* ══════════════════════════════════════════════════════
   DESIGN TOKENS  (replaces external css/style.css)
   ══════════════════════════════════════════════════════ */
:root {
  /* Spacing scale */
  --stack-sm:  0.5rem;
  --stack-md:  1rem;
  --stack-lg:  2rem;
  --gutter:    1rem;
  --margin-desktop: 4rem;
  --container-max: 1400px;

  /* Typography scale */
  --display-lg:        clamp(2.2rem, 5vw, 4rem);
  --display-lg-mobile: clamp(1.6rem, 6vw, 2.6rem);
  --headline-xl:       clamp(1.5rem, 3vw, 2.25rem);
  --headline-lg:       clamp(1.1rem, 2vw, 1.5rem);
  --headline-md:       clamp(0.85rem, 1.5vw, 1.05rem);
  --body-lg:           1rem;
  --body-md:           0.9375rem;
  --label-md:          0.8125rem;
  --label-sm:          0.75rem;

  /* Colors */
  --on-surface:           #e5e2e1;
  --on-surface-variant:   #a8a4a2;
  --primary:              #9E8E7E;
  --tertiary:             #8aad94;
  --surface-container:    #1a1a1a;
  --surface-container-low:#161616;
  --surface-container-lowest: #0a0a0a;
  --outline-variant:      rgba(255,255,255,0.12);
  --background:           #0F0F0F;
}

/* ══ Base reset ══ */
html { scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: border-box; }
body {
  background-color: var(--background);
  color: var(--on-surface);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  margin: 0;
}

/* ══ Utility token classes ══ */
.font-display-lg    { font-family: 'Playfair Display', serif; font-size: var(--display-lg); line-height: 1.12; font-weight: 700; }
.font-headline-xl   { font-family: 'Playfair Display', serif; font-size: var(--headline-xl); line-height: 1.2; font-weight: 600; }
.font-headline-lg   { font-size: var(--headline-lg); font-weight: 600; line-height: 1.25; }
.font-headline-md   { font-size: var(--headline-md); font-weight: 600; line-height: 1.3; }
.font-body-lg       { font-size: var(--body-lg); line-height: 1.6; }
.font-body-md       { font-size: var(--body-md); line-height: 1.6; }
.font-label-md      { font-size: var(--label-md); font-weight: 500; letter-spacing: 0.08em; }
.font-label-sm      { font-size: var(--label-sm); line-height: 1.4; }

.text-display-lg         { font-size: var(--display-lg); }
.text-display-lg-mobile  { font-size: var(--display-lg-mobile); }
.text-headline-xl        { font-size: var(--headline-xl); }
.text-headline-lg        { font-size: var(--headline-lg); }
.text-headline-md        { font-size: var(--headline-md); }
.text-body-lg            { font-size: var(--body-lg); }
.text-body-md            { font-size: var(--body-md); }
.text-label-md           { font-size: var(--label-md); }
.text-label-sm           { font-size: var(--label-sm); }
.text-on-surface         { color: var(--on-surface); }
.text-on-surface-variant { color: var(--on-surface-variant); }
.text-primary            { color: var(--primary); }
.text-tertiary           { color: var(--tertiary); }

.p-stack-md  { padding: var(--stack-md); }
.p-stack-lg  { padding: var(--stack-lg); }
.py-stack-lg { padding-top: var(--stack-lg); padding-bottom: var(--stack-lg); }
.mb-stack-lg { margin-bottom: var(--stack-lg); }
.mb-stack-md { margin-bottom: var(--stack-md); }
.gap-gutter  { gap: var(--gutter); }
.px-margin-desktop { padding-left: var(--margin-desktop); padding-right: var(--margin-desktop); }
/*.max-w-container-max { max-width: var(--container-max); }*/
.bg-background           { background-color: var(--background); }
.bg-surface-container    { background-color: var(--surface-container); }
.bg-surface-container-low       { background-color: var(--surface-container-low); }
.bg-surface-container-lowest    { background-color: var(--surface-container-lowest); }
.border-outline-variant  { border-color: var(--outline-variant); }

/* ══ Component styles ══ */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}
.ghost-border   { border: 1px solid rgba(255,255,255,0.15); }
.glass-overlay  { background: linear-gradient(50deg, rgba(15,15,15,0) 0%, rgba(15,15,15,0.5) 100%); }
.glass-overlay-me { background: linear-gradient(-50deg, rgba(15,15,15,0) 0%, rgba(15,15,15,1) 100%); }
.moss-accent    { border-left: 2px solid #4A5D4E; }
/*.banner         { background-color: rgba(29,35,43,1); }*/
  footer {    background-color: rgba(29, 35, 43, 1); padding:1em 4em;}

/* ══ Selection ══ */
::selection { background: #4A5D4E; color: #fff; }

/* ══════════════════════════════════════════════════════
   NAV
   ══════════════════════════════════════════════════════ */
.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding: 0 1.25rem;
}
@media (min-width: 768px) {
  .nav-bar { padding: 0 var(--margin-desktop); height: 70px; }
}
.nav-logo img { width: auto; display: block; }
.nav-insta img {  width: auto; display: block; }

.hamburger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--on-surface);
  padding: 0.4rem;
  transition: opacity 0.2s ease;
}
@media (min-width: 768px) { .hamburger-btn { display: none; } }

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(10, 10, 10, 0.98);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.mobile-nav-overlay.open { display: flex !important; opacity: 1; }

.nav-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--on-surface);
  cursor: pointer;
  padding: 0.4rem;
  z-index: 310;
}
.mobile-nav-overlay .nav-logo img { height: 40px; margin-bottom: 0.5rem; }
.mobile-nav-overlay a {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--on-surface);
  text-decoration: none;
  transition: color 0.2s ease;
}
.mobile-nav-overlay a:hover { color: var(--primary); }

/* ══════════════════════════════════════════════════════
   HERO BANNER BLOCKS — fluid, viewport-relative
   ══════════════════════════════════════════════════════ */
/* Desktop: absolute-positioned, anchored to right/left */
.bannerCont {
  text-align: right;
  width: min(860px, 41vw);
  position: absolute;
  right: clamp(2rem, 6vw, 5rem);
  top: 50%;
  transform: translateY(-50%);
}
.bannerMe {
  text-align: left;
  width: min(860px, 60vw);
  position: absolute;
  left: clamp(2rem, 8vw, 8%);
  top: 50%;
  transform: translateY(-50%);
}

.bannerCont h1,
.bannerMe h1 {
  font-family: 'Playfair Display', serif;
  font-size: var(--display-lg);
  line-height: 1.12;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.bio-text {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  line-height: 1.75;
  color: rgba(229,226,225,0.85);
}

/* ══════════════════════════════════════════════════════
   GALLERY & SECTIONS
   ══════════════════════════════════════════════════════ */
.gallery  { padding-top: clamp(3rem, 8vw, 8rem); }
.contact  { margin-top: clamp(2rem, 6vw, 6rem); }

/* ── Contact form ── */
.contact input,
.contact textarea {
  color: var(--on-surface);
  border-bottom-color: var(--outline-variant);
}
.contact input:focus,
.contact textarea:focus {
  outline: none;
  border-bottom-color: var(--tertiary);
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — TABLET  (768 – 1023px)
   ══════════════════════════════════════════════════════ */
@media (min-width: 768px) and (max-width: 1023px) {

  /* Banner — shorten width so it doesn't bleed */

  .bannerMe {
    width: min(680px, 75vw);
    top: 50%;
    transform: translateY(-50%);
  }



  .bannerCont { right: clamp(1.5rem, 4vw, 3rem);          width: 41vw;}
  .bannerMe   { left:  clamp(1.5rem, 4vw, 3rem); }

  /* Reduce hero headline on tablets */
  .bannerCont h1,
  .bannerMe h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
  }

  /* Gallery — 2-col on tablet instead of 12-col chaos */
  .grid.grid-cols-1.md\:grid-cols-12 {
    grid-template-columns: repeat(6, 1fr) !important;
  }

  /* Smaller nav padding on tablet */
  .px-margin-desktop { padding-left: 2rem; padding-right: 2rem; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 767px)
   ══════════════════════════════════════════════════════ */
@media (max-width: 767px) {

  /* Show hamburger, hide desktop links */
  .hamburger-btn { display: flex !important; }

  /* Remove desktop padding */
  .px-margin-desktop { padding-left: 1rem !important; padding-right: 1rem !important; }

  /* ── Hero sections ── */
  section.relative.h-screen {
    height: auto !important;
    min-height: 100svh;
  }
  /* Inner flex container — push content toward bottom */
  section.relative.h-screen > .relative.z-20 {
    justify-content: flex-end !important;
    align-items: flex-start !important;
    padding: 80px 1.25rem 2.5rem !important;
  }

  /* Banner blocks — flow naturally (remove absolute) */
  .bannerCont,
  .bannerMe {
    position: relative !important;
    width: 100% !important;
    inset: auto !important;
    transform: none !important;
    text-align: left !important;
    padding: 0 !important;
  }

  /* Hero headline */
  .bannerCont h1,
  .bannerMe h1 {
    font-size: clamp(1.5rem, 7vw, 2.2rem) !important;
    line-height: 1.2 !important;
    margin-bottom: 0.75rem !important;
  }

  /* Bio text */
  .bio-text {
    font-size: 0.88rem !important;
    line-height: 1.7 !important;
    margin-top: 0.5rem;
  }

  /* "Me" section — allow scroll when bio is long */
  #me > .relative.z-20 {
    overflow-y: auto;
    padding-bottom: 2rem !important;
  }

  /* Gallery & contact spacing */
  .gallery  { padding-top: 2rem !important; }
  .contact  { margin-top: 2rem !important; }

  /* Typography scale-down */
  .font-headline-xl,
  .text-headline-xl { font-size: 1.4rem !important; }
  .font-headline-lg,
  .text-headline-lg { font-size: 1rem !important; }
  .font-headline-md,
  .text-headline-md { font-size: 0.85rem !important; line-height: 1.2 !important; }
  .font-label-sm,
  .text-label-sm    { font-size: 0.65rem !important; line-height: 1.35 !important; }

  /* Gallery grid — 2 columns */
  .grid.grid-cols-1.md\:grid-cols-12 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.5rem !important;
  }
  /* Wide (6-span) cards span both columns */
  [class*="md:col-span-6"] { grid-column: span 2 !important; }
  /* 4-span cards: 1 column each */
  [class*="md:col-span-4"] { grid-column: span 1 !important; }
  /* 3-span cards: 1 column each */
  [class*="md:col-span-3"] { grid-column: span 1 !important; }

  /* Featured Collections grid — 2 cols */
  main > .grid.grid-cols-1,
  .grid.grid-cols-1.md\:grid-cols-12 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.5rem !important;
  }

  /* Contact form */
  .contact [class*="bg-surface-container-low"] { padding: 1.25rem !important; }
  .contact button[type="submit"] { width: 100% !important; text-align: center !important; }

  /* Footer stacks vertically */


  footer .flex { flex-direction: column !important; align-items: center !important; text-align: center !important; gap: 1rem !important; }

  /* Prevent horizontal scroll */
  body, main, section { max-width: 100vw; }
}

/* Ensure all gallery/hero images cover their containers */
img { display: block; }
.relative img { object-fit: cover; }

/* ══ Lightbox Popup ══ */
#lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: lbFadeIn 0.2s ease;
}
#lightbox-overlay.open { display: flex; }

@keyframes lbFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

#lightbox-img-wrap {
  position: relative;
  max-width: min(92vw, 900px);
  max-height: 78vh;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
}
#lightbox-img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #111;
}

#lightbox-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10;
}
#lightbox-close:hover { background: rgba(255,255,255,0.15); }

#lightbox-actions {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

#lightbox-download {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #cd8806;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s, transform 0.15s;
}
#lightbox-download:hover {
  background: #e09a0a;
  transform: translateY(-2px);
}
#lightbox-download .lb-icon {
  font-size: 1.2rem;
}

#lightbox-caption {
  margin-top: 0.6rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  text-align: center;
}

/* ══ Hero slideshow ══ */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.45, 0, 0.55, 1);
  will-change: opacity;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.08);
  transition: transform 6s ease-out;
}
.hero-slide.active img { transform: scale(1); }

/* ── Hero slides as background images (swap via media query on mobile) ── */
.hero-slide--1 { background-image: url('../images/homePage_Img_1.jpg'); }
.hero-slide--2 { background-image: url('../images/homePage_Img_2.jpg'); }
.hero-slide--3 { background-image: url('../images/homePage_Img_3.jpg'); }
.hero-slide--4 { background-image: url('../images/homePage_Img_4.jpg'); }

.hero-slide--1,
.hero-slide--2,
.hero-slide--3,
.hero-slide--4 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.08);
  transition: transform 6s ease-out, opacity 1.4s cubic-bezier(0.45, 0, 0.55, 1);
}
.hero-slide.active.hero-slide--1,
.hero-slide.active.hero-slide--2,
.hero-slide.active.hero-slide--3,
.hero-slide.active.hero-slide--4 { transform: scale(1); }

/* ── Mobile overrides: swap to portrait-cropped versions ── */
@media (max-width: 767px) {
  /* Example: point to mobile-specific crops, or adjust focal point */
  .hero-slide--1 { background-image: url('../images/homePage_Img_1.jpg'); }
  .hero-slide--2 { background-image: url('../images/homePage_Img_2.jpg');}
  .hero-slide--3 { background-image: url('../images/homePage_Img_3.jpg');     }
  .hero-slide--4 { background-image: url('../images/homePage_Img_4.jpg');  }
}

/* Dot indicators */
.hero-dots {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.hero-dot.active {
  background: rgba(255,255,255,0.9);
  transform: scale(1.5);
}

/* Progress bar */
.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: rgba(255,255,255,0.45);
  z-index: 30;
  width: 0%;
}

/* Story hero still uses bg-image */
.meBanner {
  background-image: url('../images/me.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* p-stack-md needs real padding values */
.p-stack-md { padding: 1rem; }

/* space-y-2 fallback */
.space-y-2 > * + * { margin-top: 0.5rem; }

/* Submit button */
button[type="submit"] {
  background: #7D6B5D;
  color: #fff;
  padding: 1rem 3rem;
  font-size: var(--label-md);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: none;
  cursor: pointer;
  transition: padding 0.3s;
}
button[type="submit"]:hover { padding-left: 3.5rem; padding-right: 3.5rem; }

/* ══ md: breakpoint overrides for custom token classes (Tailwind CDN can't auto-generate these) ══ */
@media (min-width: 768px) {
  .md\:px-margin-desktop { padding-left: var(--margin-desktop) !important; padding-right: var(--margin-desktop) !important; }
  .md\:text-display-lg   { font-size: var(--display-lg) !important; }
  .md\:text-aboutme-lg   { font-size: 1rem !important; }
  .md\:grid-cols-12      { grid-template-columns: repeat(12, minmax(0, 1fr)) !important; }
}

/* Margin utilities */
.mb-stack-md { margin-bottom: 1rem; }
.mb-stack-lg { margin-bottom: 2rem; }
.py-stack-lg { padding-top: 2rem; padding-bottom: 2rem; }

@media (max-width: 450px) {

  .py-28 {
    padding-top: 16rem!important;
 
}


.hero-slide--1 { background-image: url('../images/MV_Hero_1.jpg'); }
.hero-slide--2 { background-image: url('../images/MV_Hero_2.jpg'); }
.hero-slide--3 { background-image: url('../images/MV_Hero_3.jpg'); }
.hero-slide--4 { background-image: url('../images/MV_Hero_4.jpg'); }


.hero-home  .py-24 {  padding-bottom:0rem!important;}
.hero-home .pb-24 {    padding-bottom:0rem !important}
.hero-home  .px-4{            padding: 0rem  0rem  0rem !important;
        bottom: 0.4rem;
        position: absolute;}

        .hero-dots { bottom: 1rem!important;}

    .bannerCont {padding:1em!important; background: rgba(0,0,0,0.3); }

.py-14 {padding:2em 1em !important;}

.meBanner {
    background-image: url(../images/me.jpg);
    background-size: contain;
    background-position: top; 

    background-repeat: no-repeat;
}

/* hero-home now uses slideshow — no bg-image override needed */

#gallery {
    padding-top: 3rem !important;
}

footer {
    padding: 1em 1em!important; font-size:12px;
}

  .nav-logo img {height:60px; width: auto; display: block; }

  /* Gallery & Featured Collections: 2-column grid on small phones */
  .grid.grid-cols-1.md\:grid-cols-12 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.375rem !important;
  }

  /* Wide (6-span) cards fill both columns */
  [class*="md:col-span-6"] { grid-column: span 2 !important; }
  /* 4-span and 3-span cards: one column each */
  [class*="md:col-span-4"],
  [class*="md:col-span-3"] { grid-column: span 1 !important; }

  .rcorner {
    border-radius: 9px;
  }

  /* Prevent horizontal padding overflow on smallest screens */
  .px-margin-desktop,
  .md\:px-margin-desktop { padding-left: 0.75rem !important; padding-right: 0.75rem !important; }
}

/* ══ Large screens (≥ 1400px) ══ */
/*@media (min-width: 1400px) {
  .bannerCont { right: calc((100vw - var(--container-max)) / 2 + 4rem); }
  .bannerMe   { left:  calc((100vw - var(--container-max)) / 2 + 4rem); }
}
*/

@media (min-width:800px)  {



}










  /* Downloads Page*/


 .bookmark-nav {
    position: sticky;
    top: 60px;
    z-index: 40;
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem 0 0.75rem;
    /* full-bleed bg so it covers the grid behind it */
    background: var(--background);

    overflow-x: auto;
    scrollbar-width: none;
    /* negative margins so bg stretches edge-to-edge under the page padding */
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  @media (min-width: 768px) {
    .bookmark-nav {
      top: 111px;
      margin-left: -4rem;
      margin-right: -4rem;
      padding-left: 4rem;
      padding-right: 4rem;
    }
  }
  .bookmark-nav::-webkit-scrollbar { display: none; }

  .bookmark-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.06);
    color: var(--on-surface-variant);
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
  }
  .bookmark-btn:hover  { transform: translateY(-1px); }
  .bookmark-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
  }
/* Zoom only applies to prints section icons, not globally */
.print-icon svg { zoom: 150%; }
  /* Section heading dividers — always full-width row in the grid */
  .section-anchor,
  div.section-anchor,
  .grid > .section-anchor {
    /* Span every column no matter how many the grid has */
    grid-column: 1 / -1 !important;
    /* Belt-and-suspenders: also take full width as a block */
    width: 100% !important;
    min-width: 0;

    scroll-margin-top: 110px; /* mobile: 60px banner + ~50px bookmark bar */
    display: flex !important;
    align-items: center;
    gap: 0.65rem;
    padding-top: 2rem;
    padding-bottom: 0.75rem;
    margin-top: 0.75rem;

    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--primary);

    border-top: 1px solid rgba(255,255,255,0.10);
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  /* Repeat across every breakpoint override so nothing can beat it */
  @media (min-width: 768px)  { .section-anchor { grid-column: 1 / -1 !important; width: 100% !important; scroll-margin-top: 130px; } }
  @media (max-width: 1023px) { .section-anchor { grid-column: 1 / -1 !important; width: 100% !important; } }
  @media (max-width: 767px)  { .section-anchor { grid-column: 1 / -1 !important; width: 100% !important; } }
  @media (max-width: 450px)  { .section-anchor { grid-column: 1 / -1 !important; width: 100% !important; } }

