/* ============================================================
   ROUGE LAB — styles.css
   Paleta: rojo terracota, crema, marrón oscuro, blanco roto
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --rouge:        #c9463d;
  --rouge-dark:   #8b2d2d;
  --rouge-light:  #e87066;
  --cream:        #f5ede3;
  --cream-mid:    #e8d9c8;
  --sand:         #e8c9a0;
  --brown:        #7a5c4a;
  --dark:         #2c2118;
  --dark-mid:     #3e2f22;
  --white:        #fdfaf6;
  --text:         #2c2118;
  --text-muted:   #7a6a5e;

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

  --radius:       12px;
  --radius-lg:    24px;
  --shadow:       0 8px 32px rgba(44,33,24,.10);
  --shadow-lg:    0 20px 60px rgba(44,33,24,.18);

  --nav-height:   72px;
  --container:    1180px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

/* ---------- TYPOGRAPHY ---------- */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rouge);
  margin-bottom: .75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
}

.section-title em {
  font-style: italic;
  color: var(--rouge);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3.5rem;
}

/* ---------- UTILITIES ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.desktop-only { display: none; }
@media (min-width: 768px) { .desktop-only { display: inline; } }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.75rem;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s ease;
}

.btn--primary {
  background: var(--rouge);
  color: #fff;
  border-color: var(--rouge);
}
.btn--primary:hover {
  background: var(--rouge-dark);
  border-color: var(--rouge-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,70,61,.35);
}

.btn--ghost {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn--ghost:hover {
  background: var(--dark);
  color: var(--white);
}

.btn--small {
  padding: .55rem 1.25rem;
  font-size: .85rem;
}

.btn--full { width: 100%; justify-content: center; }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  background: rgba(253,250,246,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}

.nav.scrolled {
  border-color: var(--cream-mid);
  box-shadow: 0 2px 20px rgba(44,33,24,.07);
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.nav__logo-bird {
  color: var(--rouge);
  font-size: 1rem;
}

.nav__links {
  display: none;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav__links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 400;
  transition: color .2s;
}
.nav__links a:hover { color: var(--rouge); }

.nav__placeholder {
  color: var(--text-muted);
  font-size: .9rem;
  font-weight: 400;
  cursor: default;
}

.nav__lang {
  display: flex;
  align-items: center;
  gap: .45rem;
}

.nav__lang a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: .35rem .65rem;
  border: 1px solid var(--cream-mid);
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav__lang a:hover {
  color: var(--dark);
  border-color: var(--rouge);
}

.nav__lang a.is-active {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

.nav__cta {
  background: var(--rouge) !important;
  color: #fff !important;
  padding: .5rem 1.25rem;
  border-radius: 100px;
  font-weight: 500 !important;
  transition: background .2s, transform .2s !important;
}
.nav__cta:hover { background: var(--rouge-dark) !important; transform: translateY(-1px); }

.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .3s;
}
.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); }

@media (min-width: 768px) {
  .nav__links { display: flex; }
  .nav__toggle { display: none; }
}

/* Mobile menu */
@media (max-width: 767px) {
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--white);
    padding: 2rem;
    border-bottom: 1px solid var(--cream-mid);
    box-shadow: var(--shadow-lg);
    gap: 1.5rem;
  }

  .nav__lang {
    justify-content: center;
    width: 100%;
  }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-height) + 3rem) 2rem 5rem;
  overflow: hidden;
  background: var(--cream);
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
}

.hero__shape--1 {
  width: 500px; height: 500px;
  top: -100px; right: -150px;
  background: radial-gradient(circle, #c9463d55, transparent 70%);
}

.hero__shape--2 {
  width: 400px; height: 400px;
  bottom: -80px; left: -100px;
  background: radial-gradient(circle, #e8c9a055, transparent 70%);
}

.hero__shape--3 {
  width: 300px; height: 300px;
  top: 50%; left: 35%;
  background: radial-gradient(circle, #7a5c4a30, transparent 70%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero__eyebrow {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rouge);
  margin-bottom: 1.25rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.hero__title em {
  color: var(--rouge);
  font-style: italic;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__visual {
  display: none;
  position: absolute;
  right: 6vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  gap: 1rem;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .hero__visual { display: flex; }
}

.hero__card {
  display: flex;
  align-items: center;
  gap: .85rem;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(8px);
  padding: .85rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-size: .85rem;
  font-weight: 500;
  color: var(--dark);
  min-width: 180px;
  animation: floatIn .8s ease both;
}

.hero__card--1 { animation-delay: .1s; }
.hero__card--2 { animation-delay: .25s; transform: translateX(20px); }
.hero__card--3 { animation-delay: .4s; }

.hero__card-img {
  width: 42px; height: 42px;
  border-radius: 8px;
  flex-shrink: 0;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  z-index: 2;
  color: var(--text-muted);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: fadeIn 1s 1s both;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--rouge), transparent);
  animation: scrollPulse 2s infinite;
}

/* ---------- ABOUT ---------- */
.about {
  padding: 7rem 0;
  background: var(--white);
}

.about--home .about__grid {
  align-items: start;
}

.about--home .about__visual {
  align-self: start;
}

.about--home .about__img-wrapper {
  transform: translateY(-1rem);
}

.about--home .about__stat-card {
  bottom: 44px;
}

@media (min-width: 900px) {
  .about--home .about__stat-card {
    left: 43%;
    top: 248px;
    right: auto;
    bottom: auto;
    transform: translateX(-50%);
    padding: .85rem 1.2rem;
    max-width: 155px;
    white-space: normal;
  }
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 900px) {
  .about__grid { grid-template-columns: 1fr 1fr; }
}

.about__visual--corporate {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about__feature-card {
  background: linear-gradient(180deg, #fbf4ec 0%, #f6ede3 100%);
  border: 1px solid var(--cream-mid);
  border-radius: 32px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.about__feature-slider {
  position: relative;
  height: 440px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.about__feature-image {
  width: 100%;
  height: 440px;
  display: block;
  object-fit: cover;
  border-radius: 24px;
}

.about__feature-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 0;
  transform: scale(1.02);
  transition: opacity 1.2s ease, transform 6s ease, visibility 0s linear 1.2s;
}

.about__feature-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
  transform: scale(1);
  transition: opacity 1.2s ease, transform 6s ease;
}

.about__feature-dots {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  display: inline-flex;
  gap: .45rem;
  padding: .45rem .65rem;
  background: rgba(44, 33, 24, .28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 100px;
  z-index: 2;
}

.about__feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.42);
  transition: transform .25s ease, background-color .25s ease;
}

.about__feature-dot.active {
  background: var(--white);
  transform: scale(1.15);
}

.about__feature-summary {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
}

.about__feature-metric {
  background: var(--dark);
  border: 1px solid var(--dark);
  border-radius: 22px;
  padding: 1.2rem;
  color: var(--white);
}

.about__feature-number {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
  margin-bottom: .5rem;
}

.about__feature-label {
  display: block;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(255,255,255,.72);
}

.about__feature-copy {
  color: var(--dark);
  line-height: 1.8;
  font-size: .96rem;
}

.about__highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about__highlight {
  background: rgba(253, 250, 246, .95);
  border: 1px solid rgba(232, 217, 200, .95);
  border-radius: 22px;
  padding: 1.15rem;
}

.about__highlight-title {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: .4rem;
}

.about__highlight p {
  font-size: .88rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.about__img-wrapper {
  position: relative;
  height: 440px;
  max-width: 560px;
}

.about__img {
  position: absolute;
  border-radius: var(--radius-lg);
  display: block;
  width: 100%;
  object-fit: cover;
}

.about__img--main {
  width: 72%;
  height: 360px;
  top: 0; left: 0;
  box-shadow: var(--shadow-lg);
  object-position: center center;
  z-index: 2;
}

.about__img--accent {
  width: 42%;
  height: 190px;
  top: 34px; right: 0;
  box-shadow: var(--shadow);
  object-position: center center;
  z-index: 3;
}

.about__img--support {
  width: 54%;
  height: 210px;
  bottom: 0;
  right: 2.5rem;
  box-shadow: var(--shadow);
  object-position: center center;
  z-index: 1;
}

.about__stat-card {
  position: absolute;
  bottom: 28px;
  left: 42%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  white-space: nowrap;
  z-index: 2;
}

@media (max-width: 899px) {
  .about--home .about__img-wrapper {
    transform: none;
  }

  .about__feature-slider,
  .about__feature-image {
    height: 340px;
  }

  .about__feature-summary,
  .about__highlights {
    grid-template-columns: 1fr;
  }

  .about__feature-metric {
    text-align: center;
  }

  .about__img-wrapper {
    max-width: none;
  }

  .about__img--main {
    width: 75%;
    height: 340px;
  }

  .about__img--accent {
    width: 55%;
    height: 220px;
    top: auto;
    bottom: 0;
    right: 0;
  }

  .about__img--support {
    display: none;
  }

  .about__stat-card {
    bottom: 60px;
    left: 50%;
  }
}

.about__stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--rouge);
  line-height: 1;
}

.about__stat-label {
  font-size: .8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.about__body {
  color: var(--text-muted);
  margin-top: 1.25rem;
  line-height: 1.8;
}

.about__pillars {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about__pillars li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.about__pillar-icon {
  color: var(--rouge);
  font-size: .6rem;
  margin-top: .4rem;
  flex-shrink: 0;
}

.about__pillars strong { display: block; color: var(--dark); font-weight: 500; }
.about__pillars p { font-size: .9rem; color: var(--text-muted); margin-top: .15rem; }

.about__evidence {
  margin-top: 2.5rem;
  padding: 1.75rem;
  background: linear-gradient(180deg, #fff8f2 0%, #f9f1e8 100%);
  border: 1px solid var(--cream-mid);
  border-radius: var(--radius-lg);
}

.about__evidence--band {
  margin-top: 4rem;
  padding: 2.2rem;
}

.about__evidence--home {
  margin-top: 3rem;
}

.about__evidence-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .about__evidence-head {
    grid-template-columns: 1.05fr .95fr;
  }
}

.about__evidence-kicker {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rouge);
  margin-bottom: .75rem;
}

.about__evidence-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.2;
  color: var(--dark);
  max-width: 14ch;
}

.about__evidence-intro {
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: .15rem;
}

.about__evidence-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .about__evidence-grid { grid-template-columns: repeat(3, 1fr); }
}

.about__evidence-card {
  background: rgba(253, 250, 246, .85);
  border: 1px solid rgba(232, 217, 200, .9);
  border-radius: var(--radius);
  padding: 1.15rem;
}

.about__evidence-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: .45rem;
}

.about__evidence-card p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- TEAM ---------- */
.team { margin-top: 1rem; }

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

@media (min-width: 768px) {
  .team__grid { grid-template-columns: repeat(2, 1fr); max-width: 860px; margin: 0 auto; }
}

.team__card {
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow .3s;
}

.team__card:hover { box-shadow: var(--shadow-lg); }

.team__photo-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--rouge);
  position: relative;
}

/* Foto real: debajo, siempre presente */
.team__photo--real {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: opacity 3.2s ease-in-out;
  transition-delay: var(--team-delay, 0ms);
  opacity: 0;
}

/* Versión felting: encima por defecto */
.team__photo--felt {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: opacity 3.2s ease-in-out, transform 3.2s ease-in-out;
  transition-delay: var(--team-delay, 0ms);
  opacity: 1;
}

/* Al entrar en pantalla: felting se desvanece y aparece la foto real */
.team__card.in-view .team__photo--real {
  opacity: 1;
}
.team__card.in-view .team__photo--felt {
  opacity: 0;
  transform: scale(1.1);
}

/* Fallback para .team__photo sin variante (mascota) */
.team__photo:not(.team__photo--real):not(.team__photo--felt) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team__photo-wrap--placeholder {
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team__photo-wrap--placeholder span {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cream);
}

.team__info { display: flex; flex-direction: column; gap: .35rem; }

.team__name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
}

.team__role {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rouge);
  margin-bottom: .25rem;
}

.team__bio {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.team__ig {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .6rem;
  font-size: .82rem;
  color: var(--rouge);
  text-decoration: none;
  font-weight: 500;
  transition: opacity .2s;
}
.team__ig:hover { opacity: .7; }

.team__badge {
  display: inline-block;
  margin-top: .6rem;
  font-size: .78rem;
  font-weight: 500;
  background: var(--cream-mid);
  color: var(--brown);
  padding: .25rem .75rem;
  border-radius: 100px;
}

.team__card--mascot {
  border: 2px dashed var(--rouge);
  background: linear-gradient(135deg, var(--cream) 80%, #fbe8e7);
}

.team__photo-wrap--mascot {
  background: #fce8e7;
  border-color: var(--rouge-light);
}

.team__photo--mascot {
  object-position: center center;
  transform: scale(1.08);
  transition: transform 3.2s ease-in-out, filter 3.2s ease-in-out;
  transition-delay: var(--team-delay, 0ms);
  filter: saturate(1.1) brightness(1.05) !important;
}

.team__card.in-view .team__photo--mascot {
  filter: saturate(1.5) brightness(1.1) drop-shadow(0 0 8px rgba(201,70,61,.4)) !important;
  transform: scale(1.15) rotate(-3deg) !important;
}

/* ---------- WORKSHOPS ---------- */
.workshops {
  padding: 7rem 0;
  background: var(--cream);
}

.workshops__tabs {
  display: flex;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.workshops__tab {
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 500;
  padding: .6rem 1.5rem;
  border-radius: 100px;
  border: 2px solid var(--cream-mid);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all .25s;
}

.workshops__tab.active,
.workshops__tab:hover {
  background: var(--rouge);
  border-color: var(--rouge);
  color: #fff;
}

.workshops__panel { display: none; }
.workshops__panel.active { display: block; }

/* Adults grid */
.workshops__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px)  { .workshops__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .workshops__grid { grid-template-columns: repeat(4, 1fr); } }

.workshops__adults-intro {
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
}

.workshops__adults-intro h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: .85rem;
}

.workshops__adults-intro p {
  color: var(--text-muted);
  line-height: 1.8;
}

.workshop-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
}

.workshop-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.workshop-card__color { height: 6px; }

.workshop-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.workshop-card__body h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--dark);
}

.workshop-card__body p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.workshop-card__meta {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  font-size: .8rem;
  color: var(--text-muted);
}

/* Kids */
.workshops__kids-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
}

@media (min-width: 768px) {
  .workshops__kids-hero { grid-template-columns: 1fr 1fr; }
}

.workshops__kids-text h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.workshops__kids-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.workshops__kids-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 2rem;
  font-size: .95rem;
  color: var(--text-muted);
}

.workshops__kids-list strong { color: var(--dark); }

.workshops__kids-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}

.workshops__kids-image {
  width: min(100%, 360px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

.workshops__kids-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-top: 1.25rem;
}

.workshops__kids-tags span {
  background: var(--rouge);
  color: #fff;
  font-size: .85rem;
  font-weight: 500;
  padding: .5rem 1.1rem;
  border-radius: 100px;
}

/* Companies */
.workshops__companies {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
}

.workshops__companies-text {
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.workshops__companies-text h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.workshops__companies-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: .75rem;
}

.workshops__companies-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) { .workshops__companies-cards { grid-template-columns: repeat(2, 1fr); } }

.companies-card {
  border: 1.5px solid var(--cream-mid);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color .25s, box-shadow .25s;
}

.companies-card:hover {
  border-color: var(--rouge);
  box-shadow: 0 4px 16px rgba(201,70,61,.1);
}

.companies-card__icon { font-size: 1.3rem; margin-bottom: .75rem; }

.companies-card h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: .4rem;
}

.companies-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }

/* ---------- GALLERY ---------- */
.gallery {
  padding: 7rem 0 4rem;
  background: var(--dark);
}

.gallery .section-eyebrow { color: var(--rouge-light); }
.gallery .section-title { color: var(--white); }
.gallery .section-title em { color: var(--rouge-light); }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: .75rem;
  padding: 0 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
  }
}

.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .3s, box-shadow .3s;
}

.gallery__item:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}

.gallery__item--tall {
  grid-row: span 2;
  aspect-ratio: unset;
}

.gallery__item--wide {
  grid-column: span 2;
  aspect-ratio: unset;
  min-height: 200px;
}

.gallery__swatch,
.gallery__image {
  width: 100%;
  height: 100%;
  min-height: 160px;
}

.gallery__image {
  object-fit: cover;
  display: block;
}

.gallery__footer {
  text-align: center;
  margin-top: 2.5rem;
}

.gallery__instagram {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: .9rem;
  transition: color .25s;
}

.gallery__instagram:hover { color: var(--rouge-light); }

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  padding: 6rem 0;
  background: var(--cream);
}

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

@media (min-width: 768px) { .testimonials__grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -.3rem;
  left: 1.5rem;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--rouge);
  opacity: .15;
  line-height: 1;
}

.testimonial p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.testimonial footer {
  font-size: .8rem;
  color: var(--rouge);
  font-weight: 500;
}

/* ---------- GIFTCARD ---------- */
.giftcard {
  padding: 7rem 0;
  background: linear-gradient(180deg, #fffaf4 0%, #f6eee5 100%);
}

.giftcard__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .giftcard__grid { grid-template-columns: 1.15fr .85fr; }
}

.giftcard__body {
  color: var(--text-muted);
  line-height: 1.85;
  margin-top: 1.25rem;
}

.giftcard__reasons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .giftcard__reasons { grid-template-columns: repeat(3, 1fr); }
}

.giftcard__reason {
  background: rgba(253, 250, 246, .9);
  border: 1px solid var(--cream-mid);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}

.giftcard__reason h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: .45rem;
}

.giftcard__reason p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.giftcard__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
}

.giftcard__note {
  font-size: .9rem;
  color: var(--text-muted);
}

.giftcard__visual {
  position: relative;
  min-height: 520px;
}

.giftcard__image {
  position: absolute;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-lg);
}

.giftcard__image--main {
  width: 78%;
  height: 440px;
  top: 0;
  left: 0;
  object-position: center center;
}

.giftcard__image--accent {
  width: 48%;
  height: 230px;
  right: 0;
  bottom: 0;
  object-position: center center;
  border: 8px solid rgba(253, 250, 246, .95);
}

@media (max-width: 899px) {
  .giftcard__visual {
    min-height: auto;
    display: grid;
    gap: 1rem;
  }

  .giftcard__image {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .giftcard__image--accent {
    aspect-ratio: 1 / 1;
    border-width: 0;
  }
}

/* ---------- CONTACT ---------- */
.contact {
  padding: 7rem 0;
  background: var(--white);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

@media (min-width: 900px) { .contact__grid { grid-template-columns: 1fr 1.2fr; } }

.contact__body {
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 1.25rem;
  margin-bottom: 2rem;
}

.contact__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.contact__links a {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: var(--dark);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 400;
  transition: color .2s;
}

.contact__links a:hover { color: var(--rouge); }
.contact__links svg { color: var(--rouge); flex-shrink: 0; }

/* Form */
.contact__form {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.form-group label {
  font-size: .85rem;
  font-weight: 500;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: .95rem;
  padding: .75rem 1rem;
  border: 1.5px solid var(--cream-mid);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--dark);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  resize: vertical;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rouge);
  box-shadow: 0 0 0 3px rgba(201,70,61,.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--cream-mid); }

.form-success {
  font-size: .9rem;
  color: var(--rouge);
  font-weight: 500;
  text-align: center;
  min-height: 1.2em;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.55);
  padding: 3.5rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; align-items: center; }
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .25rem;
}

.footer__tagline {
  font-size: .85rem;
  margin-bottom: .15rem;
}

.footer__domain {
  font-size: .8rem;
  color: var(--rouge-light);
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.footer__nav a {
  color: rgba(255,255,255,.5);
  text-decoration: none;
  font-size: .9rem;
  transition: color .2s;
}
.footer__nav a:hover { color: var(--rouge-light); }

.footer__social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer__social a {
  color: rgba(255,255,255,.5);
  transition: color .2s, transform .2s;
}
.footer__social a:hover { color: var(--rouge-light); transform: translateY(-2px); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  text-align: center;
  font-size: .8rem;
}

/* ---------- ANIMATIONS ---------- */
@keyframes floatIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50%       { opacity: 1; transform: scaleY(1.15); }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
