:root {
  /* Cream / paper tones (background) */
  --cream: #fbf6ea;
  --cream-soft: #f5ecd6;
  --cream-dark: #ecdcb5;

  /* Warm wood — lighter than near-black, still readable on cream */
  --walnut: #4a3520;       /* primary dark, warm walnut */
  --walnut-soft: #75573a;  /* secondary brown, body text */
  --ink: #3a2818;          /* deepest text */

  /* Honey / amber accents — replacing terracotta orange */
  --terracotta: #c89a3d;        /* primary accent, golden honey */
  --terracotta-dark: #9a7320;   /* deep mustard for hover/active */
  --terracotta-soft: #ebc973;   /* soft honey for light tints */
  --terracotta-pale: #fbedc5;   /* nearly-white honey wash */

  --wood-mid: #b88a5c;          /* mid-tone wood */
  --leaf: #d4a373;              /* faint accent */

  /* Aliases for new naming clarity (use either) */
  --honey: var(--terracotta);
  --honey-dark: var(--terracotta-dark);
  --honey-soft: var(--terracotta-soft);
  --honey-pale: var(--terracotta-pale);
}

/* ============ AMBIENT SAWDUST CANVAS ============ */
/* Multiply blend lets warm-brown particles darken whatever section bg they fly over,
   so the dust shows on every cream/walnut/honey section without needing per-section work. */
#sawdust {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 99;
  mix-blend-mode: multiply;
}
@media (prefers-reduced-motion: reduce) {
  #sawdust { display: none; }
}

/* ============ PAGE TRANSITIONS ============ */
@view-transition { navigation: auto; }
::view-transition-old(root) {
  animation: pageOut 0.25s cubic-bezier(0.4, 0, 1, 1) both;
}
::view-transition-new(root) {
  animation: pageIn 0.45s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
@keyframes pageOut {
  to { opacity: 0; transform: translateY(-10px); }
}
@keyframes pageIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root) { animation: none; }
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; font-size: 17px; }
body {
  font-family: 'Assistant', -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  font-weight: 400;
  direction: rtl;
  text-align: right;
  font-size: 16.5px;
}

/* ============ SCROLL REVEAL ============ */
.reveal,
.reveal-up,
.reveal-right,
.reveal-left,
.reveal-zoom {
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.22,0.61,0.36,1),
              transform 0.9s cubic-bezier(0.22,0.61,0.36,1);
}
.reveal-up    { transform: translateY(40px); }
.reveal-right { transform: translateX(-40px); }
.reveal-left  { transform: translateX(40px);  }
.reveal-zoom  { transform: scale(0.94); }
.reveal       { transform: translateY(24px); }

.is-visible.reveal,
.is-visible.reveal-up,
.is-visible.reveal-right,
.is-visible.reveal-left,
.is-visible.reveal-zoom {
  opacity: 1;
  transform: none;
  /* Release the compositing layer after reveal so italic ink overflow isn't clipped */
  will-change: auto;
}

.stagger > * { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.08s; }
.stagger > *:nth-child(3) { transition-delay: 0.16s; }
.stagger > *:nth-child(4) { transition-delay: 0.24s; }
.stagger > *:nth-child(5) { transition-delay: 0.32s; }
.stagger > *:nth-child(6) { transition-delay: 0.40s; }
.stagger > *:nth-child(7) { transition-delay: 0.48s; }
.stagger > *:nth-child(8) { transition-delay: 0.56s; }
.stagger > *:nth-child(9) { transition-delay: 0.64s; }
/* Once revealed, reset delay so hover/focus transitions are instant */
.stagger > .is-visible { transition-delay: 0s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-up, .reveal-right, .reveal-left, .reveal-zoom {
    opacity: 1; transform: none; transition: none;
  }
}

/* ============ TYPOGRAPHY UTILITIES ============ */
.serif { font-family: 'Fraunces', Georgia, serif; font-feature-settings: "ss01"; }
.hand { font-family: 'Caveat', cursive; font-weight: 600; }
.script { font-family: 'Dancing Script', cursive; }

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

/* ============ KEYBOARD FOCUS ============ */
/* Single consistent focus ring. Honey on light surfaces; cream on the dark ones. */
:focus-visible {
  outline: 2px solid var(--honey-dark);
  outline-offset: 3px;
  border-radius: 4px;
}
.hero :focus-visible,
.page-hero :focus-visible,
.about-section :focus-visible,
.contact-section :focus-visible,
.float-wa:focus-visible {
  outline-color: var(--cream);
}


.eyebrow {
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--terracotta-dark);
  font-weight: 600;
}

/* Decorative index numbers (№ 01, 01/02/03) removed site-wide per brand pass. */
.audience-card-num,
.tcc-num,
.wcv-num,
.faq-q-num { display: none; }

/* ============ BUTTONS ============ */
.btn {
  font-family: 'Assistant', sans-serif;
  font-size: 16.5px;
  font-weight: 600;
  padding: 18px 34px;
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--terracotta); color: var(--cream); }
.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--cream); border: 1px solid rgba(250,244,232,0.4); }
.btn-ghost:hover { background: rgba(250,244,232,0.1); }
.btn-dark { background: var(--walnut); color: var(--cream); }
.btn-dark:hover { background: var(--ink); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--walnut); border: 1px solid var(--walnut); }
.btn-outline:hover { background: var(--walnut); color: var(--cream); }

/* ============ NAV ============ */
nav.nav {
  position: fixed;
  top: 16px; right: 22px; left: 22px;
  background: rgba(250,244,232,0.9);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid rgba(74,53,32,0.10);
  border-radius: 999px;
  padding: 9px 16px 9px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  box-shadow: 0 6px 22px -8px rgba(43,26,14,0.14);
}
.nav-logo-wrap { display: flex; align-items: center; }
.nav-logo-img {
  height: 58px;
  width: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  filter: drop-shadow(0 1px 2px rgba(74,53,32,0.18));
}
.nav-menu {
  display: flex; gap: 40px;
  font-size: 16.5px; color: var(--walnut); font-weight: 500;
}
/* Direct-child only, so the social-icon anchors aren't underlined. */
.nav-menu > a {
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.nav-menu > a::after {
  content: '';
  position: absolute; bottom: 0; right: 0; left: 0;
  height: 2px; border-radius: 2px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.nav-menu > a:hover,
.nav-menu > a.active { color: var(--terracotta-dark); }
.nav-menu > a:hover::after,
.nav-menu > a.active::after { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce) {
  .nav-menu > a::after { transition: none; }
}
.nav-cta { display: flex; align-items: center; gap: 14px; }
/* Nav-scoped button sizing (replaces per-page inline styles). */
.nav-cta .btn { padding: 11px 20px; font-size: 14.5px; }
.nav-phone {
  font-family: 'Frank Ruhl Libre', serif; font-style: italic;
  font-size: 14.5px; color: var(--walnut-soft);
}

/* ============ HERO — full-bleed image, bottom-anchored content ============ */
.hero {
  position: relative;
  min-height: clamp(640px, 88vh, 920px);
  display: flex;
  align-items: flex-end;
  padding: 150px 64px 96px;
  overflow: visible;
  background: var(--ink);
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
  z-index: 0;
}
.hero-vid {
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 1;
}
.hero-vid.is-playing { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .hero-vid { display: none; }
}
/* Legibility scrim: darkest on the LEFT (where the copy sits) with a soft
   floor at the bottom. Tinted to walnut, never pure black. */
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg,
      rgba(20,12,6,0.52) 0%, rgba(20,12,6,0.30) 30%,
      rgba(20,12,6,0.10) 55%, rgba(20,12,6,0.02) 76%, transparent 100%),
    linear-gradient(0deg,
      rgba(20,12,6,0.68) 0%, rgba(20,12,6,0.30) 22%, rgba(20,12,6,0.08) 46%, transparent 65%);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent 0%, var(--cream) 100%);
  z-index: 2;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  color: var(--cream);
  padding-inline: 8px;
}
/* Pin the copy to the left edge of the centred max-width band (RTL: the
   auto margin sits on the start/right side, pushing the block left). */
.hero-text {
  max-width: 560px;
  margin-inline-start: auto;
  margin-inline-end: 0;
  padding-inline-start: 20px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(250,244,232,0.12);
  border: 1px solid rgba(250,244,232,0.28);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13.5px; color: var(--cream);
  margin-bottom: 42px;
  backdrop-filter: blur(8px);
  font-weight: 600;
}
.hero-badge-dot {
  width: 8px; height: 8px; background: var(--terracotta-soft);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(235,201,115,0.25);
}
.hero h1 {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: clamp(46px, 6.2vw, 86px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
  color: var(--cream);
  margin-bottom: 28px;
  text-wrap: balance;
  /* will-change: opacity, transform is inherited from .reveal-up and promotes the
     h1 to a GPU compositing layer sized to the layout box — this clips the italic
     ink overflow of large Frank Ruhl Libre glyphs. Override to normal painting. */
  will-change: auto;
  overflow: visible;
}
.hero h1 .italic { font-style: italic; font-weight: 300; color: rgba(250,244,232,0.92); }
.hero h1 .accent {
  color: var(--terracotta-soft);
  font-style: italic;
  font-weight: 400;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.78;
  color: rgba(250,244,232,0.82);
  max-width: 520px;
  margin-bottom: 48px;
  font-weight: 400;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============ PAGE HERO (smaller, for inner pages) ============ */
.page-hero {
  position: relative;
  height: clamp(400px, 46vh, 480px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 44px 40px;
  overflow: clip;
  overflow-clip-margin: 12px;
  background: var(--walnut);
  color: var(--cream);
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('images/img-04.jpeg');
  background-size: cover;
  background-position: center;
  opacity: 0.52;
  z-index: 0;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}
.page-hero .eyebrow {
  color: var(--terracotta-soft);
  margin-bottom: 16px;
  display: inline-block;
}
.page-hero h1 {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: clamp(36px, 4.4vw, 62px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--cream);
  margin-bottom: 22px;
}
.page-hero h1 .italic { font-style: italic; color: var(--terracotta-soft); font-weight: 300; }
.page-hero p {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(250,244,232,0.82);
  max-width: 700px;
  margin: 0 auto;
}

/* ============ MARQUEE ============ */
.marquee {
  background: var(--walnut);
  color: var(--cream);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}
.marquee::before, .marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
  pointer-events: none;
}
.marquee::before { right: 0; background: linear-gradient(270deg, transparent, var(--walnut)); }
.marquee::after { left: 0; background: linear-gradient(90deg, transparent, var(--walnut)); }
.marquee-track {
  display: flex; gap: 40px; align-items: center;
  font-size: 13px; letter-spacing: 2px; white-space: nowrap;
  animation: scroll 40s linear infinite;
  font-weight: 500;
}
.marquee-label {
  font-family: 'Frank Ruhl Libre', serif; font-style: italic;
  color: var(--terracotta-soft); font-size: 15px;
  letter-spacing: 0; font-weight: 400;
}
.marquee-dot { color: var(--terracotta); font-size: 16px; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ SECTION COMMON ============ */
section.content {
  padding: 110px 44px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 60px;
}
.section-header .eyebrow { margin-bottom: 14px; display: inline-block; }
.section-h2 {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: clamp(42px, 5.4vw, 66px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
  margin-bottom: 18px;
  text-wrap: balance;
}
.section-h2 .italic { font-style: italic; color: var(--terracotta-dark); }
.section-lede {
  font-size: 19px; line-height: 1.65;
  color: var(--walnut-soft);
}

/* ============ FILTER PILLS ============ */
.filter-pills {
  display: flex; justify-content: center; gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.pill {
  background: transparent;
  border: 1.5px solid var(--terracotta);
  color: var(--terracotta-dark);
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Assistant', sans-serif;
}
.pill:hover { background: var(--terracotta-pale); }
.pill.active {
  background: var(--terracotta);
  color: var(--cream);
  border-color: var(--terracotta);
}

/* ============ WORKSHOPS ============ */
.workshops-section { background: var(--cream); }
.workshops-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.workshop-card {
  background: var(--cream-soft);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column;
  position: relative;
}
.workshop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -12px rgba(43,26,14,0.15);
}
.workshop-card.feature {
  grid-column: span 2;
  flex-direction: row;
  min-height: 340px;
}
.workshop-card.feature .workshop-img {
  aspect-ratio: auto;
  flex: 1;
  min-height: 340px;
}
.workshop-card.feature .workshop-body {
  flex: 1;
  padding: 40px;
  justify-content: center;
}
.workshop-img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  position: relative;
}
.workshop-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--terracotta);
  color: var(--cream);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}
.workshop-body {
  padding: 24px 28px 28px;
  display: flex; flex-direction: column;
  flex: 1;
}
.workshop-num-row {
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 10px;
}
.workshop-num {
  font-family: 'Frank Ruhl Libre', serif; font-style: italic;
  color: var(--terracotta); font-size: 14px; font-weight: 400;
}
.workshop-num-line { flex: 1; height: 0.5px; background: rgba(43,26,14,0.15); }
.workshop-title {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--walnut);
  margin-bottom: 10px;
  line-height: 1.1;
}
.workshop-card.feature .workshop-title { font-size: 42px; }
.workshop-desc {
  font-size: 16px; color: var(--walnut-soft);
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1;
}
.workshop-meta {
  display: flex; gap: 18px; flex-wrap: wrap;
  padding-top: 16px;
  border-top: 0.5px solid rgba(43,26,14,0.12);
}
.workshop-meta-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--walnut-soft);
  font-weight: 500;
}
.workshop-meta-item svg { flex-shrink: 0; }

/* How pricing works — calm explainer panel */
.pricing-panel {
  margin-top: 44px;
  background: var(--cream-soft);
  border: 1px solid rgba(74,53,32,0.08);
  border-radius: 22px;
  padding: clamp(28px, 4vw, 44px);
  display: grid;
  grid-template-columns: 1.5fr 0.9fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.pricing-title {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 500;
  color: var(--walnut);
  line-height: 1.15;
  margin: 10px 0 22px;
}
.pricing-title .italic { font-style: italic; color: var(--terracotta-dark); }
.pricing-facts { display: flex; flex-direction: column; }
.pricing-fact {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(74,53,32,0.12);
}
.pricing-fact:last-of-type { border-bottom: 0; }
.pricing-fact dt {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--walnut);
  flex-shrink: 0;
}
.pricing-fact dd {
  font-size: 15px;
  color: var(--walnut-soft);
  text-align: left;
  font-weight: 500;
}
.pricing-note {
  margin-top: 20px;
  font-size: 14.5px;
  color: var(--walnut-soft);
  line-height: 1.65;
}
.pricing-anchor {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  padding: clamp(26px, 3vw, 38px) 24px;
  background: var(--walnut);
  color: var(--cream);
  border-radius: 18px;
}
.pricing-anchor-from {
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--honey-soft);
  font-weight: 600;
}
.pricing-anchor-num {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: clamp(56px, 7vw, 76px);
  font-weight: 400;
  line-height: 1;
  color: var(--cream);
  direction: ltr;
}
.pricing-anchor-num .cur {
  font-size: 0.5em;
  color: var(--honey-soft);
  margin-inline-start: 4px;
}
.pricing-anchor-cap {
  font-size: 13px;
  color: rgba(250,244,232,0.7);
  line-height: 1.4;
}

.workshops-footer {
  margin-top: 32px;
  display: flex; justify-content: space-between;
  align-items: center; gap: 20px; flex-wrap: wrap;
  padding: 24px 28px;
}
.workshops-footer-note {
  font-family: 'Frank Ruhl Libre', serif; font-style: italic;
  font-size: 21px; color: var(--walnut-soft);
}

/* ============ PROCESS ============ */
.process-section {
  background: var(--cream-dark);
  padding: 90px 44px;
  border-radius: 40px 40px 0 0;
}
.process-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
  direction: rtl;
}
.process-step {
  position: relative;
  text-align: center;
}
.process-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 28px;
  font-weight: 500;
  margin: 0 auto 18px;
  box-shadow: 0 6px 16px -4px rgba(154,115,32,0.4);
  position: relative;
  z-index: 2;
}
.process-step::before {
  content: '';
  position: absolute;
  top: 32px;
  right: calc(50% + 36px);
  left: -16px;
  height: 1.5px;
  background: repeating-linear-gradient(90deg, var(--wood-mid) 0, var(--wood-mid) 4px, transparent 4px, transparent 8px);
  z-index: 1;
}
.process-step:last-child::before { display: none; }
.process-title {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--walnut);
  margin-bottom: 10px;
}
.process-desc {
  font-size: 13px;
  color: var(--walnut-soft);
  line-height: 1.6;
  padding: 0 8px;
}

/* ============ TUTORIALS / VIDEO ============ */
.tutorials-section {
  background: var(--cream);
  color: var(--walnut);
}
.tutorials-section .section-header .eyebrow { color: var(--terracotta-dark); }
.tutorials-section .section-h2 { color: var(--walnut); }
.tutorials-section .section-h2 .italic { color: var(--terracotta-dark); }
.tutorials-section .section-lede { color: var(--walnut-soft); }

.tutorials-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
  padding: 32px;
  background: var(--cream-soft);
  border: 1px solid rgba(43,26,14,0.08);
  border-radius: 20px;
}
.tut-stat { text-align: center; }
.tut-stat-num {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 42px;
  font-weight: 500;
  color: var(--walnut);
  line-height: 1;
  direction: ltr;
}
.tut-stat-num .plus { color: var(--terracotta-dark); font-style: italic; font-weight: 400; }
.tut-stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--walnut-soft);
  margin-top: 10px;
  font-weight: 600;
}

.tut-cats {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 36px;
  justify-content: center;
}
.tut-cat {
  background: transparent;
  border: 1.5px solid var(--terracotta);
  color: var(--terracotta-dark);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Assistant', sans-serif;
}
.tut-cat:hover { background: var(--terracotta-pale); }
.tut-cat.active {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--cream);
}

.video-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}
.video-big, .video-small {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 0.3s;
}
.video-big:hover, .video-small:hover { transform: translateY(-4px); }
.video-big {
  aspect-ratio: 4/5;
  background-image: url('https://lh3.googleusercontent.com/aida-public/AB6AXuBnWbk0yD46vglgruA6w3WWxU-iDejjbFSIqEuEy5Vt9m0vsGZ2YX37IHq-G4LMXG-bUWYp_4I24l6kyKUMtpIJ1TV23VB0vax3FMazF8n_9GvDwJUEAc27k6eR-fI5TPewRhlKl2aKoVSdKkdQT89PvPmf22T3Vy7Kg4HdEh6fM5L9-5Bs3fJWz96nXpE3iN3RDevpa5bB-y1hsR_Ac7T2sftT8L2E_fqCRIY-mxBM7vZeYzWqhNI2uBPzdw79nPaAxU-wWMGBPQ');
}
.video-small.small-1 { background-image: url('https://lh3.googleusercontent.com/aida-public/AB6AXuBSItweINvOKNkXuL0jJ1XKWfqVZIsnZT2yedoTBuJ1anCg_5DW88HakyG77xv7Nx9Pvusrd0uiLQQg9N9-z7A5rTwbwlVgPGFixzgif4OOXjLQ2LXpqh9UiQ4cjdWYKStbWFMmVMBM6ZuST-iyJbbxvQfOrrZgL2WnTPB07kBW4dfPHQujmkijPZSG0nyGBMGGWLKW51pjQWillEzwEXF02_6lq9TYA1EryaIrvtiNwk18IYwcm8atOGK19EL00S7FaKo-e-Hsdg'); }
.video-small.small-2 { background-image: url('https://lh3.googleusercontent.com/aida-public/AB6AXuBzEbSz_Q10s4jINNFivHqxZJYMhwJ9EfKW1HfyBG5Mzm9YDYX2RR0MxrUJ3qEqZPq-c2oEsIs-8fWNpZb5uyeahNB4f018MfuyumYiQLRyQqqf7Ujv-FVMEIsd-3waYriX9tS7OZtJ8b7CZ7yLlcpTtsJGuEBQopz6L4uxZ0X2mBnX-NKbEvnvYhKp8wD8Z_POTq-WXvJsA2mJHeqnXL_IAHizS_n2IyrvS1cey9zyC42CFj0kN4ncozTLnPzlB3mBt197X5zNtw'); }
.video-big::after, .video-small::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85));
}
.video-new {
  position: absolute;
  top: 16px; right: 16px;
  font-family: 'Caveat', cursive; font-size: 26px;
  color: var(--terracotta-soft);
  font-weight: 700;
  transform: rotate(-5deg);
  z-index: 2;
}
.video-caption {
  position: absolute; bottom: 0; right: 0; left: 0;
  padding: 24px; z-index: 2; color: var(--cream);
}
.video-meta {
  font-size: 11px; letter-spacing: 2px;
  color: var(--terracotta-soft);
  text-transform: uppercase; font-weight: 600;
  margin-bottom: 8px;
}
.video-caption h4 {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 22px; font-weight: 500;
  line-height: 1.2; color: var(--cream);
}
.video-big .video-caption h4 { font-size: 26px; }
.video-small .video-caption { padding: 18px; }
.video-small .video-caption h4 { font-size: 17px; }
.video-small .video-meta { font-size: 9px; margin-bottom: 5px; }
.video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  background: rgba(200,154,61,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream); font-size: 20px;
  z-index: 2;
  transition: transform 0.3s;
}
.video-big:hover .video-play { transform: translate(-50%, -50%) scale(1.1); }
.video-col { display: flex; flex-direction: column; gap: 16px; }
.video-small { flex: 1; aspect-ratio: auto; }
.video-list { padding: 8px 4px 0; }
.video-list-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
}
.video-list-header .eyebrow { color: var(--terracotta-dark); }
.video-list-header-line { flex: 1; height: 0.5px; background: rgba(43,26,14,0.15); }
.video-item {
  padding: 14px 0;
  border-bottom: 0.5px solid rgba(43,26,14,0.12);
  cursor: pointer;
  transition: padding-right 0.2s;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.video-item:hover { padding-right: 8px; }
.video-item-title {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 17px; font-weight: 500;
  color: var(--walnut);
  margin-bottom: 4px;
}
.video-item-meta {
  font-size: 11px; color: var(--walnut-soft);
}
.video-item-arrow {
  color: var(--terracotta);
  font-family: 'Frank Ruhl Libre', serif; font-style: italic;
  font-size: 20px;
  opacity: 0.7;
}
.video-footer {
  padding: 28px 32px;
  background: var(--walnut);
  color: var(--cream);
  border-radius: 18px;
  display: flex; justify-content: space-between;
  align-items: center; gap: 20px; flex-wrap: wrap;
}
.video-footer-text {
  font-family: 'Frank Ruhl Libre', serif; font-style: italic;
  font-size: 17px; color: rgba(250,244,232,0.9);
}
.video-footer .btn-ghost { color: var(--cream); border-color: rgba(250,244,232,0.4); }

.tut-social-nudge {
  text-align: center;
  padding: 64px 20px 72px;
}
.tut-social-q {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 400;
  color: var(--walnut);
  margin-bottom: 32px;
}
.tut-social-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.tut-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  border: 1.5px solid var(--walnut);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  color: var(--walnut);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.tut-social-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.tut-social-btn:hover {
  background: var(--walnut);
  color: var(--cream);
}

/* Written guides cards */
.guides-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.guide-card {
  background: var(--cream-soft);
  border: 1px solid rgba(43,26,14,0.08);
  border-radius: 18px;
  padding: 28px;
  transition: all 0.3s;
  cursor: pointer;
  display: flex; flex-direction: column;
}
.guide-card:hover {
  background: #fff5e2;
  transform: translateY(-4px);
  border-color: rgba(200,154,61,0.4);
  box-shadow: 0 18px 36px -12px rgba(43,26,14,0.12);
}
.guide-card-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: rgba(200,154,61,0.12);
  border: 1px solid rgba(200,154,61,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--terracotta-dark);
  margin-bottom: 18px;
}
.guide-card-meta {
  font-size: 11px; letter-spacing: 2px;
  color: var(--terracotta-dark);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}
.guide-card h4 {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--walnut);
  line-height: 1.25;
  margin-bottom: 10px;
}
.guide-card p {
  font-size: 13px;
  color: var(--walnut-soft);
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}
.guide-card-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px;
  border-top: 0.5px solid rgba(43,26,14,0.12);
  font-size: 12px;
  color: var(--walnut-soft);
}
.guide-card-foot .arrow {
  color: var(--terracotta);
  font-family: 'Frank Ruhl Libre', serif;
  font-style: italic;
  font-size: 18px;
}

/* ============ GALLERY ============ */
.gallery-section { background: var(--cream); padding: 80px 36px; }
.gallery-inner { max-width: 1400px; margin: 0 auto; }

/* ============ GALLERY FILTER BAR ============ */
.gallery-filter-bar {
  display: flex; gap: 8px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 48px;
}
.gf-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 22px; border-radius: 999px;
  border: 1.5px solid rgba(74,53,32,0.18);
  background: transparent; color: var(--walnut-soft);
  font-size: 14px; font-weight: 500; cursor: pointer;
  font-family: 'Assistant', sans-serif;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.gf-btn:hover { border-color: var(--walnut); color: var(--walnut); background: var(--cream-soft); }
.gf-btn.active { background: var(--walnut); color: var(--cream); border-color: var(--walnut); }
.gf-count {
  font-size: 12px; opacity: 0.65; font-weight: 400;
}
.gf-btn.active .gf-count { opacity: 0.75; }

/* ============ GALLERY MASONRY ============ */
.gallery-masonry {
  columns: 4 200px;
  gap: 12px;
}
@keyframes cardFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
.gallery-card {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: default;
  animation: cardFadeIn 0.4s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.gallery-card img {
  width: 100%; display: block;
  transition: transform 0.4s ease;
}
.gallery-card:hover img { transform: scale(1.04); }
.gallery-card-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px 12px 12px;
  background: linear-gradient(to top, rgba(20,12,6,0.72), transparent);
  color: var(--cream);
  opacity: 0; transform: translateY(4px);
  transition: opacity 0.25s, transform 0.25s;
}
.gallery-card:hover .gallery-card-cap { opacity: 1; transform: translateY(0); }
.gallery-card-meta {
  font-size: 10px; font-weight: 600; letter-spacing: 0.8px;
  text-transform: uppercase; opacity: 0.75; margin-bottom: 2px;
}
.gallery-card-title {
  font-family: 'Frank Ruhl Libre', serif; font-size: 14px; font-weight: 400;
}
.gallery-loading {
  text-align: center; padding: 80px 20px;
  color: var(--walnut-soft); font-size: 16px; grid-column: 1/-1;
}

.gallery-load-more-wrap {
  text-align: center;
  margin-top: 36px;
}
.gallery-load-more {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 36px; border-radius: 999px;
  border: 1.5px solid rgba(74, 53, 32, 0.25);
  background: transparent; color: var(--walnut-soft);
  font-size: 14px; font-weight: 500; cursor: pointer;
  font-family: 'Assistant', sans-serif;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.gallery-load-more:hover {
  border-color: var(--walnut);
  color: var(--walnut);
  background: var(--cream-soft);
}

/* coming-soon play button variant */
.ecp-soon { opacity: 0.6; }
@media (max-width: 1024px) {
  .gallery-masonry { columns: 3 180px; gap: 10px; }
  .gallery-card { margin-bottom: 10px; }
}
@media (max-width: 640px) {
  .gallery-masonry { columns: 2 140px; gap: 8px; }
  .gallery-card { margin-bottom: 8px; border-radius: 10px; }
}

.gallery-grid {
  column-count: 3;
  column-gap: 16px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.35s, box-shadow 0.35s;
  display: block;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -12px rgba(43,26,14,0.18);
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20,12,6,0.8));
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
  color: var(--cream);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay .meta {
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--terracotta-soft);
  font-weight: 600;
  margin-bottom: 4px;
}
.gallery-item-overlay h4 {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 18px; font-weight: 500;
}

/* ============ RENOVATION (used on workshops/gallery) ============ */
.renovation-section {
  background: var(--cream-dark);
  position: relative;
  margin-bottom: 0;
}
.renovation-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px; margin: 0 auto;
  padding: 90px 44px;
}
.renovation-left .eyebrow { margin-bottom: 14px; display: block; }
.renovation-h2 {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
  margin-bottom: 20px;
}
.renovation-h2 .italic { font-style: italic; color: var(--terracotta-dark); }
.renovation-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--walnut-soft);
  margin-bottom: 24px;
}
.renovation-list { list-style: none; margin-bottom: 32px; }
.renovation-list li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px 0;
  font-size: 14px;
  color: var(--walnut);
  border-bottom: 0.5px solid rgba(43,26,14,0.1);
}
.renovation-list li:last-child { border-bottom: 0; }
.renovation-bullet {
  color: var(--terracotta);
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 600;
  flex-shrink: 0;
}
.renovation-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.renovation-gallery-img {
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  transition: transform 0.3s;
}
.renovation-gallery-img:hover { transform: scale(1.02); }
.renovation-gallery-img.tall { aspect-ratio: 3/5; }
.renovation-gallery-img.short { aspect-ratio: 3/3; }

/* ============ TESTIMONIALS / RECOMMENDATIONS ============ */
.testimonials-section {
  background: var(--cream);
  padding: 130px 44px;
  position: relative;
}
.testimonials-inner { max-width: 1400px; margin: 0 auto; }
.big-quote {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 70px;
}
.big-quote blockquote {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  color: var(--walnut);
  text-wrap: balance;
}

/* Decorative dash above pull-quotes */
.quote-dash {
  width: 56px;
  height: 2px;
  background: var(--terracotta);
  margin: 0 auto 28px;
  border-radius: 2px;
}
.small-quote .quote-dash {
  width: 40px;
  margin: 0 0 18px;
}
.big-quote blockquote .italic {
  font-style: italic; color: var(--terracotta-dark);
}
.small-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.small-quote {
  background: var(--cream-soft);
  padding: 28px;
  border-radius: 16px;
  position: relative;
}
.small-quote p {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 18.5px; line-height: 1.6;
  font-style: italic;
  margin-bottom: 18px;
  color: var(--walnut);
}
.small-quote-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px;
  border-top: 0.5px solid rgba(43,26,14,0.12);
}
.small-quote-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--terracotta-soft);
  color: var(--walnut);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 13px;
  font-family: 'Assistant', sans-serif;
}
.small-quote-name {
  font-size: 13px; font-weight: 600; color: var(--walnut);
}
.small-quote-role {
  font-size: 11px; color: var(--walnut-soft); letter-spacing: 1px;
  text-transform: uppercase; font-weight: 500;
}

/* ============ ABOUT ============ */
.about-section {
  background: var(--walnut);
  color: var(--cream);
  padding: 130px 44px;
  border-radius: 40px 40px 0 0;
}
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  aspect-ratio: 4/5;
  background-image: url('images/img-02.jpeg');
  background-size: cover;
  background-position: center;
  border-radius: 20px;
}
.about-right {
  padding-inline-start: 24px;
}
.about-right .eyebrow {
  color: var(--terracotta-soft);
  margin-bottom: 14px;
  display: block;
}
.about-h2 {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: clamp(44px, 5.4vw, 66px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
  margin-bottom: 28px;
  text-wrap: balance;
}
.about-h2 .italic { font-style: italic; color: var(--terracotta-soft); }
.about-text {
  font-size: 18px; line-height: 1.7;
  color: rgba(250,244,232,0.85);
  margin-bottom: 20px;
}
.about-quote {
  font-family: 'Frank Ruhl Libre', serif;
  font-style: italic;
  font-size: 23px;
  color: var(--terracotta-soft);
  border-right: 2px solid var(--terracotta);
  padding: 10px 20px 10px 0;
  margin: 28px 0;
  line-height: 1.5;
}
.about-right .btn {
  font-size: 19px;
  padding: 22px 44px;
  margin-top: 8px;
}

/* ============ CONTACT FORM ============ */
.contact-section {
  background: var(--terracotta);
  color: var(--cream);
  padding: 100px 44px;
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: ''; position: absolute;
  top: -100px; right: -80px;
  width: 300px; height: 300px;
  background: rgba(250,244,232,0.08);
  border-radius: 50%;
}
.contact-section::after {
  content: ''; position: absolute;
  bottom: -120px; left: -60px;
  width: 360px; height: 360px;
  background: rgba(43,26,14,0.12);
  border-radius: 50%;
}
.contact-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.contact-left .eyebrow {
  color: rgba(250,244,232,0.85);
  margin-bottom: 18px;
  display: inline-block;
}
.contact-h2 {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: clamp(46px, 5.8vw, 72px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
  color: var(--cream);
  margin-bottom: 24px;
}
.contact-h2 .italic { font-style: italic; color: var(--cream-soft); }
.contact-p {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 19px;
  line-height: 1.6;
  color: rgba(250,244,232,0.92);
  margin-bottom: 28px;
}
.contact-list {
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 28px;
}
.contact-list-item {
  display: flex; align-items: center; gap: 14px;
  font-size: 15.5px; color: var(--cream);
}
.contact-list-icon {
  width: 36px; height: 36px;
  background: rgba(250,244,232,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream); flex-shrink: 0;
}
.contact-sig {
  font-family: 'Caveat', cursive;
  font-size: 28px;
  color: var(--cream-soft);
  font-weight: 600;
}
.contact-form {
  background: rgba(43,26,14,0.25);
  border: 1px solid rgba(250,244,232,0.18);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(10px);
}
.contact-form-title {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 6px;
}
.contact-form-sub {
  font-size: 13px;
  color: rgba(250,244,232,0.7);
  margin-bottom: 22px;
}
.form-field { margin-bottom: 14px; }
.form-field label {
  display: block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(250,244,232,0.7);
  font-weight: 600;
  margin-bottom: 6px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: rgba(250,244,232,0.08);
  border: 1px solid rgba(250,244,232,0.2);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 15.5px;
  color: var(--cream);
  font-family: 'Assistant', sans-serif;
  transition: border-color 0.2s, background 0.2s;
  direction: rtl;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(250,244,232,0.4); }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--cream);
  background: rgba(250,244,232,0.12);
}
.form-field textarea { min-height: 90px; resize: vertical; }
/* Native dropdown options render on a system (usually white) bg, so cream text
   would be near-invisible. Force a readable dark-on-cream pairing. */
.form-field select option { color: var(--ink); background: var(--cream); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit {
  width: 100%;
  background: var(--cream);
  color: var(--terracotta-dark);
  border: 0;
  border-radius: 999px;
  padding: 16px;
  font-size: 15.5px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.25s;
  font-family: 'Assistant', sans-serif;
}
.form-submit:hover {
  background: var(--walnut);
  color: var(--cream);
  transform: translateY(-2px);
}

/* ============ HOMEPAGE NAV CARDS (replaces pillars) ============ */
.nav-cards-section {
  background: var(--cream);
  padding: 90px 44px;
}
.nav-cards-inner { max-width: 1400px; margin: 0 auto; }
.nav-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.nav-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  background-size: cover;
  background-position: center;
  color: var(--cream);
  text-decoration: none;
  transition: transform 0.4s, box-shadow 0.4s;
}
.nav-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,12,6,0.05) 0%, rgba(20,12,6,0.2) 35%, rgba(20,12,6,0.85) 100%);
  z-index: 1;
  transition: opacity 0.4s;
}
.nav-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -16px rgba(43,26,14,0.3);
}
.nav-card:hover::before { opacity: 0.85; }
.nav-card-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.nav-card-num {
  font-family: 'Frank Ruhl Libre', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--terracotta-soft);
  margin-bottom: 8px;
  letter-spacing: 1.5px;
}
.nav-card h3 {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--cream);
}
.nav-card h3 .italic { font-style: italic; color: var(--terracotta-soft); font-weight: 400; }
.nav-card p {
  font-size: 16px;
  color: rgba(250,244,232,0.88);
  line-height: 1.6;
  margin-bottom: 16px;
}
.nav-card-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--terracotta-soft);
}
.nav-card-arrow .arrow-line {
  display: inline-block;
  width: 30px; height: 1px;
  background: var(--terracotta-soft);
  transition: width 0.3s;
}
.nav-card:hover .arrow-line { width: 44px; }

/* ============ FOOTER ============ */
footer {
  background: var(--walnut);
  padding: 68px 44px 28px;
}
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 0.5px solid rgba(250,244,232,0.12);
}
.footer-brand-img {
  height: 158px;
  width: auto;
  display: block;
  margin-bottom: 20px;
  user-select: none;
  -webkit-user-drag: none;
  filter: brightness(0) invert(1) sepia(1) saturate(0.3) brightness(0.95);
}
.footer-brand-sub {
  font-size: 11.5px; letter-spacing: 2.5px;
  color: var(--terracotta-soft);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-brand-desc {
  font-size: 14.5px; color: rgba(250,244,232,0.55);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col-title {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 17px; font-weight: 500;
  color: var(--cream);
  margin-bottom: 18px;
}
.footer-links {
  display: flex; flex-direction: column; gap: 13px;
  font-size: 15px;
}
.footer-links a {
  color: rgba(250,244,232,0.55);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--terracotta-soft); }
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: rgba(250,244,232,0.35);
}
.footer-bottom .made {
  color: rgba(250,244,232,0.35);
}
.footer-bottom .made a {
  color: rgba(250,244,232,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom .made a:hover { color: var(--terracotta-soft); }

.icon-sm { width: 14px; height: 14px; flex-shrink: 0; }

/* ============ FLOATING WHATSAPP — custom honey pill ============ */
.float-wa {
  position: fixed;
  bottom: 22px; left: 22px;
  z-index: 99;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px 16px 18px;
  border-radius: 999px;
  background: var(--walnut);
  color: var(--cream);
  text-decoration: none;
  font-family: 'Assistant', sans-serif;
  font-weight: 600;
  font-size: 16px;
  border: 1px solid var(--honey);
  box-shadow: 0 12px 32px -10px rgba(58,40,24,0.5);
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1), box-shadow 0.3s, background 0.3s;
  overflow: hidden;
}
.float-wa::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(235,201,115,0.25) 50%, transparent 65%);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
  pointer-events: none;
}
.float-wa:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -12px rgba(58,40,24,0.55); background: var(--ink); }
.float-wa:hover::before { transform: translateX(100%); }
.float-wa-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--honey);
  color: var(--walnut);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.18);
}
.float-wa-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
  text-align: right;
}
.float-wa-text .main { font-size: 16.5px; font-weight: 600; color: var(--cream); }
.float-wa-text .sub  {
  font-family: 'Frank Ruhl Libre', serif; font-style: italic;
  font-size: 12px; color: var(--honey-soft); margin-top: 2px;
}
.float-wa-pulse {
  position: absolute;
  top: 8px; right: 14px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--honey-soft);
  box-shadow: 0 0 0 0 rgba(235,201,115,0.7);
  animation: floatPulse 2.4s ease-out infinite;
}
@keyframes floatPulse {
  0%   { box-shadow: 0 0 0 0 rgba(235,201,115,0.55); }
  70%  { box-shadow: 0 0 0 11px rgba(235,201,115,0); }
  100% { box-shadow: 0 0 0 0 rgba(235,201,115,0); }
}

/* Honor reduced-motion for the remaining always-on motion: the WhatsApp
   pulse/shimmer, the marquee, and smooth scrolling. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .float-wa-pulse { animation: none; }
  .float-wa::before { transition: none; }
  .marquee-track { animation: none; }
}

/* ============ SOCIAL ICONS (nav top bar) ============ */
.nav-social {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 4px 4px 8px;
  border-right: 1px solid rgba(74,53,32,0.12);
  margin-right: 4px;
}
.nav-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--walnut-soft);
  transition: color 0.2s, background 0.2s, transform 0.2s;
}
.nav-social a:hover {
  color: var(--honey-dark);
  background: var(--honey-pale);
  transform: translateY(-1px);
}
.nav-social svg { width: 20px; height: 20px; }
.nav-menu .nav-social { display: none; }

/* ============ "WHO IS THIS FOR" — home section ============ */
.audience-section {
  background: var(--cream);
  padding: 120px 44px;
}
.audience-inner { max-width: 1400px; margin: 0 auto; }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.audience-card {
  position: relative;
  background: var(--cream-soft);
  border: 1px solid rgba(74,53,32,0.08);
  border-radius: 18px;
  padding: 28px 26px 26px;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
  overflow: hidden;
}
.audience-card:hover {
  transform: translateY(-4px);
  background: var(--cream);
  border-color: rgba(200,154,61,0.4);
}
.audience-card-num {
  font-family: 'Frank Ruhl Libre', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--honey-dark);
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.audience-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--honey-pale);
  color: var(--honey-dark);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.audience-card h3 {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 25px;
  font-weight: 500;
  color: var(--walnut);
  margin-bottom: 10px;
  line-height: 1.2;
}
.audience-card p {
  font-size: 15.5px;
  color: var(--walnut-soft);
  line-height: 1.65;
}

/* ============ HOME TEASER (workshops / tutorials / gallery sections on home) ============ */
.teaser-section {
  padding: 120px 44px;
  position: relative;
}
.teaser-section.alt-bg { background: var(--cream-soft); }
.teaser-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.teaser-section.flip .teaser-inner { grid-template-columns: 1.2fr 1fr; direction: ltr; }
.teaser-section.flip .teaser-inner > * { direction: rtl; }
.teaser-text {
  padding-inline-start: 24px;
}
.teaser-text .eyebrow { display: inline-block; margin-bottom: 14px; }
.teaser-h2 {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: clamp(40px, 4.8vw, 58px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
  margin-bottom: 22px;
  color: var(--walnut);
  text-wrap: balance;
}
.teaser-h2 .italic { font-style: italic; color: var(--honey-dark); }
.teaser-p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--walnut-soft);
  margin-bottom: 28px;
  max-width: 520px;
}
.teaser-bullets {
  list-style: none;
  margin-bottom: 28px;
}
.teaser-bullets li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0;
  font-size: 16px; color: var(--walnut);
  line-height: 1.55;
  border-bottom: 0.5px dashed rgba(74,53,32,0.18);
}
.teaser-bullets li:last-child { border-bottom: 0; }
.teaser-bullets-mark {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--honey-dark);
  margin-top: 11px;
}
.teaser-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.teaser-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 500px;
}
.teaser-visual .tv-img {
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
}
.teaser-visual .tv-img:hover { transform: scale(1.015); }
.teaser-visual .tv-1 { grid-row: 1 / 3; }
.teaser-visual .tv-2 { }
.teaser-visual .tv-3 { }
.teaser-visual .tv-tag {
  position: absolute;
  bottom: 14px; right: 14px;
  background: rgba(58,40,24,0.7);
  color: var(--cream);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  font-weight: 600;
}
.teaser-visual-stamp {
  position: absolute;
  top: -22px; left: -16px;
  background: var(--honey);
  color: var(--walnut);
  width: 100px; height: 100px;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-family: 'Caveat', cursive;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  transform: rotate(-12deg);
  box-shadow: 0 12px 28px -10px rgba(154,115,32,0.5);
  z-index: 3;
}
.teaser-visual-stamp .num { font-size: 32px; margin-bottom: 4px; }
.teaser-visual-stamp .lbl { font-size: 13px; letter-spacing: 0.5px; opacity: 0.85; padding: 0 8px; }

/* Tutorials teaser — square cards with platform tags */
.platform-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.platform-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--cream);
  border: 1px solid rgba(74,53,32,0.1);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--walnut);
  letter-spacing: 0.5px;
}
.platform-tag svg { width: 14px; height: 14px; }
.platform-tag.ig { color: #c13584; }
.platform-tag.tt { color: var(--walnut); }
.platform-tag.yt { color: #cc0000; }

/* ============ FAQ ACCORDION ============ */
.faq-section {
  background: var(--cream-soft);
  padding: 110px 44px;
}
.faq-inner { max-width: 900px; margin: 0 auto; }
.faq-list { margin-top: 44px; }
.faq-item {
  border-bottom: 1px solid rgba(74,53,32,0.14);
  padding: 4px 0;
}
.faq-item:first-child { border-top: 1px solid rgba(74,53,32,0.14); }
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 24px 4px;
  display: flex; align-items: center; gap: 16px;
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 23.5px;
  font-weight: 500;
  color: var(--walnut);
  text-align: right;
  cursor: pointer;
  transition: color 0.2s, gap 0.25s;
  direction: rtl;
}
.faq-q:hover { color: var(--honey-dark); gap: 22px; }
.faq-q-mark {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid rgba(74,53,32,0.15);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--honey-dark);
  font-family: 'Frank Ruhl Libre', serif; font-style: italic;
  font-size: 16px;
  transition: transform 0.3s, background 0.25s, color 0.25s;
}
.faq-item[open] .faq-q-mark {
  transform: rotate(45deg);
  background: var(--honey);
  color: var(--walnut);
  border-color: var(--honey);
}
.faq-q-num {
  font-family: 'Frank Ruhl Libre', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--honey-dark);
  margin-left: 6px;
  flex-shrink: 0;
  opacity: 0.7;
}
.faq-q-text { flex: 1; }
.faq-a {
  padding: 0 54px 24px 4px;
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--walnut-soft);
  max-width: 800px;
}
.faq-a strong { color: var(--walnut); font-weight: 600; }
/* Animate open/close */
.faq-item { overflow: hidden; }
.faq-item summary { list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }

/* ============ WORKSHOPS GRID v2 — animated reveal grid w/ expand ============ */
.workshops-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 60px;
}
.workshop-card-v2 {
  position: relative;
  background: var(--cream-soft);
  border: 1px solid rgba(74,53,32,0.08);
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1), box-shadow 0.45s, border-color 0.3s;
  display: flex; flex-direction: column;
}
.workshop-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -22px rgba(74,53,32,0.25);
  border-color: rgba(200,154,61,0.5);
}
.workshop-card-v2 .wcv-img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.workshop-card-v2 .wcv-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(58,40,24,0.4));
}
.workshop-card-v2 .wcv-num {
  position: absolute;
  top: 18px; right: 18px;
  font-family: 'Frank Ruhl Libre', serif; font-style: italic;
  background: var(--cream);
  color: var(--honey-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 1px;
  z-index: 2;
  box-shadow: 0 8px 18px -6px rgba(58,40,24,0.3);
}
.workshop-card-v2 .wcv-body {
  padding: 24px 26px 26px;
  display: flex; flex-direction: column;
  flex: 1;
}
.workshop-card-v2 h3 {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 27px;
  font-weight: 500;
  color: var(--walnut);
  margin-bottom: 12px;
  line-height: 1.2;
}
.workshop-card-v2 .wcv-desc {
  font-size: 15.5px;
  color: var(--walnut-soft);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}
.workshop-card-v2 .wcv-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--walnut-soft);
  font-weight: 500;
  padding-top: 14px;
  border-top: 0.5px dashed rgba(74,53,32,0.2);
  margin-bottom: 16px;
}
.workshop-card-v2 .wcv-meta b { color: var(--walnut); font-weight: 600; }
.workshop-card-v2 .wcv-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 0.5px solid rgba(74,53,32,0.12);
}
.workshop-card-v2 .wcv-price-from {
  font-size: 11px;
  color: var(--walnut-soft);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.workshop-card-v2 .wcv-price-num {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 30px;
  font-weight: 500;
  color: var(--honey-dark);
}
.workshop-card-v2 .wcv-price-num small {
  font-size: 13px;
  color: var(--walnut-soft);
  font-weight: 400;
  margin-right: 4px;
}
.workshop-card-v2 .wcv-toggle {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--honey-dark);
  cursor: pointer;
  background: transparent;
  border: 0;
  padding: 0;
  font-family: 'Assistant', sans-serif;
}
.workshop-card-v2 .wcv-toggle .arrow {
  transition: transform 0.3s;
  font-style: italic;
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 18px;
}
.workshop-card-v2.is-open { grid-column: span 3; }
.workshop-card-v2.is-open .wcv-toggle .arrow { transform: rotate(90deg); }
.workshop-card-v2.is-open .wcv-img { aspect-ratio: 21/9; }
.workshop-card-v2 .wcv-detail {
  display: none;
  padding: 22px 26px 26px;
  border-top: 1px dashed rgba(74,53,32,0.18);
  background: var(--cream);
}
.workshop-card-v2.is-open .wcv-detail { display: grid; grid-template-columns: 1.4fr 1fr; gap: 30px; }
.wcv-detail-block .eyebrow { display: block; margin-bottom: 8px; }
.wcv-detail-block h4 {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 19px;
  color: var(--walnut);
  font-weight: 500;
  margin-bottom: 12px;
}
.wcv-detail-block ul { list-style: none; }
.wcv-detail-block ul li {
  font-size: 15px;
  color: var(--walnut-soft);
  padding: 6px 0;
  display: flex; gap: 8px;
  line-height: 1.55;
}
.wcv-detail-block ul li::before {
  content: '·';
  color: var(--honey);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}
.wcv-detail-block .note {
  margin-top: 14px;
  padding: 12px 16px;
  background: var(--honey-pale);
  border: 1px solid rgba(200,154,61,0.3);
  border-radius: 10px;
  font-size: 13px;
  color: var(--walnut);
  font-family: 'Frank Ruhl Libre', serif;
  font-style: italic;
}
.wcv-detail .wcv-cta {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px;
}

/* ============ TUTORIALS — three columns ============ */
.tut-three-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 50px;
}
.tut-col-card {
  background: var(--cream-soft);
  border-radius: 22px;
  border: 1px solid rgba(74,53,32,0.08);
  border-top: 3px solid var(--honey);
  padding: 28px 22px 24px;
  transition: transform 0.35s, box-shadow 0.35s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}
.tut-col-card:nth-child(2) { border-top-color: var(--terracotta); }
.tut-col-card:nth-child(3) { border-top-color: var(--walnut-soft); }
.tut-col-card:nth-child(4) { border-top-color: var(--honey-dark); }
.tut-col-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px -10px rgba(74,53,32,0.20);
}
.tut-col-card .tcc-num {
  position: absolute;
  bottom: -14px;
  left: -2px;
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 96px;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  color: var(--walnut);
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
}
.tut-col-card h3 {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 27px; font-weight: 500;
  color: var(--walnut);
  margin-bottom: 8px;
  line-height: 1.2;
  position: relative;
}
.tut-col-card .tcc-sub {
  font-family: 'Frank Ruhl Libre', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--honey-dark);
  margin-bottom: 14px;
  position: relative;
}
.tut-col-card .tcc-desc {
  font-size: 15.5px;
  color: var(--walnut-soft);
  line-height: 1.65;
  position: relative;
}

/* Embedded videos grid (per category) */
.embed-section { padding: 64px 44px; max-width: 1400px; margin: 0 auto; position: relative; }
.embed-section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; margin-bottom: 36px; flex-wrap: wrap;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(74,53,32,0.12);
}
.embed-section-header .left { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.embed-section-header h3 {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 36px; font-weight: 500;
  color: var(--walnut);
}
.embed-section-header h3 .italic { font-style: italic; color: var(--honey-dark); }
.embed-section-header .count {
  font-size: 13px;
  font-weight: 400;
  font-style: italic;
  font-family: 'Frank Ruhl Libre', serif;
  color: var(--walnut-soft);
  white-space: nowrap;
}

.embed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
#basics-grid { grid-template-columns: repeat(3, 1fr); }
.embed-card {
  background: var(--cream-soft);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(74,53,32,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column;
  cursor: pointer;
}
.embed-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px -8px rgba(74,53,32,0.22);
}
.embed-card-thumb {
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  background-color: var(--walnut);
  position: relative;
  overflow: hidden;
}
.embed-card-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(58,40,24,0.7));
  pointer-events: none;
}
.embed-card-thumb[data-playing]::after { display: none; }
.embed-card-thumb iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: 0;
}
/* Once playing, lock the card in place — the hover-lift jitter makes
   controls at the bottom of the player unreachable */
.embed-card:has(.embed-card-thumb[data-playing]),
.embed-card:has(.embed-card-thumb[data-playing]):hover {
  transform: none;
  box-shadow: none;
  cursor: default;
}
.embed-card-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  background: var(--honey);
  color: var(--walnut);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: transform 0.3s, background 0.25s;
  box-shadow: 0 12px 24px -8px rgba(154,115,32,0.6);
}
.embed-card:hover .embed-card-play { transform: translate(-50%, -50%) scale(1.1); background: var(--honey-soft); }
.embed-card-platform {
  position: absolute;
  top: 10px; right: 10px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  z-index: 2;
  background: rgba(255,255,255,0.9);
  color: var(--walnut);
  backdrop-filter: blur(6px);
}
.embed-card-platform[data-platform="YouTube"]  { background: rgba(220,38,38,0.9); color: #fff; backdrop-filter: none; }
.embed-card-platform[data-platform="Instagram"] { background: linear-gradient(135deg,#f09433,#dc2743,#bc1888); color: #fff; backdrop-filter: none; }
.embed-card-platform[data-platform="TikTok"]   { background: rgba(18,18,18,0.88); color: #fff; backdrop-filter: blur(4px); }
.embed-card-body {
  padding: 16px 18px;
  flex: 1;
}
.embed-card-body h4 {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 18px; font-weight: 500;
  color: var(--walnut);
  line-height: 1.3;
  margin-bottom: 8px;
}
.embed-card-body .meta {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--terracotta-dark);
  background: rgba(184,81,44,0.10);
  padding: 3px 9px;
  border-radius: 999px;
}

.vid-carousel { display: block; }
.vid-track-wrap { overflow: visible; }
.vid-nav { display: none; }
/* .embed-card-platform is shown — see rule above with data-platform color variants */

/* ============ GALLERY v2 — non-generic creative grid ============ */
.gallery-grid-v2 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 140px;
  gap: 14px;
}
.gv2-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
}
.gv2-item:hover { transform: scale(1.015); }
.gv2-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(58,40,24,0.75));
  opacity: 0;
  transition: opacity 0.35s;
}
.gv2-item:hover::after { opacity: 1; }
.gv2-item .gv2-cap {
  position: absolute;
  bottom: 0; right: 0; left: 0;
  padding: 16px 18px;
  color: var(--cream);
  z-index: 2;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.35s, opacity 0.35s;
}
.gv2-item:hover .gv2-cap { transform: none; opacity: 1; }
.gv2-cap .meta { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--honey-soft); margin-bottom: 4px; font-weight: 600; }
.gv2-cap h4 { font-family: 'Frank Ruhl Libre', serif; font-size: 19px; font-weight: 500; line-height: 1.2; }

/* Specific cell shapes — creates the "non-generic" rhythm */
.gv2-1  { grid-column: span 3; grid-row: span 2; }
.gv2-2  { grid-column: span 2; grid-row: span 2; }
.gv2-3  { grid-column: span 1; grid-row: span 2; }
.gv2-4  { grid-column: span 2; grid-row: span 3; }
.gv2-5  { grid-column: span 2; grid-row: span 2; }
.gv2-6  { grid-column: span 2; grid-row: span 1; }
.gv2-7  { grid-column: span 2; grid-row: span 2; }
.gv2-8  { grid-column: span 2; grid-row: span 2; }
.gv2-9  { grid-column: span 2; grid-row: span 2; }
.gv2-10 { grid-column: span 3; grid-row: span 2; }
.gv2-11 { grid-column: span 3; grid-row: span 2; }
.gv2-12 { grid-column: span 2; grid-row: span 2; }
.gv2-13 { grid-column: span 2; grid-row: span 2; }
.gv2-14 { grid-column: span 2; grid-row: span 2; }

/* Decorative "stamp" overlay on a gallery cell */
.gv2-stamp {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--honey);
  color: var(--walnut);
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 18px;
  padding: 6px 14px;
  border-radius: 999px;
  z-index: 3;
  transform: rotate(-4deg);
  box-shadow: 0 10px 22px -8px rgba(154,115,32,0.4);
}

/* ============ GALLERY — masonry tilt with lift-up scroll exit ============ */
.tilt-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  grid-auto-flow: dense;
  gap: 14px;
}

.tilt-figure {
  position: relative;
  margin: 0;
  /* per-tile values written from JS each frame */
  --ty: 0px;
  --scale: 1;
  --rot: 0deg;
  --op: 1;
  /* per-tile exit-direction sign — set in CSS below per nth-child for character */
  --dir: 1;
}

/* Alternate exit-rotation direction by position for a little organic rhythm */
.tilt-figure:nth-child(3n) { --dir: -1; }
.tilt-figure:nth-child(3n+2) { --dir: -1; }

/* Masonry shapes — varied but reasonable aspect ratios so portraits don't crop heads */
.tilt-fig-1  { grid-column: span 3; grid-row: span 2; }
.tilt-fig-2  { grid-column: span 3; grid-row: span 2; }
.tilt-fig-3  { grid-column: span 2; grid-row: span 3; }
.tilt-fig-4  { grid-column: span 2; grid-row: span 2; }
.tilt-fig-5  { grid-column: span 2; grid-row: span 2; }
.tilt-fig-6  { grid-column: span 3; grid-row: span 2; }
.tilt-fig-7  { grid-column: span 3; grid-row: span 2; }
.tilt-fig-8  { grid-column: span 2; grid-row: span 3; }
.tilt-fig-9  { grid-column: span 2; grid-row: span 2; }
.tilt-fig-10 { grid-column: span 2; grid-row: span 2; }
.tilt-fig-11 { grid-column: span 3; grid-row: span 2; }
.tilt-fig-12 { grid-column: span 3; grid-row: span 2; }
.tilt-fig-13 { grid-column: span 2; grid-row: span 2; }
.tilt-fig-14 { grid-column: span 2; grid-row: span 2; }

.tilt-tile {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 14px;
  background: var(--walnut);
  box-shadow: 0 24px 50px -28px rgba(43,26,14,0.45);
  will-change: transform, opacity;
  transform: translate3d(0, var(--ty), 0) scale(var(--scale)) rotate(calc(var(--rot) * var(--dir)));
  opacity: var(--op);
}

.tilt-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  /* Bias toward top of frame so people's heads aren't cropped on wide tiles */
  background-position: center 25%;
}

/* Caption + stamp ride the tile (already clipped + faded via opacity on parent) */
.tilt-tile .gv2-cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px 18px;
  color: var(--cream);
  z-index: 2;
  background: linear-gradient(180deg, transparent, rgba(43,26,14,0.85));
}
.tilt-tile .gv2-cap .meta { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--honey-soft); margin-bottom: 4px; font-weight: 600; }
.tilt-tile .gv2-cap h4 { font-family: 'Frank Ruhl Libre', serif; font-size: 19px; font-weight: 500; line-height: 1.2; }
.tilt-tile .gv2-stamp { z-index: 3; }

@media (prefers-reduced-motion: reduce) {
  .tilt-figure { --ty: 0px; --scale: 1; --rot: 0deg; --op: 1; }
}

@media (max-width: 900px) {
  .tilt-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 140px; gap: 10px; }
  .tilt-fig-1, .tilt-fig-2, .tilt-fig-6, .tilt-fig-7, .tilt-fig-11, .tilt-fig-12 { grid-column: span 4; grid-row: span 2; }
  .tilt-fig-3, .tilt-fig-8 { grid-column: span 2; grid-row: span 3; }
  .tilt-fig-4, .tilt-fig-5, .tilt-fig-9, .tilt-fig-10, .tilt-fig-13, .tilt-fig-14 { grid-column: span 2; grid-row: span 2; }
  .tilt-tile { border-radius: 12px; }
  .tilt-tile .gv2-cap { padding: 12px 14px; }
  .tilt-tile .gv2-cap h4 { font-size: 16px; }
}

/* ============ MOBILE NAV TOGGLE ============ */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  align-items: center; justify-content: center;
  color: var(--walnut);
  transition: background 0.2s ease;
}
.nav-toggle:hover { background: var(--honey-pale); }
.nav-toggle svg { width: 22px; height: 22px; }

/* ============ MOBILE ============ */
@media (max-width: 900px) {
  nav.nav { top: 12px; right: 12px; left: 12px; padding: 8px 10px 8px 14px; }
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: absolute;
    top: calc(100% + 10px); right: 0; left: 0;
    flex-direction: column;
    background: var(--cream);
    border: 1px solid rgba(74,53,32,0.10);
    border-radius: 22px;
    padding: 14px 20px;
    gap: 2px;
    box-shadow: 0 22px 44px -16px rgba(43,26,14,0.22);
    display: none;
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu > a {
    padding: 13px 6px;
    border-bottom: 1px solid rgba(74,53,32,0.08);
  }
  .nav-menu > a:last-of-type { border-bottom: 0; }
  .nav-menu > a::after { display: none; }
  .nav-phone { display: none; }
  .nav-logo-img { height: 46px; }
  .footer-brand-img { height: 110px; }

  .hero {
    min-height: clamp(560px, 88svh, 760px);
    padding: 110px 20px 52px;
  }
  .hero-img { object-position: 50% 45%; }
  /* On a narrow screen the copy spans full width, so darken from the
     bottom instead of the left. */
  .hero-scrim {
    background: linear-gradient(0deg,
      rgba(20,12,6,0.92) 0%, rgba(20,12,6,0.66) 26%,
      rgba(20,12,6,0.24) 52%, transparent 82%);
  }
  .hero-text { max-width: none; }
  .hero h1 { max-width: 14ch; }
  .hero-sub { font-size: 17px; }
  .hero-ctas .btn { flex: 1 1 auto; justify-content: center; }

  .page-hero { height: auto; min-height: 360px; padding: 110px 20px 60px; }

  section.content, .renovation-inner, .testimonials-section, .about-section, .contact-section, .process-section, .nav-cards-section, .gallery-section {
    padding-left: 20px; padding-right: 20px;
  }
  section.content { padding-top: 60px; padding-bottom: 60px; }
  .testimonials-section, .about-section, .contact-section, .process-section, .nav-cards-section, .gallery-section { padding-top: 70px; padding-bottom: 70px; }

  .workshops-grid { grid-template-columns: 1fr; }
  .workshop-card.feature { grid-column: span 1; flex-direction: column; }
  .workshop-card.feature .workshop-img { min-height: 220px; }
  .workshop-card.feature .workshop-body { padding: 24px 28px 28px; }
  .workshop-card.feature .workshop-title { font-size: 28px; }

  .pricing-panel { grid-template-columns: 1fr; }

  .process-grid { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .process-step::before { display: none; }

  .video-grid { grid-template-columns: 1fr; }
  .video-col { flex-direction: row; }
  .video-big { aspect-ratio: 3/4; }

  .renovation-inner { grid-template-columns: 1fr; gap: 40px; padding: 70px 20px; }

  .small-quotes { grid-template-columns: 1fr; }

  .about-inner { grid-template-columns: 1fr; gap: 36px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .video-section, .about-section, .process-section, .tutorials-section { border-radius: 24px 24px 0 0; }

  .nav-cards-grid { grid-template-columns: 1fr; }
  .nav-card { min-height: 280px; }

  .tutorials-stats { grid-template-columns: 1fr 1fr; gap: 14px; padding: 20px; }
  .tut-stat-num { font-size: 30px; }

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

  .gallery-grid { column-count: 2; column-gap: 12px; }
  .gallery-item { margin-bottom: 12px; }

  .float-wa { bottom: 14px; left: 14px; padding: 10px 16px 10px 12px; }
  .float-wa-text .sub { display: none; }
  .float-wa-icon { width: 30px; height: 30px; }

  /* Audience grid — 2×3 so all 6 cards are visible as a set */
  .audience-section { padding: 70px 20px; }
  .audience-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .audience-card { padding: 18px 16px 16px; }
  .audience-card h3 { font-size: 18px; }
  .audience-card p { font-size: 13.5px; line-height: 1.5; }
  .audience-card-icon { width: 36px; height: 36px; border-radius: 10px; margin-bottom: 12px; }

  /* Teaser sections — stack */
  .teaser-section { padding: 70px 20px; }
  .teaser-inner, .teaser-section.flip .teaser-inner {
    grid-template-columns: 1fr; gap: 36px; direction: rtl;
  }
  .teaser-visual { height: 380px; }
  /* Flip variant: DOM has image before text, so force text on top when stacked */
  .teaser-section.flip .teaser-text { order: -1; }
  /* About: DOM has image before text, force text on top when stacked */
  .about-right { order: -1; }
  .platform-row { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
  .platform-tag { padding: 8px 6px; font-size: 11px; }

  /* FAQ */
  .faq-section { padding: 60px 20px; }
  .faq-q { font-size: 17px; padding: 18px 4px; gap: 12px; }
  .faq-a { padding: 0 40px 18px 4px; font-size: 14.5px; }

  /* Workshops grid v2 */
  .workshops-grid-v2 { grid-template-columns: 1fr; }
  .workshop-card-v2.is-open { grid-column: span 1; }
  .workshop-card-v2.is-open .wcv-detail { grid-template-columns: 1fr; gap: 20px; }
  .workshop-card-v2.is-open .wcv-img { aspect-ratio: 4/3; }

  /* Tutorials 3 cols */
  .tut-three-cols { grid-template-columns: 1fr 1fr; gap: 12px; }
  .embed-section { padding: 40px 20px; }
  .embed-section-header h3 { font-size: 24px; }
  .embed-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  #basics-grid { grid-template-columns: 1fr 1fr; }

  /* Nav social */
  .nav-social { display: none; } /* hidden on mobile to save space; shown in mobile menu */
  .nav-menu .nav-social { display: flex; margin-top: 8px; padding-top: 14px; border-right: 0; border-top: 1px solid rgba(74,53,32,0.12); margin-right: 0; justify-content: center; gap: 10px; }
  .nav-menu .nav-social a { width: 42px; height: 42px; }

  /* ── Teaser sections: center when stacked to single column ── */
  .teaser-text {
    text-align: center;
    padding-inline-start: 0;
  }
  .teaser-p { max-width: none; }
  /* Bullet lists look bad centered; keep them start-aligned inside the centered container */
  .teaser-bullets { text-align: start; }
  .teaser-cta { justify-content: center; }

  /* ── About section: center when image stacks above text ── */
  .about-right {
    text-align: center;
    padding-inline-start: 0;
  }
  /* Replace side-border blockquote indicator with a top border when centered */
  .about-quote {
    border-inline-end: none;
    border-top: 2px solid var(--terracotta);
    padding: 20px 0 0;
  }

  /* ── Contact section: center when single column ── */
  .contact-left { text-align: center; }
  .contact-list { align-items: center; }
  .contact-sig { text-align: center; }

  /* ── Workshops footer: stack vertically and center ── */
  .workshops-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 24px 20px;
  }
}

@media (max-width: 720px) {
  /* Gallery v2 — collapse to mobile-friendly grid */
  .gallery-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 110px;
    gap: 10px;
  }
  .gv2-1, .gv2-10, .gv2-11 { grid-column: span 2; grid-row: span 2; }
  .gv2-2, .gv2-3, .gv2-5, .gv2-6, .gv2-7, .gv2-8, .gv2-9, .gv2-12, .gv2-13, .gv2-14 {
    grid-column: span 1; grid-row: span 2;
  }
  .gv2-4 { grid-column: span 2; grid-row: span 3; }
  .gv2-item .gv2-cap { transform: none; opacity: 1; }
}

@media (max-width: 560px) {
  .gallery-grid { column-count: 1; }
}

/* ============ SMALL PHONE (≤ 480px) ============ */
@media (max-width: 480px) {

  /* Ink-overflow padding already reset at 900px; these selectors kept for
     specificity coverage at very narrow widths */
  .teaser-text,
  .about-right { padding-inline-start: 0; }

  /* Type sizes: scale down body copy slightly on phones */
  .section-lede { font-size: 16.5px; line-height: 1.6; }
  .teaser-p { font-size: 16.5px; }
  .about-text { font-size: 16.5px; }
  .contact-p { font-size: 17px; }

  /* Contact form — 2-col row stacks vertically */
  .form-row { grid-template-columns: 1fr; }

  /* Footer — single column so brand copy has full width */
  .footer-grid { grid-template-columns: 1fr; }

  /* Process steps — single column */
  .process-grid { grid-template-columns: 1fr; gap: 24px; }

  /* Tutorial category nav cards — single column */
  .tut-three-cols { grid-template-columns: 1fr; }

  /* Video embed grids — single column (thumbnails too small at 2-col / 390px) */
  .embed-grid,
  #basics-grid { grid-template-columns: 1fr; }

  /* Social follow buttons — stack vertically so they don't overflow */
  .tut-social-btns { flex-direction: column; align-items: stretch; }
  .tut-social-btn { justify-content: center; }

  /* Photo collage — shorter on small screens */
  .teaser-visual { height: 240px; }

  /* Tighter horizontal padding on content sections */
  section.content,
  .faq-section,
  .audience-section,
  .teaser-section,
  .embed-section,
  .testimonials-section,
  .about-section,
  .contact-section,
  .process-section,
  .nav-cards-section,
  .gallery-section { padding-left: 16px; padding-right: 16px; }

  /* Embed section header — stack label and count on very narrow widths */
  .embed-section-header { align-items: flex-start; gap: 8px; }
  .embed-section-header .left { flex-direction: column; gap: 4px; }

  /* Big pull-quote — slightly smaller on phones */
  .big-quote blockquote { font-size: clamp(20px, 5.5vw, 30px); }
}

/* ============ VERY SMALL PHONE (≤ 360px) ============ */
@media (max-width: 360px) {
  /* Nav: logo + WA button + hamburger overflows at 320px;
     the floating WA button handles the action so the nav btn can hide */
  .nav-cta .btn { display: none; }
}
