/* ============================================================
   JING & TONIC — V3 ELEVATION
   SVG Logo · Cinematic Quote · Stats · Tablet Hero · Polish
   ============================================================ */

/* ── Nav SVG Logo ───────────────────────────────────────────── */
.nav-logo-svg {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
  transition: opacity 0.2s ease;
}
.nav-logo-svg:hover { opacity: 0.75; }

.nav-logo-svg .logo-mark {
  flex-shrink: 0;
}

.nav-logo-svg .logo-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav-logo-svg .logo-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--color-text);
}

.nav-logo-svg .logo-sub {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* On dark hero: make logo white */
.hero-v2 ~ * .nav-logo-svg,
.site-nav .nav-logo-svg {
  color: inherit;
}

/* ── Books Open badge — enhanced visibility ──────────────────── */
.books-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 12px 5px 9px;
  border-radius: 999px;
  position: relative;
}

.books-badge.open {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}

.books-badge.closed {
  background: rgba(255, 80, 80, 0.18);
  color: rgba(255, 200, 200, 0.95);
  border: 1px solid rgba(255, 100, 100, 0.3);
}

.books-badge::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.books-badge.open::before {
  background: #6ee7b7;
  box-shadow: 0 0 6px #6ee7b7;
  animation: badge-pulse 2s ease-in-out infinite;
}

.books-badge.closed::before {
  background: #f87171;
}

@keyframes badge-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px #6ee7b7; }
  50%       { opacity: 0.5; box-shadow: 0 0 12px #6ee7b7; }
}

/* ── Tablet hero: show single photo at 768–1024px ─────────────── */
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-v2-inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--space-8);
  }
  .hero-v2-photos {
    display: grid !important;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }
  .hero-photo--sm { display: none; }
  .hero-photo--large {
    aspect-ratio: 3/4;
    max-height: 60vh;
  }
  .hero-heading-split {
    font-size: clamp(2.4rem, 5vw, 4rem);
    white-space: normal;
  }
}

/* ── Cinematic Quote Section ─────────────────────────────────── */
.quote-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.quote-section-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.quote-section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.quote-section-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      oklch(0.09 0.02 30 / 0.7) 0%,
      oklch(0.09 0.02 30 / 0.82) 50%,
      oklch(0.09 0.02 30 / 0.92) 100%);
}

.quote-section-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(var(--space-16), 10vh, var(--space-32)) clamp(var(--space-6), 8vw, var(--space-24));
  max-width: 900px;
  margin-inline: auto;
}

.quote-deco-line {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4), transparent);
  margin: 0 auto var(--space-10);
}

.quote-pullquote {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 1rem + 3.2vw, 4.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 4px 40px oklch(0 0 0 / 0.5);
  margin: 0;
}

.quote-pullquote em {
  color: var(--color-primary);
  font-style: italic;
}

.quote-attribution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-5);
  margin-top: var(--space-10);
}

.quote-attribution::before,
.quote-attribution::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.25);
}

.quote-attribution span {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

/* Scroll reveal for quote */
@supports (animation-timeline: scroll()) {
  .quote-pullquote {
    opacity: 0;
    animation: reveal-fade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 80%;
  }
  .quote-attribution {
    opacity: 0;
    animation: reveal-fade linear both;
    animation-timeline: view();
    animation-range: entry 20% entry 100%;
  }
}

@keyframes reveal-fade {
  to { opacity: 1; }
}

/* ── About Page — Stats Row ──────────────────────────────────── */
.about-stats-row {
  display: flex;
  align-items: flex-start;
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  flex-wrap: wrap;
  padding: var(--space-8) 0;
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
  margin-block: var(--space-10);
}

.about-stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--color-text);
}

.about-stat-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ── About Page — Two-column editorial layout ────────────────── */
.about-editorial-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  margin-block: var(--space-10);
}

.about-editorial-row .editorial-img {
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  background: var(--color-surface-offset);
}

.about-editorial-row .editorial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.about-editorial-row .editorial-img:hover img {
  transform: scale(1.04);
}

.about-editorial-row .editorial-img.tall {
  aspect-ratio: 2/3;
  align-self: end;
}

@media (max-width: 640px) {
  .about-editorial-row {
    grid-template-columns: 1fr;
  }
  .about-stats-row {
    gap: var(--space-6);
  }
}

/* ── Portfolio — Enhanced counter ────────────────────────────── */
.portfolio-counter {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 300;
  font-style: italic;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

.portfolio-counter strong {
  font-style: normal;
  font-weight: 400;
  color: var(--color-text);
}

/* ── Lightbox v2 — count badge ───────────────────────────────── */
.lightbox-v2-count {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
}

/* ── Footer — enhanced ───────────────────────────────────────── */
.footer-bottom {
  font-size: 0.72rem !important;
  letter-spacing: 0.1em;
  color: var(--color-text-faint) !important;
  border-top: 1px solid var(--color-divider);
  padding-top: var(--space-5) !important;
}

/* ── Nav: hide text logo when SVG logo is present ─────────────── */
.nav-logo { display: none !important; }
.nav-logo-svg { display: flex !important; }

/* ── Scroll-driven parallax on quote bg ──────────────────────── */
@supports (animation-timeline: scroll()) {
  .quote-section-bg img {
    animation: quote-parallax linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }
  @keyframes quote-parallax {
    from { transform: scale(1.1) translateY(-5%); }
    to   { transform: scale(1.1) translateY(5%); }
  }
}

/* ── Hover cursor image trail for portfolio ──────────────────── */
.portfolio-trail-img {
  position: fixed;
  width: 140px;
  height: 185px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  pointer-events: none;
  z-index: 9992;
  opacity: 0;
  transform: translate(-50%, -60%) rotate(-4deg) scale(0.9);
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.portfolio-trail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-trail-img.active {
  opacity: 1;
  transform: translate(-50%, -60%) rotate(-2deg) scale(1);
}

@media (max-width: 1024px) {
  .portfolio-trail-img { display: none; }
}

/* ── Hero heading wrap fix for mobile ──────────────────────── */
@media (max-width: 767px) {
  .hero-heading-split {
    white-space: normal !important;
    font-size: clamp(2.4rem, 8vw, 3.8rem) !important;
  }
}

/* ── Nav: ensure SVG logo text doesn't break on mobile ───── */
@media (max-width: 480px) {
  .nav-logo-svg .logo-sub {
    display: none;
  }
  .nav-logo-svg .logo-name {
    font-size: 1rem;
  }
}

/* ── Booking form enhancement ─────────────────────────────── */
.inquiry-form .form-input:focus,
.inquiry-form .form-textarea:focus,
.inquiry-form .form-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px oklch(from var(--color-primary) l c h / 0.12);
  outline: none;
}

/* ── Marquee pause on hover ────────────────────────────────── */
.marquee-wrap-v2:hover .marquee-track-v2 {
  animation-play-state: paused;
}

/* ── Quote section mobile ──────────────────────────────────── */
@media (max-width: 640px) {
  .quote-pullquote {
    font-size: clamp(1.5rem, 5.5vw, 2.2rem);
  }
  .quote-section {
    min-height: 60vh;
  }
}

/* ── Section nav indicator on active links ────────────────── */
.nav-links a[aria-current="page"] {
  color: var(--color-text);
  position: relative;
}
.nav-links a[aria-current="page"]::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-primary);
}

/* ── Nav tablet fix (logo subtitle stacks) ───────────────────── */
@media (min-width: 769px) and (max-width: 1100px) {
  .nav-logo-svg .logo-sub {
    display: none;
  }
  .nav-logo-svg .logo-name {
    font-size: 1rem;
  }
  .site-nav {
    padding-inline: var(--space-5);
  }
  .nav-cta {
    font-size: 0.78rem;
    padding: var(--space-2) var(--space-4);
    white-space: nowrap;
  }
  .nav-links {
    gap: var(--space-5);
  }
  .nav-links a {
    font-size: var(--text-xs);
  }
}

/* ── Tablet hero: heading tighter on 768-1024 ─────────────────── */
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-v2-inner {
    gap: var(--space-6);
    padding-top: calc(var(--space-20) + 80px);
    padding-inline: var(--space-6);
  }
  .hero-v2-sub {
    font-size: var(--text-base);
  }
  .hero-v2-actions {
    gap: var(--space-3);
  }
}

/* ── Back-to-top button ─────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: var(--space-8);
  right: var(--space-8);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background var(--transition-interactive);
  z-index: 90;
  cursor: pointer;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--color-primary) 30%, transparent);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--color-primary-dark, var(--color-text)); }
@media (max-width: 600px) {
  .back-to-top { bottom: var(--space-5); right: var(--space-5); }
}

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials-section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
  padding-inline: clamp(var(--space-5), 5vw, var(--space-20));
  background: var(--color-surface);
}
.testimonials-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
}
.testimonials-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-12);
  flex-wrap: wrap;
  gap: var(--space-4);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.testimonial-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s cubic-bezier(0.16,1,0.3,1);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  color: var(--color-primary);
}
.testimonial-stars svg { flex-shrink: 0; }
.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.7;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-divider);
}
.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: var(--color-primary-highlight);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-primary);
  font-weight: 500;
  flex-shrink: 0;
}
.testimonial-name {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.02em;
}
.testimonial-detail {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  letter-spacing: 0.06em;
  margin-top: 2px;
}
.testimonial-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-primary-highlight);
  border-radius: var(--radius-sm);
  padding: 2px 8px;
  margin-bottom: var(--space-2);
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-header { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE FIXES — All pages
   ══════════════════════════════════════════════════════════════ */

/* ── 1. BOOKING PAGE — visible on all screen sizes ─────────── */
@media (max-width: 900px) {
  .booking-layout {
    grid-template-columns: 1fr;
    gap: var(--space-10);
    padding-top: calc(var(--space-16) + 80px);
  }
  .booking-info { position: static; }
}

@media (max-width: 600px) {
  .booking-layout {
    padding-top: calc(var(--space-12) + 70px);
    padding-inline: var(--space-4);
    padding-bottom: var(--space-16);
    gap: var(--space-8);
  }
  .booking-title {
    font-size: clamp(2rem, 9vw, 2.8rem) !important;
    line-height: 1.1 !important;
  }
  /* Form card full-width padding reduction */
  .booking-layout > div > div[style] {
    padding: var(--space-6) !important;
  }
}

@media (max-width: 480px) {
  .booking-layout {
    padding-inline: var(--space-4);
  }
  .form-row {
    grid-template-columns: 1fr !important;
  }
}

/* ── 2. STUDIO PAGE — details/info sections visible ─────────── */
@media (max-width: 640px) {
  .studio-details {
    display: flex !important;
    flex-direction: column !important;
    gap: var(--space-8) !important;
    padding-inline: var(--space-4) !important;
  }
  .studio-info-block {
    gap: var(--space-6);
  }
  .studio-perks-full {
    grid-template-columns: 1fr !important;
  }
  .location-card {
    padding: var(--space-5) !important;
  }
  .services-list {
    gap: var(--space-3);
  }
  .service-item {
    flex-direction: column;
    gap: var(--space-1);
    align-items: flex-start;
  }
}

/* ── 3. FLASH PAGE — button text no-wrap ────────────────────── */
@media (max-width: 600px) {
  .flash-cta-row a {
    font-size: 0.62rem !important;
    padding: var(--space-2) var(--space-2) !important;
    letter-spacing: 0.06em !important;
    white-space: nowrap !important;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .flash-info {
    padding: var(--space-2) var(--space-2) var(--space-1) !important;
  }
  .flash-name {
    font-size: 0.9rem !important;
    line-height: 1.2;
  }
}

/* ── 4. MERCH PAGE — product name no bad wrapping ───────────── */
@media (max-width: 700px) {
  .merch-info {
    padding: var(--space-3) !important;
  }
  .merch-name {
    font-size: 1rem !important;
    line-height: 1.25;
    word-break: break-word;
    hyphens: auto;
  }
  .merch-price {
    font-size: var(--text-xs) !important;
  }
  .merch-note {
    font-size: 0.65rem !important;
  }
}

/* ── 5. ABOUT PAGE — stats row and dual-photo ───────────────── */
@media (max-width: 600px) {
  .about-stats-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: var(--space-4) !important;
    padding: var(--space-5) 0 !important;
  }
  .about-stat-num {
    font-size: clamp(2rem, 7vw, 2.8rem) !important;
  }
  .about-stat-label {
    font-size: 0.6rem !important;
    letter-spacing: 0.12em !important;
  }
  .about-editorial-row {
    grid-template-columns: 1fr 1fr !important;
    gap: var(--space-3) !important;
  }
  .about-editorial-row .editorial-img.tall {
    aspect-ratio: 3/4 !important;
    align-self: auto !important;
  }
}

@media (max-width: 420px) {
  .about-stats-row {
    grid-template-columns: 1fr 1fr !important;
  }
  .about-hero {
    padding-top: calc(var(--space-10) + 70px) !important;
    gap: var(--space-8) !important;
  }
}

/* ── 6. HOMEPAGE — quote section dark box width ─────────────── */
@media (max-width: 640px) {
  .quote-section-inner {
    padding: var(--space-12) var(--space-5) !important;
  }
  .quote-pullquote {
    font-size: clamp(1.35rem, 5.5vw, 1.9rem) !important;
    letter-spacing: 0 !important;
  }
  .quote-deco-line {
    height: 40px;
    margin-bottom: var(--space-6);
  }
  .quote-attribution {
    gap: var(--space-3) !important;
    margin-top: var(--space-6) !important;
  }
}

/* ── 7. HOMEPAGE — hero buttons size on small phones ────────── */
@media (max-width: 390px) {
  .hero-v2-actions {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: var(--space-3) !important;
  }
  .hero-v2-actions .btn {
    width: auto !important;
    padding: var(--space-3) var(--space-6) !important;
  }
}

/* ── 8. STUDIO GALLERY — 2-col on mobile (already set but reinforce) */
@media (max-width: 540px) {
  .studio-gallery-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: var(--space-2) !important;
  }
  .studio-img-grid {
    gap: var(--space-2) !important;
  }
}


/* ════════════════════════════════════════════════════════════════
   MOBILE AUDIT FIXES — April 2026
   All issues found from real 390px viewport screenshots
   ════════════════════════════════════════════════════════════════ */

/* ── FIX 1: Nav overflow — hamburger clipped off-screen ──────────
   Root cause: logo text too wide at 390px, nav overflows.
   Fix: hide logo subtitle on mobile, shrink logo name, ensure
        nav never overflows its own width.
   ──────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .site-nav {
    overflow: visible;
    max-width: 100vw;
    box-sizing: border-box;
    padding: var(--space-3) var(--space-4);
    gap: 0;
  }
  .nav-logo-svg {
    min-width: 0;
    flex-shrink: 1;
  }
  .logo-sub {
    display: none;
  }
  .logo-name {
    font-size: 0.95rem;
    white-space: nowrap;
  }
  .logo-mark {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
  }
  .nav-controls {
    flex-shrink: 0;
    gap: var(--space-3);
    margin-left: auto;
  }
  .nav-hamburger {
    display: flex !important;
    flex-shrink: 0;
  }
}

/* ── FIX 2: Flash cards — "BOOK THIS" wraps, wrong color ─────────
   Fix: force single line, smaller font, correct brand color.
   ──────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .flash-cta-row a,
  .flash-info .btn,
  .flash-info .btn--sm {
    white-space: nowrap !important;
    font-size: 0.65rem !important;
    padding: var(--space-2) var(--space-3) !important;
    width: 100%;
    text-align: center;
    justify-content: center;
    /* Fix blue color — use brand text color */
    color: var(--color-text) !important;
    border-color: var(--color-border) !important;
    background: transparent !important;
  }
  .flash-info .btn--sm:hover,
  .flash-cta-row a:hover {
    background: var(--color-text) !important;
    color: var(--color-text-inverse) !important;
  }
}

/* ── FIX 3: Art page — 2-col commission section breaks on mobile ─
   Fix: stack to single column below 680px.
   ──────────────────────────────────────────────────────────────── */
@media (max-width: 680px) {
  /* The commission/merch 2-col grid uses inline style — override via context */
  .section .fade-in[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* ── FIX 4: Hero buttons — VIEW WORK floats awkwardly on mobile ──
   They already flex-wrap, but ghost button needs to be full-width
   and centered on very small screens.
   ──────────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .hero-v2-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }
  .hero-v2-actions .btn {
    width: auto;
  }
  .hero-v2-actions .btn--ghost {
    padding-left: 0;
    background: none;
  }
}

/* ── FIX 5: Ken Burns — disable on reduced-motion + low-end mobile
   Already handled by prefers-reduced-motion but belt-and-braces.
   ──────────────────────────────────────────────────────────────── */

/* ── FIX 6: Art intro two-col row — inline style override ────────
   The art.html uses a hardcoded inline style grid that can't be
   targeted normally. Add a wrapper class workaround via attribute.
   ──────────────────────────────────────────────────────────────── */
@media (max-width: 680px) {
  /* Target the grid div that follows the art gallery */
  .art-grid + div,
  div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* ── Art page CTA grid — proper class-based override ────────── */
@media (max-width: 680px) {
  .art-cta-grid {
    grid-template-columns: 1fr !important;
  }
}
