/*
Theme Name: ArtStorage v2
Theme URI: https://artstorage.si
Author: ArtStorage
Author URI: https://artstorage.si
Description: Custom theme for ArtStorage — Slovenian Contemporary Art.
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: artstorage
Tags: art, gallery, portfolio, curator, contemporary
*/

/* ─── RESET & ROOT ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:       #0e0e0e;
  --off-white:   #f7f4ef;
  --warm-mid:    #e8e2d9;
  --warm-dark:   #b0a898;
  --accent:      #8b6f47;
  --text:        #1a1a1a;
  --muted:       #6b6560;
  --white:       #ffffff;
  --rule:        rgba(26,23,20,0.10);

  /* legacy aliases kept for functions.php compatibility */
  --parchment:   #f7f4ef;
  --ink:         #0e0e0e;
  --warm-white:  #ffffff;
  --soft-canvas: #e8e2d9;
  --gold:        #8b6f47;
  --gold-deep:   #6b5234;
  --stone:       #b0a898;
  --ink-soft:    #6b6560;

  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-body:    'DM Sans', system-ui, sans-serif;

  --sp-xs:  8px;
  --sp-s:   16px;
  --sp-m:   24px;
  --sp-l:   40px;
  --sp-xl:  64px;
  --sp-xxl: 96px;
  --max-w:  1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text);
  background: var(--off-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg, video, iframe, canvas { max-width: 100%; height: auto; }

/* ─── TYPOGRAPHY ───────────────────────────────────────────── */
.eyebrow {
  font-family: var(--f-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm-dark);
  display: block;
  margin-bottom: 14px;
}

h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 300; line-height: 1.1; }

.heading-display {
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  letter-spacing: -0.01em;
  color: var(--text);
}

.heading-section {
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  color: var(--text);
  margin-bottom: var(--sp-l);
  text-wrap: pretty;
}

.heading-sub {
  font-family: var(--f-display);
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--text);
}

em { font-style: italic; }

.body-text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  max-width: 52ch;
  text-wrap: pretty;
}

.caption {
  font-size: 0.75rem;
  color: var(--warm-dark);
  letter-spacing: 0.04em;
}

/* ─── LAYOUT ───────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 3rem;
}
section { padding: var(--sp-xxl) 0; }

/* ─── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  line-height: 1;
  border-radius: 0;
}
.btn-primary   { background: var(--black); color: var(--white); border: 1px solid var(--black); }
.btn-primary:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }
.btn-secondary { background: transparent; color: var(--text); border: 1px solid var(--text); }
.btn-secondary:hover { background: var(--text); color: var(--white); }
.btn-light     { background: var(--white); color: var(--black); border: 1px solid var(--white); }
.btn-light:hover { background: var(--off-white); }
.btn-outline-light { background: transparent; color: rgba(255,255,255,0.75); border: 1px solid rgba(255,255,255,0.3); }
.btn-outline-light:hover { color: white; border-color: rgba(255,255,255,0.6); }

.btn-ghost {
  font-family: var(--f-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--warm-mid);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  display: inline-block;
}
.btn-ghost:hover { color: var(--accent); border-color: var(--accent); }
.btn-ghost.light { color: rgba(255,255,255,0.55); border-color: rgba(255,255,255,0.25); }
.btn-ghost.light:hover { color: white; border-color: rgba(255,255,255,0.6); }

/* ─── NAVIGATION ───────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 68px;
  transition: background 0.3s, box-shadow 0.3s;
}
.site-nav.transparent { background: transparent; }
.site-nav.scrolled {
  background: rgba(247,244,239,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--rule);
}

.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 26px; display: block; }
.nav-logo .logo-light { display: block; }
.nav-logo .logo-dark  { display: none; }
.site-nav.scrolled .logo-light { display: none; }
.site-nav.scrolled .logo-dark  { display: block; }
.site-nav.dark-bg .logo-light { display: block; }
.site-nav.dark-bg .logo-dark  { display: none; }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.site-nav.scrolled .nav-links a { color: var(--muted); }
.nav-links a:hover { color: white; }
.site-nav.scrolled .nav-links a:hover { color: var(--text); }
.site-nav.dark-bg .nav-links a { color: rgba(255,255,255,0.8); }
.site-nav.dark-bg .nav-links a:hover { color: white; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-lang {
  font-family: var(--f-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
}
.site-nav.scrolled .nav-lang { color: var(--muted); }
.nav-lang a { text-decoration: none; color: inherit; transition: color 0.2s; }
.nav-lang a.active { color: white; }
.site-nav.scrolled .nav-lang a.active { color: var(--text); }
.nav-lang a:hover { color: white; }
.site-nav.scrolled .nav-lang a:hover { color: var(--text); }
.nav-lang-sep { opacity: 0.3; }
.site-nav.dark-bg .nav-lang { color: rgba(255,255,255,0.5); }
.site-nav.dark-bg .nav-lang a.active { color: white; }

.nav-enquire {
  font-family: var(--f-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
  transition: all 0.2s;
}
.site-nav.scrolled .nav-enquire {
  border-color: var(--black);
  color: var(--black);
}
.nav-enquire:hover { background: white; color: var(--black); }
.site-nav.scrolled .nav-enquire:hover { background: var(--black); color: white; }

/* ─── PAGE HEADER (inner pages) ────────────────────────────── */
.page-header {
  padding: 140px 0 80px;
  background: var(--off-white);
  border-bottom: 1px solid var(--rule);
}
.page-header-dark {
  padding: 140px 0 80px;
  background: var(--black);
}
.page-header-dark .eyebrow { color: rgba(255,255,255,0.4); }
.page-header-dark .heading-display { color: white; }
.page-header-dark em { color: var(--warm-dark); }
.page-header-dark p { color: rgba(255,255,255,0.5); }

/* ─── PRICE BAND ───────────────────────────────────────────── */
.price-band {
  background: var(--black);
  color: white;
  padding: 28px 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.price-band-text {
  font-size: 0.8125rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
}
.price-band-text strong { color: white; font-weight: 500; }
.price-band-ranges { display: flex; gap: 32px; flex-wrap: wrap; }
.price-range-item { text-align: center; }
.price-range-label {
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}
.price-range-value {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 300;
  color: white;
}
.price-band-cta {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: border-color 0.2s;
}
.price-band-cta:hover { border-color: white; }

/* ─── ARTWORK CARD ─────────────────────────────────────────── */
.artwork-card { background: white; cursor: pointer; }
.artwork-card:hover .artwork-img img { transform: scale(1.04); }
.artwork-img { overflow: hidden; aspect-ratio: 3/4; position: relative; }
.artwork-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.artwork-info { padding: 18px 20px 20px; }
.artwork-artist {
  font-family: var(--f-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-dark);
  margin-bottom: 4px;
}
.artwork-title {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 2px;
}
.artwork-meta {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.artwork-price {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--text);
}
.artwork-price.sold {
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-dark);
}
.artwork-sold-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(0,0,0,0.6);
  color: rgba(255,255,255,0.8);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
}

/* ─── WORKS GRID ───────────────────────────────────────────── */
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
@media (max-width: 900px) { .works-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .works-grid { grid-template-columns: 1fr; } }

/* ─── CURATOR / SPLIT SECTION ──────────────────────────────── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.split-image { overflow: hidden; min-height: 560px; }
.split-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split-body {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: white;
}
.curator-quote {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 300;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 36px;
  text-wrap: pretty;
}
.curator-sig {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}
.curator-sig-line { width: 28px; height: 1px; background: var(--warm-dark); }
.curator-sig-name { font-size: 0.875rem; font-weight: 500; color: var(--text); }
.curator-sig-role { font-size: 0.75rem; color: var(--muted); }
.trust-list { display: flex; flex-direction: column; gap: 12px; }
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}
.trust-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 6px;
}

/* ─── HOW IT WORKS ─────────────────────────────────────────── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.how-card {
  background: white;
  padding: 40px 36px 44px;
}
.how-num {
  font-family: var(--f-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--warm-mid);
  line-height: 1;
  margin-bottom: 24px;
}
.how-card-title {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.25;
}
.how-card-body {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ─── INSTAGRAM ────────────────────────────────────────────── */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
}
.ig-cell {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  background: #1a1a1a;
}
.ig-cell img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease, opacity 0.3s;
  opacity: 0.85;
}
.ig-cell:hover img { transform: scale(1.06); opacity: 1; }
.ig-cell-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.ig-cell:hover .ig-cell-overlay { opacity: 1; }

/* ─── NEWSLETTER ───────────────────────────────────────────── */
.newsletter-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  background: var(--off-white);
  padding: 80px 3rem;
}
.newsletter-perks { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.newsletter-perk {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.875rem; color: var(--muted);
}
.newsletter-perk::before {
  content: '';
  width: 18px; height: 1px;
  background: var(--warm-dark);
  flex-shrink: 0;
}
.newsletter-form-row { display: flex; gap: 0; }
.newsletter-input {
  flex: 1;
  font-family: var(--f-body);
  font-size: 0.875rem;
  padding: 14px 20px;
  border: 1px solid var(--warm-mid);
  background: white;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-input:focus { border-color: var(--warm-dark); }
.newsletter-input::placeholder { color: var(--warm-dark); }
.newsletter-btn {
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 24px;
  background: var(--black);
  color: white;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.newsletter-btn:hover { background: #333; }
.newsletter-note { font-size: 0.6875rem; color: var(--warm-dark); margin-top: 10px; line-height: 1.5; }

/* ─── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial { display: flex; flex-direction: column; }
.testimonial-quote {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text);
  flex: 1;
  margin-bottom: 24px;
  text-wrap: pretty;
}
.testimonial-divider { width: 28px; height: 1px; background: var(--warm-mid); margin-bottom: 14px; }
.testimonial-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--warm-mid);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.testimonial-name { font-size: 0.875rem; font-weight: 500; color: var(--text); }
.testimonial-role { font-size: 0.75rem; color: var(--muted); }

/* ─── FAQ ──────────────────────────────────────────────────── */
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}
.faq-sticky { position: sticky; top: 80px; }
.faq-item { border-top: 1px solid var(--rule); }
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  user-select: none;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--warm-dark);
  transition: transform 0.3s, background 0.2s, color 0.2s, border-color 0.2s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--black);
  color: white;
  border-color: var(--black);
}
.faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding-bottom: 24px;
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  max-width: 540px;
}

/* ─── CTA SECTION ──────────────────────────────────────────── */
.cta-section {
  background: var(--black);
  padding: 120px 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-watermark {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--f-display);
  font-size: 18vw;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.025);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-section .eyebrow { color: rgba(255,255,255,0.3); margin-bottom: 20px; display: block; }
.cta-section .heading-display { color: white; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.5); margin-bottom: 40px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.cta-note { font-size: 0.6875rem; color: rgba(255,255,255,0.25); letter-spacing: 0.06em; }

/* ─── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 40px 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo img { height: 20px; opacity: 0.6; display: block; }
.footer-nav { display: flex; gap: 24px; list-style: none; flex-wrap: wrap; }
.footer-nav a {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover { color: rgba(255,255,255,0.6); }
.footer-copy { font-size: 0.6875rem; color: rgba(255,255,255,0.2); }

/* ─── ARTIST CARD ──────────────────────────────────────────── */
.artist-card { background: white; cursor: pointer; }
.artist-card:hover .artist-img img { transform: scale(1.04); }
.artist-img { overflow: hidden; aspect-ratio: 3/4; }
.artist-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.artist-info { padding: 18px 20px 20px; }
.artist-name { font-family: var(--f-display); font-size: 1.3rem; font-weight: 400; color: var(--text); margin-bottom: 4px; }
.artist-medium { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.04em; margin-bottom: 8px; }
.artist-studio-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(139,111,71,0.25);
  padding: 4px 10px;
}

/* ─── JOURNAL CARD ─────────────────────────────────────────── */
.journal-card { background: white; cursor: pointer; }
.journal-card:hover .journal-img img { transform: scale(1.04); }
.journal-img { overflow: hidden; aspect-ratio: 16/9; }
.journal-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.journal-info { padding: 20px 22px 24px; }
.journal-category {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-dark);
  margin-bottom: 8px;
}
.journal-title { font-family: var(--f-display); font-size: 1.3rem; font-weight: 400; color: var(--text); line-height: 1.25; margin-bottom: 8px; }
.journal-excerpt { font-size: 0.875rem; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.journal-meta { font-size: 0.6875rem; color: var(--warm-dark); }

/* ─── FILTER BAR ───────────────────────────────────────────── */
.filter-bar {
  position: sticky;
  top: 68px;
  z-index: 100;
  background: var(--off-white);
  border-bottom: 1px solid var(--rule);
  padding: 0 3rem;
}
.filter-inner {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-inner::-webkit-scrollbar { display: none; }
.filter-btn {
  flex-shrink: 0;
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 18px 20px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.filter-btn.active { color: var(--text); border-bottom-color: var(--text); }
.filter-btn:hover { color: var(--text); }

/* ─── SINGLE ARTWORK / ARTIST ──────────────────────────────── */
.single-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 100vh;
  padding-top: 68px;
}
.single-image-col { position: sticky; top: 68px; height: calc(100vh - 68px); overflow: hidden; }
.single-image-col img { width: 100%; height: 100%; object-fit: contain; background: var(--warm-mid); padding: 40px; }
.single-info-col { padding: 64px; background: white; }
.single-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 48px;
  transition: color 0.2s;
}
.single-back:hover { color: var(--text); }
.single-details { display: flex; flex-direction: column; gap: 8px; margin: 24px 0 32px; }
.single-detail { display: flex; gap: 16px; font-size: 0.875rem; }
.single-detail-key { font-weight: 500; color: var(--text); min-width: 80px; }
.single-detail-val { color: var(--muted); }
.single-price {
  font-family: var(--f-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 28px;
}

/* ─── AUCTION PAGE ─────────────────────────────────────────── */
.auction-card {
  background: white;
  padding: 40px;
  border: 1px solid var(--rule);
  transition: box-shadow 0.3s;
}
.auction-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.auction-card-eyebrow {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-dark);
  margin-bottom: 12px;
}
.auction-card-title {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 8px;
}
.auction-card-meta { font-size: 0.875rem; color: var(--muted); margin-bottom: 24px; }
.auction-stats { display: flex; gap: 32px; margin-bottom: 28px; }
.auction-stat-num {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--text);
  display: block;
  line-height: 1;
}
.auction-stat-label { font-size: 0.6875rem; color: var(--muted); letter-spacing: 0.06em; }

/* ─── ENQUIRY FORM ─────────────────────────────────────────── */
.enquiry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  font-family: var(--f-body);
  font-size: 0.9375rem;
  font-weight: 300;
  padding: 14px 16px;
  border: 1px solid var(--warm-mid);
  background: white;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus { border-color: var(--warm-dark); }
.form-textarea { resize: vertical; min-height: 140px; }
.form-input::placeholder,
.form-textarea::placeholder { color: var(--warm-dark); }

/* ─── ABOUT PAGE ───────────────────────────────────────────── */
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.value-card { background: white; padding: 40px 32px 44px; }
.value-num {
  font-family: var(--f-display);
  font-size: 3rem; font-weight: 300;
  color: var(--warm-mid); line-height: 1; margin-bottom: 20px;
}
.value-title { font-family: var(--f-display); font-size: 1.3rem; font-weight: 400; color: var(--text); margin-bottom: 12px; }
.value-body { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }

/* ─── REVEAL ANIMATIONS ────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ─── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 960px) {
  :root { --sp-xxl: 64px; }
  .site-nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .container { padding: 0 1.5rem; }
  .price-band { padding: 20px 1.5rem; }
  .split-section { grid-template-columns: 1fr; }
  .split-image { min-height: 300px; }
  .split-body { padding: 48px 24px; }
  .works-grid { grid-template-columns: 1fr 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .newsletter-section { grid-template-columns: 1fr; gap: 32px; padding: 64px 1.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .faq-sticky { position: static; }
  .cta-section { padding: 80px 1.5rem; }
  .site-footer { padding: 32px 1.5rem; }
  .filter-bar { padding: 0 1.5rem; }
  .single-layout { grid-template-columns: 1fr; padding-top: 68px; }
  .single-image-col { position: static; height: 60vw; }
  .single-image-col img { padding: 20px; }
  .single-info-col { padding: 32px 24px; }
  .enquiry-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-values { grid-template-columns: 1fr; }
  .auction-stats { gap: 20px; flex-wrap: wrap; }
  .page-header, .page-header-dark { padding: 100px 0 48px; }
}

html, body { max-width: 100%; overflow-x: hidden; }
