/* ————————————————————————————————————————————————
   Rachel Teeger — light liquid glass design system
   iOS/macOS light: warm white walls, glass panels,
   SF Pro throughout. The paintings carry the color.
   ———————————————————————————————————————————————— */

:root {
  --bg: #f6f5f2;
  --bg-2: #efede8;
  --ink: #1d1d1f;
  --ink-dim: rgba(29, 29, 31, 0.72);
  --ink-faint: rgba(29, 29, 31, 0.58);
  --accent: #7a5d2a;
  --accent-soft: rgba(122, 93, 42, 0.1);
  --line: rgba(29, 29, 31, 0.12);
  --line-soft: rgba(29, 29, 31, 0.07);
  --glass-bg: rgba(255, 255, 255, 0.6);
  --glass-bg-strong: rgba(255, 255, 255, 0.88);
  --glass-border: rgba(255, 255, 255, 0.75);
  --glass-edge: rgba(29, 29, 31, 0.08);
  --wa: #1fa855;
  --radius: 24px;
  --radius-sm: 15px;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --shadow-soft: 0 18px 44px rgba(29, 29, 31, 0.09), 0 4px 12px rgba(29, 29, 31, 0.05);
  --shadow-frame: 0 22px 48px rgba(29, 29, 31, 0.16), 0 6px 16px rgba(29, 29, 31, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background:
    radial-gradient(1100px 600px at 85% -5%, rgba(143, 113, 54, 0.055), transparent 60%),
    radial-gradient(900px 550px at 0% 100%, rgba(120, 140, 180, 0.05), transparent 55%),
    var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: rgba(143, 113, 54, 0.2); }

/* ——— type ——— */
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
  font-weight: 600;
}
h1, h2, .display {
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.022em;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(38px, 5.6vw, 72px); }
h2 { font-size: clamp(28px, 3.6vw, 44px); }
h3 {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-dim);
  margin: 0 0 14px;
}
.lede {
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
  color: var(--ink-dim);
  max-width: 32em;
  font-weight: 400;
}
p { margin: 0 0 1.1em; }
.dim { color: var(--ink-dim); }
.faint { color: var(--ink-faint); }

/* ——— liquid glass ——— */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-edge);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft), inset 0 1px 0 var(--glass-border);
}
@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
  .glass {
    -webkit-backdrop-filter: blur(28px) saturate(1.7);
    backdrop-filter: blur(28px) saturate(1.7);
  }
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .glass { background: var(--glass-bg-strong); }
}

/* ——— nav ——— */
.nav {
  position: fixed;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 30px);
  padding: 10px 12px 10px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  -webkit-backdrop-filter: blur(24px) saturate(1.7);
  backdrop-filter: blur(24px) saturate(1.7);
  border: 1px solid var(--glass-edge);
  box-shadow: 0 10px 30px rgba(29, 29, 31, 0.08), inset 0 1px 0 var(--glass-border);
  max-width: calc(100vw - 24px);
}
.nav-wordmark {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 24px);
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink-dim);
  padding: 6px 2px;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.is-active { color: var(--ink); }
.nav-cta {
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: var(--ink);
  padding: 9px 18px;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(29, 29, 31, 0.2); }

/* ——— mobile menu (hamburger) ——— */
.nav-burger { display: none; flex-direction: column; justify-content: center; gap: 4px; width: 36px; height: 36px; padding: 9px; margin-left: 2px; background: none; border: 0; cursor: pointer; border-radius: 10px; flex: none; }
.nav-burger span { display: block; height: 2px; width: 18px; background: var(--ink); border-radius: 2px; }
.menu {
  position: fixed; inset: 0; z-index: 85;
  background: rgba(247, 246, 243, 0.7);
  -webkit-backdrop-filter: blur(42px) saturate(1.9);
  backdrop-filter: blur(42px) saturate(1.9);
  display: flex; flex-direction: column;
  padding: 16px max(24px, 7vw) 46px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.menu.is-open { opacity: 1; visibility: visible; }
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) { .menu { background: rgba(247, 246, 243, 0.97); } }
.menu-top { display: flex; align-items: center; justify-content: space-between; }
.menu-brand { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; }
.menu-close { background: none; border: 0; color: var(--ink); cursor: pointer; padding: 8px; line-height: 0; border-radius: 999px; }
.menu-nav { display: flex; flex-direction: column; gap: 2px; margin: auto 0; }
.menu-nav a { font-size: clamp(30px, 9vw, 40px); font-weight: 700; letter-spacing: -0.025em; color: var(--ink); text-decoration: none; padding: 8px 0; }
.menu-nav a:active { color: var(--accent); }
.menu-nav a.menu-wa { font-size: clamp(17px, 4.6vw, 20px); font-weight: 600; color: #0c3b29; margin-top: 26px; display: inline-flex; align-items: center; gap: 10px; }
.menu-nav a.menu-wa svg { width: 22px; height: 22px; color: #17a34a; flex: none; }
body.menu-lock { overflow: hidden; }

/* ——— buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 26px;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn svg { flex: none; width: 17px; height: 17px; }
.btn-ink {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 8px 22px rgba(29, 29, 31, 0.18);
}
.btn-ink:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(29, 29, 31, 0.24); }
.btn-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.65);
  border-color: var(--glass-edge);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.9); }
.btn-wa {
  color: #0c3b29;
  background: rgba(37, 211, 102, 0.14);
  border-color: rgba(31, 168, 85, 0.26);
  -webkit-backdrop-filter: blur(20px) saturate(1.7);
  backdrop-filter: blur(20px) saturate(1.7);
  box-shadow: 0 6px 20px rgba(31, 168, 85, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}
.btn-wa:hover { background: rgba(37, 211, 102, 0.22); transform: translateY(-1px); box-shadow: 0 10px 26px rgba(31, 168, 85, 0.16); }
.btn-wa svg { color: #17a34a; }
/* legacy aliases */
.btn-gold { color: #fff; background: var(--ink); box-shadow: 0 8px 22px rgba(29, 29, 31, 0.18); }
.btn-gold:hover { transform: translateY(-1px); }

/* ——— layout ——— */
.section {
  padding: clamp(64px, 9vw, 120px) max(24px, 5vw);
  max-width: 1200px;
  margin: 0 auto;
}
.section-tight { padding-top: clamp(40px, 5vw, 70px); padding-bottom: clamp(40px, 5vw, 70px); }
.hr {
  border: 0;
  height: 1px;
  background: var(--line-soft);
  margin: 0 auto;
  max-width: 1200px;
}

/* ——— hero (light, split) ——— */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(120px, 16vh, 170px) max(24px, 5vw) clamp(40px, 6vw, 80px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-copy .lede { margin: 30px 0 30px; }
.hero-heb {
  font-family: var(--sans);
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: 0;
  margin: 12px 0 0;
  text-align: left;
  direction: rtl;
  color: var(--ink);
}
.hero-gloss {
  font-size: clamp(14px, 1.6vw, 17.5px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: var(--ink-dim);
  margin: 28px 0 0;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-price {
  margin-top: 18px;
  font-size: 14px;
  color: var(--ink-faint);
  font-weight: 500;
}
.hero-art { position: relative; }
.hero-art .work-frame { max-width: 460px; margin: 0 auto; }
.hero-art figcaption {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: var(--ink-faint);
}
.hero-art figcaption strong { color: var(--ink); font-weight: 600; display: block; font-size: 14.5px; }

/* ——— frames ——— */
.work-frame {
  background: #fff;
  padding: clamp(10px, 1.6vw, 18px);
  border-radius: 6px;
  box-shadow: var(--shadow-frame);
  border: 1px solid rgba(29, 29, 31, 0.05);
}
.work-frame img { width: 100%; height: auto; border-radius: 2px; }

/* ——— gallery grid ——— */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: clamp(28px, 4vw, 48px);
  margin-top: clamp(36px, 4.5vw, 60px);
}
.grid-sold { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: clamp(22px, 3vw, 36px); }
.work { text-decoration: none; color: inherit; display: block; }
.work .work-frame {
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.35s ease;
}
.work:hover .work-frame {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(29, 29, 31, 0.18), 0 8px 20px rgba(29, 29, 31, 0.1);
}
.work .work-frame img { width: 100%; height: auto; }
.work-meta { padding: 16px 4px 0; }
.work-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin: 0;
  min-height: 2.6em;
}
.work-sub { font-size: 14px; color: var(--ink-faint); margin: 4px 0 0; }
.work-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.work-price em {
  font-style: normal;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.work-cta {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent);
}
.work-badge-sold {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-faint);
}

/* ——— story band ——— */
.story-band {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(50px, 7vw, 90px) max(24px, 5vw);
}
.story-band p.story-text {
  font-size: clamp(20px, 2.6vw, 27px);
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.story-band .story-attr {
  margin-top: 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ——— painting page ——— */
.painting-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(32px, 4.5vw, 64px);
  align-items: start;
  padding-top: clamp(110px, 15vh, 150px);
}
.painting-stage { position: sticky; top: 100px; }
.painting-stage .work-frame { cursor: zoom-in; }
.painting-stage figcaption {
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-faint);
  text-align: center;
}
.acquire { padding: clamp(24px, 3vw, 36px); }
.acquire h1 { font-size: clamp(28px, 3vw, 40px); }
.acquire-facts {
  list-style: none;
  margin: 20px 0;
  padding: 0;
  border-top: 1px solid var(--line-soft);
}
.acquire-facts li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 14.5px;
}
.acquire-facts span { color: var(--ink-faint); }
.acquire-facts em { font-style: normal; color: var(--ink); font-weight: 500; text-align: right; }
.acquire-desc { color: var(--ink-dim); font-size: 16px; line-height: 1.65; }
.acquire-story {
  margin: 18px 0 0;
  padding: 16px 18px;
  background: var(--accent-soft);
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-dim);
}
.acquire-actions { display: grid; gap: 10px; margin-top: 20px; }

/* ——— buy module ——— */
.buy {
  margin: 22px 0 4px;
  padding: 20px 20px 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--glass-edge);
  box-shadow: inset 0 1px 0 var(--glass-border);
}
.buy-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
}
.buy-price strong { font-size: 30px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }
.buy-price span { font-size: 13px; color: var(--ink-faint); }
.buy-trust { list-style: none; padding: 0; margin: 14px 0 10px; display: grid; gap: 6px; }
.buy-trust li { font-size: 12.5px; color: var(--ink-faint); padding-left: 20px; position: relative; }
.buy-trust li::before { content: ""; position: absolute; left: 0; top: 3px; width: 12px; height: 12px; border-radius: 50%; background: rgba(23, 163, 74, 0.12); }
.buy-trust li::after { content: ""; position: absolute; left: 3.5px; top: 6px; width: 5px; height: 3px; border-left: 1.4px solid #17a34a; border-bottom: 1.4px solid #17a34a; transform: rotate(-45deg); }
.buy-note a { color: var(--ink); font-weight: 600; }
.buy-status.is-soft { background: rgba(255, 255, 255, 0.75); border-color: var(--glass-edge); color: var(--ink-soft); }
.story-bridge { display: block; margin-top: 12px; font-weight: 650; font-size: 14px; color: var(--ink); text-decoration: none; }
.story-bridge::after { content: " \2193"; color: var(--accent); }
.story-bridge:hover { color: var(--accent); }

/* ——— seen in a room: swipeable true scale scenes ——— */
.inroom-wrap { max-width: 860px; }
.inroom-car { position: relative; }
.inroom-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  border-radius: var(--radius);
  border: 1px solid var(--glass-edge);
  box-shadow: var(--shadow-soft);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  background: #eae7e0;
}
.inroom-track::-webkit-scrollbar { display: none; }
.inroom-track:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.inroom-slide { flex: 0 0 100%; min-width: 100%; overflow: hidden; position: relative; scroll-snap-align: center; scroll-snap-stop: always; }
.inroom-slide svg { display: block; width: 100%; height: auto; }
.inroom-tag {
  position: absolute; top: 12px; left: 14px; z-index: 2;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-dim);
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid var(--glass-edge); border-radius: 999px; padding: 5px 12px;
}
.inroom-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 38px; height: 38px; display: none; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid var(--glass-edge);
  background: rgba(255, 255, 255, 0.78);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  color: var(--ink); cursor: pointer;
  box-shadow: 0 6px 16px rgba(29, 29, 31, 0.12);
  transition: transform 0.2s ease, background 0.2s ease;
}
.inroom-nav:hover { background: rgba(255, 255, 255, 0.95); transform: translateY(-50%) scale(1.05); }
.inroom-nav svg { width: 15px; height: 15px; }
.inroom-nav[data-car-prev] { left: 12px; }
.inroom-nav[data-car-next] { right: 12px; }
@media (min-width: 641px) { .inroom-nav { display: inline-flex; } }
@media (max-width: 640px) { .inroom-slide svg { width: 150%; margin-left: -25%; } }
.inroom-dots { display: flex; justify-content: center; gap: 4px; margin-top: 12px; }
.inroom-dots button { width: 28px; height: 28px; padding: 0; display: inline-flex; align-items: center; justify-content: center; background: none; border: 0; cursor: pointer; }
.inroom-dots .dot { display: block; width: 7px; height: 7px; border-radius: 50%; background: var(--line); transition: background 0.2s ease, transform 0.2s ease; }
.inroom-dots button.is-on .dot { background: var(--ink); transform: scale(1.3); }
.ar-row { text-align: center; margin-top: 14px; }
.painting-stage .ar-row { margin-top: 12px; }
.painting-stage .ar-hint { font-size: 12.5px; }
/* the AR button is the differentiator: bigger, bronze glass, quiet attention loops */
.painting-stage .ar-btn {
  position: relative;
  overflow: hidden;
  font-size: 16px;
  padding: 16px 30px;
  width: min(100%, 330px);
  color: var(--ink);
  background: linear-gradient(180deg, rgba(199, 164, 101, 0.18), rgba(122, 93, 42, 0.12));
  border: 1px solid rgba(122, 93, 42, 0.34);
  animation: arPulse 4.6s ease-out infinite;
}
.painting-stage .ar-btn img { width: 19px; height: 19px; }
.painting-stage .ar-btn::after {
  content: "";
  position: absolute;
  top: -40%; bottom: -40%;
  width: 34%;
  left: 0;
  transform: translateX(-170%) skewX(-22deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  animation: arSheen 4.6s ease-in-out infinite 1.1s;
  pointer-events: none;
}
@keyframes arSheen {
  0% { transform: translateX(-170%) skewX(-22deg); }
  16% { transform: translateX(440%) skewX(-22deg); }
  100% { transform: translateX(440%) skewX(-22deg); }
}
@keyframes arPulse {
  0%, 52%, 100% { box-shadow: 0 10px 26px rgba(122, 93, 42, 0.15), 0 0 0 0 rgba(122, 93, 42, 0); }
  60% { box-shadow: 0 10px 26px rgba(122, 93, 42, 0.18), 0 0 0 1px rgba(122, 93, 42, 0.3); }
  82% { box-shadow: 0 10px 26px rgba(122, 93, 42, 0.15), 0 0 0 13px rgba(122, 93, 42, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .painting-stage .ar-btn, .painting-stage .ar-btn::after { animation: none; }
}
.ar-btn[hidden] { display: none; }
.ar-btn img { width: 17px; height: 17px; }
.ar-hint[hidden] { display: none; }
.ar-hint { font-size: 13px; color: var(--ink-faint); margin: 0 auto; max-width: 30em; text-align: center; }
.inroom-note {
  text-align: center;
  font-size: 13px;
  color: var(--ink-dim);
  margin-top: 12px;
}
.buy-regions { display: grid; gap: 7px; margin-bottom: 14px; }
.buy-region {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-dim);
  padding: 10px 13px;
  border: 1px solid var(--line-soft);
  border-radius: 11px;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.2s ease;
}
.buy-region:has(input:checked) { border-color: var(--ink); color: var(--ink); }
.buy-region input { accent-color: #1d1d1f; margin: 0; }
.buy-region span { flex: 1; }
.buy-region em { font-style: normal; font-weight: 600; }
.buy-total { font-size: 14px; color: var(--ink-dim); margin: 0 0 14px; font-weight: 500; }
.buy .btn { width: 100%; }
.buy-note { font-size: 12.5px; color: var(--ink-faint); margin: 12px 0 0; line-height: 1.55; text-align: center; }
.buy-form { margin-top: 16px; }
.buy-buttons { min-height: 48px; }
.buy-status { font-size: 13.5px; color: var(--accent); margin: 10px 0 0; text-align: center; }
.buy-status a { color: var(--accent); font-weight: 600; }
.buy-done { text-align: center; padding: 8px 0 4px; }
.buy-done h4 { font-size: 22px; font-weight: 700; letter-spacing: -0.015em; margin: 0 0 8px; }
.buy-done p { color: var(--ink-dim); font-size: 14.5px; }

/* ——— forms ——— */
.form { margin-top: 20px; }
.form form { display: grid; gap: 14px; }
.form-row { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; align-items: end; }
.field { display: grid; gap: 6px; }
.field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-dim);
}
.field input, .field textarea, .field select {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 15px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.field textarea { resize: none; }
.field select {
  color: var(--ink-dim);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns=%27http://www.w3.org/2000/svg%27 width=%2711%27 height=%277%27 viewBox=%270 0 11 7%27><path d=%27M1 1l4.5 4.5L10 1%27 stroke=%27%236b6b6e%27 fill=%27none%27 stroke-width=%271.6%27 stroke-linecap=%27round%27/></svg>");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 36px;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(29, 29, 31, 0.32); }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(29, 29, 31, 0.08);
}
.form .btn { width: 100%; }
.form-privacy { font-size: 12.5px; color: var(--ink-faint); text-align: center; margin: 2px 0 0; }
.form-done { display: none; text-align: center; padding: 26px 10px; }
.form-done h4 { font-size: 22px; font-weight: 700; letter-spacing: -0.015em; margin: 0 0 8px; }
.form-done p { color: var(--ink-dim); margin: 0; font-size: 15px; }
.form.is-done form { display: none; }
.form.is-done .form-done { display: block; }

/* ——— split ——— */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.split .work-frame { max-width: 460px; margin: 0 auto; }

/* ——— steps ——— */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
  margin-top: clamp(32px, 4vw, 50px);
  counter-reset: step;
}
.step {
  padding: clamp(22px, 2.8vw, 32px);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--glass-edge);
  box-shadow: var(--shadow-soft), inset 0 1px 0 var(--glass-border);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}
.step h4 { font-size: 19px; font-weight: 600; letter-spacing: -0.015em; margin: 0 0 8px; }
.step p { font-size: 14.5px; color: var(--ink-dim); margin: 0; }

/* ——— bands ——— */
.band {
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(36px, 5vw, 64px) clamp(24px, 5vw, 72px);
  text-align: center;
}
.band-inner { max-width: 540px; margin: 0 auto; }
.band-inner .form { text-align: left; }

/* ——— footer ——— */
.footer {
  border-top: 1px solid var(--line-soft);
  padding: clamp(44px, 6vw, 70px) max(24px, 5vw) 90px;
  background: rgba(255, 255, 255, 0.4);
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
}
.footer-wordmark { font-size: 22px; font-weight: 700; letter-spacing: -0.015em; margin: 0 0 10px; }
.footer p { font-size: 14px; color: var(--ink-faint); max-width: 30em; }
.footer h5 {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin: 0 0 14px;
  font-weight: 600;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer ul a, .footer ul span {
  font-size: 14.5px;
  color: var(--ink-dim);
  text-decoration: none;
}
.footer ul a:hover { color: var(--ink); }
.footer-legal {
  max-width: 1200px;
  margin: 44px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  font-size: 12.5px;
  color: var(--ink-faint);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  justify-content: space-between;
}

/* ——— WhatsApp float ——— */
.wa-float {
  position: fixed;
  right: max(16px, 2.2vw);
  bottom: max(16px, 2.4vh);
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: blur(22px) saturate(1.7);
  backdrop-filter: blur(22px) saturate(1.7);
  border: 1px solid var(--glass-edge);
  border-radius: 999px;
  padding: 9px 18px 9px 10px;
  box-shadow: var(--shadow-soft), inset 0 1px 0 var(--glass-border);
  font-size: 13.5px;
  font-weight: 600;
  transition: transform 0.25s ease;
}
.wa-float:hover { transform: translateY(-2px); }
.wa-float .wa-dot {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.18);
  color: #17a34a;
  border: 1px solid rgba(31, 168, 85, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  display: grid;
  place-items: center;
  flex: none;
}
.wa-float .wa-dot svg { width: 18px; height: 18px; }

/* ——— collectors invite ——— */
.invite {
  position: fixed;
  left: max(16px, 2.2vw);
  bottom: max(16px, 2.4vh);
  z-index: 69;
  width: min(380px, calc(100vw - 32px));
  padding: 22px 22px 18px;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.5s ease;
}
.invite.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.invite h4 { font-size: 20px; font-weight: 700; letter-spacing: -0.015em; margin: 0 0 6px; padding-right: 28px; }
.invite > p { font-size: 14px; color: var(--ink-dim); margin: 0 0 14px; }
.invite .form { margin-top: 0; }
.invite-close {
  position: absolute;
  top: 14px; right: 14px;
  background: none;
  border: 0;
  color: var(--ink-faint);
  cursor: pointer;
  padding: 6px;
  line-height: 0;
}
.invite-close:hover { color: var(--ink); }

/* ——— lightbox ——— */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(246, 245, 242, 0.92);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  display: none;
  place-items: center;
  padding: 4vmin;
  cursor: zoom-out;
}
.lightbox.is-open { display: grid; }
.lightbox img {
  max-width: 94vw;
  max-height: 92vh;
  width: auto; height: auto;
  box-shadow: var(--shadow-frame);
}

/* ——— consent ——— */
.consent {
  position: fixed;
  left: 50%;
  bottom: max(16px, 2.4vh);
  transform: translateX(-50%);
  z-index: 80;
  width: min(520px, calc(100vw - 28px));
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.consent p { margin: 0; font-size: 13px; color: var(--ink-dim); flex: 1 1 240px; }
.consent .btn { padding: 9px 18px; font-size: 13px; }

/* ——— faq ——— */
.faq { max-width: 760px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line-soft); padding: 2px 0; }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--accent);
  font-size: 20px;
  font-weight: 400;
  transition: transform 0.25s ease;
  flex: none;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--ink-dim); padding-bottom: 18px; margin: 0; max-width: 44em; font-size: 15.5px; }

/* ——— sold banner ——— */
.sold-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--glass-edge);
  margin-bottom: 18px;
  font-size: 14.5px;
  color: var(--ink-dim);
}
.sold-banner a { font-weight: 600; color: var(--accent); text-decoration: none; white-space: nowrap; }

/* ——— reveal ——— */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ——— crumbs ——— */
.crumbs { font-size: 12.5px; color: var(--ink-faint); margin-bottom: 20px; font-weight: 500; }
.crumbs a { color: var(--ink-faint); text-decoration: none; }
.crumbs a:hover { color: var(--ink); }
.crumbs span { margin: 0 7px; color: rgba(29, 29, 31, 0.2); }

/* ——— mobile action bar ——— */
.action-bar {
  display: none;
  position: fixed;
  left: 12px; right: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 71;
  padding: 8px;
  gap: 8px;
  align-items: center;
  border-radius: 999px;
}
.action-bar .btn { flex: 1; padding: 13px 16px; font-size: 14px; }
.action-bar-wa { flex: none; display: grid; place-items: center; }
.action-bar-wa .wa-dot {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.18);
  color: #17a34a;
  border: 1px solid rgba(31, 168, 85, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  display: grid;
  place-items: center;
}
.action-bar-wa .wa-dot svg { width: 20px; height: 20px; }

/* ——— accessibility ——— */
@media (prefers-reduced-transparency: reduce) {
  .glass, .nav, .wa-float, .lightbox, .btn-ghost { -webkit-backdrop-filter: none; backdrop-filter: none; }
  .glass, .wa-float, .nav { background: var(--glass-bg-strong); }
}

/* ——— responsive ——— */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; padding-top: clamp(110px, 15vh, 140px); }
  .hero-art { order: -1; }
  .hero-art .work-frame { max-width: 340px; }
  .painting-hero { grid-template-columns: 1fr; }
  .painting-stage { position: static; }
  .split { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav { top: 10px; gap: 10px; padding: 8px 10px; width: calc(100vw - 20px); }
  .nav-wordmark { font-size: 15px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; order: -1; margin-left: 0; }
  .nav-cta { display: inline-flex; margin-left: auto; padding: 8px 16px; font-size: 12px; }
  .btn { font-size: 14px; padding: 13px 20px; }
  .hero-actions .btn { flex: 1 1 100%; }
  .form-row { grid-template-columns: 1fr; }
  .wa-float span.wa-label { display: none; }
  .wa-float { padding: 6px; }
  .wa-float .wa-dot { width: 42px; height: 42px; }
  .footer { padding-bottom: 130px; }
  .action-bar { display: flex; }
  body.has-action-bar .wa-float, body.has-action-bar .invite { display: none; }
  body.has-action-bar .footer { padding-bottom: 150px; }
  body.has-action-bar .consent { bottom: 84px; }
}
