/* =============================================================
   Robbie Brown's Photography — shared stylesheet
   Minimalist editorial style, faithful to the original Shopify site.
   Typeface: Assistant (Shopify Dawn default). Swap --font easily below.
   ============================================================= */

:root {
  /* Taste theme typography: Petrona headings + Domine body */
  --font: "Domine", Georgia, "Times New Roman", serif;
  --font-head: "Petrona", Georgia, "Times New Roman", serif;
  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --line: #e6e3df;
  --bg: #ffffff;
  --bg-alt: #f6f4f1;
  --accent: #1a1a1a;
  --maxw: 1240px;
  --gutter: clamp(1.1rem, 4vw, 3rem);
  --radius: 2px;

  /* ---- adjustable design knobs (the controls panel writes these) ---- */
  --font-size-base: 17px;     /* body text size */
  --line-height-base: 1.7;    /* body line spacing */
  --head-weight: 600;         /* heading boldness (400–700) */
  --head-tracking: 0.005em;   /* heading letter-spacing */
  --brand-size: 1.95rem;      /* wordmark size in the header */
  --header-pad: 1.25rem;      /* header height (top/bottom padding) */
  --space-section: clamp(3rem, 7vw, 6rem); /* vertical gap between sections */
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: var(--head-weight); line-height: 1.15; margin: 0 0 0.5em; letter-spacing: var(--head-tracking); }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.3rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 400; }
p { margin: 0 0 1.1em; color: var(--ink-soft); }
.container { max-width: var(--maxw); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.container.wide { max-width: 1680px; }
.narrow { max-width: 760px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.85em 1.9em;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.btn:hover { background: transparent; color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--light { border-color: #fff; background: transparent; color: #fff; }
.btn--light:hover { background: #fff; color: var(--ink); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

/* ---------- header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(8px);
}
/* Three-column header: menu icon (left) · centered wordmark · search + book (right) */
.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: var(--header-pad) 2rem;
}
.brand {
  grid-column: 2;
  justify-self: center;
  text-align: center;
  font-family: var(--font-head);
  font-size: var(--brand-size);
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  color: var(--ink);
}

/* keep header items from overflowing / hitting the edge or colliding */
.nav-left, .nav-right { min-width: 0; }
/* wordmark scales with viewport so it shrinks before it can touch the side buttons;
   max-width + ellipsis are a hard safety net so it can never overlap them. */
.brand { min-width: 0; overflow: hidden; text-overflow: ellipsis; font-size: clamp(0.95rem, 2.4vw, var(--brand-size)); max-width: calc(100vw - 12rem); }

/* left: menu icon -> nav dropdown */
.nav-left { grid-column: 1; justify-self: start; position: relative; }
.nav-menu-btn {
  background: none; border: 0; padding: 4px; cursor: pointer; color: var(--ink-soft);
  display: inline-flex; align-items: center; border-radius: 4px; transition: color .2s, background .2s;
}
.nav-menu-btn:hover, .nav-menu-btn[aria-expanded="true"] { color: var(--ink); background: var(--bg-alt); }
.nav-menu-btn svg { width: 26px; height: 26px; display: block; }
.nav-links {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 230px;
  background: #fff; border: 1px solid var(--line); box-shadow: 0 12px 34px rgba(0,0,0,0.10);
  padding: 0.35rem; display: none; z-index: 60; list-style: none; margin: 0;
}
.nav-links.open { display: block; }
.nav-links li { width: 100%; }
.nav-links a {
  display: block; font-family: var(--font); font-size: 1.05rem; color: var(--ink);
  padding: 0.62rem 0.85rem; transition: background .15s;
}
.nav-links a:hover { background: var(--bg-alt); }
.nav-links a.active { font-weight: 600; box-shadow: inset 3px 0 0 var(--ink); }

/* right: visible search icon + book CTA */
.nav-right { grid-column: 3; justify-self: end; position: relative; display: flex; align-items: center; gap: 0.9rem; }
.nav-search {
  background: none; border: 0; padding: 5px; cursor: pointer; color: var(--ink-soft);
  display: inline-flex; align-items: center; border-radius: 50%; transition: color .2s, background .2s;
}
.nav-search:hover { color: var(--ink); background: var(--bg-alt); }
.nav-search svg { width: 22px; height: 22px; display: block; }
.nav-cta {
  font-family: var(--font);
  font-size: 0.96rem;
  border: 1px solid var(--ink);
  color: var(--ink);
  padding: 0.45em 1em;
  white-space: nowrap;
  transition: background .2s, color .2s;
}
.nav-cta:hover { background: var(--ink); color: #fff; }
.nav-cta .cta-short { display: none; }

/* legal / privacy page */
.legal { max-width: 1000px; }
.legal p { margin: 0 0 1rem; line-height: 1.7; }
.legal h2 { font-size: clamp(1.2rem, 2vw, 1.5rem); margin: 1.8rem 0 0.5rem; }
.legal ul { margin: 0 0 1rem 1.2rem; }
.legal li { margin: 0 0 0.4rem; line-height: 1.6; }

@media (max-width: 600px) {
  .nav { gap: 0.5rem; }
  .brand { font-size: 0.92rem; }
  .nav-cta { padding: 0.4em 0.65em; font-size: 0.78rem; }
  .nav-right { gap: 0.4rem; }
  .nav-menu-btn svg { width: 23px; height: 23px; }
  .nav-search svg { width: 20px; height: 20px; }
}
@media (max-width: 480px) {
  .brand { font-size: 0.82rem; letter-spacing: 0; }
  .nav-cta { padding: 0.38em 0.7em; font-size: 0.78rem; }
  .nav-cta .cta-full { display: none; }
  .nav-cta .cta-short { display: inline; }
}
@media (max-width: 380px) {
  .brand { font-size: 0.72rem; }
  .nav-cta { padding: 0.36em 0.5em; font-size: 0.7rem; }
  .nav-search { padding: 3px; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* image stays in place while the page scrolls over it */
}
.home-title { font-size: clamp(2rem, 4.2vw, 3rem); font-weight: 700; margin-bottom: 1.05rem; }
/* full-width black divider lines bracketing the home intro, with breathing room above/below */
.home-intro { border-top: 2px solid #000; border-bottom: 2px solid #000; margin: clamp(1.25rem, 3vw, 2.25rem) 0; padding: clamp(1.8rem, 3.5vw, 2.8rem) 0; }
.home-intro .narrow { max-width: 900px; }
/* centered copyright note bracketed by lines, above the footer */
.note-bar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: clamp(2rem, 5vw, 3.5rem) 0; }
.note-bar p { text-align: center; max-width: 64ch; margin: 0 auto; color: var(--ink-soft); }
.hero .container { position: relative; z-index: 2; padding-bottom: clamp(2.5rem, 6vw, 5rem); }
.hero h1 { color: #fff; max-width: 18ch; }
.hero p { color: rgba(255,255,255,0.9); max-width: 46ch; font-size: 1.05rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.4rem; }

.page-hero {
  background: var(--bg);
  padding: clamp(1.6rem, 3.5vw, 2.6rem) 0;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}
.page-hero h1 { margin-bottom: 0.3em; }
.page-hero p { max-width: 60ch; margin-bottom: 0; }

/* ---------- sections ---------- */
section { padding: var(--space-section) 0; }
.section-head { max-width: 60ch; margin-bottom: clamp(1.8rem, 4vw, 3rem); }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- grids / galleries ---------- */
.grid { display: grid; gap: clamp(0.8rem, 1.6vw, 1.4rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

/* Collection card: landscape image, title centered below (matches original) */
.tile { display: block; }
.tile-img { display: block; aspect-ratio: 3/2; overflow: hidden; background: var(--bg-alt); }
.tile-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.tile:hover .tile-img img { transform: scale(1.03); }
.tile h3 {
  text-align: center; margin: 0.9rem 0 0; color: var(--ink); font-weight: 600;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
}
.tile h3::after { content: " \2192"; }
.tile-cap { display: contents; }

/* placeholder tiles for portraits not yet added */
.ph {
  display: flex; align-items: center; justify-content: center;
  width: 100%; aspect-ratio: 3/2;
  background: repeating-linear-gradient(45deg, #f0ede9, #f0ede9 12px, #eae6e1 12px, #eae6e1 24px);
  color: #9b958c; text-align: center; padding: 1rem;
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.tile-img .ph { aspect-ratio: auto; height: 100%; }

/* ---------- feature rows (projects / about) ---------- */
.row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.row + .row { margin-top: clamp(2.5rem, 6vw, 5rem); }
.row.reverse .row-media { order: 2; }
@media (max-width: 800px) { .row { grid-template-columns: 1fr; } .row.reverse .row-media { order: 0; } }
.row-media img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.row-body h2 { font-size: clamp(1.3rem, 2.6vw, 1.9rem); }

/* ---------- projects (bordered overlapping cards) ---------- */
.project-banner {
  height: clamp(360px, 55vh, 560px);
  background-size: cover; background-position: center;
}
/* default: text card LEFT (narrow), image RIGHT (wide), card overlaps image */
.project { display: grid; grid-template-columns: 0.82fr 1.18fr; align-items: start; }
.project + .project { margin-top: clamp(3rem, 8vw, 7rem); }
.project__img { order: 2; transform: translateY(-0.33in); }
.project__img img { width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block; border: 2px solid #000; }
.project__card {
  order: 1; position: relative; z-index: 2; background: #fff; border: 2px solid #000;
  padding: clamp(2.2rem, 3.6vw, 3.8rem);
  margin-right: -2rem;
}
.project__card h2 { font-size: clamp(1.35rem, 2.4vw, 2rem); font-weight: 700; margin-bottom: 0.6em; }
.project__card p:last-child { margin-bottom: 0; }
/* reverse: image LEFT (wide), text card RIGHT (narrow) */
.project--reverse { grid-template-columns: 1.18fr 0.82fr; }
.project--reverse .project__img { order: 1; }
.project--reverse .project__card { order: 2; margin-right: 0; margin-left: -2rem; }
/* top & bottom projects: slightly wider image */
.project:first-of-type { grid-template-columns: 0.59fr 1.41fr; }
.project--reverse:last-of-type { grid-template-columns: 1.41fr 0.59fr; }
@media (max-width: 820px) {
  .project, .project--reverse,
  .project:first-of-type, .project--reverse:last-of-type { grid-template-columns: 1fr; }
  .project__img { order: 0 !important; transform: none; }
  .project__card { order: 0 !important; margin: -2.5rem 1rem 0 1rem !important; }
}

/* ---------- packages / cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 860px) { .cards { grid-template-columns: 1fr; } }
.card {
  border: 1px solid var(--line); padding: 2rem 1.8rem; background: #fff;
  display: flex; flex-direction: column;
}
.card h3 { margin-bottom: 0.2em; }
.card .price { font-size: 1.6rem; font-weight: 300; color: var(--ink); margin: 0.2em 0 0.6em; }
.card ul { list-style: none; padding: 0; margin: 0 0 1.6rem; }
.card li { padding: 0.4em 0; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: 0.95rem; }
.card .btn { margin-top: auto; align-self: flex-start; }

/* ---------- band (call to action) ---------- */
.band { background: var(--ink); color: #fff; text-align: center; }
.band h2 { color: #fff; }
.band p { color: rgba(255,255,255,0.82); }

/* ---------- forms ---------- */
.form { max-width: 640px; }
.form label { display: block; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); margin: 1.1rem 0 0.4rem; }
.form input, .form select, .form textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 0.75rem 0.9rem; border: 1px solid var(--line); background: #fff; border-radius: var(--radius);
}
.form input:focus, .form select:focus, .form textarea:focus { outline: 2px solid var(--ink); outline-offset: -1px; }
.form textarea { min-height: 140px; resize: vertical; }
.form .btn { margin-top: 1.6rem; border: 0; }
.form-note { font-size: 0.85rem; color: var(--ink-soft); }

/* ---------- embed (scheduler) ---------- */
.embed-wrap { border: 1px solid var(--line); background: var(--bg-alt); min-height: 640px; }
.embed-placeholder {
  min-height: 640px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 2rem; color: var(--ink-soft);
}
.embed-placeholder .eyebrow { margin-bottom: 1.4rem; }

/* ---------- about strip ---------- */
.about { background: var(--bg-alt); }
.about .row-media img { aspect-ratio: 4/5; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: clamp(2.5rem, 5vw, 4rem) 0 2rem; background: #fff; }
.footer-grid { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; }
.footer-grid h4 { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink); margin-bottom: 0.8rem; }
.footer-grid a { display: block; color: var(--ink-soft); font-size: 0.95rem; padding: 0.18rem 0; }
.footer-grid a:hover { color: var(--ink); }
.footer-brand { max-width: 320px; }
.footer-brand p { font-size: 0.92rem; }
.copyright { margin-top: 2.5rem; padding-top: 1.4rem; border-top: 1px solid var(--line); font-size: 0.82rem; color: var(--ink-soft); display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; justify-content: space-between; }

/* ---------- print gallery (grid: image + caption below) ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2.4rem) clamp(1rem, 2vw, 1.6rem);
}
@media (max-width: 1000px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
.gallery-item { cursor: pointer; text-align: center; }
.gallery-item .gi-img { aspect-ratio: 3/2; overflow: hidden; background: var(--bg-alt); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.03); }
.gi-cap { padding-top: 0.85rem; }
.gi-cap .t { font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; line-height: 1.25; color: var(--ink); }
.gi-cap .p { font-size: 0.95rem; color: var(--ink-soft); margin-top: 0.25rem; }

.gallery-empty {
  border: 1px dashed var(--line); padding: 3rem 1.5rem; text-align: center; color: var(--ink-soft);
  background: var(--bg-alt);
}

/* ---------- lightbox ---------- */
.lb { position: fixed; inset: 0; z-index: 200; display: none; }
.lb.open { display: block; }
.lb-backdrop { position: absolute; inset: 0; background: rgba(15,14,13,0.9); }
.lb-panel {
  position: absolute; inset: clamp(0px, 3vh, 30px) clamp(0px, 3vw, 40px);
  background: #fff; overflow: hidden;
  display: grid; grid-template-columns: 1.5fr 1fr;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}
@media (max-width: 860px) {
  .lb-panel { inset: 0; grid-template-columns: 1fr; grid-template-rows: auto 1fr; overflow-y: auto; }
}
/* ---------- portraits mosaic (editorial collage) ----------
   3 cols x 6 rows = 18 cells, filled exactly by: 1 big (2x2),
   1 tall (1x2) for the vertical shot, and 12 singles -> flush
   rectangle, no gaps. Cells are ~3:2 so the 3:2 photos show in
   full (big is also 3:2; only the vertical tall has a slight crop). */
.pmosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: min(20vw, 344px);
  gap: clamp(0.5rem, 1vw, 1rem);
}
.pmosaic .gallery-item { cursor: pointer; overflow: hidden; }
.pmosaic .gi-img { width: 100%; height: 100%; aspect-ratio: auto; overflow: hidden; background: var(--bg-alt); }
.pmosaic .gi-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.pmosaic .gallery-item:hover img { transform: scale(1.04); }
.pmosaic .tall { grid-row: span 2; }
.pmosaic .big  { grid-column: span 2; grid-row: span 2; }
@media (max-width: 900px) {
  /* 2-col uniform grid: 14 items = 7 full rows, still flush */
  .pmosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
  .pmosaic .gallery-item, .pmosaic .big, .pmosaic .tall { grid-column: auto; grid-row: auto; }
  .pmosaic .gi-img { aspect-ratio: 3/2; }
}
@media (max-width: 560px) {
  /* single column, natural ratios, nothing cropped */
  .pmosaic { grid-template-columns: 1fr; }
  .pmosaic .gi-img { aspect-ratio: auto; }
  .pmosaic .gi-img img { height: auto; }
}

/* image-only lightbox (portraits): single pane, no info column */
.lb-panel.solo { grid-template-columns: 1fr; }
.lb-panel.solo .lb-figure { padding: clamp(0.5rem, 1.5vw, 1.2rem); }
@media (max-width: 860px) { .lb-panel.solo { grid-template-rows: 1fr; } .lb-panel.solo .lb-figure { height: auto; min-height: 60vh; } }
.lb-figure { position: relative; background: #fff; display: flex; align-items: center; justify-content: center; min-height: 0; padding: clamp(1rem, 2.5vw, 2.5rem); }
.lb-figure img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
@media (max-width: 860px) { .lb-figure { height: 44vh; } }
.lb-close {
  position: absolute; top: 0.8rem; right: 0.8rem; z-index: 5;
  width: 40px; height: 40px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(0,0,0,0.55); color: #fff; font-size: 1.5rem; line-height: 1;
  display: flex; align-items: center; justify-content: center; transition: background .2s;
}
.lb-close:hover { background: rgba(0,0,0,0.85); }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
  background: #fff; border: 1px solid var(--line); color: var(--ink); font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center; transition: background .2s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.lb-nav:hover { background: var(--bg-alt); }
.lb-prev { left: 0.9rem; } .lb-next { right: 0.9rem; }
.lb-info { display: flex; flex-direction: column; min-height: 0; }
.lb-info-scroll { overflow-y: auto; padding: clamp(1.5rem, 2.6vw, 2.4rem); }
.lb-info h2 { margin: 0.15em 0 0.1em; }
.lb-info .eyebrow { margin-bottom: 0.4rem; }
.lb-loc { color: var(--ink-soft); letter-spacing: 0.03em; margin-bottom: 1rem; }
.lb-from { font-family: var(--font-head); font-size: 1.5rem; font-weight: 600; margin: 0 0 1.1rem; }
.lb-sub { font-size: 0.86rem; color: var(--ink-soft); margin: 0 0 0.6rem; }
.lb-note { font-size: 0.8rem; color: var(--ink-soft); margin-top: 0.8rem; }
.lb-actions {
  border-top: 1px solid var(--line); padding: 0.9rem clamp(1.5rem, 2.6vw, 2.4rem);
  display: flex; gap: 0.7rem; flex-wrap: wrap; background: #fff;
}
.lb-actions .btn { flex: 1 1 auto; text-align: center; }

/* pricing table (lightbox + prints page) */
.price-wrap { overflow-x: auto; border: 1px solid var(--line); }
.price-table { width: 100%; border-collapse: collapse; font-size: 0.84rem; }
.price-table th, .price-table td { padding: 0.5rem 0.65rem; text-align: right; white-space: nowrap; }
.price-table thead th {
  background: var(--bg-alt); font-family: var(--font); font-weight: 600; font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-soft); position: sticky; top: 0;
}
.price-table th:first-child, .price-table td:first-child { text-align: left; font-weight: 600; color: var(--ink); }
.price-table tbody tr:nth-child(odd) td, .price-table tbody tr:nth-child(odd) th:first-child { background: #faf9f7; }
.price-table tbody td { color: var(--ink); }

/* ---------- product detail page (/products/<handle>/) ---------- */
.pdp { display: grid; grid-template-columns: 1.45fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
@media (max-width: 820px) { .pdp { grid-template-columns: 1fr; } }
.pdp-img { background: var(--bg-alt); }
.pdp-img img { width: 100%; height: auto; display: block; }
.pdp-info .eyebrow a { color: inherit; border-bottom: 1px solid currentColor; }
.pdp-info h1 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin: 0.1em 0 0.15em; }
.pdp-loc { color: var(--ink-soft); letter-spacing: 0.03em; margin-bottom: 1rem; }
.pdp-from { font-family: var(--font-head); font-size: 1.5rem; font-weight: 600; margin: 0 0 1.1rem; }
.pdp-sub { font-size: 0.86rem; color: var(--ink-soft); margin: 0 0 0.6rem; }
.pdp-note { font-size: 0.8rem; color: var(--ink-soft); margin-top: 0.9rem; }
.pdp-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; margin: 1.3rem 0 0.4rem; }
.pdp-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: clamp(2rem,5vw,3.5rem); border-top: 1px solid var(--line); padding-top: 1.1rem; font-size: 0.92rem; }
.pdp-nav a { color: var(--ink-soft); } .pdp-nav a:hover { color: var(--ink); }
.pdp-nav .nx { text-align: right; margin-left: auto; }

/* collapsible "View sizes & pricing" (used in lightbox + product page) */
details.pricing { margin: 0.2rem 0 0.4rem; }
details.pricing > summary {
  list-style: none; cursor: pointer; display: inline-block;
  font-family: var(--font); font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.7em 1.4em; border: 1px solid var(--ink); color: var(--ink); background: #fff;
  transition: background .2s, color .2s;
}
details.pricing > summary::-webkit-details-marker { display: none; }
details.pricing > summary::marker { content: ""; }
details.pricing > summary:hover { background: var(--ink); color: #fff; }
details.pricing[open] > summary { margin-bottom: 0.9rem; }

/* ---------- search overlay ---------- */
.search-overlay { position: fixed; inset: 0; z-index: 300; display: none; }
.search-overlay.open { display: block; }
.search-overlay .so-backdrop { position: absolute; inset: 0; background: rgba(20,18,17,0.45); }
.search-panel {
  position: relative; z-index: 2; background: #fff; border-bottom: 1px solid var(--line);
  padding: clamp(1.4rem, 3vw, 2.2rem) 0; max-height: 88vh; overflow-y: auto;
}
.search-bar { display: flex; align-items: center; gap: 0.9rem; border-bottom: 2px solid var(--ink); padding-bottom: 0.5rem; }
.search-bar svg { width: 22px; height: 22px; color: var(--ink-soft); flex: none; }
.search-bar input {
  flex: 1; border: 0; background: none; color: var(--ink);
  font-family: var(--font-head); font-weight: 600; font-size: clamp(1.2rem, 3vw, 1.9rem);
}
.search-bar input::placeholder { color: #c3bdb4; }
.search-bar input:focus { outline: none; }
.search-close { background: none; border: 0; font-size: 1.7rem; line-height: 1; cursor: pointer; color: var(--ink-soft); }
.search-close:hover { color: var(--ink); }
.search-meta { margin: 1.1rem 0 0.4rem; font-size: 0.85rem; color: var(--ink-soft); }
.sr-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem 1.2rem; margin-top: 1rem; }
@media (max-width: 1000px) { .sr-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) { .sr-grid { grid-template-columns: repeat(2, 1fr); } }
.sr-item { text-align: center; cursor: pointer; }
.sr-item .gi-img { aspect-ratio: 3/2; overflow: hidden; background: var(--bg-alt); }
.sr-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.sr-item:hover img { transform: scale(1.03); }
.sr-item .t { font-family: var(--font-head); font-weight: 600; font-size: 0.98rem; margin-top: 0.5rem; color: var(--ink); }
.sr-item .l { font-size: 0.8rem; color: var(--ink-soft); }
.sr-section-label { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); margin: 1.4rem 0 0.2rem; }
/* predictive dropdown: two columns (suggested/collections/pages | prints) */
.sr-cols { display: grid; grid-template-columns: 0.9fr 1.25fr; gap: clamp(1.6rem, 4vw, 3.5rem); margin-top: 0.6rem; align-items: start; }
@media (max-width: 760px) { .sr-cols { grid-template-columns: 1fr; gap: 0.6rem; } }
.sr-list { display: flex; flex-direction: column; }
.sr-link { display: block; font-family: var(--font-head); font-weight: 600; font-size: 1.06rem; color: var(--ink); padding: 0.4rem 0; cursor: pointer; }
.sr-link:hover { text-decoration: underline; }
.sr-print { display: flex; align-items: center; gap: 0.85rem; padding: 0.4rem 0; }
.sr-print .thumb { width: 66px; height: 46px; flex: none; overflow: hidden; background: var(--bg-alt); }
.sr-print .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sr-print .meta { display: flex; flex-direction: column; line-height: 1.2; }
.sr-print .pt { font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; color: var(--ink); }
.sr-print .pl { font-size: 0.8rem; color: var(--ink-soft); margin-top: 0.1rem; }
.sr-print:hover .pt { text-decoration: underline; }

/* booking session chooser */
.cal-tabs { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.4rem; }
.cal-choice {
  font-family: var(--font); font-size: 0.95rem; cursor: pointer;
  border: 1px solid var(--ink); background: none; color: var(--ink);
  padding: 0.5em 1.1em; transition: background .2s, color .2s;
}
.cal-choice:hover { background: var(--bg-alt); }
.cal-choice.active { background: var(--ink); color: #fff; }

/* collection chips */
.coll-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.coll-bar a {
  font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.5em 1em; border: 1px solid var(--line); color: var(--ink-soft);
}
.coll-bar a:hover, .coll-bar a.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---------- utilities ---------- */
.mt0 { margin-top: 0; } .mb0 { margin-bottom: 0; }
.lead { font-size: 1.12rem; color: var(--ink); }
.fine { font-size: 0.82rem; color: var(--ink-soft); }
code { background: var(--bg-alt); padding: 0.1em 0.35em; border-radius: 2px; font-size: 0.85em; }
