/* ZAUCTION — Lot 01 evening sale */

:root {
  --black: #0a0a0a;
  --ink: #141414;
  --charcoal: #1c1c1c;
  --ivory: #f3ead8;
  --cream: #ebe2d0;
  --warm: #d9cbb3;
  --muted: #9a9080;
  --gold: #b08d57;
  --gold-soft: #c4a574;
  --line: rgba(243, 234, 216, 0.14);
  --line-strong: rgba(176, 141, 87, 0.55);
  --danger: #c45c4a;
  --ok: #6b8f71;
  --serif: "Cormorant Garamond", "Didot", "Bodoni MT", Georgia, serif;
  --sans: "Outfit", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1120px;
  --narrow: 680px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--ivory);
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--black);
  padding: 0.75rem 1rem;
  z-index: 100;
  font-weight: 500;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #0a0a0a;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-mark {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.header-nav {
  display: flex;
  gap: 1.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
}

.header-nav a {
  color: var(--warm);
  text-decoration: none;
}

.header-nav a:hover {
  color: var(--ivory);
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lot-chip {
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 0.35rem 0.65rem;
}

.header-status {
  color: var(--gold);
}

.header-status.is-closed {
  color: var(--danger);
}

/* Hero */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  background: var(--black);
}

.hero-media {
  position: relative;
  background: var(--charcoal);
  overflow: hidden;
  min-height: 70vh;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to right,
    transparent 55%,
    rgba(10, 10, 10, 0.35) 100%
  );
}

.hero-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 3.5rem);
  background: var(--black);
  border-left: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

.hero-title {
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.lot-num {
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}

.lot-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--ivory);
}

.hero-lede {
  margin: 0 0 2rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--warm);
  max-width: 22ch;
}

.hero-stats {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--line);
}

.stat-rule {
  width: 1px;
  background: var(--line-strong);
  align-self: stretch;
}

.stat-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.stat-value {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
  color: var(--ivory);
}

.stat-value--sm {
  font-size: 1.05rem;
  line-height: 1.35;
  max-width: 14ch;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}

.cd-unit {
  background: var(--charcoal);
  border: 1px solid var(--line);
  padding: 0.85rem 0.4rem;
  text-align: center;
}

.cd-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--ivory);
  font-variant-numeric: tabular-nums;
}

.cd-lab {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-sold {
  margin: 0 0 1.25rem;
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 1.75rem;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:hover {
  background: var(--gold);
  color: var(--black);
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  color: var(--black);
}

.btn-block {
  width: 100%;
}

.hero-charity-note {
  margin: 1.25rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 36ch;
  line-height: 1.5;
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
  border-top: 1px solid var(--line);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-inner.narrow {
  max-width: var(--narrow);
}

.section-head {
  margin-bottom: 2.25rem;
}

.section-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: 0.01em;
}

/* Lot essay */
.lot-essay {
  background: var(--ink);
}

.essay-body p {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--cream);
  margin: 0 0 1.35rem;
}

.lot-facts {
  margin: 2.5rem 0 0;
  padding-top: 2rem;
  border-top: 1px solid var(--line-strong);
  display: grid;
  gap: 1.25rem;
}

.lot-facts div {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1rem;
  align-items: baseline;
}

.lot-facts dt {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

.lot-facts dd {
  margin: 0;
  font-size: 0.95rem;
  color: var(--warm);
}

/* Gallery */
.gallery {
  background: var(--black);
}

.gallery-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--charcoal);
  cursor: zoom-in;
  text-align: left;
  color: inherit;
  font: inherit;
  transition: border-color 0.25s var(--ease);
}

.gallery-item:hover {
  border-color: var(--gold);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--charcoal);
}

.gallery-cap {
  display: block;
  padding: 0.85rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Bid desk */
.bid-desk {
  background: var(--ink);
}

.bid-layout {
  display: grid;
  gap: 3rem;
}

.bid-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem 2.5rem;
  align-items: start;
}

.bid-current {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}

.desk-amount {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 500;
  line-height: 1;
}

.desk-leader {
  margin: 0.65rem 0 0;
  color: var(--warm);
  font-size: 0.95rem;
}

.desk-meta {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  justify-content: center;
  font-size: 0.88rem;
  color: var(--cream);
}

.meta-k {
  display: inline-block;
  min-width: 7.5rem;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bid-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.field label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--line);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  padding: 0.9rem 1rem;
  border-radius: 0;
  appearance: none;
}

.field input::placeholder {
  color: rgba(154, 144, 128, 0.55);
}

.field input:focus {
  border-color: var(--gold);
  outline: none;
}

.field-hint {
  margin: 0.4rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.amount-wrap {
  position: relative;
}

.amount-prefix {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}

.amount-wrap input {
  padding-left: 1.85rem;
}

/* hide number spinners */
.amount-wrap input::-webkit-outer-spin-button,
.amount-wrap input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.amount-wrap input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.form-error {
  margin: 0;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(196, 92, 74, 0.45);
  background: rgba(196, 92, 74, 0.1);
  color: #e8b4ab;
  font-size: 0.9rem;
}

.form-success {
  margin: 0;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(107, 143, 113, 0.45);
  background: rgba(107, 143, 113, 0.1);
  color: #c5d8c8;
  font-size: 0.9rem;
}

.conditions {
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.25);
}

.conditions h3 {
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.conditions ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--warm);
  font-size: 0.88rem;
  line-height: 1.55;
}

.conditions li + li {
  margin-top: 0.55rem;
}

.bid-history h3 {
  margin: 0 0 1.25rem;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
}

.history-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.history-list li {
  display: grid;
  grid-template-columns: 6rem 1fr auto;
  gap: 1rem;
  align-items: baseline;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.history-list .amt {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ivory);
}

.history-list .who {
  color: var(--warm);
}

.history-list .when {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-align: right;
}

.history-empty {
  display: block !important;
  color: var(--muted);
  font-style: italic;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

/* Charity — visually separated, sincere */
.charity {
  background: var(--ink);
  color: var(--ivory);
  border-top: 1px solid var(--line);
  position: relative;
}

.charity::before {
  content: "";
  display: block;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
  margin: 0 auto;
  max-width: var(--narrow);
}

.charity .eyebrow {
  color: var(--gold);
}

.charity .section-head h2 {
  color: var(--ivory);
}

.charity-body p {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--warm);
  margin: 0 0 1.2rem;
}

.charity-pledge {
  padding: 1.25rem 0;
  border-top: 1px solid rgba(176, 141, 87, 0.35);
  border-bottom: 1px solid rgba(176, 141, 87, 0.35);
  font-size: 1.2rem !important;
}

.charity-links {
  list-style: none;
  margin: 1.75rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.charity-links a {
  color: var(--gold-soft);
  font-family: var(--sans);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  font-weight: 400;
}

.charity-links a:hover {
  color: var(--ivory);
}

.disclaimer {
  margin-top: 2rem !important;
  font-family: var(--sans) !important;
  font-size: 0.8rem !important;
  line-height: 1.55 !important;
  color: var(--muted) !important;
}


/* Charity — expanded overhead report */
.charity-inner {
  max-width: 760px;
}

.charity-h3 {
  margin: 2.25rem 0 1rem;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.55rem;
  line-height: 1.25;
  color: var(--ivory);
  letter-spacing: 0.01em;
}

.charity-h3:first-of-type {
  margin-top: 1.75rem;
}

.charity-body .fy-prior {
  font-family: var(--sans) !important;
  font-size: 0.82rem !important;
  color: var(--muted) !important;
  margin: 0.35rem 0 0 !important;
}

.expense-bar {
  margin: 1.5rem 0 1.75rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(176, 141, 87, 0.4);
  background: rgba(0, 0, 0, 0.35);
}

.expense-bar-track {
  display: flex;
  width: 100%;
  height: 1.1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.45);
}

.expense-seg {
  display: block;
  height: 100%;
}

.expense-seg--program { background: #6b8f71; }
.expense-seg--mg { background: #b08d57; }
.expense-seg--fund { background: #8a6a3a; }

.expense-legend {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--warm);
  line-height: 1.45;
}



.swatch {
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  margin-right: 0.55rem;
  vertical-align: -0.05rem;
  border: 1px solid var(--line);
}

.swatch--program { background: #3d5a3f; }
.swatch--mg { background: #b08d57; }
.swatch--fund { background: #8a6a3a; }

.accordion {
  margin: 1.5rem 0 0.5rem;
  border-top: 1px solid rgba(176, 141, 87, 0.4);
}

.acc-item {
  border-bottom: 1px solid rgba(176, 141, 87, 0.35);
}

.acc-heading {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.acc-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.75rem 1rem;
  align-items: center;
  padding: 1rem 0.15rem;
  border: 0;
  background: transparent;
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s var(--ease);
}

.acc-trigger:hover {
  color: var(--gold-soft);
}

.acc-trigger:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 2px;
}

.acc-title {
  line-height: 1.35;
}

.acc-amount {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--gold-soft);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.acc-chevron {
  width: 0.55rem;
  height: 0.55rem;
  border-right: 1.5px solid var(--muted);
  border-bottom: 1.5px solid var(--muted);
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease);
  justify-self: end;
}

.acc-trigger[aria-expanded="true"] .acc-chevron {
  transform: rotate(-135deg);
  margin-top: 0.25rem;
}

.acc-panel {
  padding: 0 0.15rem 1.15rem;
}

.acc-panel[hidden] {
  display: none !important;
}

.acc-panel p {
  font-family: var(--serif);
  font-size: 1.05rem !important;
  line-height: 1.65;
  color: var(--warm);
  margin: 0 0 0.65rem;
}

.acc-panel .acc-fig {
  font-family: var(--sans) !important;
  font-size: 0.92rem !important;
  color: var(--ivory) !important;
  margin: 0.75rem 0 0.25rem !important;
}

.sources-note {
  margin-top: 1.25rem !important;
  font-family: var(--sans) !important;
  font-size: 0.72rem !important;
  line-height: 1.55 !important;
  color: var(--muted) !important;
}

@media (max-width: 520px) {
  .acc-trigger {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
  }

  .acc-amount {
    grid-column: 1;
    grid-row: 2;
    font-size: 0.98rem;
  }

  .acc-chevron {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .expense-legend {
    font-size: 0.82rem;
  }
}

/* Footer */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--line);
  padding: 3rem 0 2.5rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.footer-brand img {
  margin: 0 auto 0.85rem;
  height: 32px;
  width: auto;
}

.footer-brand p {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-rule {
  width: 4rem;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
}

.footer-disclaimer {
  max-width: 42rem;
  margin: 0 auto 1.25rem;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--muted);
}

.footer-copy {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(154, 144, 128, 0.7);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(5, 5, 5, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem 2rem;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.65rem 1rem;
  cursor: pointer;
}

.lightbox-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.lightbox-figure {
  margin: 0;
  max-width: min(920px, 100%);
  max-height: 100%;
}

.lightbox-figure img {
  max-height: calc(100vh - 7rem);
  max-height: calc(100dvh - 7rem);
  width: auto;
  margin: 0 auto;
  object-fit: contain;
}

.lightbox-figure figcaption {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

body.lightbox-open {
  overflow: hidden;
}

/* Responsive */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-media {
    min-height: 58vh;
    max-height: 72vh;
  }

  .hero-vignette {
    background: linear-gradient(
      to top,
      rgba(10, 10, 10, 0.55) 0%,
      transparent 40%
    );
  }

  .hero-panel {
    border-left: none;
    border-top: 1px solid var(--line);
    padding-top: 2.5rem;
    padding-bottom: 3rem;
  }

  .header-nav {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .bid-panel {
    grid-template-columns: 1fr;
  }

  .lot-facts div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}

@media (max-width: 520px) {
  .header-inner {
    padding: 0.75rem 1rem;
  }

  .brand-mark {
    height: 22px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-rule {
    width: 100%;
    height: 1px;
  }

  .countdown {
    gap: 0.4rem;
  }

  .cd-unit {
    padding: 0.7rem 0.2rem;
  }

  .history-list li {
    grid-template-columns: 4.5rem 1fr;
    grid-template-rows: auto auto;
  }

  .history-list .when {
    grid-column: 1 / -1;
    text-align: left;
  }

  .charity::before {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}

/* Featured real lot photo spans wider in gallery */
.gallery-grid--primary {
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: stretch;
}

.gallery-featured .gallery-item img {
  aspect-ratio: 3 / 4;
  object-position: center 20%;
}

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


.charity-pledge.match-pledge {
  margin-top: 0.75rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 220, 120, 0.35);
  border-radius: 10px;
  background: rgba(255, 200, 80, 0.08);
  color: #f5f0e6;
}
.charity-pledge.match-pledge strong {
  color: #ffd978;
}


.pause-banner {
  margin: 0;
  padding: 0.9rem 1.25rem;
  background: #3a1a12;
  border-bottom: 1px solid rgba(255, 160, 100, 0.35);
  color: #ffe8d8;
  font-size: 0.95rem;
  line-height: 1.45;
  text-align: center;
}
.pause-banner strong { color: #ffb080; }
.header-status.is-paused {
  color: #ffb080;
}
.pause-desk-note {
  max-width: 42rem;
  margin: 0 0 1.25rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 160, 100, 0.3);
  border-radius: 10px;
  background: rgba(255, 120, 60, 0.08);
  color: #f0e6dc;
}
