/* ═══════════════════════════════════════════════
   ELITE — Page-Specific Styles
   ═══════════════════════════════════════════════ */

/* ─────────────────── HOMEPAGE ─────────────────── */

/* Hero */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-height) + 3rem) 5rem 5rem;
}

.hero-title {
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 400px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-image {
  position: relative;
  overflow: hidden;
  background: var(--accent-tint);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About Teaser */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
.about-teaser-image {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.about-teaser-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-teaser-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem;
}
.about-teaser-content h2 { margin-bottom: 1.5rem; }
.about-teaser-content p { margin-bottom: 2rem; }

/* Services Overview */
.services-overview {
  padding: var(--space-xl) 3rem;
}
.services-overview-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}
.services-overview-header h2 {
  max-width: 500px;
  margin: 0.75rem auto 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  transition: all var(--duration) var(--ease);
  position: relative;
}
.service-card:hover {
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  border-color: transparent;
}

.service-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 400;
  color: var(--accent-tint);
  line-height: 1;
  margin-bottom: 2rem;
}

.service-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 2rem;
}

.service-price {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-dark);
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.service-popular {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  background: var(--accent);
  color: var(--black);
}

/* Testimonial */
.testimonial {
  padding: var(--space-2xl) var(--space-md);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.testimonial blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  font-style: normal;
  line-height: 1.4;
  color: var(--black);
  margin-bottom: 2rem;
  max-width: none;
}
.testimonial cite {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.testimonial cite strong {
  color: var(--accent-dark);
  font-weight: 500;
}

/* ── Testimonials Section ── */
.testimonials-section {
  padding: var(--space-2xl) var(--space-md) var(--space-xl);
  max-width: var(--max-width);
  margin: 0 auto;
}
.testimonials-section--results {
  max-width: 1280px;
  padding-bottom: var(--space-lg);
}
.testimonials-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.testimonials-header h2 {
  margin-top: 0.75rem;
}
.testimonials-header h2 em {
  font-style: normal;
  color: var(--accent-dark);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonials-grid--4 {
  grid-template-columns: repeat(3, 1fr);
}
.testimonial-card {
  position: relative;
  padding: 2.5rem 2rem 2rem;
  border: 1px solid var(--border);
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: all var(--duration) var(--ease);
  overflow: hidden;
}
.testimonial-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 212, 245, 0.08);
}
.testimonial-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}
.testimonial-card:hover .testimonial-card__accent {
  opacity: 1;
}
.testimonial-card__quote {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--accent);
  margin-bottom: -0.5rem;
  user-select: none;
}
.testimonial-card blockquote {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text);
  flex: 1;
  margin-bottom: 1.75rem;
}
.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.testimonial-card__initial {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  flex-shrink: 0;
}
.testimonial-card cite {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  font-style: normal;
  color: var(--black);
  display: block;
  letter-spacing: 0.02em;
}
.testimonial-card__detail {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .testimonials-grid,
  .testimonials-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .testimonials-section {
    padding: var(--space-xl) var(--space-sm);
  }
  .testimonials-grid,
  .testimonials-grid--4 {
    grid-template-columns: 1fr;
  }
  .testimonial-card {
    padding: 2rem 1.5rem 1.75rem;
  }
}

/* Results Strip */
.results-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.result-item {
  padding: 3.5rem 2.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
}
.result-item:last-child { border-right: none; }

.result-number {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.result-label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* CTA Banner */
.cta-banner {
  background: var(--black);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 50vh;
}
.cta-banner-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem;
}
.cta-banner-content h2 {
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-banner-content h2 em {
  font-style: normal;
  color: var(--accent-light);
}
.cta-banner-content p {
  color: rgba(255,255,255,0.5);
  margin-bottom: 2.5rem;
}
.cta-banner-image {
  position: relative;
  overflow: hidden;
  background: var(--accent-dark);
}
.cta-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Instagram Section */
.ig-section {
  padding: var(--space-xl) 0 0;
}
.ig-section .overline {
  text-align: center;
  display: block;
  margin-bottom: 2.5rem;
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
}
.ig-cell {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  background: var(--accent-tint);
}
.ig-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.ig-cell:hover img { transform: scale(1.05); }

/* Featured In */
.featured-in {
  padding: var(--space-lg) var(--space-md);
  text-align: center;
}
.featured-in .overline {
  display: block;
  margin-bottom: 2rem;
}
.featured-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.featured-logo-link {
  display: block;
  width: 120px;
  transition: transform 0.3s ease;
}
.featured-logo-link:hover {
  transform: scale(1.05);
}
.featured-logos img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

/* ─────────────────── ABOUT PAGE ─────────────────── */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}
.about-hero--portrait {
  grid-template-columns: 1fr 0.8fr;
  min-height: auto;
  max-height: 85vh;
  overflow: hidden;
}
.about-hero--portrait .about-hero-content {
  padding: calc(var(--nav-height) + 5rem) 5rem 5rem;
  align-items: flex-start;
}
.about-hero--portrait .about-hero-image {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: var(--black);
  overflow: hidden;
}
.about-hero--portrait .about-hero-image img {
  width: auto;
  height: 85vh;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
}
.about-hero-image {
  position: relative;
  overflow: hidden;
}
.about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-height) + 3rem) 5rem 5rem;
}

.about-story {
  padding: var(--space-xl) var(--space-md);
  max-width: 740px;
  margin: 0 auto;
}
.about-story h2 { margin-bottom: 1.5rem; }
.about-story p { margin-bottom: 1.5rem; }

.about-credentials {
  padding: var(--space-lg) var(--space-md);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}
.credential-item h4 { margin-bottom: 0.5rem; }

.about-philosophy {
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
}
.about-philosophy h2 { margin-bottom: 1.5rem; }
.about-philosophy p {
  margin: 0 auto 1.5rem;
  text-align: center;
}
.philosophy-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.philosophy-pillar {
  padding: 2rem;
  border: 1px solid var(--border);
  text-align: left;
  transition: all var(--duration) var(--ease);
}
.philosophy-pillar:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}
.philosophy-pillar h4 {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.philosophy-pillar h4::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  flex-shrink: 0;
}
.philosophy-pillar p {
  text-align: left;
  font-size: 0.88rem;
}

.about-fun-facts {
  padding: var(--space-xl) var(--space-md);
  max-width: 740px;
  margin: 0 auto;
}
.about-fun-facts h2 { margin-bottom: 1.5rem; }
.fun-facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.fun-fact {
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  transition: border-color var(--duration) var(--ease);
}
.fun-fact:hover { border-color: var(--accent); }
.fun-fact .fact-emoji {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  display: block;
}
.fun-fact h4 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}
.fun-fact p {
  font-size: 0.85rem;
  line-height: 1.6;
}

/* About hero image placeholder */
.about-hero-image .image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 500px;
  background: var(--accent-tint);
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-placeholder span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-dark);
  opacity: 0.6;
}

@media (max-width: 1024px) {
  .philosophy-pillars { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .fun-facts-grid { grid-template-columns: 1fr; }
  .about-hero-content { padding: calc(var(--nav-height) + 2rem) 1.5rem 3rem; }
}

/* ─────────────────── SERVICES PAGE ─────────────────── */
.services-hero {
  padding: calc(var(--nav-height) + 4rem) var(--space-md) var(--space-lg);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.services-hero p { margin: 1rem auto 0; }

/* === PRICING TIERS === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  align-items: start;
}

.pricing-card {
  padding: 3rem 2.5rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--duration) var(--ease);
  background: var(--white);
}
.pricing-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  transform: translateY(-4px);
  z-index: 2;
}

/* Featured / Elite card */
.pricing-card.featured {
  border-color: var(--accent);
  border-width: 2px;
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(0, 212, 245, 0.1);
  z-index: 1;
}
.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 24px 64px rgba(0, 212, 245, 0.15);
}

/* Most Popular card */
.pricing-card--popular {
  border-color: var(--black);
  border-width: 2px;
}

/* Pricing badges */
.pricing-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  white-space: nowrap;
}
.pricing-badge--popular {
  background: var(--accent);
  color: var(--black);
}
.pricing-badge--signature {
  background: var(--black);
  color: var(--white);
}

.pricing-card .tier-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}
.pricing-card .tier-price {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.pricing-card .tier-price span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.pricing-card .tier-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.pricing-card .tier-features {
  flex: 1;
  margin-bottom: 2rem;
}
.pricing-card .tier-features li {
  font-size: 0.88rem;
  color: var(--text);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pricing-card .tier-features li::before {
  content: '\2713';
  color: var(--accent);
  font-weight: 600;
}

/* Additional Offerings */
.additional-offerings {
  padding: var(--space-xl) var(--space-md);
}
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--max-width);
  margin: 2rem auto 0;
}

/* FAQ */
.faq-section {
  padding: var(--space-xl) var(--space-md);
  max-width: 740px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem 0;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform 0.3s var(--ease);
}
.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-answer p {
  padding-bottom: 1.5rem;
  font-size: 0.92rem;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}

/* ─────────────────── TRANSFORMATIONS PAGE ─────────────────── */
.transformations-hero {
  padding: calc(var(--nav-height) + 4rem) var(--space-md) var(--space-lg);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 0 var(--space-md) var(--space-lg);
}
.filter-btn {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all 0.2s;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.transformation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.transformation-card {
  border: 1px solid var(--border);
  transition: all var(--duration) var(--ease);
}
.transformation-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}
.transformation-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--accent-tint);
}
.transformation-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.transformation-card-body {
  padding: 2rem;
}
.transformation-card-body h4 { margin-bottom: 0.5rem; }
.transformation-card-body .overline { margin-bottom: 0.75rem; display: block; }
.transformation-card-body .metric {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.transformation-card-body p {
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.transformation-duration {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.transformation-card--cta {
  border-style: dashed;
  border-color: var(--accent);
}
.transformation-card--cta:hover {
  border-style: solid;
}

/* ─────────────────── BLOG PAGE ─────────────────── */
.blog-hero {
  padding: calc(var(--nav-height) + 4rem) var(--space-md) var(--space-lg);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.blog-categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 0 var(--space-md) var(--space-lg);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md) var(--space-xl);
}
.blog-card {
  border: 1px solid var(--border);
  transition: all var(--duration) var(--ease);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}
.blog-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--accent-tint);
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.blog-card:hover .blog-card-image img { transform: scale(1.03); }
.blog-card-body {
  padding: 1.75rem;
}
.blog-card-meta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.75rem;
}
.blog-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.blog-card-body p {
  font-size: 0.88rem;
  line-height: 1.6;
}
.blog-card-footer {
  padding: 1rem 1.75rem;
  border-top: 1px solid var(--border);
  font-size: 0.72rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
}

/* ─────────────────── PRESS PAGE ─────────────────── */
.press-hero {
  padding: calc(var(--nav-height) + 4rem) var(--space-md) var(--space-lg);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.press-feature {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md) var(--space-xl);
  align-items: center;
}
.press-feature-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--accent-tint);
}
.press-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.press-feature-content h3 { margin-bottom: 1rem; }
.press-feature-content p { margin-bottom: 2rem; }

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
}

/* ─────────────────── CONTACT PAGE ─────────────────── */
.contact-hero {
  padding: calc(var(--nav-height) + 4rem) var(--space-md) var(--space-lg);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md) var(--space-xl);
}
.contact-info h3 { margin-bottom: 1.5rem; }
.contact-info p { margin-bottom: 1rem; }
.contact-info .contact-detail {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.contact-info .contact-detail strong {
  font-weight: 500;
  color: var(--black);
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--border);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
}
.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}
.contact-form select {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--border);
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--text-muted);
  margin-bottom: 1rem;
  background: var(--white);
  transition: border-color 0.2s;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%3Cpath%20fill%3D%22%237A7A7A%22%20d%3D%22M6%208L1%203h10z%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.contact-form select:focus {
  border-color: var(--accent);
}

/* ── Contact Map Placeholder ── */
.contact-map {
  background: var(--accent-tint);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
}
.contact-map-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ─────────────────── BLOG NEWSLETTER ─────────────────── */
.blog-newsletter {
  padding: var(--space-xl) var(--space-md);
  background: var(--black);
  text-align: center;
}
.blog-newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
}
.blog-newsletter .overline {
  color: var(--accent-light);
  display: block;
  margin-bottom: 1rem;
}
.blog-newsletter h2 {
  color: var(--white);
  margin-bottom: 0.5rem;
}
.blog-newsletter p {
  color: rgba(255,255,255,0.5);
}
.blog-newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}
.blog-newsletter-form input {
  flex: 1;
  padding: 0.9rem 1.2rem;
  font-size: 0.88rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  color: var(--white);
}
.blog-newsletter-form input::placeholder {
  color: rgba(255,255,255,0.3);
}
.blog-newsletter-form input:focus {
  border-color: var(--accent);
}
.blog-newsletter-form .btn {
  border: none;
}

/* ─────────────────── RESPONSIVE ─────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: calc(var(--nav-height) + 3rem) 3rem 4rem; }
  .hero-image { min-height: 50vh; }

  .about-teaser { grid-template-columns: 1fr; }
  .about-teaser-content { padding: 3rem; }

  .services-grid,
  .pricing-grid,
  .offerings-grid { grid-template-columns: 1fr; }

  .pricing-grid { max-width: 500px; }
  .pricing-card.featured {
    transform: none;
  }
  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }

  .services-overview { padding: var(--space-xl) 2rem; }

  .results-strip { grid-template-columns: repeat(2, 1fr); }
  .result-item:nth-child(2) { border-right: none; }

  .cta-banner { grid-template-columns: 1fr; }
  .cta-banner-content { padding: 4rem 3rem; }
  .cta-banner-image { min-height: 40vh; }

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

  .about-hero { grid-template-columns: 1fr; }
  .about-hero--portrait { grid-template-columns: 1fr; max-height: none; }
  .about-hero--portrait .about-hero-content { padding: calc(var(--nav-height) + 3rem) 3rem 3rem; }
  .about-hero--portrait .about-hero-image img { height: 60vh; }
  .about-hero-content { padding: calc(var(--nav-height) + 3rem) 3rem 4rem; }

  .transformation-grid,
  .blog-grid,
  .press-grid { grid-template-columns: 1fr 1fr; }

  .press-feature { grid-template-columns: 1fr; }

  .contact-content { grid-template-columns: 1fr; }

  .blog-newsletter-form { flex-direction: column; gap: 0.75rem; }
  .blog-newsletter-form input { border-right: 1px solid rgba(255,255,255,0.15); }

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

@media (max-width: 600px) {
  .hero-text { padding: calc(var(--nav-height) + 2rem) 1.5rem 3rem; }
  .hero-buttons { flex-direction: column; }

  .about-teaser-content { padding: 2.5rem 1.5rem; }

  .results-strip { grid-template-columns: 1fr 1fr; }

  .cta-banner-content { padding: 3rem 1.5rem; }

  .transformation-grid,
  .blog-grid { grid-template-columns: 1fr; }

  .filter-bar,
  .blog-categories { flex-wrap: wrap; }

  .contact-content { padding: 0 1.5rem var(--space-lg); }

  .press-grid { grid-template-columns: 1fr; }
}

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

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 3rem) 2rem 4rem;
}

.hero--video .overline {
  color: var(--accent-light);
}

.hero--video .hero-title {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero--video .hero-title em {
  color: var(--accent-light);
}

.hero--video .hero-sub {
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

.hero--video .hero-buttons {
  justify-content: center;
}

.hero--video .btn-fill {
  background: var(--accent);
  color: var(--black);
}

.btn-ghost--light {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}
.btn-ghost--light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

@media (prefers-reduced-motion: reduce) {
  .hero__video {
    display: none;
  }
  .hero--video {
    background: url('../assets/images/hero.jpg') center / cover no-repeat;
  }
}

@media (max-width: 768px) {
  .hero__video {
    display: none;
  }
  .hero--video {
    background: url('../assets/images/hero.jpg') center / cover no-repeat;
    min-height: 90vh;
  }
  .hero__content {
    padding: calc(var(--nav-height) + 2rem) 1.5rem 3rem;
  }
  .hero--video .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* === INSTAGRAM REELS === */
.ig-reels-section {
  padding: var(--space-xl) 0;
}

.ig-reels-section .container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.ig-reels-section .overline {
  display: block;
  text-align: center;
  margin-bottom: 0.5rem;
}

.ig-reels-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

/* CTA link below reels */
.ig-reels-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Reel card grid */
.ig-reels-fallback {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.ig-reel-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.35s var(--ease);
}

.ig-reel-card:hover {
  transform: translateY(-6px);
}

.ig-reel-thumb {
  aspect-ratio: 9 / 16;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.ig-reel-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ig-reel-play {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  transition: all 0.3s var(--ease);
}

.ig-reel-card:hover .ig-reel-play {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
  transform: scale(1.15);
  box-shadow: 0 0 24px rgba(0, 212, 245, 0.4);
}

.ig-reel-caption {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.5;
  margin-top: 0.75rem;
  padding: 0 0.25rem;
}

@media (max-width: 1024px) {
  .ig-reels-fallback {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 1rem;
  }
  .ig-reel-card {
    flex: 0 0 180px;
    scroll-snap-align: start;
  }
}

@media (max-width: 600px) {
  .ig-reel-card {
    flex: 0 0 150px;
  }
  .ig-reels-section {
    padding: var(--space-lg) 0;
  }
}

/* === FUN FACTS V2 === */
.fun-facts-section {
  padding: var(--space-xl) var(--space-md);
  max-width: var(--max-width);
  margin: 0 auto;
}
.fun-facts-section h2 {
  margin-bottom: 2.5rem;
}

.fun-facts-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 1.5rem;
}

.fun-fact-card-v2 {
  position: relative;
  padding: 2.5rem 2rem 2rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(232, 232, 232, 0.8);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.fun-fact-card-v2--tall {
  grid-row: span 2;
}

/* Unique gradient accent strips per card */
.fun-fact-card-v2:nth-child(1) {
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, #00D4F5, #33E0FF) 1;
}
.fun-fact-card-v2:nth-child(2) {
  border-left: 3px solid transparent;
  border-image: linear-gradient(180deg, #00B8D6, #7EEAFC) 1;
}
.fun-fact-card-v2:nth-child(3) {
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, #7EEAFC, #C5F5FF) 1;
}
.fun-fact-card-v2:nth-child(4) {
  border-left: 3px solid transparent;
  border-image: linear-gradient(180deg, #33E0FF, #00D4F5) 1;
}
.fun-fact-card-v2:nth-child(5) {
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, #00B8D6, #33E0FF) 1;
}

/* Decorative number */
.fun-fact-card-v2__number {
  position: absolute;
  top: -0.15rem;
  right: 0.75rem;
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent-tint);
  opacity: 0.35;
  pointer-events: none;
  user-select: none;
}

/* Photo */
.fun-fact-card-v2__photo {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1.25rem;
}
.fun-fact-card-v2--tall .fun-fact-card-v2__photo {
  height: 180px;
}

/* Emoji (legacy) */
.fun-fact-card-v2__emoji {
  display: block;
  font-size: 3.2rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

/* Title */
.fun-fact-card-v2__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 1;
  transition: color 0.3s var(--ease);
}

/* Text */
.fun-fact-card-v2__text {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

/* Hover */
.fun-fact-card-v2:hover {
  transform: scale(1.02);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.06),
    0 2px 12px rgba(0, 0, 0, 0.03),
    0 0 0 1px rgba(0, 212, 245, 0.12);
}
.fun-fact-card-v2:hover .fun-fact-card-v2__title {
  color: var(--accent-dark);
}

/* Fun Facts V2 Responsive */
@media (max-width: 1024px) {
  .fun-facts-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }
  .fun-fact-card-v2--tall {
    grid-row: span 1;
  }
}
@media (max-width: 600px) {
  .fun-facts-grid-v2 {
    grid-template-columns: 1fr;
  }
  .fun-fact-card-v2__number {
    font-size: 4.5rem;
  }
}

/* === MAGAZINE COVER === */
.press-feature__cover {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.press-feature__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.magazine-cover {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #0a1a1f 0%, #0d2b30 30%, #003840 60%, #001a1f 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.5rem 2rem;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.5s var(--ease);
}

/* Subtle shimmer overlay */
.magazine-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(0, 212, 245, 0.04) 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.02) 75%,
    transparent 100%
  );
  pointer-events: none;
  transition: opacity 0.5s var(--ease);
}

/* Inner frame effect */
.magazine-cover::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.magazine-cover:hover {
  box-shadow:
    0 0 60px rgba(0, 212, 245, 0.12),
    0 20px 40px rgba(0, 0, 0, 0.3);
}
.magazine-cover:hover::before {
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(0, 212, 245, 0.08) 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.04) 75%,
    transparent 100%
  );
}

/* Header */
.magazine-cover__header {
  text-align: center;
  position: relative;
  z-index: 1;
}

.magazine-cover__issue {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #d4a853;
  border: 1px solid rgba(212, 168, 83, 0.3);
  padding: 0.3rem 1rem;
  margin-bottom: 1.25rem;
}

.magazine-cover__masthead {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.15em;
  line-height: 1;
  margin-bottom: 0.35rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.magazine-cover__subtitle {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

/* Feature section */
.magazine-cover__feature {
  text-align: center;
  position: relative;
  z-index: 1;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.magazine-cover__tag {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #d4a853;
  margin-bottom: 0.75rem;
}

.magazine-cover__headline {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 600;
  font-style: normal;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

.magazine-cover__subline {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  max-width: 280px;
  margin: 0 auto;
}

/* Magazine Cover Responsive */
@media (max-width: 1024px) {
  .press-feature__cover {
    max-width: 400px;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .magazine-cover {
    padding: 2rem 1.5rem;
  }
  .press-feature__cover {
    max-width: 320px;
  }
}

/* === WORKSHOPS PAGE === */
.workshops-hero {
  padding: calc(var(--nav-height) + 4rem) var(--space-md) var(--space-lg);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.workshops-hero p { margin: 1rem auto 0; }

/* ── Featured Workshop Stack ── */
.ws-stack {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 960px;
  margin: 3rem auto 0;
}

/* ── Workshop Card ── */
.ws-card {
  display: grid;
  grid-template-columns: 2fr 3fr;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}
.ws-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.08),
    0 8px 20px rgba(0, 0, 0, 0.04);
  border-color: transparent;
}

/* Alternate layout — visual on right */
.ws-card--alt {
  grid-template-columns: 3fr 2fr;
}
.ws-card--alt .ws-card__visual {
  order: 2;
}

/* ── Visual Panel ── */
.ws-card__visual {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  background: var(--black);
}

/* Photo */
.ws-card__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}
.ws-card:hover .ws-card__visual img {
  transform: scale(1.06);
}

/* Dark gradient overlay for date badge readability */
.ws-card__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.02) 40%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* ── Date Badge ── */
.ws-card__date-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.6rem 0.9rem;
  text-align: center;
  z-index: 2;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.ws-card:hover .ws-card__date-badge {
  transform: scale(1.06);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.ws-card__month {
  display: block;
  font-family: var(--font-body);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1;
  margin-bottom: 0.15rem;
}

.ws-card__day {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--black);
  line-height: 1;
}

/* ── Content Body ── */
.ws-card__body {
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Meta row */
.ws-card__meta {
  margin-bottom: 0.75rem;
}

/* Badges */
.ws-card__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
}
.ws-card__badge--virtual {
  background: var(--accent-tint);
  color: var(--accent-dark);
}
.ws-card__badge--inperson {
  background: var(--black);
  color: var(--white);
}

/* Title */
.ws-card__title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--black);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

/* Time */
.ws-card__time {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

/* Description */
.ws-card__desc {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.75rem;
}

/* CTA Link */
.ws-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.ws-card__cta:hover {
  gap: 1rem;
  color: var(--accent-dark);
}
.ws-card__cta span {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}
.ws-card__cta:hover span {
  transform: translateX(4px);
}

/* ── More Events Grid ── */
.ws-more-section {
  border-top: 1px solid var(--border);
}

.ws-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--max-width);
  margin: 3rem auto 0;
}

/* Compact Card (grid variant) */
.ws-card--compact {
  grid-template-columns: 1fr;
}
.ws-card--compact .ws-card__visual {
  min-height: 200px;
}
.ws-card--compact .ws-card__body {
  padding: 1.75rem 2rem;
}
.ws-card--compact .ws-card__title {
  font-size: 1.15rem;
}
.ws-card--compact .ws-card__desc {
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

/* Past Workshops */
.past-workshops {
  background: var(--white);
  border-top: 1px solid var(--border);
}

.past-workshops-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.past-workshop {
  padding: 2rem;
  border: 1px solid var(--border);
  transition: border-color var(--duration) var(--ease);
}
.past-workshop:hover {
  border-color: var(--accent);
}

.past-workshop__tag {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.75rem;
}

.past-workshop h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.past-workshop p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ── Workshops Responsive ── */
@media (max-width: 1024px) {
  .ws-card {
    grid-template-columns: 1fr;
  }
  .ws-card--alt {
    grid-template-columns: 1fr;
  }
  .ws-card--alt .ws-card__visual {
    order: 0;
  }
  .ws-card__visual {
    min-height: 240px;
  }
  .ws-card__body {
    padding: 2rem;
  }
  .ws-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 700px;
  }
  .past-workshops-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}
@media (max-width: 600px) {
  .ws-card__body {
    padding: 1.5rem;
  }
  .ws-card__title {
    font-size: 1.2rem;
  }
  .ws-card__visual {
    min-height: 180px;
  }
  .ws-card__icon {
    width: 100px;
    height: 100px;
  }
  .ws-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}
