/* LTM Detailing — styles
   Every colour, size, and space is a token in :root. See CLAUDE.md §4.
   Nothing below :root may use a raw hex value. */

:root {
  /* colour */
  --bg: #000000;
  --bg-elev: #141619;
  --bg-raised: #1c1f24;
  --line: #2a2e35;
  --line-strong: #3b4048;
  --text: #f2f3f5;
  --text-muted: #a3a8b1;
  --chrome: #c9cdd3;
  --chrome-hi: #eef0f3;
  --accent: #1e8ef7;
  --accent-hover: #4da6ff;
  --accent-ink: #06182e;
  --accent-soft: rgba(30, 142, 247, 0.12);
  --danger: #ff5c5c;
  --ph: rgba(255, 196, 0, 0.25);
  --label: #ffc400;
  --scrim: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0) 75%);

  /* type */
  --font-display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --font-body: Barlow, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --fs-hero: clamp(2.75rem, 8vw, 5.5rem);
  --fs-h1: clamp(2.25rem, 6vw, 4rem);
  --fs-h2: clamp(1.75rem, 4vw, 2.75rem);
  --fs-h3: 1.375rem;
  --fs-body: 1.0625rem;
  --fs-small: 0.9375rem;
  --fs-caption: 0.8125rem;
  --lh-body: 1.55;
  --lh-display: 0.95;

  /* space */
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-6: 24px;
  --s-8: 32px; --s-12: 48px; --s-16: 64px; --s-24: 96px;
  --gutter: clamp(16px, 4vw, 40px);
  --section: var(--s-16);
  --measure: 72rem;
  --measure-text: 38rem;

  /* shape */
  --r-sm: 6px; --r-md: 12px; --r-pill: 999px;
  --shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  --tap: 44px;

  /* motion */
  --t-fast: 160ms ease;
}
@media (min-width: 900px) { :root { --section: var(--s-24); } }

/* ---------- reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
}
img, picture, video { display: block; max-width: 100%; height: auto; }
a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 0.15em; }
a:hover { color: var(--accent-hover); }
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: var(--lh-display);
  color: var(--chrome);
  margin: 0 0 var(--s-4);
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); letter-spacing: 0.03em; }
p { margin: 0 0 var(--s-4); max-width: var(--measure-text); }
.muted { color: var(--text-muted); }
.small { font-size: var(--fs-small); }
.caption { font-size: var(--fs-caption); color: var(--text-muted); }
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}
.skip {
  position: absolute; left: var(--s-4); top: -100px;
  background: var(--accent); color: var(--accent-ink);
  padding: var(--s-2) var(--s-4); border-radius: var(--r-sm); z-index: 100;
}
.skip:focus { top: var(--s-4); }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* ---------- layout ---------- */
.wrap { width: min(100% - 2 * var(--gutter), var(--measure)); margin-inline: auto; }
.section { padding-block: var(--section); }
.section + .section { border-top: 1px solid var(--line); }
.section-head { margin-bottom: var(--s-8); }
.section-head p { margin-bottom: 0; }
.grid-2 { display: grid; gap: var(--s-8); }
@media (min-width: 760px) { .grid-2 { grid-template-columns: 1fr 1fr; align-items: start; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
  min-height: var(--tap); padding: var(--s-3) var(--s-6);
  font-family: var(--font-body); font-weight: 600; font-size: var(--fs-body);
  border-radius: var(--r-sm); border: 1px solid transparent;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background-color var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: var(--accent-hover); color: var(--accent-ink); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--chrome); color: var(--text); background: var(--bg-elev); }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--s-3); }
.btn svg { width: 1.1em; height: 1.1em; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--bg); border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
  min-height: 64px;
}
.brand { display: flex; align-items: center; gap: var(--s-3); text-decoration: none; color: var(--chrome); }
.brand img { width: 56px; height: 56px; border-radius: var(--r-sm); }
.brand span { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 1.5rem; letter-spacing: 0.02em; line-height: 1; }
.brand small { display: block; color: var(--accent); font-size: 0.7rem; letter-spacing: 0.25em; }
.nav { display: none; gap: var(--s-6); align-items: center; }
.nav a { color: var(--text); text-decoration: none; font-weight: 600; font-size: var(--fs-small); padding: var(--s-2) 0; border-bottom: 2px solid transparent; }
.nav a:hover { color: var(--chrome-hi); }
.nav a[aria-current="page"] { border-bottom-color: var(--accent); }
.header-actions { display: flex; align-items: center; gap: var(--s-3); }
.header-actions .btn-call { display: inline-flex; }
.menu-btn { display: inline-flex; align-items: center; justify-content: center; width: var(--tap); height: var(--tap); background: transparent; border: 1px solid var(--line-strong); border-radius: var(--r-sm); color: var(--text); cursor: pointer; }
.menu-btn svg { width: 22px; height: 22px; }
.mobile-nav { display: none; border-top: 1px solid var(--line); background: var(--bg); }
.mobile-nav[data-open="true"] { display: block; }
.mobile-nav a { display: block; padding: var(--s-4) var(--gutter); color: var(--text); text-decoration: none; font-weight: 600; border-bottom: 1px solid var(--line); }
.mobile-nav a[aria-current="page"] { color: var(--accent); }
@media (min-width: 900px) {
  .nav { display: flex; }
  .menu-btn, .mobile-nav { display: none !important; }
}

/* ---------- hero ---------- */
.hero { position: relative; isolation: isolate; }
.hero .compare { border-radius: 0; box-shadow: none; }
.hero-copy {
  position: relative; padding-block: var(--s-8) var(--s-12);
}
@media (min-width: 900px) {
  .hero-copy { display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--s-12); align-items: end; }
}
.hero-title { font-size: var(--fs-hero); color: var(--chrome-hi); margin-bottom: var(--s-4); max-width: 12ch; }
.hero-lede { font-size: 1.25rem; color: var(--text); max-width: 34rem; margin-bottom: var(--s-6); }
.hero-aside { border-left: 2px solid var(--accent); padding-left: var(--s-6); }
.hero-aside p { margin-bottom: var(--s-2); }
.hero-aside strong { color: var(--chrome-hi); }

/* ---------- before / after compare ----------
   Markup: <div class="compare" data-compare>
             <img class="compare-before" ...>  (full)
             <div class="compare-after-clip"><img class="compare-after" ...></div>
             <input type="range" class="compare-range" ...>
             <div class="compare-handle" aria-hidden="true"></div>
             <span class="compare-tag compare-tag-before">Before</span>
             <span class="compare-tag compare-tag-after">After</span>
           </div>
   Without JS the range is hidden and both images stack (see .no-js). */
.compare {
  --pos: 50%;
  position: relative; overflow: hidden; user-select: none;
  aspect-ratio: 3 / 4; background: var(--bg-elev);
  border-radius: var(--r-md); box-shadow: var(--shadow);
  touch-action: pan-y;
}
.compare.is-wide { aspect-ratio: 16 / 10; }
.compare img, .compare picture { position: absolute; inset: 0; width: 100%; height: 100%; }
.compare img { object-fit: cover; }
.compare picture img { position: static; }
.compare-after-clip { position: absolute; inset: 0; clip-path: inset(0 0 0 var(--pos)); }
.compare-after-clip picture { position: absolute; inset: 0; }
.compare-handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px;
  background: var(--chrome-hi); transform: translateX(-50%); pointer-events: none;
}
.compare-handle::after {
  content: ""; position: absolute; top: 50%; left: 50%; width: 48px; height: 48px;
  transform: translate(-50%, -50%); border-radius: var(--r-pill);
  background: var(--accent); border: 3px solid var(--chrome-hi);
  box-shadow: var(--shadow);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2306182e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 6 5 12l4 6M15 6l4 6-4 6'/%3E%3C/svg%3E");
  background-size: 26px; background-repeat: no-repeat; background-position: center;
}
.compare-range {
  position: absolute; inset: 0; width: 100%; height: 100%; margin: 0;
  opacity: 0; cursor: ew-resize; -webkit-appearance: none; appearance: none; background: transparent;
}
.compare-range:focus-visible ~ .compare-handle { outline: 3px solid var(--accent); outline-offset: 3px; }
.compare-range::-webkit-slider-thumb { -webkit-appearance: none; width: 48px; height: 100%; }
.compare-range::-moz-range-thumb { width: 48px; height: 100%; border: 0; background: transparent; }
.compare-tag {
  position: absolute; top: var(--s-4); padding: var(--s-1) var(--s-3);
  font-size: var(--fs-caption); font-weight: 600; letter-spacing: 0.04em;
  border-radius: var(--r-sm); background: rgba(0,0,0,0.65); color: var(--chrome-hi);
  pointer-events: none; backdrop-filter: none;
}
.compare-tag-before { left: var(--s-4); }
.compare-tag-after { right: var(--s-4); }
.compare-caption { margin-top: var(--s-3); }
/* no-JS fallback: stack the two images, hide the slider chrome */
.no-js .compare { aspect-ratio: auto; display: grid; gap: var(--s-2); box-shadow: none; background: transparent; }
.no-js .compare img, .no-js .compare picture { position: static; height: auto; border-radius: var(--r-md); }
.no-js .compare-after-clip { position: static; clip-path: none; }
.no-js .compare-range, .no-js .compare-handle, .no-js .compare-tag { display: none; }
.no-js .compare::before { content: "Before, then after"; font-size: var(--fs-caption); color: var(--text-muted); }

/* ---------- steps (a real sequence) ---------- */
.steps { display: grid; gap: var(--s-6); counter-reset: step; padding: 0; margin: 0; list-style: none; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); gap: var(--s-8); } }
.steps li { counter-increment: step; padding-top: var(--s-4); border-top: 2px solid var(--line-strong); }
.steps li::before {
  content: counter(step);
  font-family: var(--font-display); font-weight: 800; font-size: 2.5rem; line-height: 1;
  color: var(--accent); display: block; margin-bottom: var(--s-3);
}
.steps h3 { margin-bottom: var(--s-2); }
.steps p { margin: 0; color: var(--text-muted); }

/* ---------- pricing matrix ---------- */
.price-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--line); border-radius: var(--r-md); }
.price-table { width: 100%; border-collapse: collapse; min-width: 640px; font-variant-numeric: tabular-nums; }
.price-table th, .price-table td { padding: var(--s-4); text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.price-table thead th { background: var(--bg-elev); color: var(--text-muted); font-weight: 600; font-size: var(--fs-small); }
.price-table thead th:not(:first-child) { text-align: right; }
.price-table tbody th { font-weight: 600; color: var(--chrome-hi); width: 34%; }
.price-table tbody th span { display: block; color: var(--text-muted); font-weight: 400; font-size: var(--fs-small); }
.price-table td { text-align: right; white-space: nowrap; }
.price-table td .dur { display: block; color: var(--text-muted); font-size: var(--fs-caption); }
.price-table tbody tr:last-child th, .price-table tbody tr:last-child td { border-bottom: 0; }
.price-note { margin-top: var(--s-4); }
.price-note strong { color: var(--chrome-hi); }
.addons { display: grid; gap: var(--s-3); padding: 0; margin: 0; list-style: none; }
@media (min-width: 760px) { .addons { grid-template-columns: 1fr 1fr; } }
.addons li { display: flex; justify-content: space-between; gap: var(--s-4); padding: var(--s-3) 0; border-bottom: 1px solid var(--line); }
.addons li span:last-child { color: var(--text-muted); white-space: nowrap; }

/* ---------- services (detail) ---------- */
.service { display: grid; gap: var(--s-4); padding-block: var(--s-8); border-top: 1px solid var(--line); }
@media (min-width: 760px) { .service { grid-template-columns: 1fr 2fr; gap: var(--s-12); } }
.service:first-of-type { border-top: 0; }
.service ul { margin: 0 0 var(--s-4); padding-left: 1.2em; color: var(--text-muted); }
.service li { margin-bottom: var(--s-1); }
.service .from { color: var(--chrome-hi); font-weight: 600; }

/* ---------- gallery ---------- */
.gallery { display: grid; gap: var(--s-8); }
@media (min-width: 760px) { .gallery { grid-template-columns: 1fr 1fr; } }
.gallery figure { margin: 0; }
.gallery figcaption { margin-top: var(--s-3); color: var(--text-muted); font-size: var(--fs-small); }
.gallery .single { border-radius: var(--r-md); overflow: hidden; background: var(--bg-elev); }
.gallery .single img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 4; }
.gallery .single.is-wide img { aspect-ratio: 16 / 10; }

/* ---------- about ---------- */
.about-photo { border-radius: var(--r-md); overflow: hidden; }
.about-photo img { width: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.facts { display: grid; gap: var(--s-3); padding: 0; margin: var(--s-6) 0 0; list-style: none; }
.facts li { display: grid; grid-template-columns: 9rem 1fr; gap: var(--s-4); padding-bottom: var(--s-3); border-bottom: 1px solid var(--line); }
.facts li span:first-child { color: var(--text-muted); }

/* ---------- forms ---------- */
.form { display: grid; gap: var(--s-6); max-width: 44rem; }
.field { display: grid; gap: var(--s-2); }
.field label, .fieldset legend { font-weight: 600; color: var(--chrome-hi); }
.field .hint { color: var(--text-muted); font-size: var(--fs-small); }
.input, select.input, textarea.input {
  width: 100%; min-height: var(--tap); padding: var(--s-3) var(--s-4);
  font: inherit; color: var(--text); background: var(--bg-raised);
  border: 1px solid var(--line-strong); border-radius: var(--r-sm);
  transition: border-color var(--t-fast);
}
.input:hover { border-color: var(--chrome); }
.input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
textarea.input { min-height: 8rem; resize: vertical; }
select.input { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a3a8b1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right var(--s-3) center; background-size: 20px; padding-right: var(--s-12); }
.fieldset { border: 0; padding: 0; margin: 0; display: grid; gap: var(--s-3); }
.fieldset legend { padding: 0; margin-bottom: var(--s-2); }
.choice { display: flex; align-items: flex-start; gap: var(--s-3); padding: var(--s-3) var(--s-4); border: 1px solid var(--line-strong); border-radius: var(--r-sm); background: var(--bg-elev); cursor: pointer; min-height: var(--tap); }
.choice:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); }
.choice input { width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--accent); flex: none; }
.choice span small { display: block; color: var(--text-muted); }
.choices { display: grid; gap: var(--s-2); }
@media (min-width: 600px) { .choices { grid-template-columns: 1fr 1fr; } }
.row-2 { display: grid; gap: var(--s-4); }
@media (min-width: 600px) { .row-2 { grid-template-columns: 1fr 1fr; } }
.row-3 { display: grid; gap: var(--s-4); }
@media (min-width: 600px) { .row-3 { grid-template-columns: 1fr 1fr 1fr; } }
.error { color: var(--danger); font-size: var(--fs-small); }
.input[aria-invalid="true"] { border-color: var(--danger); }
.form-status { padding: var(--s-4); border-radius: var(--r-sm); border: 1px solid var(--line-strong); background: var(--bg-elev); }
.honeypot { position: absolute; left: -9999px; }

/* ---------- notices ---------- */
.notice {
  display: flex; gap: var(--s-3); align-items: flex-start;
  padding: var(--s-3) var(--s-4); border-radius: var(--r-sm);
  background: var(--bg-elev); border: 1px solid var(--line-strong);
  color: var(--text-muted); font-size: var(--fs-small);
}
.notice p { margin: 0; max-width: none; }

/* ---------- CTA band ---------- */
.cta-band { border-top: 1px solid var(--line); background: var(--bg-elev); }
.cta-band .wrap { display: grid; gap: var(--s-6); padding-block: var(--s-12); }
@media (min-width: 760px) { .cta-band .wrap { grid-template-columns: 1fr auto; align-items: center; } }
.cta-band h2 { margin-bottom: var(--s-2); }
.cta-band p { margin: 0; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding-block: var(--s-12); color: var(--text-muted); font-size: var(--fs-small); }
.site-footer .wrap { display: grid; gap: var(--s-6); }
@media (min-width: 760px) { .site-footer .wrap { grid-template-columns: 1fr 1fr 1fr; } }
.site-footer h3 { font-size: 1rem; color: var(--chrome); margin-bottom: var(--s-3); }
.site-footer a { color: var(--text); text-decoration: none; }
.site-footer a:hover { color: var(--accent-hover); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--s-2); }
.site-footer .legal { grid-column: 1 / -1; padding-top: var(--s-6); border-top: 1px solid var(--line); font-size: var(--fs-caption); }

/* ---------- sticky mobile call bar ---------- */
.call-bar {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 40;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--line); border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);
}
.call-bar a { display: flex; align-items: center; justify-content: center; gap: var(--s-2); min-height: 56px; font-weight: 600; text-decoration: none; }
.call-bar a:first-child { background: var(--bg); color: var(--text); }
.call-bar a:last-child { background: var(--accent); color: var(--accent-ink); }
.call-bar svg { width: 20px; height: 20px; }
body.has-call-bar { padding-bottom: 56px; }
@media (min-width: 900px) { .call-bar { display: none; } body.has-call-bar { padding-bottom: 0; } }

/* ---------- prototype-only tools ----------
   Removed in Phase 4 along with every .ph span. */
.proto-tools {
  position: fixed; right: var(--s-3); top: 76px; z-index: 60;
  display: grid; gap: var(--s-2);
}
.proto-tools button {
  font: inherit; font-size: var(--fs-caption); font-weight: 600;
  padding: var(--s-2) var(--s-3); border-radius: var(--r-sm);
  background: var(--bg-raised); color: var(--text); border: 1px solid var(--line-strong);
  cursor: pointer; opacity: 0.85;
}
.proto-tools button[aria-pressed="true"] { background: var(--label); color: var(--accent-ink); border-color: var(--label); opacity: 1; }
body.show-ph .ph { background: var(--ph); outline: 1px dashed var(--label); border-radius: 2px; }
.sec-label { display: none; }
body.show-labels .sec-label {
  display: inline-block; font-family: var(--font-body); font-size: var(--fs-caption);
  font-weight: 700; letter-spacing: 0.06em; background: var(--label); color: var(--accent-ink);
  padding: 2px 8px; border-radius: var(--r-sm); margin-bottom: var(--s-3);
}
.sample-note { max-width: none; margin: 0; text-align: center; padding: var(--s-3) var(--gutter); background: var(--bg-elev); color: var(--text-muted); font-size: var(--fs-caption); border-bottom: 1px solid var(--line); }

/* ---------- motion (opt-in only) ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ---------- hero grid & reviews (added with the page build) ---------- */
.hero-grid { display: grid; gap: var(--s-8); align-items: center; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: var(--s-16); } }
.hero-grid .compare { max-width: 520px; width: 100%; margin-inline: auto; }
@media (min-width: 900px) { .hero-grid .compare { margin-inline: 0 0; justify-self: end; } }
.hero-grid .hero-copy { padding: 0; display: block; }
.hero .caption { margin-top: var(--s-4); }

.reviews { display: grid; gap: var(--s-6); padding: 0; margin: 0; list-style: none; }
@media (min-width: 760px) { .reviews { grid-template-columns: repeat(3, 1fr); } }
.reviews blockquote { margin: 0; padding-left: var(--s-4); border-left: 2px solid var(--line-strong); }
.reviews p { margin-bottom: var(--s-3); }
.reviews cite { font-style: normal; color: var(--text-muted); font-size: var(--fs-small); }

.services-summary { display: grid; gap: var(--s-6); }
@media (min-width: 760px) { .services-summary { grid-template-columns: repeat(3, 1fr); gap: var(--s-8); } }
.services-summary article { padding-top: var(--s-4); border-top: 2px solid var(--line-strong); }
.services-summary h3 { margin-bottom: var(--s-2); }
.services-summary p { color: var(--text-muted); margin-bottom: var(--s-3); }
.services-summary .from { color: var(--chrome-hi); font-weight: 600; display: block; margin-bottom: var(--s-2); }
.why { display: grid; gap: var(--s-6); padding: 0; margin: 0; list-style: none; }
@media (min-width: 760px) { .why { grid-template-columns: 1fr 1fr; gap: var(--s-8) var(--s-12); } }
.why h3 { margin-bottom: var(--s-2); }
.why p { margin: 0; color: var(--text-muted); }
.status-focus:focus { outline: 3px solid var(--accent); outline-offset: 3px; }
@media (max-width: 899px) { .proto-tools { top: auto; bottom: 72px; } }

.cf-turnstile { min-height: 65px; }
@media (min-width: 760px) {
  .gallery > figure:first-child { grid-row: 1 / span 2; }
  .gallery > figure:last-child { grid-column: 1 / -1; }
  .gallery > figure:last-child .notice { height: auto; }
}
