/* ═══════════════════════════════════════════════════════
   SHIVAM PHOTOFARM — Complete CSS
   Default: LIGHT (white), Toggle: DARK (black)
   ═══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── LIGHT MODE (default) ── */
:root {
  --bg:         #ffffff;
  --bg2:        #f8f7f5;
  --bg3:        #f0ede8;
  --surface:    rgba(0,0,0,0.03);
  --text:       #1a1a1a;
  --text-muted: rgba(26,26,26,0.6);
  --text-dim:   rgba(26,26,26,0.38);
  --border:     rgba(0,0,0,0.10);
  --gold:       #b8922e;
  --gold-lt:    #8a6b1e;
  --shadow:     0 8px 40px rgba(0,0,0,0.10);
  --card-bg:    #ffffff;
  --input-bg:   #ffffff;
  --nav-h:      70px;
  --font-display:'Cormorant Garamond', Georgia, serif;
  --font-body:  'Montserrat', sans-serif;
  --tr:         all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── DARK MODE ── */
[data-theme="dark"] {
  --bg:         #0a0a0a;
  --bg2:        #111111;
  --bg3:        #1a1a1a;
  --surface:    rgba(255,255,255,0.04);
  --text:       #f5f3ef;
  --text-muted: rgba(245,243,239,0.55);
  --text-dim:   rgba(245,243,239,0.32);
  --border:     rgba(255,255,255,0.10);
  --gold:       #c9a84c;
  --gold-lt:    #e8d5a3;
  --shadow:     0 8px 40px rgba(0,0,0,0.45);
  --card-bg:    rgba(255,255,255,0.04);
  --input-bg:   rgba(255,255,255,0.06);
}

html { scroll-behavior: smooth; }
html, body {
  min-height: 100%;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
  overflow-x: hidden;
  transition: background 0.35s ease, color 0.35s ease;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
/* Push footer to bottom on short pages; never hide it */
main, #app-content, body > section:not(#site-footer) {
  flex: 0 0 auto;
}
#site-footer {
  flex-shrink: 0;
  margin-top: auto;
  display: block !important;
  visibility: visible !important;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }

h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2rem,5vw,4rem); }
h2 { font-size: clamp(1.5rem,3vw,2.5rem); }
h3 { font-size: clamp(1.2rem,2.5vw,1.8rem); }

.section-eyebrow, h6 {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); font-family: var(--font-body); font-weight: 500; margin-bottom: 16px;
}
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.container-fluid { width: 100%; padding: 0 20px; }

/* ═══════════════════════════════════════════
   NAVBAR — TRANSPARENT → SOLID ON SCROLL
   ═══════════════════════════════════════════ */
#site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; }

.navbar {
  display: flex;
  align-items: center;
  padding: 0 40px;
  height: var(--nav-h);
  background: transparent;
  transition: background 0.4s ease, height 0.3s ease, box-shadow 0.3s ease;
}

/* Scrolled state */
.navbar.scrolled {
  background: var(--bg);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  height: 60px;
}
[data-theme="dark"] .navbar.scrolled {
  background: rgba(10,10,10,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

/* Home page hero — start transparent white text */
.navbar:not(.scrolled) .nav-links > li > a { color: rgba(255,255,255,0.85); }
.navbar:not(.scrolled) .nav-links > li > a:hover { color: #fff; }
.navbar:not(.scrolled) .hamburger span { background: #fff; }
.navbar:not(.scrolled) .theme-toggle { border-color: rgba(255,255,255,0.3); color: #fff; }
[data-theme="light"] .navbar:not(.scrolled) .logo-for-dark  { display: block; }
[data-theme="light"] .navbar:not(.scrolled) .logo-for-light { display: none; }

/* Scrolled — use theme colors */
.navbar.scrolled .nav-links > li > a { color: var(--text-muted); }
.navbar.scrolled .nav-links > li > a:hover,
.navbar.scrolled .nav-links > li > a.active { color: var(--text); }

/* Logo */
.nav-logo a { display: flex; align-items: center; }
.nav-logo img { height: 42px; max-width: 180px; object-fit: contain; }
.nav-logo-text { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 3px; text-transform: uppercase; color: var(--text); }

/* Light mode: show dark logo, hide light logo */
[data-theme="light"] .logo-for-light { display: block; }
[data-theme="light"] .logo-for-dark  { display: none; }
/* Dark mode: show light logo, hide dark logo */
[data-theme="dark"]  .logo-for-light { display: none; }
[data-theme="dark"]  .logo-for-dark  { display: block; }

/* Nav links */
.nav-links { display: flex; align-items: center; list-style: none; gap: 2px; flex: 1; justify-content: center; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block; padding: 8px 12px;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  transition: color 0.2s; white-space: nowrap;
}
.nav-links > li > a.active { color: var(--gold) !important; }
.nav-links > li > a .arrow { font-size: 9px; margin-left: 2px; opacity: 0.6; }

/* Dropdown — hover-stable with invisible bridge */
.has-dropdown { position: relative; }

/* Extend hover area downward so mouse can travel into dropdown */
.has-dropdown::after {
  content: ''; position: absolute;
  top: 100%; left: 0; right: 0; height: 16px;
  background: transparent;
}

.dropdown {
  display: none; position: absolute;
  top: calc(100% + 16px); left: 0;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 6px; min-width: 220px; list-style: none;
  padding: 8px 0; box-shadow: var(--shadow); z-index: 999;
}

/* Invisible bridge fills gap between nav link and dropdown panel */
.dropdown::before {
  content: ''; position: absolute;
  bottom: 100%; left: 0; right: 0; height: 16px;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display: block; }

.dropdown li a {
  display: block; padding: 10px 20px;
  font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-muted); transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.dropdown li a:hover { color: var(--gold); background: var(--surface); }

/* ── Nested sub-dropdown (e.g. "2026 Expeditions ›") ── */
.dropdown-item--has-sub { position: relative; }
.dropdown-sub-trigger {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 20px;
  font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-muted); cursor: default;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.dropdown-item--has-sub:hover .dropdown-sub-trigger,
.dropdown-item--has-sub:focus-within .dropdown-sub-trigger {
  color: var(--gold); background: var(--surface);
}
.sub-arrow { margin-left: 14px; font-size: 13px; opacity: 0.6; }

.dropdown--sub {
  display: none; position: absolute;
  top: -8px; left: 100%;
  margin-left: 4px;
}
/* Invisible bridge to the right so the mouse can travel sideways without closing it */
.dropdown-item--has-sub::after {
  content: ''; position: absolute;
  top: 0; right: -16px; bottom: 0; width: 16px;
}
.dropdown-item--has-sub:hover .dropdown--sub,
.dropdown-item--has-sub:focus-within .dropdown--sub { display: block; }

/* Flip to the left if the nested panel would overflow the viewport */
@media (max-width: 1300px) {
  .dropdown--sub { left: auto; right: 100%; margin-left: 0; margin-right: 4px; }
  .dropdown-item--has-sub::after { right: auto; left: -16px; }
}

/* Right controls */
.nav-right { display: flex; align-items: center; gap: 10px; margin-left: auto; }

/* Theme Toggle */
.theme-toggle {
  background: none; border: 1px solid var(--border); border-radius: 20px;
  padding: 6px 12px; cursor: pointer; display: flex; align-items: center; gap: 5px;
  transition: var(--tr); color: var(--text);
}
.theme-toggle:hover { border-color: var(--gold); color: var(--gold); }
.t-icon { font-size: 14px; line-height: 1; }
[data-theme="light"] .t-dark  { display: block; }
[data-theme="light"] .t-light { display: none; }
[data-theme="dark"]  .t-dark  { display: none; }
[data-theme="dark"]  .t-light { display: block; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px; background: none;
  border: none; cursor: pointer; padding: 6px; z-index: 1002;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--text);
  transition: var(--tr); border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════
   MOBILE DRAWER
   ═══════════════════════════════════════════ */
.mobile-drawer {
  position: fixed; top: 0; right: -100%; width: min(320px, 85vw); height: 100vh;
  background: var(--bg); z-index: 1001; overflow-y: auto;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
  padding-top: 80px;
}
.mobile-drawer.open { right: 0; }
.mobile-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 1000; backdrop-filter: blur(2px);
}
.mobile-overlay.show { display: block; }

.mobile-drawer-inner { padding: 20px 0 40px; }
.mobile-nav-list { list-style: none; }
.mobile-nav-list > li > a,
.mob-dropdown-toggle {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px; font-size: 13px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-muted);
  border-bottom: 1px solid var(--border); width: 100%;
  background: none; border-left: none; border-right: none; border-top: none;
  cursor: pointer; font-family: var(--font-body); text-align: left;
  transition: color 0.2s, background 0.2s;
}
.mobile-nav-list > li > a:hover,
.mob-dropdown-toggle:hover { color: var(--gold); background: var(--surface); }
.mobile-nav-list > li > a.active { color: var(--gold); }

.mob-sub {
  list-style: none; background: var(--bg2); display: none; border-bottom: 1px solid var(--border);
}
.mob-sub.open { display: block; }
.mob-sub li a {
  display: block; padding: 12px 28px 12px 40px;
  font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-dim); transition: color 0.2s;
  border-bottom: 1px solid var(--border);
}
.mob-sub li a:hover { color: var(--gold); }

/* ── Mobile: nested sub-menu (e.g. "2026 Expeditions") ── */
.mob-has-sub--nested { border-bottom: 1px solid var(--border); }
.mob-dropdown-toggle--sub {
  padding: 12px 28px 12px 40px;
  font-size: 12px; letter-spacing: 1px;
  color: var(--text-dim); border-bottom: none;
}
.mob-sub--nested {
  background: var(--bg3);
}
.mob-sub--nested li a { padding-left: 56px; }

.mobile-social {
  display: flex; gap: 20px; padding: 24px 28px;
  border-top: 1px solid var(--border); margin-top: 12px;
}
.mobile-social a { color: var(--text-dim); transition: color 0.2s; }
.mobile-social a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════
   FOOTER — ONLY SOCIAL ICONS
   ═══════════════════════════════════════════ */
#site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 32px 20px 24px;
  text-align: center;
}
.footer-simple {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-bottom: 16px;
}
.footer-social-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s, opacity 0.2s; color: #fff;
}
.footer-social-icon:hover { transform: translateY(-3px); opacity: 0.85; }
.footer-social-icon--fb { background: #1877f2; }
.footer-social-icon--yt { background: #ff0000; }
.footer-social-icon--ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.footer-copy { font-size: 12px; color: var(--text-dim); letter-spacing: 0.5px; }

/* ═══════════════════════════════════════════
   PAGE BANNER (inner pages)
   ═══════════════════════════════════════════ */
.page-banner {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  background: var(--bg2);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-banner h1 { font-size: clamp(2.5rem,6vw,5rem); font-weight: 300; letter-spacing: 0.05em; margin-bottom: 16px; color: var(--text); }
.page-banner p  { color: var(--text-muted); font-size: 14px; max-width: 600px; margin: 0 auto; }
.breadcrumb { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { opacity: 0.7; }

/* ═══════════════════════════════════════════
   HERO SLIDER (Homepage)
   ═══════════════════════════════════════════ */
.hero-slider { position: relative; width: 100%; height: 100vh; overflow: hidden; background: #000; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.9s ease; }
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.38) 100%);
}
.slide-frame { position: absolute; width: 80px; height: 80px; border-color: rgba(201,168,76,0.5); border-style: solid; }
.slide-frame.top-left     { top: 20px; left: 20px; border-width: 2px 0 0 2px; }
.slide-frame.bottom-right { bottom: 80px; right: 20px; border-width: 0 2px 2px 0; }
.slider-controls {
  position: absolute; bottom: 30px; left: 0; right: 0;
  display: flex; align-items: center; justify-content: center; gap: 14px; z-index: 10;
}
.slider-prev, .slider-next {
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.3);
  color: #fff; width: 44px; height: 44px; border-radius: 50%;
  font-size: 22px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--tr);
}
.slider-prev:hover, .slider-next:hover { background: var(--gold); border-color: var(--gold); color: #000; }
.slider-dots { display: flex; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.5); background: transparent; cursor: pointer; transition: var(--tr); }
.dot.active { background: var(--gold); border-color: var(--gold); }

.view-details-section {
  padding: 28px 40px; background: var(--bg); border-bottom: 1px solid var(--border);
}
.view-details-inner { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.view-details-btn { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); transition: color 0.2s; font-weight: 500; }
.view-details-btn:hover { color: var(--gold); }

/* Hero placeholder */
.hero-placeholder { display: flex; align-items: center; justify-content: center; background: var(--bg2); }
.hero-text-only { text-align: center; padding: 40px; margin-top: var(--nav-h); }
.hero-text-only h1 { font-size: clamp(3rem,8vw,7rem); font-weight: 300; letter-spacing: 0.1em; }
.hero-text-only p { color: var(--text-muted); font-size: 14px; letter-spacing: 3px; text-transform: uppercase; margin-top: 16px; }

/* ═══════════════════════════════════════════
   PORTFOLIO GRID
   ═══════════════════════════════════════════ */
/* ═══════════════════════════════════════════
   PROJECT GRID — minimal, photo-first
   (Personal Works & Commissioned share this)
   ═══════════════════════════════════════════ */
.portfolio-grid-section { padding: 40px 0 90px; background: var(--bg); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 36px 28px;
}
.portfolio-card { position: relative; }
.portfolio-card-image {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3; background: var(--bg3);
}
.portfolio-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(.16,1,.3,1), filter 0.4s;
}
.portfolio-card:hover .portfolio-card-image img {
  transform: scale(1.035);
}

/* Caption sits below the photo, minimal — no overlay box on the image itself */
.portfolio-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.35) 100%);
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none;
}
.portfolio-card:hover .portfolio-card-overlay { opacity: 1; }

.portfolio-card-label {
  position: absolute; bottom: 18px; left: 20px;
  font-family: var(--font-ui); font-size: 10px;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: #fff; opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s, transform 0.4s;
}
.portfolio-card:hover .portfolio-card-label { opacity: 1; transform: translateY(0); }

.portfolio-card-info {
  padding: 16px 2px 0; border-bottom: none; background: transparent;
}
.portfolio-card-info h2 {
  font-family: var(--font-heading); font-weight: 400;
  font-size: 1.15rem; letter-spacing: 0.01em;
  margin-bottom: 4px; color: var(--text);
  transition: opacity 0.2s;
}
.portfolio-card:hover .portfolio-card-info h2 { opacity: 0.7; }
.portfolio-card-info p {
  font-family: var(--font-ui); font-size: 11px;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-dim); display: none; /* Pie Aerts style: title only on grid, description on detail page */
}

/* ═══════════════════════════════════════════
   PORTFOLIO — YOUTUBE VIDEO EMBED
   ═══════════════════════════════════════════ */
.portfolio-video-section { padding: 0 0 50px; background: var(--bg); }
.portfolio-video-embed {
  position: relative;
  max-width: 900px; margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: #000;
}
.portfolio-video-embed iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: none;
}

/* ═══════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════ */
.portfolio-lightbox-section { padding: 60px 0; background: var(--bg); }
.masonry-grid { columns: 3; column-gap: 4px; }
.masonry-item { break-inside: avoid; margin-bottom: 4px; position: relative; overflow: hidden; cursor: pointer; }
.masonry-item img { width: 100%; display: block; transition: transform 0.5s ease; }
.masonry-item:hover img { transform: scale(1.04); }
.item-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent,rgba(0,0,0,0.7)); color: rgba(255,255,255,0.8); font-size: 12px; padding: 20px 12px 10px; opacity: 0; transition: opacity 0.3s; }
.masonry-item:hover .item-caption { opacity: 1; }
.lightbox-modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.97); z-index: 9999; align-items: center; justify-content: center; }
.lightbox-modal.active { display: flex; }
.lightbox-content { max-width: 90vw; max-height: 90vh; text-align: center; }
.lightbox-content img { max-width: 100%; max-height: 85vh; object-fit: contain; }
.lightbox-content p { margin-top: 12px; font-size: 13px; color: rgba(255,255,255,0.5); letter-spacing: 1px; }
.lightbox-close,.lightbox-prev,.lightbox-next { position: fixed; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); color: #fff; border-radius: 50%; width: 50px; height: 50px; font-size: 24px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--tr); }
.lightbox-close:hover,.lightbox-prev:hover,.lightbox-next:hover { background: var(--gold); border-color: var(--gold); color: #000; }
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 20px; top: 50%; transform: translateY(-50%); }
.portfolio-nav-section { padding: 0 0 60px; background: var(--bg); }
.empty-portfolio { text-align: center; padding: 80px; color: var(--text-muted); }

/* ═══════════════════════════════════════════
   WORKSHOPS
   ═══════════════════════════════════════════ */
.workshops-section { padding: 80px 0; background: var(--bg); }
.workshops-category { margin-bottom: 80px; }
.category-title { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); font-family: var(--font-body); font-weight: 500; margin-bottom: 40px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.workshop-cards { display: grid; grid-template-columns: repeat(auto-fill,minmax(320px,1fr)); gap: 30px; }
.workshop-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s; }
.workshop-card:hover { border-color: rgba(184,146,46,0.4); transform: translateY(-4px); box-shadow: var(--shadow); }
.workshop-card--featured { grid-column: 1/-1; display: grid; grid-template-columns: 1.5fr 1fr; }
.workshop-card-image { overflow: hidden; }
.workshop-card-image img { width: 100%; height: 100%; object-fit: cover; min-height: 260px; transition: transform 0.7s ease; }
.workshop-card:hover .workshop-card-image img { transform: scale(1.04); }
.workshop-card-body { padding: 28px; }
.workshop-card-body h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 12px; font-weight: 300; color: var(--text); }
.workshop-card-body > p { color: var(--text-muted); font-size: 13px; margin-bottom: 12px; }
.workshop-location,.workshop-date { font-size: 12px; color: var(--text-dim); margin-bottom: 6px; }
.workshop-price { font-size: 1.1rem; color: var(--gold); font-family: var(--font-display); margin: 16px 0; }
.workshop-hero-image { position: relative; min-height: 65vh; }
.workshop-hero-image img { width: 100%; height: 65vh; object-fit: cover; }
.workshop-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,0,0,0.85) 0%,rgba(0,0,0,0.2) 60%); display: flex; align-items: flex-end; padding-bottom: 60px; }
.workshop-hero-overlay .container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.workshop-hero-overlay h1 { color: #fff; margin-bottom: 16px; }
.workshop-subtitle { color: rgba(255,255,255,0.65); font-size: 15px; margin-bottom: 20px; }
.workshop-meta-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.workshop-meta-badges span { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); padding: 6px 14px; font-size: 12px; border-radius: 20px; color: #fff; }
.workshop-meta-badges .price-badge { background: var(--gold); color: #000; border-color: var(--gold); font-weight: 600; }
.workshop-detail-section { padding: 80px 0; background: var(--bg); }
.workshop-detail-grid { display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: start; }
.workshop-detail-block { margin-bottom: 60px; }
.workshop-detail-block h2 { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; font-family: var(--font-body); font-weight: 500; color: var(--gold); margin-bottom: 24px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.workshop-description,.workshop-learn,.workshop-itinerary { color: var(--text-muted); line-height: 1.9; font-size: 15px; }
.workshop-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; }
.workshop-gallery-item img { width: 100%; aspect-ratio: 1; object-fit: cover; cursor: zoom-in; }
.enquiry-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 6px; padding: 30px; position: sticky; top: calc(var(--nav-h) + 20px); }
.enquiry-card h3 { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-dim); margin-bottom: 16px; font-family: var(--font-body); font-weight: 500; }
.enquiry-price { font-family: var(--font-display); font-size: 2rem; color: var(--gold); margin-bottom: 24px; }
.enquiry-contact { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); font-size: 12px; color: var(--text-dim); }
.enquiry-contact a { display: block; color: var(--text-muted); margin-top: 6px; transition: color 0.2s; }
.enquiry-contact a:hover { color: var(--gold); }
.workshop-back-section { padding: 0 0 80px; background: var(--bg); }

/* ═══════════════════════════════════════════
   CONTACT & FORMS
   ═══════════════════════════════════════════ */
.contact-section { padding: 80px 0; background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.form-group input,.form-group textarea,.form-group select {
  width: 100%; background: var(--input-bg); border: 1px solid var(--border); border-radius: 3px;
  padding: 12px 16px; color: var(--text); font-family: var(--font-body); font-size: 14px;
  transition: border-color 0.2s; outline: none;
}
.form-group input:focus,.form-group textarea:focus,.form-group select:focus { border-color: var(--gold); }
.form-group input::placeholder,.form-group textarea::placeholder { color: var(--text-dim); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group .error { font-size: 12px; color: #dc2626; display: block; margin-top: 4px; }
.contact-info-block,.contact-social-block { margin-bottom: 40px; }
.contact-info-block h3,.contact-social-block h3 { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-dim); font-family: var(--font-body); margin-bottom: 20px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 16px; font-size: 14px; color: var(--text-muted); }
.contact-icon { font-size: 18px; flex-shrink: 0; }
.social-links--dark { display: flex; flex-direction: column; gap: 10px; }
.social-links--dark a { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dim); transition: color 0.2s; }
.social-links--dark a:hover { color: var(--gold); }
.collaborate-section { padding: 80px 0; background: var(--bg); }
.collaborate-content { max-width: 780px; margin: 0 auto; color: var(--text-muted); font-size: 15px; line-height: 1.9; }
.collaborate-cta { text-align: center; }
.collaborate-cta h2 { margin-bottom: 30px; }

/* ── Partners photo collage strip (square tiles, no text) ── */
.partners-collage-section { padding: 40px 0 10px; background: var(--bg); }
.partners-collage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-width: 900px;
  margin: 0 auto;
}
.partners-collage-tile {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg3);
}
.partners-collage-tile img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.partners-collage-tile:hover img { transform: scale(1.04); }
.partners-collage-tile--brand {
  display: flex; align-items: center; justify-content: center;
  background: var(--bg2);
}
.partners-collage-brand {
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 400;
  text-align: center; line-height: 1.3;
  color: var(--text-muted); letter-spacing: 0.02em;
}
@media (max-width: 680px) {
  .partners-collage-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Partners grid (on Collaborate page) ── */
.partners-section { padding: 20px 0 70px; background: var(--bg); }
.partners-heading {
  text-align: center;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300; letter-spacing: 0.03em;
  color: var(--text); margin-bottom: 44px;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 32px;
  max-width: 1000px; margin: 0 auto;
}
.partner-card {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; text-decoration: none;
}
.partner-card-photo {
  width: 110px; height: 110px; border-radius: 50%;
  overflow: hidden; margin-bottom: 14px;
  background: var(--bg3); border: 1px solid var(--border);
  transition: transform 0.3s;
}
.partner-card:hover .partner-card-photo { transform: scale(1.04); }
.partner-card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.partner-card-name {
  font-family: var(--font-heading); font-weight: 400;
  font-size: 1rem; color: var(--text); margin-bottom: 3px;
  transition: opacity 0.2s;
}
.partner-card:hover .partner-card-name { opacity: 0.7; }
.partner-card-role {
  font-family: var(--font-ui); font-size: 11px;
  letter-spacing: 0.5px; color: var(--text-dim);
}

/* ── Partner detail page ── */
.partner-detail-section { padding: 30px 0 80px; background: var(--bg); }
.partner-detail-wrap { max-width: 680px; margin: 0 auto; }
.partner-detail-photo {
  width: 100%; aspect-ratio: 4/3; overflow: hidden;
  margin-bottom: 36px; background: var(--bg3);
}
.partner-detail-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.partner-detail-bio {
  font-family: var(--font-body); font-size: 16px;
  line-height: 1.85; color: var(--text-muted);
  margin-bottom: 36px;
}
.partner-detail-bio br { display: block; margin-bottom: 12px; }
.partner-detail-video {
  position: relative; width: 100%; aspect-ratio: 16/9;
  background: #000; margin-bottom: 36px;
}
.partner-detail-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.partner-detail-link { text-align: center; margin-bottom: 40px; }
.partner-detail-back { text-align: center; padding-top: 28px; border-top: 1px solid var(--border); }
.partner-detail-back a {
  font-family: var(--font-ui); font-size: 11px;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-dim); transition: color 0.2s;
}
.partner-detail-back a:hover { color: var(--text); }

@media (max-width: 600px) {
  .partners-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 22px; }
  .partner-card-photo { width: 84px; height: 84px; }
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; font-family: var(--font-body); font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; border-radius: 2px; cursor: pointer; transition: var(--tr); border: none; font-weight: 500; }
.btn-primary { background: var(--gold); color: #fff; }
.btn-primary:hover { background: var(--gold-lt); }
.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════
   ALERTS
   ═══════════════════════════════════════════ */
.alert { padding: 14px 18px; border-radius: 4px; margin-bottom: 20px; font-size: 14px; }
.alert-success { background: rgba(22,163,74,0.1); border: 1px solid rgba(22,163,74,0.3); color: #166534; }
[data-theme="dark"] .alert-success { background: rgba(72,187,120,0.12); border-color: rgba(72,187,120,0.3); color: #9ae6b4; }

/* ═══════════════════════════════════════════
   PERSONAL WORKS
   ═══════════════════════════════════════════ */
.pw-filter-section { background: var(--bg2); padding: 20px 0; border-bottom: 1px solid var(--border); position: sticky; top: var(--nav-h); z-index: 100; }
.pw-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.pw-filter { padding: 7px 18px; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; border: 1px solid var(--border); border-radius: 20px; background: transparent; color: var(--text-muted); cursor: pointer; transition: var(--tr); font-family: var(--font-body); }
.pw-filter:hover,.pw-filter.active { background: var(--gold); color: #000; border-color: var(--gold); }
.pw-gallery-section { padding: 30px 0 80px; background: var(--bg); }
.pw-masonry { columns: 4; column-gap: 6px; }
.pw-item { break-inside: avoid; margin-bottom: 6px; transition: opacity 0.3s; }
.pw-item-inner { position: relative; overflow: hidden; border-radius: 2px; cursor: pointer; }
.pw-item-inner img { width: 100%; display: block; transition: transform 0.5s ease; }
.pw-item-inner:hover img { transform: scale(1.04); }
.pw-item-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,0,0,0.75) 0%,transparent 50%); opacity: 0; transition: opacity 0.35s; display: flex; flex-direction: column; justify-content: flex-end; padding: 16px; }
.pw-item-inner:hover .pw-item-overlay { opacity: 1; }
.pw-item-title { font-family: var(--font-display); font-size: 1rem; color: #fff; margin-bottom: 6px; }
.pw-item-meta { display: flex; flex-direction: column; gap: 3px; }
.pw-item-meta span { font-size: 11px; color: rgba(255,255,255,0.7); }
.pw-zoom-btn { position: absolute; top: 12px; right: 12px; background: rgba(0,0,0,0.55); border: 1px solid rgba(255,255,255,0.25); color: #fff; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--tr); opacity: 0; }
.pw-item-inner:hover .pw-zoom-btn { opacity: 1; }
.pw-zoom-btn:hover { background: var(--gold); border-color: var(--gold); color: #000; }
.pw-empty { display: flex; align-items: center; justify-content: center; min-height: 400px; }
.pw-empty-inner { text-align: center; color: var(--text-dim); padding: 40px; }
.pw-empty-inner svg { margin: 0 auto 20px; opacity: 0.3; }
.pw-empty-inner h3 { font-size: 1.5rem; margin-bottom: 10px; }
.pw-empty-inner p { font-size: 14px; }
.pw-lightbox { display: none; position: fixed; inset: 0; z-index: 9999; align-items: center; justify-content: center; }
.pw-lightbox.active { display: flex; }
.pw-lightbox-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.97); }
.pw-lightbox-content { position: relative; z-index: 1; max-width: 90vw; max-height: 90vh; text-align: center; }
.pw-lightbox-content img { max-width: 100%; max-height: 82vh; object-fit: contain; border-radius: 2px; }
.pw-lightbox-caption { margin-top: 14px; display: flex; flex-direction: column; gap: 4px; align-items: center; }
.pw-lightbox-caption strong { color: #fff; font-size: 15px; }
.pw-lightbox-caption span { color: rgba(255,255,255,0.5); font-size: 12px; }
.pw-lightbox-close { position: fixed; top: 20px; right: 20px; z-index: 2; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--tr); }
.pw-lightbox-close:hover { background: var(--gold); border-color: var(--gold); color: #000; }
.pw-lightbox-prev,.pw-lightbox-next { position: fixed; top: 50%; transform: translateY(-50%); z-index: 2; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: #fff; width: 52px; height: 52px; border-radius: 50%; font-size: 28px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--tr); }
.pw-lightbox-prev { left: 20px; }
.pw-lightbox-next { right: 20px; }
.pw-lightbox-prev:hover,.pw-lightbox-next:hover { background: var(--gold); border-color: var(--gold); color: #000; }

/* ═══════════════════════════════════════════
   WHATSAPP + CONTACT BAR
   ═══════════════════════════════════════════ */
.wa-widget { position: fixed; bottom: 30px; z-index: 9990; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.wa-widget--right { right: 30px; align-items: flex-end; }
.wa-widget--left  { left:  30px; align-items: flex-start; }
.wa-btn { width: 56px; height: 56px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: transform 0.3s, box-shadow 0.3s; animation: waPulse 2.5s infinite; }
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.6); animation: none; }
@keyframes waPulse { 0%,100%{box-shadow:0 4px 20px rgba(37,211,102,.4)} 50%{box-shadow:0 4px 32px rgba(37,211,102,.6),0 0 0 8px rgba(37,211,102,.1)} }
.wa-bubble { background: #fff; color: #333; padding: 10px 16px; border-radius: 16px 16px 4px 16px; font-size: 13px; box-shadow: 0 4px 20px rgba(0,0,0,0.15); max-width: 200px; display: flex; align-items: center; gap: 8px; animation: bubblePop 0.4s ease; }
@keyframes bubblePop { 0%{transform:scale(0.7);opacity:0} 100%{transform:scale(1);opacity:1} }
.wa-bubble-close { background: none; border: none; cursor: pointer; color: #aaa; font-size: 16px; line-height: 1; padding: 0; flex-shrink: 0; }
.contact-bar { position: fixed; bottom: 110px; z-index: 9989; display: flex; flex-direction: column; gap: 6px; }
.contact-bar--right { right: 30px; }
.contact-bar--left  { left:  30px; }
.contact-bar-btn { display: flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 30px; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; font-family: var(--font-body); font-weight: 500; transition: var(--tr); white-space: nowrap; box-shadow: 0 3px 14px rgba(0,0,0,0.15); }
.contact-bar-phone   { background: var(--gold); color: #000; }
.contact-bar-email   { background: var(--bg); color: var(--text); border: 1px solid var(--border); }
.contact-bar-contact { background: var(--bg); color: var(--text); border: 1px solid var(--border); }
.contact-bar--right .contact-bar-btn:hover { transform: translateX(-4px); }
.contact-bar--left  .contact-bar-btn:hover { transform: translateX(4px); }
.contact-bar-phone:hover { opacity: 0.9; }

/* ═══════════════════════════════════════════
   BACK TO TOP
   ═══════════════════════════════════════════ */
#back-to-top { position: fixed; bottom: 30px; right: 100px; width: 40px; height: 40px; background: var(--gold); color: #000; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 18px; opacity: 0; pointer-events: none; transition: opacity 0.3s; z-index: 500; }
#back-to-top.visible { opacity: 1; pointer-events: auto; }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .workshop-detail-grid { grid-template-columns: 1fr; }
  .enquiry-card { position: static; }
  .workshop-card--featured { grid-template-columns: 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .blog-featured-card { grid-template-columns: 1fr; }
  .blog-post-layout { grid-template-columns: 1fr; }
  .blog-related-grid { grid-template-columns: 1fr 1fr; }
  .pw-masonry { columns: 3; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .navbar { padding: 0 20px; }
  /* Show hamburger, hide desktop nav */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .workshop-cards { grid-template-columns: 1fr; }
  .about-stats { gap: 20px; flex-wrap: wrap; }
  .form-row { grid-template-columns: 1fr; }
  .view-details-inner { flex-direction: column; gap: 16px; }
  .slide-frame { display: none; }
  .pw-masonry { columns: 2; }
  .blog-related-grid { grid-template-columns: 1fr; }
  .contact-bar { display: none; }
  .wa-widget--right { right: 16px; }
  .wa-widget--left  { left:  16px; }
  .workshop-hero-image img { height: 45vh; }
  #back-to-top { right: 16px; bottom: 90px; }
}
@media (max-width: 480px) {
  .pw-masonry { columns: 1; }
  .masonry-grid { columns: 1; }
}

/* ═══════════════════════════════════════════
   WORKSHOP LISTING — Pie Aerts Exact Style
   ═══════════════════════════════════════════ */

/* Hero text section */
.wl-hero {
  padding: calc(var(--nav-h) + 60px) 0 50px;
  background: var(--bg);
}
.wl-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.wl-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}
.wl-hero-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.wl-hero-body em { font-style: italic; }

/* Grid */
.wl-grid {
  background: var(--bg);
  padding: 0 0 80px;
}
.wl-grid-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.wl-grid-inner--related {
  max-width: 900px;
}

/* Each card item */
.wl-item {
  display: block;
  text-decoration: none;
  position: relative;
}
.wl-item-img {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #1a1a1a;
}
.wl-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  filter: brightness(0.75);
}
.wl-item:hover .wl-item-img img {
  transform: scale(1.05);
  filter: brightness(0.6);
}
.wl-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.05) 60%);
}

/* Status Badge — circle bottom-left */
.wl-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 3;
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1;
  border: 2px solid rgba(255,255,255,0.9);
}
.wl-badge span {
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.wl-badge small {
  font-size: 8px;
  color: #fff;
  letter-spacing: 0.3px;
  line-height: 1.2;
  margin-top: 2px;
  text-transform: uppercase;
}
.wl-badge--seat { background: rgba(180,0,0,0.85); }
.wl-badge--full { background: rgba(30,30,30,0.9); }
.wl-badge--new  { background: rgba(201,168,76,0.92); }
.wl-badge--new span, .wl-badge--new small { color: #000; }

/* Caption overlay (title + date) */
.wl-item-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 14px 14px;
  z-index: 2;
}
.wl-item-title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1.5px;
  line-height: 1.3;
  margin-bottom: 4px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.wl-item-date {
  font-size: 11px;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.5px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* Related section */
.wl-related {
  background: var(--bg2);
  padding: 50px 0 60px;
  border-top: 1px solid var(--border);
}
.wl-related-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: center;
  margin-bottom: 24px;
  font-family: var(--font-body);
}

/* ═══════════════════════════════════════════
   WORKSHOP DETAIL — Pie Aerts Exact Style
   ═══════════════════════════════════════════ */

.wd-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 60px) 24px 80px;
}

/* Header */
.wd-header {
  text-align: center;
  margin-bottom: 40px;
}
.wd-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
.wd-meta-line {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.wd-meta-sep {
  margin: 0 10px;
  opacity: 0.4;
}
.wd-status-notice {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #c53030;
  font-weight: 600;
  background: rgba(197,48,48,0.07);
  border: 1px solid rgba(197,48,48,0.2);
  padding: 8px 16px;
  border-radius: 3px;
  display: inline-block;
}
[data-theme="dark"] .wd-status-notice { color: #fc8181; background: rgba(252,129,129,0.08); }

/* Intro text */
.wd-intro {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 36px;
}
.wd-intro br { display: block; margin-bottom: 14px; }

/* CTA button — centered, pill style */
.wd-cta {
  text-align: center;
  margin: 36px 0;
}
.wd-cta-btn {
  display: inline-block;
  padding: 13px 32px;
  border: 1px solid var(--text);
  color: var(--text);
  font-size: 13px;
  font-family: var(--font-body);
  letter-spacing: 0.5px;
  border-radius: 3px;
  transition: all 0.2s;
  background: transparent;
}
.wd-cta-btn:hover {
  background: var(--text);
  color: var(--bg);
}

/* Sold-out / fully-booked CTA — links back to listing instead of signup */
.wd-cta-btn--soldout {
  border-color: var(--text-dim);
  color: var(--text-dim);
  cursor: default;
}
.wd-cta-btn--soldout:hover {
  background: var(--text-dim);
  color: var(--bg);
}

/* ── YouTube video embed ── */
.wd-video-wrap {
  margin: 0 0 36px;
}
.wd-video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.wd-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Host / About-the-photographer section ── */
.wd-host {
  margin: 60px 0 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.wd-host-inner {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.wd-host-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg2);
  border: 1px solid var(--border);
}
.wd-host-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wd-host-body { flex: 1; min-width: 0; }
.wd-host-name {
  font-family: var(--font-heading);
  font-size: 1.15rem; font-weight: 400;
  color: var(--text); margin-bottom: 8px;
}
.wd-host-text {
  font-family: var(--font-body);
  font-size: 15px; line-height: 1.75;
  color: var(--text-muted);
}
@media (max-width: 600px) {
  .wd-host-inner { flex-direction: column; align-items: center; text-align: center; }
}

/* 2-column photo grid */
.wd-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 36px 0;
}
/* 2×2 variant used after each day in the structured itinerary */
.wd-photo-grid--2x2 {
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
}
.wd-photo-item {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--bg3);
  cursor: zoom-in;
}
.wd-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.wd-photo-item:hover img { transform: scale(1.03); }
.wd-photo-full { margin: 36px 0; }
.wd-photo-full img { width: 100%; border-radius: 2px; }

/* Section heading */
.wd-section {
  margin-bottom: 44px;
}
.wd-section-h {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

/* Bullet info list */
.wd-info-list {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wd-info-list li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.wd-info-list li a { color: var(--gold); }

/* Prose text */
.wd-prose {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-muted);
}
.wd-prose br { display: block; margin-bottom: 12px; }
.wd-itinerary { font-size: 14px; }

/* Testimonials */
.wd-testimonials {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.wd-testimonial {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.wd-testimonial:last-child { border-bottom: none; }
.wd-testimonial-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.wd-testimonial-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
}

/* FAQ */
.wd-faq-block {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.wd-faq-block:last-child { border-bottom: none; }

/* Enquiry form */
.wd-enquiry-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.wd-success-msg {
  background: rgba(22,163,74,0.08);
  border: 1px solid rgba(22,163,74,0.2);
  color: #166534;
  padding: 14px 18px;
  border-radius: 4px;
  margin-bottom: 20px;
  font-size: 14px;
}
[data-theme="dark"] .wd-success-msg { color: #9ae6b4; }
.wd-enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.wd-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.wd-enquiry-form input,
.wd-enquiry-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  background: var(--input-bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  border-radius: 3px;
  outline: none;
  transition: border-color 0.2s;
}
.wd-enquiry-form input:focus,
.wd-enquiry-form textarea:focus { border-color: var(--gold); }
.wd-enquiry-form input::placeholder,
.wd-enquiry-form textarea::placeholder { color: var(--text-dim); }
.wd-submit-btn {
  align-self: flex-start;
  padding: 13px 32px;
  background: var(--text);
  color: var(--bg);
  border: none;
  font-size: 13px;
  font-family: var(--font-body);
  letter-spacing: 0.5px;
  cursor: pointer;
  border-radius: 3px;
  transition: opacity 0.2s;
}
.wd-submit-btn:hover { opacity: 0.85; }

/* Deposit confirmation block */
.wd-deposit-block {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 16px;
  margin: 6px 0;
}
.wd-deposit-label {
  display: block;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.wd-radio-row {
  display: flex;
  gap: 24px;
}
.wd-radio-row label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
}
.wd-radio-row input[type="radio"] {
  width: auto;
  margin: 0;
}

/* Back link */
.wd-footer-nav {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}
.wd-back-btn {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.wd-back-btn:hover { color: var(--gold); }

/* Responsive */
@media (max-width: 900px) {
  .wl-grid-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .wl-grid-inner { grid-template-columns: 1fr; gap: 6px; }
  .wd-photo-grid { grid-template-columns: 1fr; }
  .wd-form-row   { grid-template-columns: 1fr; }
  .wl-item-img   { aspect-ratio: 4/3; }
}

/* ── Workshop day-by-day itinerary blocks ── */
.wd-day-block {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.wd-day-block:last-child { border-bottom: none; }
.wd-day-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  margin-bottom: 14px;
}



/* ═══════════════════════════════════════════
   ABOUT PAGE — shivamphotofarm.com exact
   Heading → Full photo → Bio → YouTube → Text
   ═══════════════════════════════════════════ */

.ab-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 60px) 32px 100px;
}

/* Hero heading */
.ab-hero-heading {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: center;
  margin-bottom: 32px;
  font-weight: 500;
}

/* Full width photo */
.ab-photo {
  width: 100%;
  margin-bottom: 44px;
}
.ab-photo img {
  width: 100%;
  display: block;
  max-height: 600px;
  object-fit: cover;
  object-position: center top;
}
.ab-photo--placeholder {
  aspect-ratio: 4/3;
  background: var(--bg2);
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ab-photo-upload-hint {
  text-align: center;
  color: var(--text-dim);
}
.ab-photo-upload-hint svg {
  margin: 0 auto 16px;
  opacity: 0.3;
}
.ab-photo-upload-hint p {
  font-family: var(--font-ui);
  font-size: 12px;
  line-height: 1.6;
}
.ab-photo-upload-hint a {
  color: var(--text-muted);
  text-decoration: underline;
}

/* Bio paragraphs */
.ab-body {
  max-width: 700px;
  margin: 0 auto 44px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ab-body p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.82;
  color: var(--text-muted);
}
.ab-body a {
  color: var(--text);
  border-bottom: 1px solid var(--border-dark);
  transition: border-color 0.2s;
}
.ab-body a:hover { border-color: var(--text); }
.ab-body--after { margin-top: 44px; }

/* YouTube embed */
.ab-video-wrap {
  width: 100%;
  margin-bottom: 0;
}
.ab-video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.ab-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .ab-wrap { padding: calc(var(--nav-h) + 40px) 18px 70px; }
  .ab-body { max-width: 100%; }
}





/* ═══════════════════════════════════════════
   BLOG V2 — MAGAZINE MULTI-COLUMN STYLE
   ═══════════════════════════════════════════ */

.bl2-page { background: var(--bg); }

/* ── Tabs bar ── */
.bl2-tabs-bar {
  padding-top: var(--nav-h);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky; top: var(--nav-h); z-index: 90;
}
.bl2-tabs-inner {
  max-width: 1140px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; gap: 0;
}
.bl2-site-logo { display: flex; align-items: center; margin-right: 32px; }
.bl2-site-logo img { height: 28px; }
.bl2-site-logo-text {
  font-family: var(--font-heading); font-size: 1.1rem;
  color: var(--text); margin-right: 32px; white-space: nowrap;
}
.bl2-tabs { display: flex; }
.bl2-tab {
  padding: 14px 18px;
  font-family: var(--font-ui); font-size: 11px;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-dim);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .2s, border-color .2s;
}
.bl2-tab:hover { color: var(--text); }
.bl2-tab--active { color: var(--text); border-bottom-color: var(--text); }

/* ── Common ── */
.bl2-meta {
  font-family: var(--font-ui); font-size: 11px;
  color: var(--text-dim); margin-top: 5px;
}
.bl2-img-placeholder {
  width: 100%; height: 100%;
  background: var(--bg3); display: block;
}

/* ══ TOP SECTION ══ */
.bl2-top-section {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.bl2-top-inner {
  max-width: 1140px; margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 200px 1fr 240px;
  gap: 20px;
  align-items: start;
}

/* Left: 2 small cards */
.bl2-top-left { display: flex; flex-direction: column; gap: 16px; }
.bl2-small-card { display: block; text-decoration: none; }
.bl2-small-card:hover .bl2-small-title { color: var(--text-muted); }
.bl2-small-img { aspect-ratio: 4/3; overflow: hidden; margin-bottom: 8px; background: var(--bg3); }
.bl2-small-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
.bl2-small-card:hover .bl2-small-img img { transform: scale(1.04); }
.bl2-small-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 400; color: var(--text); line-height: 1.3; margin-bottom: 4px; }
.bl2-small-excerpt { font-family: var(--font-body); font-size: 12px; color: var(--text-muted); font-style: italic; line-height: 1.5; }

/* Middle: hero card */
.bl2-hero-card { display: block; text-decoration: none; }
.bl2-hero-card:hover .bl2-hero-title { color: var(--text-muted); }
.bl2-hero-img { aspect-ratio: 3/2; overflow: hidden; margin-bottom: 14px; background: var(--bg3); }
.bl2-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
.bl2-hero-card:hover .bl2-hero-img img { transform: scale(1.03); }
.bl2-hero-title { font-family: var(--font-heading); font-size: clamp(1.3rem, 2.5vw, 1.9rem); font-weight: 400; color: var(--text); line-height: 1.25; margin-bottom: 8px; transition: color .2s; }
.bl2-hero-excerpt { font-family: var(--font-body); font-size: 14px; color: var(--text-muted); font-style: italic; line-height: 1.6; }

/* Right: sidebar */
.bl2-sidebar { border-left: 1px solid var(--border); padding-left: 20px; }
.bl2-sidebar-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.bl2-sidebar-title { font-family: var(--font-ui); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dim); font-weight: 600; }
.bl2-view-all { font-family: var(--font-ui); font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-dim); transition: color .2s; }
.bl2-view-all:hover { color: var(--text); }

.bl2-popular-item {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  text-decoration: none; transition: opacity .15s;
}
.bl2-popular-item:last-child { border-bottom: none; }
.bl2-popular-item:hover { opacity: .78; }
.bl2-popular-body { flex: 1; min-width: 0; }
.bl2-popular-title { font-family: var(--font-heading); font-size: 13px; font-weight: 400; color: var(--text); line-height: 1.3; margin-bottom: 4px; }
.bl2-popular-thumb { width: 56px; height: 42px; flex-shrink: 0; overflow: hidden; background: var(--bg3); }
.bl2-popular-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ══ MID SECTION ══ */
.bl2-mid-section { border-bottom: 1px solid var(--border); padding: 24px 0; }
.bl2-mid-inner {
  max-width: 1140px; margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 28px;
  align-items: start;
}

.bl2-big-card { display: block; text-decoration: none; }
.bl2-big-card:hover .bl2-big-title { color: var(--text-muted); }
.bl2-big-img { aspect-ratio: 16/10; overflow: hidden; margin-bottom: 16px; background: var(--bg3); }
.bl2-big-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
.bl2-big-card:hover .bl2-big-img img { transform: scale(1.03); }
.bl2-big-title { font-family: var(--font-heading); font-size: clamp(1.4rem, 2.8vw, 2.1rem); font-weight: 400; color: var(--text); line-height: 1.2; margin-bottom: 10px; transition: color .2s; }
.bl2-big-excerpt { font-family: var(--font-body); font-size: 15px; color: var(--text-muted); font-style: italic; line-height: 1.65; margin-bottom: 8px; }

.bl2-mid-list { display: flex; flex-direction: column; border-left: 1px solid var(--border); padding-left: 28px; }
.bl2-list-item {
  display: grid; grid-template-columns: 1fr 80px;
  gap: 12px; padding: 14px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none; transition: opacity .15s; align-items: start;
}
.bl2-list-item:first-child { padding-top: 0; }
.bl2-list-item:last-child { border-bottom: none; }
.bl2-list-item:hover { opacity: .78; }
.bl2-list-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 400; color: var(--text); line-height: 1.3; margin-bottom: 5px; }
.bl2-list-excerpt { font-family: var(--font-body); font-size: 12px; color: var(--text-muted); font-style: italic; line-height: 1.5; margin-bottom: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.bl2-list-thumb { aspect-ratio: 4/3; overflow: hidden; background: var(--bg3); }
.bl2-list-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ══ BOTTOM GRID ══ */
.bl2-grid-section { padding: 24px 0 0; border-bottom: 1px solid var(--border); }
.bl2-grid-inner {
  max-width: 1140px; margin: 0 auto;
  padding: 0 24px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.bl2-grid-card { display: block; text-decoration: none; }
.bl2-grid-card:hover .bl2-grid-title { color: var(--text-muted); }
.bl2-grid-img { aspect-ratio: 4/3; overflow: hidden; margin-bottom: 10px; background: var(--bg3); }
.bl2-grid-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
.bl2-grid-card:hover .bl2-grid-img img { transform: scale(1.04); }
.bl2-grid-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 400; color: var(--text); line-height: 1.3; margin-bottom: 5px; transition: color .2s; }
.bl2-grid-excerpt { font-family: var(--font-body); font-size: 12px; color: var(--text-muted); font-style: italic; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ══ SUBSCRIBE BAR ══ */
.bl2-subscribe-bar {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 44px 24px;
}
.bl2-subscribe-inner {
  max-width: 680px; margin: 0 auto;
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.bl2-subscribe-title { font-family: var(--font-heading); font-size: clamp(1.2rem,2.5vw,1.6rem); font-weight: 400; color: var(--text); margin-bottom: 5px; }
.bl2-subscribe-sub { font-family: var(--font-body); font-style: italic; font-size: 14px; color: var(--text-muted); }
.bl2-subscribe-form {
  display: flex; border: 1px solid var(--border); overflow: hidden;
  background: var(--bg); min-width: 280px; flex-shrink: 0;
}
.bl2-subscribe-form input { flex: 1; padding: 11px 14px; border: none; background: transparent; font-family: var(--font-body); font-size: 14px; color: var(--text); outline: none; min-width: 0; }
.bl2-subscribe-form input::placeholder { color: var(--text-dim); }
.bl2-subscribe-form button { padding: 11px 20px; background: var(--text); color: var(--bg); border: none; font-family: var(--font-ui); font-size: 11px; font-weight: 600; letter-spacing: .5px; cursor: pointer; transition: opacity .2s; flex-shrink: 0; }
.bl2-subscribe-form button:hover { opacity: .85; }
.bl2-subscribe-ok { font-family: var(--font-body); font-size: 14px; color: #166534; background: rgba(22,163,74,.07); border: 1px solid rgba(22,163,74,.18); padding: 10px 16px; }

/* ── Blog post detail (unchanged classes, keep compatibility) ── */
.sub-post-wrap { max-width: 720px; margin: 0 auto; padding: calc(var(--nav-h) + 52px) 24px 80px; }
.sub-post-header { margin-bottom: 28px; padding-bottom: 22px; border-bottom: 1px solid var(--border); }
.sub-cat-pill { display: inline-block; font-family: var(--font-ui); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dim); font-weight: 500; margin-bottom: 7px; text-decoration: none; }
.sub-post-detail-title { font-family: var(--font-heading); font-size: clamp(1.8rem,5vw,3rem); font-weight: 400; line-height: 1.18; color: var(--text); margin: 8px 0 12px; }
.sub-post-subtitle { font-family: var(--font-body); font-style: italic; font-size: 18px; color: var(--text-muted); line-height: 1.6; margin-bottom: 18px; }
.sub-post-author-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.sub-author-avatar { width: 36px; height: 36px; border-radius: 50%; overflow: hidden; background: var(--bg2); border: 1px solid var(--border); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.sub-author-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sub-author-avatar span { font-family: var(--font-heading); font-size: .9rem; color: var(--text-muted); }
.sub-author-info { flex: 1; }
.sub-author-name { font-family: var(--font-ui); font-size: 13px; font-weight: 600; color: var(--text); display: block; margin-bottom: 1px; }
.sub-author-name a { color: var(--text); }
.sub-meta { font-family: var(--font-ui); font-size: 12px; color: var(--text-dim); }
.sub-share-row { display: flex; gap: 7px; align-items: center; margin-left: auto; }
.sub-share-btn { display: inline-flex; align-items: center; gap: 5px; padding: 5px 12px; border: 1px solid var(--border); background: var(--bg); font-family: var(--font-ui); font-size: 11px; color: var(--text-muted); cursor: pointer; transition: all .2s; border-radius: 20px; }
.sub-share-btn:hover { border-color: var(--text); color: var(--text); }
.sub-post-cover { margin: 0 -24px 32px; }
.sub-post-cover img { width: 100%; display: block; max-height: 500px; object-fit: cover; }
.sub-cover-caption { font-family: var(--font-body); font-style: italic; font-size: 12px; color: var(--text-dim); text-align: center; padding: 7px 24px; }
.sub-post-body { font-family: var(--font-body); font-size: 18px; line-height: 1.85; color: var(--text-muted); margin-bottom: 36px; }
.sub-post-body br { display: block; margin-bottom: 14px; }
.sub-post-tags { display: flex; flex-wrap: wrap; gap: 7px; padding-top: 26px; border-top: 1px solid var(--border); margin-bottom: 36px; }
.sub-tag-item { font-family: var(--font-ui); font-size: 10px; letter-spacing: 1px; text-transform: uppercase; padding: 4px 12px; border: 1px solid var(--border); color: var(--text-muted); background: var(--bg2); }
.sub-inline-subscribe { background: var(--bg2); border: 1px solid var(--border); padding: 24px; margin-bottom: 36px; }
.sub-inline-row { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.sub-inline-av { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; background: var(--bg); border: 1px solid var(--border); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.sub-inline-av img { width: 100%; height: 100%; object-fit: cover; }
.sub-inline-av span { font-family: var(--font-heading); font-size: 1rem; color: var(--text-muted); }
.sub-inline-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 400; margin-bottom: 3px; color: var(--text); }
.sub-inline-sub { font-family: var(--font-ui); font-size: 12px; color: var(--text-dim); }
.sub-form { display: flex; border: 1px solid var(--border); overflow: hidden; background: var(--bg); }
.sub-form input { flex: 1; padding: 10px 14px; border: none; background: transparent; font-family: var(--font-body); font-size: 14px; color: var(--text); outline: none; min-width: 0; }
.sub-form input::placeholder { color: var(--text-dim); }
.sub-form button { padding: 10px 18px; background: var(--text); color: var(--bg); border: none; font-family: var(--font-ui); font-size: 12px; font-weight: 600; letter-spacing: .5px; cursor: pointer; transition: opacity .2s; flex-shrink: 0; }
.sub-form button:hover { opacity: .85; }
.sub-ok { font-family: var(--font-body); font-size: 13px; color: #166534; background: rgba(22,163,74,.07); border: 1px solid rgba(22,163,74,.18); padding: 10px 16px; text-align: center; }
.sub-post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 36px; padding-top: 28px; border-top: 1px solid var(--border); }
.sub-nav-item { display: flex; flex-direction: column; gap: 5px; padding: 14px; background: var(--bg2); border: 1px solid var(--border); text-decoration: none; transition: border-color .2s; }
.sub-nav-item:hover { border-color: var(--border-dark); }
.sub-nav-next { text-align: right; }
.sub-nav-label { font-family: var(--font-ui); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dim); }
.sub-nav-title { font-family: var(--font-body); font-style: italic; font-size: 14px; color: var(--text); line-height: 1.4; }
.sub-post-back { text-align: center; padding: 36px 0; }
.sub-post-back a { font-family: var(--font-ui); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-dim); transition: color .2s; }
.sub-post-back a:hover { color: var(--text); }
.sub-related { background: var(--bg2); border-top: 1px solid var(--border); padding: 44px 0 60px; }
.sub-related-inner { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.sub-related-title { font-family: var(--font-ui); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-dim); margin-bottom: 24px; }
.sub-related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.sub-related-card { text-decoration: none; display: block; }
.sub-related-img { aspect-ratio: 4/3; overflow: hidden; background: var(--bg3); margin-bottom: 10px; }
.sub-related-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.sub-related-card:hover .sub-related-img img { transform: scale(1.03); }
.sub-related-card-title { font-family: var(--font-heading); font-size: 13px; font-weight: 400; color: var(--text); line-height: 1.3; }
.sub-back-link { font-family: var(--font-ui); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-dim); transition: color .2s; }
.sub-back-link:hover { color: var(--text); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .bl2-grid-inner { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 900px) {
  .bl2-top-inner { grid-template-columns: 1fr; }
  .bl2-top-left { flex-direction: row; }
  .bl2-small-card { flex: 1; }
  .bl2-sidebar { border-left: none; border-top: 1px solid var(--border); padding-left: 0; padding-top: 16px; }
  .bl2-mid-inner { grid-template-columns: 1fr; }
  .bl2-mid-list { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 16px; }
  .bl2-grid-inner { grid-template-columns: repeat(2,1fr); }
  .sub-related-grid { grid-template-columns: 1fr 1fr; }
  .sub-post-nav { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .bl2-top-left { flex-direction: column; }
  .bl2-grid-inner { grid-template-columns: 1fr 1fr; }
  .bl2-subscribe-inner { flex-direction: column; }
  .bl2-subscribe-form { min-width: 100%; }
  .sub-share-row { display: none; }
  .sub-related-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   GLOBAL IMAGE LIGHTBOX — works on any photo
   site-wide via .lb-img / .workshop-gallery-item img / .lb-zoomable img
   ═══════════════════════════════════════════ */
.gl-lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 9999;
  display: none;
  align-items: center; justify-content: center;
}
.gl-lightbox.open { display: flex; }
.gl-content {
  max-width: 92vw; max-height: 90vh;
  display: flex; align-items: center; justify-content: center;
}
.gl-content img {
  max-width: 92vw; max-height: 90vh;
  object-fit: contain;
  display: block;
}
.gl-close {
  position: absolute; top: 18px; right: 24px;
  background: none; border: none; color: #fff;
  font-size: 36px; line-height: 1; cursor: pointer;
  opacity: 0.8; transition: opacity 0.2s;
  z-index: 1;
}
.gl-close:hover { opacity: 1; }
.gl-prev, .gl-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.25);
  color: #fff; font-size: 28px; line-height: 1;
  width: 46px; height: 46px; border-radius: 50%;
  cursor: pointer; transition: background 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.gl-prev:hover, .gl-next:hover { background: rgba(255,255,255,0.18); }
.gl-prev { left: 18px; }
.gl-next { right: 18px; }

@media (max-width: 640px) {
  .gl-close { top: 10px; right: 14px; font-size: 30px; }
  .gl-prev, .gl-next { width: 38px; height: 38px; font-size: 22px; }
  .gl-prev { left: 8px; }
  .gl-next { right: 8px; }
}
