/* ============================================================
   Hall of Frame — Classic Museum theme
   ============================================================ */

/* ---- CUSTOM FONTS ----------------------------------------------------------
   วางไฟล์ฟอนต์ใน web/fonts/ แล้วเปิด @font-face ด้านล่าง (ลบ comment)
   - "HOF Display" = ฟอนต์หัวข้อ headline (อังกฤษ)
   - "HOF Body"    = ฟอนต์เนื้อหาอังกฤษ
   - "HOF Thai"    = ฟอนต์ไทย (เนื้อหา)
   ตราบใดที่ยังไม่ใส่ไฟล์ ระบบจะ fall back ไป Cormorant/EB Garamond/Noto Serif Thai เอง

@font-face { font-family: "HOF Display"; src: url("fonts/display.woff2") format("woff2"); font-weight: 400 600; font-display: swap; }
@font-face { font-family: "HOF Body";    src: url("fonts/body.woff2")    format("woff2"); font-weight: 400 500; font-display: swap; }
@font-face { font-family: "HOF Thai";    src: url("fonts/thai.woff2")    format("woff2"); font-weight: 400 600; font-display: swap; }
---------------------------------------------------------------------------- */

:root {
  /* palette — warm ivory museum walls */
  --bg:        #F4EFE6;
  --bg-2:      #EBE3D4;
  --bg-card:   #FBF8F1;
  --ink:       #2A2722;
  --ink-soft:  #5C564C;
  --ink-faint: #8C8576;
  --gold:      #B89B6E;   /* hairline rules */
  --gold-deep: #9A7C4C;
  --accent:    #6B4A2C;   /* walnut — links / CTAs */
  --green:     #3C4A3A;   /* museum green secondary */
  --burgundy:  #5A2E2E;
  --line:      #D9CDB6;

  --maxw: 1180px;
  --gap: clamp(16px, 3vw, 40px);

  --serif-en: "HOF Display", "Roboto Serif", Georgia, serif;
  --body-en:  "HOF Body", "Roboto Serif", Georgia, serif;
  --thai:     "HOF Thai", "Prompt", "Sarabun", sans-serif;
  --font: var(--body-en), var(--thai);
  --display: var(--serif-en), var(--thai);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gap); }

/* small-caps editorial label */
.eyebrow {
  font-family: var(--font);
  font-size: 14px;
  color: var(--gold-deep);
  font-weight: 500;
}

.rule { height: 1px; background: var(--gold); opacity: 0.6; border: 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-size: 15px; letter-spacing: 0.04em;
  padding: 13px 26px; border: 1px solid var(--ink);
  background: transparent; color: var(--ink); cursor: pointer;
  transition: background .25s, color .25s, border-color .25s;
  border-radius: 0;
}
.btn:hover { background: var(--ink); color: var(--bg); }
.btn--solid { background: var(--ink); color: var(--bg); }
.btn--solid:hover { background: var(--accent); border-color: var(--accent); }
.btn--line { border-color: var(--green); color: var(--green); }
.btn--line:hover { background: var(--green); color: var(--bg); border-color: var(--green); }
.btn--line-solid { background: var(--green); color: var(--bg); border-color: var(--green); }
.btn--line-solid:hover { background: #2f3b2e; border-color: #2f3b2e; color: var(--bg); }
.btn--messenger { background: #0084FF; border-color: #0084FF; color: #fff; }
.btn--messenger:hover { background: #0068c9; border-color: #0068c9; color: #fff; }
.btn--ghost { border-color: var(--line); }
.line-logo { display: inline-block; vertical-align: -4px; }
.btn .line-logo { margin-right: 2px; }

/* Order button — image-only CTA (icon + text baked in as one PNG) */
.btn-order-img {
  display: inline-block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  line-height: 0;
  transition: transform .2s ease, opacity .2s ease;
}
.btn-order-img img {
  display: block;
  height: 68px;
  width: auto;
  max-width: 100%;
}
.btn-order-img:hover { opacity: 0.82; transform: translateY(-1px); }
@media (max-width: 540px) {
  .btn-order-img img { height: 56px; }
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(244,239,230,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.wordmark {
  font-family: var(--serif-en); font-size: 16px; letter-spacing: 0;
  font-weight: 400; text-transform: none; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 11px;
}
.brand-mark { height: 42px; width: auto; display: block; }
.nav { display: flex; gap: 30px; align-items: center; }
.nav a {
  font-size: 14px; letter-spacing: 0; text-transform: none;
  color: var(--ink-soft); transition: color .2s; position: relative;
}
.nav a:hover { color: var(--ink); }
.nav .nav-line { font-size: 19px; color: var(--green); }
.nav .nav-line:hover { color: #2f3b2e; }
.nav-toggle { display: none; background: none; border: 0; font-size: 24px; cursor: pointer; color: var(--ink); }

/* ============================================================
   Hero
   ============================================================ */
/* ===== Full-bleed hero with random rotating bg + Ken-Burns zoom ===== */
.hero-fullbleed {
  position: relative;
  height: 92vh;
  min-height: 600px;
  overflow: hidden;
  padding: 0;
  text-align: left;
  /* Warm museum-wall background while the hero image loads — feels alive, not "dead screen" */
  background:
    radial-gradient(ellipse at center, #3a2d22 0%, #1c1410 70%, #100d0a 100%);
}
.hero-bg-stack { position: absolute; inset: 0; will-change: transform, opacity; }
.hero-bg {
  position: absolute; inset: -3%;
  background-size: cover;
  background-position: center;
  transform-origin: 50% 50%;
  transform: translateZ(0);   /* promote to its own GPU layer — Ken Burns + dissolve stay smooth */
  /* Long, smooth dissolve between images */
  transition: opacity 2.5s ease-in-out;
  will-change: transform, opacity;
  backface-visibility: hidden;
  /* Lift exposure of inherently dark masterpieces so they don't read as "blank dark" */
  filter: brightness(1.08) contrast(1.04) saturate(1.06);
}
/* First image: fade in quickly (0.6s) so initial paint doesn't feel like a 2.5s dark screen */
.hero-bg.first-show { transition: opacity 0.6s ease-out; }
/* Default hero image painted by CSS — shows the moment the preloaded image decodes,
   so mobile users see art instantly instead of waiting for JS to fetch + decode. */
#hero-bg-a {
  background-image: url("img/Landing-img/maximum high resolution with original detail (1).webp");
  opacity: 1;
  z-index: 2;
  animation: heroKenBurns 22s ease-out forwards;
}
@keyframes heroKenBurns {
  /* Gentler zoom range — smoother on slower GPUs, still visible */
  from { transform: scale(1.02) translateZ(0); }
  to   { transform: scale(1.10) translateZ(0); }
}
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.35) 50%,
    rgba(0,0,0,0.20) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gap);
  height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.hero-card {
  background: transparent;
  padding: 0;
  max-width: 720px;
  width: 100%;
  text-align: center;
  box-shadow: none;
  border: none;
  color: var(--bg);
  text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}
.hero-card .hero-cta { justify-content: center; }
.hero-card .eyebrow {
  display: block;
  margin-bottom: 18px;
  color: var(--bg);
  opacity: 0.9;
}
.hero-card h1 {
  font-family: var(--display);
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--bg);
  margin-bottom: 22px;
}
.hero-fullbleed .hero-card p {
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.6;
  color: var(--bg);
  opacity: 0.92;
  margin: 0 auto;
  max-width: 560px;
}
/* CTAs on photo background — invert btn styles to white */
.hero-card .btn--solid {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
  text-shadow: none;
}
.hero-card .btn--solid:hover {
  background: transparent;
  color: var(--bg);
  border-color: var(--bg);
}
.hero-card .btn--line {
  background: transparent;
  color: var(--bg);
  border-color: var(--bg);
  text-shadow: none;
}
.hero-card .btn--line:hover {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
}
/* Caption aligned to the same column as the logo (uses .wrap geometry) */
.hero-caption {
  position: absolute;
  top: clamp(28px, 6vw, 80px);
  left: 0; right: 0;
  margin: 0 auto;
  z-index: 3;
  max-width: var(--maxw);
  padding: 0 var(--gap);
  text-align: left;
  color: var(--bg);
  text-shadow: 0 1px 3px rgba(0,0,0,0.55);
  pointer-events: none;
  opacity: 0; animation: heroCaptionIn 1.2s ease-out 0.4s forwards;
}
.hero-caption h3 {
  font-family: var(--display);
  font-size: clamp(20px, 1.5vw, 26px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 4px;
}
.hero-fullbleed .hero-caption p {
  font-size: clamp(12px, 0.9vw, 14px);
  line-height: 1.4;
  color: var(--bg);
  margin: 0;
  letter-spacing: 0.02em;
  opacity: 0.9;
}
@keyframes heroCaptionIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Legacy .hero (kept as fallback for sections that may still use it) */
.hero { padding: clamp(48px, 8vw, 110px) 0 clamp(40px, 6vw, 80px); text-align: center; }
.hero .eyebrow { margin-bottom: 22px; }
.hero h1 {
  font-family: var(--display);
  font-size: clamp(40px, 7vw, 86px);
  line-height: 1.04; font-weight: 700; letter-spacing: 0.005em;
  margin: 0 auto 26px;
}
.hero p {
  font-size: clamp(17px, 2vw, 21px); color: var(--ink-soft);
  max-width: 52ch; margin: 0 auto 36px;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
/* hero gallery wall */
.hero-gallery {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(16px, 3vw, 48px);
  margin: clamp(44px, 7vw, 88px) auto 0;
}
.hero-gallery .ga { margin: 0; cursor: pointer; transition: transform .3s ease; }
.hero-gallery .ga:hover { transform: translateY(-5px); }
.hero-gallery .frame, .hero-gallery .hero-img { box-shadow: 0 22px 48px rgba(42,39,34,0.18); }
.hero-gallery img { display: block; height: auto; }
.ga--center img { width: clamp(220px, 28vw, 340px); }
.ga--side img   { width: clamp(130px, 17vw, 210px); }
.ga--up   { margin-top: clamp(-30px, -4vw, -56px) !important; }
.ga--down { margin-top: clamp(40px, 6vw, 80px) !important; }
.placard {
  text-align: center; margin-top: 20px;
}
.placard b {
  display: block; font-family: var(--display); font-weight: 500;
  font-size: 17px; letter-spacing: 0.02em; color: var(--ink);
}
.placard span {
  display: block; margin-top: 3px; font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-faint);
}

/* framed artwork presentation (the "gallery frame") */
.frame {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: clamp(14px, 2vw, 26px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.frame-inner {
  border: 1px solid var(--line);
  padding: clamp(10px, 1.6vw, 20px);
  background: var(--bg-2);
}

/* ============================================================
   Trust strip
   ============================================================ */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.trust .wrap {
  display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(18px, 4vw, 56px);
  padding: 20px 0;
}
.trust span {
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-soft); display: inline-flex; align-items: center; gap: 9px;
}
.trust .ti { color: var(--gold-deep); font-size: 17px; }

/* ============================================================
   Section heading
   ============================================================ */
.section { padding: clamp(56px, 8vw, 100px) 0; }
.section-head { text-align: center; margin-bottom: clamp(16px, 2vw, 24px); }
.section-head .eyebrow { display: block; margin-bottom: 14px; }
.section-head h2 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(30px, 4.5vw, 52px); line-height: 1.1;
}
.section-head p { color: var(--ink-soft); margin-top: 14px; max-width: 56ch; margin-inline: auto; }
.section-head::after { content: ""; display: block; width: 44px; height: 1px; background: var(--gold); opacity: 0.65; margin: 26px auto 0; }

/* ============================================================
   Filter bar
   ============================================================ */
.filters {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-bottom: clamp(56px, 7vw, 88px);
}
.chip {
  font-family: var(--font); font-size: 14px; letter-spacing: 0.04em;
  padding: 8px 18px; border: 1px solid var(--line); background: transparent;
  color: var(--ink-soft); cursor: pointer; transition: all .2s; border-radius: 999px;
}
.chip:hover { border-color: var(--ink-faint); color: var(--ink); }
.chip.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.filter-group { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.filter-label {
  width: 100%; text-align: center; font-size: 13px;
  color: var(--ink-faint); margin: 6px 0 2px;
}

/* ============================================================
   Gallery grid
   ============================================================ */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(40px, 5vw, 80px) clamp(30px, 4vw, 60px);
}
@media (max-width: 900px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid { grid-template-columns: 1fr; } }

.card {
  cursor: pointer;
  text-align: center;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1.1s cubic-bezier(.22,.61,.36,1), transform 1.1s cubic-bezier(.22,.61,.36,1);
}
.card.is-revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .card { opacity: 1; transform: none; transition: none; }
}

.card-image {
  aspect-ratio: 4 / 5;
  display: flex; align-items: center; justify-content: center;
  overflow: visible; position: relative;   /* allow drop-shadow to escape */
  margin-bottom: 28px;
}
.card-image img {
  max-width: 100%; max-height: 100%;
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  /* Modest upscale — keeps frames consistent size without clipping the shadow */
  transform: scale(1.05);
  /* Realistic frame drop shadow — alpha-aware so it follows the actual frame shape */
  filter:
    drop-shadow(0 2px 3px rgba(0,0,0,0.20))
    drop-shadow(0 14px 26px rgba(0,0,0,0.22));
}

.card-eyebrow {
  display: block;
  margin-top: 8px;
  margin-bottom: 4px;
  color: var(--ink-faint);
  font-size: 11px;
  font-family: var(--font);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.card-title {
  font-family: var(--display);
  font-size: clamp(16px, 1.7vw, 23px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 6px;
}
.card-subtitle {
  font-size: 14px;
  color: var(--ink-faint);
  line-height: 1.5;
  letter-spacing: 0.01em;
}

/* Sold-out overlay on grid card */
.card--sold .card-image img { filter: drop-shadow(0 2px 3px rgba(0,0,0,0.20)) drop-shadow(0 14px 26px rgba(0,0,0,0.22)) grayscale(0.55); opacity: 0.78; }
.card--sold .card-title, .card--sold .card-subtitle { color: var(--ink-faint); }
.sold-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  z-index: 3;
}
.sold-stamp {
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--burgundy);
  background: rgba(244,239,230,0.92);
  border: 2px solid var(--burgundy);
  padding: 6px 18px 4px;
  transform: rotate(-6deg);
  text-shadow: 0 1px 0 rgba(255,255,255,0.4);
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.modal-price.is-sold { color: var(--ink-faint); text-decoration: line-through; text-decoration-thickness: 1px; }
.modal-price .sold-tag {
  display: inline-block;
  font-family: var(--font);
  font-size: 13px;
  letter-spacing: 0.24em;
  color: var(--burgundy);
  border: 1px solid var(--burgundy);
  padding: 3px 10px;
  margin-left: 12px;
  vertical-align: middle;
  text-decoration: none;
}

.card-ph {
  width: 60%; aspect-ratio: 3/4;
  background: var(--bg-2); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
}
.card-ph .mono {
  font-family: var(--display); font-size: 60px; color: var(--gold-deep);
  letter-spacing: 0.06em; line-height: 1;
}

.empty { text-align: center; color: var(--ink-faint); padding: 60px 0; font-style: italic; }

/* Header search (lives inside .site-header) */
.header-search {
  display: flex; align-items: center; gap: 10px;
  flex: 1; max-width: 360px;
  margin: 0 24px;
}
.header-search input {
  flex: 1;
  font-family: var(--font); font-size: 14px;
  padding: 8px 14px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 0;
  outline: none;
  transition: border-color .2s;
}
.header-search input:focus { border-color: var(--gold-deep); }
.header-search input::placeholder { color: var(--ink-faint); }
.search-count {
  font-size: 12px; color: var(--ink-faint);
  letter-spacing: 0.04em; white-space: nowrap;
}
@media (max-width: 720px) {
  .header-search { display: none; }
}

/* Pagination */
.pagination {
  display: flex; justify-content: center; align-items: center;
  gap: 6px; margin-top: 56px; flex-wrap: wrap;
}
.page-btn {
  font-family: var(--font); font-size: 14px;
  min-width: 38px; height: 38px;
  padding: 0 10px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.page-btn:hover:not(:disabled) {
  background: var(--bg-card);
  border-color: var(--gold-deep);
}
.page-btn.active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.page-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.page-btn.nav { font-size: 20px; line-height: 1; }
.page-ellipsis {
  color: var(--ink-faint);
  padding: 0 6px;
  user-select: none;
}

/* ============================================================
   Editorial split (Why / vs IKEA)
   ============================================================ */
.split { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.split .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 72px); align-items: center; padding: clamp(56px,8vw,96px) var(--gap); }
.split h2 { font-family: var(--display); font-weight: 500; font-size: clamp(28px,4vw,46px); line-height: 1.12; margin-bottom: 20px; }
.split p { color: var(--ink-soft); margin-bottom: 16px; }
.split .lead-para { font-size: 1.05em; line-height: 1.7; color: var(--ink); }
.split p em { font-style: italic; color: var(--accent); font-family: var(--display); }
.compare { list-style: none; margin-top: 24px; }
.compare li { display: flex; gap: 12px; padding: 12px 0; border-top: 1px solid var(--line); align-items: flex-start; }
.compare li .ti { color: var(--green); font-size: 20px; margin-top: 2px; }
.compare li b { font-weight: 500; }
.split-figure .frame-inner { aspect-ratio: 4/5; display:flex; align-items:center; justify-content:center; }

/* ============================================================
   Dual entry (Gift / Business)
   ============================================================ */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px,3vw,28px); }
.duo-card { background: var(--bg-card); border: 1px solid var(--line); padding: clamp(28px,4vw,48px); text-align: center; transition: border-color .3s, box-shadow .3s, transform .3s; }
.duo-card:hover { border-color: var(--gold); box-shadow: 0 16px 36px rgba(42,39,34,0.10); transform: translateY(-4px); }
.duo-card .ti { font-size: 34px; color: var(--gold-deep); }
.duo-card h3 { font-family: var(--display); font-weight: 500; font-size: 26px; margin: 16px 0 8px; }
.duo-card p { color: var(--ink-soft); font-size: 16px; margin-bottom: 20px; }

/* ============================================================
   Wall Art Collection band
   ============================================================ */
.wall-art-band {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(56px, 8vw, 96px) 0;
}
.wall-art-band .wrap { display: block; }
.wall-art-band .wa-head { text-align: center; margin-bottom: clamp(28px, 4vw, 44px); }
.wall-art-band h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  margin: 14px 0 14px;
}
.wall-art-band .wa-head p {
  color: var(--ink-soft);
  margin: 0 auto;
  max-width: 56ch;
}
.wall-art-band .wa-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(8px, 1vw, 14px);
  margin-bottom: clamp(28px, 4vw, 44px);
}
.wall-art-band .wa-shot {
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
  background: var(--bg-card);
}
.wall-art-band .wa-shot img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.wall-art-band .wa-shot:hover img { transform: scale(1.05); }
.wall-art-band .wa-detail {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.wall-art-band .wa-lead {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: clamp(28px, 3.5vw, 40px);
}
.wall-art-band .wa-lead b { color: var(--ink); font-weight: 500; }
.wall-art-band .wa-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px clamp(24px, 4vw, 48px);
  text-align: left;
  margin: 0 auto clamp(32px, 4vw, 48px);
}
.wall-art-band .wa-features li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 4px 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.wall-art-band .wa-features li i {
  color: var(--gold-deep);
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 1px;
}
.wall-art-band .wa-features li b {
  color: var(--ink);
  font-weight: 500;
}
.wall-art-band .wa-cta {
  display: flex;
  justify-content: center;
}
@media (max-width: 820px) {
  .wall-art-band .wa-grid { grid-template-columns: repeat(2, 1fr); }
  .wall-art-band .wa-features { grid-template-columns: 1fr; }
}

/* ============================================================
   Venues (In the Wild — café · restaurant · hotel)
   ============================================================ */
.venues { padding: clamp(56px, 8vw, 100px) 0; }
.venues .section-head { margin-bottom: clamp(40px, 5vw, 64px); }
.venue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 36px);
  margin-bottom: clamp(36px, 5vw, 56px);
}
.venue {
  margin: 0;
  display: flex; flex-direction: column;
}
.venue a {
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-card);
}
.venue a img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.venue:hover a img { transform: scale(1.04); }
.venue figcaption {
  padding-top: 20px;
}
.venue-tag {
  display: inline-block;
  font-size: 14px;
  color: var(--gold-deep);
  margin-bottom: 10px;
}
.venue h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 8px;
}
.venue figcaption p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}
.venues-cta {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}
@media (max-width: 820px) {
  .venue-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   LINE band
   ============================================================ */
.line-band { background: var(--green); color: #F4EFE6; text-align: center; padding: clamp(48px,7vw,84px) 0; }
.line-band h2 { font-family: var(--display); font-weight: 500; font-size: clamp(28px,4vw,44px); margin-bottom: 12px; }
.line-band p { opacity: 0.85; margin-bottom: 26px; max-width: 50ch; margin-inline: auto; }
.line-band .btn { border-color: #F4EFE6; color: #F4EFE6; }
.line-band .btn:hover { background: #F4EFE6; color: var(--green); }
.line-trust {
  list-style: none;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: clamp(18px, 4vw, 56px);
  margin: clamp(28px, 4vw, 40px) 0 0;
  padding-top: clamp(24px, 3vw, 32px);
  border-top: 1px solid rgba(244,239,230,0.18);
}
.line-trust li {
  font-size: 14px;
  color: rgba(244,239,230,0.85);
  display: inline-flex; align-items: center; gap: 9px;
}
.line-trust li i {
  color: var(--gold);
  font-size: 18px;
  opacity: 0.9;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: clamp(48px,6vw,72px) 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer-grid h4 { font-family: var(--display); font-size: 20px; font-weight: 500; margin-bottom: 14px; }
.footer-grid .col-brand p { color: var(--ink-soft); font-size: 15px; max-width: 34ch; }
.footer-grid .eyebrow { display:block; margin-bottom: 14px; }
.footer-grid ul { list-style: none; }
.footer-grid li { padding: 5px 0; }
.footer-grid a { color: var(--ink-soft); font-size: 15px; }
.footer-grid a:hover { color: var(--ink); }
.footer-bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13px; color: var(--ink-faint); }

/* ============================================================
   Product modal
   ============================================================ */
.modal-back {
  position: fixed; inset: 0; z-index: 100; background: rgba(34,31,27,0.55);
  display: none; align-items: center; justify-content: center; padding: 20px;
  backdrop-filter: blur(3px);
}
.modal-back.open { display: flex; }
.modal {
  background: var(--bg); max-width: 980px; width: 100%; max-height: 92vh; overflow-y: auto;
  border: 1px solid var(--gold); display: grid; grid-template-columns: 1fr 1fr;
}
.modal-art { background: var(--bg-2); padding: clamp(20px,3vw,40px); display:flex; align-items:center; justify-content:center; min-height: 60vh; }
.modal-art.is-framed { background: var(--bg-2); }
.modal-framed { width: 100%; display: flex; align-items: center; justify-content: center; }
.modal-framed img { max-width: 100%; max-height: 74vh; width: auto; height: auto; object-fit: contain; }

/* Carousel inside modal */
.carousel {
  position: relative;
  width: 100%;
  display: flex; flex-direction: column;
}
.carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 8px 12px 0;
}
.carousel-slide img {
  max-width: 100%;
  max-height: 64vh;
  width: auto; height: auto;
  object-fit: contain;
  display: block;
}
.carousel-cap {
  font-size: 12px;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
  margin-top: 12px;
  text-align: center;
}
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(251,248,241,0.85);
  color: var(--ink);
  font-size: 22px; line-height: 1;
  cursor: pointer; padding: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
  z-index: 2;
}
.carousel-btn:hover { background: var(--bg-card); border-color: var(--gold-deep); }
.carousel-prev { left: 4px; }
.carousel-next { right: 4px; }
.carousel-dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 14px;
}
.carousel-dots .dot {
  width: 8px; height: 8px; border-radius: 50%;
  border: 1px solid var(--gold-deep);
  background: transparent;
  cursor: pointer; padding: 0;
  transition: background .2s, transform .2s;
}
.carousel-dots .dot.active {
  background: var(--gold-deep);
  transform: scale(1.2);
}
.modal-body { padding: clamp(26px,3.5vw,48px); position: relative; }
.modal-close { position: absolute; top: 8px; right: 8px; background: none; border: 0; font-size: 28px; cursor: pointer; color: var(--ink-soft); line-height: 1; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.modal-close:hover { color: var(--ink); }
.modal-body .eyebrow { display:block; margin-bottom: 12px; letter-spacing: 0; text-transform: none; }
.modal-body h2 { font-family: var(--display); font-weight: 500; font-size: clamp(28px,3.4vw,40px); line-height: 1.1; }
.modal-artist { font-style: italic; color: var(--ink-soft); margin: 8px 0 18px; font-size: 17px; }
.modal-price { font-family: var(--display); font-size: 30px; margin: 4px 0 18px; }
.modal-story { color: var(--ink-soft); margin-bottom: 22px; }
.spec { list-style: none; border-top: 1px solid var(--line); margin-bottom: 24px; }
.spec li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.spec li span:first-child { color: var(--ink-faint); letter-spacing: 0.04em; }
.modal-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.modal-note { margin-top: 16px; font-size: 13px; color: var(--ink-faint); display:flex; gap: 8px; align-items:center; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 820px) {
  body { font-size: 17px; }
  .nav { display: none; }
  .nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 18px var(--gap);
    gap: 16px; align-items: flex-start;
    box-shadow: 0 8px 24px rgba(42,39,34,0.10);
    z-index: 39;
  }
  .nav.open a { font-size: 16px; padding: 4px 0; }
  .nav-toggle { display: block; }
  .split .wrap { grid-template-columns: 1fr; }
  .split-figure { order: -1; }
  .duo { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-grid .col-brand { grid-column: 1 / -1; }
  .modal { grid-template-columns: 1fr; }
  .modal-art { min-height: 0; padding: clamp(16px,4vw,28px); }
  .modal-art .carousel-slide img { max-height: 50vh; }
}
@media (max-width: 540px) {
  .ga--side { display: none; }
  .ga--center img { width: clamp(220px, 64vw, 300px); }
}
@media (max-width: 480px) {
  .grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { justify-content: center; }
}
