/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: #FAF5EC;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: url('images/gallery/boomerang-mandala-bg.png') center / cover no-repeat;
  opacity: 0.12;
  pointer-events: none;
  z-index: -1;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ─── Design Tokens ─── */
:root {
  --ochre: #C8720A;
  --deep-red: #8B2635;
  --terracotta: #C4603A;
  --sand: #F2E8D5;
  --sand-light: #FAF5EC;
  --charcoal: #1C1A17;
  --gold: #D4A853;
  --gold-light: #E8C982;
  --white: #FAFAF8;
  --text-dark: #1A1008;
  --text-mid: #5C4A2A;
  --text-light: #9A8068;

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

  --container: 1200px;
  --section-v: 6rem;
  --radius-sm: 6px;
  --radius: 14px;
  --radius-pill: 100px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Typography Scale ─── */
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: transparent;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
}

h1 { font-size: clamp(3rem, 6.5vw, 5.8rem); }
h2 { font-size: clamp(2.2rem, 4vw, 3.8rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }

p {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.8;
  color: var(--text-mid);
}

/* ─── Layout Helpers ─── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

section { padding-block: var(--section-v); padding-inline: 1.5rem; }

/* ─── Dot Texture ─── */
.dot-texture { position: relative; }
.dot-texture::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(200,114,10,0.15) 1.8px, transparent 1.8px);
  background-size: 22px 22px;
  pointer-events: none;
  z-index: 0;
}
.dot-texture > * { position: relative; z-index: 1; }

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── Buttons ─── */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  border-radius: var(--radius-pill);
  transition: all 0.3s var(--ease);
}
.btn-primary { background: var(--ochre); color: var(--white); }
.btn-primary:hover { background: var(--terracotta); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(250,245,236,0.45); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-dark { background: var(--charcoal); color: var(--white); }
.btn-dark:hover { background: var(--ochre); }

/* ─── Section Label ─── */
.label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 0.9rem;
}

/* ─── Divider ─── */
.divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 auto 3rem;
  max-width: 180px;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.35;
}
.divider-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ochre);
}

/* ════════════════════════════════════
   NAVIGATION
════════════════════════════════════ */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 2rem;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(28, 26, 23, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: rgba(250,250,248,0.8);
  font-size: 0.8rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links .nav-cta {
  background: var(--ochre);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-pill);
}
.nav-links .nav-cta:hover { background: var(--terracotta); color: var(--white); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  margin: 5px 0;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(139,38,53,0.55) 0%, rgba(28,26,23,0.82) 55%, rgba(26,22,8,0.92) 100%),
    radial-gradient(ellipse at 28% 58%, #8B2635 0%, #C8720A 35%, #1C1A17 70%),
    radial-gradient(ellipse at 72% 28%, #C4603A 0%, #8B2635 42%, #1A1008 82%);
  background-size: cover;
}

/* Songline — the signature element */
.songline {
  position: absolute;
  top: 58%;
  inset-inline: 0;
  height: 1px;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.songline-path {
  position: absolute;
  inset-block: 0;
  left: -100%;
  width: 200%;
  background: linear-gradient(90deg, transparent 0%, rgba(212,168,83,0) 20%, rgba(212,168,83,0.55) 50%, rgba(212,168,83,0.2) 80%, transparent 100%);
  animation: songline 9s ease-in-out infinite;
}
@keyframes songline {
  0%   { transform: translateX(0);    opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { transform: translateX(45%);  opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding-inline: 1.5rem;
  max-width: 920px;
}

.hero-nations {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fade-up 0.9s var(--ease) forwards 0.3s;
}

.hero h1 {
  color: var(--white);
  font-weight: 300;
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fade-up 1s var(--ease) forwards 0.55s;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }

.hero-tagline {
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  color: rgba(250,245,236,0.75);
  font-weight: 300;
  letter-spacing: 0.03em;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fade-up 1s var(--ease) forwards 0.75s;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 1s var(--ease) forwards 0.95s;
}

.hero-acknowledgement {
  position: absolute;
  bottom: 1.75rem;
  left: 2rem;
  right: 6rem;
  z-index: 2;
  text-align: left;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: rgba(250,245,236,0.38);
  text-transform: uppercase;
  max-width: 540px;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  left: auto;
  transform: none;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(250,245,236,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: pulse 2.8s ease-in-out infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(212,168,83,0.55), transparent);
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slow-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero-rings {
  position: absolute;
  right: -6%;
  top: 50%;
  width: min(540px, 46vw);
  aspect-ratio: 1;
  transform: translateY(-52%);
  z-index: 1;
  pointer-events: none;
}
.hero-rings svg {
  width: 100%;
  height: 100%;
  animation: slow-rotate 100s linear infinite;
}
@media (max-width: 768px) { .hero-rings { display: none; } }
@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 0.9; }
}

/* ════════════════════════════════════
   ABOUT
════════════════════════════════════ */
.about { background: rgba(250, 245, 236, 0.78); }

.about-inner {
  max-width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap { position: relative; }

.about-portrait {
  width: 100%;
  aspect-ratio: 3/4;
  display: block;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
}

.portrait-caption {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  background: var(--charcoal);
  color: var(--sand);
  padding: 1.25rem 1.5rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  max-width: 210px;
  line-height: 1.5;
  border-radius: var(--radius-sm);
}

.about-text h2 { color: var(--text-dark); margin-bottom: 1.5rem; }

.lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.about-text p { margin-bottom: 1.2rem; }

.mob-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1.25rem 0;
}
.mob-tag {
  background: rgba(200,114,10,0.08);
  border: 1px solid rgba(200,114,10,0.28);
  color: var(--ochre);
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  padding: 0.3rem 0.8rem;
  text-transform: uppercase;
}

.about-quote {
  margin-top: 1.75rem;
  padding: 1.5rem 1.5rem 1.5rem 1.75rem;
  border-left: 3px solid var(--ochre);
  background: rgba(200,114,10,0.04);
}
.about-quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: var(--text-dark);
  line-height: 1.65;
  border-left: 2px solid var(--ochre);
  padding-left: 1.25rem;
}
.about-quote cite {
  display: block;
  margin-top: 0.65rem;
  font-style: normal;
  font-size: 0.73rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ════════════════════════════════════
   CUSTOM FAMILY PAINTING
════════════════════════════════════ */
.custom-painting {
  background: linear-gradient(150deg, #1E1A14 0%, #2B1C0D 55%, #1E1A14 100%);
  padding-block: 5rem;
}

.custom-painting-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.custom-painting-image-wrap {
  position: relative;
}

.custom-painting-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(26,16,8,0.18);
}

.custom-painting-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--ochre);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
}

.custom-painting .label { color: var(--gold); }
.custom-painting h2 { color: var(--white); margin-bottom: 1rem; }
.custom-painting > .container > .custom-painting-details > p,
.custom-painting p { color: rgba(242,232,213,0.78); }
.steps-label { color: var(--gold); }
.custom-step strong { color: var(--white) !important; }
.custom-step p { color: rgba(242,232,213,0.72) !important; }
.custom-step .step-num { color: var(--gold); opacity: 0.5; }
.custom-includes li { color: rgba(242,232,213,0.8); }
.custom-price-block {
  background: rgba(255,255,255,0.05);
  border-color: rgba(200,114,10,0.3);
}
.price-from-label { color: rgba(242,232,213,0.5); }
.price-main { color: var(--gold-light); }
.price-sub { color: rgba(242,232,213,0.5); }
.custom-painting-details h2 { margin-bottom: 1rem; }

.custom-steps-block { margin-block: 2rem; }

.steps-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 1.1rem;
}

.custom-steps {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.custom-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.custom-step .step-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--ochre);
  opacity: 0.3;
  flex-shrink: 0;
  width: 2.5rem;
}

.custom-step strong {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.custom-step p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

.custom-includes {
  list-style: none;
  margin-block: 0 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.custom-includes li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.custom-includes li::before {
  content: '✓';
  color: var(--ochre);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.custom-price-block {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-block: 1.75rem 1.5rem;
  padding: 1.1rem 1.4rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(200,114,10,0.18);
}

.price-from-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
}

.price-main {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--charcoal);
  line-height: 1;
}

.price-sub {
  font-size: 0.8rem;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .custom-painting-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .custom-painting-img { max-width: 420px; margin-inline: auto; }
}

/* ════════════════════════════════════
   GALLERY
════════════════════════════════════ */
.gallery { background: #131110; text-align: center; }

.gallery .label { color: var(--gold); }
.gallery-header {
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 3rem;
}
.gallery-header h2 { margin-bottom: 0.75rem; color: var(--white); }

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 2.5rem;
}
.filter-btn {
  background: none;
  border: 1px solid rgba(250,245,236,0.2);
  color: rgba(250,245,236,0.6);
  padding: 0.4rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--radius-pill);
  transition: all 0.3s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--ochre);
  border-color: var(--ochre);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 360px;
  gap: 0.875rem;
}

/* Featured wide cards — every third row opens with a 2-col piece */
.artwork-card:nth-child(1) { grid-column: span 2; }
.artwork-card:nth-child(6) { grid-column: span 2; }

.artwork-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--sand);
  border-radius: var(--radius);
}
.artwork-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.artwork-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 0.6s var(--ease);
}
.artwork-card:hover .artwork-bg { transform: scale(1.09); }

/* Real image — replaces the CSS gradient placeholder */
img.artwork-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 0.6s var(--ease);
}
/* Note: ::after pseudo-elements don't apply to <img> (replaced elements),
   so the dot overlay is automatically absent on real images. */

/* Dot pattern over artwork placeholders */
.artwork-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(250,245,236,0.13) 1.5px, transparent 1.5px);
  background-size: 13px 13px;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* Artwork placeholder fills — each unique within the palette */
.artwork-card:nth-child(1) .artwork-bg { background: radial-gradient(ellipse at 30% 55%, rgba(212,168,83,0.45) 0%, transparent 55%), linear-gradient(135deg, #8B2635, #C8720A, #1A1008); }
.artwork-card:nth-child(2) .artwork-bg { background: linear-gradient(115deg, #C4603A, #D4A853, #8B2635); }
.artwork-card:nth-child(3) .artwork-bg { background: linear-gradient(45deg, #1A1008, #C8720A, #F2E8D5); }
.artwork-card:nth-child(4) .artwork-bg { background: radial-gradient(circle at 50% 50%, rgba(200,114,10,0.5) 0%, transparent 60%), linear-gradient(160deg, #1A1008, #5C4A2A, #C4603A); }
.artwork-card:nth-child(5) .artwork-bg { background: linear-gradient(200deg, #D4A853, #C8720A, #8B2635); }
.artwork-card:nth-child(6) .artwork-bg { background: linear-gradient(80deg, #1A1008, #8B2635, #C4603A, #D4A853); }
.artwork-card:nth-child(7) .artwork-bg { background: radial-gradient(ellipse at 35% 65%, rgba(212,168,83,0.3) 0%, transparent 45%), linear-gradient(135deg, #C4603A, #8B2635, #1A1008); }
.artwork-card:nth-child(8) .artwork-bg { background: linear-gradient(70deg, #5C4A2A, #C8720A, #F2E8D5); }
.artwork-card:nth-child(9) .artwork-bg { background: linear-gradient(120deg, #8B2635, #1A1008, #C8720A); }

.artwork-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,10,4,0.96) 0%, rgba(20,10,4,0.5) 40%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
}
.artwork-card:hover .artwork-overlay { opacity: 1; }

.artwork-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.artwork-story { font-size: 0.78rem; color: rgba(250,245,236,0.7); margin-bottom: 0.4rem; line-height: 1.4; }
.artwork-price { font-size: 0.8rem; color: var(--gold-light); letter-spacing: 0.04em; }

.gallery-cta { margin-top: 3rem; color: rgba(242,232,213,0.65); }

/* ════════════════════════════════════
   CULTURAL STATEMENT BAND
════════════════════════════════════ */
.cultural-band {
  background: linear-gradient(135deg, #1C1A17 0%, #2B1C0D 50%, #1C1A17 100%);
  padding-block: 4rem;
  padding-inline: 1.5rem;
  text-align: center;
}
.cultural-band p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  color: var(--white);
  line-height: 1.65;
  max-width: 780px;
  margin-inline: auto;
}
.cultural-band cite {
  display: block;
  margin-top: 0.9rem;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,245,236,0.68);
}

/* ════════════════════════════════════
   COMMISSIONS
════════════════════════════════════ */
.commissions {
  background: var(--charcoal);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.commissions::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(200,114,10,0.055) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}

.commissions-inner {
  max-width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.commissions-info .label { color: var(--gold-light); }
.commissions-info h2 { color: var(--white); margin-bottom: 1.4rem; }
.commissions-info > p { color: rgba(250,245,236,0.72); margin-bottom: 1.2rem; }

.benefits {
  list-style: none;
  margin: 1.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.92rem;
  color: rgba(250,245,236,0.75);
  line-height: 1.55;
}
.benefit-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ochre);
  flex-shrink: 0;
  margin-top: 0.42rem;
}

.price-tiers {
  margin-top: 1.75rem;
  border-top: 1px solid rgba(250,245,236,0.08);
}
.tier {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(250,245,236,0.08);
}
.tier-name {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(250,245,236,0.55);
}
.tier-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold-light);
}

/* Commission Form */
.commission-form {
  background: rgba(250,245,236,0.04);
  border: 1px solid rgba(250,245,236,0.09);
  padding: 2.5rem;
  border-radius: var(--radius);
}
.commission-form h3 { color: var(--white); font-size: 1.6rem; margin-bottom: 0.35rem; }
.form-sub { color: rgba(250,245,236,0.45); font-size: 0.82rem; margin-bottom: 2rem; }

.form-group { margin-bottom: 1.15rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,245,236,0.45);
  margin-bottom: 0.45rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(250,245,236,0.06);
  border: 1px solid rgba(250,245,236,0.13);
  color: var(--white);
  padding: 0.72rem 1rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  border-radius: var(--radius-sm);
  -webkit-appearance: none;
  transition: border-color 0.3s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(250,245,236,0.28); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ochre);
  background: rgba(200,114,10,0.04);
}
.form-group select option { background: #1C1A17; }
.form-group textarea { resize: vertical; min-height: 95px; }

.form-submit { width: 100%; margin-top: 0.4rem; }
.form-note {
  text-align: center;
  font-size: 0.72rem;
  color: rgba(250,245,236,0.3);
  margin-top: 0.9rem;
}

/* Testimonials below form */
.testimonial-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.75rem;
}
.testimonial {
  padding: 1.6rem;
  background: rgba(250,245,236,0.035);
  border: 1px solid rgba(250,245,236,0.07);
  border-radius: var(--radius-sm);
  position: relative;
}
.testimonial::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--ochre);
  opacity: 0.28;
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  line-height: 1;
}
.testimonial-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(250,245,236,0.75);
  line-height: 1.7;
  margin-bottom: 0.85rem;
}
.testimonial-author {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,245,236,0.35);
}

/* ════════════════════════════════════
   SHOP
════════════════════════════════════ */
.shop { background: rgba(250, 245, 236, 0.78); text-align: center; }

.shop-header {
  max-width: 580px;
  margin-inline: auto;
  margin-bottom: 3rem;
}
.shop-header h2 { margin-bottom: 0.75rem; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 1.5rem;
  text-align: left;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(26,16,8,0.11);
}

.product-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.product-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s var(--ease);
}
.product-card:hover .product-img { transform: scale(1.05); }

.product-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(250,245,236,0.11) 1.5px, transparent 1.5px);
  background-size: 11px 11px;
}

.product-card:nth-child(1) .product-img { background: linear-gradient(135deg, #C8720A, #8B2635, #1A1008); }
.product-card:nth-child(2) .product-img { background: linear-gradient(160deg, #D4A853, #C4603A, #5C4A2A); }
.product-card:nth-child(3) .product-img { background: linear-gradient(110deg, #8B2635, #C8720A, #D4A853); }
.product-card:nth-child(4) .product-img { background: linear-gradient(180deg, #1A1008, #5C4A2A, #C4603A); }
/* BSM social link is 3 chars — widen slightly */
.social-link[aria-label*="Brown Sugar"] { width: 42px; font-size: 0.65rem; }

/* No dot overlay on real product photos */
.product-img--bsm::after { content: none; }

.product-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: var(--ochre);
  color: var(--white);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.22rem 0.6rem;
  z-index: 1;
}

.product-info { padding: 1.25rem; }
.product-category {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.35rem;
}
.product-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 0.45rem;
}
.product-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.55;
  margin-bottom: 1rem;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--text-dark);
}
.btn-cart {
  background: var(--charcoal);
  color: var(--white);
  padding: 0.55rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.3s;
}
.btn-cart:hover { background: var(--ochre); }

.shop-cta { margin-top: 3rem; }
.shop-cta-sub {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.78rem;
  color: var(--text-light);
}
.shop-cta-sub a { color: var(--ochre); text-decoration: underline; }

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.footer {
  background: var(--charcoal);
  color: rgba(250,245,236,0.6);
  padding: 4.5rem 1.5rem 2rem;
}

.footer-grid {
  max-width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250,245,236,0.08);
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--white);
  margin-bottom: 0.7rem;
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(250,245,236,0.45);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.social-links { display: flex; gap: 0.6rem; }
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(250,245,236,0.17);
  color: rgba(250,245,236,0.55);
  font-size: 0.75rem;
  font-family: var(--font-body);
  font-weight: 500;
  transition: all 0.3s;
  letter-spacing: 0.02em;
}
.social-link:hover { border-color: var(--ochre); color: var(--ochre); }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,245,236,0.35);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(250,245,236,0.5);
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-contact-item {
  display: block;
  font-size: 0.85rem;
  color: rgba(250,245,236,0.5);
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}
.footer-contact-item:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container);
  margin-inline: auto;
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.76rem; color: rgba(250,245,236,0.28); }

.payment-badges { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.payment-badge {
  background: rgba(250,245,236,0.06);
  border: 1px solid rgba(250,245,236,0.1);
  padding: 0.25rem 0.55rem;
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  color: rgba(250,245,236,0.35);
  text-transform: uppercase;
}

.footer-acknowledgement {
  max-width: var(--container);
  margin-inline: auto;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250,245,236,0.05);
  text-align: center;
  font-size: 0.76rem;
  color: rgba(250,245,236,0.3);
  line-height: 1.8;
}

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-inner,
  .commissions-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-image-wrap { max-width: 480px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  :root { --section-v: 4.5rem; }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(28,26,23,0.98);
    flex-direction: column;
    justify-content: center;
    z-index: 98;
    gap: 2.5rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.15rem; }
  .nav-toggle { display: block; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 260px;
  }
  .artwork-card { grid-column: span 1 !important; }
  .artwork-card:nth-child(1),
  .artwork-card:nth-child(6) { grid-column: span 2 !important; }

  .testimonial-pair,
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .artwork-card { grid-row: span 1 !important; }
  .commission-form { padding: 1.75rem 1.25rem; }
}

/* ─── Accessibility: Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
  .songline-path { animation: none; }
  .hero-nations,
  .hero h1,
  .hero-tagline,
  .hero-actions { opacity: 1; animation: none; transform: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ─── Focus Styles ─── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ─── Lightbox ─── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(28, 26, 23, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.25s var(--ease);
  pointer-events: none;
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-inner {
  position: relative;
  max-width: min(90vw, 860px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.lightbox-img {
  display: block;
  max-width: 100%;
  max-height: calc(90vh - 5rem);
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  transform: scale(0.94);
  transition: transform 0.3s var(--ease);
}
.lightbox.is-open .lightbox-img {
  transform: scale(1);
}
.lightbox-caption {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  color: var(--sand);
}
.lightbox-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}
.lightbox-price {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gold-light);
  opacity: 0.9;
}
.lightbox-close {
  position: absolute;
  top: -2.75rem;
  right: 0;
  background: none;
  border: none;
  color: var(--sand);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  opacity: 0.7;
  transition: opacity 0.15s;
}
.lightbox-close:hover { opacity: 1; }
.artwork-card[data-file] { cursor: zoom-in; }
