/* FlatheadPups scaffold (BgAI-BUILD-003). Brand guide tokens. */

:root {
  /* Brand palette */
  --bg: #F7F3ED;
  --bg-warm: #F0EAE0;
  --surface: #FDFCFA;
  --text: #2C2822;
  --text-secondary: #6B6358;
  --text-muted: #9E958A;
  --accent: #4A7C59;
  --accent-hover: #3A6347;
  --accent-light: #E3F0E8;
  --accent-glow: rgba(74, 124, 89, 0.12);
  --warm: #C4882F;
  --warm-light: #FBF0E0;
  --river: #5B8FA8;

  /* Status */
  --status-available: #4A7C59;
  --status-reserved: #C4882F;
  --status-sold: #9E958A;
  --premium: #8B6914;

  /* Shadows (accent-tinted, never cool black) */
  --shadow-sm: 0 1px 4px rgba(74, 124, 89, 0.06), 0 1px 2px rgba(107, 99, 88, 0.04);
  --shadow-md: 0 4px 16px rgba(74, 124, 89, 0.10), 0 2px 4px rgba(107, 99, 88, 0.06);
  --shadow-lg: 0 8px 32px rgba(74, 124, 89, 0.12), 0 4px 8px rgba(107, 99, 88, 0.07);
  --shadow-glow: 0 4px 20px rgba(74, 124, 89, 0.14), 0 0 40px rgba(74, 124, 89, 0.06);

  /* Borders */
  --border: rgba(74, 124, 89, 0.10);
  --border-warm: rgba(196, 136, 47, 0.12);

  /* Footer */
  --footer-bg: #2C3A2F;
  --footer-text: #E8E5E0;

  /* Layout */
  --max: 72rem;
  --pad: clamp(1rem, 3vw, 2rem);

  /* Fonts */
  --font-logo: 'Outfit', sans-serif;
  --font-heading: 'Lexend', sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Aliases for rules not yet migrated to new names */
  --card-bg: var(--surface);
  --card-border: var(--border);
  --border-card: var(--border);
  --divider: var(--border);
  --font: var(--font-body);
}

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

html {
  font-family: var(--font-body);
  font-size: 100%;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(74, 124, 89, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(196, 136, 47, 0.04) 0%, transparent 40%),
    radial-gradient(ellipse at 80% 60%, rgba(74, 124, 89, 0.03) 0%, transparent 45%),
    var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 2px solid var(--accent);
  box-shadow: var(--shadow-sm);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.75rem var(--pad);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
}

.site-logo {
  margin-right: auto;
  font-family: var(--font-logo);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  text-decoration: none;
}

.site-logo:hover {
  color: var(--text);
}

.logo-pups {
  color: var(--accent);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.site-nav a,
.site-nav button.nav-contact-btn {
  font-weight: 500;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.site-nav button.nav-contact-btn {
  font: inherit;
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav button.nav-contact-btn:hover {
  background: var(--accent-light);
  color: var(--accent);
}

.site-nav a[aria-current="page"] {
  color: var(--accent);
  font-weight: 700;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 767px) {
  .nav-toggle {
    display: flex;
  }

  .site-header__inner {
    position: relative;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border-card);
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.08);
    flex-direction: column;
    padding: 0.5rem 0;
    z-index: 100;
  }

  .site-nav.nav-open {
    display: flex;
  }

  .site-nav a,
  .site-nav button.nav-contact-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0;
  }
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: flex !important;
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    flex-direction: row;
    padding: 0;
  }
}

/* Hero carousel (full width, between header and main) */
.hero-carousel {
  position: relative;
  width: 100%;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border-radius: 0;
}

.carousel-track {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  display: flex;
  flex-direction: row;
  width: calc(25vw * 13);
  animation: heroSlide 30s linear infinite;
}

.carousel-track img {
  flex: 0 0 25vw;
  width: 25vw;
  min-width: 25vw;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* One full-width slide on small screens so puppies are visible (not thin strips) */
@media (max-width: 767px) {
  .carousel-track {
    width: calc(100vw * 13);
  }

  .carousel-track img {
    flex: 0 0 100vw;
    width: 100vw;
    min-width: 100vw;
  }
}

/* Move by exactly 9 slide widths; % is relative to track width (13 slides) */
@keyframes heroSlide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-100% * 9 / 13));
  }
}

@media (prefers-reduced-motion: reduce) {
  .carousel-track {
    animation: none;
    transform: translateX(0);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(26, 35, 28, 0.7) 0%,
      rgba(26, 35, 28, 0.4) 35%,
      rgba(26, 35, 28, 0.5) 65%,
      rgba(26, 35, 28, 0.85) 100%
    ),
    radial-gradient(ellipse at 50% 30%, rgba(74, 124, 89, 0.2) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem var(--pad);
  color: #e8e5e0;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1rem;
  color: #fff;
}

/* Hero heading: white / light green tint with shadow (legible on photo carousel) */
.hero-w1,
.hero-w2,
.hero-w3,
.hero-w4 {
  color: #fff;
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.45),
    0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-w3,
.hero-w4 {
  color: #c8e6cf;
}

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(232, 229, 224, 0.85);
  max-width: 38rem;
  margin: 0 auto 2rem;
  line-height: 1.55;
}

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

.btn-hero-primary {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
  padding: 0.8rem 1.75rem;
  font-weight: 700;
  border-radius: 8px;
}

.btn-hero-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-hero-ghost {
  background: transparent;
  color: #e8e5e0;
  border: 2px solid rgba(232, 229, 224, 0.25);
  padding: 0.8rem 1.75rem;
  font-weight: 700;
  border-radius: 8px;
}

.btn-hero-ghost:hover {
  border-color: rgba(232, 229, 224, 0.5);
  color: #fff;
  background: transparent;
}

.hero-carousel a.btn-hero-ghost:hover {
  background: transparent;
  color: #fff;
}

.section-divider {
  display: flex;
  justify-content: center;
  padding: 2rem 0;
}

.section-divider svg {
  width: 100%;
  max-width: 500px;
  height: auto;
}

main {
  flex: 1;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
}

h1 {
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.375rem, 2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.3;
  margin: 2rem 0 1rem;
}

h3 {
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  font-weight: 600;
  line-height: 1.3;
  margin: 1.5rem 0 0.5rem;
}

p {
  margin: 0 0 1rem;
  font-size: clamp(1rem, 1.2vw, 1.0625rem);
}

.grid-puppies {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-puppies {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1280px) {
  .grid-puppies {
    grid-template-columns: repeat(3, 1fr);
  }
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.25rem;
  padding-top: 0.5rem;
}

.puppy-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.puppy-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow:
    var(--shadow-lg),
    0 0 24px var(--accent-glow),
    0 8px 24px rgba(74, 124, 89, 0.08);
}

.puppy-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.puppy-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-warm);
}

.puppy-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform-origin: center top;
  display: block;
  transition: transform 0.3s ease;
}

.puppy-card:hover .puppy-card__img img {
  transform: scale(1.03);
}

.puppy-card__body {
  padding: 1rem;
}

.puppy-card__name {
  font-weight: 700;
  font-size: 1.125rem;
  margin: 0 0 0.25rem;
}

.puppy-card__meta {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0 0 0.5rem;
}

.puppy-card__price {
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0;
}

.puppy-card__price-hidden {
  visibility: hidden;
}

.badge {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 0.5rem;
}

.badge-available {
  color: var(--status-available);
}

.badge-reserved {
  color: var(--status-reserved);
}

.badge-sold {
  color: var(--status-sold);
}

.badge-premium {
  color: var(--premium);
}

.btn {
  display: inline-block;
  padding: 0.65rem 1.25rem;
  min-height: 2.75rem;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--accent-hover);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-secondary:hover {
  background: var(--accent-light);
  color: var(--accent-hover);
  border-color: var(--accent-hover);
}

/* Puppy detail: split hero + detail grid */
.puppy-hero-split {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.puppy-hero-split__img {
  flex: 0 0 auto;
}

.puppy-hero-split__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.puppy-hero-split__info h1 {
  margin-top: 0;
}

.puppy-hero-frame {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.puppy-hero-frame img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.puppy-hero-badge {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 2;
}

.puppy-hero-badge .badge {
  margin-bottom: 0;
  box-shadow: var(--shadow-sm);
}

article .puppy-description {
  font-size: clamp(1.05rem, 1.25vw, 1.125rem);
  line-height: 1.65;
  color: var(--text);
  max-width: 42rem;
}

.puppy-cta-early {
  margin: 0 0 1.75rem;
  max-width: 42rem;
}

.puppy-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 0 0 2rem;
}

.puppy-detail-item {
  background: var(--surface);
  border: 1px solid var(--border-card);
  border-radius: 8px;
  padding: 0.75rem 1rem;
}

.puppy-detail-item .detail-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.puppy-detail-item .detail-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.puppy-cta-section {
  margin-top: 0.5rem;
}

.puppy-cta-section .btn {
  margin-top: 0.25rem;
}

.puppy-cta-pair {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.puppy-cta-pair p {
  margin: 0;
}

@media (min-width: 768px) {
  .puppy-hero-split {
    flex-direction: row;
    align-items: flex-start;
    gap: 2.5rem;
  }

  .puppy-hero-split__img {
    flex: 0 0 50%;
    max-width: 480px;
  }

  .puppy-hero-split__info {
    flex: 1 1 auto;
    padding-top: 0.5rem;
  }
}

.parents-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 0 0 0.5rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .parents-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.parent-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

a.parent-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.parent-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow:
    var(--shadow-lg),
    0 0 24px var(--accent-glow),
    0 8px 24px rgba(74, 124, 89, 0.08);
}

.parent-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-warm);
}

.parent-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.parent-card__body {
  padding: 1rem;
}

.parent-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  margin: 0 0 0.35rem;
}

.parent-card__breed {
  font-size: 0.95rem;
  margin: 0 0 0.35rem;
  color: var(--text);
}

.parent-card__meta {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0 0 0.75rem;
}

.parent-card__desc {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 0;
}

.parents-intro {
  margin-bottom: 1.5rem;
}

.gallery-page {
  width: 100%;
}

.gallery-intro,
.gallery-go-home {
  max-width: 44rem;
}

.gallery-intro {
  margin-bottom: 1rem;
}

.gallery-go-home {
  margin-bottom: 1.25rem;
}

.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 2.5rem var(--pad);
  text-align: center;
  font-size: 0.9rem;
}

.footer-brand {
  font-family: var(--font-logo);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.footer-brand .logo-pups {
  color: rgba(123, 196, 150, 0.8);
}

.footer-location {
  color: rgba(232, 229, 224, 0.6);
  margin-bottom: 0.75rem;
}

.site-footer a {
  color: rgba(123, 196, 150, 0.7);
  text-decoration: none;
}

.site-footer a:hover {
  color: rgba(123, 196, 150, 1);
}

.error-page {
  text-align: center;
  padding: 3rem 1rem;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: var(--card-bg);
  padding: 0.5rem 1rem;
}

.puppy-details {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.puppy-details th {
  text-align: left;
  padding: 0.5rem 1rem 0.5rem 0;
  color: var(--text-secondary);
  font-weight: 400;
  width: 40%;
  border-bottom: 1px solid var(--divider);
}

.puppy-details td {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--divider);
}

.contact-intro {
  margin-bottom: 0.25rem;
}

.contact-card {
  max-width: 480px;
  margin: 0 auto;
  padding: 1.75rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.contact-location {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.contact-email-wrap {
  margin: 0;
}

.contact-email-wrap .btn {
  margin: 0;
}

.puppy-description {
  margin: 0 0 1rem;
  max-width: 42rem;
}

.puppy-status-note {
  color: var(--text-secondary);
  margin: 0 0 1rem;
}

.gap-note {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

.about-page {
  max-width: 680px;
  margin: 0 auto;
}

.about-section {
  margin-bottom: 2.5rem;
}

.about-section p {
  margin-bottom: 1rem;
}

.about-cta {
  margin-top: 1.25rem;
  margin-bottom: 0;
}

/* ===== Contact Modal ===== */
.contact-modal {
  border: none;
  border-radius: 12px;
  padding: 0;
  max-width: 480px;
  width: calc(100% - 2rem);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  overflow: visible;
}

.contact-modal::backdrop {
  background: rgba(44, 40, 34, 0.5);
  backdrop-filter: blur(2px);
}

.contact-modal__inner {
  padding: 2rem;
  position: relative;
}

.contact-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-secondary);
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.contact-modal__close:hover {
  color: var(--text);
  background: var(--accent-light);
}

.contact-modal__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 0.25rem;
}

.contact-modal__subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0 0 1.25rem;
}

.contact-form__field {
  margin-bottom: 1rem;
}

.contact-form__field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  font-size: 1rem;
  font-family: var(--font-body);
  border: 1px solid var(--border-card);
  border-radius: 6px;
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.2s ease;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form__submit {
  width: 100%;
  margin-top: 0.5rem;
  font-size: 1rem;
  padding: 0.75rem 1.25rem;
}

.contact-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact-form__status {
  text-align: center;
  font-size: 0.875rem;
  margin: 0.75rem 0 0;
  min-height: 1.25rem;
}

.contact-form__status-success {
  color: var(--accent);
  font-weight: 600;
}

.contact-form__status-error {
  color: #b54a4a;
  font-weight: 600;
}

button.btn {
  font-family: var(--font-body);
  line-height: 1.4;
}

@media (max-width: 767px) {
  .contact-modal {
    max-width: 100%;
    width: calc(100% - 1rem);
    margin: 0.5rem auto;
  }

  .contact-modal__inner {
    padding: 1.5rem;
  }
}

/* Hero title (client CR 2026-04: two-line AMD heading) */
.hero-title .hero-h1-line {
  display: block;
}

.hero-title .hero-h1-line + .hero-h1-line {
  margin-top: 0.2em;
}

.home-goal {
  margin-top: 0.75rem;
  font-weight: 500;
}

/* Parent DNA blocks */
.parent-dna {
  margin-top: 1rem;
  text-align: left;
}

.parent-dna__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--text-dark, #2c2822);
}

.parent-dna__list {
  margin: 0;
  padding-left: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Gallery buyer info (addendum 2026-04-06) */
.gallery-buyer-info {
  margin: 1.75rem auto 0;
  max-width: 42rem;
  text-align: left;
}

.gallery-buyer-sub {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.25rem 0 0.5rem;
  color: var(--text-dark, #2c2822);
}

.gallery-buyer-info .gallery-buyer-sub:first-of-type {
  margin-top: 0.75rem;
}

.gallery-buyer-p {
  margin: 0.4rem 0;
  line-height: 1.55;
}
