/* ===================================================================
   Lana Evans - Art House Collection design system
   Warm ivory / dusty heather editorial gallery aesthetic.
   Hand-written CSS equivalent of the customer-supplied design
   (Playfair Display + DM Sans, sharp corners, generous whitespace).
=================================================================== */

:root {
  --background: hsl(40, 30%, 96%);
  --foreground: hsl(20, 10%, 15%);
  --border: hsl(40, 20%, 88%);

  --card: hsl(40, 30%, 98%);
  --card-foreground: hsl(20, 10%, 15%);

  --primary: hsl(340, 15%, 40%);
  --primary-foreground: hsl(40, 30%, 98%);

  --secondary: hsl(40, 15%, 90%);
  --secondary-foreground: hsl(20, 10%, 15%);

  --muted: hsl(120, 5%, 92%);
  --muted-foreground: hsl(20, 5%, 40%);

  --accent: hsl(340, 15%, 92%);
  --accent-foreground: hsl(340, 15%, 30%);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, -apple-system, sans-serif;

  --status-available: hsl(150, 20%, 32%);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s ease; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--foreground);
  line-height: 1.15;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--muted-foreground);
}

.label.on-primary { color: var(--primary); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    transition-duration: 0.01ms !important;
    transform: none !important;
  }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
  white-space: nowrap;
}

.btn-dark {
  background-color: var(--foreground);
  color: var(--background) !important;
}

.btn-dark:hover { background-color: var(--primary); }

.btn-line {
  background-color: transparent;
  border-color: var(--border);
  color: var(--foreground);
}

.btn-line:hover {
  background-color: var(--card);
  border-color: var(--foreground);
}

.btn-full { width: 100%; }

/* ---- Scroll reveal ---- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 26px 0;
  background: transparent;
  transition: all 0.5s ease;
}

.navbar.is-scrolled {
  background-color: hsla(40, 30%, 96%, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

/* Menu-open must look solid the INSTANT a visitor taps the burger, with no
   ambiguity at all - a real person watches this transition happen live
   (unlike an automated check that waits past it), so the navbar's own
   `transition: all 0.5s ease` was making the background visibly fade in
   over half a second every time, reading as "broken/transparent" in that
   window. This state is deliberately fully opaque (no alpha, no
   backdrop-filter dependency - some mobile browsers render that
   inconsistently) and instant (transition: none overrides the inherited
   0.5s), so there is no fade and no reliance on blur/alpha support. */
.navbar.menu-open {
  background-color: var(--background);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  transition: none;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-link {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  color: var(--muted-foreground);
}

.nav-link:hover, .nav-link.active { color: var(--primary); }

.nav-cta {
  background-color: var(--foreground);
  color: var(--background) !important;
  padding: 10px 22px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.nav-cta:hover { background-color: var(--primary); }

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  flex-direction: column;
  gap: 5px;
}

.burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: var(--foreground);
}

/* ---- Hero ---- */
/* ---- Homepage hero: "LANA EVANS" typography filled with real paintings ----
   Each letter is its own span with a per-letter background-image, clipped
   to the glyph shape via background-clip:text. Kept as separate spans
   (not one image behind the whole word) so every letter can use its own
   painting and crop - see memory: lanaevans_typography_hero_2026_09_13. */
.art-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 130px 20px 50px;
  text-align: center;
}

.art-hero-inner { width: min(84vw, 1500px); margin: 0 auto; }

.art-hero-heading {
  margin: 0 0 26px;
  --hero-unit: clamp(90px, 19vw, 420px);
}

.art-hero-word {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  line-height: 0.84;
  gap: clamp(2px, 0.5vw, 10px);
}

.art-hero-word + .art-hero-word { margin-top: clamp(0px, 0.6vw, 8px); }

.art-hero-word--sub { --hero-unit: clamp(70px, 15.5vw, 340px); }

.art-letter {
  display: inline-block;
  font-family: 'Archivo Black', var(--font-sans), sans-serif;
  font-weight: 900;
  font-size: var(--hero-unit);
  line-height: 0.84;
  /* background-size:cover (never a raw percentage) is the whole fix here -
     it guarantees the painting is scaled to fully fill the glyph without
     ever being stretched/squashed to the letter's own aspect ratio. The
     source files are pre-cropped (see hero-letter-*.jpg) to be flower-
     biased rather than relying on background-position to hide sky, since
     a landscape painting inside a tall glyph box has no vertical crop
     room left once `cover` is applied - only the pre-crop controls that. */
  background-image: var(--bg);
  background-size: cover;
  background-position: var(--pos, center);
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: background-position 0.6s ease;
}

@media (hover: hover) {
  .art-letter:hover { background-position: var(--pos-hover, center); }
}

.art-hero-subtitle {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.78rem;
  color: hsla(20, 10%, 15%, 0.75);
  margin-bottom: 22px;
  transition-delay: 0.3s;
}

.art-hero-divider {
  display: block;
  width: 56px;
  height: 1px;
  background-color: var(--muted-foreground);
  margin: 0 auto 30px;
  transition-delay: 0.3s;
}

.art-hero-cta { transition-delay: 0.45s; }

@media (max-width: 600px) {
  .art-hero { padding: 120px 16px 40px; }
  .art-hero-inner { width: min(90vw, 1500px); }
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  width: 100%;
  overflow: hidden;
}

.hero-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: hsla(40, 30%, 96%, 0.18);
  backdrop-filter: blur(1.5px);
}

.hero-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--background) 0%, transparent 35%, hsla(40, 30%, 96%, 0.25) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}

.hero-content h1 {
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-content p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: hsla(20, 10%, 15%, 0.8);
  max-width: 640px;
}

/* ---- Generic section rhythm ---- */
.section {
  padding: 130px 0;
}

.section-sm { padding: 90px 0; }

.section-head {
  max-width: 720px;
}

.section-head.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin: 10px 0 18px;
}

.section-head p {
  font-size: 1.1rem;
  color: var(--muted-foreground);
  font-weight: 300;
  line-height: 1.7;
}

.prose p {
  color: var(--muted-foreground);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 22px;
  font-size: 1.08rem;
}

/* ---- Intro / statement section ---- */
.statement {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.statement h2 { margin-bottom: 28px; }

.statement p {
  color: var(--muted-foreground);
  font-weight: 300;
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 34px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  border-bottom: 1px solid hsla(340, 15%, 40%, 0.35);
  padding-bottom: 4px;
}

.text-link:hover { border-color: var(--primary); }

/* ---- Homepage: circular gallery of all works ----
   Deliberately just the artwork turning - no badge/title/price here (that
   detail lives on the Gallery page); this section is a pure visual preview
   of the collection. */
.circular-gallery {
  position: relative;
  height: 460px;
  perspective: 2200px;
  overflow: hidden;
  margin: 0 auto 48px;
}

.circular-gallery-track {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.circular-card {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 440px;
  height: 330px;
  margin: -165px 0 0 -220px;
  transform: rotateY(var(--angle)) translateZ(640px);
  overflow: hidden;
  background-color: var(--muted);
  border: 1px solid var(--border);
  /* Gives each turning canvas real depth against the cream background,
     instead of looking like a flat cutout floating in empty space. */
  box-shadow: 0 25px 50px -18px hsla(20, 10%, 15%, 0.4);
  /* See gallery card note above re: backface-visibility. */
  backface-visibility: hidden;
}

.circular-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.circular-card:hover img { transform: scale(1.04); }

.circular-gallery-cta { text-align: center; }

.btn-lg { padding: 20px 48px; font-size: 0.85rem; }

@media (max-width: 768px) {
  .circular-gallery { height: 280px; perspective: 1200px; }
  .circular-card {
    width: 260px;
    height: 195px;
    margin: -98px 0 0 -130px;
    transform: rotateY(var(--angle)) translateZ(380px);
  }
}

/* ---- Artwork grid (landscape, by request) ---- */
.art-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 48px;
}

.art-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.art-card { display: flex; flex-direction: column; position: relative; }
.art-card[hidden] { display: none !important; }

/* The whole clickable area (image/title/meta/price) is one <a>, kept
   as display:contents so it lays out inside .art-card's flex column
   exactly as if the anchor weren't there - lets a second, separate
   "Enquire to Buy" link sit alongside it without nesting <a> in <a>. */
.art-card-link { display: contents; }

.art-card-img {
  display: block;
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: var(--muted);
  margin-bottom: 22px;
}

.art-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.art-card:hover .art-card-img img { transform: scale(1.04); }

.art-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background-color: var(--background);
  color: var(--foreground);
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  padding: 4px 16px;
  border: 1px solid var(--border);
}

.art-card-hover-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 22px;
  background: linear-gradient(to top, hsla(20, 10%, 15%, 0.4), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.art-card:hover .art-card-hover-overlay { opacity: 1; }

.art-card-hover-overlay span {
  color: hsl(40, 30%, 98%);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}

.art-card-img.coming-soon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(
    135deg,
    var(--muted) 0px, var(--muted) 14px,
    var(--card) 14px, var(--card) 28px
  );
  border: 1px dashed var(--border);
}

.coming-soon-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-foreground);
  background-color: var(--background);
  padding: 8px 18px;
  border: 1px solid var(--border);
}

.pdp-frame.coming-soon-frame {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(
    135deg,
    var(--muted) 0px, var(--muted) 16px,
    var(--card) 16px, var(--card) 32px
  );
}

.pdp-status.coming-soon-status { color: var(--primary); }

.art-card-title {
  font-size: 1.55rem;
  margin-bottom: 6px;
}

.art-card:hover .art-card-title { color: var(--primary); }

.art-card-meta {
  font-size: 0.85rem;
  color: hsl(20, 8%, 32%);
  font-weight: 400;
}

.art-card-original {
  font-size: 0.78rem;
  color: hsl(20, 8%, 32%);
  font-style: italic;
  margin-top: 4px;
}

.art-card-price {
  margin-top: 10px;
  color: var(--foreground);
  font-size: 1.05rem;
  font-weight: 600;
}

.art-card-cta {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.art-card-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 600;
  color: var(--foreground);
  border-bottom: 1px solid var(--foreground);
  padding-bottom: 3px;
  width: fit-content;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.art-card-cta-primary:hover { color: var(--primary); border-color: var(--primary); }

.art-card-cta-secondary {
  font-size: 0.88rem;
  font-weight: 500;
  color: hsl(20, 8%, 30%);
  text-decoration: underline;
  text-underline-offset: 3px;
  width: fit-content;
}

.art-card-cta-secondary:hover { color: var(--primary); }

/* ---- Inspiration page (staggered reference-photo masonry) ---- */
.inspiration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.inspiration-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.inspiration-item {
  position: relative;
  aspect-ratio: var(--ar, 3/4);
  overflow: hidden;
  background-color: var(--muted);
}

.inspiration-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.inspiration-item:hover img { transform: scale(1.04); }

/* Graceful fallback if an image ever fails to load, instead of a broken-image
   icon - toggled by JS (main.js) on the img's error event. */
.inspiration-item.img-error img { display: none; }

.inspiration-item.img-error {
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(
    135deg,
    var(--muted) 0px, var(--muted) 14px,
    var(--card) 14px, var(--card) 28px
  );
  border: 1px dashed var(--border);
}

.inspiration-item.img-error::after {
  content: "Image unavailable";
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-foreground);
  background-color: var(--background);
  padding: 8px 18px;
  border: 1px solid var(--border);
}

/* ---- Gallery & Shop split ---- */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.split-grid img,
.split-grid .split-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  background-color: var(--muted);
}

.split-grid h2 { margin-bottom: 26px; font-size: clamp(1.8rem, 3vw, 2.4rem); }

.split-grid .prose { margin-bottom: 34px; }

/* ---- Gallery sidebar (Collections / Availability) ---- */
.gallery-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.gallery-sidebar {
  width: 200px;
  flex-shrink: 0;
  position: sticky;
  top: 120px;
}

.gallery-filter-group { margin-bottom: 40px; }

.gallery-filter-group h3 {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.gallery-filter-group ul { list-style: none; }

.gallery-filter-group li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
  color: var(--muted-foreground);
  margin-bottom: 14px;
}

.gallery-filter-group li .is-active {
  color: var(--foreground);
  font-weight: 600;
  position: relative;
  padding-left: 12px;
}

.gallery-filter-group li .is-active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 14px;
  background-color: var(--primary);
}

.gallery-filter-group li .count {
  font-size: 0.78rem;
  opacity: 0.55;
}

.gallery-filter-group li[data-filter-value],
.gallery-filter-group li span[data-filter-value] {
  cursor: pointer;
}

.gallery-intro-ctas {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

/* ---- Gallery bottom conversion CTA ---- */
.gallery-cta-section {
  margin-top: 56px;
  padding-top: 56px;
  border-top: 1px solid var(--border);
}

.gallery-cta-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Pull quote (About) ---- */
.pull-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--foreground);
  border-left: 3px solid var(--primary);
  padding-left: 22px;
  margin: 30px 0;
  line-height: 1.5;
}

/* ---- Testimonials ---- */
.testimonial-carousel {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}

.testimonial-track { position: relative; min-height: 300px; }

.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
  text-align: center;
}

.testimonial-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  position: relative;
}

.testimonial-slide p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.6;
  color: var(--foreground);
  margin-bottom: 26px;
}

.testimonial-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--accent);
  color: var(--accent-foreground);
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.testimonial-slide strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
  font-weight: 600;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 40px;
}

.testimonial-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.testimonial-nav-btn:hover {
  background-color: var(--foreground);
  color: var(--background);
  border-color: var(--foreground);
}

.testimonial-dots { display: flex; gap: 8px; }

.testimonial-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.25s ease;
}

.testimonial-dot.is-active {
  background-color: var(--primary);
  transform: scale(1.5);
}

/* ---- FAQ ---- */
.faq-wrap { max-width: 760px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--border); padding: 24px 0; }

.faq-q {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-q::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--primary);
  font-weight: 300;
  transition: transform 0.3s ease;
  margin-left: 20px;
}

.faq-item.open .faq-q::after { transform: rotate(45deg); }

.faq-a {
  font-size: 0.98rem;
  color: var(--muted-foreground);
  font-weight: 300;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.35s ease, margin-top 0.35s ease;
}

.faq-item.open .faq-a {
  max-height: 260px;
  opacity: 1;
  margin-top: 14px;
}

/* ---- Newsletter strip ---- */
.newsletter-strip {
  text-align: center;
  border-top: 1px solid var(--border);
  padding: 90px 0;
}

.newsletter-strip h2 { margin-bottom: 14px; }

.newsletter-strip p { color: var(--muted-foreground); margin-bottom: 30px; font-weight: 300; }

.newsletter-form {
  display: flex;
  max-width: 440px;
  margin: 0 auto 16px;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s ease;
}

.newsletter-form:focus-within { border-color: var(--primary); }

.newsletter-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 0;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--foreground);
  outline: none;
}

.newsletter-form button {
  border: none;
  background: transparent;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  cursor: pointer;
  padding: 0 4px;
}

.consent-line {
  font-size: 0.8rem;
  color: var(--muted-foreground);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
}

/* ---- Footer ---- */
footer {
  background-color: var(--background);
  border-top: 1px solid var(--border);
  padding: 100px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand .brand-logo { display: block; margin-bottom: 20px; }

.footer-brand p {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--muted-foreground);
  max-width: 340px;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 22px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 14px; color: var(--muted-foreground); }
.footer-col a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-foreground);
}

.footer-bottom a { text-decoration: underline; }

/* ---- Contact page ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}

.contact-info h1 { font-size: clamp(2.4rem, 4vw, 3.2rem); margin-bottom: 26px; }

.contact-block { margin-bottom: 44px; }

.contact-block h3 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 14px;
}

.contact-block p { color: var(--muted-foreground); font-weight: 300; margin-bottom: 6px; }
.contact-block a.email { color: var(--primary); font-size: 1.05rem; }

.contact-art-frame {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 3/4;
  overflow: hidden;
  margin: 4px 0 40px;
  background-color: var(--muted);
}

.contact-art-frame img { width: 100%; height: 100%; object-fit: cover; }

.contact-form-heading { font-size: 1.5rem; margin-bottom: 8px; }

.contact-form-subhead {
  color: var(--muted-foreground);
  font-weight: 300;
  font-size: 0.92rem;
  margin-bottom: 34px;
}

.contact-form-reassurance {
  text-align: center;
  margin-top: 20px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
}

.contact-form-panel {
  background-color: var(--card);
  border: 1px solid var(--border);
  padding: 56px;
}

.field-group { margin-bottom: 30px; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

.field-group label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
  margin-bottom: 10px;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--border);
  background: transparent;
  padding: 8px 0;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  color: var(--foreground);
  outline: none;
  border-radius: 0;
  transition: border-color 0.3s ease;
}

.field-group textarea { resize: vertical; min-height: 100px; }

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus { border-color: var(--primary); }

.field-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 16px;
}

/* ---- About page ---- */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 96px;
  align-items: center;
}

.about-photo {
  aspect-ratio: 3/4;
  background-color: var(--card);
  padding: 16px;
  border: 1px solid var(--border);
}

.about-photo img { width: 100%; height: 100%; object-fit: cover; }

.about-copy h1 { font-size: clamp(2.2rem, 4vw, 3rem); margin-bottom: 30px; line-height: 1.2; }

.about-signoff {
  margin-top: 46px;
  padding-top: 46px;
  border-top: 1px solid var(--border);
}

.about-signoff h3 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 14px;
}

.about-signoff p { color: var(--muted-foreground); font-weight: 300; }

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.about-highlights .h-box {
  border-left: 2px solid var(--primary);
  padding-left: 16px;
}

.about-highlights strong { display: block; font-family: var(--font-serif); font-size: 1.15rem; }
.about-highlights span { font-size: 0.8rem; color: var(--muted-foreground); }

/* ---- Product / artwork detail page ---- */
.pdp-crumb {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
  margin-bottom: 56px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pdp-crumb:hover { color: var(--primary); }

.pdp-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 90px;
}

.pdp-gallery { position: sticky; top: 120px; }

.pdp-frame {
  background-color: var(--card);
  border: 1px solid var(--border);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdp-main-image {
  display: block;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: zoom-in;
  position: relative;
}

.pdp-main-image img {
  width: 100%;
  max-height: 74vh;
  object-fit: contain;
}

.pdp-zoom-hint {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: hsla(20, 10%, 15%, 0.78);
  color: var(--background);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
}

.pdp-zoom-hint svg { width: 13px; height: 13px; flex-shrink: 0; }

.pdp-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.pdp-thumb {
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
  padding: 0;
  cursor: pointer;
  background: none;
  opacity: 0.65;
  overflow: hidden;
  transition: all 0.25s ease;
}

.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumb:hover { opacity: 1; }
.pdp-thumb.is-active {
  opacity: 1;
  border-color: var(--primary);
  border-width: 2px;
  box-shadow: 0 0 0 1px var(--primary);
}

.pdp-info h1 { font-size: clamp(2rem, 4vw, 2.7rem); margin-bottom: 6px; line-height: 1.1; }

.pdp-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--muted-foreground);
  font-size: 1rem;
  margin-bottom: 18px;
}

.pdp-price {
  font-size: 1.35rem;
  color: hsla(20, 10%, 15%, 0.9);
  display: inline-block;
  margin-bottom: 0;
}

.pdp-status-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 8px;
}

.pdp-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--status-available);
  flex-shrink: 0;
}

.pdp-status-row .pdp-status {
  margin: 0;
}

.pdp-viewer-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--muted-foreground);
  margin-bottom: 28px;
}

.pdp-viewer-count[hidden] { display: none !important; }

.pdp-viewer-count svg { width: 14px; height: 14px; flex-shrink: 0; opacity: 0.7; }

.pdp-specs {
  border-bottom: 1px solid var(--border);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.pdp-spec-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 300;
  margin-bottom: 12px;
  align-items: baseline;
}

.pdp-spec-row .label { margin: 0; font-size: 0.76rem; letter-spacing: 0.14em; }

.pdp-status {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--status-available);
}

.pdp-desc {
  color: var(--muted-foreground);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 34em;
  margin-bottom: 36px;
}

.pdp-ctas { display: flex; flex-direction: column; gap: 12px; }

.pdp-contact-link {
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

.pdp-contact-link a {
  display: inline-block;
  margin-top: 2px;
  color: var(--primary);
  border-bottom: 1px solid hsla(340, 15%, 40%, 0.35);
}

.pdp-contact-link a:hover { border-color: var(--primary); }

.more-works-strip {
  margin-top: 90px;
  border-top: 1px solid var(--border);
  padding-top: 60px;
}

.more-works-strip h3 {
  text-align: center;
  font-size: 1.7rem;
  margin-bottom: 50px;
}

.more-works-strip .art-grid { gap: 48px 40px; }

/* ---- Mobile sticky buy bar ---- */
.pdp-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background-color: var(--background);
  border-top: 1px solid var(--border);
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pdp-sticky-bar.is-visible { transform: translateY(0); }

.pdp-sticky-bar-info {
  overflow: hidden;
}

.pdp-sticky-bar-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pdp-sticky-bar-price {
  font-size: 0.82rem;
  color: var(--muted-foreground);
}

.pdp-sticky-bar .btn {
  padding: 12px 22px;
  font-size: 0.72rem;
  flex-shrink: 0;
}

/* ---- Lightbox ---- */
.pdp-lightbox {
  position: fixed;
  inset: 0;
  background-color: hsla(20, 10%, 8%, 0.94);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.pdp-lightbox.is-open { opacity: 1; pointer-events: all; }
.pdp-lightbox img { max-width: 100%; max-height: 100%; object-fit: contain; }

.pdp-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: hsla(0, 0%, 100%, 0.08);
  border: 1px solid hsla(0, 0%, 100%, 0.25);
  border-radius: 50%;
  color: var(--background);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.pdp-lightbox-close:hover { background: hsla(0, 0%, 100%, 0.18); }

.pdp-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: hsla(0, 0%, 100%, 0.08);
  border: 1px solid hsla(0, 0%, 100%, 0.25);
  border-radius: 50%;
  color: var(--background);
  font-size: 1.4rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.pdp-lightbox-nav:hover { background: hsla(0, 0%, 100%, 0.18); }
.pdp-lightbox-nav.prev { left: 20px; }
.pdp-lightbox-nav.next { right: 20px; }

@media (max-width: 600px) {
  .pdp-lightbox-nav { display: none; }
}

/* ===================================================================
   Responsive
=================================================================== */
@media (max-width: 1024px) {
  .split-grid, .pdp-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .gallery-layout { flex-direction: column; }
  .gallery-sidebar { width: 100%; position: static; display: flex; gap: 40px; flex-wrap: wrap; }
  .pdp-gallery { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .gallery-sidebar { flex-direction: column; gap: 32px; }
  .gallery-filter-group { width: 100%; }
}

@media (max-width: 860px) {
  .art-grid, .art-grid.cols-3 { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .inspiration-grid { grid-template-columns: 1fr; gap: 24px; }
  .inspiration-col { gap: 24px; }
}

@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 80vw);
    background-color: var(--background);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    padding: 0 40px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-links.open { transform: translateX(0); }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    background-color: hsla(20, 10%, 15%, 0.35);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }

  .nav-backdrop.open { opacity: 1; pointer-events: all; }

  .section { padding: 80px 0; }
  .section-sm { padding: 60px 0; }

  .art-grid, .art-grid.cols-3 { grid-template-columns: 1fr; }

  .gallery-intro-ctas { flex-direction: column; align-items: flex-start; gap: 16px; }
  .gallery-intro-ctas .btn { width: 100%; justify-content: center; }

  .art-card-cta-primary {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 12px 0;
    border: 1px solid var(--border);
  }
  .art-card-cta-secondary { display: block; text-align: center; padding: 4px 0; }

  .gallery-cta-section { margin-top: 40px; padding-top: 36px; }

  .field-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }

  .footer-bottom { flex-direction: column; text-align: center; }

  /* ---- Product page: bigger image, tighter gap, sticky buy bar ---- */
  .pdp-frame { padding: 8px; }
  .pdp-main-image img { max-height: 82vh; }
  .more-works-strip { margin-top: 56px; padding-top: 40px; }
  .more-works-strip .art-grid { gap: 32px; }
  .pdp-sticky-bar { display: flex; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: clamp(2.4rem, 12vw, 3.2rem); }
  .contact-form-panel { padding: 32px 24px; }
}
