:root {
  --bg: #070b1f;
  --surface: #0f1730;
  --border: #263258;
  --text: #eef1fb;
  --text-muted: #98a2c9;
  --primary: #3b82f6;
  --primary-hover: #2563eb;
  --primary-bg: rgba(59, 130, 246, 0.16);
  --accent: #38bdf8;
  --success: #34d399;
  --success-bg: rgba(52, 211, 153, 0.15);
  --danger: #f87171;
  --danger-bg: rgba(248, 113, 113, 0.15);
  --neutral-bg: #161f40;
  --ink: #ffffff;
  --ink-2: #dbe3f7;
  --radius: 14px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.35), 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(59, 130, 246, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.55), 0 0 40px rgba(59, 130, 246, 0.12);
  --max-width: 900px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { line-height: 1.15; letter-spacing: -0.01em; color: var(--ink); }

a { color: var(--primary); }

/* --- Header --- */

header.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(7, 11, 31, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.65rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  line-height: 1;
}
.logo-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  transition: transform 0.6s ease;
}
.logo:hover .logo-badge { transform: rotate(360deg); }
.logo-text { display: flex; flex-direction: column; align-items: flex-start; }
.logo-mark {
  font-weight: 900;
  font-size: 2.15rem;
  letter-spacing: -0.02em;
  color: var(--primary);
}
.logo-tagline {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
@media (max-width: 640px) {
  .logo-tagline { display: none; }
}

.header-actions { display: flex; align-items: center; gap: 0.6rem; }

.nav-toggle {
  display: none; /* shown only under the mobile breakpoint below */
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0;
  width: 42px;
  height: 42px;
  box-shadow: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-toggle:hover { background: var(--neutral-bg); border-color: var(--primary); transform: none; box-shadow: none; }
.nav-toggle-bars { display: block; width: 18px; }
.nav-toggle-bars span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle-bars span + span { margin-top: 4px; }
/* Bars fold into an X while the panel is open, so the button reads as "close". */
.nav-open .nav-toggle-bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle-bars span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle-bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

nav.site-nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
nav.site-nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.92rem;
  position: relative;
  padding: 0.25rem 0;
}
nav.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -2px;
  height: 2px;
  background: var(--primary);
  transition: right 0.2s ease;
}
nav.site-nav a:hover, nav.site-nav a.active { color: var(--ink); }
nav.site-nav a:hover::after, nav.site-nav a.active::after { right: 0; }

/* --- Mobile navigation ---
   Six links plus the CTA wrapped the sticky header onto three rows (215px of
   an 812px phone screen, on every page). Under this breakpoint the links move
   into a panel that drops from the bar, leaving a single ~64px row. */
@media (max-width: 860px) {
  .nav-toggle { display: flex; }

  .header-inner { flex-wrap: nowrap; gap: 0.5rem; }

  nav.site-nav {
    display: none;
    order: 3;
    flex-direction: column;
    gap: 0;
    /* Negative margin lets the panel's top border span the full bar width
       while the links stay aligned with the logo above them. */
    margin: 0 -1.25rem -0.65rem;
    padding: 0.25rem 1.25rem 0.5rem;
    width: calc(100% + 2.5rem);
    border-top: 1px solid var(--border);
  }
  .nav-open nav.site-nav { display: flex; }

  nav.site-nav a {
    padding: 0.85rem 0.25rem;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
  }
  nav.site-nav a:last-child { border-bottom: none; }
  /* The sliding underline is a pointer affordance; in a stacked list it just
     reads as a stray line, so the active item is marked by colour instead. */
  nav.site-nav a::after { display: none; }
  nav.site-nav a.active { color: var(--primary); }
}

@media (max-width: 420px) {
  .btn-cta { padding: 0.5rem 0.85rem; font-size: 0.82rem; }
  .logo-mark { font-size: 1.7rem; }
  .logo-badge { width: 36px; height: 36px; }
}

.btn-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  display: inline-block;
}
.btn-cta:hover { background: var(--primary-hover); transform: translateY(-1px); box-shadow: 0 10px 22px rgba(59, 130, 246, 0.42); }

/* --- Hero --- */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 480px at 15% -10%, rgba(59, 130, 246, 0.35), transparent 60%),
    radial-gradient(900px 420px at 100% 0%, rgba(56, 189, 248, 0.22), transparent 55%),
    linear-gradient(180deg, rgba(5, 9, 26, 0.88) 0%, rgba(10, 16, 38, 0.94) 100%),
    url("../images/review-photo-2.jpg") center 30% / cover no-repeat;
  color: #f2f5fd;
  padding: 3.25rem 1.25rem 3.75rem;
  text-align: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 60px;
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events: none;
}

.hero-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }

.hero .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8fc3ff;
  background: rgba(59, 130, 246, 0.22);
  border: 1px solid rgba(143, 195, 255, 0.35);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(1.8rem, 3.8vw, 2.6rem);
  margin: 0 0 0.75rem;
  color: #fff;
  font-weight: 800;
}

.hero p.lead {
  color: #b9c6e8;
  font-size: 1.02rem;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.hero .hero-ctas { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: #c3cee9;
}
.trust-badge svg { width: 16px; height: 16px; color: #fbbf24; }
.trust-badge strong { color: #fff; }

.btn-cta.large { padding: 0.9rem 1.9rem; font-size: 1rem; }

.btn-ghost {
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  color: #f2f5fd !important;
  text-decoration: none;
  border: 1.5px solid rgba(242, 245, 253, 0.3);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.btn-ghost:hover { border-color: rgba(242, 245, 253, 0.6); background: rgba(242, 245, 253, 0.08); }

/* --- Main / layout --- */

main { max-width: var(--max-width); margin: 0 auto; padding: 3rem 1.25rem 4rem; }
main.wide { max-width: 1100px; }

section + section { margin-top: 3rem; }

.section-head { text-align: center; max-width: 620px; margin: 0 auto 2rem; }
.section-head h2 { font-size: clamp(1.4rem, 2.6vw, 1.8rem); margin-bottom: 0.5rem; }
.section-head p { color: var(--text-muted); margin: 0; }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.grid { display: grid; gap: 1.25rem; }
.grid.cols-2 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid.cols-3 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.feature-card {
  text-align: left;
  margin-bottom: 0;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-bg);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.feature-icon svg { width: 22px; height: 22px; }

.feature-card h3 { margin: 0 0 0.4rem; font-size: 1.05rem; }
.feature-card p { margin: 0; color: var(--text-muted); font-size: 0.94rem; }

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: start;
}
.showcase-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  line-height: 0;
}
.showcase-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.showcase-text h2 { margin-top: 0; }
.showcase-text p { color: var(--text-muted); }
.showcase-caption {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.showcase-checklist { list-style: none; margin: 1.25rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.showcase-checklist li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.94rem; color: var(--ink-2); }
.showcase-checklist svg { flex-shrink: 0; width: 18px; height: 18px; color: var(--primary); margin-top: 0.15rem; }

@media (max-width: 760px) {
  .showcase { grid-template-columns: 1fr; }
  .showcase-image { max-height: 360px; }
}

/* --- Testimonials --- */

.testimonial-card {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.testimonial-stars { color: #e0a530; font-size: 0.95rem; letter-spacing: 0.1em; }
.testimonial-card p.quote {
  margin: 0;
  color: var(--ink-2);
  font-size: 0.96rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testimonial-photo { border-radius: 10px; overflow: hidden; margin-top: 0.25rem; }
.testimonial-photo img { width: 100%; max-height: 220px; object-fit: cover; display: block; }
.testimonial-name { font-weight: 700; font-size: 0.88rem; color: var(--text-muted); margin-top: auto; padding-top: 0.5rem; border-top: 1px solid var(--border); }

/* --- Parts showcase --- */

.part-card { text-align: left; padding: 0; overflow: hidden; }
.part-card img { width: 100%; height: 170px; object-fit: cover; display: block; }
.part-card .part-body { padding: 1.25rem 1.5rem 1.5rem; }
.part-card h3 { margin: 0 0 0.4rem; font-size: 1.05rem; }
.part-card p { margin: 0; color: var(--text-muted); font-size: 0.92rem; }
.part-card .credit { display: block; margin-top: 0.6rem; font-size: 0.72rem; color: var(--text-muted); opacity: 0.7; }
.part-card .credit a { color: inherit; }

.service-card {
  text-align: left;
  position: relative;
  padding: 0;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 2;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-card img { width: 100%; height: 150px; object-fit: cover; display: block; }
.service-card .service-card-body { padding: 1.25rem 1.5rem 1.5rem; }
.service-card h3 { margin-top: 0; }

footer.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 1.25rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  background: var(--neutral-bg);
}
footer.site-footer p { margin: 0.35rem 0; }
footer.site-footer a { color: var(--text-muted); margin: 0 0.6rem; text-decoration: none; }
footer.site-footer a:hover { color: var(--primary); }

/* --- Booking wizard --- */

.wizard-progress {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 1.75rem;
}
.wizard-progress .dot {
  flex: 1;
  height: 5px;
  border-radius: 999px;
  background: var(--border);
  transition: background 0.2s ease;
}
.wizard-progress .dot.done { background: var(--primary); }
.wizard-progress .dot.current { background: var(--primary); opacity: 0.5; }

.wizard-step { box-shadow: var(--shadow-md); }
.wizard-step h2 { margin-top: 0; }
.wizard-step p.hint { color: var(--text-muted); margin-top: -0.5rem; }

.option-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 0.75rem; margin: 1rem 0; }

.option-btn {
  display: block;
  text-align: left;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.1s ease;
}
.option-btn:hover { border-color: var(--primary); transform: translateY(-1px); }
.option-btn.selected { border-color: var(--primary); background: var(--primary-bg); color: var(--accent); }

.service-select-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 0.9rem; margin: 1rem 0; }
.service-select-btn {
  display: block;
  text-align: left;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
}
.service-select-btn:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.service-select-btn.selected { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-bg); }
.service-select-btn img { width: 100%; height: 100px; object-fit: cover; display: block; }
.service-select-body { padding: 0.75rem 0.9rem 0.9rem; }
.service-select-label { display: block; font-size: 0.95rem; font-weight: 700; color: var(--text); }
.service-select-hint { display: block; font-size: 0.8rem; color: var(--text-muted); margin-top: 0.15rem; }
.service-select-btn.selected .service-select-label { color: var(--accent); }

.day-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 0.6rem; margin: 1rem 0; }
.day-btn {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem;
  cursor: pointer;
  text-align: center;
  font-weight: 600;
  transition: border-color 0.15s ease, transform 0.1s ease;
}
.day-btn:hover { border-color: var(--primary); transform: translateY(-1px); }
.day-btn.selected { border-color: var(--primary); background: var(--primary-bg); color: var(--accent); }
.day-btn .day-name { display: block; font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }
.day-btn.selected .day-name { color: var(--accent); }

.field { margin-bottom: 1.1rem; }
label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 0.35rem; }
label .optional { font-weight: 400; color: var(--text-muted); }

input[type=text], input[type=email], input[type=tel], select, textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--neutral-bg);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.15s ease;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-bg); }

.upload-zone {
  display: block;
  border: 2px dashed var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.upload-zone:hover { border-color: var(--primary); background: var(--primary-bg); }
.photo-preview-grid { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1rem; }
.photo-preview { width: 84px; height: 84px; border-radius: 8px; object-fit: cover; border: 1px solid var(--border); }

.wizard-actions { display: flex; justify-content: space-between; margin-top: 1.75rem; }

button {
  font-family: inherit;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0.65rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
button:hover { background: var(--primary-hover); transform: translateY(-1px); box-shadow: 0 8px 18px rgba(59, 130, 246, 0.36); }
button.secondary { background: var(--neutral-bg); color: var(--text); box-shadow: none; }
button.secondary:hover { background: var(--border); transform: none; box-shadow: none; }
button:disabled { opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: none; }

.error { color: var(--danger); background: var(--danger-bg); padding: 0.7rem 0.9rem; border-radius: 10px; font-size: 0.88rem; margin-bottom: 1rem; }
.success-box { background: var(--success-bg); border: 1px solid rgba(52, 211, 153, 0.35); border-radius: var(--radius); padding: 2.5rem 2rem; text-align: center; box-shadow: var(--shadow-md); }
.success-box h2 { color: var(--success); margin-top: 0; }

.muted { color: var(--text-muted); }

.review-list { list-style: none; padding: 0; }
.review-list li { padding: 0.6rem 0; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; gap: 1rem; }
.review-list li:last-child { border-bottom: none; }
.review-list .k { color: var(--text-muted); }

@media (max-width: 560px) {
  .hero { padding: 3.5rem 1.25rem 4rem; }
  main { padding: 2rem 1rem 3rem; }
  .wizard-actions { flex-direction: column-reverse; gap: 0.6rem; }
  .wizard-actions button { width: 100%; }
}

/* --- Gallery of completed work --- */

.gallery-grid {
  display: grid;
  /* auto-fill rather than auto-fit: with one or two photos the tiles keep a
     sensible width instead of stretching across the whole page. */
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  display: block;
  width: 100%;
  /* Fixed ratio so photos taken on different phones still tile evenly. */
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--neutral-bg);
}

.gallery-item figcaption {
  padding: 0.7rem 0.9rem;
  font-size: 0.88rem;
  color: var(--ink-2);
}

/* The tile is a button so the photo is reachable by keyboard and announced as
   activatable, not just clickable by mouse. */
.gallery-item button.gallery-open {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  cursor: zoom-in;
  text-align: left;
  line-height: 0;
}
.gallery-item button.gallery-open:hover { background: none; transform: none; box-shadow: none; }
.gallery-item button.gallery-open:focus-visible { outline: 2px solid var(--primary); outline-offset: -2px; }

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* --- Lightbox --- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(3, 6, 18, 0.92);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.lightbox[hidden] { display: none; }

.lightbox-figure {
  margin: 0;
  max-width: min(1100px, 100%);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: center;
}
.lightbox-figure img {
  display: block;
  max-width: 100%;
  /* Leaves room for the caption and the close button rather than letting a
     tall portrait photo push them off-screen. */
  max-height: calc(100vh - 9rem);
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  background: var(--surface);
}
.lightbox-figure figcaption {
  color: var(--ink-2);
  font-size: 0.95rem;
  text-align: center;
}
.lightbox-count { display: block; color: var(--text-muted); font-size: 0.82rem; margin-top: 0.2rem; }

.lightbox-btn {
  position: absolute;
  background: rgba(15, 23, 48, 0.85);
  border: 1px solid var(--border);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}
.lightbox-btn:hover { background: var(--primary); border-color: var(--primary); transform: none; box-shadow: none; }
.lightbox-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.lightbox-btn svg { width: 20px; height: 20px; }
.lightbox-close { top: 1rem; right: 1rem; }
.lightbox-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover, .lightbox-next:hover { transform: translateY(-50%); }
/* One photo needs no paging arrows. */
.lightbox.single .lightbox-prev, .lightbox.single .lightbox-next { display: none; }

@media (max-width: 560px) {
  .lightbox { padding: 1rem 0.75rem; }
  .lightbox-prev { left: 0.35rem; }
  .lightbox-next { right: 0.35rem; }
  .lightbox-figure img { max-height: calc(100vh - 11rem); }
}

/* --- Recent work strip (home page) --- */

.work-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }
.work-strip .gallery-item { margin: 0; }
.section-cta { text-align: center; margin-top: 1.75rem; }
