/* ==========================================================================
   EDIN CHAVEZ FINE ART — V3 STYLESHEET
   Font Direction: Bold + Editorial (GQ / NYT Mag / Porsche)
   Fonts: Bebas Neue (display) + Inter (body)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- RESET ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: 'Inter', sans-serif; font-weight: 300; font-size: 1rem; line-height: 1.75; color: var(--text-dark); background: var(--bg-white); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Fonts */
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Backgrounds */
  --bg-light: #f7f5f2;
  --bg-white: #ffffff;
  --bg-dark: #181818;
  --bg-darker: #111111;

  /* Text */
  --text-dark: #1a1a1a;
  --text-light: #f0ede8;
  --text-muted-dark: #999;
  --text-muted-light: #888;

  /* Gold */
  --gold: #b8922a;
  --gold-light: #d4a843;

  /* Borders */
  --border-light: rgba(0,0,0,0.08);
  --border-dark: rgba(255,255,255,0.08);
  --border-gold: rgba(184,146,42,0.25);

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;
  --space-3xl: 12rem;

  /* Max width */
  --max-w: 1400px;
  --max-w-narrow: 900px;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.03em;
}

h1 {
  font-size: clamp(5rem, 12vw, 11rem);
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  letter-spacing: 0.03em;
}

h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: 0.03em;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
}

.caption {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  transition: all 0.35s ease;
  cursor: pointer;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  border: 1px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.05);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid rgba(0,0,0,0.2);
}
.btn-ghost-dark:hover {
  border-color: var(--text-dark);
  background: rgba(0,0,0,0.03);
}

.btn-sm {
  padding: 0.65rem 1.6rem;
  font-size: 0.68rem;
}

.price {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--gold);
}

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, border-color 0.4s ease, padding 0.4s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(18,18,18,0.97);
  border-bottom: 1px solid rgba(184,146,42,0.2);
  padding: 0.9rem 2.5rem;
}

.header-logo {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.header-logo-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
}

.header-logo-tagline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.55rem;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  line-height: 1;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.header-nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.3s ease;
  position: relative;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--gold);
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.header-nav a:hover::after,
.header-nav a.active::after {
  width: 100%;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}

.hamburger span {
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translateY(6.5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translateY(-6.5px); }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(17,17,17,0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s ease;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--gold);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.15) 40%,
    rgba(0,0,0,0.25) 70%,
    rgba(0,0,0,0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.hero h1 {
  color: #fff;
  margin: 0.5rem 0 1rem;
  line-height: 0.92;
}

.hero .subtitle {
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-chevron {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: chevronBounce 2.5s ease-in-out infinite;
}

.scroll-chevron svg {
  width: 28px;
  height: 28px;
  stroke: rgba(255,255,255,0.5);
  stroke-width: 1.5;
  fill: none;
}

@keyframes chevronBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* Page hero (shorter) */
.page-hero {
  min-height: 65vh;
}

.page-hero h1 {
  font-size: clamp(4rem, 10vw, 9rem);
}

/* ---------- SECTION ---------- */
.section {
  padding: var(--space-xl) 0;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.section-darker {
  background: var(--bg-darker);
  color: var(--text-light);
}

.section-warm {
  background: var(--bg-light);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  color: var(--text-muted-light);
  max-width: 600px;
}

.section-dark .section-subtitle {
  color: var(--text-muted-dark);
}

/* ---------- PHOTO MOSAIC ---------- */
.mosaic {
  display: grid;
  width: 100%;
}

.mosaic-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 50vh;
}

.mosaic-grid-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 40vh;
}

.mosaic-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.mosaic-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease;
}

.mosaic-item:hover .mosaic-overlay {
  background: rgba(0,0,0,0.45);
}

.mosaic-overlay h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: #fff;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.4s ease;
}

.mosaic-overlay .view-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.4s ease 0.05s;
  margin-top: 0.5rem;
}

.mosaic-item:hover .mosaic-overlay h3,
.mosaic-item:hover .mosaic-overlay .view-link {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- CREDENTIALS BAR ---------- */
.credentials-bar {
  background: var(--bg-dark);
  padding: 2rem 0;
  overflow: hidden;
}

.credentials-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  flex-wrap: wrap;
  padding: 0 2rem;
}

.credentials-list span {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888;
  white-space: nowrap;
}

.credentials-list .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ---------- PRINT CARDS ---------- */
.prints-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.print-card {
  background: #fff;
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.section-dark .print-card {
  background: rgba(255,255,255,0.03);
  border-color: var(--border-dark);
}

.print-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.section-dark .print-card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.print-card-img {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
}

.print-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.print-card-body {
  padding: 1.5rem;
}

.print-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.3rem;
  line-height: 1.1;
}

.print-card-edition {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted-light);
  margin-bottom: 0.75rem;
}

.section-dark .print-card-edition {
  color: var(--text-muted-dark);
}

/* Size selector */
.size-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.size-btn {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.6rem;
  border: 1px solid var(--border-light);
  background: transparent;
  color: var(--text-muted-light);
  transition: all 0.25s ease;
  cursor: pointer;
}

.section-dark .size-btn {
  border-color: var(--border-dark);
  color: var(--text-muted-dark);
}

.size-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.size-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.print-card-price {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.edition-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  margin-bottom: 0.75rem;
  border: 1px solid var(--border-gold);
  color: var(--gold);
}

/* ---------- GALLERY CARDS ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
  display: block;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.03);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: background 0.4s ease;
}

.gallery-card:hover .gallery-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.15) 60%);
}

.gallery-card-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1.1;
}

.gallery-card-count {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.25rem;
}

/* ---------- SHOWROOM ---------- */
.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.room-card {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.room-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.room-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.room-card:hover img {
  transform: scale(1.03);
}

.room-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease;
}

.room-card:hover .room-card-overlay {
  background: rgba(0,0,0,0.35);
}

.room-card-label {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.room-card:hover .room-card-label {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- FILTER BAR ---------- */
.filter-bar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.55rem 1.3rem;
  border: 1px solid var(--border-light);
  background: transparent;
  color: var(--text-muted-light);
  transition: all 0.25s ease;
  cursor: pointer;
}

.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

/* ---------- ABOUT STRIP ---------- */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-strip blockquote {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.about-strip blockquote span {
  color: var(--gold);
}

/* ---------- CONTACT FORM ---------- */
.contact-form {
  display: grid;
  gap: 1.2rem;
  max-width: 600px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.85rem;
  padding: 1rem 1.2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  color: var(--text-light);
  transition: border-color 0.3s ease;
  outline: none;
  width: 100%;
}

.section-warm .contact-form input,
.section-warm .contact-form textarea,
.section-warm .contact-form select {
  background: #fff;
  border: 1px solid var(--border-light);
  color: var(--text-dark);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--gold);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

/* ---------- JOURNAL CARDS ---------- */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.journal-card {
  overflow: hidden;
  transition: transform 0.35s ease;
}

.journal-card:hover {
  transform: translateY(-3px);
}

.journal-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 1.2rem;
}

.journal-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.journal-card:hover .journal-card-img img {
  transform: scale(1.03);
}

.journal-card-date {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.journal-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.journal-card-excerpt {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.88rem;
  color: var(--text-muted-light);
  line-height: 1.7;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--bg-dark);
  color: var(--text-light);
  border-top: 1px solid var(--gold);
  padding: var(--space-lg) 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.footer-brand-tagline {
  font-family: var(--font-body);
  font-weight: 300;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text-muted-dark);
}

.footer-heading {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--text-muted-dark);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.75rem;
  color: var(--text-muted-dark);
}

.footer-creds {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #666;
}

/* ---------- TEXT UTILITIES ---------- */
.text-gold { color: var(--gold); }
.text-white { color: #fff; }
.text-muted-dark { color: var(--text-muted-dark); }
.text-muted-light { color: var(--text-muted-light); }
.text-center { text-align: center; }
.text-light-weight { font-weight: 300; }

.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .prints-grid,
  .gallery-grid,
  .room-grid,
  .journal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .about-strip {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mosaic-grid {
    grid-template-rows: 40vh;
  }

  .mosaic-grid-bottom {
    grid-template-rows: 35vh;
  }
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .site-header {
    padding: 1rem 1.5rem;
  }

  .site-header.scrolled {
    padding: 0.75rem 1.5rem;
  }

  .container {
    padding: 0 1.2rem;
  }

  .section {
    padding: var(--space-lg) 0;
  }

  .mosaic-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 40vh 30vh;
  }

  .mosaic-grid-bottom {
    grid-template-columns: 1fr;
    grid-template-rows: 30vh 30vh 30vh;
  }

  .prints-grid,
  .gallery-grid,
  .room-grid,
  .journal-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .approach-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

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

  .filter-bar {
    justify-content: center;
  }

  .credentials-list {
    gap: 1rem;
    justify-content: center;
  }

  .page-hero {
    min-height: 50vh;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(3.5rem, 14vw, 6rem);
  }

  .page-hero h1 {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .size-selector {
    gap: 0.25rem;
  }

  .size-btn {
    font-size: 0.55rem;
    padding: 0.3rem 0.45rem;
  }
}

/* ---------- ANIMATIONS ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger-children .fade-in:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .fade-in:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .fade-in:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .fade-in:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .fade-in:nth-child(6) { transition-delay: 0.5s; }
