/* ============================================================
   Sherri Feld Sousa – Fused Glass Art
   styles.css  |  Pastel-themed, responsive, mobile-first
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Lato:wght@300;400;700&display=swap');

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
  --bg:          #faf8f5;
  --bg-alt:      #f3ede6;
  --peach:       #e8c9bd;
  --peach-light: #f5e8e1;
  --sage:        #c5d9cc;
  --sage-light:  #e5f0e9;
  --lavender:    #d4c8e8;
  --lavender-light: #eee8f8;
  --sky:         #b8d4e8;
  --sky-light:   #e2eff8;
  --rose:        #e8c8d4;
  --rose-light:  #f8e8ef;
  --text:        #3d3030;
  --text-mid:    #5a4a4a;
  --text-light:  #8a7a7a;
  --white:       #ffffff;
  --shadow-sm:   0 2px 10px rgba(100,60,60,0.08);
  --shadow-md:   0 6px 24px rgba(100,60,60,0.13);
  --shadow-lg:   0 12px 40px rgba(100,60,60,0.17);
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   28px;
  --transition:  0.3s ease;
  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Lato', Arial, sans-serif;
  --max-w:       1140px;
  --header-h:    72px;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.25;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; color: var(--text-mid); }

/* ── Utility ──────────────────────────────────────────────── */
.container {
  width: 90%;
  max-width: var(--max-w);
  margin-inline: auto;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--text);
  margin-bottom: 0.4rem;
}

.section-sub {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.divider {
  width: 60px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--peach), var(--lavender));
  margin: 0.7rem auto 1.2rem;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--peach) 0%, var(--rose) 100%);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, var(--rose) 0%, var(--peach) 100%);
}

.btn-sage {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sky) 100%);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.btn-sage:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--peach);
  color: var(--text);
}

.btn-outline:hover {
  background: var(--peach-light);
  transform: translateY(-2px);
}

/* ── Header / Nav ─────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(250,248,245,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(232,201,189,0.35);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  width: 108px;
  height: 108px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.logo-placeholder {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--peach), var(--lavender));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--text);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

.logo-sub {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-mid);
  padding: 0.45rem 0.7rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  background: var(--peach-light);
  color: var(--text);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: transparent;
  border-radius: var(--radius-sm);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 99px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Page Wrapper ─────────────────────────────────────────── */
.page-body {
  padding-top: var(--header-h);
}

/* ── Hero Section ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--peach-light);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.72;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(250,248,245,0.75) 0%,
    rgba(232,201,189,0.35) 60%,
    transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  animation: fadeInUp 1s ease both;
}

.hero-tag {
  display: inline-block;
  background: var(--peach-light);
  border: 1px solid var(--peach);
  color: var(--text-mid);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1.2rem;
}

.hero h1 {
  margin-bottom: 1.2rem;
  text-shadow: 0 1px 3px rgba(255,255,255,0.7);
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  text-shadow: 0 1px 3px rgba(255,255,255,0.6);
}

/* ── Split Hero ───────────────────────────────────────────── */
.split-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: calc(100vh - var(--header-h));
  padding: 0;
}

.split-hero-left {
  background: var(--bg-alt);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 4rem 4rem 4rem;
  animation: fadeInUp 0.9s ease both;
}

.split-hero-left h1 {
  font-size: clamp(3.4rem, 5.5vw, 5.2rem);
  margin-bottom: 1.6rem;
}

.split-hero-left h1 em {
  font-style: italic;
  font-weight: 400;
}

.split-hero-left .btn {
  font-size: 1.15rem;
  padding: 0.9rem 2.2rem;
}

.split-hero-left p {
  font-size: 1.45rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-logo-box {
  background: #e6f4ec;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  max-width: 310px;
  margin-top: 1.5rem;
}

.hero-logo-box img {
  width: 100%;
  height: auto;
}

.split-hero-right {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 3.5rem;
  background: var(--bg-alt);
}

.split-hero-right img {
  width: 70%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

@media (max-width: 768px) {
  .split-hero {
    grid-template-columns: 1fr;
    height: auto;
  }

  .split-hero-right {
    height: 55vw;
    min-height: 260px;
    order: -1;
  }

  .split-hero-left {
    padding: 2.5rem 1.5rem;
  }

  .hero-logo-box {
    max-width: 220px;
  }
}

/* ── Interior Page Hero ───────────────────────────────────── */
.page-hero {
  padding: 3.5rem 0 2.5rem;
  background: linear-gradient(135deg, var(--peach-light) 0%, var(--lavender-light) 100%);
  text-align: center;
  animation: fadeInDown 0.7s ease both;
}

.page-hero h1 {
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 540px;
  margin-inline: auto;
}

/* ── Sections ─────────────────────────────────────────────── */
section {
  padding: 5rem 0;
}

section.alt-bg {
  background: var(--bg-alt);
}

section.sage-bg {
  background: var(--sage-light);
}

section.lavender-bg {
  background: var(--lavender-light);
}

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ── Gallery Tabs / Filter Buttons ───────────────────────── */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.5rem 1.4rem;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
  color: var(--text-mid);
  box-shadow: var(--shadow-sm);
}

.filter-btn[data-cat="Plates"]     { border-color: var(--peach);    }
.filter-btn[data-cat="Bowls"]      { border-color: var(--sage);     }
.filter-btn[data-cat="Candles"]    { border-color: var(--lavender); }
.filter-btn[data-cat="Nightlights"]{ border-color: var(--sky);      }
.filter-btn[data-cat="Hearts"]     { border-color: var(--rose);     }
.filter-btn[data-cat="Vases"]      { border-color: var(--sky);      }
.filter-btn[data-cat="all"]        { border-color: var(--peach); background: var(--peach-light); }
.filter-btn[data-cat="all-fused"]  { border-color: var(--peach); background: var(--peach-light); }
.filter-btn[data-cat="all-fiber"]  { border-color: var(--sage);  background: var(--sage-light);  }

.filter-btn:hover,
.filter-btn.active {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.filter-btn[data-cat="Plates"].active     { background: var(--peach);    }
.filter-btn[data-cat="Bowls"].active      { background: var(--sage);     }
.filter-btn[data-cat="Candles"].active    { background: var(--lavender); }
.filter-btn[data-cat="Nightlights"].active{ background: var(--sky);      }
.filter-btn[data-cat="Hearts"].active     { background: var(--rose);     }
.filter-btn[data-cat="Vases"].active      { background: var(--sky);      }
.filter-btn[data-cat="all"].active        { background: var(--peach);    }
.filter-btn[data-cat="all-fused"].active  { background: var(--peach); border-color: var(--peach); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.filter-btn[data-cat="all-fiber"].active  { background: var(--sage);  border-color: var(--sage);  box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* ── Masonry-style Gallery Grid ───────────────────────────── */
.gallery-section-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--text);
  margin: 3rem 0 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--peach-light);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.gallery-section-title .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.gallery-grid {
  column-count: 2;
  column-gap: 1rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

/* ── Lightbox ─────────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(30,20,20,0.88);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeIn 0.25s ease;
}

.lightbox.open { display: flex; }

.lightbox-inner {
  position: relative;
  max-width: 900px;
  width: 100%;
}

.lightbox-inner img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: background var(--transition);
}

.lightbox-close:hover { background: var(--rose-light); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: background var(--transition);
}

.lightbox-nav:hover { background: var(--white); }
.lightbox-prev { left: -50px; }
.lightbox-next { right: -50px; }

/* ── About Layout ─────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-img-wrap img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-img-caption {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 0.6rem;
}

.about-text .lead {
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 400;
  margin-bottom: 1.2rem;
}

/* ── Show Schedule ────────────────────────────────────────── */
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.show-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--peach);
  animation: fadeInLeft 0.6s ease both;
  transition: transform var(--transition), box-shadow var(--transition);
}

.show-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.show-card:nth-child(2) { animation-delay: 0.1s; border-left-color: var(--sage); }
.show-card:nth-child(3) { animation-delay: 0.2s; border-left-color: var(--lavender); }
.show-card:nth-child(4) { animation-delay: 0.3s; border-left-color: var(--sky); }
.show-card:nth-child(5) { animation-delay: 0.4s; border-left-color: var(--rose); }
.show-card:nth-child(6) { animation-delay: 0.5s; border-left-color: var(--sage); }

.show-date-badge {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  border-radius: var(--radius-md);
  background: var(--peach-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
}

.show-date-badge .month {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.show-date-badge .day {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--text);
}

.show-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.show-info a {
  font-size: 0.85rem;
  color: var(--text-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.show-info a:hover { color: var(--text); }

/* ── Where You Can Buy ────────────────────────────────────── */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-bottom: 3.5rem;
}

.location-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 1.1rem;
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 3px solid var(--sage);
}

.location-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.location-card:nth-child(2) { border-top-color: var(--peach); }
.location-card:nth-child(3) { border-top-color: var(--sky); }
.location-card:nth-child(4) { border-top-color: var(--lavender); }
.location-card:nth-child(5) { border-top-color: var(--rose); }
.location-card:nth-child(6) { border-top-color: var(--peach); }

.location-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.location-img-wrap {
  width: 110px;
  height: 110px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.location-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.location-info h3 {
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}

.location-info p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.location-info a {
  font-size: 0.82rem;
  color: var(--text-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.location-info a:hover { color: var(--text); }

.collage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.collage-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.collage-grid img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}

/* ── Classes Page ─────────────────────────────────────────── */
.classes-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.class-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--lavender);
  margin-bottom: 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.class-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.class-card:nth-child(2) { border-top-color: var(--sage); }
.class-card:nth-child(3) { border-top-color: var(--peach); }
.class-card:nth-child(4) { border-top-color: var(--sky); }

.class-card h3 {
  margin-bottom: 0.5rem;
  color: var(--text);
}

.class-card .price {
  display: inline-block;
  background: var(--lavender-light);
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  padding: 0.2rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.class-card .duration {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.contact-info-block {
  background: var(--peach-light);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  margin-top: 2rem;
  text-align: center;
}

.contact-info-block h3 {
  margin-bottom: 1rem;
}

.contact-info-block p {
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

/* ── Inspiration Page ─────────────────────────────────────── */
.inspiration-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.inspiration-main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.inspiration-main-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.youtube-embed {
  margin: 2.5rem 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/9;
}

.youtube-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.inspiration-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.inspiration-grid img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.inspiration-grid img:hover {
  transform: scale(1.04);
  box-shadow: var(--shadow-md);
}

/* ── Contact Page ─────────────────────────────────────────── */
.contact-layout {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--peach-light);
  transition: background var(--transition);
}

.contact-item:last-child { border-bottom: none; }

.contact-item:hover { background: var(--bg-alt); border-radius: var(--radius-sm); }

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.ci-instagram { background: var(--rose-light); }
.ci-email     { background: var(--peach-light); }
.ci-phone     { background: var(--sage-light); }

.contact-detail h4 {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.15rem;
}

.contact-detail p, .contact-detail a {
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 700;
  margin: 0;
}

.contact-detail a:hover { text-decoration: underline; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 2rem;
  text-align: center;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand .logo-name {
  color: var(--white);
  font-size: 1.2rem;
}

.footer-brand .logo-sub {
  color: rgba(255,255,255,0.5);
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

.footer-links h4 {
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.footer-links ul li {
  margin-bottom: 0.4rem;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--peach); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Scroll-triggered fade */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── Responsive: Tablet (≥ 640px) ────────────────────────── */
@media (min-width: 640px) {
  .gallery-grid { column-count: 3; }
  .schedule-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .collage-grid { grid-template-columns: repeat(3, 1fr); }
  .inspiration-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1.5fr 1fr 1fr; text-align: left; }
}

/* ── Responsive: Desktop (≥ 960px) ───────────────────────── */
@media (min-width: 960px) {
  .nav-menu { display: flex !important; }
  .nav-toggle { display: none !important; }

  .about-grid { grid-template-columns: 1fr 1.5fr; }
  .classes-layout { grid-template-columns: 2fr 1fr; }
  .inspiration-layout { grid-template-columns: 1.2fr 1fr; }
  .schedule-grid { grid-template-columns: repeat(2, 1fr); }
  .collage-grid { grid-template-columns: repeat(4, 1fr); }
  .collage-grid img { height: 200px; }
  .inspiration-grid { grid-template-columns: repeat(3, 1fr); }
  .inspiration-grid img { height: 200px; }
  .inspiration-main-img img { height: 480px; }
}

/* ── Mobile Nav Override ──────────────────────────────────── */
@media (max-width: 959px) {
  .nav-toggle { display: flex; }

  .nav-menu {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(250,248,245,0.97);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 1.5rem 1.5rem 2rem;
    gap: 0.25rem;
    box-shadow: var(--shadow-md);
    border-bottom: 2px solid var(--peach-light);
    z-index: 999;
  }

  .nav-menu.open { display: flex; }

  .nav-link {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }

  .lightbox-prev { left: -8px; }
  .lightbox-next { right: -8px; }
}

/* ── Placeholder image styling ────────────────────────────── */
.img-placeholder {
  background: linear-gradient(135deg, var(--peach-light), var(--lavender-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.85rem;
  font-style: italic;
  text-align: center;
  padding: 0.5rem;
}

.img-placeholder.tall  { height: 320px; }
.img-placeholder.short { height: 180px; }
.img-placeholder.hero  { height: 100%; min-height: 520px; }
