/* =========================================
   ART BY LILY SAVAGE — Earthy Organic Theme
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
  --cream:       #F5EFE3;
  --cream-dark:  #EAE0CE;
  --sand:        #DDD0BC;
  --terracotta:  #C1673F;
  --terra-light: #D4845E;
  --sage:        #7D9B77;
  --sage-dark:   #56775A;
  --sage-light:  #A8C4A2;
  --sage-mist:   #EBF2EA;
  --forest:      #2A2D22;
  --warm-gray:   #8A7E72;
  --text:        #2A2520;
  --text-light:  #7A6F65;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;

  --nav-h: 72px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ── Typography ────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.15;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }

p { font-weight: 300; color: var(--text-light); max-width: 65ch; }

.label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
}

/* ── Navigation ────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  background: rgba(245, 239, 227, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sage-light);
  transition: box-shadow var(--transition);
}

nav.scrolled { box-shadow: 0 2px 24px rgba(42,37,32,0.08); }

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--forest);
  white-space: nowrap;
}

.nav-brand span {
  color: var(--terracotta);
  font-style: italic;
}

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

.nav-center a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  transition: color var(--transition);
}

.nav-center a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--sage);
  transition: width var(--transition);
}

.nav-center a:hover,
.nav-center a.active { color: var(--sage-dark); }
.nav-center a:hover::after,
.nav-center a.active::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

/* Etsy button in nav */
.btn-etsy-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white !important;
  background: var(--terracotta);
  padding: 0.55rem 1.2rem;
  border-radius: 40px;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}

.btn-etsy-nav::after { display: none !important; }
.btn-etsy-nav:hover { background: var(--forest); transform: translateY(-1px); color: white !important; }

/* Social icons in nav */
.nav-social {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-left: 1rem;
  border-left: 1px solid var(--sand);
}

.nav-social a {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  color: var(--warm-gray);
  transition: color var(--transition), transform var(--transition);
}

.nav-social a:hover { color: var(--sage); transform: translateY(-2px); }
.nav-social svg { width: 16px; height: 16px; fill: currentColor; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--forest);
  transition: var(--transition);
}

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--sand);
  padding: 1.5rem 2rem;
  flex-direction: column;
  gap: 1.2rem;
  z-index: 99;
  box-shadow: 0 8px 32px rgba(42,37,32,0.12);
}

.nav-drawer.open { display: flex; }

.nav-drawer a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

.nav-drawer .btn-etsy-nav { width: fit-content; margin-top: 0.5rem; }

.nav-drawer-social {
  display: flex;
  gap: 1rem;
  padding-top: 0.5rem;
}

.nav-drawer-social a {
  border-bottom: none !important;
  padding: 0 !important;
  color: var(--warm-gray);
}

.nav-drawer-social svg { width: 18px; height: 18px; fill: currentColor; }

/* ── Buttons ────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: white;
  background: var(--terracotta);
  padding: 0.9rem 2.2rem;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary:hover {
  background: var(--forest);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42,37,32,0.18);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: transparent;
  padding: 0.9rem 2.2rem;
  border-radius: 40px;
  border: 1.5px solid var(--sage);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.btn-outline:hover {
  background: var(--sage-dark);
  color: var(--cream);
  border-color: var(--sage-dark);
  transform: translateY(-2px);
}

/* ── Footer ────────────────────────────── */
footer {
  background: var(--forest);
  color: var(--cream);
  padding: 3.5rem 2.5rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(245,239,227,0.15);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
}

.footer-brand span { color: var(--terra-light); font-style: italic; }

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

.footer-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  transition: color var(--transition);
}

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

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.footer-social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--sand);
  border: 1px solid rgba(245,239,227,0.2);
  border-radius: 50%;
  transition: color var(--transition), border-color var(--transition), transform var(--transition);
}

.footer-social a:hover { color: var(--sage-light); border-color: var(--sage-light); transform: translateY(-2px); }
.footer-social svg { width: 15px; height: 15px; fill: currentColor; }

.footer-copy {
  max-width: 1100px;
  margin: 1.5rem auto 0;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(245,239,227,0.4);
  text-align: center;
}

/* ── Page wrapper ───────────────────────── */
.page-body {
  padding-top: var(--nav-h);
}

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

/* ── Media queries ──────────────────────── */
@media (max-width: 960px) {
  .nav-center, .nav-right { display: none; }
  .nav-hamburger { display: flex; }
}

@media (max-width: 600px) {
  nav { padding: 0 1.2rem; }
  footer { padding: 2.5rem 1.2rem 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-social { justify-content: center; }
  .footer-links { flex-direction: row; flex-wrap: wrap; justify-content: center; }
}
/* =========================================
   INDEX PAGE STYLES
   ========================================= */

/* ── Hero ───────────────────────────────── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 6rem 5vw 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 70% 50%, rgba(193,103,63,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-text { max-width: 560px; }

.hero-text .label { margin-bottom: 1.2rem; }

.hero-text h1 {
  color: var(--forest);
  margin-bottom: 1.4rem;
}

.hero-text h1 em {
  font-style: italic;
  color: var(--terracotta);
}

.hero-sub {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0;
  max-width: 44ch;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.4rem;
}

.hero-image-wrap {
  position: relative;
  height: 580px;
}

.hero-card {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(42,37,32,0.18);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card--main {
  width: 72%;
  height: 86%;
  top: 0; right: 0;
  animation: float-main 7s ease-in-out infinite;
}

.hero-card--secondary {
  width: 48%;
  height: 52%;
  bottom: 0; left: 0;
  animation: float-sec 8s ease-in-out infinite;
  border: 4px solid var(--cream);
}

@keyframes float-main {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes float-sec {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

.hero-pill {
  position: absolute;
  top: 40%;
  left: -5%;
  background: var(--terracotta);
  color: white;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  border-radius: 40px;
  box-shadow: 0 6px 20px rgba(193,103,63,0.35);
  animation: float-pill 6s ease-in-out infinite;
  white-space: nowrap;
}

@keyframes float-pill {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%       { transform: translateY(-6px) rotate(-2deg); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--terracotta), transparent);
  animation: scroll-drop 2s ease-in-out infinite;
}

@keyframes scroll-drop {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Featured grid ──────────────────────── */
.featured {
  padding: 7rem 5vw;
  background: var(--sage-mist);
}

.featured-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.featured-header h2 { color: var(--forest); }

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 320px 280px;
  gap: 1.2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feat-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  display: block;
  cursor: pointer;
}

.feat-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feat-item:hover img { transform: scale(1.05); }

.feat-item--tall {
  grid-row: 1 / 3;
}

.feat-item--wide {
  grid-column: 2 / 4;
}

.feat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,37,32,0.75) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.feat-item:hover .feat-overlay { opacity: 1; }

.feat-overlay .label { color: var(--terra-light); margin-bottom: 0.4rem; }
.feat-overlay h3 { color: white; font-size: 1.4rem; }

.featured-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ── Bio strip ──────────────────────────── */
.bio-strip {
  padding: 7rem 5vw;
  background: var(--cream);
}

.bio-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 6rem;
  align-items: center;
}

.bio-strip-img {
  position: relative;
}

.bio-strip-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(42,37,32,0.14);
}

.bio-strip-img::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  right: 16px; bottom: -16px;
  border: 2.5px solid var(--sage);
  border-radius: 22px;
  z-index: -1;
}

.bio-strip-text h2 { color: var(--forest); margin: 0.6rem 0 1.2rem; }
.bio-strip-text p  { font-size: 1rem; line-height: 1.9; }

/* ── Etsy banner ────────────────────────── */
.etsy-banner {
  background: var(--forest);
  padding: 6rem 5vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.etsy-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(193,103,63,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.etsy-banner-inner { position: relative; }

.etsy-banner h2 {
  color: var(--cream);
  margin: 0.8rem auto;
  font-size: clamp(2rem, 4vw, 3.5rem);
  max-width: 18ch;
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 4rem 5vw;
    text-align: center;
  }

  .hero-text { max-width: 100%; }
  .hero-sub  { margin: 0 auto; }
  .hero-ctas { justify-content: center; }

  .hero-image-wrap {
    height: 400px;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-pill { display: none; }

  .bio-strip-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .bio-strip-img { max-width: 360px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .featured-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .feat-item--tall, .feat-item--wide {
    grid-row: auto;
    grid-column: auto;
  }
  .featured-grid .feat-item { height: 240px; }
  .feat-overlay { opacity: 1; }
}

@media (max-width: 520px) {
  .featured-grid { grid-template-columns: 1fr; }
  .hero-image-wrap { height: 300px; }
}
/* =========================================
   ABOUT PAGE STYLES
   ========================================= */

/* ── Page hero ──────────────────────────── */
.about-hero {
  background: var(--forest);
  color: var(--cream);
  padding: 5rem 5vw 0;
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: flex-end;
  gap: 4rem;
  max-width: 100%;
  overflow: hidden;
  min-height: 380px;
}

.about-hero-inner {
  padding-bottom: 4rem;
}

.about-hero-inner .label {
  color: var(--terra-light);
  margin-bottom: 1rem;
}

.about-hero-inner h1 {
  color: var(--cream);
  font-size: clamp(3rem, 7vw, 5.5rem);
}

.about-hero-img-wrap {
  align-self: flex-end;
}

.about-hero-img-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: top;
  border-radius: 16px 16px 0 0;
  display: block;
}

/* ── Story sections ─────────────────────── */
.about-story {
  padding: 6rem 5vw;
  background: var(--cream);
}

.about-story-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story-block .label { margin-bottom: 0.8rem; }
.story-block h2 { color: var(--forest); margin-bottom: 1.4rem; }
.story-block p { font-size: 1rem; line-height: 1.9; }

.story-image-right img,
.story-image-left img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(42,37,32,0.14);
}

/* ── Pull quote ─────────────────────────── */
.about-quote {
  background: var(--sage-mist);
  padding: 6rem 5vw;
  text-align: center;
}

.about-quote blockquote {
  max-width: 800px;
  margin: 0 auto;
}

.about-quote blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: var(--forest);
  max-width: 100%;
  margin-bottom: 1.5rem;
}

.about-quote blockquote cite {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-dark);
}

/* ── Process ────────────────────────────── */
.about-process {
  padding: 6rem 5vw;
  background: var(--cream);
}

/* ── Fun facts ──────────────────────────── */
.about-facts {
  background: var(--forest);
  padding: 6rem 5vw;
}

.facts-inner { max-width: 1100px; margin: 0 auto; }

.facts-header { margin-bottom: 3.5rem; }
.facts-header .label { color: var(--terra-light); margin-bottom: 0.8rem; }
.facts-header h2 { color: var(--cream); }

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

.fact-card {
  background: rgba(245,239,227,0.07);
  border: 1px solid var(--sage-dark);
  border-radius: 16px;
  padding: 2rem;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
}

.fact-card:hover {
  background: rgba(168,196,162,0.12);
  border-color: var(--sage-light);
  transform: translateY(-4px);
}

.fact-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.fact-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--cream);
  margin-bottom: 0.8rem;
}

.fact-card p {
  color: var(--sand);
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 100%;
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 900px) {
  .about-hero {
    grid-template-columns: 1fr;
    padding-bottom: 0;
    min-height: auto;
  }
  .about-hero-inner { padding-bottom: 2rem; }
  .about-hero-img-wrap img { height: 260px; border-radius: 12px; }

  .about-story-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .story-image-right { order: -1; }
  .story-image-right img,
  .story-image-left img {
    aspect-ratio: 4/3;
    max-width: 480px;
  }

  .facts-grid { grid-template-columns: 1fr; }
}
/* =========================================
   GALLERY PAGE STYLES — Lightbox Grid
   ========================================= */

/* ── Page header ────────────────────────── */
.gallery-header {
  background: var(--forest);
  color: var(--cream);
  text-align: center;
  padding: 5rem 5vw 4rem;
  position: relative;
  overflow: hidden;
}

.gallery-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 40%, rgba(125,155,119,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.gallery-header .label { color: var(--sage-light); margin-bottom: 1rem; position: relative; }
.gallery-header h1    { color: var(--cream); margin-bottom: 1rem; position: relative; }

.gallery-sub {
  color: var(--sand);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 52ch;
  margin: 0 auto;
  position: relative;
}

/* ── Filter bar ─────────────────────────── */
.gallery-filter {
  background: var(--sage-mist);
  border-bottom: 1px solid var(--sage-light);
  padding: 1.2rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.gallery-count {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-dark);
}

.gallery-hint {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--warm-gray);
  font-style: italic;
}

/* ── Thumbnail grid ─────────────────────── */
.gallery-grid {
  padding: 3rem 5vw 5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.4rem;
  background: var(--cream);
}

.gallery-thumb {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: var(--cream-dark);
  box-shadow: 0 4px 16px rgba(42,37,32,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
  aspect-ratio: 1 / 1;
}

.gallery-thumb:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(42,37,32,0.16);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-thumb:hover img { transform: scale(1.06); }

.gallery-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(42,45,34,0.82) 0%,
    rgba(42,45,34,0.3) 45%,
    transparent 70%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-thumb:hover .gallery-thumb-overlay { opacity: 1; }

.gallery-thumb-overlay .label { color: var(--sage-light); margin-bottom: 0.3rem; }

.gallery-thumb-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: white;
  line-height: 1.2;
}

.gallery-thumb-view {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  background: rgba(125,155,119,0.85);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity var(--transition), transform var(--transition);
}

.gallery-thumb:hover .gallery-thumb-view {
  opacity: 1;
  transform: scale(1);
}

.gallery-thumb-view svg { width: 16px; height: 16px; fill: white; }

/* Reveal animation for thumbnails */
.gallery-thumb {
  opacity: 0;
  transform: translateY(20px);
}
.gallery-thumb.visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    box-shadow var(--transition),
    transform var(--transition);
}
.gallery-thumb.visible:hover { transform: translateY(-5px); }

/* ── Lightbox ───────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 25, 18, 0.93);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}

.lightbox-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 320px;
  max-width: 1100px;
  width: 100%;
  max-height: 90vh;
  background: var(--forest);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  transform: scale(0.94) translateY(12px);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lightbox.open .lightbox-inner {
  transform: scale(1) translateY(0);
}

.lightbox-img-wrap {
  position: relative;
  overflow: hidden;
  background: #111;
  max-height: 90vh;
}

.lightbox-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.lightbox-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2.5rem;
  background: var(--forest);
  border-left: 1px solid rgba(125,155,119,0.25);
}

.lightbox-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(168,196,162,0.25);
  line-height: 1;
  margin-bottom: 1.5rem;
  display: block;
}

.lightbox-info .label { color: var(--sage-light); margin-bottom: 0.8rem; }

.lightbox-title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.lightbox-medium {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--sand);
  line-height: 1.7;
  max-width: 100%;
  margin-bottom: 2rem;
}

.lightbox-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(221,208,188,0.7);
  line-height: 1.8;
  max-width: 100%;
  border-top: 1px solid rgba(125,155,119,0.2);
  padding-top: 1.5rem;
}

/* Close button */
.lightbox-close {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  width: 40px; height: 40px;
  background: rgba(125,155,119,0.2);
  border: 1px solid rgba(125,155,119,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  z-index: 2;
}

.lightbox-close:hover { background: var(--sage-dark); transform: rotate(90deg); }
.lightbox-close svg   { width: 16px; height: 16px; fill: var(--cream); }

/* Prev / Next arrows */
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(125,155,119,0.18);
  border: 1px solid rgba(125,155,119,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  z-index: 2;
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

.lightbox-prev:hover,
.lightbox-next:hover { background: var(--sage); transform: translateY(-50%) scale(1.1); }

.lightbox-prev svg,
.lightbox-next svg { width: 18px; height: 18px; fill: var(--cream); }

/* Dot navigation */
.lightbox-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}

.lightbox-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(245,239,227,0.3);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.lightbox-dot.active {
  background: var(--sage-light);
  transform: scale(1.4);
}

/* ── Etsy CTA ───────────────────────────── */
.gallery-etsy-cta {
  background: var(--forest);
  padding: 7rem 5vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gallery-etsy-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(125,155,119,0.15) 0%, transparent 65%);
}

.gallery-etsy-inner { position: relative; }
.gallery-etsy-cta .label { color: var(--sage-light); margin-bottom: 0.5rem; }

.gallery-etsy-cta h2 {
  color: var(--cream);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.gallery-etsy-cta p {
  color: var(--sand);
  max-width: 52ch;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
}

.cta-etsy-btn {
  margin-top: 2.5rem;
  font-size: 0.9rem;
  padding: 1.1rem 2.8rem;
  box-shadow: 0 8px 32px rgba(193,103,63,0.3);
}

.cta-note {
  margin-top: 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(168,196,162,0.4);
  max-width: 100%;
}

/* Decorative leaves */
.cta-leaf { position: absolute; font-size: 6rem; opacity: 0.06; pointer-events: none; }
.cta-leaf--1 { top: 10%; left: 5%; transform: rotate(-20deg); }
.cta-leaf--2 { bottom: 15%; right: 5%; transform: rotate(15deg); }

/* ── Responsive ─────────────────────────── */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
    padding: 2rem 4vw 4rem;
  }

  .lightbox-inner {
    grid-template-columns: 1fr;
    grid-template-rows: 55vw auto;
    max-height: 92vh;
    overflow-y: auto;
  }

  .lightbox-img-wrap { max-height: 55vw; }

  .lightbox-info {
    border-left: none;
    border-top: 1px solid rgba(125,155,119,0.25);
    padding: 2rem 1.5rem;
  }

  .lightbox-number { font-size: 2.5rem; }
  .lightbox-title  { font-size: 1.5rem; }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    padding: 1.5rem 3vw 3rem;
  }

  .gallery-header { padding: 3.5rem 5vw 3rem; }

  .lightbox-inner { grid-template-rows: 60vw auto; }
  .lightbox-img-wrap { max-height: 60vw; }

  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}
