/* ============================================================
   EPIC Workshops - Shared Design System
   Clean, premium, consistent design for all workshop pages
   ============================================================ */

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

:root {
  /* EPIC Brand Colors */
  --primary: #1B6B5F;
  --primary-dark: #0F4A41;
  --primary-mid: #167A6B;

  /* Accent / Gold */
  --accent: #D4A853;
  --accent-dark: #C09A40;
  --accent-light: #FDF5E6;

  /* Text Colors */
  --text-dark: #1A1A2E;
  --text-body: #4A4A5A;
  --text-muted: #7A7A8A;

  /* Backgrounds */
  --bg-white: #FFFFFF;
  --bg-light: #F8F9FC;
  --bg-soft: #F0F2F8;
  --bg-warm: #FFFBF5;
  --primary-light: #E8F5F2;

  /* UI Elements */
  --border: #E5E7EB;
  --border-light: #F0F0F0;
  --stars: #FBBC04;
  --whatsapp: #25D366;
  --whatsapp-dark: #1EB954;

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Playfair Display', serif;

  /* Font Sizes */
  --font-h1: clamp(28px, 4.5vw, 44px);
  --font-h2: clamp(24px, 3.8vw, 38px);
  --font-h3: clamp(20px, 2.8vw, 28px);
  --font-h4: clamp(16px, 2vw, 22px);
  --font-h5: clamp(15px, 1.6vw, 18px);
  --font-lead: clamp(15px, 1.4vw, 17px);
  --font-body-size: clamp(14px, 1.2vw, 16px);
  --font-small: clamp(13px, 1.1vw, 14px);
  --font-caption: clamp(11px, 1vw, 13px);

  /* Spacing */
  --section-desktop: 20px;
  --section-tablet: 20px;
  --section-mobile: 20px;
  --section-header-mb: 44px;

  /* Header */
  --header-height: 72px;
  --header-height-scrolled: 64px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 50px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
  --shadow-card: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-premium: 0 12px 48px rgba(27,107,95,0.12);

  /* Transitions */
  --transition: all .3s ease;
  --transition-smooth: all .3s cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--bg-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; image-rendering: auto; }

/* Prevent image stretching */
img[data-cover], .gallery__image, .hero__image-main, .hero__tile-image, .hero__image-small, .hero__image-accent, .intro__image, .showcase__image-item img, .grid-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   WORKSHOP THEME STYLING
   Subtle theme-specific variations while maintaining EPIC brand
   ============================================================ */

/* --- Acrylic Pour Bear Theme --- */
body.theme-acrylic-pour-bear {
  --workshop-accent: #14B8A6;
  --workshop-accent-soft: #CCFBF1;
  --workshop-secondary: #F472B6;
  --workshop-pattern: linear-gradient(135deg, rgba(20,184,166,0.03) 0%, rgba(244,114,182,0.03) 100%);
}

.theme-acrylic-pour-bear .section-label::before {
  background: linear-gradient(90deg, var(--workshop-accent), var(--workshop-secondary));
}

.theme-acrylic-pour-bear .hero__badge {
  background: linear-gradient(135deg, rgba(20,184,166,0.15), rgba(244,114,182,0.15));
  border-color: rgba(20,184,166,0.3);
}

.theme-acrylic-pour-bear .card__icon-inner {
  background: linear-gradient(135deg, var(--workshop-accent-soft), rgba(244,114,182,0.1));
}

/* --- Moss Frame Theme --- */
body.theme-moss-frame {
  --workshop-accent: #5D8A4A;
  --workshop-accent-soft: #E8F5E9;
  --workshop-secondary: #8D9E6E;
  --workshop-pattern: linear-gradient(135deg, rgba(93,138,74,0.02) 0%, rgba(141,158,110,0.02) 100%);
}

.theme-moss-frame .section-label::before {
  background: linear-gradient(90deg, var(--workshop-accent), var(--workshop-secondary));
}

.theme-moss-frame .hero__badge {
  background: linear-gradient(135deg, rgba(93,138,74,0.12), rgba(141,158,110,0.08));
  border-color: rgba(93,138,74,0.25);
}

.theme-moss-frame .card {
  border-radius: 20px;
}

.theme-moss-frame .card__icon-inner {
  background: linear-gradient(135deg, var(--workshop-accent-soft), rgba(141,158,110,0.1));
  border-radius: 16px;
}

/* --- Candle Making Theme --- */
body.theme-candle-making {
  --workshop-accent: #D97706;
  --workshop-accent-soft: #FEF3E7;
  --workshop-secondary: #F59E0B;
  --workshop-pattern: linear-gradient(135deg, rgba(217,119,6,0.02) 0%, rgba(245,158,11,0.02) 100%);
}

.theme-candle-making .section-label::before {
  background: linear-gradient(90deg, var(--workshop-accent), var(--workshop-secondary));
}

.theme-candle-making .hero__badge {
  background: linear-gradient(135deg, rgba(217,119,6,0.12), rgba(245,158,11,0.08));
  border-color: rgba(217,119,6,0.25);
}

.theme-candle-making .btn--accent {
  background: linear-gradient(135deg, var(--workshop-accent), var(--workshop-secondary));
}

.theme-candle-making .card__icon-inner {
  background: linear-gradient(135deg, var(--workshop-accent-soft), rgba(245,158,11,0.1));
}

/* --- Art Jamming Theme --- */
body.theme-art-jamming {
  --workshop-accent: #7B68EE;
  --workshop-accent-soft: #F0EBFF;
  --workshop-secondary: #A78BFA;
  --workshop-pattern: linear-gradient(135deg, rgba(123,104,238,0.02) 0%, rgba(167,139,250,0.02) 100%);
}

.theme-art-jamming .section-label::before {
  background: linear-gradient(90deg, var(--workshop-accent), var(--workshop-secondary));
}

.theme-art-jamming .hero__badge {
  background: linear-gradient(135deg, rgba(123,104,238,0.12), rgba(167,139,250,0.08));
  border-color: rgba(123,104,238,0.25);
}

.theme-art-jamming .section-label {
  position: relative;
}

.theme-art-jamming .section-label::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 32px;
  width: 40px;
  height: 2px;
  background: var(--workshop-accent);
  opacity: 0.4;
}

.theme-art-jamming .card__icon-inner {
  background: linear-gradient(135deg, var(--workshop-accent-soft), rgba(167,139,250,0.1));
}

/* --- Marble Coaster Theme --- */
body.theme-marble-coaster {
  --workshop-accent: #6B7B8C;
  --workshop-accent-soft: #F0F2F5;
  --workshop-secondary: #9CA3AF;
  --workshop-pattern: linear-gradient(135deg, rgba(107,123,140,0.02) 0%, rgba(156,163,175,0.02) 100%);
}

.theme-marble-coaster .section-label::before {
  background: linear-gradient(90deg, var(--workshop-accent), var(--workshop-secondary));
}

.theme-marble-coaster .hero__badge {
  background: linear-gradient(135deg, rgba(107,123,140,0.12), rgba(156,163,175,0.08));
  border-color: rgba(107,123,140,0.25);
}

.theme-marble-coaster .card {
  border-radius: 8px;
  border: 1px solid var(--border);
}

.theme-marble-coaster .card__icon-inner {
  background: linear-gradient(135deg, var(--workshop-accent-soft), rgba(156,163,175,0.1));
  border-radius: 8px;
}

/* --- Gemstone Soap Theme --- */
body.theme-gemstone-soap {
  --workshop-accent: #9B59B6;
  --workshop-accent-soft: #F5EEF8;
  --workshop-secondary: #C084FC;
  --workshop-pattern: linear-gradient(135deg, rgba(155,89,182,0.02) 0%, rgba(192,132,252,0.02) 100%);
}

.theme-gemstone-soap .section-label::before {
  background: linear-gradient(90deg, var(--workshop-accent), var(--workshop-secondary));
}

.theme-gemstone-soap .hero__badge {
  background: linear-gradient(135deg, rgba(155,89,182,0.12), rgba(192,132,252,0.08));
  border-color: rgba(155,89,182,0.25);
}

.theme-gemstone-soap .card {
  position: relative;
}

.theme-gemstone-soap .card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--workshop-accent) 0%, transparent 70%);
  opacity: 0.1;
  border-radius: 0 var(--radius-xl) 0 0;
}

.theme-gemstone-soap .card__icon-inner {
  background: linear-gradient(135deg, var(--workshop-accent-soft), rgba(192,132,252,0.1));
}

/* --- Theme Pattern Backgrounds --- */
.theme-acrylic-pour-bear .intro,
.theme-acrylic-pour-bear .benefits {
  background: var(--workshop-pattern);
}

.theme-moss-frame .intro,
.theme-moss-frame .benefits {
  background: var(--workshop-pattern);
}

.theme-candle-making .intro,
.theme-candle-making .benefits {
  background: var(--workshop-pattern);
}

.theme-art-jamming .intro,
.theme-art-jamming .benefits {
  background: var(--workshop-pattern);
}

.theme-marble-coaster .intro,
.theme-marble-coaster .benefits {
  background: var(--workshop-pattern);
}

.theme-gemstone-soap .intro,
.theme-gemstone-soap .benefits {
  background: var(--workshop-pattern);
}
}

ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }

/* --- Container --- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 768px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}

/* --- Section --- */
.section {
  padding-top: var(--section-mobile);
  padding-bottom: var(--section-mobile);
}

@media (min-width: 768px) {
  .section {
    padding-top: var(--section-tablet);
    padding-bottom: var(--section-tablet);
  }
}

@media (min-width: 1024px) {
  .section {
    padding-top: var(--section-desktop);
    padding-bottom: var(--section-desktop);
  }
}

/* --- Section Header --- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--section-header-mb);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--font-caption);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.section-label--light { color: var(--accent); }
.section-label--light::before { background: var(--accent); }

.section-title {
  font-family: var(--font-heading);
  font-size: var(--font-h2);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  letter-spacing: 0;
  margin-bottom: 12px;
}

.section-title--light { color: #fff; }

.section-subtitle {
  font-size: var(--font-body-size);
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Card --- */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
}

.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(27,107,95,.3);
}
.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn--accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(212,168,83,.35);
}
.btn--accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn--outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
}
.btn--whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
}

.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--lg { padding: 16px 36px; font-size: 16px; }

/* ============================
   HEADER
   ============================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.header--scrolled {
  box-shadow: var(--shadow-sm);
}

.header__top-bar {
  background: var(--primary-dark);
  padding: 8px 0;
  font-size: 13px;
  color: #fff;
}

.header__top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__top-left { display: flex; gap: 24px; flex-wrap: wrap; }

.header__social {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
}

.header__social a {
  color: rgba(255,255,255,.9);
  font-weight: 600;
}

.header__social a:hover {
  color: #fff;
}

.header__top-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.9);
  font-size: 12px;
}
.header__top-link:hover { color: #fff; }
.header__top-link svg { width: 14px; height: 14px; }

.header__main-bar {
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.header__main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.header__logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.header__nav {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.header__nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}
.header__nav-link:hover { color: var(--primary); }

.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.header__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-dark);
  transition: var(--transition);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-nav--open { opacity: 1; pointer-events: all; }

.mobile-nav__panel {
  position: absolute;
  top: 0; right: 0;
  width: 280px; height: 100%;
  background: #fff;
  padding: 24px;
  transform: translateX(100%);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav--open .mobile-nav__panel { transform: translateX(0); }

.mobile-nav__close {
  align-self: flex-end;
  padding: 8px;
  margin-bottom: 16px;
}
.mobile-nav__close svg { width: 24px; height: 24px; }

.mobile-nav__link {
  display: block;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
}
.mobile-nav__link:hover { color: var(--primary); }

/* ============================
   HERO SECTION
   ============================ */
.hero {
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: var(--section-desktop);
  background: var(--bg-warm);
  position: relative;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.hero__content {
  display: flex;
  flex-direction: column;
}

.hero__badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-light), rgba(212,168,83,0.2));
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  border: 1px solid rgba(27,107,95,0.25);
  align-self: flex-start;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: var(--font-h1);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.hero__title-accent { color: var(--primary); }

.hero__desc {
  font-size: var(--font-lead);
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__trust-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.hero__trust-icon svg { width: 20px; height: 20px; }

.hero__trust-value {
  display: block;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-dark);
}

.hero__trust-label {
  font-size: 12px;
  color: var(--text-muted);
}

/* Hero Image */
.hero__image-col {
  position: relative;
}

.hero__image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  background: #fff;
}

.hero__image-main {
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: cover;
  display: block;
}

.hero__rating-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
}

.hero__rating-stars {
  color: var(--stars);
  font-size: 16px;
  letter-spacing: 1px;
}

.hero__rating-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

/* === Gemstone Soap - Jewel Layout === */
.hero__image-wrapper--jewel {
  background: linear-gradient(135deg, #F5EEF8 0%, #E8DFF2 100%);
  padding: 16px;
  border-radius: 24px;
  position: relative;
}

.hero__jewel-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

.hero__jewel-main {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.hero__jewel-main img {
  border-radius: 20px 8px 20px 8px;
  box-shadow: 0 8px 32px rgba(155,89,182,0.2);
}

.hero__jewel-small {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.hero__jewel-small img {
  border-radius: 8px 20px 8px 20px;
  transform: rotate(2deg);
  box-shadow: 0 4px 16px rgba(155,89,182,0.15);
  max-height: 200px;
  width: 100%;
  object-fit: cover;
}

.hero__jewel-accent {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.hero__jewel-accent img {
  border-radius: 12px;
  transform: rotate(-1deg);
  box-shadow: 0 6px 20px rgba(155,89,182,0.18);
  max-height: 180px;
  width: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero__jewel-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .hero__jewel-main {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .hero__jewel-small,
  .hero__jewel-accent {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .hero__jewel-small img,
  .hero__jewel-accent img {
    transform: none;
    max-height: 250px;
  }
}

/* === Marble Coaster - Stone/Tile Layout === */
.hero__image-wrapper--stone {
  background: linear-gradient(135deg, #F0F2F5 0%, #E5E7EB 100%);
  padding: 20px;
  border-radius: 12px;
}

.hero__tile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 160px;
  gap: 12px;
}

.hero__tile {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.hero__tile--primary {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.hero__tile--primary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__tile--secondary {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.hero__tile--tertiary {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.hero__tile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__tile--accent {
  background: linear-gradient(135deg, var(--workshop-accent, #6B7B8C) 0%, var(--workshop-secondary, #9CA3AF) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.hero__tile-content {
  text-align: center;
  color: #fff;
}

.hero__tile-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero__tile-rating .hero__rating-stars {
  font-size: 18px;
  letter-spacing: 2px;
}

.hero__tile-rating .hero__rating-text {
  font-size: 14px;
  opacity: 0.95;
}

@media (max-width: 768px) {
  .hero__tile-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
  }

  .hero__tile--primary,
  .hero__tile--secondary,
  .hero__tile--tertiary,
  .hero__tile--accent {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .hero__tile--primary {
    grid-row: 1 / 2;
  }

  .hero__tile--secondary {
    grid-row: 2 / 3;
  }

  .hero__tile--tertiary {
    grid-row: 3 / 4;
  }

  .hero__tile--accent {
    grid-row: 4 / 5;
    min-height: 120px;
  }
}

/* ============================
   HERO VARIANTS
   ============================ */
.hero--warm-editorial,
.hero--stone-product,
.hero--jewel-mosaic {
  overflow: hidden;
}

.hero--warm-editorial {
  padding-top: calc(var(--header-height) + 34px);
  padding-bottom: 32px;
  background:
    radial-gradient(circle at 10% 18%, rgba(217,119,6,0.13), transparent 26%),
    radial-gradient(circle at 88% 20%, rgba(27,107,95,0.12), transparent 28%),
    linear-gradient(120deg, #fff8ed 0%, #fef3e7 42%, #ffffff 42%, #ffffff 100%);
}

.hero--warm-editorial .container {
  max-width: 1280px;
  padding-left: 12px;
  padding-right: 12px;
}

.hero-candle-editorial {
  isolation: isolate;
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-areas: none;
  min-height: clamp(500px, calc(100svh - 168px), 590px);
  padding: 0;
  border: 1px solid rgba(27,107,95,0.1);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255,251,245,0.95));
  box-shadow: 0 30px 80px rgba(27,107,95,0.16);
  overflow: hidden;
}

.hero-candle-editorial::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(27,107,95,0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(217,119,6,0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.55;
}

.hero-candle-editorial::after {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  height: 7px;
  background: linear-gradient(90deg, var(--primary), var(--workshop-accent, #D97706), var(--accent));
  pointer-events: none;
}

.hero-candle-editorial__copy {
  grid-area: copy;
  grid-column: 1 / 6;
  grid-row: 1;
  max-width: none;
  margin: 0;
  padding: clamp(36px, 4.3vw, 62px);
  border-radius: 34px 28px 28px 34px;
  background:
    radial-gradient(circle at 16% 18%, rgba(255,255,255,0.16), transparent 24%),
    linear-gradient(145deg, var(--primary-dark), var(--primary));
  box-shadow: 0 24px 56px rgba(15,74,65,0.26);
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-candle-editorial__copy::after {
  content: '';
  position: absolute;
  right: -72px;
  bottom: -82px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 38px solid rgba(255,255,255,0.08);
  pointer-events: none;
}

.hero-candle-editorial__copy .hero__badge {
  width: fit-content;
  margin-bottom: 20px;
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.13);
  color: #fff7ec;
}

.hero-candle-editorial__copy .hero__title {
  max-width: 16ch;
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
  margin-bottom: 22px;
}

.hero-candle-editorial__copy .hero__title span {
  position: relative;
  z-index: 0;
  display: inline-block;
  color: #F9B44E;
}

.hero-candle-editorial__copy .hero__title-line {
  display: block;
  color: #fff;
}

.hero-candle-editorial__copy .hero__actions {
  margin-bottom: 0;
}

.hero-candle-editorial__copy .hero__desc {
  max-width: 31rem;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.86);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.62;
}

.hero-candle-editorial__copy .btn--primary {
  background: #fff;
  color: var(--primary-dark);
  box-shadow: 0 12px 28px rgba(0,0,0,0.16);
}

.hero-candle-editorial__copy .btn--primary:hover {
  background: var(--workshop-accent, #D97706);
  color: #fff;
}

.hero-candle-editorial__process {
  grid-area: process;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  max-width: 560px;
  padding: 12px;
  border: 1px solid rgba(217,119,6,0.18);
  border-radius: 18px;
  background: rgba(255,255,255,0.78);
  box-shadow: 0 12px 36px rgba(217,119,6,0.08);
  justify-self: end;
  width: 100%;
}

.hero-candle-editorial__process span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 10px;
  border-radius: 12px;
  background: #fffaf3;
  color: #7c4a08;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.hero-candle-editorial__visual {
  grid-area: visual;
  grid-column: 5 / 13;
  grid-row: 1;
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-height: 100%;
  border-radius: 0;
  overflow: hidden;
  border: 0;
  background: var(--workshop-accent-soft, #FEF3E7);
  box-shadow: none;
}

.hero-candle-editorial__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15,74,65,0.38) 0%, rgba(15,74,65,0.12) 28%, rgba(15,74,65,0) 56%),
    linear-gradient(180deg, rgba(0,0,0,0.04), rgba(15,74,65,0.2));
  pointer-events: none;
}

.hero-candle-editorial__image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  image-rendering: auto;
  border-radius: 0;
  box-shadow: none;
}

.hero-quote-card {
  grid-area: quote;
  grid-column: 9 / 13;
  grid-row: 1;
  position: relative;
  z-index: 4;
  overflow: hidden;
  align-self: stretch;
  justify-self: end;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 390px;
  margin: clamp(18px, 1.8vw, 24px) clamp(18px, 1.8vw, 24px) clamp(18px, 1.8vw, 24px) 0;
  padding: clamp(26px, 2.8vw, 36px);
  border: 1px solid rgba(217,119,6,0.18);
  border-radius: 24px;
  background: linear-gradient(180deg, #fff 0%, #fffbf5 100%);
  box-shadow: 0 20px 52px rgba(15,74,65,0.18);
}

.hero-quote-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--workshop-accent, #D97706));
}

.hero-quote-card__header {
  text-align: center;
  margin-bottom: 22px;
}

.hero-quote-card__header h2 {
  font-family: var(--font-heading);
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  text-transform: none;
  letter-spacing: 0;
}

.hero-quote-card__header p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.5;
}

.hero-quote-form {
  display: grid;
  gap: 12px;
}

.hq-field {
  position: relative;
}

.hq-input,
.hq-textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  background: #fff;
  border: 1.5px solid rgba(27,107,95,0.12);
  border-radius: 12px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.hq-input::placeholder,
.hq-textarea::placeholder {
  color: rgba(27,107,95,0.35);
}

.hq-input:focus,
.hq-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27,107,95,0.08);
}

.hq-textarea {
  min-height: 88px;
  resize: vertical;
}

.hq-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--workshop-accent, #D97706), var(--workshop-secondary, #F59E0B));
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 4px 16px rgba(217,119,6,0.3);
}

.hq-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217,119,6,0.35);
}

.hero-candle-editorial__note {
  position: absolute;
  right: -24px;
  bottom: 28px;
  width: min(300px, calc(100% - 36px));
  padding: 18px 20px;
  border: 1px solid rgba(217,119,6,0.18);
  border-radius: 18px;
  background: rgba(255,255,255,0.96);
  box-shadow: var(--shadow-md);
}

.hero-candle-editorial__note strong,
.hero-candle-editorial__note span {
  display: block;
}

.hero-candle-editorial__note strong {
  color: var(--text-dark);
  font-size: 15px;
  margin-bottom: 4px;
}

.hero-candle-editorial__note span {
  color: var(--text-body);
  font-size: 13px;
  line-height: 1.55;
}

.hero--stone-product {
  background: linear-gradient(180deg, #fafafa 0%, #f2f4f4 100%);
}

.hero-marble-product {
  display: block;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-marble-product__copy {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.hero-marble-product__copy .hero__badge {
  align-self: center;
}

.hero-marble-product__copy .hero__desc {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-marble-product__copy .hero__actions {
  justify-content: center;
  margin-bottom: 18px;
}

.hero-marble-product__rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid rgba(107,123,140,0.2);
  border-radius: 999px;
  background: #fff;
  color: var(--text-dark);
  font-size: 13px;
}

.hero-marble-product__rating span {
  color: var(--stars);
  letter-spacing: 1px;
}

.hero-marble-product__showcase {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr;
  grid-template-rows: 210px 210px;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(107,123,140,0.22);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(38,54,64,0.12);
}

.hero-marble-product__tile {
  overflow: hidden;
  border-radius: 8px;
  background: #eef1f0;
}

.hero-marble-product__tile--large {
  grid-row: 1 / 3;
}

.hero-marble-product__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
}

.hero-marble-product__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 28px;
  border: 1px solid rgba(107,123,140,0.18);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(107,123,140,0.18);
}

.hero-marble-product__stats span {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 7px;
  min-height: 58px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.86);
  color: var(--text-muted);
  font-size: 13px;
  text-align: center;
}

.hero-marble-product__stats strong {
  color: var(--primary-dark);
  font-size: 18px;
}

.hero--jewel-mosaic {
  background:
    linear-gradient(135deg, #f6fffc 0%, #ffffff 45%, #fff6fb 100%);
}

.hero-gemstone-mosaic {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 52px;
  align-items: center;
}

.hero-gemstone-mosaic__badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: -12px;
}

.hero-gemstone-mosaic__badge-row span {
  padding: 9px 13px;
  border: 1px solid rgba(155,89,182,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  color: #5c3d73;
  font-size: 13px;
  font-weight: 700;
}

.hero-gemstone-mosaic__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  grid-template-rows: 210px 210px;
  gap: 14px;
  padding: 16px;
  border-radius: 28px 12px 28px 12px;
  background: linear-gradient(135deg, rgba(25,135,111,0.12), rgba(155,89,182,0.14));
  box-shadow: 0 20px 58px rgba(78,52,99,0.14);
}

.hero-gemstone-mosaic__facet {
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 26px rgba(78,52,99,0.12);
}

.hero-gemstone-mosaic__facet--main {
  grid-row: 1 / 3;
  border-radius: 24px 8px 24px 8px;
}

.hero-gemstone-mosaic__facet--top {
  border-radius: 8px 24px 8px 18px;
}

.hero-gemstone-mosaic__facet--bottom {
  border-radius: 18px 8px 24px 8px;
}

.hero-gemstone-mosaic__facet img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
}

.hero-gemstone-mosaic__rating {
  position: absolute;
  left: 28px;
  bottom: 28px;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 16px;
  border: 1px solid rgba(155,89,182,0.16);
  border-radius: 16px;
  background: rgba(255,255,255,0.96);
  box-shadow: var(--shadow-md);
}

.hero-gemstone-mosaic__rating span {
  color: var(--stars);
  font-size: 14px;
  letter-spacing: 1px;
}

.hero-gemstone-mosaic__rating strong {
  color: var(--text-dark);
  font-size: 13px;
}

@media (max-width: 1120px) {
  .hero-candle-editorial {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    min-height: 0;
    padding: 20px;
    gap: 20px;
  }

  .hero-candle-editorial__copy {
    grid-column: 1 / 2;
    grid-row: 1;
    margin: 0;
    min-height: 0;
  }

  .hero-quote-card {
    grid-column: 2 / 3;
    grid-row: 1;
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .hero-candle-editorial__visual {
    grid-column: 1 / -1;
    grid-row: 2;
    min-height: 0;
    border-radius: 28px;
  }

  .hero-candle-editorial__image {
    border-radius: 28px;
  }

  .hero-candle-editorial__visual,
  .hero-candle-editorial__copy {
    min-height: 0;
  }

  .hero-candle-editorial__image {
    min-height: 340px;
    max-height: 420px;
  }
}

@media (max-width: 900px) {
  .hero-candle-editorial,
  .hero-gemstone-mosaic {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-candle-editorial__copy {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-quote-card {
    grid-column: 1;
    grid-row: 2;
  }

  .hero-candle-editorial__visual {
    grid-column: 1;
    grid-row: 3;
  }

  .hero-candle-editorial__copy,
  .hero-gemstone-mosaic__copy {
    max-width: 720px;
    justify-self: start;
  }

  .hero-candle-editorial__process,
  .hero-quote-card {
    justify-self: start;
  }

  .hero-quote-card {
    width: 100%;
    max-width: none;
    margin: 0;
  }
}

@media (max-width: 768px) {
  .hero--warm-editorial,
  .hero--stone-product,
  .hero--jewel-mosaic {
    padding-top: calc(var(--header-height) + 24px);
    padding-bottom: 42px;
  }

  .hero-candle-editorial__visual {
    min-height: 0;
  }

  .hero-candle-editorial__copy .hero__title {
    font-size: clamp(24px, 5.5vw, 34px);
  }

  .hero-candle-editorial__image {
    min-height: 300px;
    height: 320px;
  }

  .hero-candle-editorial__note {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .hero-marble-product__showcase {
    grid-template-rows: 180px 180px;
  }

  .hero-marble-product__stats {
    grid-template-columns: 1fr;
  }

  .hero-gemstone-mosaic__grid {
    grid-template-rows: 180px 180px;
  }
}

@media (max-width: 480px) {
  .hero-candle-editorial {
    padding: 14px;
    border-radius: 24px;
  }

  .hero-candle-editorial__copy {
    padding: 26px 22px;
    border-radius: 22px;
  }

  .hero-quote-card {
    padding: 20px;
    border-radius: 20px;
  }

  .hero-candle-editorial__copy .hero__title {
    font-size: clamp(24px, 8vw, 34px);
  }

  .hero-candle-editorial__process {
    grid-template-columns: 1fr 1fr;
  }

  .hero-candle-editorial__image {
    min-height: 260px;
    height: 280px;
    border-radius: 20px;
  }

  .hero-marble-product__showcase,
  .hero-gemstone-mosaic__grid {
    grid-template-columns: 1fr;
    grid-template-rows: 240px 180px 180px;
    padding: 10px;
  }

  .hero-marble-product__tile--large,
  .hero-gemstone-mosaic__facet--main {
    grid-row: auto;
  }

  .hero-gemstone-mosaic__rating {
    position: static;
    margin-top: 10px;
  }
}

/* ============================
   QUICK ENQUIRY
   ============================ */
.quick-enquiry {
  padding-top: clamp(52px, 6vw, 78px);
  padding-bottom: clamp(56px, 7vw, 86px);
  background:
    radial-gradient(circle at 15% 12%, rgba(217,119,6,0.08), transparent 34%),
    linear-gradient(180deg, var(--bg-warm) 0%, #fff 68%);
}

.quick-enquiry__header {
  max-width: 720px;
  margin-bottom: 36px;
}

.quick-enquiry .section-label {
  justify-content: center;
  color: var(--primary);
}

.quick-enquiry .section-label::after {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.quick-enquiry .green {
  color: var(--primary);
}

.quick-enquiry__desc {
  max-width: 640px;
  margin: 0 auto;
}

.mid-enquiry-card {
  position: relative;
  max-width: 1020px;
  margin: 0 auto;
  padding: clamp(24px, 3.2vw, 36px);
  overflow: hidden;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(27,107,95,0.12);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(27,107,95,0.1);
}

.mid-enquiry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--workshop-accent, #D97706));
}

.mid-enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mid-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mid-form-group {
  min-width: 0;
}

.mid-form-group--full {
  grid-column: 1 / -1;
}

.mid-form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  line-height: 1.4;
  text-transform: uppercase;
}

.mid-form-group input,
.mid-form-group textarea {
  width: 100%;
  border: 1px solid rgba(27,107,95,0.18);
  border-radius: 14px;
  background: #fff;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 15px 16px;
  transition: var(--transition-smooth);
}

.mid-form-group textarea {
  min-height: 132px;
  resize: vertical;
}

.mid-form-group input::placeholder,
.mid-form-group textarea::placeholder {
  color: #9AA5B5;
}

.mid-form-group input:focus,
.mid-form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(27,107,95,0.1);
}

.input--error {
  border-color: #DC2626 !important;
  box-shadow: 0 0 0 4px rgba(220,38,38,0.1) !important;
}

.mid-form-submit {
  align-self: flex-start;
  min-width: 220px;
  margin-top: 2px;
  padding: 15px 28px;
  border: 0;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 12px 26px rgba(27,107,95,0.25);
  color: #fff;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 800;
  transition: var(--transition-smooth);
}

.mid-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(27,107,95,0.28);
}

.mid-form-submit:focus-visible {
  outline: 2px solid var(--workshop-accent, #D97706);
  outline-offset: 3px;
}

.mid-form-submit[disabled] {
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
}

.mid-form-success {
  display: none;
  max-width: 520px;
  margin: 0 auto;
  padding: 24px;
  text-align: center;
}

.mid-form-success--visible {
  display: block;
}

.mid-form-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 22px;
  font-weight: 900;
}

.mid-form-success h4 {
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.mid-form-success p {
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .mid-form-row {
    grid-template-columns: 1fr;
  }

  .mid-form-submit {
    width: 100%;
  }
}

/* ============================
   CLIENT ORGANIZATIONS
   ============================ */
.org-section {
  padding-top: clamp(54px, 6vw, 76px);
  padding-bottom: clamp(56px, 7vw, 84px);
  background:
    linear-gradient(180deg, #fff 0%, var(--bg-light) 100%);
}

.org-section__header {
  max-width: 760px;
  margin-bottom: 30px;
}

.org-section .section-label {
  justify-content: center;
  color: var(--primary);
}

.org-section .section-label::after {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.org-section .green {
  color: var(--primary);
}

.org-section__desc {
  max-width: 700px;
  margin: 0 auto;
}

.org-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 860px;
  margin: 0 auto 28px;
}

.org-stat {
  min-height: 108px;
  padding: 22px 18px;
  border: 1px solid rgba(27,107,95,0.14);
  border-radius: 18px;
  background: #fff;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.org-stat strong,
.org-stat span {
  display: block;
}

.org-stat strong {
  color: var(--workshop-accent, #D97706);
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.05;
  margin-bottom: 8px;
}

.org-stat span {
  color: var(--text-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.logo-grid {
  max-width: 1020px;
  margin: 0 auto;
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid rgba(217,119,6,0.14);
  border-radius: 24px;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 20px 54px rgba(27,107,95,0.09);
}

.logo-grid img {
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: contain;
  filter: saturate(0.95);
}

@media (max-width: 768px) {
  .org-stats {
    grid-template-columns: 1fr;
  }

  .org-stat {
    min-height: auto;
  }

  .logo-grid {
    border-radius: 18px;
    padding: 14px;
  }
}

/* ============================
   INTRO / ABOUT SECTION
   ============================ */
.intro {
  padding: var(--section-desktop) 0;
  background: var(--bg-light);
}

.intro__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

@media (min-width: 768px) {
  .intro__grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
  }
}

.intro__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.intro__title {
  font-family: var(--font-heading);
  font-size: var(--font-h3);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.25;
}

.intro__text {
  font-size: var(--font-body-size);
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 16px;
}

.intro__image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.intro__image {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* ============================
   WORKSHOP DETAILS
   ============================ */
.details {
  padding: var(--section-desktop) 0;
  background: var(--bg-light);
}

.details__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

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

.details--candle {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(217,119,6,0.09), transparent 30%),
    linear-gradient(180deg, var(--bg-light) 0%, #fff 100%);
}

.details--candle .section-header {
  max-width: 760px;
}

.details__grid--candle {
  grid-template-columns: 1fr;
  gap: 18px;
}

.details-card {
  position: relative;
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(24px, 2.8vw, 32px);
  border: 1px solid rgba(27,107,95,0.12);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.98) 0%, rgba(255,251,245,0.92) 100%);
  box-shadow: 0 18px 44px rgba(27,107,95,0.08);
  transition: var(--transition-smooth);
}

.details-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--workshop-accent, #D97706));
}

.details-card::after {
  content: '';
  position: absolute;
  right: -42px;
  bottom: -44px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(217,119,6,0.08);
  pointer-events: none;
}

.details-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217,119,6,0.28);
  box-shadow: 0 24px 54px rgba(27,107,95,0.13);
}

.details-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.details-card__number {
  color: rgba(217,119,6,0.18);
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 700;
  line-height: 0.85;
}

.details-card__icon {
  display: inline-flex;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(27,107,95,0.16);
  border-radius: 18px;
  background: var(--primary-light);
  color: var(--primary);
}

.details-card__icon svg {
  width: 28px;
  height: 28px;
}

.details-card__title,
.details-card__text {
  position: relative;
  z-index: 1;
}

.details-card__title {
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 12px;
}

.details-card__text {
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.7;
}

@media (min-width: 720px) {
  .details__grid--candle {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (min-width: 1120px) {
  .details__grid--candle {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .details__grid--candle .details-card {
    grid-column: span 2;
  }

  .details__grid--candle .details-card:nth-child(n+4) {
    grid-column: span 3;
  }
}

@media (max-width: 640px) {
  .details-card {
    min-height: 0;
  }

  .details-card__top {
    margin-bottom: 22px;
  }
}

.card__icon {
  margin-bottom: 16px;
}

.card__icon-inner {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.card__icon-inner svg { width: 22px; height: 22px; }

.card__title {
  font-family: var(--font-heading);
  font-size: var(--font-h5);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.card__text {
  font-size: var(--font-small);
  color: var(--text-body);
  line-height: 1.7;
}

.card__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.card__list li {
  position: relative;
  padding-left: 18px;
  font-size: var(--font-small);
  color: var(--text-body);
  line-height: 1.5;
}

.card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ============================
   BENEFITS
   ============================ */
.benefits {
  padding: var(--section-desktop) 0;
  background: var(--bg-white);
}

.benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

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

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

.benefit-card__icon {
  margin-bottom: 16px;
}

.benefit-card__icon-inner {
  width: 48px; height: 48px;
  border-radius: var(--radius-lg);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.benefit-card__icon-inner svg { width: 24px; height: 24px; }

.benefit-card__title {
  font-family: var(--font-heading);
  font-size: var(--font-h4);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.benefit-card__text {
  font-size: var(--font-small);
  color: var(--text-body);
  line-height: 1.7;
}

.benefit-card {
  min-height: 220px;
  padding: 22px;
}

.benefits .section-header {
  max-width: 560px;
  margin-bottom: 32px;
}

.benefits--candle {
  overflow: hidden;
  padding: 48px 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(217,119,6,0.1), transparent 28%),
    linear-gradient(180deg, #fff 0%, var(--bg-warm) 100%);
}

.benefits--candle .section-header {
  max-width: 720px;
  margin-bottom: 20px;
}

.benefits__feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 2.5vw, 32px);
  align-items: center;
}

.benefits__media {
  position: relative;
  min-height: 320px;
}

.benefits__image {
  overflow: hidden;
  border: 6px solid #fff;
  background: #fff;
  box-shadow: 0 14px 36px rgba(27,107,95,0.10);
}

.benefits__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
}

.benefits__image--large {
  width: 70%;
  height: 290px;
  border-radius: 20px;
}

.benefits__image--small {
  position: absolute;
  right: 0;
  width: 40%;
  height: 130px;
  border-radius: 16px;
}

.benefits__image--top {
  top: 16px;
}

.benefits__image--bottom {
  bottom: 16px;
}

.benefits--candle .benefits__grid--candle {
  max-width: none;
  margin: 0;
  grid-template-columns: 1fr;
  gap: 12px;
}

.benefits--candle .benefit-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  padding: 18px 18px 18px 56px;
  border: 1px solid rgba(27,107,95,0.10);
  border-radius: 14px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 6px 18px rgba(27,107,95,0.05);
  transition: var(--transition-smooth);
}

.benefits--candle .benefit-card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--primary), var(--workshop-accent, #D97706));
}

.benefits--candle .benefit-card:hover {
  transform: translateX(4px);
  border-color: rgba(217,119,6,0.28);
  box-shadow: 0 20px 42px rgba(27,107,95,0.12);
}

.benefits--candle .benefit-card__number {
  position: absolute;
  left: 16px;
  top: 16px;
  color: var(--workshop-accent, #D97706);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  opacity: 0.22;
}

.benefits--candle .benefit-card__icon {
  display: none;
}

.benefits--candle .benefit-card__icon-inner {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(27,107,95,0.14);
  border-radius: 16px;
  background: var(--primary-light);
  color: var(--primary);
}

.benefits--candle .benefit-card__title {
  position: relative;
  color: var(--text-dark);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.22;
  margin-bottom: 6px;
}

.benefits--candle .benefit-card__text {
  position: relative;
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.6;
}

@media (min-width: 980px) {
  .benefits__feature {
    grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  }
}

@media (min-width: 1180px) {
  .benefits--candle .benefits__grid--candle {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefits--candle .benefit-card {
    padding: 18px 18px 18px 56px;
  }
}

@media (max-width: 720px) {
  .benefits--candle {
    padding: 36px 0;
  }

  .benefits__media {
    min-height: 280px;
  }

  .benefits__image--large {
    width: 82%;
    height: 240px;
  }

  .benefits__image--small {
    width: 42%;
    height: 105px;
  }

  .benefits__image--top {
    top: 12px;
  }

  .benefits__image--bottom {
    bottom: 16px;
  }
}

@media (max-width: 520px) {
  .benefits--candle {
    padding: 28px 0;
  }

  .benefits__media {
    min-height: 0;
  }

  .benefits__image--large,
  .benefits__image--small,
  .benefits__image--large,
  .benefits__image--small {
    height: 180px;
    margin-bottom: 10px;
    border-radius: 16px;
  }

  .benefits__image--small {
    display: none;
  }

  .benefits--candle .benefit-card {
    padding: 16px 16px 16px 48px;
  }

  .benefits--candle .benefit-card__number {
    font-size: 18px;
    left: 14px;
    top: 14px;
  }

  .benefits--candle .benefit-card:hover {
    transform: translateY(-2px);
  }
}

/* Gemstone - Faceted Benefit Cards */
.theme-gemstone-soap .benefit-card {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #fefbff 100%);
  border: none;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 20px),
    calc(100% - 20px) 100%,
    0 100%
  );
  padding: 28px 28px 28px 28px;
}

.theme-gemstone-soap .benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--workshop-accent, #9B59B6) 0%, transparent 70%);
  opacity: 0.08;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.theme-gemstone-soap .benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(155,89,182,0.15);
}

.theme-gemstone-soap .benefit-card__icon-inner {
  background: linear-gradient(135deg, var(--workshop-accent-light, #F5EEF8) 0%, rgba(192,132,252,0.15) 100%);
  border-radius: 16px;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
  padding: 20px;
}

.theme-gemstone-soap .benefit-card__title {
  position: relative;
  padding-left: 12px;
}

.theme-gemstone-soap .benefit-card__title::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--workshop-accent, #9B59B6);
  font-size: 12px;
  opacity: 0.6;
}

/* Marble - Geometric Benefit Cards */
.theme-marble-coaster .benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 920px;
}

.theme-marble-coaster .benefit-card {
  aspect-ratio: auto;
  min-height: 210px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  position: relative;
  overflow: hidden;
}

.theme-marble-coaster .benefit-card::before {
  content: '';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, var(--workshop-accent, #6B7B8C) 25%, transparent 25%, transparent 75%, var(--workshop-accent, #6B7B8C) 75%, var(--workshop-accent, #6B7B8C)),
              linear-gradient(45deg, var(--workshop-accent, #6B7B8C) 25%, transparent 25%, transparent 75%, var(--workshop-accent, #6B7B8C) 75%, var(--workshop-accent, #6B7B8C));
  background-size: 8px 8px;
  background-position: 0 0, 4px 4px;
  opacity: 0.1;
}

.theme-marble-coaster .benefit-card__icon-inner {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  background: var(--workshop-accent-soft, #F0F2F5);
  border-radius: 8px;
  border: 1px solid rgba(107,123,140,0.2);
}

.theme-marble-coaster .benefit-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--workshop-accent, #6B7B8C);
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .theme-marble-coaster .benefits__grid {
    grid-template-columns: 1fr;
  }
}

/* Marble - Specification Panel Cards */
.theme-marble-coaster .card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.theme-marble-coaster .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--workshop-accent, #6B7B8C) 0%, var(--workshop-secondary, #9CA3AF) 100%);
}

.theme-marble-coaster .card__icon-inner {
  background: linear-gradient(135deg, var(--workshop-accent-soft, #F0F2F5) 0%, rgba(156,163,175,0.1) 100%);
  border-radius: 8px;
  border: 1px solid rgba(107,123,140,0.2);
}

.theme-marble-coaster .card__title {
  font-weight: 700;
  color: var(--workshop-accent, #6B7B8C);
  font-size: 18px;
  margin-bottom: 12px;
}

.theme-marble-coaster .card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.theme-marble-coaster .card__list li {
  position: relative;
  padding: 8px 0 8px 24px;
  border-bottom: 1px solid var(--border-light);
}

.theme-marble-coaster .card__list li:last-child {
  border-bottom: none;
}

.theme-marble-coaster .card__list li::before {
  content: '■';
  position: absolute;
  left: 0;
  color: var(--workshop-accent, #6B7B8C);
  font-size: 10px;
  top: 10px;
}

/* === Candle Making - Warm Layout === */
.hero__image-wrapper--warm {
  background: linear-gradient(135deg, #FEF3E7 0%, #FDEBD0 100%);
  padding: 16px;
  border-radius: 24px;
  position: relative;
}

.hero__warm-layout {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.hero__warm-main img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(217,119,6,0.2);
}

.hero__warm-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(217,119,6,0.9) 0%, transparent 100%);
  padding: 80px 24px 24px;
  border-radius: 0 0 20px 20px;
}

.hero__warm-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__rating-badge--warm {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 16px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .hero__warm-overlay {
    padding: 60px 16px 16px;
  }

  .hero__rating-badge--warm {
    padding: 12px 20px;
  }
}

/* Candle - Editorial Layout */
.intro__grid--editorial {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.intro__editorial-block {
  padding: 32px;
  background: linear-gradient(135deg, var(--workshop-accent-soft, #FEF3E7) 0%, rgba(245,158,11,0.05) 100%);
  border-radius: 24px;
  border: 2px solid rgba(217,119,6,0.1);
}

.intro__title--editorial {
  font-size: clamp(22px, 3.5vw, 32px);
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--workshop-accent, #D97706);
}

.intro__text--lead {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 32px;
  color: var(--text-dark);
}

.intro__editorial-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.intro__meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.8);
  border-radius: 50px;
  border: 1px solid rgba(217,119,6,0.2);
}

.intro__meta-icon {
  font-size: 20px;
}

.intro__meta-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--workshop-accent, #D97706);
}

.intro__image-wrapper--rounded img {
  border-radius: 32px;
  box-shadow: 0 16px 48px rgba(217,119,6,0.15);
}

.theme-candle-making .intro__grid--editorial {
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: stretch;
}

.theme-candle-making .intro__editorial-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 3vw, 40px);
}

.theme-candle-making .intro__title--editorial {
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.12;
  margin-bottom: 20px;
}

.theme-candle-making .intro__text--lead {
  max-width: 58ch;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.7;
  margin-bottom: 28px;
}

.theme-candle-making .intro__editorial-meta {
  gap: 14px;
}

.theme-candle-making .intro__image-wrapper--rounded {
  min-height: clamp(340px, 38vw, 500px);
  height: 100%;
  border-radius: 32px;
}

.theme-candle-making .intro__image-wrapper--rounded img {
  height: 100%;
  min-height: inherit;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 900px) {
  .theme-candle-making .intro__grid--editorial {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: clamp(32px, 4vw, 54px);
  }
}

@media (max-width: 768px) {
  .intro__grid--editorial {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .intro__editorial-block {
    padding: 24px;
  }

  .theme-candle-making .intro__title--editorial {
    line-height: 1.16;
  }

  .theme-candle-making .intro__text--lead {
    margin-bottom: 24px;
  }

  .intro__editorial-meta {
    flex-direction: column;
    gap: 12px;
  }

  .theme-candle-making .intro__image-wrapper--rounded {
    min-height: 280px;
  }
}

/* Candle - Process Cards */
.details__grid--process {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.process-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px 28px;
  border: 1px solid rgba(217,119,6,0.10);
  position: relative;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--workshop-accent, #D97706));
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(217,119,6,0.14);
  border-color: rgba(217,119,6,0.25);
}

.process-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--workshop-accent-light, #FEF3E7);
  color: var(--workshop-accent, #D97706);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s ease, color .3s ease;
}

.process-card:hover .process-card__icon {
  background: var(--workshop-accent, #D97706);
  color: #fff;
}

.process-card__number {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  color: var(--workshop-accent, #D97706);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.process-card__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.process-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-body);
  margin: 0;
}

@media (max-width: 768px) {
  .process-card {
    padding: 24px 20px;
  }
}

/* ============================
   FEATURE / SHOWCASE
   ============================ */
.showcase {
  padding: var(--section-desktop) 0;
  background: var(--bg-white);
}

.showcase__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

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

/* 2x2 Image Grid */
.showcase__image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.showcase__image-item {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--bg-light);
}

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

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

.showcase__content {
  padding: 0;
}

.showcase__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.showcase__title {
  font-family: var(--font-heading);
  font-size: var(--font-h3);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.25;
  color: var(--text-dark);
}

.showcase__text {
  font-size: var(--font-body-size);
  line-height: 1.8;
  color: var(--text-body);
}

.showcase--candle {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(217,119,6,0.1), transparent 30%),
    linear-gradient(180deg, #fff 0%, var(--bg-warm) 100%);
  color: var(--text-dark);
}

.showcase--candle .container {
  position: relative;
}

.showcase--candle::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(217,119,6,0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(27,107,95,0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.55;
  pointer-events: none;
}

.showcase__experience {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.showcase--candle .showcase__content {
  max-width: 620px;
}

.showcase--candle .showcase__label {
  color: var(--workshop-accent, #D97706);
}

.showcase--candle .showcase__title {
  color: var(--text-dark);
  font-size: clamp(24px, 3.5vw, 36px);
  line-height: 1.08;
  margin-bottom: 18px;
}

.showcase--candle .showcase__text {
  max-width: 570px;
  color: var(--text-body);
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.75;
}

.showcase__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.showcase__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(27,107,95,0.16);
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.86);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
}

.showcase__visual {
  position: relative;
  min-height: clamp(330px, 38vw, 520px);
}

.showcase__hero-image {
  width: 100%;
  height: clamp(330px, 38vw, 520px);
  object-fit: cover;
  object-position: center;
  border: 10px solid #fff;
  border-radius: 30px 30px 80px 30px;
  box-shadow: 0 24px 64px rgba(27,107,95,0.14);
}

.showcase__floating-stat {
  position: absolute;
  left: -18px;
  bottom: 28px;
  width: min(250px, calc(100% - 28px));
  padding: 18px 20px;
  border: 1px solid rgba(217,119,6,0.28);
  border-radius: 20px;
  background: rgba(255,251,245,0.97);
  box-shadow: 0 18px 44px rgba(27,107,95,0.14);
}

.showcase__floating-stat strong,
.showcase__floating-stat span {
  display: block;
}

.showcase__floating-stat strong {
  color: var(--workshop-accent, #D97706);
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1;
  margin-bottom: 4px;
}

.showcase__floating-stat span {
  color: var(--text-body);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

@media (min-width: 900px) {
  .showcase__experience {
    grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  }
}

@media (max-width: 768px) {
  .showcase__floating-stat {
    left: 16px;
    bottom: 16px;
  }

  .showcase__hero-image {
    border-radius: 24px;
  }
}

/* ============================
   TRUSTED BY
   ============================ */
.trusted {
  padding: var(--section-desktop) 0;
  background: var(--bg-white);
}

.trusted__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}

.trusted__title {
  font-family: var(--font-heading);
  font-size: var(--font-h3);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.trusted__subtitle {
  font-size: var(--font-body-size);
  color: var(--text-muted);
  line-height: 1.6;
}

.trusted__logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  justify-items: center;
}

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

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

@media (min-width: 1024px) {
  .trusted__logos {
    grid-template-columns: repeat(6, 1fr);
  }
}

.trusted__logo-item {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px;
  transition: var(--transition);
}

.trusted__logo-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.trusted__logo-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ============================
   WHY CHOOSE US
   ============================ */
.why {
  padding: var(--section-desktop) 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

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

.why-card {
  text-align: center;
  padding: 24px 16px;
}

.why-card__number {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.why-card__text {
  font-size: var(--font-small);
  color: rgba(255,255,255,.85);
  line-height: 1.6;
}

/* As Seen On */
.as-seen-on {
  text-align: center;
}

.as-seen-on__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.as-seen-on__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.as-seen-on__logos img {
  max-height: 32px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
}

/* ============================
   CANDLE PAGE CONTENT BLOCKS
   ============================ */
.trust-bar {
  background: var(--primary-dark);
  color: #fff;
}

.trust-bar__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: center;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04)),
    var(--primary-dark);
  box-shadow: 0 18px 48px rgba(15,74,65,0.2);
}

.trust-bar__content h2 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.15;
}

.trust-bar__content p {
  color: rgba(255,255,255,0.84);
  font-size: var(--font-body-size);
  line-height: 1.7;
}

.ideal {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(217,119,6,0.1), transparent 28%),
    linear-gradient(180deg, #fff 0%, var(--bg-warm) 100%);
}

.ideal::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(27,107,95,0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(217,119,6,0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.6;
  pointer-events: none;
}

.ideal .container {
  position: relative;
}

.caters {
  background: #fff;
}

/* ---------- Other Options Cards ---------- */
.other-options {
  background: var(--bg-warm, #FEF7ED);
}

.opt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.opt-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(217,119,6,0.12);
  border-radius: 22px;
  background: linear-gradient(145deg, #fff 0%, #fffbf5 100%);
  box-shadow: 0 10px 32px rgba(217,119,6,0.07);
  padding: 32px 28px 28px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.opt-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--workshop-accent, #D97706));
  border-radius: 22px 22px 0 0;
}

.opt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(217,119,6,0.13);
}

.opt-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--workshop-accent-light, #FEF3E7);
  color: var(--workshop-accent, #D97706);
  margin-bottom: 16px;
  flex-shrink: 0;
}

.opt-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--workshop-accent, #D97706);
  background: var(--workshop-accent-light, #FEF3E7);
  border-radius: 20px;
}

.opt-card__title {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 14px;
}

.opt-card__list {
  display: grid;
  gap: 10px;
  margin-bottom: 8px;
  flex: 1 0 auto;
}

.opt-card__list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-body);
  font-size: 14.5px;
  line-height: 1.7;
}

.opt-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--workshop-accent, #D97706);
}

.opt-card__list li strong {
  color: var(--workshop-accent, #D97706);
}

.opt-card__text {
  color: var(--text-body);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 14px;
  flex: 1 0 auto;
}

.opt-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.opt-card__tag {
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(27,107,95,0.08);
  border-radius: 20px;
}

.opt-card__btn {
  margin-top: auto;
  align-self: flex-start;
  padding: 10px 24px !important;
}

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

  .opt-card {
    padding: 36px 30px 30px;
  }
}

.ideal__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.content-card-grid,
.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.content-card,
.google-badge,
.vip-client-grid {
  border: 1px solid rgba(27,107,95,0.12);
  border-radius: 24px;
  background: linear-gradient(145deg, #fff, #fffbf5);
  box-shadow: 0 16px 38px rgba(27,107,95,0.08);
}

.ideal-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 28px 20px;
  background: var(--workshop-accent-light, #FEF3E7);
  border-radius: 16px;
  flex: 1 1 0;
  min-width: 140px;
  max-width: 200px;
  transition: transform .2s ease, background .2s ease;
}

.ideal-box:hover {
  transform: translateY(-2px);
  background: rgba(217, 119, 6, 0.18);
}

.ideal-box__icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--workshop-accent, #D97706);
}

.ideal-box__icon svg {
  width: 100%;
  height: 100%;
}

.ideal-box__label {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  line-height: 1.3;
}

.as-seen {
  background: var(--bg-light);
}

.as-seen__logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
}

.as-seen__logos img {
  width: 100%;
  height: 88px;
  object-fit: contain;
  padding: 18px;
  border: 1px solid rgba(27,107,95,0.1);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.content-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 32px);
}

.content-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--workshop-accent, #D97706));
}

.content-card h3 {
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.16;
  margin-bottom: 12px;
}

.content-card p,
.content-card li {
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.72;
}

.content-card ul {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.content-card li {
  position: relative;
  padding-left: 24px;
}

.content-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--workshop-accent, #D97706);
}

.content-card .btn {
  margin-top: 22px;
}

.content-card-grid--two {
  align-items: stretch;
}

.proof-grid {
  align-items: stretch;
}

/* Reviews Summary Bar */
.reviews__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 28px;
  margin-bottom: 32px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  flex-wrap: wrap;
}

.reviews__summary-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reviews__summary-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #f8f9fa;
  flex-shrink: 0;
}

.reviews__summary-stats {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reviews__summary-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.reviews__summary-score {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin-left: 8px;
}

.reviews__summary-text {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.reviews__write-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 10px;
  background: var(--primary-dark);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
  white-space: nowrap;
}

.reviews__write-btn:hover {
  background: #0e4f45;
  transform: translateY(-1px);
}

/* Reviews Carousel */
.reviews__carousel {
  position: relative;
  margin-bottom: 40px;
}

.reviews__track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.reviews__track::-webkit-scrollbar {
  display: none;
}

.reviews__nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: background .2s ease, box-shadow .2s ease;
  z-index: 2;
}

.reviews__nav-btn:hover {
  background: var(--primary-light);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.14);
}

.reviews__nav-btn--prev {
  left: -12px;
}

.reviews__nav-btn--next {
  right: -12px;
}

/* Review Card */
.review-card {
  min-width: 300px;
  max-width: 340px;
  scroll-snap-align: start;
  flex-shrink: 0;
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform .25s ease, box-shadow .25s ease;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  flex-shrink: 0;
}

.review-card__avatar--1 { background: #4285F4; }
.review-card__avatar--2 { background: #EA4335; }
.review-card__avatar--3 { background: #34A853; }
.review-card__avatar--4 { background: #FBBC05; color: #333; }
.review-card__avatar--5 { background: #4285F4; }
.review-card__avatar--6 { background: #EA4335; }

.review-card__user {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.review-card__name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
}

.review-card__date {
  font-size: 12px;
  color: var(--text-muted);
}

.review-card__platform {
  margin-left: auto;
  flex-shrink: 0;
  opacity: 0.6;
}

.review-card__stars {
  display: flex;
  gap: 1px;
  margin-bottom: 12px;
}

.review-card__text {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.65;
  margin: 0;
}

/* VIP Clients */
.reviews__vip {
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.reviews__vip-heading {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 24px;
}

/* VIP Auto-Scroll Carousel */
.vip-carousel {
  overflow: hidden;
  padding: 0 0 8px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.vip-carousel__inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vip-carousel__row {
  display: flex;
  gap: 16px;
  animation: vipScroll 35s linear infinite;
  width: max-content;
}

.vip-carousel__row--reverse {
  animation: vipScrollReverse 40s linear infinite;
}

.vip-carousel__row:hover {
  animation-play-state: paused;
}

@keyframes vipScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes vipScrollReverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.vip-carousel__item {
  flex-shrink: 0;
  width: 220px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: transform .25s ease, box-shadow .25s ease;
}

.vip-carousel__item:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.vip-carousel__item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.why-choose {
  background:
    radial-gradient(circle at 8% 10%, rgba(217,119,6,0.1), transparent 28%),
    linear-gradient(180deg, #fff 0%, var(--bg-light) 100%);
}

.check-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding: 18px 20px 18px 54px;
  border: 1px solid rgba(27,107,95,0.12);
  border-radius: 18px;
  background: #fff;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.5;
  box-shadow: 0 10px 28px rgba(27,107,95,0.06);
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--primary);
}

.check-list li::after {
  content: '';
  position: absolute;
  left: 26px;
  top: 50%;
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-58%) rotate(45deg);
}

.seo-section {
  background:
    radial-gradient(ellipse at 15% 0%, rgba(217,119,6,0.06), transparent 50%),
    radial-gradient(ellipse at 85% 100%, rgba(27,107,95,0.05), transparent 50%),
    #fff;
}

.seo-intro {
  max-width: 780px;
  margin: 0 auto 40px;
  text-align: center;
}

.seo-intro p {
  color: var(--text-body);
  font-size: 15.5px;
  line-height: 1.78;
  margin-bottom: 14px;
}

.seo-intro strong {
  color: var(--primary-dark);
}

/* Highlight Cards */
.seo-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 900px;
  margin: 0 auto 48px;
}

.seo-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 24px;
  border-radius: 20px;
  background: linear-gradient(145deg, #fff, #fffbf5);
  border: 1px solid rgba(217,119,6,0.1);
  box-shadow: 0 8px 28px rgba(217,119,6,0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.seo-highlight:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(217,119,6,0.1);
}

.seo-highlight__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--workshop-accent-light, #FEF3E7);
  color: var(--workshop-accent, #D97706);
  margin-bottom: 16px;
}

.seo-highlight h3 {
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.seo-highlight p {
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.7;
  max-width: 340px;
}

/* Candle Types Grid */
.seo-types {
  max-width: 900px;
  margin: 0 auto 48px;
}

.seo-types__heading {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 24px;
}

.seo-types__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.seo-type-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(27,107,95,0.08);
  box-shadow: 0 6px 22px rgba(27,107,95,0.05);
  transition: transform .25s ease, box-shadow .25s ease;
}

.seo-type-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(27,107,95,0.09);
}

.seo-type-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(27,107,95,0.08);
  color: var(--primary);
  margin-bottom: 14px;
}

.seo-type-card h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.seo-type-card p {
  color: var(--text-body);
  font-size: 13.5px;
  line-height: 1.7;
  margin-bottom: 12px;
  flex: 1 0 auto;
}

.seo-type-card__tag {
  align-self: flex-start;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: var(--workshop-accent, #D97706);
  background: var(--workshop-accent-light, #FEF3E7);
  border-radius: 16px;
}

/* CTA Block */
.seo-cta-block {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 32px;
  border-radius: 22px;
  background: var(--workshop-accent-light, #FEF3E7);
  border: 1.5px solid rgba(217,119,6,0.15);
}

.seo-cta-block__content h3 {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.seo-cta-block__content p {
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.72;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.seo-cta-block__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.seo-cta-block__list li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: #fff;
  border-radius: 20px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-body);
  line-height: 1.4;
}

.seo-cta-block__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--workshop-accent, #D97706);
  flex-shrink: 0;
  position: static;
  border: none;
  padding: 0;
  top: auto;
  left: auto;
}

.seo-cta-block__content .btn {
  padding: 13px 32px;
  font-size: 15px;
}

@media (min-width: 520px) {
  .seo-types__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 640px) {
  .seo-highlights {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .seo-highlight {
    padding: 32px 24px;
  }
}

@media (min-width: 768px) {
  .seo-cta-block {
    padding: 48px 44px;
  }
}

@media (min-width: 640px) {
  .ideal-box {
    max-width: 220px;
    padding: 32px 24px;
  }

  .content-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .as-seen__logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .trust-bar__content {
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  }

  .vip-carousel__item {
    width: 250px;
  }

  .vip-carousel__item img {
    height: 160px;
  }

  .ideal-box {
    max-width: 240px;
    padding: 36px 28px;
  }

  .ideal-box__icon {
    width: 46px;
    height: 46px;
  }

  .ideal-box__label {
    font-size: 15px;
  }

  .as-seen__logos {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

/* ============================
   GALLERY
   ============================ */
.gallery {
  padding: var(--section-desktop) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(217,119,6,0.1), transparent 28%),
    linear-gradient(180deg, var(--bg-warm) 0%, #fff 100%);
}

.gallery-carousel {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(16px, 2.2vw, 24px);
  border: 1px solid rgba(27,107,95,0.12);
  border-radius: 30px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 24px 64px rgba(27,107,95,0.12);
}

.gallery-carousel::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  border-radius: 30px 30px 0 0;
  background: linear-gradient(90deg, var(--primary), var(--workshop-accent, #D97706), var(--accent));
}

.gallery-carousel__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  border-radius: 24px;
}

.gallery-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.gallery-carousel .gallery__grid {
  display: flex;
  grid-template-columns: none;
  gap: 14px;
}

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

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

.gallery__item {
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-carousel .gallery__item {
  flex: 0 0 100%;
  min-width: 0;
  scroll-snap-align: start;
  border: 8px solid #fff;
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(27,107,95,0.12);
}

.gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.gallery__item:hover .gallery__image { transform: scale(1.05); }

.gallery-carousel__button {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(27,107,95,0.18);
  border-radius: 50%;
  background: #fff;
  color: var(--primary-dark);
  box-shadow: 0 14px 34px rgba(27,107,95,0.16);
  transform: translateY(-50%);
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.gallery-carousel__button:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-50%) scale(1.04);
}

.gallery-carousel__button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-carousel__button--prev {
  left: -12px;
}

.gallery-carousel__button--next {
  right: -12px;
}

.gallery-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.gallery-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(27,107,95,0.22);
  transition: width .25s ease, background .25s ease;
}

.gallery-carousel__dot--active {
  width: 34px;
  background: linear-gradient(90deg, var(--primary), var(--workshop-accent, #D97706));
}

@media (min-width: 760px) {
  .gallery-carousel .gallery__item {
    flex-basis: calc((100% - 14px) / 2);
  }
}

@media (max-width: 620px) {
  .gallery-carousel {
    padding: 12px;
    border-radius: 22px;
  }

  .gallery-carousel .gallery__item {
    border-width: 5px;
    border-radius: 18px;
  }

  .gallery-carousel__button {
    width: 40px;
    height: 40px;
  }

  .gallery-carousel__button--prev {
    left: 4px;
  }

  .gallery-carousel__button--next {
    right: 4px;
  }
}

/* Gemstone - Asymmetric Gallery */
.gallery__grid--jewel {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.gallery__item--large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.gallery__item--large img {
  border-radius: 24px 12px 24px 12px;
}

.gallery__item--featured {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.gallery__item--featured img {
  border-radius: 12px 24px 12px 24px;
}

.gallery__item--small {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.gallery__grid--jewel .gallery__item--small:nth-of-type(4) {
  grid-column: 1 / 3;
  grid-row: 3 / 4;
  aspect-ratio: 16 / 7;
}

.gallery__item--small img {
  border-radius: 16px;
}

@media (max-width: 768px) {
  .gallery__grid--jewel {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery__item--large,
  .gallery__item--featured,
  .gallery__item--small {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .gallery__grid--jewel .gallery__item--small:nth-of-type(4) {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }
}

/* ============================
   PROCESS
   ============================ */
.process {
  padding: 56px 0;
  background: var(--bg-light);
}

.process .section-header {
  text-align: center;
  margin-bottom: 36px;
}

.process__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

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



/* ============================
   FAQ
   ============================ */
.faq {
  padding: var(--section-desktop) 0;
  background: var(--bg-light);
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  background: #fff;
  border-radius: var(--radius-lg);
  margin-bottom: 10px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.faq__item:hover { box-shadow: var(--shadow-sm); }

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: none;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
}
.faq__question:hover { color: var(--primary); }

.faq__chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--text-muted);
}
.faq__item--open .faq__chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq__item--open .faq__answer { max-height: 1200px; }

.faq__answer p {
  padding: 0 24px 18px;
  font-size: var(--font-small);
  color: var(--text-body);
  line-height: 1.7;
}

/* ============================
   QUOTE / CTA
   ============================ */
.quote {
  padding: 56px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-mid) 100%);
  text-align: center;
}

.quote .section-label {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.2);
}

.quote__title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 700;
  color: #fff;
  margin: 8px auto 12px;
  max-width: 600px;
  line-height: 1.2;
}

.quote__subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin: 0 auto 36px;
  max-width: 560px;
  line-height: 1.6;
}

/* CTA Layout: 2 columns */
.cta-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  text-align: left;
}

@media (min-width: 900px) {
  .cta-layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 36px;
    align-items: start;
  }
}

/* Contact Info Cards */
.cta-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  transition: background .2s ease;
}

.cta-info-card:hover {
  background: rgba(255,255,255,0.14);
}

.cta-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--workshop-accent, #D97706);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-info-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}

.cta-info-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin: 0;
  line-height: 1.55;
}

.cta-info-card a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color .2s ease;
}

.cta-info-card a:hover {
  color: #fff;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
  background: #fff;
  border-radius: 22px;
  padding: 32px 28px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.15);
}

.contact-form-wrapper h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 6px;
}

.form-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 24px;
  line-height: 1.5;
}

/* Form Layout */
.cf-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

@media (min-width: 520px) {
  .cf-row {
    grid-template-columns: 1fr 1fr;
  }
}

.cf-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cf-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.cf-optional {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 12px;
}

.cf-group input,
.cf-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 10px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: #fafafa;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.cf-group input:focus,
.cf-group textarea:focus {
  outline: none;
  border-color: var(--workshop-accent, #D97706);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(217,119,6,0.10);
}

.cf-group textarea {
  min-height: 100px;
  resize: vertical;
}

.cf-group {
  margin-bottom: 14px;
}

.cf-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
  padding: 14px 28px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.cf-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,107,95,0.25);
}

.cf-arrow {
  font-size: 18px;
  transition: transform .2s ease;
}

.cf-submit-btn:hover .cf-arrow {
  transform: translateX(4px);
}

/* Success State */
.cf-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.cf-success.active {
  display: block;
}

.cf-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ECFDF5;
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.cf-success h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 8px;
}

.cf-success p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--text-dark);
  padding: var(--section-desktop) 0 0;
  color: rgba(255,255,255,.8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

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

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

.footer__logo {
  width: 140px;
  margin-bottom: 16px;
}

.footer__brand {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.footer__text {
  font-size: var(--font-small);
  line-height: 1.8;
  color: rgba(255,255,255,.7);
  margin-bottom: 16px;
}

.footer__social-text {
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}

.footer__social-text a {
  color: #fff;
}

.footer__social-text a:hover {
  color: var(--accent);
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer__social-link:hover { background: var(--primary); }
.footer__social-link svg { width: 16px; height: 16px; fill: #fff; }

.footer__bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.4);
}

/* ============================
   WHATSAPP FLOAT
   ============================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 998;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 26px; height: 26px; fill: #fff; }

/* ============================
   SCROLL REVEAL
   ============================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all .5s cubic-bezier(.4,0,.2,1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .header__nav { display: none; }
  .header__hamburger { display: flex; }
}

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

  .hero {
    padding-top: calc(var(--header-height) + 24px);
    padding-bottom: var(--section-mobile);
  }

  .hero__actions {
    flex-direction: column;
  }

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

  .hero__trust {
    flex-direction: column;
    gap: 16px;
  }

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

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

  .reviews__summary-left {
    flex-direction: column;
    align-items: center;
  }

  .reviews__summary-stars {
    justify-content: center;
  }

  .review-card {
    min-width: 260px;
  }

  .reviews__nav-btn {
    display: none;
  }

  .vip-carousel__item {
    width: 180px;
  }

  .vip-carousel__item img {
    height: 110px;
  }

  .reviews__vip-heading {
    font-size: 20px;
  }

  .cta-layout {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 24px 20px;
  }

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

  .showcase__image-grid {
    order: -1;
    margin-bottom: 24px;
  }
}

@media (max-width: 480px) {
  .trusted__logos {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .showcase__image-grid {
    gap: 8px;
  }
}
