/* ============================================================
   Layer & Light — Studio / Gallery theme
   Warm paper + ink, serif display, editorial layout.
   ============================================================ */

:root {
  /* palette (variable names kept stable so admin.html still themes) */
  --bg: #f4efe4;          /* warm paper */
  --paper-2: #efe7d8;     /* deeper band */
  --surface: #fbf8f1;     /* cards / raised */
  --text: #221e18;        /* ink */
  --muted: #6f6656;       /* soft ink */
  --line: #e2d9c7;        /* warm hairline */
  --brand: #b0673c;       /* clay / terracotta accent */
  --brand-dark: #8f5028;
  --brand-soft: #efe3d3;  /* soft clay tint (placeholders) */
  --ok: #5c7a4a; --ok-soft: #e8eede;
  --warn: #9a6a2e; --warn-soft: #f2e7d3;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --logo: "Montserrat", var(--sans);   /* brand wordmark — matches the logo lockup */

  --shadow: 0 1px 2px rgba(40,30,15,.05), 0 10px 30px rgba(40,30,15,.07);
  --shadow-lg: 0 20px 60px rgba(40,30,15,.22);
  --radius: 6px;
  --maxw: 1240px;
}

/* Dark "wall / gallery" theme — deep near-black so the gold logo & work glow */
:root[data-theme="dark"] {
  --bg: #100f0d;
  --paper-2: #15130f;
  --surface: #1a1712;
  --text: #ece5d6;
  --muted: #9d9484;
  --line: #2a251e;
  --brand: #e0a75f;        /* gold "light" accent (matches the logo) */
  --brand-dark: #f2c079;
  --brand-soft: #241c12;
  --ok: #9cb583; --ok-soft: #22271c;
  --warn: #d9ad63; --warn-soft: #2a2214;
  --shadow: 0 1px 2px rgba(0,0,0,.4), 0 12px 34px rgba(0,0,0,.5);
  --shadow-lg: 0 28px 70px rgba(0,0,0,.7);
}
/* Lit-wall backdrop: a soft gold spotlight from the top over a deep vertical gradient */
:root[data-theme="dark"] body {
  background:
    radial-gradient(1200px 620px at 50% -12%, rgba(224,167,95,.07), transparent 62%),
    linear-gradient(180deg, #151310 0%, #100f0d 55%, #0b0a08 100%);
  background-attachment: fixed;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--sans); color: var(--text); background: var(--bg);
  line-height: 1.6; -webkit-font-smoothing: antialiased; letter-spacing: .002em;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.serif { font-family: var(--serif); }
.overline { font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--brand-dark); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand .mark { height: 46px; width: auto; flex: 0 0 auto; display: block; }
.brand .wordmark { display: flex; flex-direction: column; line-height: 1.05; }
.brand .wordmark .name { font-family: var(--logo); font-weight: 700; font-size: 1.04rem; letter-spacing: .11em; text-transform: uppercase; }
.brand .wordmark .kicker { font-family: var(--logo); font-weight: 600; font-size: .55rem; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); margin-top: 5px; }
.brand .wordmark .kicker .k-gold { color: var(--brand); }
/* metallic two-tone brand text — silver "Layers", gold "& Light" (matches the logo) */
.w-lay { background: linear-gradient(180deg, #f5f3ef 0%, #c1beb6 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.w-lig { background: linear-gradient(180deg, #f7d089 0%, #d8992f 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); transition: color .15s; }
.nav a:hover { color: var(--text); }
.nav a.enquire { color: var(--text); border: 1px solid var(--text); padding: 8px 16px; border-radius: 999px; }
.nav a.enquire:hover { background: var(--text); color: var(--bg); }
.header-right { display: flex; align-items: center; gap: 20px; }
.theme-toggle { display: inline-grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); color: var(--text); cursor: pointer; transition: border-color .15s; }
.theme-toggle:hover { border-color: var(--muted); }
.theme-toggle .ic-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .ic-moon { display: none; }
:root[data-theme="dark"] .theme-toggle .ic-sun { display: block; }
.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero { padding: 82px 0 40px; }
.hero .kick { margin-bottom: 22px; }
.hero h1 {
  font-family: var(--serif); font-weight: 400; font-optical-sizing: auto;
  font-size: clamp(2.3rem, 5.5vw, 4.1rem); line-height: 1.04; letter-spacing: -.01em;
  margin: 0 0 26px; max-width: 15ch; white-space: pre-line;
}
.hero .sub { font-size: clamp(1rem, 1.6vw, 1.18rem); color: var(--muted); max-width: 62ch; margin: 0; }
.hero .meta { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 30px; color: var(--muted); font-size: .82rem; letter-spacing: .04em; }
.hero .meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero .meta .dotsep::before { content: "✦"; color: var(--brand); margin-right: 8px; }

/* ---------- Collection sections ---------- */
.collection { padding: 30px 0 20px; }
.collection-head { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; padding-bottom: 26px; border-bottom: 1px solid var(--line); margin-bottom: 34px; flex-wrap: wrap; }
.collection-head .ch-left { display: flex; flex-direction: column; gap: 10px; }
.collection-head h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.7rem, 3vw, 2.4rem); letter-spacing: -.01em; margin: 0; }
.collection-head .blurb { color: var(--muted); font-size: 1rem; max-width: 46ch; }
.collection-head .count { font-size: .8rem; color: var(--muted); letter-spacing: .05em; white-space: nowrap; }

/* ---------- Works grid ---------- */
.works {
  display: grid; gap: 30px 26px;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  grid-auto-flow: dense; padding-bottom: 30px;
}
.work { cursor: pointer; display: flex; flex-direction: column; }
.work.big { grid-column: span 2; }
.work .frame {
  position: relative; overflow: hidden; background: var(--brand-soft);
  aspect-ratio: 4 / 5; border-radius: var(--radius);
}
.work.big .frame { aspect-ratio: 16 / 11; }
.work .frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.work:hover .frame img { transform: scale(1.045); }
.work .frame::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(40,30,15,.06); pointer-events: none;
}
.work .cap { padding: 14px 2px 4px; display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.work .cap h3 { font-family: var(--serif); font-weight: 500; font-size: 1.12rem; letter-spacing: .005em; margin: 0; }
.work .cap .note { font-size: .74rem; letter-spacing: .04em; color: var(--muted); white-space: nowrap; }
.work .frame .feat { position: absolute; top: 14px; left: 14px; font-family: var(--serif); font-style: italic; font-size: .8rem; color: #fff; background: rgba(34,30,24,.55); padding: 3px 12px; border-radius: 999px; backdrop-filter: blur(3px); }
.work .frame .pcount {
  position: absolute; bottom: 14px; right: 14px; display: flex; align-items: center; gap: 5px;
  background: rgba(34,30,24,.6); color: #fff; font-size: .72rem; padding: 4px 9px; border-radius: 999px; backdrop-filter: blur(3px);
}
.work .frame .pcount svg { width: 12px; height: 12px; }

/* placeholder */
.ph { width: 100%; height: 100%; display: grid; place-items: center; background: linear-gradient(135deg, var(--brand-soft), #f0e6d6); color: var(--brand); }
.ph svg { width: 42px; height: 42px; opacity: .5; }

/* ---------- Kind words ---------- */
.kindwords { padding: 30px 0 10px; }
.kindwords .kw-head { display: flex; flex-direction: column; gap: 10px; padding-bottom: 26px; border-bottom: 1px solid var(--line); margin-bottom: 34px; }
.kindwords .kw-head h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.7rem, 3vw, 2.4rem); margin: 0; }
.kw-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.kw-card { margin: 0; background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 26px 26px 22px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 12px; }
.kw-card blockquote { font-family: var(--serif); font-size: 1.16rem; line-height: 1.5; margin: 0; color: var(--text); }
.kw-card figcaption { font-size: .86rem; color: var(--muted); letter-spacing: .02em; }
.kw-stars { display: flex; gap: 2px; font-size: .95rem; }
.kw-stars .star { color: var(--line); }
.kw-stars .star.on { color: var(--brand); }

/* ---------- About band ---------- */
.about { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-top: 40px; }
.about .wrap { padding-top: 78px; padding-bottom: 78px; display: grid; grid-template-columns: 0.8fr 1.4fr; gap: 40px; }
.about h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.9rem, 3.2vw, 2.6rem); margin: 12px 0 0; line-height: 1.1; }
.about .body p { color: #4a4235; font-size: 1.08rem; margin: 0 0 18px; max-width: 60ch; }
.about .body p:last-child { margin-bottom: 0; }
.about .body p:first-child::first-letter { font-family: var(--serif); font-size: 3.1rem; line-height: .8; float: left; margin: 6px 12px 0 0; color: var(--brand-dark); }

/* ---------- Footer ---------- */
.site-footer { padding: 70px 0 60px; }
.site-footer .wrap { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: start; }
.site-footer .f-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.site-footer .f-brand .mark { height: 42px; width: auto; display: block; }
.site-footer .f-brand .name { font-family: var(--logo); font-size: 1.08rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.site-footer .f-lead { font-family: var(--serif); font-size: 1.35rem; line-height: 1.35; margin: 0 0 22px; max-width: 22ch; }
.site-footer .credit { color: var(--muted); font-size: .82rem; max-width: 52ch; margin-top: 22px; }
.site-footer .foot-contact { display: flex; flex-wrap: wrap; gap: 10px; }
.site-footer .backtop { margin-top: 26px; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }

/* ---------- Enquiry buttons (shared: modal + footer) ---------- */
.contact-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.cbtn {
  display: inline-flex; align-items: center; gap: 9px; padding: 11px 18px; border-radius: 999px;
  font-weight: 600; font-size: .9rem; letter-spacing: .01em; cursor: pointer;
  border: 1px solid var(--line); background: var(--surface); color: var(--text);
  transition: border-color .15s, background .15s, transform .05s;
}
.cbtn:hover { border-color: var(--text); }
.cbtn:active { transform: translateY(1px); }
.cbtn svg { width: 17px; height: 17px; }
.cbtn .ic { display: inline-grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; color: #fff; }
.cbtn .ic svg { width: 13px; height: 13px; }
.cbtn.messenger .ic { background: #0084ff; }
.cbtn.whatsapp .ic { background: #25d366; }
.cbtn.email .ic { background: var(--brand); }
.cbtn.phone .ic { background: #3a352b; }
.cbtn.sms .ic { background: #7a7060; }
.contact-note { font-size: .82rem; color: var(--muted); margin-top: 4px; }

/* ---------- Modal (piece detail) ---------- */
.modal-backdrop { position: fixed; inset: 0; z-index: 60; background: rgba(28,22,14,.55); backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center; padding: 24px; opacity: 0; transition: opacity .2s; }
.modal-backdrop.open { display: flex; opacity: 1; }
.modal { background: var(--surface); border-radius: 10px; overflow: hidden; max-width: 940px; width: 100%; max-height: 90vh; display: flex; flex-direction: column; box-shadow: var(--shadow-lg); transform: translateY(10px); transition: transform .2s; }
.modal-backdrop.open .modal { transform: translateY(0); }
.modal-grid { display: grid; grid-template-columns: 1.08fr 1fr; overflow: auto; }
.modal-media { display: flex; flex-direction: column; min-width: 0; background: var(--brand-soft); }
.modal-img { position: relative; flex: 1; min-height: 360px; }
.modal-img img { width: 100%; height: 100%; object-fit: cover; }
.modal-img.car { display: flex; align-items: center; justify-content: center; }
.car-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; border-radius: 50%; border: 0; cursor: pointer; background: rgba(251,248,241,.92); color: var(--text); font-size: 24px; display: grid; place-items: center; box-shadow: var(--shadow); z-index: 2; }
.car-arrow:hover { background: #fff; }
.car-arrow.prev { left: 14px; } .car-arrow.next { right: 14px; }
.car-counter { position: absolute; bottom: 14px; left: 14px; z-index: 2; background: rgba(34,30,24,.6); color: #fff; font-size: .76rem; padding: 4px 11px; border-radius: 999px; }
.car-thumbs { display: flex; gap: 8px; padding: 12px 14px; overflow-x: auto; background: var(--surface); border-top: 1px solid var(--line); }
.car-thumb { flex: 0 0 auto; width: 62px; height: 50px; border-radius: 5px; overflow: hidden; border: 2px solid transparent; padding: 0; cursor: pointer; background: none; }
.car-thumb img { width: 100%; height: 100%; object-fit: cover; }
.car-thumb.active { border-color: var(--brand); }
.modal-info { padding: 34px 34px 30px; display: flex; flex-direction: column; gap: 14px; }
.modal-info h2 { font-family: var(--serif); font-weight: 500; font-size: 1.85rem; line-height: 1.12; letter-spacing: -.005em; margin: 6px 0 0; }
.modal-info .piece-ref { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: -2px; }
.modal-info .desc { color: var(--muted); margin: 4px 0 0; font-family: var(--serif); font-size: 1.08rem; font-style: italic; }
.modal-info .story p { color: var(--text); margin: 0 0 12px; font-size: .96rem; line-height: 1.6; }
.modal-info .story p:last-child { margin-bottom: 0; }
.modal-info .attrs { display: flex; flex-direction: column; gap: 2px; margin: 6px 0 4px; border-top: 1px solid var(--line); padding-top: 16px; }
.modal-info .attrs .row { display: flex; gap: 12px; font-size: .92rem; }
.modal-info .attrs .row .k { color: var(--muted); min-width: 92px; letter-spacing: .03em; }
.modal-info .attrs .row .v { color: var(--text); }
.modal-info .enquire-title { font-family: var(--serif); font-style: italic; font-size: 1.12rem; margin-top: 6px; }
.modal-close { position: absolute; top: 16px; right: 16px; z-index: 3; width: 38px; height: 38px; border-radius: 50%; border: 0; cursor: pointer; background: rgba(251,248,241,.92); color: var(--text); font-size: 20px; display: grid; place-items: center; box-shadow: var(--shadow); }
.modal-close:hover { background: #fff; }

/* ---------- misc ---------- */
.empty { text-align: center; padding: 60px 20px; color: var(--muted); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .about .wrap { grid-template-columns: 1fr; gap: 20px; }
  .site-footer .wrap { grid-template-columns: 1fr; }
  .modal-grid { grid-template-columns: 1fr; }
  .modal-media { max-height: 46vh; }
}
@media (max-width: 680px) {
  .wrap { padding: 0 20px; }
  .site-header .wrap { height: 64px; }
  .nav { position: fixed; inset: 64px 0 auto 0; background: var(--bg); flex-direction: column; align-items: flex-start; gap: 0; padding: 8px 20px 20px; border-bottom: 1px solid var(--line); transform: translateY(-120%); transition: transform .25s; box-shadow: var(--shadow); }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav a.enquire { border: 0; padding: 12px 0; border-radius: 0; }
  .nav a.enquire:hover { background: none; color: var(--brand-dark); }
  .nav-toggle { display: inline-grid; place-items: center; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); cursor: pointer; }
  .hero { padding: 48px 0 20px; }
  .work.big { grid-column: span 1; }
  .work.big .frame { aspect-ratio: 4 / 5; }
}

/* ============================================================
   Filter toolbar · favourites · reveal · lightbox  (v2 features)
   ============================================================ */

/* ---------- Filter / sort toolbar ---------- */
.toolbar { position: sticky; top: 74px; z-index: 30; background: color-mix(in srgb, var(--bg) 92%, transparent); backdrop-filter: saturate(150%) blur(10px); border-bottom: 1px solid var(--line); }
.tb-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 11px 0; flex-wrap: wrap; }
.fpills { display: flex; gap: 8px; flex-wrap: wrap; min-width: 0; }
.fpill { border: 1px solid var(--line); background: var(--surface); color: var(--muted); padding: 7px 15px; border-radius: 999px; font-size: .84rem; font-weight: 600; cursor: pointer; transition: color .15s, border-color .15s, background .15s; white-space: nowrap; }
.fpill:hover { color: var(--text); border-color: var(--muted); }
.fpill.active { background: var(--brand); border-color: var(--brand); color: #fff; }
.tb-right { display: flex; align-items: center; gap: 12px; }
.tb-search { display: flex; align-items: center; gap: 8px; background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px; color: var(--muted); }
.tb-search input { border: 0; outline: 0; background: transparent; color: var(--text); font: inherit; font-size: .9rem; width: 168px; }
.tb-sort { display: flex; align-items: center; gap: 8px; font-size: .8rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.tb-sort select { border: 1px solid var(--line); background: var(--surface); color: var(--text); border-radius: 999px; padding: 7px 12px 7px 14px; font: inherit; font-size: .85rem; cursor: pointer; }
.collection { scroll-margin-top: 148px; }
.empty { text-align: center; padding: 80px 20px; color: var(--muted); font-family: var(--serif); font-size: 1.2rem; }

/* ---------- Favourite heart on cards ---------- */
.work .frame .fav { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border-radius: 50%; border: 0; cursor: pointer; display: grid; place-items: center; background: rgba(34,30,24,.5); color: #fff; backdrop-filter: blur(3px); transition: transform .12s, background .15s; z-index: 3; padding: 0; }
.work .frame .fav svg { width: 18px; height: 18px; fill: none; }
.work .frame .fav:hover { background: rgba(34,30,24,.75); transform: scale(1.08); }
.work .frame .fav.on { background: #fff; color: var(--brand); }
.work .frame .fav.on svg { fill: var(--brand); stroke: var(--brand); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; transition: none; } }

/* ---------- Picks (favourites) bar ---------- */
.picks-bar { position: fixed; right: 22px; bottom: 22px; z-index: 55; display: none; flex-direction: column; align-items: flex-end; gap: 12px; }
.picks-bar.show { display: flex; }
.picks-toggle { display: inline-flex; align-items: center; gap: 9px; background: var(--brand); color: #fff; border: 0; border-radius: 999px; padding: 12px 20px; font-weight: 700; font-size: .95rem; cursor: pointer; box-shadow: var(--shadow-lg); }
.picks-toggle:hover { filter: brightness(1.06); }
.picks-toggle .heart svg { width: 18px; height: 18px; fill: #fff; stroke: #fff; }
.picks-toggle .n { background: rgba(255,255,255,.25); border-radius: 999px; padding: 1px 9px; font-size: .85rem; }
.picks-pop { display: none; width: 330px; max-width: 84vw; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-lg); padding: 18px 18px 16px; }
.picks-bar.open .picks-pop { display: block; }
.picks-head { font-family: var(--serif); font-weight: 500; font-size: 1.2rem; margin-bottom: 12px; }
.picks-head span { color: var(--muted); font-size: .9rem; }
.picks-list { list-style: none; margin: 0 0 14px; padding: 0; max-height: 210px; overflow-y: auto; }
.picks-list li { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: .92rem; }
.picks-list li:last-child { border-bottom: 0; }
.picks-rm { border: 0; background: none; color: var(--muted); font-size: 1.2rem; cursor: pointer; line-height: 1; padding: 0 2px; }
.picks-rm:hover { color: var(--brand); }
.picks-cta { font-size: .85rem; color: var(--muted); margin-bottom: 10px; }
.picks-pop .contact-buttons { gap: 8px; }
.picks-pop .cbtn { padding: 9px 14px; font-size: .85rem; }

/* ---------- Modal favourite toggle ---------- */
.modal-fav { display: inline-flex; align-items: center; gap: 9px; align-self: flex-start; background: none; border: 1px solid var(--line); color: var(--text); border-radius: 999px; padding: 9px 16px; font: inherit; font-size: .88rem; font-weight: 600; cursor: pointer; transition: border-color .15s, color .15s; margin-top: 2px; }
.modal-fav svg { width: 17px; height: 17px; fill: none; }
.modal-fav:hover { border-color: var(--brand); }
.modal-fav.on { border-color: var(--brand); color: var(--brand); }
.modal-fav.on svg { fill: var(--brand); stroke: var(--brand); }
.modal-fav .lbl-on { display: none; }
.modal-fav.on .lbl-off { display: none; }
.modal-fav.on .lbl-on { display: inline; }

/* ---------- Lightbox (full-screen zoom) ---------- */
.modal-img.car img { cursor: zoom-in; }
.lightbox { position: fixed; inset: 0; z-index: 80; background: rgba(10,8,6,.93); display: none; align-items: center; justify-content: center; padding: 20px; cursor: zoom-out; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 96vw; max-height: 92vh; object-fit: contain; border-radius: 4px; box-shadow: 0 20px 80px rgba(0,0,0,.6); transition: transform .25s ease; cursor: zoom-in; }
.lightbox.zoom { overflow: auto; cursor: zoom-out; }
.lightbox.zoom img { transform: scale(1.85); cursor: zoom-out; }
.lb-close { position: fixed; top: 18px; right: 22px; width: 44px; height: 44px; border-radius: 50%; border: 0; background: rgba(255,255,255,.16); color: #fff; font-size: 26px; cursor: pointer; z-index: 2; display: grid; place-items: center; }
.lb-close:hover { background: rgba(255,255,255,.28); }

/* ---------- Responsive tweaks for the toolbar ---------- */
@media (max-width: 680px) {
  .toolbar { top: 64px; }
  .collection { scroll-margin-top: 132px; }
  .tb-inner { padding: 10px 0; gap: 10px; }
  .fpills { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 2px; scrollbar-width: none; }
  .fpills::-webkit-scrollbar { display: none; }
  .tb-right { width: 100%; justify-content: space-between; }
  .tb-search { flex: 1; }
  .tb-search input { width: 100%; }
  .picks-bar { right: 14px; bottom: 14px; left: 14px; align-items: stretch; }
  .picks-toggle { justify-content: center; }
  .picks-pop { width: 100%; max-width: none; }
}

/* ---------- Video: card badge · watch button · lightbox video ---------- */
.work .frame .vidbadge { position: absolute; bottom: 14px; left: 14px; display: inline-flex; align-items: center; gap: 5px; background: rgba(34,30,24,.62); color: #fff; font-size: .72rem; font-weight: 600; padding: 4px 10px 4px 8px; border-radius: 999px; backdrop-filter: blur(3px); }
.work .frame .vidbadge svg { width: 11px; height: 11px; }
.modal-img .watch { position: absolute; bottom: 14px; left: 14px; z-index: 2; display: inline-flex; align-items: center; gap: 7px; background: rgba(34,30,24,.74); color: #fff; border: 0; border-radius: 999px; padding: 9px 15px; font: inherit; font-size: .85rem; font-weight: 600; cursor: pointer; backdrop-filter: blur(4px); transition: background .15s; }
.modal-img .watch:hover { background: rgba(34,30,24,.92); }
.modal-img .watch svg { width: 14px; height: 14px; }
.modal-img .car-counter { left: auto; right: 14px; }  /* move counter aside for the watch button */
.lb-body { display: contents; }
.lightbox video { max-width: 96vw; max-height: 92vh; border-radius: 4px; box-shadow: 0 20px 80px rgba(0,0,0,.6); background: #000; }

/* ============================================================
   Browse features: New badge · share · more-like · recently viewed
   ============================================================ */
.work .frame .feat.newtag { background: var(--brand); color: #fff; font-style: normal; font-weight: 700; letter-spacing: .02em; }

/* share row in modal */
.share-row { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); }
.share-lbl { font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-right: 2px; }
.sh-btn { display: inline-flex; align-items: center; gap: 6px; border: 1px solid var(--line); background: var(--surface); color: var(--text); border-radius: 999px; padding: 7px 13px; font: inherit; font-size: .82rem; font-weight: 600; cursor: pointer; text-decoration: none; transition: border-color .15s; }
.sh-btn:hover { border-color: var(--text); }
.sh-btn svg { width: 14px; height: 14px; }
.sh-btn.done { border-color: var(--brand); color: var(--brand); }

/* more like this (in modal, full width under the grid) */
.more-like { padding: 22px 34px 30px; border-top: 1px solid var(--line); }
.ml-head { font-family: var(--serif); font-weight: 500; font-size: 1.2rem; margin-bottom: 16px; }
.rec-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.rec-card { border: 0; background: none; padding: 0; cursor: pointer; text-align: left; display: flex; flex-direction: column; gap: 8px; }
.rec-img { display: block; aspect-ratio: 1 / 1; border-radius: 8px; overflow: hidden; background: var(--brand-soft); }
.rec-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.rec-card:hover .rec-img img { transform: scale(1.06); }
.rec-name { font-family: var(--serif); font-size: .92rem; color: var(--text); line-height: 1.25; }

/* recently viewed section */
.recently { padding: 44px 0 10px; }
.recently .rv-head { display: flex; flex-direction: column; gap: 10px; padding-bottom: 22px; border-bottom: 1px solid var(--line); margin-bottom: 28px; }
.recently .rv-head h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin: 0; }
.rv-row { display: grid; grid-template-columns: repeat(8, 1fr); gap: 16px; }

@media (max-width: 860px) {
  .more-like { padding: 20px 22px 26px; }
  .rec-row { grid-template-columns: repeat(3, 1fr); }
  .rv-row { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 560px) {
  .rec-row { grid-template-columns: repeat(2, 1fr); }
  .rv-row { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Leave a review (Netlify Forms) ---------- */
.leave-review { padding: 40px 0 20px; }
.leave-review .lr-head { padding-bottom: 22px; border-bottom: 1px solid var(--line); margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.leave-review .lr-head h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin: 0; }
.leave-review .lr-sub { color: var(--muted); max-width: 52ch; margin: 0; }
.lr-form { max-width: 620px; display: flex; flex-direction: column; gap: 16px; }
.lr-form .hp { position: absolute; left: -5000px; }
.lr-form label { display: flex; flex-direction: column; gap: 7px; font-size: .82rem; font-weight: 600; letter-spacing: .03em; text-transform: uppercase; color: var(--muted); }
.lr-form label span { text-transform: none; font-weight: 400; }
.lr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lr-form input, .lr-form textarea, .lr-form select { font: inherit; font-size: 1rem; text-transform: none; letter-spacing: normal; font-weight: 400; color: var(--text); background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 11px 14px; }
.lr-form input:focus, .lr-form textarea:focus, .lr-form select:focus { outline: 2px solid var(--brand-soft); border-color: var(--brand); }
.lr-form textarea { resize: vertical; min-height: 96px; }
.lr-rating { max-width: 200px; }
.lr-submit { align-self: flex-start; background: var(--brand); color: #fff; border: 0; border-radius: 999px; padding: 12px 28px; font: inherit; font-size: .95rem; font-weight: 700; cursor: pointer; transition: filter .15s; margin-top: 4px; }
.lr-submit:hover { filter: brightness(1.07); }
.lr-thanks { font-family: var(--serif); font-size: 1.25rem; color: var(--text); padding: 18px 0; }
@media (max-width: 560px) { .lr-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Ordering: price · order button · order modal · colour swatches
   ============================================================ */
.work .cap .price { font-family: var(--serif); font-weight: 600; font-size: 1.02rem; color: var(--brand-dark); white-space: nowrap; }

/* order block inside the piece modal */
.order-block { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px; margin: 6px 0 2px; padding: 16px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper-2); }
.order-block .order-price { font-family: var(--serif); font-weight: 600; font-size: 1.5rem; color: var(--text); }
.order-btn { background: var(--brand); color: #fff; border: 0; border-radius: 999px; padding: 11px 24px; font: inherit; font-weight: 700; font-size: .95rem; cursor: pointer; transition: filter .15s; }
.order-btn:hover { filter: brightness(1.07); }
.order-block .order-hint { flex-basis: 100%; font-size: .8rem; color: var(--muted); }

/* order modal (reuses .modal-backdrop) */
.order-card { position: relative; background: var(--surface); border-radius: 12px; max-width: 540px; width: 100%; max-height: 90vh; overflow: auto; padding: 30px 30px 26px; box-shadow: var(--shadow-lg); }
.order-head { margin-bottom: 18px; }
.order-head h2 { font-family: var(--serif); font-weight: 500; font-size: 1.5rem; margin: 6px 0 2px; }
.order-head .order-price { font-family: var(--serif); font-weight: 600; font-size: 1.6rem; color: var(--brand-dark); }
#orderForm { display: flex; flex-direction: column; gap: 16px; }
#orderForm .hp { position: absolute; left: -5000px; }
.ord-field { display: flex; flex-direction: column; gap: 7px; }
.ord-field > label { font-size: .8rem; font-weight: 600; letter-spacing: .03em; text-transform: uppercase; color: var(--muted); }
.ord-field > label span { text-transform: none; font-weight: 400; }
.ord-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
#orderForm input[type=text], #orderForm textarea { font: inherit; font-size: 1rem; color: var(--text); background: var(--bg); border: 1px solid var(--line); border-radius: 10px; padding: 11px 14px; }
#orderForm input:focus, #orderForm textarea:focus { outline: 2px solid var(--brand-soft); border-color: var(--brand); }
#orderForm textarea { resize: vertical; min-height: 72px; }

/* colour swatches */
.swatches { display: flex; flex-wrap: wrap; gap: 10px; }
.swatch { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--line); background: var(--bg); border-radius: 999px; padding: 6px 12px 6px 7px; font: inherit; font-size: .84rem; color: var(--text); cursor: pointer; transition: border-color .15s, box-shadow .15s; }
.swatch:hover { border-color: var(--muted); }
.swatch.sel { border-color: var(--brand); box-shadow: 0 0 0 1px var(--brand); }
.swatch .sw-dot { width: 20px; height: 20px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(0,0,0,.12); flex: 0 0 auto; }
.order-note { font-size: .84rem; color: var(--muted); line-height: 1.5; }
.order-submit { align-self: flex-start; }
.order-thanks { font-family: var(--serif); font-size: 1.25rem; color: var(--text); padding: 10px 0; }
@media (max-width: 560px) { .ord-grid { grid-template-columns: 1fr; } .order-card { padding: 24px 20px 22px; } }

/* Layered dimensional logo — the "print layer" gaps take the page background so they read on any theme */
.mark .layers line { stroke: var(--bg); }

/* ============================================================
   Premium landing (business) sections
   ============================================================ */
.lp-overline { font-family: var(--logo); font-weight: 600; font-size: .72rem; letter-spacing: .28em; text-transform: uppercase; color: var(--brand); }
.grad-gold { background: linear-gradient(180deg,#f7d089,#d8992f); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.arrow { width: 16px; height: 16px; display: inline-block; vertical-align: middle; }
.btn { display: inline-flex; align-items: center; gap: 9px; font-family: var(--logo); font-weight: 600; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; padding: 14px 22px; border-radius: 10px; transition: transform .15s, box-shadow .2s, border-color .2s, color .2s; cursor: pointer; }
.btn svg { width: 16px; height: 16px; }
.btn-gold { background: linear-gradient(180deg,#f2c079,#dd9a3c); color: #1a1206; box-shadow: 0 10px 26px rgba(224,167,95,.25); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(224,167,95,.36); }
.btn-ghost { border: 1px solid var(--line); color: var(--text); background: rgba(255,255,255,.02); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand-dark); transform: translateY(-2px); }
.btn.sm { padding: 11px 18px; font-size: .74rem; }

/* Hero */
.hero2 { padding: 60px 0 48px; position: relative; overflow: hidden; }
.hero2::after { content: ""; position: absolute; right: -8%; top: -20%; width: 55%; height: 130%; background: radial-gradient(closest-side, rgba(224,167,95,.07), transparent 70%); pointer-events: none; }
.hero2-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.hero2-title { font-family: var(--logo); font-weight: 800; text-transform: uppercase; letter-spacing: .01em; line-height: .96; font-size: clamp(2.7rem, 6.4vw, 5rem); margin: 14px 0 20px; }
.hero2-sub { color: var(--muted); font-size: 1.02rem; max-width: 36ch; line-height: 1.7; }
.hero2-cta { display: flex; gap: 14px; margin: 26px 0 30px; flex-wrap: wrap; }
.hero2-feats { display: flex; gap: 22px; flex-wrap: wrap; }
.hero2-feats span { display: inline-flex; align-items: center; gap: 8px; font-family: var(--logo); font-weight: 600; font-size: .64rem; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); }
.hero2-feats svg { width: 17px; height: 17px; color: var(--brand); }
.hero2-emblem { display: flex; justify-content: center; align-items: center; }
.podium { position: relative; width: min(430px, 88%); aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; }
.podium img { width: 80%; height: auto; filter: drop-shadow(0 34px 64px rgba(0,0,0,.65)); position: relative; z-index: 2; transform: translateY(-8%); }
.podium::before { content: ""; position: absolute; bottom: 13%; left: 50%; transform: translateX(-50%); width: 84%; height: 27%; border-radius: 50%; background: radial-gradient(closest-side, #211a11, #0d0b08 78%, transparent); box-shadow: 0 24px 54px rgba(0,0,0,.6); }
.podium::after { content: ""; position: absolute; bottom: 15%; left: 50%; transform: translateX(-50%); width: 72%; height: 21%; border-radius: 50%; border: 2px solid rgba(240,180,90,.5); box-shadow: 0 0 34px rgba(240,180,90,.34); }

/* Section scaffolding */
.lp-sec { padding: 62px 0; border-top: 1px solid var(--line); }
.lp-h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(1.6rem, 3.4vw, 2.5rem); line-height: 1.1; margin: 10px 0 0; }
.lp-head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 28px; }
.lp-viewall { display: inline-flex; align-items: center; gap: 8px; font-family: var(--logo); font-weight: 600; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--brand); white-space: nowrap; }
.lp-viewall svg { width: 15px; height: 15px; }

/* Services */
.lp-services { background: linear-gradient(180deg, rgba(255,255,255,.015), transparent); }
.svc-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 46px; align-items: center; }
.svc-intro p { color: var(--muted); line-height: 1.75; margin: 16px 0 22px; max-width: 42ch; }
.svc-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.svc-card { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 22px; transition: transform .18s, border-color .18s; }
.svc-card:hover { transform: translateY(-4px); border-color: rgba(224,167,95,.42); }
.svc-ico { width: 44px; height: 44px; border-radius: 11px; display: flex; align-items: center; justify-content: center; background: var(--brand-soft); border: 1px solid rgba(224,167,95,.3); margin-bottom: 14px; }
.svc-ico svg { width: 22px; height: 22px; color: var(--brand); }
.svc-card h3 { font-family: var(--logo); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; font-size: .82rem; margin: 0 0 7px; }
.svc-card p { color: var(--muted); font-size: .85rem; line-height: 1.6; margin: 0; }

/* Featured strip */
.feat-strip { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(212px, 1fr); gap: 16px; overflow-x: auto; padding-bottom: 10px; scroll-snap-type: x mandatory; }
.feat-card { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 3 / 4; background: var(--surface); border: 1px solid var(--line); scroll-snap-align: start; display: block; }
.feat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.feat-card:hover img { transform: scale(1.06); }
.feat-cap { position: absolute; inset: auto 0 0 0; padding: 15px 16px; background: linear-gradient(180deg, transparent, rgba(0,0,0,.88)); display: flex; justify-content: space-between; align-items: flex-end; gap: 10px; }
.feat-cap h3 { font-family: var(--serif); font-size: 1rem; margin: 0; line-height: 1.15; }
.feat-cap span { display: block; font-size: .7rem; color: var(--muted); margin-top: 2px; }
.feat-cap .arrow { color: var(--brand); flex: 0 0 auto; }

/* Process */
.proc-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 42px; align-items: center; }
.proc-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.proc-step .num { font-family: var(--logo); font-weight: 700; color: var(--brand); font-size: .82rem; letter-spacing: .12em; }
.proc-ico { width: 38px; height: 38px; margin: 12px 0 10px; color: var(--brand); }
.proc-ico svg { width: 100%; height: 100%; }
.proc-step h3 { font-family: var(--logo); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; font-size: .76rem; margin: 0 0 6px; }
.proc-step p { color: var(--muted); font-size: .8rem; line-height: 1.55; margin: 0; }

/* Gallery intro heading */
.lp-gallery-head { padding: 58px 0 4px; text-align: center; }
.lp-gallery-head p { color: var(--muted); max-width: 54ch; margin: 12px auto 0; }

/* Header quote CTA */
.header-cta { display: inline-flex; align-items: center; gap: 8px; font-family: var(--logo); font-weight: 600; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; padding: 10px 16px; border-radius: 9px; background: linear-gradient(180deg,#f2c079,#dd9a3c); color: #1a1206; box-shadow: 0 8px 20px rgba(224,167,95,.22); transition: transform .15s; }
.header-cta svg { width: 14px; height: 14px; }
.header-cta:hover { transform: translateY(-1px); }

@media (max-width: 900px) {
  .hero2-grid { grid-template-columns: 1fr; } .hero2-emblem { order: -1; }
  .svc-grid, .proc-grid { grid-template-columns: 1fr; }
  .svc-cards { grid-template-columns: 1fr 1fr; }
  .proc-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .svc-cards, .proc-steps { grid-template-columns: 1fr; }
  .header-cta { display: none; }
}

/* ============================================================
   Intro splash — full logo that glides onto the header logo
   ============================================================ */
.splash {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(1100px 600px at 50% 26%, rgba(224,167,95,.10), transparent 62%),
    linear-gradient(180deg, #151310 0%, #0b0a08 100%);
  opacity: 1; transition: opacity .8s ease; will-change: opacity;
  animation: splashSafety 0s linear 4.5s forwards;   /* fail-safe if JS never runs */
}
.splash.done { opacity: 0; pointer-events: none; }
.splash-inner { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.splash-mark {
  height: min(36vh, 260px); width: auto; transform-origin: center center; will-change: transform;
  filter: drop-shadow(0 26px 60px rgba(0,0,0,.6));
  animation: splashRise .8s cubic-bezier(.2,.7,.2,1) both;
}
.splash-word { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; animation: splashFade .9s ease .15s both; }
.splash-word .name { font-family: var(--logo); font-weight: 700; text-transform: uppercase; letter-spacing: .16em; font-size: clamp(1.3rem, 3.4vw, 2.1rem); }
.splash-word .kicker { font-family: var(--logo); font-weight: 600; text-transform: uppercase; letter-spacing: .3em; font-size: .62rem; color: var(--muted); }
.splash-word .kicker .k-gold { color: var(--brand); }
@keyframes splashRise { from { opacity: 0; transform: translateY(16px) scale(.96); } to { opacity: 1; transform: none; } }
@keyframes splashFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes splashSafety { to { opacity: 0; visibility: hidden; pointer-events: none; } }
@media (prefers-reduced-motion: reduce) { .splash-mark, .splash-word { animation: none; } }
