/* ==========================================================================
   Lumina Photography – public site styles
   ========================================================================== */
/* Self-hosted fonts (SIL Open Font License) – no third-party requests */
@font-face { font-family: "Cormorant Garamond"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/cormorant-garamond-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Cormorant Garamond"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/cormorant-garamond-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Cormorant Garamond"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/cormorant-garamond-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Cormorant Garamond"; font-style: italic; font-weight: 400; font-display: swap; src: url("../fonts/cormorant-garamond-latin-400-italic.woff2") format("woff2"); }
@font-face { font-family: "Manrope"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/manrope-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Manrope"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/manrope-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Manrope"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/manrope-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Manrope"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/manrope-latin-700-normal.woff2") format("woff2"); }
:root {
  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-ui: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --radius: 14px;
  --radius-sm: 8px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --header-h: 72px;
  --gutter: clamp(16px, 4vw, 48px);
}
:root, [data-theme="dark"] {
  --bg: #0e0e0d;
  --bg-alt: #151513;
  --surface: #1b1b19;
  --surface-2: #232320;
  --text: #eeeae3;
  --muted: #a29d93;
  --line: rgba(255, 255, 255, .09);
  --accent: #c9a36a;
  --accent-ink: #15120c;
  --accent-soft: rgba(201, 163, 106, .14);
  --danger: #ef7a6c;
  --ok: #7fc59a;
  --shadow: 0 20px 50px rgba(0, 0, 0, .45);
  --header-bg: rgba(14, 14, 13, .78);
  color-scheme: dark;
}
[data-theme="light"] {
  --bg: #f7f4ef;
  --bg-alt: #efebe4;
  --surface: #ffffff;
  --surface-2: #f3f0ea;
  --text: #1b1a17;
  --muted: #6c675e;
  --line: rgba(0, 0, 0, .09);
  --accent: #9b7440;
  --accent-ink: #ffffff;
  --accent-soft: rgba(155, 116, 64, .1);
  --danger: #c2412f;
  --ok: #2f8a55;
  --shadow: 0 20px 50px rgba(40, 30, 10, .12);
  --header-bg: rgba(247, 244, 239, .82);
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font: 400 16px/1.65 var(--font-ui); -webkit-font-smoothing: antialiased;
  transition: background-color .35s var(--ease), color .35s var(--ease);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration-color: var(--accent); text-underline-offset: 3px; }
a:hover { color: var(--accent); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.1; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.6rem; }
p { margin: 0 0 1em; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
.muted { color: var(--muted); }
.small { font-size: .86rem; }
.center { text-align: center; }
.center-row { justify-content: center; }
.lead { font-size: 1.15rem; max-width: 60ch; }
.eyebrow { text-transform: uppercase; letter-spacing: .22em; font-size: .74rem; font-weight: 600; color: var(--accent); margin-bottom: 1rem; }
.eyebrow a { text-decoration: none; }
.wrap { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 var(--gutter); }
.wrap-wide { width: 100%; max-width: 1800px; margin: 0 auto; padding: 0 clamp(8px, 2vw, 32px); }
.narrow { max-width: 680px; }
.skip { position: absolute; left: -9999px; top: 0; z-index: 999; background: var(--accent); color: var(--accent-ink); padding: .6rem 1rem; }
.skip:focus { left: 1rem; top: 1rem; }
.hp { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; opacity: 0; }
.i { flex: none; }
[hidden] { display: none !important; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .85em 1.6em; border-radius: 999px; border: 1px solid var(--accent);
  background: var(--accent); color: var(--accent-ink); font-weight: 600; font-size: .95rem;
  letter-spacing: .02em; text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .25s var(--ease), background .25s, color .25s, box-shadow .25s;
}
.btn:hover { color: var(--accent-ink); transform: translateY(-2px); box-shadow: 0 10px 24px var(--accent-soft); }
.btn:active { transform: translateY(0); }
.btn[disabled], .btn.is-loading { opacity: .55; pointer-events: none; }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn-ghost:hover { color: var(--text); border-color: var(--accent); }
.btn-sm { padding: .55em 1.1em; font-size: .85rem; }
.btn-lg { padding: 1.05em 1.8em; font-size: 1rem; }
.btn-block { width: 100%; }
.link-btn { background: none; border: 0; padding: 0; color: var(--muted); text-decoration: underline; cursor: pointer; }
.link-btn:hover { color: var(--danger); }
.link-arrow { display: inline-flex; align-items: center; gap: .4em; text-decoration: none; font-weight: 600; font-size: .9rem; white-space: nowrap; }
.link-arrow .i { transition: transform .25s var(--ease); }
.link-arrow:hover .i { transform: translateX(4px); }
.icon-btn {
  display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  background: transparent; border: 1px solid transparent; cursor: pointer; position: relative; text-decoration: none;
  transition: background .2s, border-color .2s;
}
.icon-btn:hover { background: var(--accent-soft); color: var(--text); }

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50; height: var(--header-h);
  background: var(--header-bg); backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line); transition: background .35s, border-color .35s, transform .35s var(--ease);
}
.is-home .site-header:not(.is-scrolled) { background: transparent; border-color: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; color: #fff; }
.is-home .site-header:not(.is-scrolled) .nav a { color: rgba(255, 255, 255, .88); }
.site-header.is-hidden { transform: translateY(-100%); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; }
.brand img { height: 36px; width: auto; }
.brand-mark { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--accent); position: relative; }
.brand-mark::after { content: ""; position: absolute; inset: 4px; border-radius: 50%; background: var(--accent); }
.brand-name { font-family: var(--font-display); font-size: 1.55rem; font-weight: 500; letter-spacing: .02em; }
.nav { display: flex; gap: .3rem; margin-left: auto; }
.nav a { padding: .5rem .85rem; text-decoration: none; font-size: .92rem; font-weight: 500; letter-spacing: .03em; border-radius: 999px; position: relative; }
.nav a[aria-current="page"]::after { content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .25rem; height: 1px; background: var(--accent); }
.header-actions { display: flex; align-items: center; gap: .25rem; }
.theme-toggle .i-moon { display: none; }
[data-theme="light"] .theme-toggle .i-sun { display: none; }
[data-theme="light"] .theme-toggle .i-moon { display: block; }
.cart-count {
  position: absolute; top: 2px; right: 0; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 9px;
  background: var(--accent); color: var(--accent-ink); font-size: .7rem; font-weight: 700; display: grid; place-items: center;
}
.menu-btn { display: none; }
.menu-btn .i-close { display: none; }

@media (max-width: 860px) {
  .menu-btn { display: inline-grid; }
  .nav {
    position: fixed; inset: var(--header-h) 0 0; flex-direction: column; gap: 0; padding: 2rem var(--gutter);
    background: var(--bg); transform: translateX(100%); transition: transform .4s var(--ease); margin: 0; visibility: hidden;
  }
  .nav a { font-family: var(--font-display); font-size: 2.1rem; padding: .6rem 0; border-bottom: 1px solid var(--line); border-radius: 0; color: var(--text) !important; }
  .nav a[aria-current="page"]::after { display: none; }
  .nav a[aria-current="page"] { color: var(--accent) !important; }
  .menu-open .nav { transform: none; visibility: visible; }
  .menu-open .menu-btn .i-menu { display: none; }
  .menu-open .menu-btn .i-close { display: block; }
  .menu-open .site-header { background: var(--bg) !important; color: var(--text) !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; transform: none !important; }
  .menu-open { overflow: hidden; }
  .header-actions { margin-left: auto; }
}

/* Toasts */
.toasts { position: fixed; top: calc(var(--header-h) + 12px); right: 16px; z-index: 60; display: grid; gap: .5rem; max-width: min(420px, calc(100vw - 32px)); }
.toast {
  background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--accent);
  padding: .85rem 2.4rem .85rem 1rem; border-radius: var(--radius-sm); box-shadow: var(--shadow); position: relative;
  animation: toastIn .45s var(--ease);
}
.toast-error { border-left-color: var(--danger); }
.toast-success { border-left-color: var(--ok); }
.toast-x { position: absolute; top: .4rem; right: .5rem; background: none; border: 0; font-size: 1.3rem; cursor: pointer; color: var(--muted); }
@keyframes toastIn { from { opacity: 0; transform: translateY(-10px); } }

/* Hero */
.hero { position: relative; height: 100svh; min-height: 560px; overflow: hidden; background: #0b0b0a; color: #fff; display: flex; align-items: flex-end; }
.hero-empty { height: 78svh; background: radial-gradient(circle at 70% 30%, #2a241b, #0b0b0a 60%); }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s ease; }
.hero-slide.is-active { opacity: 1; }
.hero-slide .ph, .hero-slide img { width: 100%; height: 100%; }
.hero-slide img { object-fit: cover; transform: scale(1.06); transition: transform 8s linear; }
.hero-slide.is-active img { transform: scale(1); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,0) 28%, rgba(0,0,0,.15) 55%, rgba(0,0,0,.72) 100%); }
.hero-content { position: relative; z-index: 2; padding-bottom: clamp(5rem, 12vh, 8rem); }
.hero .eyebrow { color: #e3c08a; }
.hero-title { font-size: clamp(2.8rem, 7.5vw, 6.2rem); max-width: 14ch; font-weight: 400; text-shadow: 0 2px 30px rgba(0,0,0,.35); }
.hero-sub { font-size: 1.1rem; max-width: 46ch; color: rgba(255,255,255,.82); }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.45); }
.hero .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.hero-dots { position: absolute; z-index: 3; right: var(--gutter); bottom: clamp(5.5rem, 12vh, 8.5rem); display: flex; gap: .5rem; }
.hero-dots button { width: 28px; height: 3px; border: 0; padding: 0; background: rgba(255,255,255,.35); cursor: pointer; transition: background .3s, width .3s; }
.hero-dots button[aria-selected="true"] { background: #fff; width: 44px; }
.scroll-cue { position: absolute; z-index: 3; left: 50%; bottom: 1.6rem; width: 24px; height: 40px; border: 1.5px solid rgba(255,255,255,.55); border-radius: 12px; transform: translateX(-50%); }
.scroll-cue span { position: absolute; left: 50%; top: 8px; width: 3px; height: 8px; margin-left: -1.5px; border-radius: 2px; background: #fff; animation: cue 1.8s infinite; }
@media (max-width: 700px) {
  .hero-dots { left: var(--gutter); right: auto; bottom: 1.6rem; }
  .scroll-cue { display: none; }
  .hero-content { padding-bottom: 4.5rem; }
}
@keyframes cue { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(12px); } }

/* Sections */
.section { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.section-tight { padding-top: 1rem; }
.section-alt { background: var(--bg-alt); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: clamp(2rem, 4vw, 3rem); flex-wrap: wrap; }
.section-head h2 { margin: 0; }
.section-head .eyebrow { margin-bottom: .6rem; }
.page-head { padding: calc(var(--header-h) + clamp(3rem, 7vw, 5.5rem)) 0 clamp(1.5rem, 3vw, 2.5rem); }
.page-head-sm { padding-bottom: 1rem; }
.page-head h1 { margin-bottom: .3em; }

/* Blur-up placeholder */
.ph { display: block; background-size: cover; background-position: center; background-color: var(--surface-2); overflow: hidden; }
.ph img { width: 100%; height: 100%; object-fit: cover; transition: opacity .6s var(--ease), transform .8s var(--ease); }
.js .ph img { opacity: 0; }
.js .ph img.is-loaded { opacity: 1; }
.ph[style*="background-image"] { background-color: transparent; }

/* Collections */
.collections { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(10px, 1.6vw, 20px); }
.collection { position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden; text-decoration: none; color: #fff; isolation: isolate; background: var(--surface-2); }
.collection-lg { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.collection .ph { position: absolute; inset: 0; }
.collection::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.72)); z-index: 1; transition: opacity .4s; }
.collection:hover img { transform: scale(1.05); }
.collection-info { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: clamp(1rem, 2.5vw, 1.6rem); display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; }
.collection-name { font-family: var(--font-display); font-size: clamp(1.5rem, 2.5vw, 2.1rem); line-height: 1.1; }
.collection-lg .collection-name { font-size: clamp(1.9rem, 3.4vw, 3rem); }
.collection-count { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; opacity: .85; white-space: nowrap; }
.collection:hover { color: #fff; }
.collections-all .collection { aspect-ratio: 4 / 5; }
@media (max-width: 900px) { .collections { grid-template-columns: repeat(2, 1fr); } .collection-lg { grid-column: span 2; grid-row: auto; aspect-ratio: 16 / 11; } }
@media (max-width: 560px) { .collections { grid-template-columns: 1fr; } .collection-lg { grid-column: auto; } .collection { aspect-ratio: 4 / 4.4; } }

/* Justified gallery – pure CSS, zero layout shift */
.justified { display: flex; flex-wrap: wrap; gap: clamp(6px, 1vw, 12px); --row: clamp(200px, 26vw, 360px); }
.justified::after { content: ""; flex-grow: 999999; }
.tile {
  position: relative; display: block; flex: calc(var(--r) * 100) 1 calc(var(--r) * var(--row));
  aspect-ratio: var(--r); overflow: hidden; border-radius: 6px; background: var(--surface-2); cursor: zoom-in; color: #fff;
}
.tile .ph { width: 100%; height: 100%; }
.tile:hover img { transform: scale(1.035); }
.tile-cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.8rem .9rem .7rem; font-size: .86rem; display: flex; justify-content: space-between; align-items: center; gap: .5rem;
  background: linear-gradient(transparent, rgba(0,0,0,.65)); opacity: 0; transform: translateY(6px); transition: opacity .3s, transform .3s var(--ease);
}
.tile:hover .tile-cap, .tile:focus-visible .tile-cap { opacity: 1; transform: none; }
.tile-buy { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--accent); color: var(--accent-ink); }
@media (max-width: 600px) { .justified { --row: 150px; } .tile-cap { display: none; } }

.chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.4rem; }
.chip { padding: .45rem 1rem; border: 1px solid var(--line); border-radius: 999px; text-decoration: none; font-size: .88rem; transition: all .2s; }
.chip:hover { border-color: var(--accent); color: var(--text); }
.chip[aria-current="page"] { background: var(--text); color: var(--bg); border-color: var(--text); }

/* Packages */
.packages { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; }
.package { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; display: flex; flex-direction: column; transition: transform .35s var(--ease), border-color .3s, box-shadow .35s; }
.package:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: var(--shadow); }
.package h3 { margin-bottom: .3rem; }
.package-meta { display: flex; align-items: center; gap: .4rem; font-size: .88rem; }
.package-price { font-family: var(--font-display); font-size: 2.3rem; margin: .4rem 0 .8rem; color: var(--accent); }
.package-desc { color: var(--muted); flex: 1; font-size: .95rem; }
.package .btn { margin-top: 1rem; }

/* Products */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: clamp(14px, 2vw, 26px); }
.product-card { text-decoration: none; display: block; }
.product-media { position: relative; display: block; aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden; background: var(--surface-2); }
.product-media .ph { width: 100%; height: 100%; }
.product-card:hover img { transform: scale(1.04); }
.product-type { position: absolute; top: .8rem; left: .8rem; background: rgba(0,0,0,.55); color: #fff; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; padding: .3rem .65rem; border-radius: 999px; backdrop-filter: blur(6px); }
.product-info { display: flex; justify-content: space-between; gap: 1rem; padding: .9rem .2rem 0; }
.product-title { font-family: var(--font-display); font-size: 1.3rem; line-height: 1.2; }
.product-price { color: var(--muted); font-size: .9rem; white-space: nowrap; padding-top: .2rem; }
.product-card:hover .product-title { color: var(--accent); }
.trust { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; margin-top: 4rem; padding-top: 2.5rem; border-top: 1px solid var(--line); }
.trust div { display: grid; grid-template-columns: auto 1fr; column-gap: .8rem; }
.trust .i { grid-row: span 2; color: var(--accent); margin-top: 2px; }
.trust span { font-size: .88rem; }

.product-page { padding-top: calc(var(--header-h) + 2.5rem); }
.product-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.product-hero .ph { border-radius: var(--radius); }
.product-hero img { max-height: 82vh; object-fit: contain; background: var(--bg-alt); }
.product-zoom { display: block; cursor: zoom-in; }
.product-side { position: sticky; top: calc(var(--header-h) + 1.5rem); }
.product-side h1 { font-size: clamp(2.2rem, 4vw, 3.3rem); }
.product-price-lg { font-family: var(--font-display); font-size: 2.2rem; color: var(--accent); margin-bottom: 1.4rem; }
.variants { border: 0; padding: 0; margin: 0 0 1.2rem; display: grid; gap: .55rem; }
.variants legend, .gateways legend { font-weight: 600; font-size: .9rem; margin-bottom: .6rem; }
.variant, .gateway { display: flex; align-items: center; gap: .8rem; padding: .95rem 1.1rem; border: 1px solid var(--line); border-radius: var(--radius-sm); cursor: pointer; transition: border-color .2s, background .2s; background: var(--surface); }
.variant span { flex: 1; }
.variant:has(input:checked), .gateway:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); }
.variant input, .gateway input, .pick input { accent-color: var(--accent); width: 18px; height: 18px; flex: none; }
.qty-label { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.2rem; font-weight: 600; font-size: .9rem; }
.qty-label input, .qty-inline input { width: 80px; padding: .55rem .7rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); }
.product-points { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; gap: .6rem; font-size: .9rem; }
.product-points li { display: flex; gap: .6rem; align-items: flex-start; }
.product-points .i { color: var(--accent); margin-top: 3px; }
.prose { margin-top: 1.6rem; color: var(--muted); }
@media (max-width: 900px) { .product-layout { grid-template-columns: 1fr; } .product-side { position: static; } }

/* Cart & checkout */
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
.cart-lines { display: grid; gap: 0; }
.cart-line { display: grid; grid-template-columns: 96px 1fr auto; gap: 1.2rem; align-items: center; padding: 1.2rem 0; border-bottom: 1px solid var(--line); }
.cart-thumb { display: block; width: 96px; height: 110px; border-radius: var(--radius-sm); overflow: hidden; background: var(--surface-2); }
.cart-thumb .ph { width: 100%; height: 100%; }
.cart-meta { display: grid; gap: .25rem; }
.cart-title { font-family: var(--font-display); font-size: 1.35rem; text-decoration: none; }
.cart-price { text-align: right; display: grid; gap: .4rem; justify-items: end; font-weight: 600; }
.qty-inline { display: inline-flex; align-items: center; gap: .5rem; font-size: .85rem; margin-top: .3rem; }
.summary { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; display: grid; gap: .8rem; position: sticky; top: calc(var(--header-h) + 1.5rem); }
.summary h2 { font-size: 1.6rem; margin: 0 0 .3rem; display: flex; align-items: center; justify-content: space-between; gap: .5rem; }
.sum-row { display: flex; justify-content: space-between; gap: 1rem; font-size: .95rem; }
.sum-total { font-weight: 700; font-size: 1.1rem; border-top: 1px solid var(--line); padding-top: .8rem; }
.sum-line { display: grid; grid-template-columns: 52px 1fr auto; gap: .8rem; align-items: center; font-size: .9rem; padding-bottom: .6rem; border-bottom: 1px solid var(--line); }
.sum-thumb { width: 52px; height: 60px; border-radius: 6px; overflow: hidden; background: var(--surface-2); }
.sum-thumb .ph { width: 100%; height: 100%; }
.empty-state { text-align: center; padding: 4rem 1rem; display: grid; justify-items: center; gap: 1rem; color: var(--muted); }
.empty-state .i { color: var(--accent); }
.download-row { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.notice { background: var(--accent-soft); border-radius: var(--radius-sm); padding: .9rem 1rem; font-size: .92rem; }
@media (max-width: 900px) { .cart-layout { grid-template-columns: 1fr; } .summary { position: static; } }
@media (max-width: 520px) { .cart-line { grid-template-columns: 72px 1fr; } .cart-thumb { width: 72px; height: 86px; } .cart-price { grid-column: 2; justify-items: start; text-align: left; } }

/* Forms */
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2.2rem); display: grid; gap: 1rem; align-content: start; }
.form-card h2 { font-size: 1.7rem; margin: .6rem 0 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .grid-2 { grid-template-columns: 1fr; } }
.field { display: grid; gap: .4rem; }
.field-label { font-size: .85rem; font-weight: 600; }
.field-label i { color: var(--accent); font-style: normal; }
.field input, .field textarea, .field select, .book-layout select {
  width: 100%; padding: .85rem 1rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg);
  transition: border-color .2s, box-shadow .2s; min-height: 48px;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.field textarea { resize: vertical; min-height: 130px; }
.has-error input, .has-error textarea { border-color: var(--danger); }
.field-error { color: var(--danger); font-size: .84rem; }
.gateways { border: 0; padding: 0; margin: .4rem 0 0; display: grid; gap: .55rem; }
.gateway { flex-wrap: wrap; }
.gw-logo { font-weight: 700; letter-spacing: .01em; min-width: 110px; }
.gw-paystack { color: #3bb75e; } .gw-flutterwave { color: #f5a623; } .gw-stripe { color: #7a73ff; } .gw-paypal { color: #2790c3; }

/* Booking */
.book-layout { display: grid; grid-template-columns: 1fr 380px; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
.book-layout > div { display: grid; gap: 1rem; }
.step { font-size: 1.7rem; display: flex; align-items: center; gap: .8rem; margin: 1.4rem 0 .2rem; }
.step:first-child { margin-top: 0; }
.step span { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--accent); color: var(--accent); font: 600 .9rem var(--font-ui); }
.package-pick { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: .8rem; }
.pick { display: flex; gap: .8rem; padding: 1.1rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); cursor: pointer; transition: border-color .2s, background .2s; }
.pick:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); }
.pick-body { display: grid; gap: .2rem; }
.pick-name { font-family: var(--font-display); font-size: 1.35rem; line-height: 1.15; }
.pick-price { font-weight: 700; color: var(--accent); }
.summary-sticky { position: sticky; }
@media (max-width: 900px) { .book-layout { grid-template-columns: 1fr; } }

/* About & contact */
.about { padding-top: calc(var(--header-h) + 3rem); }
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.about-photo img, .about-placeholder { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); }
.about-placeholder { display: grid; place-items: center; background: var(--surface-2); color: var(--accent); }
.about-text .prose { margin-top: 0; font-size: 1.05rem; }
.stats { display: flex; gap: 2.5rem; margin: 2rem 0 .5rem; }
.stats div { display: grid; }
.stats b { font-family: var(--font-display); font-size: 2.6rem; font-weight: 500; line-height: 1; color: var(--accent); }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
.contact-info { display: grid; gap: .8rem; }
.contact-info > * { display: flex; gap: 1rem; align-items: flex-start; padding: 1.2rem; border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; background: var(--surface); transition: border-color .2s, transform .25s var(--ease); }
.contact-info a:hover { border-color: var(--accent); transform: translateX(4px); color: var(--text); }
.contact-info .i { color: var(--accent); margin-top: 2px; }
.contact-info span { display: grid; font-size: .92rem; word-break: break-word; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* CTA band & footer */
.cta-band { padding: clamp(4rem, 9vw, 7rem) 0; text-align: center; background: radial-gradient(ellipse at center, var(--accent-soft), transparent 70%); border-top: 1px solid var(--line); }
.cta-inner { display: grid; justify-items: center; }
.cta-inner h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); max-width: 18ch; }
.site-footer { border-top: 1px solid var(--line); padding: 3.5rem 0 1.5rem; background: var(--bg-alt); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: 2rem; }
.footer-grid > div { display: grid; gap: .5rem; align-content: start; }
.footer-grid h4 { font-family: var(--font-ui); font-size: .78rem; text-transform: uppercase; letter-spacing: .18em; color: var(--muted); font-weight: 600; margin-bottom: .5rem; }
.footer-grid a { text-decoration: none; font-size: .93rem; }
.footer-grid .btn { justify-self: start; margin-top: .6rem; }
.footer-tag { font-size: .93rem; max-width: 34ch; }
.socials { display: flex; gap: .5rem; }
.socials a { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; }
.socials a:hover { border-color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); font-size: .82rem; }
.secure-note { display: inline-flex; align-items: center; gap: .4rem; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-grid > div:first-child { grid-column: span 2; } }

.badge { display: inline-block; font: 600 .72rem/1 var(--font-ui); padding: .35em .7em; border-radius: 999px; letter-spacing: .04em; vertical-align: middle; }
.badge-green { background: rgba(80, 180, 120, .16); color: var(--ok); }
.badge-amber { background: rgba(230, 170, 60, .16); color: #d49a2a; }
.badge-red { background: rgba(230, 90, 70, .16); color: var(--danger); }
.badge-blue { background: rgba(90, 140, 230, .16); color: #6d97e6; }
.badge-grey { background: var(--surface-2); color: var(--muted); }
.error-page { padding-top: calc(var(--header-h) + 6rem); min-height: 70vh; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(8, 8, 7, .97); display: grid; grid-template-rows: 1fr auto; opacity: 0; transition: opacity .3s; touch-action: pan-y; color: #fff; }
.lightbox.is-open { opacity: 1; }
.lb-stage { margin: 0; display: grid; place-items: center; padding: 64px clamp(8px, 6vw, 90px) 0; min-height: 0; position: relative; }
.lb-img { max-width: 100%; max-height: calc(100svh - 130px); width: auto; height: auto; object-fit: contain; user-select: none; transition: opacity .35s, transform .35s var(--ease); }
.lb-img.is-swapping { opacity: 0; transform: scale(.985); }
.lb-spinner { position: absolute; width: 34px; height: 34px; border: 2px solid rgba(255,255,255,.2); border-top-color: #fff; border-radius: 50%; animation: spin .8s linear infinite; opacity: 0; transition: opacity .2s; pointer-events: none; }
.lightbox.is-loading .lb-spinner { opacity: 1; }
@keyframes spin { to { transform: rotate(360deg); } }
.lb-bar { display: flex; align-items: center; justify-content: center; gap: 1.2rem; padding: 1rem; min-height: 66px; font-size: .92rem; flex-wrap: wrap; }
.lb-title { font-family: var(--font-display); font-size: 1.2rem; }
.lb-btn { position: absolute; z-index: 2; background: rgba(255,255,255,.06); border: 0; color: #fff; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; cursor: pointer; transition: background .2s; }
.lb-btn:hover { background: rgba(255,255,255,.16); }
.lb-close { top: 12px; right: 12px; }
.lb-prev { left: 14px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 14px; top: 50%; transform: translateY(-50%); }
.lb-buy { color: var(--accent-ink); }
@media (max-width: 700px) { .lb-prev, .lb-next { display: none; } .lb-stage { padding: 56px 0 0; } }

/* Image protection (deters casual saving) */
.protect .ph img, .protect .lb-img { -webkit-user-drag: none; -webkit-touch-callout: none; user-select: none; }

/* Scroll reveal */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; }
}
