/*
Theme Name: Queer Photo
Theme URI: https://queer.photo
Author: Emmet.t.c
Author URI: https://queer.photo
Description: A colourful, editorial WordPress theme built to promote queer photographers and help them get paid. Features a photographer directory, portfolio profiles with hire and pay calls to action, a specialty taxonomy, and a warm gallery aesthetic. Celebrates real human image making.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: queer-photo
Tags: photography, portfolio, directory, custom-colors, custom-menu, featured-images, translation-ready, two-columns, right-sidebar
*/

/* ===========================================================
   1. DESIGN TOKENS
   =========================================================== */
:root {
  /* Base */
  --ink: #181016;
  --ink-soft: #463848;
  --paper: #faf4ea;
  --paper-2: #f3e8d7;
  --paper-3: #ece0cc;
  --line: #e2d4bf;

  /* Vivid accent system */
  --c-magenta: #ff2e88;
  --c-violet: #7b3fe4;
  --c-blue: #1f6feb;
  --c-teal: #00b3a4;
  --c-lime: #b9e84a;
  --c-tangerine: #ff7a2f;

  /* Roles */
  --accent: var(--c-magenta);
  --accent-ink: #ffffff;

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;
  --font-mono: "Space Mono", "Courier New", monospace;

  /* Scale (bumped for readability) */
  --step--1: clamp(0.9rem, 0.86rem + 0.18vw, 1rem);
  --step-0: clamp(1.08rem, 1.02rem + 0.3vw, 1.22rem);
  --step-1: clamp(1.3rem, 1.18rem + 0.5vw, 1.7rem);
  --step-2: clamp(1.8rem, 1.55rem + 1.1vw, 2.5rem);
  --step-3: clamp(2.4rem, 1.95rem + 2.1vw, 3.7rem);
  --step-4: clamp(2.3rem, 1.7rem + 2.6vw, 4rem);
  --step-5: clamp(3.6rem, 2.4rem + 6vw, 8rem);

  /* Space */
  --gap: clamp(1rem, 0.7rem + 1.5vw, 2rem);
  --pad-x: clamp(1.25rem, 0.5rem + 4vw, 5rem);
  --section-y: clamp(3.5rem, 2rem + 6vw, 8rem);
  --maxw: 1320px;

  /* Radius and shadow (squared, editorial) */
  --r-sm: 0px;
  --r: 0px;
  --r-lg: 0px;
  --shadow: 0 1px 2px rgba(24,16,22,.06), 0 18px 40px -22px rgba(24,16,22,.45);
  --shadow-lift: 0 30px 60px -28px rgba(24,16,22,.55);
}

/* ===========================================================
   2. RESET AND BASE
   =========================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.72;
  color: var(--ink);
  background: var(--paper);
  background-image:
    radial-gradient(120% 80% at 100% 0%, rgba(255,46,136,.05), transparent 55%),
    radial-gradient(110% 70% at 0% 0%, rgba(123,63,228,.05), transparent 50%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, video, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul[class], ol[class] { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 460;
  line-height: 1.02;
  letter-spacing: -0.015em;
  font-optical-sizing: auto;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
p { max-width: 68ch; }

/* Layout helpers */
.wrap { width: min(100% - (var(--pad-x) * 2), var(--maxw)); margin-inline: auto; }
.section { padding-block: var(--section-y); }
.stack > * + * { margin-top: var(--gap); }
.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
.eyebrow::before {
  content: "";
  width: 1.6rem; height: 2px;
  background: currentColor;
}
.lede { font-size: var(--step-1); line-height: 1.5; color: var(--ink-soft); max-width: 52ch; }

/* Skip link */
.skip-link {
  position: absolute; left: -999px;
  background: var(--ink); color: var(--paper);
  padding: .75rem 1.25rem; border-radius: 0 0 var(--r-sm) 0; z-index: 999;
}
.skip-link:focus { left: 0; top: 0; }

/* ===========================================================
   3. BUTTONS
   =========================================================== */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-mono);
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: .95rem 1.6rem;
  border-radius: 0;
  border: 1.5px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), background .25s, color .25s, box-shadow .25s;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.btn--accent { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--block { width: 100%; justify-content: center; }
.btn .arrow { transition: transform .25s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ===========================================================
   4. HEADER AND NAV
   =========================================================== */
.site-header {
  position: sticky; top: 0; z-index: 200;
  backdrop-filter: blur(10px);
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--gap);
  padding-block: 1rem;
}
.brand { display: inline-flex; align-items: baseline; gap: .15rem; font-family: var(--font-display); font-size: var(--step-1); letter-spacing: -0.03em; }
.brand__dot { color: var(--accent); }
.brand:hover .brand__dot { animation: hue 6s linear infinite; }
@keyframes hue { to { filter: hue-rotate(360deg); } }

/* Hamburger toggle (always shown) */
.nav-toggle {
  display: inline-flex; align-items: center; gap: .6rem;
  background: none; border: 0; cursor: pointer; padding: .4rem 0;
  font-family: var(--font-mono); font-size: var(--step--1);
  text-transform: uppercase; letter-spacing: .14em; color: var(--ink);
}
.nav-toggle__bars { display: inline-block; width: 26px; height: 14px; position: relative; }
.nav-toggle__bars span { position: absolute; left: 0; width: 100%; height: 2px; background: var(--ink); transition: transform .3s, opacity .2s; }
.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 6px; }
.nav-toggle__bars span:nth-child(3) { top: 12px; }
.nav-toggle.is-active .nav-toggle__bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-active .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active .nav-toggle__bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
body.nav-open { overflow: hidden; }

/* Full page navigation overlay */
.nav-overlay { position: fixed; inset: 0; z-index: 150; display: grid; }
.nav-overlay[hidden] { display: none; }
.nav-overlay__bg {
  position: absolute; inset: 0;
  background: color-mix(in srgb, var(--paper) 58%, transparent);
  backdrop-filter: blur(18px) saturate(1.1); -webkit-backdrop-filter: blur(18px) saturate(1.1);
  opacity: 0; transition: opacity .35s ease;
}
.nav-overlay.is-open .nav-overlay__bg { opacity: 1; }
.nav-overlay__inner {
  position: relative; z-index: 1; margin: auto;
  width: min(92vw, 880px); padding: clamp(5rem, 12vh, 8rem) 1.5rem 3rem;
  display: flex; flex-direction: column; gap: clamp(1.8rem, 4vh, 2.8rem);
  opacity: 0; transform: translateY(14px); transition: opacity .35s ease, transform .4s cubic-bezier(.2,.8,.2,1);
}
.nav-overlay.is-open .nav-overlay__inner { opacity: 1; transform: none; }

.overlay-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: clamp(.3rem, 1.4vh, .9rem); }
.overlay-nav a {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2rem, 6vw, 3.6rem); line-height: 1.04; letter-spacing: -0.02em;
  display: inline-block; transition: color .2s, transform .25s;
}
.overlay-nav a:hover, .overlay-nav .current-menu-item > a { transform: translateX(12px); }
.overlay-nav li:nth-child(5n+1) a:hover { color: var(--c-magenta); }
.overlay-nav li:nth-child(5n+2) a:hover { color: var(--c-violet); }
.overlay-nav li:nth-child(5n+3) a:hover { color: var(--c-teal); }
.overlay-nav li:nth-child(5n+4) a:hover { color: var(--c-tangerine); }
.overlay-nav li:nth-child(5n+5) a:hover { color: var(--c-blue); }

.overlay-actions { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; border-top: 1.5px solid var(--ink); padding-top: clamp(1.4rem, 3vh, 2rem); }
.btn--lg { font-size: var(--step-0); padding: 1rem 1.7rem; }
.overlay-actions .qp-acct { font-family: var(--font-mono); font-size: var(--step--1); text-transform: uppercase; letter-spacing: .08em; }
.overlay-actions .qp-acct:hover { color: var(--accent); }

/* Persistent desktop navigation */
.site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: clamp(.7rem, 1.3vw, 1.3rem); }
.site-nav a {
  font-family: var(--font-mono); font-size: var(--step--1);
  text-transform: uppercase; letter-spacing: .06em; color: var(--ink);
  position: relative; transition: color .2s; white-space: nowrap;
}
.site-nav a:hover, .site-nav .current-menu-item > a, .site-nav .current_page_item > a { color: var(--accent); }
.site-header__actions { display: flex; align-items: center; gap: clamp(.6rem, 1vw, 1rem); flex: none; }
.site-header__actions .qp-acct { font-family: var(--font-mono); font-size: var(--step--1); text-transform: uppercase; letter-spacing: .08em; white-space: nowrap; }
.site-header__actions .qp-acct:hover { color: var(--accent); }
.site-header__actions .btn--sm { white-space: nowrap; }
.btn--sm { padding: .6rem 1rem; font-size: var(--step--1); }

/* Show the hamburger only on small screens; show the inline nav only on large */
@media (min-width: 1025px) { .nav-toggle { display: none; } }
@media (max-width: 1024px) {
  .site-nav, .site-header__actions { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ===========================================================
   5. HERO
   =========================================================== */
.hero { position: relative; padding-block: clamp(0.85rem, 0.6rem + 1.6vw, 2rem) clamp(2rem, 1.4rem + 3vw, 3.6rem); overflow: hidden; }
.hero__blobs { position: absolute; inset: 0; z-index: 0; filter: blur(60px); opacity: .55; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; mix-blend-mode: multiply; animation: float 18s ease-in-out infinite; }
.blob.b1 { width: 42vw; height: 42vw; background: var(--c-magenta); top: -10%; right: -6%; }
.blob.b2 { width: 36vw; height: 36vw; background: var(--c-violet); bottom: -18%; left: -8%; animation-delay: -6s; }
.blob.b3 { width: 28vw; height: 28vw; background: var(--c-teal); top: 30%; left: 35%; animation-delay: -12s; }
@keyframes float { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(3%, -4%) scale(1.06); } 66% { transform: translate(-3%, 3%) scale(.96); } }

.hero__inner { position: relative; z-index: 1; }
.hero h1 { font-size: clamp(2.1rem, 1.5rem + 3vw, 3.5rem); line-height: 1.03; max-width: 20ch; }
.hero h1 .grad {
  background: linear-gradient(95deg, var(--c-magenta), var(--c-tangerine) 35%, var(--c-violet) 70%, var(--c-blue));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .lede { font-size: var(--step-0); max-width: 56ch; margin-top: 1rem; }
.hero__meta { display: flex; flex-wrap: wrap; gap: .8rem 2rem; margin-top: 1.4rem; font-family: var(--font-mono); font-size: var(--step--1); }
.hero__meta b { color: var(--accent); }
.hero__cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.6rem; }

/* reveal on load */
.reveal { opacity: 0; transform: translateY(22px); animation: rise .8s cubic-bezier(.2,.8,.2,1) forwards; }
.reveal.d1 { animation-delay: .08s; }
.reveal.d2 { animation-delay: .18s; }
.reveal.d3 { animation-delay: .28s; }
.reveal.d4 { animation-delay: .38s; }
@keyframes rise { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .reveal, .blob, .brand__dot { animation: none !important; opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ===========================================================
   6. SECTION HEADINGS
   =========================================================== */
.section-head { display: flex; align-items: end; justify-content: space-between; gap: var(--gap); flex-wrap: wrap; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section-head .titles { max-width: 34ch; }
.section-head h2 { margin-top: .6rem; }

/* ===========================================================
   7. PHOTOGRAPHER GRID AND CARDS
   =========================================================== */
.grid { display: grid; gap: var(--gap); }
.grid--cards { grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); }
.grid--posts { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }

/* Journal (blog) */
.journal-pills { margin-top: clamp(1.2rem, 2.5vw, 2rem); }
.journal-lead { display: grid; grid-template-columns: 1.25fr 1fr; align-items: stretch; gap: 0; border: 1.5px solid var(--ink); background: var(--paper); overflow: hidden; margin-bottom: var(--gap); transition: box-shadow .4s, transform .4s; }
.journal-lead:hover { box-shadow: var(--shadow-lift); transform: translateY(-4px); }
.journal-lead__media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--paper-3); }
.journal-lead__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.journal-lead:hover .journal-lead__media img { transform: scale(1.04); }
.journal-lead__badge { position: absolute; top: 1rem; left: 1rem; background: var(--c-magenta); color: #fff; font-family: var(--font-mono); font-size: .7rem; text-transform: uppercase; letter-spacing: .14em; padding: .4rem .75rem; }
.journal-lead__body { padding: clamp(1.6rem, 3vw, 3rem); display: flex; flex-direction: column; justify-content: center; }
.journal-lead__title { font-size: var(--step-3); margin: .55rem 0 .8rem; }
.journal-lead__excerpt { color: var(--ink-soft); font-size: var(--step-0); max-width: 48ch; }
.journal-lead .card__link { margin-top: 1.4rem; font-family: var(--font-mono); font-size: var(--step--1); text-transform: uppercase; letter-spacing: .08em; display: inline-flex; gap: .4rem; }
.journal-lead:hover .card__link .arrow { transform: translateX(4px); }
.post-card .card__media { aspect-ratio: 16/10; }
@media (max-width: 820px) { .journal-lead { grid-template-columns: 1fr; } }

.card {
  --ca: var(--c-magenta);
  position: relative; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s, border-color .4s;
}
.card:nth-child(6n+1){--ca:var(--c-magenta)} .card:nth-child(6n+2){--ca:var(--c-violet)}
.card:nth-child(6n+3){--ca:var(--c-teal)} .card:nth-child(6n+4){--ca:var(--c-tangerine)}
.card:nth-child(6n+5){--ca:var(--c-blue)} .card:nth-child(6n+6){--ca:var(--c-lime)}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); border-color: var(--ca); }

.card__media { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--paper-3); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.card:hover .card__media img { transform: scale(1.05); }
.card__media--empty { display: grid; place-items: center; background:
  conic-gradient(from 200deg, var(--c-magenta), var(--c-tangerine), var(--c-lime), var(--c-teal), var(--c-blue), var(--c-violet), var(--c-magenta)); }
.card__media--empty span { font-family: var(--font-display); font-size: clamp(3rem,8vw,5rem); color: rgba(255,255,255,.9); }
.card__tag {
  position: absolute; top: 1rem; left: 1rem;
  font-family: var(--font-mono); font-size: .7rem; text-transform: uppercase; letter-spacing: .12em;
  background: var(--ink); color: var(--paper); padding: .4rem .75rem; border-radius: 0;
}
.card__body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.card__name { font-family: var(--font-display); font-size: var(--step-1); }
.card__meta { font-family: var(--font-mono); font-size: var(--step--1); color: var(--ink-soft); display: flex; gap: .9rem; flex-wrap: wrap; }
.card__meta .loc::before { content: "◍ "; color: var(--ca); }
.card__foot { margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.card__price { font-family: var(--font-mono); font-weight: 700; color: var(--ca); }
.card__link { font-family: var(--font-mono); font-size: var(--step--1); text-transform: uppercase; letter-spacing: .08em; display: inline-flex; gap: .4rem; }
.card__link .arrow { transition: transform .25s; }
.card:hover .card__link .arrow { transform: translateX(4px); }

/* Directory index (compact list of featured photographers) */
.directory { border-top: 1.5px solid var(--ink); }
.directory__row {
  display: grid; grid-template-columns: 56px minmax(0,1.7fr) minmax(0,1fr) auto auto;
  align-items: center; gap: 1rem 1.4rem;
  padding: .9rem .6rem; border-bottom: 1px solid var(--line);
  --ca: var(--c-magenta); transition: background .2s, transform .2s;
}
.directory__row:nth-child(6n+1){--ca:var(--c-magenta)} .directory__row:nth-child(6n+2){--ca:var(--c-violet)}
.directory__row:nth-child(6n+3){--ca:var(--c-teal)} .directory__row:nth-child(6n+4){--ca:var(--c-tangerine)}
.directory__row:nth-child(6n+5){--ca:var(--c-blue)} .directory__row:nth-child(6n+6){--ca:var(--c-lime)}
.directory__row:hover { background: var(--paper); }
.directory__thumb { width: 56px; height: 56px; overflow: hidden; background: var(--paper-3); display: block; flex: none; }
.directory__thumb img { width: 100%; height: 100%; object-fit: cover; }
.directory__thumb--empty { display: grid; place-items: center;
  background: conic-gradient(from 200deg, var(--c-magenta), var(--c-tangerine), var(--c-lime), var(--c-teal), var(--c-blue), var(--c-violet), var(--c-magenta)); }
.directory__thumb--empty span { font-family: var(--font-display); font-size: 1.4rem; color: rgba(255,255,255,.92); }
.directory__id { display: flex; flex-direction: column; gap: .15rem; min-width: 0; }
.directory__name { font-family: var(--font-display); font-size: var(--step-1); line-height: 1.1; }
.directory__star { color: var(--ca); font-size: .8em; }
.directory__meta { font-family: var(--font-mono); font-size: var(--step--1); color: var(--ink-soft); }
.directory__loc { font-family: var(--font-mono); font-size: var(--step--1); color: var(--ink-soft); }
.directory__rate { font-family: var(--font-mono); font-weight: 700; color: var(--ca); white-space: nowrap; }
.directory__rate small { font-weight: 400; color: var(--ink-soft); }
.directory__go { font-family: var(--font-mono); font-size: var(--step--1); text-transform: uppercase; letter-spacing: .08em; white-space: nowrap; display: inline-flex; gap: .35rem; }
.directory__go .arrow { transition: transform .25s; }
.directory__row:hover .directory__go .arrow { transform: translateX(4px); }
@media (max-width: 720px) {
  .directory__row { grid-template-columns: 48px minmax(0,1fr); align-items: start; gap: .2rem .9rem; }
  .directory__thumb { width: 48px; height: 48px; grid-row: 1 / span 2; align-self: center; }
  .directory__id { justify-content: center; }
  .directory__name { font-size: var(--step-0); }
  .directory__rate { font-size: var(--step--1); }
  .directory__loc, .directory__go { display: none; }
}

/* Image collection shortcodes ([qp_gallery] / [qp_collection]) */
.qp-coll { --qpc-cols: 3; --qpc-gap: var(--gap); margin-block: var(--gap); }
.qp-coll img { display: block; width: 100%; }
.qp-coll__item { margin: 0; }
.qp-coll--grid { display: grid; gap: var(--qpc-gap); grid-template-columns: repeat(var(--qpc-cols), 1fr); }
.qp-coll--grid .qp-coll__item { aspect-ratio: var(--qpc-ratio, 4/5); overflow: hidden; background: var(--paper-3); }
.qp-coll--grid img { height: 100%; object-fit: cover; }
.qp-coll--masonry { columns: var(--qpc-cols) auto; column-gap: var(--qpc-gap); }
.qp-coll--masonry .qp-coll__item { break-inside: avoid; margin-bottom: var(--qpc-gap); }
.qp-coll--strip { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(220px, 1fr); gap: var(--qpc-gap); overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: .5rem; }
.qp-coll--strip .qp-coll__item { aspect-ratio: var(--qpc-ratio, 4/5); overflow: hidden; scroll-snap-align: start; background: var(--paper-3); }
.qp-coll--strip img { height: 100%; object-fit: cover; }
.qp-coll--marquee { overflow: hidden; }
.qp-coll--marquee .qp-coll__track { display: flex; gap: var(--qpc-gap); width: max-content; animation: qp-marquee 45s linear infinite; }
.qp-coll--marquee:hover .qp-coll__track { animation-play-state: paused; }
.qp-coll--marquee .qp-coll__item { flex: 0 0 auto; width: clamp(180px, 26vw, 320px); aspect-ratio: var(--qpc-ratio, 4/5); overflow: hidden; background: var(--paper-3); }
.qp-coll--marquee img { height: 100%; object-fit: cover; }
@keyframes qp-marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .qp-coll--marquee .qp-coll__track { animation: none; } }
@media (max-width: 640px) {
  .qp-coll--grid { grid-template-columns: repeat(2, 1fr); }
  .qp-coll--masonry { columns: 2 auto; }
}

/* ===========================================================
   8. "HOW IT WORKS" STRIP
   =========================================================== */
.steps { display: grid; gap: var(--gap); grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); counter-reset: step; }
.step { padding: 2rem 1.6rem; border: 1px solid var(--line); border-radius: var(--r); background: var(--paper); position: relative; }
.step::before {
  counter-increment: step; content: counter(step,decimal-leading-zero);
  font-family: var(--font-mono); font-size: var(--step--1); color: var(--accent);
}
.step:nth-child(1){--accent:var(--c-magenta)} .step:nth-child(2){--accent:var(--c-violet)}
.step:nth-child(3){--accent:var(--c-teal)} .step:nth-child(4){--accent:var(--c-tangerine)}
.step h3 { font-size: var(--step-1); margin: .6rem 0 .4rem; }
.step p { font-size: var(--step-0); color: var(--ink-soft); }

/* ===========================================================
   9. SPECIALTY PILLS
   =========================================================== */
.pills { display: flex; flex-wrap: wrap; gap: .6rem; }
.pill {
  font-family: var(--font-mono); font-size: var(--step--1); text-transform: lowercase; letter-spacing: .02em;
  padding: .6rem 1.1rem; border: 1.5px solid var(--ink); border-radius: 0; transition: .25s;
}
.pill:hover, .pill.is-active { background: var(--ink); color: var(--paper); transform: translateY(-2px); }

/* ===========================================================
   10. CTA / JOIN BAND
   =========================================================== */
.band {
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  background: var(--ink); color: var(--paper);
  padding: clamp(2.5rem, 5vw, 5rem);
}
.band__glow { position: absolute; inset: 0; z-index: 0; opacity: .9; filter: blur(40px);
  background:
    radial-gradient(40% 60% at 12% 20%, var(--c-magenta), transparent 60%),
    radial-gradient(40% 60% at 88% 30%, var(--c-violet), transparent 60%),
    radial-gradient(50% 70% at 60% 100%, var(--c-teal), transparent 60%);
  opacity: .35;
}
.band__inner { position: relative; z-index: 1; max-width: 40ch; }
.band h2 .grad { background: linear-gradient(90deg, var(--c-lime), var(--c-teal)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.band p { color: rgba(250,244,234,.78); }
.band .btn--ghost { color: var(--paper); border-color: var(--paper); }
.band .btn--ghost:hover { background: var(--paper); color: var(--ink); }

/* ===========================================================
   11. SINGLE PHOTOGRAPHER
   =========================================================== */
/* The profile sits on a tinted backdrop, inside a paper "document" sheet. */
.profile-section { background: var(--paper-2); }
.profile-back { display: inline-block; font-family: var(--font-mono); font-size: var(--step--1); margin-bottom: clamp(1rem, 2.5vw, 2rem); }
.profile-sheet { background: var(--paper); border: 1.5px solid var(--ink); box-shadow: var(--shadow); padding: clamp(1.5rem, 1rem + 3.5vw, 4rem); }
.profile {
  display: grid; grid-template-columns: 1fr 1.05fr;
  grid-template-areas: "main portrait" "main gallery";
  gap: clamp(1.6rem, 4vw, 3.5rem) clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.profile__main { grid-area: main; min-width: 0; }
.profile__name { font-family: var(--font-display); font-size: var(--step-4); line-height: 1; margin: .45rem 0 .3rem; }
.profile__specs { font-family: var(--font-mono); font-size: var(--step--1); color: var(--ink-soft); letter-spacing: .03em; }
.profile__meta { font-family: var(--font-mono); font-size: var(--step--1); display: flex; flex-wrap: wrap; gap: .4rem 1rem; margin: .7rem 0 1.6rem; color: var(--ink); }
.profile__loc { color: var(--ink-soft); }
.profile__bio { font-size: var(--step-1); line-height: 1.5; }

.hire-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r); padding: 1.6rem; margin-top: 2rem; }
.hire-card .rate { font-family: var(--font-mono); font-size: var(--step-2); color: var(--accent); }
.hire-card .rate small { font-size: var(--step--1); color: var(--ink-soft); }

/* Social link: round icon + label */
.profile__socials { margin-top: 1.8rem; display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.social-link { display: inline-flex; align-items: center; gap: .9rem; font-family: var(--font-body); font-size: var(--step-1); color: var(--ink); }
.social-link__ico { width: 48px; height: 48px; border-radius: 50%; background: var(--ink); color: var(--paper); display: grid; place-items: center; flex: none; transition: transform .2s, background .2s; }
.social-link svg { width: 22px; height: 22px; }
.social-link:hover .social-link__ico { transform: translateY(-2px); background: var(--accent); }

/* Circular portrait (right column, top) */
.profile__portrait { grid-area: portrait; aspect-ratio: 1/1; border-radius: 50%; overflow: hidden; background: var(--paper-3); width: 100%; max-width: 420px; margin-inline: auto; }
.profile__portrait img { width: 100%; height: 100%; object-fit: cover; }
.profile__initial { display: grid; place-items: center; width: 100%; height: 100%; font-family: var(--font-display); font-size: clamp(4rem, 12vw, 7rem); color: rgba(255,255,255,.92);
  background: conic-gradient(from 200deg, var(--c-magenta), var(--c-tangerine), var(--c-lime), var(--c-teal), var(--c-blue), var(--c-violet), var(--c-magenta)); }

/* Gallery (right column, below portrait) */
.profile__gallerywrap { grid-area: gallery; }
.profile__gallery-title { font-family: var(--font-display); font-size: var(--step-3); margin: 0 0 1.2rem; display: flex; align-items: baseline; gap: .6rem; }
.profile__gallery-arrow { font-family: var(--font-mono); font-size: var(--step-1); color: var(--ink-soft); }
.profile__gallery { display: flex; flex-direction: column; gap: var(--gap); }
.profile__gallery img { width: 100%; display: block; }

/* Shared portfolio masonry (used on service pages) */
.portfolio { columns: 3 240px; column-gap: var(--gap); margin-top: var(--gap); }
.portfolio img, .portfolio figure { break-inside: avoid; margin-bottom: var(--gap); border-radius: var(--r-sm); width: 100%; }

@media (max-width: 860px) {
  .profile { grid-template-columns: 1fr; grid-template-areas: "portrait" "main" "gallery"; }
  .profile__portrait { max-width: 300px; margin-inline: 0; }
}

/* ===========================================================
   12. ARTICLE / CONTENT
   =========================================================== */
.entry { max-width: 66ch; margin-inline: auto; }
.entry__header { text-align: center; margin-bottom: clamp(2rem,4vw,3.5rem); }
.entry__title { font-size: var(--step-3); margin-top: .6rem; }
.entry__meta { font-family: var(--font-mono); font-size: var(--step--1); color: var(--ink-soft); margin-top: 1rem; }
.entry__featured { width: 100%; border-radius: var(--r-lg); overflow: hidden; margin-bottom: var(--gap); }
.entry-content { font-size: var(--step-0); line-height: 1.85; }
.entry-content > * + * { margin-top: 1.5rem; }
.entry-content h2 { font-size: var(--step-2); margin-top: 2.5rem; }
.entry-content h3 { font-size: var(--step-1); margin-top: 2rem; }
.entry-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
.entry-content blockquote {
  border-left: 3px solid var(--accent); padding-left: 1.4rem; font-family: var(--font-display);
  font-size: var(--step-1); font-style: italic; color: var(--ink-soft);
}
.entry-content img { border-radius: var(--r-sm); }
.entry-content code { font-family: var(--font-mono); background: var(--paper-2); padding: .15em .4em; border-radius: 5px; font-size: .9em; }
.entry-content ul, .entry-content ol { padding-left: 1.4rem; }
.entry-content li + li { margin-top: .5rem; }

/* ===========================================================
   13. FORMS / SEARCH / COMMENTS
   =========================================================== */
.field, input[type=text], input[type=search], input[type=email], input[type=url], input[type=password], textarea, select {
  width: 100%; padding: .85rem 1.1rem; background: var(--paper);
  border: 1.5px solid var(--line); border-radius: var(--r-sm); transition: border-color .2s, box-shadow .2s;
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 18%, transparent); }
.search-form { display: flex; gap: .6rem; max-width: 520px; }
.search-form .btn { white-space: nowrap; }
label { font-family: var(--font-mono); font-size: var(--step--1); display: block; margin-bottom: .4rem; }
.form-row + .form-row { margin-top: 1.1rem; }

.comment-list { list-style: none; padding: 0; }
.comment-list li { padding: 1.2rem 0; border-bottom: 1px solid var(--line); }

/* ===========================================================
   14. PAGINATION AND ARCHIVE HEADERS
   =========================================================== */
.page-hero { padding-block: clamp(0.75rem, 0.5rem + 1.4vw, 1.8rem) clamp(1.25rem,2.5vw,2.4rem); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: var(--step-4); }
.pagination { display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center; margin-top: clamp(2.5rem,5vw,4rem); }
.pagination .page-numbers {
  font-family: var(--font-mono); min-width: 44px; height: 44px; display: grid; place-items: center;
  border: 1.5px solid var(--line); border-radius: 0; padding-inline: .8rem; transition: .2s;
}
.pagination .page-numbers:hover, .pagination .current { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* ===========================================================
   15. FOOTER
   =========================================================== */
.site-footer { background: var(--ink); color: var(--paper); padding-block: clamp(3rem,6vw,6rem) 2.5rem; margin-top: var(--section-y); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--gap); }
.footer-brand .brand { color: var(--paper); font-size: var(--step-2); }
.footer-brand p { color: rgba(250,244,234,.7); margin-top: 1rem; max-width: 36ch; }
.footer-col h4 { font-family: var(--font-mono); font-size: var(--step--1); text-transform: uppercase; letter-spacing: .14em; color: var(--c-lime); margin-bottom: 1rem; }
.footer-col ul { display: grid; gap: .7rem; font-size: var(--step--1); }
.footer-col a:hover { color: var(--c-magenta); }
.footer-bottom { margin-top: clamp(2.5rem,5vw,4rem); padding-top: 1.5rem; border-top: 1px solid rgba(250,244,234,.15); display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; font-family: var(--font-mono); font-size: var(--step--1); color: rgba(250,244,234,.6); }
.footer-legal { display: inline-flex; gap: 1.2rem; }
.footer-legal a { color: rgba(250,244,234,.75); }
.footer-legal a:hover { color: var(--c-magenta); }
.legal-doc .entry-content { max-width: 74ch; }
.legal-doc .entry-content h2 { font-size: var(--step-1); }
.ethos { font-family: var(--font-display); font-style: italic; font-size: var(--step-1); color: var(--paper); max-width: 30ch; }

@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr; } }

/* ===========================================================
   16. UTILITY
   =========================================================== */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.text-center { text-align: center; }
.divider { height: 1px; background: var(--line); border: 0; margin-block: var(--section-y); }
.no-results { text-align: center; padding: var(--section-y) 0; }
.no-results h2 { color: var(--ink-soft); }

/* ===========================================================
   17. PAGE TEMPLATES: ABOUT / SERVICES / PRICES / CONTACT
   =========================================================== */

/* Shared intro */
.lead-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,5rem); align-items: start; }
.lead-grid .big { font-family: var(--font-display); font-size: var(--step-2); line-height: 1.2; }
.lead-grid .body p + p { margin-top: 1.2rem; }
@media (max-width: 800px){ .lead-grid { grid-template-columns: 1fr; } }

/* About stats */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 0; border: 1.5px solid var(--ink); margin-top: var(--gap); }
.stat { padding: 1.8rem 1.6rem; border-right: 1.5px solid var(--ink); }
.stat:last-child { border-right: 0; }
.stat .n { font-family: var(--font-display); font-size: var(--step-3); line-height: 1; }
.stat:nth-child(1) .n { color: var(--c-magenta); } .stat:nth-child(2) .n { color: var(--c-violet); }
.stat:nth-child(3) .n { color: var(--c-teal); } .stat:nth-child(4) .n { color: var(--c-tangerine); }
.stat .l { font-family: var(--font-mono); font-size: var(--step--1); color: var(--ink-soft); margin-top: .5rem; }
@media (max-width:560px){ .stat { border-right: 0; border-bottom: 1.5px solid var(--ink); } .stat:last-child{border-bottom:0;} }

/* Services */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: var(--gap); }
.feature { --ca: var(--c-magenta); border: 1.5px solid var(--ink); padding: 2rem 1.8rem; background: var(--paper); display: flex; flex-direction: column; gap: .7rem; transition: transform .3s, box-shadow .3s; }
.feature:nth-child(4n+1){--ca:var(--c-magenta)} .feature:nth-child(4n+2){--ca:var(--c-violet)}
.feature:nth-child(4n+3){--ca:var(--c-teal)} .feature:nth-child(4n+4){--ca:var(--c-tangerine)}
.feature:hover { transform: translateY(-6px); box-shadow: 8px 8px 0 var(--ca); }
.feature .ico { width: 52px; height: 52px; display: grid; place-items: center; background: var(--ca); color: #fff; font-family: var(--font-display); font-size: 1.6rem; }
.feature h3 { font-size: var(--step-1); }
.feature p { color: var(--ink-soft); font-size: var(--step-0); }
.feature ul { display: grid; gap: .5rem; margin-top: .4rem; }
.feature li { font-family: var(--font-mono); font-size: var(--step--1); padding-left: 1.3rem; position: relative; }
.feature li::before { content: "+"; position: absolute; left: 0; color: var(--ca); font-weight: 700; }

/* Prices */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 0; border: 1.5px solid var(--ink); }
.price-card { padding: 2.4rem 2rem; border-right: 1.5px solid var(--ink); display: flex; flex-direction: column; gap: 1rem; background: var(--paper); }
.price-card:last-child { border-right: 0; }
.price-card.is-featured { background: var(--ink); color: var(--paper); }
.price-card .tier { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .14em; font-size: var(--step--1); }
.price-card.is-featured .tier { color: var(--c-lime); }
.price-card .amt { font-family: var(--font-display); font-size: var(--step-3); line-height: 1; }
.price-card .amt small { display: block; font-family: var(--font-mono); font-size: var(--step--1); color: var(--ink-soft); margin-top: .4rem; }
.price-card.is-featured .amt small { color: rgba(250,244,234,.7); }
.price-card .feat { display: grid; gap: .65rem; margin: .5rem 0 1rem; }
.price-card .feat li { padding-left: 1.4rem; position: relative; font-size: var(--step-0); }
.price-card .feat li::before { content: "✓"; position: absolute; left: 0; color: var(--c-teal); font-weight: 700; }
.price-card.is-featured .feat li::before { color: var(--c-lime); }
.price-card .btn { margin-top: auto; }
.price-card.is-featured .btn { background: var(--c-lime); border-color: var(--c-lime); color: var(--ink); }
.price-note { font-family: var(--font-mono); font-size: var(--step--1); color: var(--ink-soft); margin-top: 1.2rem; }
@media (max-width: 860px){ .price-card { border-right: 0; border-bottom: 1.5px solid var(--ink); } .price-card:last-child{border-bottom:0;} }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(2rem,4vw,4rem); align-items: start; }
.contact-card { border: 1.5px solid var(--ink); padding: 2rem 1.8rem; background: var(--paper-2); }
.contact-card .row { padding: 1rem 0; border-bottom: 1px solid var(--line); }
.contact-card .row:last-child { border-bottom: 0; }
.contact-card .k { font-family: var(--font-mono); font-size: var(--step--1); text-transform: uppercase; letter-spacing: .12em; color: var(--ink-soft); }
.contact-card .v { font-family: var(--font-display); font-size: var(--step-1); margin-top: .2rem; }
.contact-form { border: 1.5px solid var(--ink); padding: 2rem 1.8rem; }
@media (max-width: 820px){ .contact-grid { grid-template-columns: 1fr; } }

/* Squared media inside content */
.entry-content img, .entry__featured, .portfolio img, .card, .step, .band, .hire-card, .field,
input[type=text], input[type=search], input[type=email], input[type=url], input[type=password], textarea, select,
.card__media { border-radius: 0 !important; }

/* ===========================================================
   18. LIST RESETS FOR THEMED MENUS AND CARDS
   =========================================================== */
.main-nav ul, .footer-col ul, .feature ul, .price-card .feat { list-style: none; margin: 0; padding: 0; }
.feature ul { margin-top: .4rem; }
.price-card.is-featured .amt { color: var(--paper); }
.price-card .feat li, .feature li { list-style: none; }

/* ===========================================================
   19. RECOMMENDED PHOTOGRAPHER FEATURE
   =========================================================== */
.recommended { --ca: var(--c-magenta); }
.recommended__grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: stretch; border: 1.5px solid var(--ink); background: var(--paper); }
.recommended__portrait { position: relative; display: block; aspect-ratio: 4/5; overflow: hidden; background: var(--paper-3); border-right: 1.5px solid var(--ink); }
.recommended__portrait img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.recommended__portrait:hover img { transform: scale(1.04); }
.recommended__initial { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--font-display); font-size: clamp(4rem,12vw,8rem); color: rgba(255,255,255,.92);
  background: conic-gradient(from 200deg, var(--c-magenta), var(--c-tangerine), var(--c-lime), var(--c-teal), var(--c-blue), var(--c-violet), var(--c-magenta)); }
.recommended__badge { position: absolute; top: 1rem; left: 1rem; background: var(--ca); color: #fff; font-family: var(--font-mono); font-size: .7rem; text-transform: uppercase; letter-spacing: .14em; padding: .4rem .75rem; }
.recommended__body { padding: clamp(1.6rem,3.5vw,3.2rem); display: flex; flex-direction: column; justify-content: center; }
.recommended__name { font-size: var(--step-3); margin: .5rem 0 .5rem; }
.recommended__meta { font-family: var(--font-mono); font-size: var(--step--1); color: var(--ink-soft); display: flex; flex-wrap: wrap; gap: .6rem 1.2rem; }
.recommended__quote { font-family: var(--font-display); font-style: italic; font-size: var(--step-1); line-height: 1.4; border-left: 3px solid var(--ca); padding-left: 1.2rem; margin: 1.4rem 0 0; max-width: none; }
.recommended__foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 1.8rem; }
.recommended__rate { font-family: var(--font-mono); font-weight: 700; font-size: var(--step-1); color: var(--ca); }
.recommended__cta { display: flex; gap: .6rem; flex-wrap: wrap; }
.recommended.is-mono .recommended__portrait img { filter: grayscale(1) contrast(1.04); }
.recommended.is-mono .recommended__portrait:hover img { filter: none; }
@media (max-width: 820px) {
  .recommended__grid { grid-template-columns: 1fr; }
  .recommended__portrait { border-right: 0; border-bottom: 1.5px solid var(--ink); aspect-ratio: 16/12; }
}

/* ===========================================================
   20. SERVICE NICHE PAGES (each tuned to its niche)
   =========================================================== */
.svc { --ca: var(--c-magenta); }

/* Tighter vertical rhythm on service and booking pages (no large gaps) */
.svc .section, .booking .section { padding-block: clamp(1.4rem, 0.9rem + 1.8vw, 3rem); }
.svc .section:first-child, .booking .section:first-child { padding-top: 0; }
.svc .recommended, .svc .faq { margin-top: 0; }

/* Full-bleed image hero (service & location pages) */
.svc-hero2 { position: relative; isolation: isolate; min-height: clamp(440px, 64vh, 640px); display: grid; align-items: end; overflow: hidden; border-bottom: 1.5px solid var(--ink); }
.svc-hero2__media { position: absolute; inset: 0; z-index: -2; background: var(--paper-3); }
.svc-hero2__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-hero2::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(24,16,22,.12) 0%, rgba(24,16,22,.30) 42%, rgba(24,16,22,.84) 100%); }
.svc-hero2__inner { width: 100%; padding-block: clamp(2.2rem, 5vw, 4.5rem); }
.svc-hero2 .eyebrow { color: #fff; }
.svc-hero2 .eyebrow::before { background: #fff; }
.svc-hero2 h1 { color: #fff; font-size: clamp(2.4rem, 1.6rem + 4vw, 5rem); line-height: 1.02; max-width: 18ch; margin-top: .6rem; }
.svc-hero2 .lede { color: rgba(255,255,255,.92); max-width: 56ch; margin-top: 1rem; }
.svc-hero2 .hero__cta { margin-top: clamp(1.4rem, 3vw, 2.2rem); }
.svc-hero2 .btn--ghost { color: #fff; border-color: #fff; }
.svc-hero2 .btn--ghost:hover { background: #fff; color: var(--ink); }
.svc-hero2--plain { min-height: clamp(340px, 48vh, 500px); }
.svc-hero2--plain .svc-hero2__media { background: conic-gradient(from 200deg, var(--c-magenta), var(--c-tangerine), var(--c-lime), var(--c-teal), var(--c-blue), var(--c-violet), var(--c-magenta)); }

/* Service-page conversion CTA in the hero */
.svc-hero .hero__cta { margin-top: clamp(1.1rem, 2.2vw, 1.8rem); }
.svc--portraits .svc-hero .hero__cta, .svc--weddings .svc-hero .hero__cta { justify-content: center; }
.svc--events .svc-hero .btn--ghost { color: var(--paper); border-color: var(--paper); }
.svc--events .svc-hero .btn--ghost:hover { background: var(--paper); color: var(--ink); }
.booking-back { display: inline-block; font-family: var(--font-mono); font-size: var(--step--1); }
.booking-steps { list-style: none; margin: 1.6rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; font-family: var(--font-mono); font-size: var(--step--1); text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); }
.booking-steps li { display: inline-flex; align-items: center; gap: .5rem; }
.booking-steps li span { width: 1.7rem; height: 1.7rem; display: grid; place-items: center; border: 1.5px solid var(--line); border-radius: 50%; font-size: .8rem; }
.booking-steps li.is-current { color: var(--ink); }
.booking-steps li.is-current span { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.booking-steps li.is-done span { border-color: var(--c-lime); background: var(--c-lime); color: var(--ink); }

.svc-hero { padding-block: clamp(0.85rem,0.6rem + 1.6vw,2rem) clamp(1.6rem,3vw,3rem); position: relative; }
.svc-hero .eyebrow { color: var(--ca); }
.svc-hero h1 { font-size: var(--step-4); }
.svc-hero .lede { margin-top: 1.2rem; }

/* shared "what is included" */
.svc-info { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(1.5rem,4vw,3.5rem); align-items: start; }
.svc-info__intro .lede { max-width: 42ch; }
@media (max-width: 860px) { .svc-info { grid-template-columns: 1fr; } }
.svc-incl { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 0; border: 1.5px solid var(--ink); }
.svc-incl .item { padding: 1.6rem 1.4rem; border-right: 1.5px solid var(--ink); }
.svc-incl .item:last-child { border-right: 0; }
.svc-incl .k { font-family: var(--font-mono); font-size: var(--step--1); color: var(--ca); }
.svc-incl .v { font-family: var(--font-display); font-size: var(--step-1); margin-top: .4rem; }
@media (max-width:620px){ .svc-incl .item { border-right:0; border-bottom:1.5px solid var(--ink);} .svc-incl .item:last-child{border-bottom:0;} }

/* work strip */
.svc-strip { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(180px, 1fr); gap: var(--gap); overflow-x: auto; padding-bottom: .5rem; }
.svc-strip .tile { aspect-ratio: 4/5; overflow: hidden; background: var(--paper-3); border: 1.5px solid var(--ink); }
.svc-strip .tile img { width: 100%; height: 100%; object-fit: cover; }

/* --- Portraits: intimate, centred, magenta --- */
.svc--portraits { --ca: var(--c-magenta); }
.svc--portraits .svc-hero { text-align: center; }
.svc--portraits .svc-hero .eyebrow { justify-content: center; }
.svc--portraits .svc-hero .lede { margin-inline: auto; }

/* --- Events: loud, dark hero, tangerine --- */
.svc--events { --ca: var(--c-tangerine); }
.svc--events .svc-hero { background: var(--ink); color: var(--paper); padding-inline: var(--pad-x); margin-inline: calc(var(--pad-x) * -1); }
.svc--events .svc-hero .wrap { padding: 0; }
.svc--events .svc-hero h1 { font-family: var(--font-body); font-weight: 800; text-transform: uppercase; letter-spacing: -0.02em; line-height: .92; font-size: clamp(2.8rem,7vw,6rem); }
.svc--events .svc-hero .lede { color: rgba(250,244,234,.8); }
.svc--events .svc-stats { display: grid; grid-template-columns: repeat(3,1fr); border: 1.5px solid var(--paper); margin-top: 2.5rem; }
.svc--events .svc-stats div { padding: 1.2rem 1.4rem; border-right: 1.5px solid var(--paper); }
.svc--events .svc-stats div:last-child { border-right: 0; }
.svc--events .svc-stats .n { font-family: var(--font-display); font-size: var(--step-2); color: var(--c-tangerine); }
.svc--events .svc-stats .l { font-family: var(--font-mono); font-size: var(--step--1); color: rgba(250,244,234,.7); }

/* --- Weddings: airy, elegant, violet, light Fraunces --- */
.svc--weddings { --ca: var(--c-violet); }
.svc--weddings .svc-hero { text-align: center; padding-block: clamp(1.4rem,0.9rem + 2.5vw,3rem) clamp(2rem,4vw,4rem); }
.svc--weddings .svc-hero .eyebrow { justify-content: center; }
.svc--weddings .svc-hero h1 { font-weight: 320; letter-spacing: -0.02em; }
.svc--weddings .svc-hero .lede { font-family: var(--font-display); font-style: italic; font-size: var(--step-2); color: var(--ink-soft); margin-inline: auto; max-width: 24ch; }
.svc--weddings .acts { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1.5rem,4vw,4rem); text-align: center; }
.svc--weddings .acts .act .num { font-family: var(--font-display); font-style: italic; font-size: var(--step-3); color: var(--c-violet); }
.svc--weddings .acts .act h3 { font-weight: 360; margin: .4rem 0; }
.svc--weddings .acts .act p { color: var(--ink-soft); margin-inline: auto; }
@media (max-width:680px){ .svc--weddings .acts { grid-template-columns:1fr; } }

/* --- Editorial: magazine, asymmetric, blue, column rules --- */
.svc--editorial { --ca: var(--c-blue); }
.svc--editorial .svc-hero { display: grid; grid-template-columns: 1.3fr .7fr; gap: clamp(1.5rem,4vw,4rem); align-items: end; border-bottom: 2px solid var(--ink); }
.svc--editorial .svc-hero .issue { font-family: var(--font-mono); font-size: var(--step--1); color: var(--c-blue); border-bottom: 1px solid var(--line); padding-bottom: .8rem; margin-bottom: 1rem; display: flex; justify-content: space-between; }
.svc--editorial .svc-hero h1 { font-size: clamp(2.6rem,6vw,5rem); }
.svc--editorial .svc-hero .side { font-family: var(--font-mono); font-size: var(--step--1); color: var(--ink-soft); line-height: 1.7; }
.svc--editorial .ed-cols { columns: 2 320px; column-gap: clamp(2rem,4vw,4rem); column-rule: 1px solid var(--line); }
.svc--editorial .ed-cols p { margin: 0 0 1.1rem; }
.svc--editorial .ed-cols p:first-child::first-letter { font-family: var(--font-display); font-size: 3.4em; float: left; line-height: .8; padding: .05em .12em 0 0; color: var(--c-blue); }
@media (max-width:760px){ .svc--editorial .svc-hero { grid-template-columns:1fr; } }

/* --- Brand and product: structured, utilitarian, teal --- */
.svc--brand { --ca: var(--c-teal); }
.svc--brand .svc-hero { display: grid; grid-template-columns: 1fr .8fr; gap: clamp(2rem,4vw,4rem); align-items: center; }
.svc--brand .panel { border: 1.5px solid var(--ink); }
.svc--brand .panel .prow { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem 1.3rem; border-bottom: 1px solid var(--line); font-family: var(--font-mono); font-size: var(--step--1); }
.svc--brand .panel .prow:last-child { border-bottom: 0; }
.svc--brand .panel .prow b { color: var(--c-teal); }
.svc--brand .logos { display: grid; grid-template-columns: repeat(auto-fit,minmax(120px,1fr)); border: 1.5px solid var(--ink); }
.svc--brand .logos span { padding: 1.6rem 1rem; text-align: center; border-right: 1.5px solid var(--ink); font-family: var(--font-mono); font-size: var(--step--1); color: var(--ink-soft); }
.svc--brand .logos span:last-child { border-right: 0; }
@media (max-width:760px){ .svc--brand .svc-hero { grid-template-columns:1fr; } }

/* --- Documentary: muted, monochrome, film-strip, charcoal --- */
.svc--documentary { --ca: var(--ink); }
.svc--documentary .svc-hero h1 { font-weight: 380; }
.svc--documentary .svc-hero .lede { color: var(--ink-soft); }
.svc--documentary .filmstrip { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(160px,1fr); gap: 6px; padding: 14px 10px; background: var(--ink);
  background-image: repeating-linear-gradient(90deg, var(--ink) 0 22px, var(--paper) 22px 30px, var(--ink) 30px 52px); }
.svc--documentary .filmstrip .frame { aspect-ratio: 1/1; overflow: hidden; background: #2a2230; }
.svc--documentary .filmstrip .frame img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); transition: filter .5s; }
.svc--documentary .filmstrip .frame:hover img { filter: none; }
.svc--documentary .svc-incl .v { font-weight: 380; }

/* ===========================================================
   21. FAQ (GEO + accessibility)
   =========================================================== */
.faq { --ca: var(--c-magenta); border-top: 1.5px solid var(--ink); }
.faq details { border-bottom: 1.5px solid var(--ink); }
.faq summary { cursor: pointer; list-style: none; padding: 1.35rem 0; font-family: var(--font-display); font-size: var(--step-1); line-height: 1.2; display: flex; justify-content: space-between; align-items: baseline; gap: 1.5rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-mono); color: var(--ca); flex: none; transition: transform .2s; }
.faq details[open] summary::after { content: "–"; }
.faq .a { padding: 0 0 1.4rem; color: var(--ink-soft); max-width: 72ch; line-height: 1.75; }

/* ===========================================================
   22. MEMBERSHIP: AUTH, FORMS, DASHBOARD
   =========================================================== */
.qp-auth { max-width: 560px; }
.qp-dash { max-width: 820px; }

.qp-note { border: 1.5px solid var(--ink); padding: 1rem 1.2rem; margin-bottom: 1.5rem; font-size: var(--step-0); }
.qp-note--ok { background: var(--c-lime); color: var(--ink); border-color: var(--ink); }
.qp-note--err { background: var(--paper); border-color: var(--c-magenta); color: var(--ink); }

.qp-form { display: block; }
.qp-form .form-row + .form-row,
.qp-form .qp-grid-2 + .form-row,
.qp-form .form-row + .qp-grid-2,
.qp-form fieldset + .form-row { margin-top: 1.1rem; }
.qp-form button[type=submit] { margin-top: 1.5rem; }
.qp-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 540px){ .qp-grid-2 { grid-template-columns: 1fr; } }

.qp-choice { border: 0; padding: 0; margin: 0 0 1.4rem; display: grid; gap: .7rem; }
.qp-choice legend { font-family: var(--font-mono); font-size: var(--step--1); text-transform: uppercase; letter-spacing: .12em; color: var(--ink-soft); padding: 0; margin-bottom: .4rem; }
.qp-radio { display: flex; gap: .8rem; align-items: flex-start; border: 1.5px solid var(--line); padding: 1rem 1.1rem; cursor: pointer; transition: border-color .2s, background .2s; }
.qp-radio:hover { border-color: var(--ink); }
.qp-radio input { margin-top: .35rem; accent-color: var(--c-magenta); }
.qp-radio span { display: flex; flex-direction: column; gap: .15rem; }
.qp-radio strong { font-family: var(--font-display); font-size: var(--step-1); font-weight: 460; }
.qp-radio small { color: var(--ink-soft); font-size: var(--step--1); }
.qp-radio:has(input:checked) { border-color: var(--c-magenta); box-shadow: inset 4px 0 0 var(--c-magenta); }

.qp-alt { margin-top: 1.2rem; font-family: var(--font-mono); font-size: var(--step--1); color: var(--ink-soft); }
.qp-alt a { color: var(--c-magenta); text-decoration: underline; text-underline-offset: 3px; }

.qp-panel { border: 1.5px solid var(--ink); padding: clamp(1.4rem,3vw,2.4rem); margin-bottom: var(--gap); background: var(--paper); }
.qp-panel--center { text-align: center; }
.qp-panel h2 { font-size: var(--step-2); }
.qp-lead { color: var(--ink-soft); margin: .6rem 0 1.6rem; max-width: 60ch; }

.qp-checks { display: flex; flex-wrap: wrap; gap: .5rem; }
.qp-check { display: inline-flex; align-items: center; gap: .45rem; border: 1.5px solid var(--line); padding: .5rem .8rem; font-family: var(--font-mono); font-size: var(--step--1); cursor: pointer; }
.qp-check input { accent-color: var(--c-magenta); }
.qp-check:has(input:checked) { border-color: var(--ink); background: var(--ink); color: var(--paper); }

.qp-status { font-family: var(--font-mono); font-size: var(--step--1); padding: .8rem 1rem; margin-bottom: 1.4rem; border: 1.5px solid var(--ink); }
.qp-status--publish { background: var(--c-lime); }
.qp-status--pending, .qp-status--draft { background: var(--paper-2); }
.qp-status a { text-decoration: underline; color: var(--c-magenta); }

.qp-dash-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: var(--gap); }
.qp-dash-head h1 { font-size: var(--step-3); margin-top: .3rem; }
.qp-logout { margin: 0; }

.qp-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.qp-list li { display: flex; justify-content: space-between; gap: 1rem; padding: .9rem 0; border-bottom: 1px solid var(--line); }
.qp-list__title { font-weight: 500; }
.qp-list__meta { font-family: var(--font-mono); font-size: var(--step--1); color: var(--ink-soft); }

.header-actions .qp-acct { font-family: var(--font-mono); font-size: var(--step--1); text-transform: uppercase; letter-spacing: .06em; }

/* calendar hint */
.qp-hint { font-family: var(--font-mono); font-size: var(--step--1); color: var(--ink-soft); margin: -.3rem 0 .2rem; }

/* ===========================================================
   23. PACKAGES, BOOKING, GALLERY EDITOR, BADGE
   =========================================================== */
.qp-book { --ca: var(--c-magenta); }
.pkg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 0; border: 1.5px solid var(--ink); }
.pkg { position: relative; display: flex; flex-direction: column; gap: .5rem; padding: 1.8rem 1.5rem; border-right: 1.5px solid var(--ink); cursor: pointer; background: var(--paper); transition: background .2s; }
.pkg:last-child { border-right: 0; }
.pkg input { position: absolute; opacity: 0; pointer-events: none; }
.pkg__name { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .12em; font-size: var(--step--1); color: var(--ink-soft); }
.pkg__price { font-family: var(--font-display); font-size: var(--step-3); line-height: 1; }
.pkg__sum { font-size: var(--step--1); color: var(--ink-soft); }
.pkg__feat { list-style: none; margin: .5rem 0 0; padding: 0; display: grid; gap: .4rem; }
.pkg__feat li { padding-left: 1.3rem; position: relative; font-size: var(--step--1); }
.pkg__feat li::before { content: "+"; position: absolute; left: 0; color: var(--ca); font-weight: 700; }
.pkg__pick { margin-top: auto; padding-top: 1rem; font-family: var(--font-mono); font-size: var(--step--1); text-transform: uppercase; letter-spacing: .08em; color: var(--ca); }
.pkg:has(input:checked) { background: var(--ink); color: var(--paper); }
.pkg:has(input:checked) .pkg__name, .pkg:has(input:checked) .pkg__sum { color: rgba(250,244,234,.7); }
.pkg:has(input:checked) .pkg__pick::before { content: "✓ "; }
.pkg:has(input:checked) .pkg__pick { color: var(--c-lime); }
@media (max-width: 720px){ .pkg { border-right: 0; border-bottom: 1.5px solid var(--ink); } .pkg:last-child { border-bottom: 0; } }

.qp-book__details { border: 1.5px solid var(--ink); border-top: 0; padding: clamp(1.5rem,3vw,2.4rem); }
.qp-book__details h3 { font-size: var(--step-1); margin-bottom: 1rem; }

/* "Book this Diva": requested-photographer note (only shown when arriving from a profile) */
.qp-requested { display: flex; gap: .7rem; align-items: flex-start; margin: 0 0 1.2rem; padding: 1rem 1.1rem; border: 1.5px solid var(--ca, var(--c-magenta)); background: color-mix(in srgb, var(--ca, var(--c-magenta)) 8%, var(--paper)); font-size: var(--step-0); cursor: pointer; }
.qp-requested input { margin-top: .3rem; accent-color: var(--ca, var(--c-magenta)); flex: none; }

/* Enquire vs. book: segmented switch (CSS only) + panels */
.qp-modeswitch { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1.5px solid var(--ink); margin-bottom: var(--gap); }
.qp-modeswitch__radio { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.qp-modeswitch label { display: flex; flex-direction: column; gap: .25rem; padding: 1.1rem 1.3rem; cursor: pointer; background: var(--paper); transition: background .2s, color .2s; }
.qp-modeswitch label:first-of-type { border-right: 1.5px solid var(--ink); }
.qp-modeswitch label strong { font-family: var(--font-display); font-size: var(--step-1); font-weight: 460; }
.qp-modeswitch label small { font-family: var(--font-mono); font-size: var(--step--1); color: var(--ink-soft); line-height: 1.4; }
.qp-modeswitch__radio:checked + label { background: var(--ink); color: var(--paper); }
.qp-modeswitch__radio:checked + label small { color: rgba(250,244,234,.72); }
.qp-modeswitch__radio:focus-visible + label { outline: 3px solid var(--ca, var(--c-magenta)); outline-offset: 2px; }
/* Toggle the panels based on which radio is checked */
.qp-modes:has(.qp-modeswitch__radio--book:checked) [data-mode="enq"],
.qp-modes:has(.qp-modeswitch__radio--enq:checked) [data-mode="book"] { display: none; }
.qp-book__details--solo { border-top: 1.5px solid var(--ink); }
@media (max-width: 560px) {
  .qp-modeswitch { grid-template-columns: 1fr; }
  .qp-modeswitch label:first-of-type { border-right: 0; border-bottom: 1.5px solid var(--ink); }
}

.qp-gallery-edit { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px,1fr)); gap: .6rem; margin: .6rem 0 1rem; }
.qp-gthumb { border: 1.5px solid var(--line); position: relative; display: block; }
.qp-gthumb img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.qp-gthumb span { display: flex; align-items: center; gap: .3rem; font-family: var(--font-mono); font-size: .7rem; padding: .35rem .4rem; background: var(--paper-2); }

.qp-badge-preview { padding: 1.4rem; border: 1.5px dashed var(--line); background: var(--paper-2); display: flex; justify-content: center; }
