/* =========================================================
   SLG Masterworks - Sarah L Glabman Fine Art Photography
   Brand Refresh 2026: Montserrat Light titles, Oswald labels,
   Open Sans body, navy blue accents. Peter Lik-inspired restraint.
   ========================================================= */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500&family=Montserrat:wght@300;400;600;700&family=Open+Sans:wght@300;400;500&family=Pinyon+Script&display=swap');

/* ---- Design Tokens ---- */
:root {
  /* Backgrounds */
  --bg:           #FFFFFF;
  --bg-2:         #F6F6F4;
  --surface:      #EEEEEC;
  --surface-2:    #E8E8E5;
  --ink:          #141414;
  --ink-muted:    #666662;
  --line:         #E0E0DC;
  --line-soft:    rgba(13, 27, 53, 0.12);

  /* Navy Blue Accent (primary brand colour) */
  --blue:         #0D1B35;      /* deep navy - single brand blue */
  --blue-bright:  #0D1B35;      /* kept for legacy refs */
  --blue-deep:    #0D1B35;      /* darkest navy - replaces black */
  --blue-glow:    rgba(13, 27, 53, 0.12);

  /* Gold accent */
  --gold:         #C9A84C;
  --gold-light:   #DDB95A;
  --gold-deep:    #A8892A;
  --gold-glow:    rgba(201, 168, 76, 0.18);

  /* Footer stays dark */
  --footer-bg:        #0D1B35;
  --footer-text:      #A8A8A4;
  --footer-heading:   #C9A84C;
  --footer-ink:       #F0F0EE;
  --footer-line:      rgba(201,168,76,.12);

  /* Typography */
  --display: "Oswald", "Arial Narrow", sans-serif;     /* labels, nav, eyebrows */
  --title:   "Montserrat", sans-serif;                  /* h1, h2, h3 - use weight 300 */
  --sans:    "Open Sans", -apple-system, sans-serif;    /* body copy */
  --script:  "Pinyon Script", "Allura", cursive;        /* signature only */

  --max:    1320px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --ease:   cubic-bezier(.2,.7,.2,1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; scroll-padding-top: calc(var(--nav-h, 72px) + 8px); }
body {
  margin: 0;
  overflow-x: clip; /* 'hidden' breaks position:sticky (nav) - clip doesn't create a scroll container */
  width: 100%;
  max-width: 100%;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--gold); }
button { font: inherit; cursor: pointer; color: inherit; }
::selection { background: var(--gold); color: #fff; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--title);
  font-weight: 300;
  color: var(--blue-deep);  /* navy headings - brand consistency */
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.75rem, 7vw, 6rem); }
h2 { font-size: clamp(2.25rem, 4.5vw, 4rem); }
h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 400; }
h4 { font-size: 1.25rem; font-weight: 500; }

/* Section label - Oswald, all caps, wide tracking */
.eyebrow,
.section-label {
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: inline-block;
}

.italic {
  font-family: var(--title);
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: -0.01em;
}
.signature {
  font-family: var(--script);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--gold);
  line-height: 1;
}
.signature small {
  font-family: var(--sans);
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: .5rem;
}

/* ---- Layout ---- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.section   { padding-top: clamp(3rem, 6vw, 6rem); padding-bottom: clamp(3rem, 6vw, 6rem); }
.divider   { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ================================================================
   NAVIGATION
   Logo: far left | Nav: center | Icons: far right
   ================================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--line);
}
/* Fixed nav leaves the document flow - push page content down by nav height.
   Homepage is excluded: its hero sits behind the transparent fixed nav. */
body:not(.is-homepage) { padding-top: var(--nav-h, 72px); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  gap: 1.5rem;
}

/* Brand / Logo */
.brand {
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.brand-logo {
  height: 32px;          /* Sarah: a little smaller (was 38px) */
  width: auto;
  display: block;
  opacity: 0.7;          /* Sarah: reduce ~30% (softer logo) */
}


/* Center nav */
.nav-center { flex: 1; display: flex; justify-content: center; }
.nav-links {
  display: flex; gap: 2.5rem; align-items: center;
  list-style: none; padding: 0; margin: 0;
}
.nav-links > li { position: relative; }
.nav-links a,
.nav-links button.nav-trigger {
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: .4rem 0;
  background: none; border: 0;
  display: inline-flex; align-items: center; gap: .4rem;
}
.nav-links a::after,
.nav-trigger::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  height: 1px; width: 0; background: var(--gold);
  transition: width .35s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after,
.nav-trigger:hover::after,
.has-mega:hover .nav-trigger::after,
.has-mega.open .nav-trigger::after { width: 100%; }
.nav-links a:hover, .nav-trigger:hover { color: var(--gold); }

/* ================================================================
   THE IMAGES - DROPDOWN PANEL
   Full-width dark typographic panel, 3 options, slides from nav
   ================================================================ */

/* Nav item structure */
.nav-item-images {
  display: flex; align-items: center; gap: .25rem; position: static;
}
.nav-link-main {
  font-family: var(--display);
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink);
  padding: .4rem 0;
  position: relative;
  transition: color .25s var(--ease);
}
.nav-link-main::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  height: 1px; width: 0; background: var(--gold);
  transition: width .35s var(--ease);
}
.nav-link-main:hover,
.nav-link-main.is-active { color: var(--gold); }
.nav-link-main.is-active::after,
.nav-link-main:hover::after { width: 100%; }

/* Caret button next to "The Images" */
.nav-caret {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px;
  background: none; border: none;
  color: var(--ink-muted);
  cursor: pointer;
  transition: color .25s var(--ease), transform .3s var(--ease);
  padding: 0;
  flex-shrink: 0;
}
.nav-caret svg { width: 14px; height: 14px; }
.nav-caret:hover { color: var(--gold); }
.nav-caret.open { transform: rotate(180deg); color: var(--gold); }

/* The dark full-width panel */
.images-panel {
  position: fixed;
  top: 0;           /* will be adjusted by JS after nav loads */
  left: 0; right: 0;
  z-index: 98;
  background: #0C0C0A;
  border-bottom: 1px solid rgba(255,255,255,.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
  pointer-events: none;
}
.images-panel.open {
  opacity: 1; visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.images-panel-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex; align-items: stretch;
}
.images-option {
  flex: 1;
  display: flex; flex-direction: column; gap: .65rem;
  padding: 2.5rem 2rem 2.5rem 0;
  color: #F0F0EE;
  border-right: 1px solid rgba(255,255,255,.06);
  position: relative;
  transition: background .3s var(--ease);
  text-decoration: none;
}
.images-option:first-child { padding-left: 0; }
.images-option:last-child { border-right: none; padding-right: 0; }
.images-option:hover { background: transparent; }

.opt-index {
  font-family: var(--display);
  font-size: 0.6rem; font-weight: 400;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,.2);
  transition: color .3s var(--ease);
}
.opt-title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #FFFFFF;
  line-height: 1;
  transition: color .3s var(--ease);
}
.opt-line {
  width: 28px; height: 1px;
  background: rgba(255,255,255,.18);
  transition: width .4s var(--ease), background .3s var(--ease);
}
.opt-sub {
  font-family: var(--sans);
  font-size: 0.78rem; font-weight: 300;
  color: rgba(255,255,255,.38);
  letter-spacing: 0.05em;
  transition: color .3s var(--ease);
}
.opt-arrow {
  font-size: 1rem; color: rgba(255,255,255,.2);
  margin-top: .5rem;
  transition: color .3s var(--ease), transform .3s var(--ease);
  display: inline-block;
}
.images-option:hover .opt-index   { color: rgba(255,255,255,.5); }
.images-option:hover .opt-title   { color: var(--footer-heading); }
.images-option:hover .opt-line    { width: 52px; background: var(--footer-heading); }
.images-option:hover .opt-sub     { color: rgba(255,255,255,.65); }
.images-option:hover .opt-arrow   { color: var(--footer-heading); transform: translateX(5px); }

/* Close X button */
.images-panel-close {
  position: absolute; top: 1.5rem; right: var(--gutter);
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  transition: color .25s var(--ease);
}
.images-panel-close:hover { color: #fff; }
.images-panel-close svg { width: 18px; height: 18px; }

/* body.panel-open - prevent scroll behind panel */
body.panel-open { overflow: hidden; }

/* ================================================================
   IS-ACTIVE nav link state (injected by components.js)
   ================================================================ */
#navLinks a.is-active { color: var(--gold); }
#navLinks a.is-active::after { width: 100%; }

/* Caret */
.nav-trigger .caret {
  width: 7px; height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .3s var(--ease);
  opacity: .7;
}
.has-mega:hover .nav-trigger .caret,
.has-mega.open .nav-trigger .caret { transform: rotate(-135deg) translateY(0); }

/* Right icon group */
.nav-icons {
  display: flex; align-items: center; gap: .75rem;
  flex-shrink: 0;
}
.nav-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: none; border: 0;
  color: var(--ink);
  transition: color .25s var(--ease);
}
.nav-icon:hover { color: var(--gold); }
.nav-icon svg { width: 20px; height: 20px; }

/* Hamburger (3-line) toggle */
.nav-toggle {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 5px;
  background: none; border: 0;
  width: 36px; height: 36px;
  cursor: pointer;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mega menu */
.mega {
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: min(880px, 88vw);
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold);
  padding: 2rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .25s var(--ease), transform .3s var(--ease), visibility .25s;
  box-shadow: 0 24px 64px rgba(0,0,0,.12);
}
.has-mega:hover .mega,
.has-mega:focus-within .mega,
.has-mega.open .mega {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.mega-card {
  position: relative; display: block;
  aspect-ratio: 4/5; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line);
}
.mega-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease), opacity .5s var(--ease);
  opacity: .82;
}
.mega-card:hover img { transform: scale(1.08); opacity: 1; }
.mega-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.1) 60%);
  z-index: 1;
}
.mega-card-label {
  position: absolute; bottom: 1rem; left: 1rem; right: 1rem; z-index: 2;
}
.mega-card-label h4 {
  font-family: var(--display);
  font-size: 1.1rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin: 0 0 .25rem; color: #F5F5F0;
}
.mega-card-label span {
  font-family: var(--sans);
  font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: #C9A84C;
}
.mega-card:hover .mega-card-label h4 { color: #C9A84C; }
.mega-foot {
  margin-top: 1.5rem; padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--display);
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-muted);
}
.mega-foot a { color: var(--blue); border-bottom: 1px solid var(--blue-deep); padding-bottom: 2px; }
.mega-foot a:hover { color: var(--gold); }

/* Position the images panel just below the sticky nav */
:root { --nav-h: 72px; }
.images-panel { top: var(--nav-h); }

/* ================================================================
   TRANSPARENT NAV - homepage hero overlay
   On homepage: nav is fixed + transparent, turns solid on scroll
   ================================================================ */
body.is-homepage .nav {
  position: fixed; top: 0; left: 0; right: 0;
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background .4s ease, border-color .4s ease, backdrop-filter .4s ease;
}
body.is-homepage .nav .brand           { color: #fff; }
body.is-homepage .nav:not(.nav-scrolled) .brand-logo { filter: brightness(0) invert(1); } /* blue logo → white over hero */
body.is-homepage .nav .nav-link-main,
body.is-homepage .nav #navLinks a      { color: rgba(255,255,255,.88); }
body.is-homepage .nav .nav-caret       { color: rgba(255,255,255,.5); }
body.is-homepage .nav .nav-icon        { color: rgba(255,255,255,.8); }
body.is-homepage .nav .nav-toggle span { background: #fff; }
body.is-homepage .nav .nav-link-main::after,
body.is-homepage .nav #navLinks a::after { background: rgba(255,255,255,.8); }

body.is-homepage .nav.nav-scrolled {
  background: rgba(255,255,255,0.95);
  border-bottom-color: var(--line);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
}
body.is-homepage .nav.nav-scrolled .brand           { color: var(--blue); }
body.is-homepage .nav.nav-scrolled .brand small     { color: var(--gold); }
body.is-homepage .nav.nav-scrolled .nav-link-main,
body.is-homepage .nav.nav-scrolled #navLinks a      { color: var(--ink); }
body.is-homepage .nav.nav-scrolled .nav-caret       { color: var(--ink-muted); }
body.is-homepage .nav.nav-scrolled .nav-icon        { color: var(--ink); }
body.is-homepage .nav.nav-scrolled .nav-toggle span { background: var(--ink); }
body.is-homepage .nav.nav-scrolled .nav-link-main::after,
body.is-homepage .nav.nav-scrolled #navLinks a::after { background: var(--gold); }

/* Push body content down by nav height on homepage */
body.is-homepage { padding-top: 0; }

/* ================================================================
   HERO SLIDER (homepage) - full viewport, Lik-style
   ================================================================ */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: #0D1B35;
}
/* On homepage, hero fills full viewport behind the fixed nav */
body.is-homepage .hero-slider { height: 100vh; }

.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
}
.hero-slide.active { opacity: 1; z-index: 1; }

/* Blurred fill behind the contained image - fills the wide desktop space
   with a soft, darkened copy of the same photo so there are no dead bars.
   Premium gallery look; the sharp full image sits on top, never cropped. */
.hero-slide::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
  filter: blur(34px) brightness(.45) saturate(1.15);
  transform: scale(1.18);
  z-index: 0;
}
/* Sharp, FULL vertical image - shown complete, never cropped on any screen */
.hero-slide img {
  position: relative;
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  filter: brightness(.82) contrast(1.04);
  z-index: 1;
}

/* Dark gradient - strong top band for nav visibility + bottom for text */
.hero-slider::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,.62) 0%,      /* nav band - dark regardless of image */
      rgba(0,0,0,.35) 10%,
      rgba(0,0,0,.05) 28%,     /* clear in the middle */
      rgba(0,0,0,.15) 60%,
      rgba(0,0,0,.55) 100%
    );
  pointer-events: none;
}

/* ---- Per-slide centered content overlay ---- */
.hero-content {
  position: absolute; inset: 0; z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: var(--nav-h, 72px) var(--gutter) calc(5.5rem + 10vh);  /* shifted up 10% */
}

.hero-eyebrow {
  font-family: var(--display);
  font-size: clamp(0.55rem, 0.9vw, 0.68rem);
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(255,255,255,.90);
  margin: 0 0 0.7rem;
  line-height: 1.6;
}

.hero-title {
  font-family: var(--title);
  font-size: clamp(1.53rem, 3.87vw, 3.69rem);
  font-weight: 500;
  font-style: normal;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0 0 0.65rem;
  text-shadow: 0 2px 24px rgba(0,0,0,.65), 0 4px 60px rgba(0,0,0,.4);
}

.hero-location {
  font-family: var(--display);
  font-size: clamp(0.58rem, 0.85vw, 0.68rem);
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  margin: 0 0 1.4rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Both hero buttons - identical outlined style, equal size */
.hero-btn-primary,
.hero-btn-secondary {
  font-family: var(--display);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  width: 6.91rem;
  height: 2.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.75);
  transition: color .3s ease, background .3s ease, border-color .3s ease;
  white-space: nowrap;
}
.hero-btn-primary:hover,
.hero-btn-secondary:hover {
  color: #fff;
  background: rgba(0,0,0,.50);
  border-color: #fff;
}

/* ── Side ghost arrows ── */
.hero-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: none;
  padding: 2rem 1.5rem;
  cursor: pointer;
  color: rgba(255,255,255,0);
  transition: color .5s ease;
}
.hero-slider:hover .hero-arrow { color: rgba(255,255,255,.28); }
.hero-arrow:hover { color: rgba(255,255,255,.85) !important; }
#heroPrev { left: 1rem; }
#heroNext { right: 1rem; }
.hero-arrow svg { width: 14px; height: 28px; display: block; }

/* ── Bottom numbered segment track ── */
.hero-controls {
  position: absolute;
  bottom: calc(1.75rem + 10vh); left: 50%; transform: translateX(-50%);
  z-index: 10;
}
.hero-dots {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
}
.hero-dot {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  background: none;
  width: auto; height: auto;
}
.hero-dot::before {
  font-family: var(--display);
  font-size: 0.52rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,.58);
  transition: color .4s ease;
}
.hero-dot[data-slide="0"]::before { content: "01"; }
.hero-dot[data-slide="1"]::before { content: "02"; }
.hero-dot[data-slide="2"]::before { content: "03"; }
.hero-dot.active::before { color: rgba(255,255,255,1.0); }
.hero-dot::after {
  content: "";
  display: block;
  width: 36px; height: 1px;
  background: rgba(255,255,255,.45);
  transition: background .4s ease, width .4s ease;
}
.hero-dot.active::after { width: 52px; background: rgba(255,255,255,1.0); }
.hero-dot:hover::before { color: rgba(255,255,255,.80); }
.hero-dot:hover::after  { background: rgba(255,255,255,.4); }

/* ================================================================
   HOME SECTIONS - New Arrivals & Best Sellers
   ================================================================ */
.home-section {
  padding: clamp(4rem, 7vw, 7rem) 0;
  border-top: 1px solid var(--line);
}
.home-section-head {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  margin-bottom: 3rem;
}
.home-section-head .section-title {
  font-family: var(--title);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--blue-deep);  /* navy headings - brand consistency */
}
.home-section-head .section-label {
  margin-bottom: .5rem;
  display: block;
}
.home-section-body {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  margin-bottom: 2.5rem;
}
.home-section-body p {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--ink-muted);
  max-width: 64ch;
  line-height: 1.8;
  margin: 0;
}

/* ================================================================
   ARTIST STORY - full-width image fade
   ================================================================ */
.artist-story {
  position: relative;
  margin: 0;
  padding: 0;
}
/* Full-bleed band - image fills edge to edge, touches the section above */
.artist-story-band {
  position: relative;
  width: 100%;
  min-height: 480px;
  margin: 0;
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* Faint elephant image filling the band as background */
.artist-story-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}
.story-text {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.story-text .section-label { margin-bottom: .6rem; }
.story-text h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1.5rem;
}
.story-text p {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.08rem;
  color: var(--ink-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ================================================================
   PRINT CAROUSEL / SCROLL STRIP
   ================================================================ */
.print-carousel { overflow: hidden; }


.print-track {
  display: flex;
  padding: 0 var(--gutter);
  gap: clamp(1rem, 2vw, 1.75rem);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  max-width: calc(var(--max) + (var(--gutter) * 2));
  margin: 0 auto;
}
.print-track::-webkit-scrollbar { display: none; }
.print-track .print { flex: 0 0 clamp(240px, 22vw, 320px); scroll-snap-align: start; }

/* Featured carousel (auto-scroll) */
.featured-carousel { overflow: hidden; }
.featured-track {
  display: flex; width: max-content;
  will-change: transform;
  animation: featured-scroll 52s linear infinite;
}
.featured-group {
  display: flex; align-items: stretch;
  gap: clamp(1.5rem, 2.4vw, 2.5rem);
  padding-right: clamp(1.5rem, 2.4vw, 2.5rem);
}
.featured-carousel .print { flex: 0 0 clamp(250px, 24vw, 360px); }
.featured-carousel:hover .featured-track { animation-play-state: paused; }
.featured-group.is-clone .print { pointer-events: none; }
@keyframes featured-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Print card */
.print {
  display: block; position: relative;
  color: var(--ink);
  background: var(--bg-2);
  border: 1px solid var(--line);
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.print:hover { border-color: var(--gold); box-shadow: 0 4px 28px rgba(201,168,76,.12); }
.print-figure {
  aspect-ratio: 1/1; overflow: hidden;
  background: var(--surface); position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 1.25rem;
}
.print-figure img {
  width: 100%; height: 100%; object-fit: contain;
  transition: transform 1s var(--ease), opacity .4s var(--ease);
  opacity: .93;
}
.print:hover .print-figure img { transform: scale(1.04); opacity: 1; }
.print-info {
  padding: .85rem 1.1rem .45rem;
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 1rem; border-top: 1px solid var(--line);
}
.print-info h3 {
  font-family: var(--title);
  font-size: 1rem; margin: 0;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.print:hover .print-info h3 { color: var(--gold); }
.print-info .price {
  font-family: var(--display);
  font-size: 0.68rem; letter-spacing: 0.18em;
  color: var(--blue); white-space: nowrap;
}
.print .tag {
  font-family: var(--display);
  font-size: 0.6rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--ink-muted);
  padding: 0 1.1rem .85rem; display: block;
}

/* ---- Print Grid ---- */
.print-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(1.25rem, 2vw, 2rem);
}

/* ================================================================
   FEATURE / EDITORIAL BLOCK
   ================================================================ */
.feature {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: clamp(2rem, 5vw, 6rem);
}
.feature.reverse { direction: rtl; }
.feature.reverse > * { direction: ltr; }
.feature-img {
  aspect-ratio: 5/6; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line);
}
.feature-img-landscape { aspect-ratio: 16/11; width: 110%; max-width: none; }
.feature-img > img { width: 100%; height: 100%; object-fit: cover; }
.feature-text p {
  color: var(--ink-muted); font-size: 1.02rem;
  max-width: 50ch; margin: 1.25rem 0 2rem;
}

/* Collection viewer */
.coll-img-wrap {
  aspect-ratio: 3/2 !important; overflow: hidden;
  position: relative; background: var(--surface); border: 1px solid var(--line);
}
.coll-stage { position: absolute; inset: 0; background: var(--surface); overflow: hidden; }
.coll-track { position: relative; width: 100%; height: 100%; }
.coll-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; opacity: 0;
  transition: opacity .7s var(--ease), transform .9s var(--ease);
  transform: scale(1.04);
}
.coll-img.active { opacity: 1; transform: scale(1); z-index: 1; }
.coll-stage::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 40%);
  pointer-events: none;
}
.coll-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5; background: rgba(10,8,6,.5); border: 1px solid rgba(255,255,255,.15);
  color: #F5F5F0; width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s var(--ease);
}
.coll-arrow:hover { background: var(--blue); border-color: var(--blue); }
.coll-prev { left: 1rem; } .coll-next { right: 1rem; }
.coll-bar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 4;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem 1.5rem; gap: 1.25rem;
}
.coll-dots { display: flex; gap: .5rem; align-items: center; }
.coll-dot {
  width: 22px; height: 2px; background: rgba(255,255,255,.3);
  transition: background .3s, width .3s; cursor: pointer;
}
.coll-dot.active { background: #fff; width: 34px; }
.coll-count { font-family: var(--display); font-size: 0.65rem; letter-spacing: 0.2em; color: rgba(255,255,255,.45); }
.coll-tabs { display: flex; gap: 0; border-bottom: 1px solid var(--line); margin-bottom: 1.75rem; }
.coll-tab {
  flex: 1; background: none; border: none;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  padding: .65rem .4rem;
  font-family: var(--display); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-muted); cursor: pointer;
  transition: color .25s, border-color .25s;
}
.coll-tab:hover { color: var(--gold); }
.coll-tab.active { color: var(--gold); border-bottom-color: var(--gold); }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-block; padding: .65rem 1.4rem;
  background: var(--gold); color: #fff;
  font-family: var(--display); font-size: 0.68rem;
  letter-spacing: 0.28em; text-transform: uppercase;
  border: 1px solid var(--blue); font-weight: 500;
  transition: all .3s var(--ease);
}
.btn:hover { background: transparent; color: var(--blue); }
.btn-outline {
  display: inline-block; padding: .65rem 1.4rem;
  background: transparent; color: var(--blue);
  font-family: var(--display); font-size: 0.68rem;
  letter-spacing: 0.28em; text-transform: uppercase;
  border: 1px solid var(--blue); font-weight: 500;
  transition: all .3s var(--ease);
}
.btn-outline:hover { background: var(--blue); color: #fff; }
.text-link {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--display); font-size: 0.68rem;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--blue);
  border-bottom: 1px solid var(--blue-deep);
  padding-bottom: 3px;
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.text-link:hover { gap: .9rem; color: var(--gold); }

/* Section CTA */
.section-cta {
  display: inline-flex; align-items: center; gap: .75rem;
  font-family: var(--display); font-size: 0.68rem;
  font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink); border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
  transition: color .3s var(--ease), border-color .3s var(--ease), gap .3s var(--ease);
}
.section-cta:hover { color: var(--gold); border-color: var(--gold); gap: 1.1rem; }

/* ---- Section header ---- */
.section-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap; margin-bottom: 3.5rem;
  padding-bottom: 1.75rem; border-bottom: 1px solid var(--line);
}
.section-head h2 { margin: 0; }
.section-head .sub { max-width: 36ch; color: var(--ink-muted); font-size: .98rem; }

/* ================================================================
   QUOTE
   ================================================================ */
.quote {
  text-align: center; max-width: 60ch; margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) var(--gutter);
}
.quote p {
  font-family: var(--title);
  font-style: italic; font-weight: 300;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  line-height: 1.5; color: var(--blue-deep);
}
/* On mobile, drop the forced break so the quote wraps naturally */
@media (max-width: 640px) {
  .quote-br { display: none; }
}
.quote cite {
  font-family: var(--display); font-style: normal;
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); display: block; margin-top: 1.5rem;
}

/* ================================================================
   NEWSLETTER
   ================================================================ */
.newsletter {
  background: var(--surface-2);
  padding: clamp(3.5rem, 6vw, 6rem) var(--gutter);
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.newsletter-inner { max-width: 540px; margin: 0 auto; }
.newsletter h2 { color: var(--blue-deep); }
.newsletter p { color: var(--ink-muted); margin: 1rem 0 2rem; }
.newsletter-form {
  display: flex; gap: 0; max-width: 460px; margin: 0 auto;
  border-bottom: 1px solid var(--gold);
}
.newsletter-form input {
  flex: 1; padding: 1rem .5rem; border: 0;
  background: transparent; font: inherit; color: var(--ink); outline: none;
}
.newsletter-form input::placeholder { color: var(--ink-muted); }
.newsletter-form button {
  background: transparent; border: 0; padding: 1rem .75rem;
  font-family: var(--display); font-size: 0.68rem;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold);
}
.newsletter-form button:hover { color: var(--gold); }

/* ================================================================
   FOOTER - dark, full-width, with artist photo background
   ================================================================ */
.footer {
  position: relative;
  background: var(--footer-bg);
  color: var(--footer-text);
  overflow: hidden;
  min-height: 520px;
}

/* Photo background - full footer fill */
.footer-photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.footer-photo-bg img {
  /* Image hamesha footer ki POORI height leti hai (top se bottom tak),
     centered. Sarah ki position har desktop pe same, face kabhi crop nahi,
     aur left/right edges mask se navy me fade. */
  position: absolute;
  height: 100%;
  width: auto;                 /* natural ratio - box exactly image jitna */
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  display: block;
  opacity: 0.55;
  -webkit-mask-image: linear-gradient(to right,
      transparent 0, #000 12%, #000 88%, transparent 100%);
          mask-image: linear-gradient(to right,
      transparent 0, #000 12%, #000 88%, transparent 100%);
}
/* Dark navy overlay with a spotlight over Sarah + camera */
.footer-photo-bg::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 42% 65% at 27% 46%,
      rgba(13,27,53,0.08) 0%,
      rgba(13,27,53,0.30) 45%,
      rgba(13,27,53,0.60) 100%);
}
/* Bade screens (1920+): image footer ki poori height leti hai (top touch),
   box = image, aur left/right edges single mask se navy me fade.
   Normal laptop/mobile pe ye apply nahi hota. */
@media (min-width: 1700px) {
  .footer-photo-bg::before {
    background:
      linear-gradient(to right,
        #0D1B35 6%,  rgba(13,27,53,0) 32%,
        rgba(13,27,53,0) 68%, #0D1B35 94%),
      radial-gradient(ellipse 42% 65% at 27% 46%,
        rgba(13,27,53,0.08) 0%,
        rgba(13,27,53,0.30) 45%,
        rgba(13,27,53,0.60) 100%);
  }
}
/* Soft warm glow to lift the face + camera a touch */
.footer-photo-bg img { opacity: 0.62; }
/* Bottom fade */
.footer-photo-bg::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom,
    rgba(13,27,53,0.10)  0%,
    rgba(13,27,53,0.0)  20%,
    rgba(13,27,53,0.0)  60%,
    rgba(13,27,53,0.88) 100%
  );
}

/* Footer content sits above the photo */
.footer-content {
  position: relative; z-index: 1;
  max-width: var(--max); margin: 0 auto;
  padding: clamp(3.5rem, 6vw, 5.5rem) var(--gutter) 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--footer-line);
}
.footer h4 {
  font-family: var(--display);
  color: var(--footer-heading);
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 0 1.25rem;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: .75rem; font-size: 0.92rem; }
.footer a { color: var(--footer-text); }
.footer a:hover { color: var(--footer-heading); }
.footer-brand {
  font-family: var(--title);
  font-size: 1.7rem; font-weight: 700;
  color: var(--footer-ink); margin-bottom: .4rem;
  letter-spacing: -0.03em;
}
.footer-brand-sig {
  font-family: var(--script);
  color: var(--footer-heading);
  font-size: 1.6rem; margin-bottom: 1rem; display: block;
}
.footer-tag { font-size: 0.9rem; max-width: 30ch; color: var(--footer-text); line-height: 1.65; }

/* Footer bottom strip - grid: copyright | dev credit (center) | socials (right) */
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  text-align: center;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,.5);
  max-width: var(--max); margin: 0 auto;
}
.footer-bottom .footer-copy { justify-self: center; }
.footer-bottom .footer-copy a { color: var(--gold); text-decoration: none; }
.footer-bottom .footer-copy a:hover { color: var(--gold); text-decoration: underline; }
.bb-logo { height: 26px; width: auto; display: inline-block; vertical-align: middle; opacity: 0.75; transition: opacity .25s ease; }
.footer-bottom .footer-copy a:hover .bb-logo { opacity: 1; }
.footer-bottom .dev-credit  { justify-self: center; white-space: nowrap; text-align: center; }
.footer-bottom .dev-credit a { color: var(--gold); }
.footer-bottom .dev-credit a:hover { color: var(--gold-light); }
/* Socials - brand column me, logo + tagline ke neeche */
.footer .socials {
  margin-top: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer .socials a {
  color: rgba(255,255,255,.70);
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: color .25s ease;
}
.footer .socials a:hover { color: var(--gold); }
.footer .socials svg { width: 20px; height: 20px; fill: currentColor; display: block; }


/* Footer brand logo */
.footer-brand { margin-bottom: 0.6rem; }
.footer-brand-logo {
  height: 43px;   /* 48px se 10% kam */
  width: auto;
  display: block;
  opacity: 0.95;
}

/* ================================================================
   NEW ARRIVALS - split: text left, one large image right
   ================================================================ */
.new-arrivals-split {
  display: grid;
  grid-template-columns: 380px 1fr;
  max-width: calc(var(--max) - (var(--gutter) * 2));
  margin: clamp(4rem, 7vw, 6rem) auto;
  height: auto;             /* text lamba ho to section badhe - image hamesha center */
  min-height: 420px;
  overflow: hidden;
  padding: 0 var(--gutter);
  gap: clamp(1.5rem, 2.5vw, 2.5rem);
}
.na-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.na-left .section-label { margin-bottom: 0.75rem; }
.na-left .section-title { margin-bottom: 1.4rem; font-size: clamp(2rem, 3vw, 2.8rem); white-space: nowrap; }
.na-desc {
  font-family: var(--sans);
  font-size: clamp(0.88rem, 1.1vw, 0.96rem);
  color: var(--ink-muted);
  line-height: 1.8;
  max-width: 100%;
  margin-bottom: 2.2rem;
}
.na-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid var(--ink);
  padding: 0.85rem 1.6rem;
  transition: color .25s, border-color .25s;
  align-self: flex-start;
}
.na-cta:hover { color: var(--gold); border-color: var(--gold); }
.na-right {
  display: block;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
}
/* Images keep their original ratio inside the box - never cropped,
   never touching the box edges (inner padding all around) */
.na-right img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: clamp(1rem, 2vw, 1.75rem);
  display: block;
}

/* ── Cinematic slideshow (crossfade only - no zoom, so nothing crops) ── */
.na-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  padding: clamp(1rem, 2vw, 1.75rem);
  opacity: 0;
  transition: opacity 1.8s ease;
  will-change: opacity;
}
.na-slide.is-on {
  opacity: 1;
}

@media (max-width: 768px) {
  .new-arrivals-split { grid-template-columns: 1fr; height: auto; }
  .na-right { height: 320px; }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 640px) {
  .hero-title { font-size: clamp(1.4rem, 6.5vw, 2.2rem); }
  .hero-eyebrow, .hero-location { font-size: 0.55rem; letter-spacing: 0.25em; }
  .hero-actions { gap: 1.75rem; }
  .hero-btn-primary, .hero-btn-secondary { font-size: 0.6rem; letter-spacing: 0.28em; }
  .hero-controls { bottom: 1.25rem; }
  .hero-arrow { display: none; }
}

@media (max-width: 980px) {
  /* Hide full nav on mobile, show hamburger */
  .nav-center { display: none; }
  .nav.open .nav-center {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid var(--line);
    padding: 1.5rem var(--gutter);
  }
  .nav.open .nav-links { flex-direction: column; gap: 1.25rem; align-items: flex-start; }
  .nav-toggle { display: flex; flex-direction: column; gap: 5px; background: none; border: none; padding: .5rem; cursor: pointer; }
  .nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: transform .3s ease, opacity .3s ease; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  /* Mobile: same faded photo-as-background look as desktop, anchored to the bottom */
  .footer { min-height: 0; }
  .footer-photo-bg {
    display: block;
    inset: auto 0 0 0;                /* full width, anchored to the bottom */
    height: 475px;                    /* taller image band */
    z-index: 0;
  }
  .footer-photo-bg img {
    left: 0; bottom: 0; transform: none;   /* desktop anchoring reset */
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: 20% bottom;      /* Sarah shifted left, clear of the text */
    opacity: 0.55;
    /* fade the image top seamlessly into the navy - no hard edge/line */
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 30%);
            mask-image: linear-gradient(to bottom, transparent 0%, #000 30%);
  }
  .footer-photo-bg::before,
  .footer-photo-bg::after { display: none; }     /* no overlay seam on mobile */
  .footer-content { padding-bottom: 3rem; }
  .footer-bottom { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 0.75rem; }
  .footer-bottom .footer-copy, .footer-bottom .dev-credit { justify-self: center; }
  .mega-grid { grid-template-columns: 1fr; }
  /* Mobile: slider 30% chhota - neeche ka content pehli jhalak me dikhe */
  body.is-homepage .hero-slider,
  .hero-slider { height: 66vh; min-height: 460px; }
  .hero-controls { bottom: 1.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ============================================================
   PRINT MODAL - Baby Leopard room mockup viewer
   ============================================================ */
.print-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9900;
  background: rgba(10, 14, 26, 0.92);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.print-modal-overlay.open { display: flex; }

.print-modal {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 0;
  max-width: 1100px;
  width: 100%;
  max-height: 90vh;
  background: #fff;
  overflow: hidden;
}

/* Close button */
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.92);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.modal-close svg { width: 18px; height: 18px; stroke: #333; }
.modal-close:hover { background: #fff; }

/* Viewer (left side) */
.modal-viewer {
  display: flex;
  flex-direction: column;
  background: #f2f0ec;
  overflow: hidden;
}
.modal-main-img {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}
.modal-main-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s;
}

/* Thumbnails */
.modal-thumbs {
  display: flex;
  gap: 0.5rem;
  padding: 0.8rem 1rem;
  background: #e8e5e0;
  border-top: 1px solid rgba(0,0,0,.08);
  flex-shrink: 0;
}
.modal-thumb {
  flex: 1;
  border: 2px solid transparent;
  background: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  overflow: hidden;
  transition: border-color 0.18s;
}
.modal-thumb img {
  width: 100%;
  height: 68px;
  object-fit: cover;
  display: block;
}
.modal-thumb span {
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: #666;
  text-transform: uppercase;
}
.modal-thumb.active { border-color: var(--gold); }
.modal-thumb:hover { border-color: rgba(201, 168, 76, 0.5); }

/* Info panel (right side) */
.modal-info {
  padding: 2.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  overflow-y: auto;
}
.modal-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--blue-deep);  /* navy headings - brand consistency */
  margin: 0.4rem 0 0.3rem;
  font-weight: 400;
  line-height: 1.15;
}
.modal-sub {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 1.2rem;
}
.modal-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1.8rem;
}
.modal-price {
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 1.8rem;
  letter-spacing: 0.02em;
}
.modal-price strong {
  font-size: 1.4rem;
  font-family: var(--serif);
  font-weight: 400;
}
.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.modal-btn-primary {
  display: block;
  text-align: center;
  padding: 0.9rem 1.5rem;
  background: var(--ink);
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}
.modal-btn-primary:hover { background: var(--gold); color: #fff; }
.modal-btn-secondary {
  display: block;
  text-align: center;
  padding: 0.85rem 1.5rem;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
}
.modal-btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* Featured card badge tweak */
.print--featured .tag {
  background: var(--gold);
  color: #fff;
}

/* Responsive modal */
@media (max-width: 768px) {
  .print-modal {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    max-height: 95vh;
  }
  .modal-main-img { max-height: 45vw; }
  .modal-info { padding: 1.5rem 1.25rem; }
  .modal-thumbs { gap: 0.35rem; }
  .modal-thumb img { height: 50px; }
}

/* ================================================================
   CART BADGE (nav cart icon count)
   ================================================================ */
.nav-cart { position: relative; }
.cart-count {
  position: absolute;
  top: -3px;
  right: -5px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  background: var(--gold);
  color: #fff;
  font-family: var(--display);
  font-size: 0.62rem;
  font-weight: 500;
  line-height: 1;
  border-radius: 999px;
  display: none;
  align-items: center;
  justify-content: center;
}

/* ================================================================
   CART DRAWER (slide-in)
   ================================================================ */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 27, 53, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1200;
}
.cart-drawer-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(400px, 90vw);
  background: #fff;
  z-index: 1201;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.cart-drawer-head h2 {
  font-family: var(--title);
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--ink);
  margin: 0;
}
.cart-drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-drawer-close svg { width: 22px; height: 22px; }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 0.5rem 1.5rem; }
.cart-empty {
  font-family: var(--sans);
  color: var(--ink-muted);
  text-align: center;
  padding: 3rem 0;
}
.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}
.cart-item-title {
  display: block;
  font-family: var(--title);
  font-weight: 400;
  color: var(--ink);
  font-size: 1.02rem;
  margin-bottom: 0.25rem;
}
.cart-item-meta {
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.cart-item-remove {
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--ink-muted);
  cursor: pointer;
  padding: 0 0.3rem;
  transition: color 0.2s;
}
.cart-item-remove:hover { color: var(--ink); }
.cart-drawer-foot { padding: 1.5rem; border-top: 1px solid var(--line); }
.cart-total {
  display: flex;
  justify-content: space-between;
  font-family: var(--title);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1.2rem;
}
.cart-checkout {
  display: block;
  text-align: center;
  background: var(--blue-deep);
  color: #fff;
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1rem;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
}
.cart-checkout:hover { background: var(--gold); color: #fff; }

/* ================================================================
   COLLAPSIBLE SIDEBAR FILTER GROUPS (shop + the-images)
   ================================================================ */
.ti-filter-group > h3,
.shop-filter-group > h3 {
  cursor: pointer;
  position: relative;
  user-select: none;
  padding-right: 1.5rem; /* reserve space for the +/- toggle icon */
}
.ti-filter-group > h3::after,
.shop-filter-group > h3::after {
  content: "\2013"; /* en dash = expanded */
  position: absolute;
  right: 2px;
  top: -2px;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--ink-muted);
}
.ti-filter-group.collapsed > h3::after,
.shop-filter-group.collapsed > h3::after { content: "+"; }
.ti-filter-group.collapsed .ti-filter,
.shop-filter-group.collapsed .shop-filter { display: none; }

/* ================================================================
   HAMBURGER MENU DRAWER (slide-in from left)
   ================================================================ */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 27, 53, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1200;
}
.menu-overlay.open { opacity: 1; visibility: visible; }
.menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(380px, 90vw);
  background: #fff;
  z-index: 1201;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
}
.menu-drawer.open { transform: translateX(0); }
.menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.menu-title {
  font-family: var(--display);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.menu-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-close svg { width: 22px; height: 22px; }
.menu-body { flex: 1; overflow-y: auto; padding: 1.5rem; }
.menu-account { display: flex; gap: 0.7rem; margin-bottom: 1.8rem; }
.menu-btn {
  flex: 1;
  text-align: center;
  padding: 0.85rem 1rem;
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.menu-btn-primary { background: var(--blue-deep); color: #fff; }
.menu-btn-primary:hover { background: var(--gold); color: #fff; }
.menu-btn-ghost { border: 1px solid var(--line); color: var(--ink); }
.menu-btn-ghost:hover { border-color: var(--gold); color: var(--gold-deep); }
.menu-nav {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  margin-bottom: 1.8rem;
}
.menu-nav a {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--title);
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--ink);
  transition: color 0.2s;
}
.menu-nav a:hover { color: var(--gold); }
.menu-news h3 {
  font-family: var(--title);
  font-weight: 300;
  font-size: 1.25rem;
  color: var(--ink);
  margin: 0 0 0.5rem;
}
.menu-news > p {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--ink-muted);
  line-height: 1.6;
  margin: 0 0 1rem;
}
.menu-news-form { display: flex; gap: 0.5rem; }
.menu-news-form input {
  flex: 1;
  min-width: 0;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--ink);
}
.menu-news-form input:focus { outline: none; border-color: var(--gold); }
.menu-news-form button {
  padding: 0.7rem 1.1rem;
  background: var(--gold);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--display);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s;
}
.menu-news-form button:hover { background: var(--gold-deep); }
.menu-news-msg { font-family: var(--sans); font-size: 0.8rem; margin: 0.7rem 0 0; min-height: 1em; }
.menu-news-msg.success { color: var(--gold-deep); }
.menu-news-msg.error { color: #b5462f; }
.menu-foot {
  padding: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.menu-foot a { font-family: var(--sans); font-size: 0.85rem; color: var(--ink); }
.menu-foot a:hover { color: var(--gold); }
.menu-foot span {
  font-family: var(--display);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* hamburger → X when menu is open */
.nav-toggle.is-active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ================================================================
   ROTATE-PHONE PROMPT (mobile portrait only)
   ================================================================ */
.rotate-prompt {
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1.25rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  background: var(--blue-deep, #0D1B35);
  border: 1px solid rgba(201, 168, 76, 0.5);
  box-shadow: 0 10px 30px rgba(13, 27, 53, 0.35);
  color: #F0F0EE;
  font-family: var(--sans);
  font-size: 0.85rem;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
  pointer-events: none;
}
.rotate-prompt.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.rotate-prompt-icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  color: var(--gold, #C9A84C);
  animation: rotate-hint 2.2s ease-in-out infinite;
}
@keyframes rotate-hint {
  0%, 25%  { transform: rotate(0deg); }
  55%, 80% { transform: rotate(-90deg); }
  100%     { transform: rotate(0deg); }
}
.rotate-prompt strong { color: var(--gold, #C9A84C); font-weight: 600; }
.rotate-prompt-close {
  flex-shrink: 0;
  background: none; border: none;
  color: rgba(255,255,255,.6);
  font-size: 1.3rem; line-height: 1;
  padding: .25rem .4rem;
  cursor: pointer;
}
/* sirf chhoti portrait scr