:root {
  --bg: #fff8e8;
  --bg2: #f7efe3;
  --surface: rgba(255, 255, 255, 0.66);
  --surface2: rgba(255, 255, 255, 0.86);
  --text: rgba(20, 28, 22, 0.94);
  --muted: rgba(20, 28, 22, 0.68);
  --faint: rgba(20, 28, 22, 0.55);
  --line: rgba(20, 28, 22, 0.12);
  --shadow: 0 18px 55px rgba(18, 40, 22, 0.1);

  --accent: #f4e3a1; /* banana */
  --accent2: #d9c8ff; /* light lavender */
  --banana: #f4e3a1; /* banana warmth */
  --sage: #d8c4a8; /* light brown accent */
  --sage-ink: rgba(110, 78, 45, 0.95);
  --cream: #fff8e6; /* cozy paper */
  --accent3: #d8c4a8; /* light brown */
  --danger: #ff4d6d;

  /* Buttons — white outline default, orange fill on hover (CTA «הפקות שלי») */
  --btn-fill: #e68a1e;
  --btn-ink: #002b49;
  --btn-outline: #ffffff;

  /* ‹ › in circular buttons: font metrics sit low; flex + slight bottom padding optically centers */
  --circle-chevron-pad-bottom: 0.11em;

  --radius: 18px;
  --radius-sm: 12px;
  --container: 1120px;

  --font-sans: "Fredoka", "Heebo", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: "Unbounded", "Fredoka", "Heebo", system-ui, sans-serif;
  --font-ornate: "Lalezar", "Fredoka", "Heebo", system-ui, sans-serif;
}

@font-face {
  font-family: "Fredoka";
  src: url("./assets/fonts-laba/Fredoka/static/Fredoka-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fredoka";
  src: url("./assets/fonts-laba/Fredoka/static/Fredoka-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fredoka";
  src: url("./assets/fonts-laba/Fredoka/static/Fredoka-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fredoka";
  src: url("./assets/fonts-laba/Fredoka/static/Fredoka-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fredoka";
  src: url("./assets/fonts-laba/Fredoka/static/Fredoka-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lalezar";
  src: url("./assets/fonts-laba/Lalezar/Lalezar-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Secular One";
  src: url("./assets/fonts-laba/Secular_One/SecularOne-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Unbounded";
  src: url("./assets/fonts-laba/Unbounded/Unbounded-VariableFont_wght.ttf") format("truetype");
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "OutOfTune";
  src: url("./assets/fonts/out-of-tune/OutOfTune-A6zA.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SuperIndie";
  src: url("./assets/fonts/super-indie/SuperIndie-JRqgm.otf") format("opentype"),
       url("./assets/fonts/super-indie/SuperIndie-GOp7O.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cyclope";
  src: url("./assets/fonts/cyclope/Cyclope-1eXj.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "The Music";
  src: url("./assets/fonts/the-music/Themusicdemo-BLBMd.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Nav logo: Record Struggle (Fontspace freeware, non-commercial — see assets/fonts/record-struggle/info.txt) */
@font-face {
  font-family: "Record Struggle";
  src: url("./assets/fonts/record-struggle/RecordStruggle-6R1M1.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Record Struggle Script";
  src: url("./assets/fonts/record-struggle/RecordStruggleScript-yYgJV.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 88%;
}

body {
  margin: 0;
  font-weight: 400;
  font-synthesis: none;
  background-color: #f8f0e4;
  background-image: linear-gradient(180deg, rgba(255, 248, 230, 0.72), rgba(255, 248, 230, 0.72)),
    url("./assets/bg1.png"),
    url("./assets/bg2.png"),
    url("./assets/bg3.png");
  background-size: cover, cover, cover, cover;
  background-position: center top, center top, center top, center top;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-blend-mode: normal, multiply, multiply, multiply;
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  position: relative;
}

/* iOS / mobile: fixed body backgrounds often break painting or stall the page */
@media (max-width: 900px) {
  body {
    background-attachment: scroll;
  }
}

main,
.footer {
  position: relative;
  z-index: 2;
}

a {
  color: inherit;
  text-decoration: none;
}

/* No bold anywhere: semantic tags + table headers stay regular weight */
strong,
b,
th,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

::selection {
  background: rgba(244, 227, 161, 0.45);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
}

.skip-link {
  position: absolute;
  inset-inline-start: 14px;
  top: 12px;
  background: #fff;
  color: #000;
  padding: 8px 10px;
  border-radius: 10px;
  transform: translateY(-140%);
  transition: transform 160ms ease;
  z-index: 9999;
}
.skip-link:focus {
  transform: translateY(0);
}

/* —— Site header: clean transparent top bar, soft glass on scroll —— */
.site-header {
  min-height: 0;
  height: auto;
  background: transparent;
  border-bottom: 0;
  pointer-events: none;
  /* One size for nav links + booking CTA */
  --nav-bar-font-size: clamp(14px, 1.22vw, 17px);
}

/* Logo-only desktop: only centered wordmark (mobile uses burger + booking after scroll) */
@media (min-width: 761px) {
  .site-header.logo-only .burger,
  .site-header.logo-only .nav,
  .site-header.logo-only .header-cta {
    display: none !important;
  }
}

.site-header.logo-only .header-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-block: 0;
  padding-inline: 8px;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.site-header.logo-only .header-inner::after {
  display: none;
}

.site-header.logo-only .brand {
  margin-inline: auto;
}

/* Full-width bar so the lockup centers on the viewport, not only inside --container */
.site-header.logo-only {
  padding-top: max(10px, calc(6px + env(safe-area-inset-top, 0px)));
}

.site-header.logo-only > .container {
  max-width: none;
  width: 100%;
  padding-left: max(14px, env(safe-area-inset-left, 0px));
  padding-right: max(14px, env(safe-area-inset-right, 0px));
}

/* Desktop: horizontal wing to the visual right of centered logo; fixed + reveal on scroll */
.header-floating-wing {
  display: none;
}

@media (min-width: 761px) {
  .header-floating-wing {
    display: block;
    position: fixed;
    z-index: 46;
    top: calc(6px + env(safe-area-inset-top, 0px) + 10px);
    /* Start just past the wordmark; width capped so we don’t cover the social rail */
    left: calc(50% + clamp(64px, 9.5vw, 188px));
    right: auto;
    width: max-content;
    max-width: min(600px, calc(50vw - clamp(64px, 9.5vw, 188px) - 72px));
    transform-origin: top left;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .site-header.scrolled .header-floating-wing {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    animation: wing-fold-in 560ms cubic-bezier(0.2, 0.9, 0.22, 1) both;
  }

  .header-floating-wing__inner {
    direction: ltr;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 8px 10px;
  }

  .header-floating-wing-cta {
    flex: 0 0 auto;
    border: 1px solid rgba(124, 84, 52, 0.62) !important;
    background: rgba(248, 242, 232, 0.96) !important;
    color: rgba(56, 38, 24, 0.96) !important;
    border-radius: 6px;
    min-height: 36px;
    padding: 8px 16px;
    font-family: "Fredoka", "Heebo", system-ui, sans-serif;
    font-size: clamp(12.5px, 1.05vw, 15px);
    font-weight: 400;
    line-height: 1.15;
    box-shadow:
      0 2px 0 rgba(255, 255, 255, 0.55) inset,
      0 4px 14px rgba(124, 84, 52, 0.14) !important;
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    white-space: nowrap;
  }

  .header-floating-wing-cta:hover {
    transform: translateY(-1px);
    background: rgba(252, 246, 236, 1) !important;
    border-color: rgba(124, 84, 52, 0.78) !important;
    box-shadow:
      0 2px 0 rgba(255, 255, 255, 0.65) inset,
      0 6px 18px rgba(124, 84, 52, 0.2) !important;
  }

  .header-floating-wing-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 5px 6px;
    min-width: 0;
  }

  .header-floating-wing-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
    padding: 4px 7px;
    border-radius: 4px;
    background: rgba(248, 242, 232, 0.92);
    border: 1px solid rgba(124, 84, 52, 0.55);
    color: rgba(72, 52, 35, 0.95);
    font-family: var(--font-sans);
    font-size: clamp(10.5px, 0.9vw, 12px);
    letter-spacing: 0.04em;
    line-height: 1.12;
    overflow: hidden;
    text-decoration: none;
    transform-origin: center;
    text-align: center;
    max-width: 12.5em;
  }

  .site-header.scrolled .header-floating-wing-nav a {
    animation: wing-chip-in 400ms cubic-bezier(0.2, 0.88, 0.2, 1) both;
  }

  .header-floating-wing-nav a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(124, 84, 52, 0.16), rgba(124, 84, 52, 0.02));
    transform: translateX(102%);
    transition: transform 260ms cubic-bezier(0.22, 0.8, 0.25, 1);
  }

  .header-floating-wing-nav a:hover::before {
    transform: translateX(0);
  }

  .header-floating-wing-nav a:hover {
    color: rgba(36, 24, 15, 0.98);
  }

  .site-header.scrolled .header-floating-wing-nav a:nth-child(1) { animation-delay: 40ms; }
  .site-header.scrolled .header-floating-wing-nav a:nth-child(2) { animation-delay: 75ms; }
  .site-header.scrolled .header-floating-wing-nav a:nth-child(3) { animation-delay: 110ms; }
  .site-header.scrolled .header-floating-wing-nav a:nth-child(4) { animation-delay: 145ms; }
  .site-header.scrolled .header-floating-wing-nav a:nth-child(5) { animation-delay: 180ms; }
  .site-header.scrolled .header-floating-wing-nav a:nth-child(6) { animation-delay: 215ms; }

  @media (prefers-reduced-motion: reduce) {
    .site-header.scrolled .header-floating-wing,
    .site-header.scrolled .header-floating-wing-nav a {
      animation: none !important;
    }
  }
}

@keyframes wing-fold-in {
  from {
    opacity: 0;
    transform: perspective(880px) rotateX(-10deg) translateY(-4px);
  }
  to {
    opacity: 1;
    transform: perspective(880px) rotateX(0deg) translateY(0);
  }
}

@keyframes wing-chip-in {
  from {
    opacity: 0;
    transform: translateY(6px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 760px) {
  .header-floating-wing {
    display: none !important;
  }
}

/* —— Mobile + logo-only: blur bar + white frame only on scroll; true-centered logo (flex + absolute) —— */
@media (max-width: 760px) {
  .site-header.logo-only .header-inner {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    gap: 8px;
    padding-block: 6px;
    padding-inline: 10px;
    transition:
      background-color 380ms cubic-bezier(0.4, 0, 0.2, 1),
      border-color 380ms ease,
      box-shadow 380ms ease,
      backdrop-filter 380ms ease,
      -webkit-backdrop-filter 380ms ease;
  }

  .site-header.logo-only .brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: max-content;
    /* Room for burger + «לקביעת סשן» on both sides (RTL); tighter wordmark = no overlap */
    max-width: min(220px, calc(100vw - 216px));
    margin: 0;
    z-index: 1;
    min-width: 0;
  }

  .site-header.logo-only .burger,
  .site-header.logo-only .header-cta {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
  }

  .site-header.logo-only:not(.scrolled) .header-inner {
    background: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .site-header.logo-only.scrolled .header-inner {
    background: rgba(255, 255, 255, 0.22) !important;
    border: 1px solid rgba(255, 255, 255, 0.48) !important;
    backdrop-filter: blur(14px) saturate(1.06) !important;
    -webkit-backdrop-filter: blur(14px) saturate(1.06) !important;
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.1);
  }

  .site-header.logo-only:not(.scrolled) .burger,
  .site-header.logo-only:not(.scrolled) .header-cta {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(0.96);
    transition:
      opacity 300ms ease,
      visibility 300ms ease,
      transform 400ms cubic-bezier(0.2, 0.88, 0.22, 1);
  }

  .site-header.logo-only.scrolled .burger,
  .site-header.logo-only.scrolled .header-cta {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition:
      opacity 360ms ease,
      visibility 360ms ease,
      transform 440ms cubic-bezier(0.22, 1, 0.32, 1);
  }

  .site-header.logo-only .header-cta .brand-address--under-cta {
    display: none !important;
  }

  .site-header.logo-only.scrolled .header-booking-cta.button-primary {
    background: rgba(248, 242, 232, 0.96) !important;
    border: 1px solid rgba(124, 84, 52, 0.62) !important;
    color: rgba(56, 38, 24, 0.96) !important;
    border-radius: 8px;
    box-shadow:
      0 2px 0 rgba(255, 255, 255, 0.5) inset,
      0 4px 14px rgba(124, 84, 52, 0.14);
    font-size: clamp(12px, 3.2vw, 14px);
    padding: 8px 12px;
    min-height: 38px;
    font-weight: 400;
    transform: none;
    transform-origin: center;
  }

  .site-header.logo-only.scrolled .header-booking-cta.button-primary:hover {
    background: rgba(252, 246, 236, 1) !important;
    border-color: rgba(124, 84, 52, 0.78) !important;
    box-shadow:
      0 2px 0 rgba(255, 255, 255, 0.6) inset,
      0 6px 18px rgba(124, 84, 52, 0.2);
  }

  .site-header.logo-only.scrolled .icon-button.burger {
    border-color: rgba(20, 28, 22, 0.22);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  }

  .site-header.logo-only.scrolled .burger-lines::before,
  .site-header.logo-only.scrolled .burger-lines::after {
    background: rgba(12, 14, 13, 0.92);
    height: 2px;
  }

  .site-header.logo-only .nav.is-open {
    background: rgba(255, 252, 246, 0.98);
    border: 1px solid rgba(20, 28, 22, 0.14);
    backdrop-filter: blur(20px) saturate(1.08);
    -webkit-backdrop-filter: blur(20px) saturate(1.08);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.14);
  }

  @media (prefers-reduced-motion: reduce) {
    .site-header.logo-only:not(.scrolled) .burger,
    .site-header.logo-only:not(.scrolled) .header-cta,
    .site-header.logo-only.scrolled .burger,
    .site-header.logo-only.scrolled .header-cta {
      transition: none;
      transform: none;
    }
  }
}

@media (max-width: 760px) {
  .site-header {
    --nav-bar-font-size: clamp(13.5px, 3.6vw, 15.5px);
  }
}

.site-header > * {
  pointer-events: auto;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas: "cta logo nav";
  align-items: center;
  gap: 4px 8px;
  position: relative;
  z-index: 2;
  isolation: isolate;
  min-height: 0;
  margin-top: 0;
  padding-block: 4px;
  padding-inline: 8px;
  transition:
    background-color 320ms cubic-bezier(0.4, 0, 0.2, 1),
    border-color 320ms cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 320ms cubic-bezier(0.4, 0, 0.2, 1),
    backdrop-filter 320ms cubic-bezier(0.4, 0, 0.2, 1);
}

.header-inner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 14px;
  background-image: url("./assets/navbar-wave.png");
  background-repeat: no-repeat;
  /* Keep only the center tree waveform band from the image */
  background-position: center 52%;
  background-size: 100% 190px;
  opacity: 0.95;
  mix-blend-mode: multiply;
  filter: saturate(1.05) contrast(1.06);
  pointer-events: none;
}

@media (min-width: 761px) {
  .header-inner {
    padding-block: 4px;
    padding-inline: 10px;
    gap: 6px;
  }
}

.site-header.scrolled .header-inner {
  background: rgba(248, 252, 249, 0.18);
  border: 0 !important;
  box-shadow: none;
  backdrop-filter: blur(6px) saturate(1.02);
  -webkit-backdrop-filter: blur(6px) saturate(1.02);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header.scrolled .header-inner {
    background: rgba(255, 248, 235, 0.92);
  }
}

.header-inner > * {
  position: relative;
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  .header-inner {
    transition: none !important;
  }
}

/* Navbar brand system (text only) */
.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(16, 18, 18, 0.95);
  min-width: 0;
  max-width: min(640px, 90vw);
  grid-area: logo;
  justify-self: center;
  position: relative;
  z-index: 3;
  direction: ltr;
  text-align: center;
  letter-spacing: 0;
}

.brand:hover {
  color: inherit;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  line-height: 1.08;
}

.brand-address {
  margin: 1px 0 0;
  font-family: var(--font-sans);
  font-size: clamp(7.5px, 1vw, 9.5px);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.25;
  color: var(--brand-ink-soft);
  white-space: nowrap;
}

.brand-address-star {
  display: inline-block;
  font-size: 0.72em;
  line-height: 1;
  opacity: 0.82;
  margin-inline-end: 3px;
  transform: translateY(-0.04em);
  vertical-align: middle;
}

.header-cta-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}

.header-cta-booking {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  line-height: 0;
}

.brand-address--under-cta {
  display: block;
  margin: 0;
  text-align: center;
  max-width: 12em;
}

.brand-name {
  margin: 0;
  color: inherit;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-by {
  margin: 0;
  color: inherit;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Brand ink: light over hero, editorial dark on scrolled glass */
.site-header:not(.scrolled) {
  --brand-ink: rgba(255, 252, 246, 0.97);
  --brand-ink-soft: rgba(255, 252, 246, 0.74);
}

.site-header.scrolled {
  --brand-ink: rgba(22, 26, 24, 0.94);
  --brand-ink-soft: rgba(22, 26, 24, 0.62);
}

.site-header.brand-on-dark {
  --brand-ink: rgba(255, 252, 246, 0.97);
  --brand-ink-soft: rgba(255, 252, 246, 0.74);
}

.site-header .brand {
  color: var(--brand-ink);
}

.site-header .brand-by {
  color: var(--brand-ink-soft);
}

.site-header:not(.scrolled) .brand {
  text-shadow: 0 1px 22px rgba(0, 0, 0, 0.28);
}

/* Header-only: slightly tighter editorial lockup */
.site-header .brand--soft-editorial .brand-name {
  font-size: clamp(19px, 2.35vw, 28px);
  letter-spacing: 0.03em;
}

.site-header .brand--soft-editorial .brand-by {
  font-size: clamp(11px, 1.35vw, 15px);
  letter-spacing: 0.06em;
}

/* Option 1 (legacy): Soft editorial */
.brand--soft-editorial .brand-name {
  font-family: "Record Struggle", "The Music", "Cyclope", "SuperIndie", "OutOfTune", "Fredoka", "Heebo", system-ui,
    sans-serif;
  font-weight: 400;
  font-size: clamp(22px, 2.65vw, 32px);
  letter-spacing: 0.04em;
  line-height: 1.02;
  text-transform: none;
}

.brand--soft-editorial .brand-by {
  font-family: "Record Struggle", "The Music", "Cyclope", "SuperIndie", "OutOfTune", "Fredoka", "Heebo", system-ui,
    sans-serif;
  font-weight: 400;
  font-size: clamp(12px, 1.55vw, 17px);
  letter-spacing: 0.08em;
  line-height: 1.08;
  text-transform: none;
}

.site-header .brand--minimal-indie .brand-by {
  font-family: "Fredoka", "Heebo", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(10px, 0.95vw, 12.5px);
  letter-spacing: 0.14em;
  line-height: 1.15;
  margin-top: 1px;
}

@media (min-width: 761px) {
  .brand--soft-editorial .brand-name,
  .brand--soft-editorial .brand-by {
    white-space: nowrap;
  }
}

/* Option 2: Minimal modern indie */
.brand--minimal-indie .brand-name {
  font-family: "Heebo", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(13px, 1.33vw, 16px);
  letter-spacing: 0.08em;
  line-height: 1.06;
}

.brand--minimal-indie .brand-by {
  font-family: "Heebo", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(8px, 0.8vw, 10px);
  letter-spacing: 0.16em;
  line-height: 1.08;
}

/* Header: retro “LABA RECORDS” (Bebas) — must override .brand--minimal-indie .brand-name */
.site-header .brand--minimal-indie .brand-name.brand-name--retro {
  font-family: "Secular One", "Fredoka", "Heebo", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(24px, 2.2vw, 31px);
  letter-spacing: 0.08em;
  line-height: 0.95;
  text-transform: uppercase;
  font-synthesis: none;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35),
    0 2px 0 rgba(0, 0, 0, 0.12);
}

.site-header:not(.scrolled) .brand--minimal-indie .brand-name.brand-name--retro {
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.35),
    0 2px 10px rgba(0, 0, 0, 0.28),
    0 0 1px rgba(0, 0, 0, 0.4);
}

.site-header .brand--minimal-indie .brand-by {
  font-family: "Unbounded", "Fredoka", "Heebo", system-ui, sans-serif;
  font-variation-settings: "wght" 430;
  letter-spacing: 0.11em;
}

@media (max-width: 760px) {
  .site-header .brand--minimal-indie .brand-name.brand-name--retro {
    font-size: clamp(14px, 4.1vw, 20px);
    letter-spacing: 0.06em;
    line-height: 0.98;
  }

  .site-header .brand--minimal-indie .brand-by {
    font-size: clamp(6.5px, 2.15vw, 9.5px);
    letter-spacing: 0.1em;
    margin-top: 0;
  }
}

/* Option 3: Delicate poetic signature */
.brand--poetic-signature .brand-name {
  font-family: "Fredoka", "Heebo", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.52vw, 19px);
  letter-spacing: 0.04em;
  line-height: 1.02;
}

.brand--poetic-signature .brand-by {
  font-family: "Heebo", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(7.5px, 0.78vw, 9.5px);
  letter-spacing: 0.2em;
  line-height: 1.12;
}

.nav {
  display: flex;
  justify-content: flex-end;
  justify-self: end;
  gap: 2px;
  align-items: center;
  grid-area: nav;
  position: relative;
  z-index: 2;
  flex-wrap: nowrap;
  direction: rtl; /* Ensure "start" aligns to the right in RTL */
}

.nav a {
  color: var(--muted);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: var(--nav-bar-font-size);
  padding: 4px 5px;
  border-radius: 0;
  line-height: 1.15;
  display: inline-flex;
  align-items: center;
  transition: color 200ms ease;
  white-space: nowrap;
}

@media (min-width: 761px) {
  .site-header:not(.scrolled) .nav a {
    color: rgba(255, 252, 246, 0.86);
  }

  .site-header:not(.scrolled) .nav a:hover {
    color: rgba(255, 255, 255, 1);
  }

  .site-header.scrolled .nav a {
    color: var(--muted);
  }

  .site-header.scrolled .nav a:hover {
    color: var(--text);
  }
}

.header-cta {
  display: flex;
  justify-content: flex-start;
  justify-self: start;
  grid-area: cta;
  position: relative;
  z-index: 3;
  align-items: center;
  min-height: 0;
  height: auto;
}

.header-cta-cluster {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
}

.nav-link-cta {
  font-weight: 400;
  font-size: 13px;
  padding: 6px 8px;
  border-radius: 999px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  transition: background 200ms ease, color 200ms ease;
}

.site-header:not(.scrolled) .nav-link-cta {
  color: rgba(255, 252, 246, 0.78);
}

.site-header:not(.scrolled) .nav-link-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.98);
}

.site-header.scrolled .nav-link-cta {
  color: var(--muted);
}

.site-header.scrolled .nav-link-cta:hover {
  background: rgba(244, 227, 161, 0.22);
  color: var(--text);
}

@media (min-width: 761px) {
  .nav-mobile-only {
    display: none !important;
  }
}

@media (max-width: 760px) {
  .nav-desktop-only {
    display: none !important;
  }
}

.header-cta .button {
  white-space: nowrap;
  line-height: 1;
}

.header-cta .header-booking-cta {
  font-family: var(--font-sans);
  padding: 6px 13px;
  font-size: var(--nav-bar-font-size);
  font-weight: 400;
  line-height: 1.15;
  min-height: 0;
}

.icon-button {
  border: 1px solid rgba(20, 28, 22, 0.14);
  background: rgba(255, 255, 255, 0.6);
  color: var(--text);
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
  transition: transform 120ms ease, background 160ms ease, border-color 160ms ease;
}

.icon-button:hover {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(20, 28, 22, 0.2);
  transform: translateY(-1px);
}

.burger {
  display: none;
}

.burger-lines {
  width: 16px;
  height: 12px;
  position: relative;
  display: inline-block;
}
.burger-lines::before,
.burger-lines::after,
.burger-lines {
  background: transparent;
}
.burger-lines::before,
.burger-lines::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  width: 16px;
  height: 1.5px;
  border-radius: 999px;
  background: rgba(20, 28, 22, 0.85);
  transition: transform 160ms ease, top 160ms ease, opacity 120ms ease;
}
.burger-lines::before {
  top: 3px;
}
.burger-lines::after {
  top: 8px;
}

.site-header:not(.scrolled) .burger-lines::before,
.site-header:not(.scrolled) .burger-lines::after {
  background: rgba(255, 252, 246, 0.92);
}

.site-header:not(.scrolled) .icon-button.burger {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 252, 246, 0.95);
}

.site-header:not(.scrolled) .icon-button.burger:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.48);
  transform: translateY(-1px);
}

.site-header.scrolled .icon-button.burger {
  border-color: rgba(20, 28, 22, 0.1);
  background: rgba(255, 255, 255, 0.48);
  color: var(--text);
}

.site-header.scrolled .icon-button.burger:hover {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(20, 28, 22, 0.14);
  transform: translateY(-1px);
}

/* All CTAs: white pill by default, orange + navy on hover */
.button,
.button-primary,
a.button,
a.button-primary {
  border: 1px solid var(--btn-outline);
  background: transparent;
  color: var(--btn-outline);
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 400;
  transition: transform 120ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover,
.button-primary:hover,
a.button:hover,
a.button-primary:hover {
  transform: translateY(-1px);
  background: rgba(124, 84, 52, 0.96);
  border-color: rgba(124, 84, 52, 0.96);
  color: rgba(255, 252, 246, 0.98);
  box-shadow: 0 8px 20px rgba(124, 84, 52, 0.22);
}

/* Navbar booking CTA — quiet outline on hero, soft editorial fill when scrolled */
.site-header:not(.scrolled) .header-booking-cta.button-primary {
  background: rgba(124, 84, 52, 0.96);
  border: 1px solid rgba(124, 84, 52, 0.96);
  color: rgba(255, 252, 246, 0.98);
  box-shadow: 0 8px 20px rgba(124, 84, 52, 0.2);
}

.site-header:not(.scrolled) .header-booking-cta.button-primary:hover {
  transform: translateY(-1px);
  background: rgba(103, 68, 42, 0.98);
  border-color: rgba(103, 68, 42, 0.98);
  color: #fff;
}

.site-header.scrolled .header-booking-cta.button-primary {
  background: rgba(124, 84, 52, 0.96);
  border: 1px solid rgba(124, 84, 52, 0.96);
  color: rgba(255, 252, 246, 0.98);
  box-shadow: 0 8px 20px rgba(124, 84, 52, 0.2);
}

.site-header.scrolled .header-booking-cta.button-primary:hover {
  transform: translateY(-1px);
  background: rgba(103, 68, 42, 0.98);
  border-color: rgba(103, 68, 42, 0.98);
  color: #fff;
}

.button:active,
.button-primary:active,
a.button:active,
a.button-primary:active {
  transform: translateY(0);
}

.site-header:not(.scrolled) .header-booking-cta:focus-visible,
.site-header:not(.scrolled) .icon-button.burger:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.75);
  outline-offset: 2px;
}

.button:focus-visible,
.icon-button:focus-visible,
.carousel-nav:focus-visible,
.carousel-nav-v:focus-visible,
#productions.section .tracks-carousel-nav:focus-visible,
#productions.section .track-icon-btn:focus-visible,
.hero-social-btn:focus-visible,
.whatsapp-float:focus-visible,
.instagram-float:focus-visible {
  outline: 2px solid var(--btn-fill);
  outline-offset: 2px;
}

.button-ghost {
  border: 1px solid var(--btn-outline);
  background: transparent;
  color: var(--btn-outline);
}

.button-ghost:hover {
  background: var(--btn-fill);
  border-color: var(--btn-fill);
  color: var(--btn-ink);
}

.button-small {
  padding: 8px 12px;
  font-size: 13px;
}

.button-full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding-top: calc(env(safe-area-inset-top, 0px) + 68px);
  padding-bottom: 70px;
  overflow: clip;
}

/* Social rail — fixed on viewport (stays visible while scrolling) */
.hero-social-rail {
  position: fixed;
  right: calc(14px + env(safe-area-inset-right, 0px));
  top: 50%;
  transform: translateY(-50%);
  transform-origin: center right;
  z-index: 40; /* above page content, below header (50) */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: auto;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: rgba(20, 28, 22, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  transition: transform 140ms ease, background 160ms ease, border-color 160ms ease;
}

.hero-social-btn:hover {
  transform: scale(1.06);
  background: rgba(255, 255, 255, 0.38);
  border-color: rgba(255, 255, 255, 0.62);
}

.hero-social-btn svg {
  width: 17px;
  height: 17px;
  display: block;
  transform: translateY(0);
}

.hero-social-btn .apple-music-mark {
  width: 17px;
  height: 17px;
  display: block;
  fill: currentColor;
  opacity: 0.88;
  transform: translateY(0);
}

/* Color comes from the button (currentColor) */
.hero-social-btn--apple:hover .apple-music-mark {
  opacity: 1;
}

/* Floating social buttons near bottom-right */
.floating-social {
  position: fixed;
  right: calc(14px + env(safe-area-inset-right, 0px));
  bottom: calc(22px + env(safe-area-inset-bottom, 0px));
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 39; /* slightly below hero-social-rail (40) */
}

.whatsapp-float,
.instagram-float {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(18, 40, 22, 0.14);
  pointer-events: auto;
  transition: transform 140ms ease, background 160ms ease, border-color 160ms ease;
}

.whatsapp-float {
  background: rgba(37, 211, 102, 0.25);
  border: 1px solid rgba(37, 211, 102, 0.55);
  color: rgba(255, 255, 255, 0.96);
}

.whatsapp-float:hover {
  transform: translateY(-1px);
  background: rgba(37, 211, 102, 0.42);
  border-color: rgba(37, 211, 102, 0.95);
}

.whatsapp-float svg {
  width: 25px;
  height: 25px;
  display: block;
  fill: currentColor;
  transform: none;
}

.instagram-float {
  background: rgba(225, 48, 106, 0.2);
  border: 1px solid rgba(225, 48, 106, 0.55);
  color: rgba(255, 255, 255, 0.96);
}

.instagram-float:hover {
  transform: translateY(-1px);
  background: rgba(225, 48, 106, 0.42);
  border-color: rgba(225, 48, 106, 0.95);
}

.instagram-float svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: currentColor;
}

@media (max-width: 760px) {
  .hero-social-rail {
    top: auto;
    bottom: calc(116px + env(safe-area-inset-bottom, 0px));
    /* Mobile: keep rail less dominant until user interacts (~30% smaller than former mobile size) */
    transform: translateX(14px) scale(0.97);
    transform-origin: right center;
    right: calc(10px + env(safe-area-inset-right, 0px));
    gap: 5px;
    opacity: 0.52;
  }

  .hero-social-btn {
    width: 31px;
    height: 31px;
  }

  .hero-social-btn svg {
    width: 14px;
    height: 14px;
  }

  .hero-social-btn .apple-music-mark {
    width: 14px;
    height: 14px;
  }

  .hero-social-rail:hover,
  .hero-social-rail:focus-within {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}

/* Fix icon vertical centering (icons with less-optimal viewBox) */
.hero-social-btn[aria-label="Spotify"] svg {
  transform: translateY(1px);
}

/* App-colored hover states */
.hero-social-btn[aria-label="Facebook"]:hover {
  background: rgba(24, 119, 242, 0.95);
  border-color: rgba(24, 119, 242, 1);
  color: #ffffff;
}

.hero-social-btn[aria-label="Instagram"]:hover {
  background: rgba(225, 48, 106, 0.95);
  border-color: rgba(225, 48, 106, 1);
  color: #ffffff;
}

.hero-social-btn[aria-label="Spotify"]:hover {
  background: rgba(29, 185, 84, 0.95);
  border-color: rgba(29, 185, 84, 1);
  color: #ffffff;
}

.hero-social-btn[aria-label="Apple Music"]:hover {
  background: rgba(255, 59, 95, 0.18);
  border-color: rgba(255, 59, 95, 0.65);
  color: rgba(255, 59, 95, 1);
}

.hero-social-btn[aria-label="TikTok"]:hover {
  background: rgba(20, 20, 20, 0.95);
  border-color: rgba(20, 20, 20, 1);
  color: #ffffff;
}

.hero-social-btn[aria-label="YouTube"]:hover {
  background: rgba(255, 0, 0, 0.95);
  border-color: rgba(255, 0, 0, 1);
  color: #ffffff;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-video,
.hero-video-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
  transform: scale(1.22);
  transform-origin: center;
}

.hero-video-fallback {
  background:
    linear-gradient(180deg, rgba(247, 251, 247, 0.1), rgba(247, 251, 247, 0.72)),
    url("./assets/hero.png");
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 180ms ease;
}

.hero-media.no-video .hero-video-fallback {
  opacity: 1;
}

/* Mobile: single full-bleed hero clip (dedicated vertical asset) */
@media (max-width: 760px) {
  .hero-video,
  .hero-video-fallback {
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    border-radius: 0;
    box-shadow: none;
    object-fit: cover;
    object-position: center center;
  }

  .hero-video {
    transform: scale(1.06);
    transform-origin: center center;
    filter: saturate(1.02) contrast(1.02);
  }

  .hero-video-fallback {
    transform: none;
    background-size: cover;
    background-position: center;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: transparent;
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  pointer-events: none;
}

.section-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.section-video-bg video.section-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transform-origin: center;
  filter: saturate(1.03) contrast(1.04) brightness(0.92);
}

/* Testimonials video framing: crop side black bars and show lower area */
#testimonials.section .section-video-bg video.section-video {
  transform: scale(1.22);
  object-position: center 60%;
}

/* Productions: nudge framing slightly lower than center */
#productions.section .section-video-bg video.section-video {
  object-position: center 58%;
}

.section-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 28, 22, 0.14), rgba(20, 28, 22, 0.44));
}

@media (prefers-reduced-motion: reduce) {
  .section-video-bg video.section-video {
    display: none;
  }

  #faq.section {
    background-color: #e8e4dc !important;
    background-image: none !important;
  }

  #faq.section .section-video-overlay {
    background: transparent;
  }
}

/* Readability overrides for video-backed sections */
#about.section .section-head .section-title,
#productions.section .section-head .section-title,
#process.section .section-head .section-title {
  color: rgba(255, 255, 255, 0.98);
  font-weight: 400;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

#about.section .section-head .section-subtitle,
#productions.section .section-head .section-subtitle,
#productions.section .section-head .section-subtitle-line,
#productions.section .section-subtitle-stack .section-subtitle-line,
#process.section .section-head .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* About: full-bleed video + centered cream card (desktop); mobile book carousel */
#about.section {
  padding: 0;
  background: transparent;
  color: inherit;
}

#about.section .about-full__media {
  position: relative;
  overflow: hidden;
  background: #0f1411;
  min-height: min(92vh, 1000px);
}

#about.section .about-full__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

#about.section .about-full__desktop {
  display: none;
}

@media (min-width: 761px) {
  #about.section .about-full__bg-video {
    /* Fill frame without side bars while keeping Coral's head in view */
    transform: scale(1.2);
    transform-origin: center center;
    object-position: 50% 40%;
  }

  #about.section .about-full__desktop {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
  }

  #about.section .about-full__notes {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  #about.section .about-full__note {
    position: absolute;
    pointer-events: auto;
    box-sizing: border-box;
    width: min(300px, 28vw);
    min-height: min(280px, 40vh);
    padding: clamp(18px, 2.4vh, 28px) clamp(20px, 2vw, 28px) clamp(16px, 2.1vh, 24px);
    border-radius: 0;
    background: transparent;
    border: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    overflow: hidden;
  }

  #about.section .about-full__note--1 {
    top: clamp(4px, 1.5vh, 28px);
    right: clamp(24px, 4.2vw, 92px);
    width: min(560px, 52vw);
    min-height: 0;
    max-height: min(calc(100vh - 88px), 94vh);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    z-index: 3;
    padding: clamp(12px, 1.6vh, 22px) clamp(14px, 1.8vw, 24px) clamp(10px, 1.4vh, 18px);
  }

  #about.section .about-full__note--1::-webkit-scrollbar {
    width: 0;
    height: 0;
    background: transparent;
  }

  #about.section .about-full__note .about-prose__lines,
  #about.section .about-full__note .section-title {
    color: rgba(255, 255, 255, 0.98);
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.45);
  }

  #about.section .about-text-only .hero-actions {
    justify-content: flex-start;
    margin-top: 14px;
  }
}

#about.section .about-text-only {
  max-width: 100%;
  margin-inline: auto;
  text-align: center;
}

#about.section .about-text-only .section-title {
  color: rgba(255, 255, 255, 0.98);
  font-weight: 400;
  text-shadow: none;
  text-align: center;
}

#about.section .about-title-link {
  color: rgba(255, 255, 255, 0.98);
  text-decoration: underline;
  text-decoration-color: rgba(20, 28, 22, 0.55);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.14em;
  transition: opacity 140ms ease, text-decoration-thickness 140ms ease;
}

#about.section .about-title-link:hover {
  opacity: 1;
  background-image: linear-gradient(
    110deg,
    #ffd166 0%,
    #ff8c42 28%,
    #ff4d3d 52%,
    #c81d25 74%,
    #ffb347 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-decoration-thickness: 2.5px;
  text-decoration-color: rgba(255, 190, 120, 0.95);
}

#about.section .about-text-only .lead,
#about.section .about-text-only .muted,
#about.section .about-text-only .about-prose,
#about.section .about-text-only .about-prose p,
#about.section .about-text-only .about-prose__lines,
#about.section .about-text-only .stat-label {
  color: rgba(255, 255, 255, 0.96) !important;
  font-weight: 400;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.45);
}

#about.section .about-text-only .about-prose {
  margin-top: 12px;
  font-size: clamp(15px, 1.45vw, 18px);
  text-align: center;
}

#about.section .about-text-only .about-prose p {
  margin: 0;
  line-height: 1.28;
}

#about.section .about-text-only .about-prose__lines {
  margin: 0;
  white-space: pre-line;
  line-height: 1.32;
  font-size: clamp(15px, 1.45vw, 18px);
  text-align: center;
}

@media (min-width: 761px) {
  #about.section .about-text-only .section-title {
    font-size: clamp(1.22rem, 2.05vw, 1.65rem);
  }

  #about.section .about-text-only .about-prose {
    font-size: clamp(16.4px, 1.33vw, 18.7px);
  }

  #about.section .about-text-only .about-prose__lines {
    font-size: clamp(16.4px, 1.33vw, 18.7px);
    line-height: 1.48;
    text-align: center;
  }

  /* About דסקטופ: ממורכז, ריווח צפוף יותר, בלי גלילה פנימית */
  #about.section .about-full__note.about-full__note--1 .about-text-only {
    text-align: center;
  }

  #about.section .about-full__note.about-full__note--1 .about-text-only .section-title {
    text-align: center;
    margin: 0;
    line-height: 1.22;
    font-size: clamp(1.26rem, 1.62vw, 1.5rem);
  }

  #about.section .about-full__note.about-full__note--1 .about-text-only .about-prose {
    margin-top: 8px;
    text-align: center;
  }

  #about.section .about-full__note.about-full__note--1 .about-text-only .about-prose__lines {
    text-align: center;
    font-size: clamp(15.5px, 1.2vw, 17.25px);
    line-height: 1.38;
    letter-spacing: 0.01em;
  }
}

#about.section .about-uline,
#about.section .about-line-em {
  text-decoration: none;
}

#about.section .about-nowrap {
  white-space: nowrap;
}

#about.section a.about-maroon-mention {
  color: #e24a4a;
  text-decoration: underline;
  text-decoration-color: rgba(226, 74, 74, 0.96);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.12em;
  text-decoration-skip-ink: auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}

#about.section a.about-maroon-mention:hover {
  color: #ff6a6a;
  text-decoration-color: rgba(255, 106, 106, 1);
}

#about.section .about-text-only .stat-num {
  color: rgba(20, 28, 22, 0.98) !important;
  font-weight: 400;
  text-shadow: none;
}

#about.section .about-text-only .hero-actions {
  justify-content: flex-start;
}

/* Desktop: carousel + mobile-only CTAs live only on mobile */
#about.section .about-mobile-carousel-layer {
  display: none;
}

#about.section .about-mobile-actions {
  display: none;
}

@media (max-width: 760px) {
  #about.section .about-mobile-carousel-layer {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #about.section .about-mobile-actions {
    display: none;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 10px;
    justify-content: center;
    margin-top: 12px;
    padding-inline: 14px;
    width: 100%;
    max-width: min(86vw, 248px);
    box-sizing: border-box;
  }

  #about.section .about-mobile-actions .button,
  #about.section .about-mobile-actions .button-primary,
  #about.section .about-mobile-actions a.button {
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
    border-color: rgba(255, 252, 246, 0.88);
    color: rgba(255, 252, 246, 0.96);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
    min-height: 40px;
    padding: 8px 14px;
    font-size: clamp(13px, 3.2vw, 15px);
  }

  #about.section .about-mobile-actions .button-primary {
    background: rgba(124, 84, 52, 0.92);
    border-color: rgba(124, 84, 52, 0.96);
    color: rgba(255, 252, 246, 0.98);
  }

  /* מובייל: וידאו עד תחתית המסך; בלי כרטיס דסקטופ; טקסט כמו ספר + כפתורים מתחת */
  #about.section .about-full__media {
    display: block;
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    aspect-ratio: unset;
  }

  #about.section .about-full__bg-video {
    object-position: center center;
  }

  #about.section .about-text-only {
    max-width: 100%;
    margin-top: 0;
  }

  #about.section:not(.about-mobile-story) .about-mobile-carousel-layer {
    position: absolute;
    top: 0;
    bottom: auto;
    left: 0;
    right: 0;
    z-index: 2;
    max-height: min(58vh, 520px);
    padding: calc(10px + env(safe-area-inset-top, 0px)) 8px 12px;
    box-sizing: border-box;
    pointer-events: none;
    justify-content: flex-start;
  }

  #about.section .about-mobile-book,
  #about.section .about-mobile-book__nav,
  #about.section .about-mobile-carousel,
  #about.section .about-mobile-actions,
  #about.section .about-mobile-book__counter {
    pointer-events: auto;
  }

  #about.section .about-mobile-book {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 5px;
    width: 100%;
    max-width: min(100%, 308px);
    margin-inline: auto;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.26));
  }

  #about.section:not(.about-mobile-story) .about-mobile-book__viewport {
    flex: 1;
    min-width: 0;
    max-width: min(62vw, 238px);
    height: min(28vh, 216px);
    border-radius: 4px 14px 14px 4px;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(60, 48, 36, 0.08), transparent 22%);
    box-shadow:
      inset 3px 0 0 rgba(255, 255, 255, 0.28),
      inset 0 0 0 1px rgba(255, 255, 255, 0.2),
      0 8px 22px rgba(0, 0, 0, 0.14);
  }

  #about.section .about-mobile-book__nav {
    flex: 0 0 auto;
    align-self: center;
    width: 38px;
    height: 38px;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 252, 246, 0.42);
    background: rgba(255, 253, 248, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: rgba(28, 24, 18, 0.88);
    font-size: 19px;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
    transition: transform 120ms ease, background 160ms ease, opacity 160ms ease;
  }

  #about.section .about-mobile-book__nav:hover:not(:disabled) {
    transform: scale(1.05);
    background: #fff;
  }

  #about.section .about-mobile-book__nav:disabled {
    opacity: 0.3;
    cursor: default;
  }

  #about.section .about-mobile-book__counter {
    display: none;
  }

  #about.section:not(.about-mobile-story) .about-mobile-carousel {
    display: flex;
    flex-flow: row nowrap;
    gap: 0;
    height: 100%;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  #about.section .about-mobile-carousel::-webkit-scrollbar {
    display: none;
  }

  #about.section:not(.about-mobile-story) .about-mobile-card {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    margin: 0;
    padding: 12px 12px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-radius: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: linear-gradient(
      180deg,
      rgba(255, 254, 249, 0.38) 0%,
      rgba(245, 236, 218, 0.32) 100%
    );
    backdrop-filter: blur(12px) saturate(1.05);
    -webkit-backdrop-filter: blur(12px) saturate(1.05);
    border: none;
    border-inline-start: 1px solid rgba(255, 255, 255, 0.38);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
  }

  #about.section .about-mobile-card__text {
    margin: 0;
    width: 100%;
    max-width: 100%;
    white-space: pre-line;
    text-align: center;
    font-size: clamp(11.5px, 3.05vw, 13.5px);
    font-weight: 400;
    line-height: 1.36;
    color: rgba(18, 24, 20, 0.96);
    text-shadow:
      0 0 12px rgba(255, 252, 246, 0.55),
      0 1px 2px rgba(255, 255, 255, 0.35);
  }

  #about.section .about-mobile-card .about-uline,
  #about.section .about-mobile-card .about-line-em {
    text-decoration: none;
  }

  #about.section .about-mobile-card a.about-maroon-mention {
    color: #ff7f7f;
    text-decoration-color: rgba(255, 127, 127, 0.95);
  }

  #about.section .about-mobile-card a.about-maroon-mention:hover {
    color: #ff9b9b;
    text-decoration-color: rgba(255, 155, 155, 1);
  }
}

/* Testimonials: simple white look */
#testimonials.section {
  background: transparent;
  border-top: 1px solid rgba(20, 28, 22, 0.08);
  border-bottom: 1px solid rgba(20, 28, 22, 0.08);
}

#testimonials.section .section-head .section-title {
  color: rgba(255, 255, 255, 0.98);
  font-weight: 400;
  text-shadow: none;
}

#testimonials.section .section-head .section-subtitle {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 400;
  text-shadow: none;
}

#testimonials.section .planter-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.46);
  box-shadow: none;
  min-height: 190px;
  padding: 14px 16px 16px;
}

#testimonials.section .planter-card::before {
  content: none;
}

#testimonials.section .planter-art {
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

#testimonials.section .planter-art {
  margin: 18px auto 8px;
  width: 68%;
}

#testimonials.section .planter-art:has(.planter-photo)::after {
  content: none;
}

#testimonials.section .planter-quote {
  margin: 0;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  min-height: 0;
}

/* Testimonials vertical carousel */
.testimonials-carousel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 520px;
  margin-inline: auto;
}

/* For the video-backed testimonials section */
#testimonials.section .testimonials-carousel {
  align-items: flex-end;
  gap: 10px;
  max-width: 380px;
  margin-inline: 0;
  margin-left: auto; /* push carousel to the right */
  margin-right: 0;
}

#testimonials.section .testimonials-track {
  max-height: 242px; /* shows 1 card nicely without a scroll feel */
  overflow-y: auto;
  padding: 0;
  scroll-snap-type: y mandatory;
}

#testimonials.section .testimonials-slide {
  padding-bottom: 0;
}

#testimonials.section .section-foot {
  justify-content: center;
}

#testimonials.section .planter-by {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
}

#testimonials.section .planter-art::after {
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

#testimonials.section .planter-photo {
  border-color: rgba(255, 255, 255, 0.35);
}

#testimonials.section .carousel-nav-v {
  /* hidden already, kept for specificity */
  display: none;
}

.testimonials-track {
  width: 100%;
  max-height: min(520px, 72vh);
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.testimonials-track::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

.testimonials-track::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 999px;
}

.testimonials-slide {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding-bottom: 14px;
}

.testimonials-slide:last-child {
  padding-bottom: 4px;
}

.carousel-nav-v {
  border: 1px solid var(--btn-outline);
  background: transparent;
  color: var(--btn-outline);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 140ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
  box-shadow: 0 6px 18px rgba(0, 43, 73, 0.12);
}

/* Hide carousel controls + "scrollbar feel" in testimonials (requested) */
#testimonials.section .carousel-nav-v {
  display: none;
}

.carousel-nav-v:hover {
  transform: translateY(-1px);
  background: var(--btn-fill);
  border-color: var(--btn-fill);
  color: var(--btn-ink);
}

/* Testimonials redesign: horizontal carousel + outlined text on video */
#testimonials.section .testimonials-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  max-width: min(980px, 100%);
  margin-inline: auto;
}

#testimonials.section .testimonials-track {
  width: 100%;
  max-height: none;
  overflow-x: auto;
  overflow-y: hidden;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 32vw);
  gap: 14px;
  padding: 6px 2px 8px;
  scroll-snap-type: x mandatory;
  direction: ltr;
}

#testimonials.section .testimonials-slide {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding-bottom: 0;
}

#testimonials.section .planter-card {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  min-height: 150px;
  padding: 8px 6px;
}

#testimonials.section .planter-quote {
  color: rgba(255, 255, 255, 0.98);
  font-size: clamp(20px, 2.1vw, 30px);
  font-weight: 400;
  line-height: 1.45;
  text-align: center;
  text-shadow:
    -1px -1px 0 rgba(0, 0, 0, 0.72),
    1px -1px 0 rgba(0, 0, 0, 0.72),
    -1px 1px 0 rgba(0, 0, 0, 0.72),
    1px 1px 0 rgba(0, 0, 0, 0.72),
    0 6px 16px rgba(0, 0, 0, 0.45);
}

#testimonials.section .planter-by {
  margin-top: 10px;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 400;
  text-align: center;
  color: rgba(255, 255, 255, 0.95);
  text-shadow:
    -1px -1px 0 rgba(0, 0, 0, 0.72),
    1px -1px 0 rgba(0, 0, 0, 0.72),
    -1px 1px 0 rgba(0, 0, 0, 0.72),
    1px 1px 0 rgba(0, 0, 0, 0.72);
}

#testimonials.section .carousel-nav-v {
  display: inline-flex !important;
  width: 32px;
  height: 32px;
  font-size: 18px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
}

@media (max-width: 760px) {
  .testimonials-track {
    max-height: min(480px, 65vh);
  }

  .carousel-nav-v {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  #testimonials.section .testimonials-carousel {
    grid-template-columns: 30px 1fr 30px;
    gap: 6px;
  }

  #testimonials.section .testimonials-track {
    grid-auto-columns: minmax(220px, 78vw);
  }

  #testimonials.section .carousel-nav-v {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
}

.hero-inner {
  padding-top: 40px;
  text-align: center;
  margin-inline: auto;
  max-width: 980px;
  position: relative;
  z-index: 3;
  padding-inline: 18px;
  padding-bottom: 16px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 760px) {
  /* מובייל: כותרות למעלה; למטה (txt → tags → LABA) */
  .hero {
    align-items: stretch;
  }

  .hero {
    padding-top: calc(env(safe-area-inset-top, 0px) + 56px);
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-self: stretch;
    min-height: 100%;
    min-height: min(
      calc(100dvh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 20px),
      92vh
    );
    width: 100%;
    box-sizing: border-box;
    /* פחות ריווח מלמעלה — הכותרות והלוקיישן קרובים יותר לתפריט */
    padding-top: max(
      calc(22px + env(safe-area-inset-top, 0px)),
      min(76px, calc(5.5vh + 28px))
    );
    padding-inline: max(14px, env(safe-area-inset-left, 0px)) max(14px, env(safe-area-inset-right, 0px));
  }

  @supports (height: 100dvh) {
    .hero-inner {
      padding-top: max(
        calc(22px + env(safe-area-inset-top, 0px)),
        min(76px, calc(5dvh + 32px))
      );
    }
  }

  .hero-inner .hero-headlines {
    margin-top: 0;
    margin-bottom: 0;
    flex-shrink: 0;
    transform: translateY(-6px);
  }

  /* פסקה + תוויות + קיקר יורדים עוד קצת למטה כדי לייצר רווח ברור מהכותרות */
  .hero-inner .hero-subtitle {
    margin-top: clamp(58px, 18vh, 156px);
    margin-bottom: clamp(8px, 2.5vw, 16px);
  }

  .hero-inner .hero-meta {
    margin-top: 0;
    margin-bottom: clamp(10px, 2.8vw, 18px);
    padding-top: 0;
    flex-shrink: 0;
  }

  .hero-inner .kicker {
    margin-top: 0;
    margin-bottom: max(14px, env(safe-area-inset-bottom, 0px));
    flex-shrink: 0;
  }

  #home.hero .hero-title {
    font-size: clamp(26px, 7.2vw, 42px);
    line-height: 1.14;
    margin-bottom: clamp(18px, 4.8vw, 32px);
  }

  #home.hero .hero-title__secondary {
    font-size: clamp(19px, 5.1vw, 30px);
    line-height: 1.16;
    margin-top: clamp(0.42em, 5vw, 0.85em);
    display: block;
    width: 100%;
    margin-inline: auto;
    text-align: center;
  }

  #home.hero .hero-headlines .hero-meta-location--hero-lead {
    margin-top: clamp(0.5em, 3.8vw, 0.95em);
    font-weight: 500;
    letter-spacing: 0.02em;
  }

  #home.hero .hero-subtitle {
    font-size: clamp(14px, 3.9vw, 16.5px);
    line-height: 1.52;
    padding-inline: 4px;
  }
}

/* Fredoka/Heebo כמו שאר האתר; הכותרות מקבלות --font-display ב-.hero-title */
.hero,
.hero * {
  font-family: var(--font-sans);
}

.hero-inner,
.hero-inner * {
  text-shadow: 0 10px 30px rgba(18, 40, 22, 0.16);
}

.hero-headlines {
  display: block;
  text-align: center;
  width: 100%;
  margin-inline: auto;
}

/* לוקיישן מיד מתחת לתת-כותרת ההירו, לפני פסקת המשנה */
.hero-headlines .hero-meta-location--hero-lead {
  margin-top: 0.38em;
  margin-bottom: 0;
}

.kicker {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.86);
  letter-spacing: 0.12em;
  font-size: 12px;
}

.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "wght" 480;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.12;
  color: rgba(255, 255, 255, 0.98);
  -webkit-text-stroke: 0;
  text-shadow: 0 10px 30px rgba(18, 40, 22, 0.2);
  text-align: center;
}

.hero-title__primary {
  display: inline-block;
}

/* Second line: clearly smaller than the main headline */
.hero-title__secondary {
  display: inline-block;
  font-size: clamp(26px, 3.85vw, 46px);
  font-weight: 400;
  font-variation-settings: "wght" 460;
  line-height: 1.18;
  margin-top: 0.06em;
}

.hero-subtitle {
  margin: 14px 0 0;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(15px, 1.85vw, 17.5px);
  font-weight: 400;
  line-height: 1.55;
  max-width: 920px;
  -webkit-text-stroke: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35), 0 1px 2px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

@media (min-width: 761px) {
  /* DOM: headlines, subtitle, meta, kicker — סדר ויזואלי: קיקר, כותרות, פסקה, תוויות */
  .hero-inner .kicker {
    order: 1;
    transform: translateY(-18px);
    margin-bottom: 22px;
  }

  .hero-inner .hero-headlines {
    order: 2;
    transform: translateY(-32px);
  }

  /* תת-כותרת צמודה לכותרת הראשית */
  #home.hero .hero-title .hero-title__secondary {
    display: block;
    margin-top: 0.14em;
    margin-inline: auto;
    text-align: center;
  }

  /* פסקת «אני מכירה…» — מתחת ללוקיישן, לפני התוויות */
  .hero-inner .hero-subtitle {
    order: 3;
    margin-top: clamp(40px, 7.5vh, 104px);
    margin-bottom: 0;
  }

  .hero-inner .hero-meta {
    order: 4;
    margin-top: calc(40px + 48px);
    transform: translateY(18px);
  }

  /* כל שירותי האולפן בשורה אחת (כולל «סטודיו להשכרה») */
  #home.hero .hero-tags-viewport {
    max-width: min(1180px, 96vw);
  }

  .hero-meta-row.hero-meta-row--services {
    flex-wrap: nowrap;
    justify-content: center;
    column-gap: clamp(3px, 0.42vw, 9px);
    row-gap: 0;
  }

  .hero-tags-desktop {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .hero-tags-desktop::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  .hero-meta .pill {
    font-size: clamp(10.5px, 0.85vw, 13px);
    font-weight: 400;
    letter-spacing: 0.04em;
    padding: 2px 3px;
    white-space: nowrap;
    flex-shrink: 0;
  }
}

.hero-meta {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  justify-content: center;
  opacity: 0;
  transition: opacity 420ms ease;
  pointer-events: none;
}

.hero-meta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 8px;
  max-width: 100%;
}

/* Full tag list for SEO / SR: never display:none — clip pattern via .sr-only (Tailwind) */
.hero-tags-source {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-meta.is-pills-revealed {
  opacity: 1;
  pointer-events: auto;
}

.hero-meta-row--services {
  row-gap: 5px;
  column-gap: 8px;
}

.hero-meta-location {
  margin: 0;
  padding: 0 8px;
  font-size: clamp(13px, 2.9vw, 14.5px);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4), 0 0 1px rgba(0, 0, 0, 0.35);
}

.hero-loc-highlight {
  display: inline;
  padding: 0.06em 0.26em 0.1em;
  border-radius: 5px;
  background: rgba(168, 140, 255, 0.38);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero-tags-desktop {
  width: 100%;
}

.hero-tags-mobile-wrap {
  display: none;
  width: 100%;
}

@media (max-width: 760px) {
  .hero-tags-desktop {
    display: none;
  }

  .hero-tags-mobile-wrap {
    display: block;
  }
}

.hero-tags-mobile-rotor {
  position: relative;
  width: 100%;
  min-height: 2.85rem;
}

.hero-tags-mobile-strip {
  margin: 0;
  padding: 4px 10px 0;
  width: 100%;
  box-sizing: border-box;
  font-size: clamp(11px, 3vw, 12.5px);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5), 0 0 1px rgba(0, 0, 0, 0.35);
}

.hero-tags-mobile-layer {
  position: absolute;
  inset-inline: 0;
  top: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  row-gap: 5px;
  column-gap: 6px;
  transition: opacity 0.38s ease;
}

.hero-tags-mobile-layer.is-hidden {
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-tags-mobile-layer.is-visible {
  opacity: 1;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero-tags-mobile-layer {
    transition: none;
  }
}

/* Hero tags: text only, no chip fill — reads on video like hero copy */
.hero-meta .pill {
  border: none;
  background: transparent;
  border-radius: 0;
  padding: 2px 5px;
  font-size: clamp(13.5px, 2.35vw, 15px);
  font-weight: 400;
  letter-spacing: 0.045em;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4), 0 0 1px rgba(0, 0, 0, 0.35);
}

@media (max-width: 760px) {
  .hero-meta .pill {
    font-size: clamp(12.5px, 3.1vw, 14px);
    padding: 2px 4px;
  }

  .hero-meta-location {
    font-size: clamp(12px, 3vw, 13.5px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-meta {
    opacity: 1;
    pointer-events: auto;
    transition: none;
  }
}

.pill {
  border: 1px solid rgba(110, 78, 45, 0.18);
  background: rgba(255, 255, 255, 0.72);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
}

.section {
  padding: 76px 0;
}

.section {
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 220ms ease;
}

.section .container {
  position: relative;
  z-index: 1;
}

.section--tint::before,
#about.section::before,
#faq.section::before {
  opacity: 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 248, 230, 0.55), rgba(255, 255, 255, 0));
  border-top: 1px solid rgba(20, 28, 22, 0.08);
  border-bottom: 1px solid rgba(20, 28, 22, 0.08);
}

/* Section-by-section palette flow (banana / mint / lavender) */
/* #testimonials: white/simple — keep in sync with earlier #testimonials rules */
#testimonials.section {
  background: transparent !important;
  background-image: none !important;
}

#productions.section {
  background-color: #efe7fb;
  background-image:
    linear-gradient(180deg, rgba(239, 231, 251, 0.48), rgba(239, 231, 251, 0.48)),
    url("./assets/texture-purple.png");
  background-size: cover, 280px auto;
  background-repeat: no-repeat, repeat;
  background-blend-mode: normal, multiply;
}

/* Center the video-backed text block (title + subtitle) */
#productions.section .section-head {
  justify-items: center;
  align-items: center;
  text-align: center;
  margin-inline: auto;
}

/* Desktop: סדר לפי DOM — כותרת → סטריפ Spotify → מבוא טקסט → כפתור */
@media (min-width: 761px) {
  #productions.section .productions-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  #productions.section .productions-content .section-head {
    margin-bottom: clamp(4px, 0.8vh, 12px);
  }

  #productions.section .productions-content .split-two {
    margin-bottom: 0;
    /* סטריפ השירים מעט נמוך יותר מתחת לכותרת */
    margin-top: clamp(18px, 2.4vh, 40px);
  }

  #productions.section .productions-content .section-subtitle-stack {
    /* מבוא קרוב יותר לגריד; גופן מוגדל למטה */
    margin-top: clamp(22px, 2.1vh, 38px);
    margin-bottom: clamp(14px, 2vh, 26px);
  }

  /* מבוא מתחת לשירים: +20% לעומת ברירת המחדל בדסקטופ */
  #productions.section .productions-content .section-subtitle-line--productions-prose {
    font-size: calc(var(--admin-prod-intro-font, 1.2em) * 1.2);
  }

  /* מבוא ממורכז מתחת לשירים */
  #productions.section .productions-content .section-subtitle-stack,
  #productions.section .productions-content .section-subtitle-line {
    text-align: center;
    margin-inline: auto;
  }
}

/* Productions intro: one rhythm between lines (no mixed paragraph gaps vs line-height) */
#productions.section .section-subtitle-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.62em;
  max-width: var(--admin-prod-stack-max, min(72ch, 100%));
  width: 100%;
  margin: 0;
  text-align: center;
}

#productions.section .section-subtitle-line {
  margin: 0;
  padding: 0;
  font-size: var(--admin-prod-intro-font, 1.2em);
  line-height: 1.48;
  max-width: 100%;
  text-wrap: balance;
}

/* מבוא «שירים שיצאו מכאן»: שורות + רווחי בלוק כפולים מהמקור (לא gap בין פסקאות) */
#productions.section .section-subtitle-line--productions-prose {
  white-space: pre-line;
  text-wrap: unset;
  max-width: var(--admin-prod-intro-max-w, min(40ch, 100%));
}

@media (max-width: 760px) {
  #productions.section .productions-content .section-subtitle-stack {
    margin-top: 16px;
  }

  #productions.section .section-subtitle-stack {
    max-width: var(--admin-prod-stack-max-m, var(--admin-prod-stack-max, min(72ch, 100%)));
  }

  #productions.section .section-subtitle-line--productions-prose {
    max-width: var(--admin-prod-intro-max-w-m, var(--admin-prod-intro-max-w, min(40ch, 100%)));
    font-size: var(--admin-prod-intro-font-m, var(--admin-prod-intro-font, 1.2em));
  }
}

#process.section {
  background-color: #efe7fb;
  background-image:
    linear-gradient(180deg, rgba(239, 231, 251, 0.48), rgba(239, 231, 251, 0.48)),
    url("./assets/texture-purple.png");
  background-size: cover, 280px auto;
  background-repeat: no-repeat, repeat;
  background-blend-mode: normal, multiply;
}

#faq.section {
  background: transparent !important;
  background-image: none !important;
}

/* FAQ video: soft warm wash (panel is off-white, not stark) */
#faq.section .section-video-overlay {
  background: linear-gradient(
    180deg,
    rgba(236, 232, 224, 0.78),
    rgba(228, 223, 214, 0.82)
  );
}

#gallery.section {
  background: linear-gradient(180deg, rgba(255, 248, 230, 0.62), rgba(255, 248, 230, 0.5)) !important;
  color: rgba(20, 28, 22, 0.92) !important;
}

/* Ensure text is readable on yellow crumpled background */
#gallery.section .section-head .section-title {
  color: rgba(20, 28, 22, 0.98) !important;
  text-shadow: none !important;
  font-weight: 400 !important;
}

#gallery.section .section-head .section-subtitle {
  color: rgba(20, 28, 22, 0.76) !important;
  text-shadow: none !important;
  font-weight: 400 !important;
}

/* Light gallery strip: same white pill, slight shadow so it reads on cream */
#gallery.section .carousel-nav {
  border-color: var(--btn-outline);
  color: var(--btn-outline);
  background: transparent;
  filter: drop-shadow(0 1px 2px rgba(0, 43, 73, 0.35));
}

#gallery.section .carousel-nav:hover {
  filter: none;
  background: var(--btn-fill);
  border-color: var(--btn-fill);
  color: var(--btn-ink);
}

/* FAQ: minimalist cream accordion (RTL, chevron left, hairline dividers) */
#faq.section .container {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-inline: auto;
  padding: clamp(22px, 4vw, 34px) clamp(16px, 3.5vw, 28px) clamp(26px, 4vw, 38px);
  background: #ebe8e1;
  border: 1px solid rgba(20, 28, 22, 0.1);
  border-radius: 2px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset;
}

#faq.section .section-head {
  margin-bottom: 0.35rem;
  text-align: right;
}

#faq.section .section-title {
  color: rgba(22, 26, 24, 0.94) !important;
  font-weight: 400 !important;
  text-shadow: none !important;
  text-align: right;
}

#faq.section .section-subtitle {
  color: rgba(22, 26, 24, 0.68) !important;
  text-shadow: none !important;
  text-align: right;
}

#faq.section .accordion {
  display: block;
  gap: 0;
  margin-top: 0.5rem;
  padding: 0;
  background: transparent;
  border: none;
}

#faq.section .qa {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  border-bottom: 1px solid rgba(20, 28, 22, 0.14) !important;
  overflow: visible;
}

#faq.section .qa:last-child {
  border-bottom: none !important;
}

#faq.section .qa[open] {
  border-bottom-color: rgba(20, 28, 22, 0.14) !important;
  box-shadow: none !important;
}

#faq.section .qa summary {
  display: flow-root;
  cursor: pointer;
  color: rgba(22, 26, 24, 0.94) !important;
  font-weight: 400 !important;
  padding: 1.05rem 0 1.05rem 1.75rem;
  padding-inline-end: 0;
  line-height: 1.45;
  list-style: none;
  text-align: right;
  transition: color 0.15s ease;
}

#faq.section .qa summary::-webkit-details-marker {
  display: none;
}

/* Chevron on physical left (float:left), text RTL-right */
#faq.section .qa summary::after {
  float: left;
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  margin-top: 0.38rem;
  margin-inline-end: 0;
  border: solid rgba(22, 26, 24, 0.5);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  transition: transform 0.2s ease, border-color 0.15s ease;
}

#faq.section .qa[open] summary::after {
  margin-top: 0.52rem;
  transform: rotate(-135deg);
  border-color: rgba(22, 26, 24, 0.58);
}

#faq.section .qa summary:hover {
  color: rgba(12, 14, 13, 0.98) !important;
}

#faq.section .qa-body {
  color: rgba(22, 26, 24, 0.7) !important;
  font-weight: 400 !important;
  font-size: clamp(0.9rem, 2.1vw, 0.98rem);
  padding: 0 0 1.05rem 1.75rem !important;
  padding-inline-end: 0 !important;
  margin: 0;
  text-align: right;
  line-height: 1.6;
}

#faq.section .section-foot .button.button-primary {
  background: rgba(124, 84, 52, 0.96);
  border: 1px solid rgba(124, 84, 52, 0.96);
  color: rgba(255, 252, 246, 0.98);
  border-radius: 999px;
  padding: 10px 20px;
  min-height: 42px;
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 400;
  box-shadow: 0 8px 20px rgba(124, 84, 52, 0.22);
}

#faq.section .section-foot .button.button-primary:hover {
  background: rgba(103, 68, 42, 0.98);
  border-color: rgba(103, 68, 42, 0.98);
  color: #fff;
}

@media (max-width: 760px) {
  #faq.section .container {
    margin-inline: max(0px, env(safe-area-inset-left, 0px));
    margin-inline-end: max(0px, env(safe-area-inset-right, 0px));
    border-radius: 0;
    border-inline: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  #faq.section .qa summary::after {
    transition: none;
  }
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}

.section-title {
  margin: 0;
  font-family: var(--font-ornate);
  font-weight: 400;
  font-size: clamp(26px, 3.2vw, 38px);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.section-subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 72ch;
}

.section-foot {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

.section-foot.split {
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.grid {
  display: grid;
  gap: 14px;
}

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

.quote-card,
.step-card,
.card {
  background: linear-gradient(180deg, rgba(255, 248, 230, 0.82), rgba(255, 255, 255, 0.62));
  border: 1px solid rgba(20, 28, 22, 0.12);
  border-radius: var(--radius);
  padding: 16px 16px;
  box-shadow: var(--shadow);
  position: relative;
}

.quote-card::before,
.step-card::before,
.card::before {
  content: "";
  position: absolute;
  inset-inline: 14px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(244, 227, 161, 0.9), rgba(217, 200, 255, 0.9));
  opacity: 0.55;
}

.quote-card blockquote {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

.quote-card figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 400;
}

/* =========================
   Testimonials: colorful cards
   ========================= */

.planter-card {
  position: relative;
  padding: 12px 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(20, 28, 22, 0.12);
  background: var(--review-bg, rgba(255, 248, 230, 0.9));
  box-shadow: 0 14px 26px rgba(40, 35, 20, 0.14);
  overflow: clip;
  min-height: 330px;
}

.planter-card::before {
  content: "Creative Lives";
  position: absolute;
  top: 10px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 400;
  color: rgba(20, 28, 22, 0.75);
  letter-spacing: 0.01em;
}

.planter-art {
  margin: 28px auto 12px;
  width: 78%;
  aspect-ratio: 1 / 1;
  position: relative;
  border-radius: 18px;
  border: 2px dashed rgba(20, 28, 22, 0.26);
  background: rgba(255, 255, 255, 0.58);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.planter-art::after {
  content: "פלייסהולדר לתמונה";
  font-size: 13px;
  font-weight: 400;
  color: rgba(20, 28, 22, 0.65);
  background: rgba(255, 255, 255, 0.8);
  padding: 6px 10px;
  border-radius: 999px;
}

.planter-person {
  position: absolute;
  inset: 10px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.14));
  border: 1px solid rgba(20, 28, 22, 0.16);
}

.planter-photo {
  position: absolute;
  inset: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(20, 28, 22, 0.2);
  box-shadow: 0 8px 20px rgba(20, 28, 22, 0.12);
}

.planter-1 .planter-person { border-radius: 41% 59% 45% 55% / 49% 39% 61% 51%; }
.planter-2 .planter-person { border-radius: 32% 68% 52% 48% / 44% 58% 42% 56%; }
.planter-3 .planter-person { border-radius: 57% 43% 62% 38% / 40% 63% 37% 60%; }
.planter-4 .planter-person { border-radius: 47% 53% 35% 65% / 64% 35% 65% 36%; }
.planter-5 .planter-person { border-radius: 63% 37% 48% 52% / 52% 49% 51% 48%; }
.planter-6 .planter-person { border-radius: 39% 61% 57% 43% / 47% 57% 43% 53%; }

.planter-1 { --review-bg: #f7e7ad; }
.planter-2 { --review-bg: #f6eca8; }
.planter-3 { --review-bg: #d9d5ff; }
.planter-4 { --review-bg: #beddff; }
.planter-5 { --review-bg: #efcef4; }
.planter-6 { --review-bg: #f7e7ad; }

.planter-box {
  display: none;
}

.planter-quote {
  margin: 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.45;
  color: rgba(20, 28, 22, 0.9);
  text-align: right;
  min-height: 78px;
}

.planter-by {
  margin-top: 10px;
  color: rgba(20, 28, 22, 0.86);
  font-weight: 400;
  text-align: center;
}

@media (max-width: 980px) {
  .planter-card {
    min-height: 300px;
  }
}

.tracks {
  display: grid;
  gap: 10px;
}

/* Productions: desktop grid; mobile becomes horizontal carousel (see max-width: 760px) */
#productions.section .tracks-carousel {
  display: block;
  width: 100%;
}

#productions.section .tracks-carousel-top {
  display: none;
}

#productions.section .tracks-carousel-nav {
  display: none;
}

/* Wider cells = Spotify shows full title/artist; 2-up on most desktops, 3-up only on very wide screens */
#productions.section .tracks {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 920px;
  margin-inline: auto;
  justify-items: center;
}

@media (min-width: 1320px) {
  #productions.section .tracks {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1180px;
    gap: 14px;
  }
}

#productions.section .track-actions--apple-only {
  align-items: center;
}

@media (min-width: 761px) {
  /* קרקעית: אייקון אפל ממורכז לגובה ה-embed, מעט למעלה */
  #productions.section .track-actions--apple-only {
    min-height: 209px;
    justify-content: center;
    transform: translateY(-14px);
  }
}

.track {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 14px 14px;
  border-radius: var(--radius);
  border: 0;
  background: transparent;
}

.track-cover {
  width: min(320px, 42vw);
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 0;
  background: transparent;
}

.track-cover iframe {
  display: block;
  width: 100%;
  border: 0;
}

/* Spotify embed — slightly shorter on desktop; pair with wider grid columns for readable metadata */
#productions.section .track-cover iframe {
  display: block;
  height: 209px;
  max-width: 100%;
}

.track:hover {
  background: transparent;
}

.track-title {
  font-weight: 400;
  font-size: 34px;
  color: rgba(255, 255, 255, 0.98);
  text-shadow: none;
}

.track-meta {
  color: rgba(255, 255, 255, 0.95);
  font-size: 28px;
  font-weight: 400;
  text-shadow: none;
}

#productions.section .track-actions .button {
  font-weight: 400;
}

#productions.section .track-actions {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Apple above YouTube, same column width (symmetric stack) */
#productions.section .track-actions:not(.track-actions--apple-only) {
  flex-direction: column-reverse;
}

#productions.section .track-actions {
  height: auto;
}

#productions.section .track-preview-card {
  width: min(288px, 38vw);
  height: 137px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: block;
  text-decoration: none;
  background: rgba(20, 28, 22, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

#productions.section .track-preview-iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

#productions.section .track-preview-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95) contrast(1.05) brightness(0.88);
}

/* Darken the thumbnail so white text stays readable */
#productions.section .track-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 28, 22, 0.1), rgba(20, 28, 22, 0.78));
}

#productions.section .track-preview-apple-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 59, 95, 0.18), rgba(20, 28, 22, 0) 60%),
    rgba(20, 28, 22, 0.82);
}

#productions.section .track-preview-text {
  position: absolute;
  inset-inline: 12px;
  inset-block-start: 14px;
  display: grid;
  gap: 6px;
  direction: rtl;
  text-align: right;
}

#productions.section .track-preview-title {
  color: rgba(255, 255, 255, 0.98);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

#productions.section .track-preview-artist {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
}

#productions.section .track-preview-pill {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--btn-outline);
  color: var(--btn-outline);
  font-weight: 400;
  font-size: 12px;
  width: fit-content;
}

#productions.section .track-preview-play {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--btn-fill);
  border: 1px solid var(--btn-fill);
  color: var(--btn-ink);
  font-size: 16px;
  font-weight: 400;
  box-shadow: 0 10px 24px rgba(0, 43, 73, 0.22);
}

#productions.section .track-preview-apple-icon {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 28px;
  height: 28px;
  color: var(--btn-outline);
}

#productions.section .track-preview-card:hover {
  transform: translateY(-1px);
}

#productions.section .track-preview-card {
  transition: transform 140ms ease;
}

#productions.section .track-icon-btn {
  width: 37px;
  height: 37px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--btn-outline);
  color: var(--btn-outline);
  transition: transform 140ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

#productions.section .track-icon-btn svg {
  width: 18px;
  height: 18px;
  display: block;
}

#productions.section .track-icon-btn--apple .apple-music-mark {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
  opacity: 1;
}

#productions.section .track-icon-btn:hover {
  transform: translateY(-1px);
  background: var(--btn-fill);
  border-color: var(--btn-fill);
  color: var(--btn-ink);
}

#productions.section .track-icon-btn[aria-disabled="true"] {
  opacity: 0.58;
}

#productions.section .track-icon-btn--youtube:hover {
  background: var(--btn-fill);
  border-color: var(--btn-fill);
  color: var(--btn-ink);
}

#productions.section .track-icon-btn--apple:hover {
  background: var(--btn-fill);
  border-color: var(--btn-fill);
  color: var(--btn-ink);
}

/* Color comes from `color` on the button */
#productions.section .track-icon-btn--apple:hover .apple-music-mark {
  opacity: 1;
}

/* Since collage was removed: let tracks use full width */
#productions.section .split-two {
  grid-template-columns: 1fr;
}

/* Keep title/artist + YouTube button close to Spotify card */
#productions.section .track {
  gap: 8px;
  min-width: 0;
}

/* Icons beside Spotify: LTR + row-reverse; centered in grid cell with capped width */
@media (min-width: 761px) {
  #productions.section .track:has(.track-cover) {
    display: flex;
    flex-direction: row-reverse;
    direction: ltr;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 360px;
  }

  #productions.section .track:has(.track-cover) .track-actions {
    flex: 0 0 auto;
    justify-content: center;
  }
}

/* CTA under track grid: center (override .section-foot.split) */
#productions.section .section-foot.split {
  justify-content: center;
}

/* Don’t let the iframe squeeze narrower than Spotify’s layout expects (prevents “Cor…” / “SHA…” truncation) */
#productions.section .track-cover {
  width: min(288px, 100%);
  flex-shrink: 0;
  min-width: 0;
  line-height: 0;
}

/* Icon-only rows (no Spotify embed): center YouTube + Apple */
#productions.section .track:not(:has(.track-cover)) {
  justify-content: center;
}

@media (max-width: 760px) {
  /* Same horizontal band as section text: symmetric, centered (no extra inline padding) */
  #productions.section .split-two {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
  }

  /* Mobile: dedicated vertical productions clip — center framing */
  #productions.section .section-video-bg video.section-video {
    transform: scale(1.08);
    transform-origin: center center;
    object-position: center center;
  }

  .track {
    flex-direction: column;
    align-items: stretch;
  }

  .track-cover {
    width: 100%;
  }

  .track-actions {
    justify-content: flex-end;
  }

  /* Mobile: keep icon buttons tight under Spotify preview */
  #productions.section .track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
    justify-items: center;
  }

  #productions.section .track-cover {
    order: 1;
  }

  #productions.section .track-actions {
    order: 2;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-self: center;
    width: 100%;
    max-width: 100%;
    gap: 12px;
    margin-top: -14px;
    margin-bottom: 0;
    transform: none;
  }

  /* מובייל: אפל לפני יוטיוב בשורה (משמאל ב-LTR) */
  #productions.section .track-actions:not(.track-actions--apple-only) {
    flex-direction: row-reverse;
  }

  #productions.section .track:not(:has(.track-cover)) .track-actions {
    justify-content: center;
    margin-top: 0;
  }

  #productions.section .track-left {
    order: 3;
  }

  #productions.section .track-preview-card {
    width: 100%;
    max-width: 346px;
  }

  /* Spotify + icons first; «לשיר הבא» + arrows last — extra space before nav row */
  #productions.section .tracks-carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: min(346px, calc(100% - 16px));
    max-width: 100%;
    min-width: 0;
    margin-inline: 0;
    box-sizing: border-box;
    direction: ltr;
  }

  #productions.section .tracks-carousel > .tracks {
    order: 1;
    width: 100%;
    min-width: 0;
  }

  #productions.section .tracks-carousel-top {
    order: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    flex-wrap: wrap;
    margin-top: 4px;
    margin-bottom: 0;
  }

  #productions.section .tracks-carousel-hint {
    font-size: clamp(15px, 3.9vw, 18px);
    font-weight: 400;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.94);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
    white-space: nowrap;
    user-select: none;
  }

  #productions.section .tracks-carousel-nav {
    display: inline-flex;
    align-self: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid var(--btn-outline);
    background: transparent;
    color: var(--btn-outline);
    font-size: 19px;
    line-height: 0;
    cursor: pointer;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    padding: 0 0 var(--circle-chevron-pad-bottom) 0;
    transition: transform 140ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
    box-shadow: 0 6px 14px rgba(0, 43, 73, 0.2);
  }

  #productions.section .tracks-carousel-nav:hover {
    background: var(--btn-fill);
    border-color: var(--btn-fill);
    color: var(--btn-ink);
  }

  #productions.section .tracks-carousel-nav:active {
    transform: scale(0.96);
  }

  #productions.section .tracks-carousel-nav.is-hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }

  #productions.section .tracks {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    /* Scroll without ever showing a scrollbar (touch + arrows still work) */
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    scroll-behavior: smooth;
    padding: 0;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scrollbar-color: transparent transparent;
    -ms-overflow-style: none;
    direction: ltr;
  }

  #productions.section .tracks::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent;
  }

  #productions.section .tracks::-webkit-scrollbar-thumb {
    background: transparent;
  }

  #productions.section .tracks::-webkit-scrollbar-track {
    background: transparent;
  }

  #productions.section .tracks .track {
    flex: 0 0 auto;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0;
    overflow-x: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  /* Spotify preview במובייל: גדול ובולט יותר */
  #productions.section .track-cover {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    overflow: hidden;
    overflow: clip;
    direction: ltr;
    border-radius: 12px;
    line-height: 0;
    box-shadow: none;
  }

  #productions.section .track-cover iframe {
    height: 218px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    display: block;
    border: 0;
  }

  #productions.section .track-actions--apple-only {
    justify-content: center;
    min-height: 0;
    margin-top: -14px;
    transform: none;
  }

  /* התאמת כפתורי הפעולה ל-preview הגדול במובייל */
  #productions.section .track-icon-btn {
    width: 44px;
    height: 44px;
  }

  #productions.section .track-icon-btn svg {
    width: 21px;
    height: 21px;
  }

  #productions.section .track-icon-btn--apple .apple-music-mark {
    width: 21px;
    height: 21px;
  }

  /* בלי "פס/צל" מאחורי אייקוני הפעולות */
  #productions.section .tracks-carousel,
  #productions.section .tracks-carousel-top,
  #productions.section .tracks,
  #productions.section .track,
  #productions.section .track-actions {
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  #productions.section .section-foot.split {
    width: 100%;
    justify-content: center;
  }

  /* מבטל fade תחתון במובייל בסקשן ההפקות */
  #productions.section .section-video-overlay {
    background: rgba(20, 28, 22, 0.34);
  }
}

.two-col {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 16px;
  align-items: start;
}

.split-two {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 14px;
  align-items: start;
}

.media-collage {
  border-radius: var(--radius);
  border: 1px solid rgba(20, 28, 22, 0.12);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  overflow: clip;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 150px;
  gap: 8px;
  padding: 8px;
}

.media-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.media-collage .mc-a {
  grid-column: 1 / span 6;
  grid-row: 1 / span 2;
}
.media-collage .mc-b {
  grid-column: 1 / span 3;
  grid-row: 3 / span 1;
}
.media-collage .mc-c {
  grid-column: 4 / span 3;
  grid-row: 3 / span 1;
}

.media-row {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.media-row img {
  width: 100%;
  height: 220px;
  display: block;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(20, 28, 22, 0.12);
  box-shadow: var(--shadow);
}

/* ========= LABA / #process — אקורדיון כמו FAQ (דסקטופ: פאנל ממורכז | מובייל: זכוכית על הווידאו) ========= */

/* Process section: hide photos; קומפקטי יותר כדי לקצר את הסקשן */
#process.section .media-row {
  min-height: 48px;
  margin-top: 8px;
}

#process.section .section-foot--process {
  margin-top: 10px;
}

#process.section .section-head {
  margin-bottom: 16px;
  text-align: center;
}

#process.section .section-head .section-title {
  text-align: center;
}

#process.section .media-row img {
  opacity: 0;
  pointer-events: none;
}

#process.section .step-card__prose {
  display: flex;
  flex-direction: column;
  gap: 0.62em;
  margin-top: 4px;
}

#process.section .step-card__prose .muted {
  margin: 0;
  line-height: 1.58;
  font-size: clamp(0.9rem, 1.75vw, 0.97rem);
}

#process .process-step.step-card {
  padding: 0;
  overflow: visible;
}

/* ללא פס עליון של .step-card — במובייל נראה שבור/מוזר מעל רקע שקוף */
#process .process-step.step-card::before {
  display: none;
}

/* אקורדיון — בסיס לכל הרוחבים (מובייל דורס צבעים ופריסת כותרת) */
#process .process-grid {
  display: block;
}

#process .process-step .process-step__flip {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

#process .process-step__face {
  position: relative;
  transform: none !important;
  backface-visibility: visible;
  -webkit-backface-visibility: visible;
}

#process .process-step__face--front {
  position: relative;
  display: flow-root;
  cursor: pointer;
  outline: none;
  padding: 1.05rem 0 1.05rem 1.75rem;
  padding-inline-end: 0;
  line-height: 1.45;
  text-align: right;
  direction: rtl;
  color: rgba(22, 26, 24, 0.94);
  transition: color 0.15s ease;
}

#process .process-step__face--front::after {
  float: left;
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  margin-top: 0.38rem;
  border: solid rgba(22, 26, 24, 0.5);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  transition: transform 0.2s ease, border-color 0.15s ease;
}

#process .process-step--open .process-step__face--front::after {
  margin-top: 0.52rem;
  transform: rotate(-135deg);
  border-color: rgba(22, 26, 24, 0.58);
}

#process .process-step__face--front:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(124, 84, 52, 0.45);
  border-radius: 2px;
}

#process .process-step__face--front:hover {
  color: rgba(12, 14, 13, 0.98);
}

#process .process-step .step-num {
  font-size: 12px;
  letter-spacing: 0.1em;
  margin: 0 0 0.15rem;
  color: rgba(22, 26, 24, 0.55);
}

#process .process-step .step-title {
  margin: 0.2rem 0 0;
  font-size: clamp(0.95rem, 2.1vw, 1.05rem);
  max-width: 100%;
  color: inherit;
  font-weight: inherit;
}

#process .process-step .step-card__prose,
#process .process-step .step-card__prose .muted {
  color: rgba(22, 26, 24, 0.72) !important;
}

#process .process-step__face--back {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0;
  transition:
    max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.28s ease,
    padding 0.28s ease;
}

#process .process-step--open .process-step__face--back {
  max-height: 2200px;
  opacity: 1;
  padding: 0 0 1.05rem 1.75rem;
  padding-inline-end: 0;
  overflow: visible;
}

#process .process-step .step-card__prose {
  margin-top: 0;
  padding: 0;
  font-size: clamp(0.9rem, 2.1vw, 0.98rem);
  line-height: 1.6;
}

@media (min-width: 761px) {
  /* מיכל שקוף, ממורכז; שלבים ככרטיסים נפרדים מעל הווידאו */
  #process.section .container {
    position: relative;
    z-index: 1;
    /* היה 720px; הקטנה ב־20% למלבני התהליך + כותרת ממורכזים */
    max-width: min(576px, 100% - 32px);
    margin-inline: auto;
    padding: clamp(22px, 4vw, 34px) clamp(16px, 3.5vw, 28px) clamp(26px, 4vw, 38px);
    background: transparent;
    border: none;
    box-shadow: none;
  }

  #process.section .section-head {
    margin-bottom: clamp(16px, 2.5vw, 24px);
    text-align: center;
  }

  #process.section .section-head .section-title {
    color: rgba(255, 255, 255, 0.98) !important;
    font-weight: 400 !important;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35) !important;
    text-align: center;
  }

  #process .process-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  #process .process-step.step-card {
    margin-bottom: 0;
    padding-inline: clamp(10px, 1.8vw, 16px);
    box-sizing: border-box;
    background: rgba(255, 248, 230, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: var(--radius) !important;
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  #process .process-step--open.step-card {
    background: rgba(255, 248, 230, 0.14) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
  }

  /* שורת כותרת צרה — ממורכז; ריווח אופקי סימטרי (החץ מוחלט משמאל) */
  #process .process-step__face--front {
    color: rgba(255, 255, 255, 0.96);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.06rem;
    padding: 0.28rem 2.35rem 0.3rem;
    text-align: center;
    min-height: 0;
  }

  #process .process-step--open .process-step__face--back {
    padding: 0 0 1.1rem 3.15rem;
    padding-inline-end: 0;
  }

  #process .process-step__face--front::after {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    float: none;
    margin: 0;
    border-color: rgba(255, 255, 255, 0.72);
    width: 0.48rem;
    height: 0.48rem;
    transform: translateY(-50%) rotate(45deg);
  }

  #process .process-step--open .process-step__face--front::after {
    border-color: rgba(255, 255, 255, 0.88);
    margin-top: 0;
    transform: translateY(-50%) rotate(-135deg);
  }

  #process .process-step__face--front:hover {
    color: #fff;
  }

  #process .process-step__face--front:focus-visible {
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.35);
  }

  #process .process-step .step-num {
    color: rgba(255, 255, 255, 0.82);
    font-size: calc(12px * 1.3);
    margin: 0;
    line-height: 1;
  }

  /* +50% ו־+30% כבסיס, −10%, ועוד −15% */
  #process .process-step .step-title {
    font-size: calc(1.17em * 1.5 * 1.3 * 0.9 * 0.85);
    line-height: 1.1;
    margin: 0;
    width: 100%;
    max-width: 100%;
    text-align: center;
    color: rgba(255, 255, 255, 0.98);
  }

  #process .process-step .step-card__prose,
  #process .process-step .step-card__prose .muted {
    color: rgba(255, 255, 255, 0.9) !important;
  }

  #process .process-step .step-card__prose {
    font-size: calc(clamp(0.9rem, 2.1vw, 0.98rem) * 1.3);
    line-height: 1.62;
  }

  #process.section .process-step .step-card__prose .muted {
    font-size: calc(clamp(0.9rem, 1.75vw, 0.97rem) * 1.3);
  }

  #process.section .section-foot--process {
    margin-top: clamp(32px, 4.5vw, 52px);
  }
}

@media (max-width: 760px) {
  /* סקשן ארוך יותר; הווידאו נמתח עם גובה הסקשן */
  #process.section {
    padding: clamp(28px, 7vw, 48px) 0 calc(12px * 1.4 + 18vh);
    min-height: min(calc(54vh * 1.65), 980px);
    box-sizing: border-box;
  }

  #process.section .section-head {
    margin-bottom: clamp(22px, 6.5vw, 36px);
  }

  #process.section .media-row {
    display: none;
    min-height: 0;
    height: 0;
    margin: 0;
    overflow: hidden;
  }

  #process.section .section-foot--process {
    margin-top: clamp(22px, 6vw, 38px);
    margin-bottom: 0;
  }

  #process .process-grid {
    margin-top: clamp(10px, 3vw, 18px);
  }

  #process .process-step.step-card {
    margin-bottom: 8px;
    background: rgba(255, 248, 230, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    border-radius: var(--radius) !important;
    box-shadow: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  #process .process-step.step-card:last-child {
    margin-bottom: 2px;
  }

  #process .process-step--open.step-card {
    background: rgba(255, 248, 230, 0.12);
    border-color: rgba(255, 255, 255, 0.28) !important;
  }

  #process .process-step__face--front {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5px 12px 5px 30px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.96);
  }

  #process .process-step__face--front:focus-visible {
    box-shadow: inset 0 0 0 2px rgba(124, 84, 52, 0.45);
    border-radius: calc(var(--radius) - 2px);
  }

  #process .process-step__face--front::after {
    float: none;
    position: absolute;
    left: 12px;
    top: 50%;
    margin-top: 0;
    border-color: rgba(255, 255, 255, 0.78);
    transform: translateY(-50%) rotate(45deg);
  }

  #process .process-step--open .process-step__face--front::after {
    margin-top: 0;
    transform: translateY(-50%) rotate(-135deg);
    border-color: rgba(255, 255, 255, 0.9);
  }

  #process .process-step__face--front:hover {
    color: #fff;
  }

  #process .process-step .step-title {
    margin: 0;
    font-size: clamp(0.95rem, 3.4vw, 1.02rem);
    color: rgba(255, 255, 255, 0.98);
  }

  #process .process-step .step-num {
    margin: 0 0 1px;
    color: rgba(255, 255, 255, 0.9);
  }

  #process .process-step .step-card__prose,
  #process .process-step .step-card__prose .muted {
    color: rgba(255, 255, 255, 0.94) !important;
  }

  #process .process-step__face--back {
    padding: 0 10px;
  }

  #process .process-step--open .process-step__face--back {
    padding: 0 10px 10px;
  }

  #process .process-step .step-card__prose {
    padding: 0 0 0 1.35rem;
    padding-inline-end: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  #process .process-step .process-step__flip {
    transition: none;
  }

  #process .process-step__face--back {
    transition: none;
  }

  #process .process-step__face--front::after {
    transition: none;
  }
}

.media-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.media-strip img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(110, 78, 45, 0.18);
  box-shadow: var(--shadow);
  display: block;
}

.lead {
  margin: 14px 0 0;
  font-size: 18px;
}

.muted {
  color: var(--muted);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.stat {
  border: 1px solid rgba(20, 28, 22, 0.12);
  background: rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-sm);
  padding: 12px 12px;
}

.stat-num {
  font-size: 22px;
  letter-spacing: 0.02em;
}

.stat-label {
  color: var(--muted);
  font-size: 13px;
}

.portrait-card {
  padding: 0;
  overflow: clip;
}

.portrait {
  height: 320px;
  padding: 12px;
  background: rgba(255, 248, 230, 0.95);
  border-bottom: 1px solid rgba(20, 28, 22, 0.1);
  overflow: clip;
  position: relative;
}

/* Removed decorative “tape” strip over portrait (was purple bar on studio photo) */

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.03) contrast(1.02);
  border: 1px solid rgba(110, 78, 45, 0.2);
  box-shadow: 0 10px 26px rgba(70, 50, 20, 0.16);
  clip-path: polygon(
    1% 2%, 8% 0%, 18% 2%, 30% 0.5%, 44% 2.5%, 58% 0.8%, 72% 2.2%, 86% 0.6%, 99% 2.4%,
    98.2% 14%, 99.4% 30%, 97.8% 46%, 99.2% 63%, 98.1% 78%, 99% 92%,
    93% 99.2%, 78% 97.5%, 63% 99.3%, 48% 97.6%, 33% 99.2%, 18% 97.3%, 4% 99.4%,
    0.6% 90%, 2% 74%, 0.8% 58%, 2.1% 42%, 0.5% 26%, 1.8% 12%
  );
}

.portrait-body {
  padding: 16px;
}

.portrait-title {
  font-weight: 400;
  letter-spacing: 0.14em;
  font-size: 14px;
}

.portrait-sub {
  color: var(--muted);
  margin-top: 6px;
  font-size: 13px;
}

.portrait-actions {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social {
  font-size: 13px;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.step-num {
  color: rgba(132, 96, 56, 0.95);
  letter-spacing: 0.12em;
  font-weight: 400;
  font-size: 14px;
}

.step-title {
  margin: 10px 0 6px;
}

.accordion {
  display: grid;
  gap: 10px;
}

.qa {
  border-radius: var(--radius);
  border: 1px solid rgba(20, 28, 22, 0.12);
  background: rgba(255, 255, 255, 0.66);
  overflow: clip;
}

.qa[open] {
  border-color: rgba(110, 78, 45, 0.26);
  box-shadow: 0 18px 55px rgba(110, 78, 45, 0.1);
}

.qa summary {
  cursor: pointer;
  padding: 14px 14px;
  font-weight: 400;
  list-style: none;
}
.qa summary::-webkit-details-marker {
  display: none;
}

.qa summary::after {
  content: "＋";
  float: left;
  color: var(--muted);
  font-weight: 400;
}

.qa[open] summary::after {
  content: "—";
}

.qa-body {
  padding: 0 14px 14px;
  color: var(--muted);
}

.masonry {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 10px;
}

.tile {
  grid-column: span 4;
  min-height: 170px;
  border-radius: var(--radius);
  border: 1px solid rgba(20, 28, 22, 0.12);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  overflow: clip;
}

.tile-wide {
  grid-column: span 8;
}

.tile-tall {
  grid-column: span 4;
  min-height: 350px;
}

.tile img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  filter: saturate(1.02) contrast(1.03);
  transition: transform 220ms ease, filter 220ms ease;
}

.tile:hover img {
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.05);
}

/* Studio stories preview */
.story-preview {
  display: none;
  margin: 8px auto 18px;
  width: min(380px, 100%);
}

.story-preview__top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.story-preview__open {
  color: rgba(255, 252, 246, 0.96);
  border: 1px solid rgba(255, 252, 246, 0.75);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.34);
  background: rgba(0, 0, 0, 0.16);
}

.story-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  border-radius: 28px;
}

.story-track::-webkit-scrollbar {
  display: none;
}

.story-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  margin: 0;
}

.story-phone {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  overflow: hidden;
  background: #0c1110;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
}

.story-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-phone__bars {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  z-index: 2;
  direction: ltr;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.story-phone__bars span {
  height: 3px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.38);
}

.story-phone__bars span.is-active {
  background: rgba(255, 255, 255, 0.94);
}

.story-phone__head {
  position: absolute;
  top: 20px;
  left: 12px;
  right: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  font-size: 12px;
}

.story-phone__avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(0, 0, 0, 0.24);
  font-size: 10px;
}

.story-nav {
  border: 1px solid var(--btn-outline);
  background: rgba(0, 0, 0, 0.2);
  color: var(--btn-outline);
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.story-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.story-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 10px;
}

.story-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.38);
  padding: 0;
}

.story-dot.is-active {
  background: rgba(255, 255, 255, 0.95);
}

/* Gallery carousel */
.gallery-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px 8px;
  width: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-slide {
  flex: 0 0 min(360px, 78vw);
  scroll-snap-align: start;
  margin: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(110, 78, 45, 0.2);
  box-shadow: var(--shadow);
  overflow: clip;
  background: rgba(255, 255, 255, 0.6);
}

.carousel-slide img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.carousel-nav {
  border: 1px solid var(--btn-outline);
  background: transparent;
  color: var(--btn-outline);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease, color 140ms ease, opacity 140ms ease;
}

.carousel-nav:hover {
  transform: translateY(-1px);
  background: var(--btn-fill);
  border-color: var(--btn-fill);
  color: var(--btn-ink);
}

@media (max-width: 760px) {
  #gallery.section .gallery-carousel,
  #gallery.section .section-foot.split {
    display: none;
  }

  .story-preview__top {
    display: none;
  }

  .story-track {
    cursor: pointer;
  }

  #about.section.about-mobile-story .about-full__media {
    display: block;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    height: auto;
    overflow: visible;
    background: transparent;
  }

  #about.section.about-mobile-story .about-full__bg-video {
    position: sticky;
    top: 0;
    inset: auto;
    display: block;
    width: 100%;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
    /* לא לחטוף מחוות גלילה — השכבה מעל הטקסט מטפלת בניווט */
    pointer-events: none;
  }

  #about.section.about-mobile-story--sticky .about-full__bg-video {
    position: sticky;
    top: 0;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
  }

  #about.section.about-mobile-story .about-mobile-carousel-layer {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    z-index: 2;
    max-height: none;
    padding: 0 0 10px;
    pointer-events: auto;
    background: transparent;
  }

  #about.section.about-mobile-story--sticky .about-mobile-carousel-layer {
    margin-top: -100vh;
    margin-top: -100svh;
    margin-top: -100dvh;
    /* טקסט צמוד יותר מתחת לכותרת האתר */
    padding-top: calc(48px + env(safe-area-inset-top, 0px));
  }

  #about.section.about-mobile-story .about-mobile-book {
    display: block;
    max-width: min(92vw, 520px);
    margin-inline: auto;
    filter: none;
  }

  #about.section.about-mobile-story .about-mobile-book__nav,
  #about.section.about-mobile-story .about-mobile-book__counter {
    display: none !important;
  }

  #about.section.about-mobile-story .about-mobile-book__viewport {
    max-width: 100%;
    height: auto;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }

  #about.section.about-mobile-story .about-mobile-carousel {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(10px, 0.62em, 16px);
    height: auto;
    width: 100%;
    overflow: visible;
    scroll-snap-type: none;
    background: transparent;
  }

  /* טקסט ישירות מעל הווידאו — בלי קופסת כרטיס */
  #about.section.about-mobile-story .about-mobile-card {
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 0 14px 2px;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  /* כמו .section-subtitle-line בהפקות; מוקטן 15% מול בסיס האדמין/ברירת מחדל */
  #about.section.about-mobile-story .about-mobile-card__text {
    text-align: center;
    font-size: calc(var(--admin-about-m-text-font, 1.2em) * 0.85);
    line-height: 1.48;
    color: rgba(252, 250, 244, 0.98);
    text-shadow:
      0 0 1px rgba(0, 0, 0, 0.9),
      0 1px 3px rgba(0, 0, 0, 0.85),
      0 2px 18px rgba(0, 0, 0, 0.55);
    max-width: var(--admin-about-m-text-max-w, min(40ch, 92vw));
    white-space: normal;
    word-break: normal;
    margin: 0 auto;
  }

  /* טקסט מורחב: שורות מהמקור — בלי ריווח פסקה מוגזם (רווחים כפולים במקור עדיין שוברים שורה) */
  #about.section.about-mobile-story .about-mobile-card__text--prose {
    white-space: pre-line;
    max-width: var(--admin-about-m-prose-max-w, min(38ch, 92vw));
    text-align: center;
    line-height: 1.48;
  }

  #about.section.about-mobile-story .about-mobile-card--teaser {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(8px, 0.62em, 14px);
    padding-bottom: 4px;
  }

  #about.section.about-mobile-story .about-mobile-card--teaser.about-mobile-card--more-revealed {
    gap: 0;
    padding-bottom: 0;
  }

  /* קיבוץ About במובייל: מקסימום שקיפות + טשטוש קל — הטקסט נשען על צל חזק */
  #about.section.about-mobile-story .about-mobile-copy-group {
    width: 100%;
    max-width: var(--admin-about-m-group-max-w, min(40ch, 92vw));
    margin-inline: auto;
    padding: clamp(14px, 3.4vw, 20px) clamp(14px, 3.6vw, 18px);
    box-sizing: border-box;
    border-radius: clamp(20px, 5vw, 28px);
    border: 1px solid rgba(255, 252, 246, 0.14);
    background: rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(14px) saturate(1.08);
    -webkit-backdrop-filter: blur(14px) saturate(1.08);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
  }

  #about.section.about-mobile-story .about-mobile-copy-group .about-mobile-card__teaser-scroll {
    max-width: 100%;
    margin-inline: 0;
  }

  /* לפני «עוד»: גלילה פנימית רק לטיזר; אחרי «עוד»: בלי גלילה פנימית — גלילת דף בלבד (עגון לפרודקשן / Vercel) */
  #about.section.about-mobile-story .about-mobile-card__teaser-scroll {
    width: 100%;
    max-width: var(--admin-about-m-scroll-max-w, min(40ch, 94vw));
    max-height: min(52vh, 420px);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    position: relative;
    z-index: 2;
    flex: 0 1 auto;
    min-height: 0;
    overscroll-behavior-y: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  #about.section.about-mobile-story .about-mobile-card__teaser-scroll::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
    background: transparent;
  }

  #about.section.about-mobile-story .about-mobile-card--more-revealed .about-mobile-card__teaser-scroll {
    max-height: none;
    /* visible בשני הצירים — אחרת דפדפנים הופכים את Y ל-auto ונשארת גלילה פנימית */
    overflow: visible;
    -webkit-overflow-scrolling: auto;
    touch-action: auto;
    overscroll-behavior-y: auto;
    flex: 0 0 auto;
    min-height: 0;
  }

  #about.section.about-mobile-story .about-mobile-card--teaser .about-mobile-card__text {
    margin: 0;
    max-width: var(--admin-about-m-teaser-text-max-w, var(--admin-about-m-prose-max-w, min(38ch, 92vw)));
  }

  #about.section.about-mobile-story .about-mobile-card__text--teaser-lead {
    white-space: pre-line;
    line-height: 1.48;
  }

  #about.section.about-mobile-story .about-mobile-expand-btn {
    appearance: none;
    margin: 0;
    flex-shrink: 0;
    padding: 6px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 252, 246, 0.38);
    background: rgba(8, 10, 9, 0.35);
    color: rgba(252, 250, 244, 0.96);
    font-family: inherit;
    font-size: 0.92em;
    font-weight: 400;
    line-height: 1.2;
    cursor: pointer;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
    transition: background 160ms ease, border-color 160ms ease, transform 120ms ease;
  }

  #about.section.about-mobile-story .about-mobile-expand-btn:hover {
    background: rgba(255, 252, 246, 0.14);
    border-color: rgba(255, 252, 246, 0.55);
  }

  #about.section.about-mobile-story .about-mobile-expand-btn:active {
    transform: scale(0.98);
  }

  #about.section.about-mobile-story .about-mobile-more-panel {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: clamp(10px, 0.62em, 16px);
    width: 100%;
    max-width: min(92vw, 520px);
    margin-inline: auto;
    padding-bottom: max(32px, env(safe-area-inset-bottom, 0px));
  }

  /* פאנל בתוך אותה גלילה כמו הטיזר — רצף טקסט צפוף */
  #about.section.about-mobile-story .about-mobile-card__teaser-scroll .about-mobile-more-panel {
    max-width: 100%;
    width: 100%;
    margin-inline: 0;
    margin-top: 0;
    padding-bottom: max(12px, env(safe-area-inset-bottom, 0px));
    gap: 0;
  }

  #about.section.about-mobile-story .about-mobile-more-panel[hidden] {
    display: none !important;
  }

  #about.section.about-mobile-story .about-mobile-more-panel .about-mobile-card {
    padding-top: 0;
    padding-bottom: 0;
  }

  #about.section.about-mobile-story .about-mobile-card.mobile-reveal {
    opacity: 0;
    transform: translateY(6px);
    transition:
      opacity 560ms ease-out,
      transform 560ms ease-out;
    transition-delay: var(--about-mobile-delay, 0ms);
    will-change: opacity, transform;
  }

  #about.section.about-mobile-story .about-mobile-card.mobile-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  #about.section.about-mobile-story .about-mobile-card__text a,
  #about.section.about-mobile-story .about-mobile-card__text .about-line-em {
    display: inline;
  }

  #about.section.about-mobile-story--cards .about-full__bg-video {
    position: sticky;
    top: 0;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
  }

  #about.section.about-mobile-story--cards .about-mobile-carousel-layer {
    margin-top: 0;
    padding-top: calc(12px + env(safe-area-inset-top, 0px));
  }

  #about.section.about-mobile-story--cards .about-mobile-card {
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
  }

  #about.section.about-mobile-story--cards .about-mobile-card.mobile-reveal {
    transform: translateY(10px);
  }

  .story-preview {
    display: block;
    width: min(92vw, 390px);
    margin-bottom: 14px;
  }

  .story-phone {
    border-radius: 24px;
  }

  .carousel-nav {
    width: 32px;
    height: 32px;
    font-size: 21px;
  }
  .carousel-slide img {
    height: 230px;
  }
}

/* About מובייל: עדכוני אדמין לרוחב/גופן במסכים צרים */
@media (max-width: 480px) {
  #about.section.about-mobile-story .about-mobile-card__text {
    max-width: var(--admin-about-m-text-max-w-m, var(--admin-about-m-text-max-w, min(40ch, 92vw)));
    font-size: calc(var(--admin-about-m-text-font-m, var(--admin-about-m-text-font, 1.2em)) * 0.85);
  }

  #about.section.about-mobile-story .about-mobile-card__text--prose {
    max-width: var(--admin-about-m-prose-max-w-m, var(--admin-about-m-prose-max-w, min(38ch, 92vw)));
  }

  #about.section.about-mobile-story .about-mobile-card__teaser-scroll {
    max-width: var(--admin-about-m-scroll-max-w-m, var(--admin-about-m-scroll-max-w, min(40ch, 94vw)));
  }

  #about.section.about-mobile-story .about-mobile-card--teaser .about-mobile-card__text {
    max-width: var(--admin-about-m-prose-max-w-m, var(--admin-about-m-prose-max-w, min(38ch, 92vw)));
  }

  #about.section.about-mobile-story .about-mobile-copy-group {
    max-width: var(
      --admin-about-m-group-max-w-m,
      var(--admin-about-m-group-max-w, min(40ch, 92vw))
    );
  }
}

.footer {
  padding: 36px 0;
  border-top: 1px solid rgba(20, 28, 22, 0.1);
  background: rgba(255, 248, 230, 0.6);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  align-items: center;
}

.brand-foot {
  letter-spacing: 0.12em;
  font-weight: 400;
}

.footer-brand-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px 22px;
  justify-content: flex-start;
  line-height: 1.55;
}

.footer-location {
  font-size: 0.92em;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.footer-credit {
  margin-top: 6px;
}

.footer-links,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: end;
  line-height: 1.55;
}

.footer a {
  color: var(--muted);
}
.footer a:hover {
  color: var(--text);
}

.footer-play-cta {
  grid-column: 1 / -1;
  margin-top: 10px;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.footer-spotify-player {
  width: 320px;
  max-width: min(320px, 100%);
  margin-inline: auto;
  min-height: 80px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(20, 28, 22, 0.1);
  background: rgba(255, 255, 255, 0.58);
}

.footer-spotify-player iframe {
  width: 320px;
  max-width: 100%;
  height: 80px;
  border: 0;
  display: block;
}

.modal--song-end {
  width: min(980px, calc(100vw - 28px));
}

.modal--song-end .modal-title {
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.3;
  text-align: center;
}

.modal--song-end .modal-actions {
  justify-content: center;
}

.modal--song-end .button.button-primary {
  border-radius: 8px;
  padding: 10px 20px;
  min-height: 42px;
  font-size: 15px;
  font-weight: 400;
}

.modal--song-end .button.button-primary:hover {
  /* use global button hover style (filled brown) */
}

.modal {
  width: min(680px, calc(100vw - 28px));
  border: 1px solid rgba(20, 28, 22, 0.14);
  border-radius: 18px;
  padding: 0;
  background: rgba(247, 251, 247, 0.92);
  color: var(--text);
  box-shadow: 0 40px 120px rgba(18, 40, 22, 0.22);
}

.modal::backdrop {
  background: rgba(20, 28, 22, 0.25);
  backdrop-filter: blur(2px);
}

.modal-card {
  padding: 16px;
}

.modal-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.modal-title {
  font-size: 22px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}

.field {
  display: grid;
  gap: 6px;
}

.field span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(20, 28, 22, 0.14);
  background: rgba(255, 255, 255, 0.86);
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(217, 200, 255, 0.9);
  box-shadow: 0 0 0 4px rgba(217, 200, 255, 0.28);
}

.field-span-2 {
  grid-column: span 2;
}

.modal-actions {
  display: flex;
  justify-content: end;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

[data-booking-modal] .modal-actions {
  justify-content: center;
}

[data-booking-modal] .button.button-primary {
  background: rgba(124, 84, 52, 0.96);
  border: 1px solid rgba(124, 84, 52, 0.96);
  color: rgba(255, 252, 246, 0.98);
  border-radius: 999px;
  padding: 10px 22px;
  min-height: 42px;
  font-size: 15px;
  font-weight: 400;
  box-shadow: 0 8px 20px rgba(124, 84, 52, 0.2);
}

[data-booking-modal] .button.button-primary:hover {
  background: rgba(103, 68, 42, 0.98);
  border-color: rgba(103, 68, 42, 0.98);
  color: #fff;
}

@media (max-width: 980px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .two-col {
    grid-template-columns: 1fr;
  }
  .split-two {
    grid-template-columns: 1fr;
  }
  .media-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand-row {
    justify-content: center;
  }
  .footer-links,
  .footer-social {
    justify-content: center;
    gap: 12px 16px;
  }

  .footer-brand {
    display: grid;
    gap: 6px;
  }

  .footer-location,
  .footer-credit,
  .footer .muted {
    line-height: 1.6;
  }

  .footer-play-cta {
    margin-top: 14px;
  }

  .footer-spotify-player {
    width: 272px;
    max-width: min(272px, 100%);
  }

  .footer-spotify-player iframe {
    width: 272px;
  }
}

@media (max-width: 760px) {
  .footer-play-cta {
    justify-items: center;
  }

  .footer-spotify-player {
    width: 128px;
    max-width: 128px;
    margin-inline: auto;
    justify-self: center;
  }

  .footer-spotify-player iframe {
    width: 128px;
  }

  .burger {
    display: inline-flex;
    position: relative;
    z-index: 6;
    grid-area: burger;
  }

  .icon-button.burger {
    border-color: rgba(20, 28, 22, 0.22);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  }

  .burger-lines::before,
  .burger-lines::after {
    height: 2px;
    background: rgba(12, 14, 13, 0.92);
  }

  .site-header:not(.scrolled) .icon-button.burger {
    border-color: rgba(20, 28, 22, 0.18);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  }

  .site-header:not(.scrolled) .burger-lines::before,
  .site-header:not(.scrolled) .burger-lines::after {
    background: rgba(12, 14, 13, 0.92);
  }

  /* Keep the stronger mobile burger styling even when the generic header rules apply */
  .site-header.scrolled .icon-button.burger {
    border-color: rgba(20, 28, 22, 0.22);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  }

  .site-header.scrolled .burger-lines::before,
  .site-header.scrolled .burger-lines::after {
    background: rgba(12, 14, 13, 0.92);
    height: 2px;
  }
  .nav {
    /* Template is only "cta logo burger" — grid-area: nav is invalid here and can break layout */
    grid-area: auto;
    display: none;
    position: fixed;
    top: calc(10px + env(safe-area-inset-top, 0px) + 52px);
    right: calc(12px + env(safe-area-inset-right, 0px));
    left: auto;
    width: min(270px, calc(100vw - 24px));
    max-width: min(270px, calc(100vw - 24px));
    border-radius: 14px;
    padding: 10px 10px 12px;
    background: rgba(255, 252, 246, 0.98);
    border: 1px solid rgba(20, 28, 22, 0.14);
    backdrop-filter: blur(28px) saturate(1.18);
    -webkit-backdrop-filter: blur(28px) saturate(1.18);
    box-shadow: 0 26px 64px rgba(18, 40, 22, 0.24);
    height: auto;
    max-height: min(70vh, 520px);
    flex-direction: column;
    gap: 4px;
    direction: rtl;
    align-items: stretch;
    justify-content: flex-start;
    overflow: auto;
    z-index: 60;
    -webkit-overflow-scrolling: touch;
  }
  .nav.is-open {
    display: flex;
  }
  .nav a {
    display: flex;
    justify-content: flex-start;
    text-align: right;
    white-space: normal;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.25;
    padding: 10px 12px;
    color: rgba(12, 14, 13, 0.96);
    border-radius: 9px;
  }
  .nav a:hover {
    background: rgba(124, 84, 52, 0.14);
    color: var(--text);
  }
  .header-inner {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "cta logo burger";
    min-height: 0;
    height: auto;
    padding-block: 5px;
    padding-inline: 8px;
    margin-top: 0;
  }
  .header-cta {
    min-height: 0;
    height: auto;
    align-items: center;
    grid-area: cta;
  }
  .brand {
    max-width: min(100%, calc(100vw - 228px));
  }

  .brand--soft-editorial .brand-name {
    font-size: clamp(17px, 5.1vw, 26px);
    letter-spacing: 0.04em;
    white-space: normal;
    text-align: center;
  }

  .brand--soft-editorial .brand-by {
    font-size: clamp(10px, 3.25vw, 14px);
    letter-spacing: 0.08em;
    white-space: normal;
    text-align: center;
  }

  .header-cta-cluster {
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex-wrap: nowrap;
  }

  .header-cta-links {
    display: none;
  }

  .brand-address--under-cta {
    max-width: min(220px, 100%);
    line-height: 1.25;
  }

  .brand-address {
    white-space: normal;
    text-align: center;
    max-width: min(220px, 100%);
  }
  .header-cta .header-booking-cta {
    padding: 5px 9px;
    font-size: clamp(11px, 3vw, 12.5px);
    min-height: 30px;
    transform: scale(0.805);
    transform-origin: center;
  }
  .stat-row {
    grid-template-columns: 1fr;
  }
  .media-row {
    grid-template-columns: 1fr;
  }
  .media-row img {
    height: 210px;
  }
  .masonry {
    grid-template-columns: 1fr;
  }
  .tile,
  .tile-wide,
  .tile-tall {
    grid-column: auto;
    min-height: 190px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field-span-2 {
    grid-column: auto;
  }
}

/* =========
   Scroll reveal motion
   ========= */
.reveal {
  opacity: 0.01;
  transform: translateY(22px) scale(0.985);
  transition:
    opacity 620ms ease,
    transform 720ms cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

/* Slightly softer movement for text blocks */
.section-head.reveal,
.qa.reveal {
  transform: translateY(18px);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .root-vine {
    transform: scaleY(0.4);
    opacity: 0.28;
  }
}

@media (max-width: 760px) {
  .roots-layer {
    display: none;
  }
}

/* =================================
   Global wood texture across sections
   ================================= */
.section,
.section.section-alt {
  background-color: #dcc29b;
  background-image:
    linear-gradient(180deg, rgba(88, 58, 25, 0.18), rgba(88, 58, 25, 0.28)),
    url("./assets/texture-wood.png");
  background-size: cover, 520px auto;
  background-repeat: no-repeat, repeat;
  background-blend-mode: multiply;
  border-top: 1px solid rgba(80, 52, 22, 0.18);
  border-bottom: 1px solid rgba(80, 52, 22, 0.18);
}

/* Use the soil scroll layer as the main background */
.section,
.section.section-alt {
  background: transparent !important;
  background-image: none !important;
  border-top-color: transparent !important;
  border-bottom-color: transparent !important;
}

/* --- Small circular ‹ › buttons: one place for flex centering + optical vertical lift --- */
.carousel-nav,
.carousel-nav-v,
.story-nav,
#about.section .about-mobile-book__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: var(--circle-chevron-pad-bottom);
}

/* __LABA_ADMIN_GLOBAL_CSS_START__ */

/* __LABA_ADMIN_GLOBAL_CSS_END__ */
