/* ============================================================
   SITE D — Bold Cutout · גילי נחום
   Cream + Ink + Orange + Olive · Heebo 900 + Rubik
   ============================================================ */

:root {
  --bg: #FFFAF1;
  --bg-2: #F2EAD8;
  --paper: #FFFEF9;
  --ink: #1A1612;
  --ink-2: #2A241E;
  --dim: #6E5F4F;
  --primary: #FF5B2E;
  --primary-2: #E84A1E;
  --olive: #3D4426;
  --yellow: #FFD17A;
  --whatsapp: #25D366;
  --line: rgba(26,22,18,0.10);

  --heb: "Heebo", "Rubik", system-ui, sans-serif;
  --display: "Rubik", "Heebo", system-ui, sans-serif;
  --ui: "Space Grotesk", "Inter Tight", system-ui, sans-serif;
}

* , *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--heb);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
::selection { background: var(--primary); color: white; }

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.gn-cursor { position: fixed; inset: 0; pointer-events: none; z-index: 9998; }
.gn-cursor__dot, .gn-cursor__ring { position: absolute; top: 0; inset-inline-start: 0; pointer-events: none; will-change: transform; }
.gn-cursor__dot { width: 6px; height: 6px; background: var(--ink); border-radius: 50%; margin-inline-start: -3px; margin-block-start: -3px; }
.gn-cursor__ring { width: 36px; height: 36px; border: 1.5px solid var(--ink); border-radius: 50%; margin-inline-start: -18px; margin-block-start: -18px; transition: width .25s, height .25s, margin .25s, background .25s; }
.gn-cursor--lg .gn-cursor__ring { width: 64px; height: 64px; margin-inline-start: -32px; margin-block-start: -32px; background: var(--primary); border-color: var(--primary); }
@media (hover: none), (pointer: coarse) { .gn-cursor { display: none; } }
/* Only hide native cursor when JS-cursor is active (js-loaded class on html). Otherwise normal cursor. */
@media (hover: hover) and (pointer: fine) {
  html.js-loaded body { cursor: default; }
  html.js-loaded a, html.js-loaded button { cursor: pointer; }
}
@media (max-width: 1024px) { .gn-cursor { display: none; } }

/* ============================================================
   FLOATING PILL NAV
   ============================================================ */
.gn-pill-nav {
  position: fixed; top: 18px; inset-inline-start: 50%;
  transform: translateX(50%);
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  padding: 6px;
  box-shadow: 0 14px 28px rgba(26,22,18,0.22);
  transition: padding .35s, box-shadow .35s;
}
[dir="rtl"] .gn-pill-nav { transform: translateX(-50%); }
.gn-pill-nav.is-scrolled { padding: 4px; }
.gn-pill-nav a {
  padding: 10px 22px;
  border-radius: 999px;
  font-family: var(--heb);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: background .25s, color .25s;
}
.gn-pill-nav a:hover, .gn-pill-nav a.is-active { background: var(--primary); color: white; }
.gn-pill-nav a.is-cta { background: var(--bg); color: var(--ink); }
.gn-pill-nav a.is-cta:hover { background: var(--whatsapp); color: white; }
.gn-burger {
  display: none;
  position: fixed;
  top: 18px; inset-inline-end: 18px;
  z-index: 101;
  width: 52px; height: 52px;
  background: var(--ink);
  border-radius: 999px;
  padding: 16px;
  flex-direction: column; justify-content: space-between;
  box-shadow: 0 12px 24px rgba(26,22,18,0.22);
}
.gn-burger span { display: block; height: 2px; background: var(--bg); border-radius: 2px; transition: transform .3s, opacity .3s; }
.gn-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.gn-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.gn-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 1024px) {
  .gn-pill-nav { display: none; }
  .gn-burger { display: flex; }
}

/* MOBILE DRAWER */
.gn-drawer {
  position: fixed; inset: 0;
  background: var(--ink);
  color: var(--bg);
  z-index: 99;
  padding: 120px 32px 60px;
  transform: translateY(-100%);
  transition: transform .55s cubic-bezier(.83,0,.17,1), visibility 0s linear .55s;
  display: flex; flex-direction: column;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
}
.gn-drawer.is-open { transform: translateY(0); visibility: visible; opacity: 1; transition: transform .55s cubic-bezier(.83,0,.17,1), visibility 0s; }
/* Show drawer ONLY when burger is in DOM AND visible (mobile) */
@media (min-width: 1025px) { .gn-drawer { display: none !important; } }
.gn-drawer a {
  padding: 18px 0;
  border-block-end: 1px solid rgba(255,255,255,0.1);
  font-family: var(--heb);
  font-weight: 900;
  font-size: 40px;
  letter-spacing: -0.02em;
  display: flex; justify-content: space-between; align-items: center;
}
.gn-drawer a::after { content:'↗'; color: var(--primary); }
.gn-drawer a.is-cta {
  margin-block-start: auto;
  background: var(--primary); color: white;
  border-radius: 999px;
  padding: 18px 28px;
  font-size: 22px;
  justify-content: center;
}
.gn-drawer a.is-cta::after { display: none; }

/* ============================================================
   AVAILABILITY PILL
   ============================================================ */
.gn-availability {
  position: absolute;
  top: 100px;
  inset-inline-start: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px;
  z-index: 10;
  box-shadow: 0 6px 20px rgba(26,22,18,0.06);
}
.gn-availability .dot {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255,91,46,0.2);
  animation: pulseD 2s infinite;
}
@keyframes pulseD {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255,91,46,0.18); }
  50%      { box-shadow: 0 0 0 12px rgba(255,91,46,0); }
}

/* ============================================================
   HERO (v2 — guaranteed-readable, dynamic, full slogan visible)
   ============================================================ */
.gn-hero {
  position: relative;
  min-height: calc(82vh - 56px);
  padding: 40px 48px 40px;
  margin-block-start: 56px;
  overflow: hidden;
}
.gn-hero__stack {
  display: grid;
  grid-template-columns: minmax(320px, 480px) 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  max-width: 1500px;
  margin-inline: auto;
  min-height: 75vh;
}
.gn-hero__portrait-wrap {
  position: relative;
  z-index: 2;
}
.gn-hero__portrait {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
}
.gn-hero__portrait img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 15%;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(26,22,18,0.25);
}
.gn-hero__portrait::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 14px;
  pointer-events: none;
  z-index: 2;
}

/* Badges */
.gn-badge {
  position: absolute;
  top: -24px;
  inset-inline-end: -34px;
  width: 120px; height: 120px;
  background: var(--olive);
  color: white;
  border-radius: 50%;
  display: grid; place-items: center;
  text-align: center;
  line-height: 1.2;
  font-family: var(--ui);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: spin 18s linear infinite;
  z-index: 3;
  box-shadow: 0 14px 28px rgba(61,68,38,0.35);
}
.gn-badge--yellow {
  background: var(--yellow); color: var(--ink);
  inset-inline-end: auto; inset-inline-start: -26px;
  top: auto; bottom: -22px;
  width: 100px; height: 100px;
  animation: spinReverse 20s linear infinite;
  font-size: 14px;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spinReverse { to { transform: rotate(-360deg); } }

/* Hero text column */
.gn-hero__lines { position: relative; z-index: 1; }

.gn-hero__h1 {
  font-family: var(--heb);
  font-weight: 900;
  font-size: clamp(72px, 13vw, 200px);
  line-height: 0.86;
  letter-spacing: -0.04em;
  margin: 0 0 28px;
  color: var(--ink);
  display: flex;
  flex-direction: column;
}
.gn-hero__word {
  display: inline-block;
  animation: heroSlide 1.1s cubic-bezier(.22,1,.36,1) both;
  transform-origin: right center;
}
.gn-hero__word:nth-child(1) { animation-delay: .1s; }
.gn-hero__word--mid {
  font-style: italic;
  color: var(--olive);
  font-size: 0.65em;
  margin-block: 4px;
  animation-delay: .35s;
  align-self: end;
  margin-inline-end: 0.1em;
}
.gn-hero__word--accent {
  color: var(--primary);
  animation-delay: .6s;
}
@keyframes heroSlide {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.gn-hero__tagline {
  font-family: var(--heb);
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0 0 36px;
  max-width: 30ch;
  animation: heroSlide 1.1s cubic-bezier(.22,1,.36,1) .9s both;
}
.gn-hero__tagline em {
  font-style: italic;
  color: var(--primary);
  font-weight: 700;
}

.gn-hero__cta-row {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap;
  animation: heroSlide 1.1s cubic-bezier(.22,1,.36,1) 1.1s both;
}

.gn-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 28px;
  font-family: var(--heb);
  font-weight: 700;
  font-size: 16px;
  border-radius: 999px;
  transition: transform .25s, background .25s, color .25s;
}
.gn-btn--ink { background: var(--ink); color: var(--bg); }
.gn-btn--orange { background: var(--primary); color: white; }
.gn-btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.gn-btn--wa { background: var(--whatsapp); color: white; }
.gn-btn:hover { transform: translateY(-2px); }
.gn-btn svg { width: 18px; height: 18px; fill: currentColor; }

.gn-hero__phone {
  font-family: var(--heb); font-weight: 500; font-size: 16px;
  text-decoration: underline;
  text-underline-offset: 6px;
  color: var(--ink);
}

.gn-hero__meta {
  position: absolute;
  inset-block-end: 36px; inset-inline-end: 32px;
  text-align: end;
  font-family: var(--ui);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--dim);
  line-height: 1.7;
  z-index: 5;
}
.gn-hero__meta strong { color: var(--ink); font-weight: 700; }

@media (max-width: 980px) {
  .gn-hero { padding: 50px 24px 40px; }
  .gn-hero__stack { grid-template-columns: 1fr; gap: 40px; }
  .gn-hero__portrait { width: 75%; margin-inline: auto; }
  .gn-hero__h1 { font-size: clamp(64px, 18vw, 110px); text-align: center; }
  .gn-hero__tagline { text-align: center; margin-inline: auto; }
  .gn-hero__cta-row { justify-content: center; }
  .gn-badge { width: 90px; height: 90px; font-size: 11px; }
  .gn-badge--yellow { width: 78px; height: 78px; }
}

/* ============================================================
   BLACK TAPE MARQUEE
   ============================================================ */
.gn-tape {
  background: var(--ink); color: var(--bg);
  padding-block: 30px;
  overflow: hidden;
  position: relative;
}
.gn-tape__track {
  display: inline-flex; gap: 48px;
  font-family: var(--heb);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.gn-tape__track .star { color: var(--primary); }
@keyframes marqD {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SECTIONS / HEAD
   ============================================================ */
.gn-section {
  padding: 110px 32px;
  position: relative;
}
.gn-section__head {
  text-align: center;
  margin-block-end: 60px;
}
.gn-section__eyebrow {
  font-family: var(--ui);
  font-size: 13px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--dim);
  margin-block-end: 16px;
}
.gn-section__title {
  font-family: var(--heb);
  font-weight: 900;
  font-size: clamp(48px, 7vw, 100px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin: 0;
}
.gn-section__title em { font-style: normal; color: var(--primary); }

/* ============================================================
   SERVICES CARDS (D)
   ============================================================ */
.gn-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1400px; margin: 0 auto;
}
@media (max-width: 980px) { .gn-services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .gn-services { grid-template-columns: 1fr; } }
.gn-svc {
  aspect-ratio: 4/5;
  border-radius: 24px;
  padding: 32px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
  transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.gn-svc:hover { transform: translateY(-10px); }
.gn-svc-1 { background: var(--primary); color: white; }
.gn-svc-2 { background: var(--olive); color: white; }
.gn-svc-3 { background: var(--ink); color: white; }
.gn-svc-4 { background: var(--yellow); color: var(--ink); }
.gn-svc__num {
  font-family: var(--ui);
  font-size: 13px; letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.85;
}
.gn-svc__title {
  font-family: var(--heb);
  font-weight: 900;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0;
}
.gn-svc__desc {
  font-size: 14px;
  opacity: 0.85;
  margin-block-start: 12px;
}
.gn-svc__arrow {
  align-self: end;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: grid; place-items: center;
  font-size: 22px;
  transition: transform .3s;
}
.gn-svc-4 .gn-svc__arrow { background: rgba(0,0,0,0.1); }
.gn-svc:hover .gn-svc__arrow { transform: rotate(-45deg); }

/* ============================================================
   ABOUT SECTION (D)
   ============================================================ */
.gn-about {
  background: var(--paper);
  padding: 130px 32px;
  position: relative;
  overflow: hidden;
}
.gn-about__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px; margin: 0 auto;
}
@media (max-width: 980px) { .gn-about__grid { grid-template-columns: 1fr; gap: 48px; } }
.gn-about__copy h2 {
  font-family: var(--heb);
  font-weight: 900;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 32px;
}
.gn-about__copy h2 em { font-style: normal; color: var(--primary); }
.gn-about__copy p {
  font-size: 18px;
  line-height: 1.85;
  color: var(--dim);
  margin-block-end: 18px;
}
.gn-about__copy strong { color: var(--ink); }
.gn-about__stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  margin-block-start: 48px;
  gap: 24px;
}
.gn-stat {
  background: var(--bg);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
}
.gn-stat__num {
  font-family: var(--heb); font-weight: 900;
  font-size: clamp(40px, 4vw, 60px);
  color: var(--primary);
  line-height: 1;
}
.gn-stat__label {
  font-family: var(--ui); font-size: 11px; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--dim);
  margin-block-start: 8px;
}
.gn-about__img {
  aspect-ratio: 3/4;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.gn-about__img img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }

/* ============================================================
   VIDEO GRID (D)
   ============================================================ */
.gn-vid-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1400px; margin: 0 auto;
}
@media (max-width: 980px) { .gn-vid-grid { grid-template-columns: repeat(2, 1fr); } }
.gn-vid-card {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: 16px;
  overflow: hidden;
  background: var(--ink);
  cursor: pointer;
  transition: transform .35s;
}
.gn-vid-card:hover { transform: translateY(-4px); }
.gn-vid-card video, .gn-vid-card img { width: 100%; height: 100%; object-fit: cover; }
.gn-vid-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7));
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 16px 18px;
  color: white;
}
.gn-vid-card__play {
  align-self: end;
  width: 48px; height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 18px;
  color: white;
}
.gn-vid-card__title {
  font-family: var(--heb); font-weight: 700; font-size: 18px;
}

/* ============================================================
   YOUTUBE EMBED (D)
   ============================================================ */
.gn-yt {
  padding: 100px 32px;
  background: var(--ink);
  color: var(--bg);
}
.gn-yt .gn-section__title { color: var(--bg); }
.gn-yt .gn-section__eyebrow { color: rgba(255,250,241,0.5); }
.gn-yt .gn-section__title em { color: var(--yellow); }
.gn-yt__embed {
  position: relative;
  aspect-ratio: 16/9;
  max-width: 1100px; margin: 0 auto 24px;
  border-radius: 20px;
  overflow: hidden;
}
.gn-yt__embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.gn-yt__cta { display: flex; justify-content: center; }

/* ============================================================
   LANGUAGES (D — color blocks)
   ============================================================ */
.gn-lang-blocks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1400px; margin: 0 auto;
}
@media (max-width: 768px) { .gn-lang-blocks { grid-template-columns: repeat(2, 1fr); } }
.gn-lang-block {
  position: relative;
  padding: 48px 32px;
  border-radius: 20px;
  overflow: hidden;
  min-height: 280px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform .35s, box-shadow .35s;
}
.gn-lang-block:hover { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(26,22,18,0.18); }
.gn-lang-block-1 { background: var(--primary); color: white; }
.gn-lang-block-2 { background: var(--olive); color: white; }
.gn-lang-block-3 { background: var(--ink); color: white; }
.gn-lang-block-4 { background: var(--yellow); color: var(--ink); }
.gn-lang-block__flag { font-size: 48px; line-height: 1; font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "Twemoji Mozilla", sans-serif; }
.gn-lang-block__name {
  font-family: var(--heb); font-weight: 900;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 0.95; letter-spacing: -0.02em;
  margin: 12px 0;
}
.gn-lang-block__hint {
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.5;
}

/* ============================================================
   TESTIMONIALS MASONRY
   ============================================================ */
.gn-mason {
  columns: 3;
  column-gap: 24px;
  max-width: 1400px; margin: 0 auto;
}
@media (max-width: 980px) { .gn-mason { columns: 2; } }
@media (max-width: 540px) { .gn-mason { columns: 1; } }
.gn-quote {
  break-inside: avoid;
  background: var(--paper);
  border-radius: 20px;
  padding: 32px;
  margin-block-end: 24px;
  border: 1px solid var(--line);
  transition: transform .35s, box-shadow .35s;
}
.gn-quote:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(26,22,18,0.08); }
.gn-quote--accent { background: var(--primary); color: white; border-color: var(--primary); }
.gn-quote--olive { background: var(--olive); color: white; border-color: var(--olive); }
.gn-quote--yellow { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.gn-quote__rating { color: var(--primary); font-family: var(--ui); margin-block-end: 12px; letter-spacing: 0.2em; }
.gn-quote--accent .gn-quote__rating { color: var(--yellow); }
.gn-quote--olive .gn-quote__rating { color: var(--yellow); }
.gn-quote__text {
  font-family: var(--heb); font-weight: 500;
  font-size: 19px; line-height: 1.5;
  margin: 0 0 16px;
}
.gn-quote__meta {
  font-family: var(--ui);
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  opacity: 0.7;
}

/* ============================================================
   SOCIAL WALL
   ============================================================ */
.gn-social-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1400px; margin: 0 auto;
}
@media (max-width: 768px) { .gn-social-wall { grid-template-columns: repeat(2, 1fr); } }
.gn-social-tile {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 20px;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 24px;
  transition: transform .25s;
}
.gn-social-tile:hover { transform: translateY(-4px); }
.gn-social-tile:hover .gn-social-tile__brand { transform: scale(1.06) rotate(-3deg); }
.gn-social-tile.is-ig { background: linear-gradient(135deg, #FEDA75, #FA7E1E, #D62976, #962FBF, #4F5BD5); color: white; }
.gn-social-tile.is-tt { background: var(--ink); color: white; }
.gn-social-tile.is-yt { background: #FF0000; color: white; }
.gn-social-tile.is-fb { background: #1877F2; color: white; }
.gn-social-tile__brand {
  position: absolute;
  inset-inline-end: 18px; inset-block-start: 18px;
  width: 56px; height: 56px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25));
  transition: transform .4s cubic-bezier(.22,1,.36,1);
  z-index: 1;
}
.gn-social-tile.is-yt .gn-social-tile__brand { width: 64px; height: auto; }
.gn-social-tile.is-fb .gn-social-tile__brand,
.gn-social-tile.is-ig .gn-social-tile__brand {
  background: white; border-radius: 14px; padding: 6px;
}
.gn-social-tile.is-yt .gn-social-tile__brand {
  background: white; border-radius: 12px; padding: 8px 6px;
}
.gn-social-tile__meta { position: relative; z-index: 2; }
.gn-social-tile__handle { font-family: var(--ui); font-size: 13px; opacity: 0.85; letter-spacing: 0.04em; }
.gn-social-tile__name { font-family: var(--heb); font-weight: 900; font-size: 28px; line-height: 1; margin-block-start: 8px; }
.gn-social-tile__count { font-family: var(--heb); font-weight: 700; font-size: 36px; }
.gn-social-tile__count small { font-size: 14px; opacity: 0.85; }

/* ============================================================
   FINAL CTA (D)
   ============================================================ */
.gn-final {
  padding: 140px 32px;
  background: var(--primary);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.gn-final__line {
  font-family: var(--heb);
  font-weight: 900;
  font-size: clamp(64px, 11vw, 180px);
  line-height: 0.85;
  letter-spacing: -0.045em;
  margin: 0 0 56px;
  color: var(--ink);
}
.gn-final__line em { font-style: italic; color: var(--bg); }
.gn-final__row {
  display: flex; justify-content: center; gap: 14px;
  flex-wrap: wrap;
}
.gn-final .gn-btn--wa { background: var(--bg); color: var(--ink); }
.gn-final .gn-btn--ghost { color: white; border-color: white; }
.gn-final__trust {
  margin-block-start: 56px;
  display: flex; justify-content: center; gap: 36px;
  flex-wrap: wrap;
  font-family: var(--ui);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.9;
}

/* ============================================================
   FOOTER (D)
   ============================================================ */
.gn-footer {
  background: var(--ink);
  color: var(--bg);
  padding: 80px 32px 36px;
}
.gn-footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1400px; margin: 0 auto;
}
@media (max-width: 768px) { .gn-footer__grid { grid-template-columns: 1fr 1fr; } }
.gn-footer__wordmark {
  font-family: var(--heb); font-weight: 900;
  font-size: 88px;
  line-height: 0.85;
  letter-spacing: -0.04em;
}
.gn-footer__wordmark em { font-style: normal; color: var(--primary); }
.gn-footer h4 {
  font-family: var(--ui);
  font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 18px;
}
.gn-footer ul { list-style: none; padding: 0; margin: 0; }
.gn-footer ul li { margin-block-end: 8px; }
.gn-footer ul a { font-size: 14px; color: rgba(255,250,241,0.7); transition: color .2s; }
.gn-footer ul a:hover { color: var(--bg); }
.gn-footer__bottom {
  max-width: 1400px; margin: 60px auto 0;
  border-block-start: 1px solid rgba(255,250,241,0.1);
  padding-block-start: 32px;
  display: flex; justify-content: space-between;
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(255,250,241,0.5);
  flex-wrap: wrap; gap: 16px;
}

/* ============================================================
   WHATSAPP FLOATING (D)
   ============================================================ */
.gn-wa-float {
  position: fixed;
  inset-inline-end: 84px;
  inset-block-end: 24px;
  z-index: 95;
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--whatsapp);
  color: white;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--heb);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.5);
  transition: transform .25s;
}
.gn-wa-float:hover { transform: scale(1.08); }
.gn-wa-float svg { width: 20px; height: 20px; fill: currentColor; }

/* ============================================================
   REVEAL
   ============================================================ */
[data-reveal] { opacity: 1; transform: translateY(0); transition: opacity 800ms cubic-bezier(.22,1,.36,1), transform 800ms cubic-bezier(.22,1,.36,1); }
@media (min-width: 1024px) {
  [data-reveal] { opacity: 0; transform: translateY(40px); }
  [data-reveal].is-in { opacity: 1; transform: translateY(0); }
}

.gn-split__char { display: inline-block; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .gn-badge { animation: none !important; }
  .gn-cursor { display: none; }
}

@media (max-width: 768px) {
  .gn-section { padding: 80px 20px; }
  .gn-availability { top: 80px; }
}

/* ============================================================
   MOBILE OPTIMIZATIONS — site D
   ============================================================ */
@media (max-width: 640px) {
  /* Floating burger smaller */
  .gn-burger { width: 44px; height: 44px; padding: 14px; top: 14px; inset-inline-end: 14px; }

  /* Drawer items larger touch */
  .gn-drawer { padding: 100px 24px 50px; }
  .gn-drawer a { font-size: 28px; padding: 14px 0; }
  .gn-drawer a.is-cta { padding: 16px 24px; font-size: 18px; }

  /* Availability pill */
  .gn-availability { top: 70px; inset-inline-start: 16px; padding: 8px 14px; font-size: 11px; gap: 8px; }

  /* HERO — tight, all visible, centered */
  .gn-hero {
    padding: 44px 20px 32px;
    min-height: auto;
  }
  .gn-hero__stack {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;
  }
  .gn-hero__portrait-wrap { order: 2; max-width: 320px; margin-inline: auto; }
  .gn-hero__portrait { width: 100%; aspect-ratio: 3/4; }
  .gn-hero__portrait::before { inset: 10px; border-radius: 10px; }
  .gn-hero__portrait img { border-radius: 18px; }
  .gn-hero__lines { order: 1; text-align: center; }

  .gn-hero__h1 {
    font-size: 18vw !important;
    margin-block-end: 16px;
    text-align: center;
    gap: 0;
  }
  .gn-hero__word--mid {
    font-size: 0.5em;
    margin-block: 2px;
    align-self: center;
  }
  .gn-hero__tagline {
    font-size: 15px !important;
    margin-block-end: 24px !important;
    margin-inline: auto;
    max-width: 28ch;
  }
  .gn-hero__cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    justify-content: stretch;
  }
  .gn-hero__cta-row a.gn-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 22px;
    font-size: 15px;
  }
  .gn-hero__phone { text-align: center; padding-block: 4px; }
  .gn-badge { width: 78px; height: 78px; font-size: 10px; top: -16px; inset-inline-end: -10px; }
  .gn-badge--yellow { width: 64px; height: 64px; font-size: 11px; bottom: -14px; inset-inline-start: -10px; }

  /* TAPE */
  .gn-tape { padding-block: 18px; }
  .gn-tape__track { font-size: 28px; gap: 24px; }

  /* SECTIONS */
  .gn-section { padding: 60px 16px; }
  .gn-section__head { margin-block-end: 36px; }
  .gn-section__eyebrow { font-size: 11px; letter-spacing: 0.28em; }
  .gn-section__title { font-size: 44px !important; line-height: 0.95; }

  /* SERVICES — 2 cols */
  .gn-services { grid-template-columns: 1fr 1fr; gap: 12px; }
  .gn-svc { aspect-ratio: 3/4; padding: 18px; border-radius: 18px; }
  .gn-svc__num { font-size: 11px; letter-spacing: 0.25em; }
  .gn-svc__title { font-size: 26px !important; line-height: 1; }
  .gn-svc__arrow { width: 38px; height: 38px; font-size: 16px; }

  /* ABOUT */
  .gn-about { padding: 70px 16px; }
  .gn-about__grid { gap: 36px; }
  .gn-about__copy h2 { font-size: 44px; margin-block-end: 20px; }
  .gn-about__copy p { font-size: 16px; line-height: 1.75; }
  .gn-about__stats { grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-block-start: 32px; }
  .gn-stat { padding: 18px 6px; border-radius: 12px; }
  .gn-stat__num { font-size: 32px; }
  .gn-stat__label { font-size: 10px; letter-spacing: 0.22em; }
  .gn-about__img { aspect-ratio: 4/5; border-radius: 16px; }

  /* VIDEO GRID — 2 cols */
  .gn-vid-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gn-vid-card { border-radius: 14px; }
  .gn-vid-card__title { font-size: 14px; }
  .gn-vid-card__play { width: 36px; height: 36px; font-size: 14px; }

  /* YOUTUBE */
  .gn-yt { padding: 70px 16px; }
  .gn-yt__embed { aspect-ratio: 16/9; border-radius: 14px; }

  /* LANGUAGE BLOCKS — 2 cols */
  .gn-lang-blocks { grid-template-columns: 1fr 1fr; gap: 12px; }
  .gn-lang-block { padding: 24px 18px; min-height: 180px; border-radius: 16px; }
  .gn-lang-block__flag { font-size: 32px; }
  .gn-lang-block__name { font-size: 24px !important; }
  .gn-lang-block__hint { font-size: 11px; line-height: 1.45; }

  /* TESTIMONIALS — single column */
  .gn-mason { columns: 1; }
  .gn-quote { padding: 24px; }
  .gn-quote__text { font-size: 17px; }

  /* SOCIAL — 2 cols */
  .gn-social-wall { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gn-social-tile { padding: 16px; border-radius: 14px; }
  .gn-social-tile__name { font-size: 20px; }
  .gn-social-tile__count { font-size: 26px; }
  .gn-social-tile__count small { font-size: 11px; }

  /* FINAL CTA */
  .gn-final { padding: 90px 16px; }
  .gn-final__line { font-size: 56px !important; margin-block-end: 28px; }
  .gn-final__row { flex-direction: column; align-items: stretch; }
  .gn-final__row a { width: 100%; justify-content: center; padding: 16px 22px; }
  .gn-final__trust { gap: 14px; font-size: 11px; flex-direction: column; }

  /* FOOTER */
  .gn-footer { padding: 50px 16px 28px; }
  .gn-footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .gn-footer__wordmark { font-size: 56px; grid-column: 1 / -1; line-height: 0.85; }
  .gn-footer h4 { font-size: 11px; letter-spacing: 0.25em; margin-block-end: 12px; }
  .gn-footer ul a { font-size: 13px; padding: 6px 0; display: inline-block; }
  .gn-footer__bottom { padding-block-start: 24px; margin-block-start: 36px; font-size: 10px; flex-direction: column; gap: 12px; text-align: center; }

  /* Floating WhatsApp — smaller + next to audio toggle on left */
  .gn-wa-float { padding: 10px 14px; font-size: 12px; inset-inline-end: 66px; inset-block-end: 16px; gap: 6px; box-shadow: 0 8px 20px rgba(37,211,102,0.4); }
  .gn-wa-float svg { width: 16px; height: 16px; }
}

/* Service-page mobile */
@media (max-width: 640px) {
  .svc-hero { padding: 96px 16px 40px !important; min-height: 60vh !important; }
  .svc-hero__num { font-size: 11px !important; padding: 6px 12px !important; margin-block-end: 18px !important; }
  .svc-hero__title { font-size: 48px !important; line-height: 0.95 !important; margin-block-end: 18px !important; }
  .svc-hero__sub { font-size: 15px !important; margin-block-end: 20px !important; }
  .svc-hero__content a { width: 100%; justify-content: center; padding: 15px 20px; }
  .svc-intro { padding: 56px 20px !important; font-size: 17px !important; }
  .svc-includes { grid-template-columns: 1fr !important; gap: 10px !important; }
  .svc-includes__item { padding: 18px 20px !important; }
  .svc-includes__text { font-size: 14px !important; }
  .svc-faq { padding: 56px 20px !important; }
  .svc-faq summary { font-size: 16px !important; padding: 16px 22px !important; }
  .svc-faq details > div { padding: 0 22px 20px !important; font-size: 14px !important; }
}

/* ============================================================
   v1.0 PRODUCTION ADDITIONS — page templates, chapters, gallery
   ============================================================ */

/* Skip link */
.gn-skip {
  position: fixed;
  inset-block-start: -100px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--bg);
  padding: 12px 22px;
  border-radius: 999px;
  z-index: 9999;
  transition: inset-block-start .25s;
  font-family: var(--heb);
  font-weight: 700;
  font-size: 14px;
}
.gn-skip:focus { inset-block-start: 16px; outline: 3px solid var(--primary); }

/* Behind-the-scenes (homepage section 6) */
.gn-behind {
  position: relative;
  min-height: 70vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.gn-behind__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  z-index: 1;
}
.gn-behind__overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(90deg, rgba(26,22,18,0.85), rgba(26,22,18,0.4));
}
.gn-behind__caption {
  position: relative;
  z-index: 3;
  max-width: 600px;
  padding: 80px 40px;
  margin-inline-start: max(40px, 8vw);
  color: white;
}
.gn-behind__title {
  font-family: var(--heb);
  font-weight: 900;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 16px 0 24px;
}
.gn-behind__title em { font-style: normal; color: var(--yellow); }
.gn-behind__body {
  font-family: var(--heb);
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 250, 241, 0.92);
}

/* Quote of the week (section 9) */
.gn-quote-week {
  padding: 130px 40px;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(255, 91, 46, 0.06), transparent 50%),
    var(--paper);
  border-block: 1px solid var(--line);
}
.gn-quote-week__inner {
  max-width: 1100px; margin: 0 auto;
  text-align: center;
}
.gn-quote-week__text {
  font-family: var(--heb);
  font-weight: 700;
  font-size: clamp(28px, 4.2vw, 60px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 32px 0;
}
.gn-quote-week__text em {
  font-style: italic;
  color: var(--primary);
}
.gn-quote-week__sig {
  font-family: var(--ui);
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--dim);
}

/* Page hero (for non-home pages) */
.gn-page-hero {
  position: relative;
  padding: 130px 32px 60px;
  background: var(--bg);
  border-block-end: 1px solid var(--line);
}
.gn-page-hero__inner {
  max-width: 1300px; margin: 0 auto;
  text-align: center;
}
.gn-page-hero__title {
  font-family: var(--heb);
  font-weight: 900;
  font-size: clamp(48px, 7vw, 110px);
  line-height: 0.93;
  letter-spacing: -0.035em;
  margin: 16px 0 24px;
  color: var(--ink);
}
.gn-page-hero__title em {
  font-style: normal;
  color: var(--primary);
}
.gn-page-hero__sub {
  font-family: var(--heb);
  font-size: clamp(15px, 1.4vw, 19px);
  color: var(--dim);
  max-width: 56ch;
  margin: 0 auto;
  line-height: 1.7;
}
.gn-page-body {
  padding: 80px 32px 120px;
  background: var(--bg);
}
.gn-page-body__inner {
  max-width: 780px; margin: 0 auto;
}
.gn-prose {
  font-size: 17px;
  line-height: 1.85;
  color: var(--ink-2);
}
.gn-prose h2 {
  font-family: var(--heb);
  font-weight: 900;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 48px 0 16px;
}
.gn-prose h3 {
  font-family: var(--heb);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  margin: 32px 0 12px;
}
.gn-prose p { margin: 0 0 16px; }
.gn-prose ul, .gn-prose ol { margin: 0 0 24px; padding-inline-start: 24px; }
.gn-prose ul li, .gn-prose ol li { margin: 6px 0; }
.gn-prose a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
.gn-prose strong { color: var(--ink); }

/* ABOUT PAGE — chapter blocks */
.gn-about-cover {
  position: relative;
  min-height: 80vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.gn-about-cover__bg { position: absolute; inset: 0; z-index: 1; }
.gn-about-cover__bg img { width: 100%; height: 100%; object-fit: cover; }
.gn-about-cover__overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(90deg, rgba(26,22,18,0.85), rgba(26,22,18,0.45));
}
.gn-about-cover__inner {
  position: relative; z-index: 3;
  max-width: 1300px;
  margin: 0 auto;
  padding: 100px 40px;
  color: white;
}
.gn-about-cover__title {
  font-family: var(--heb);
  font-weight: 900;
  font-size: clamp(56px, 9vw, 140px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin: 24px 0;
}
.gn-about-cover__title em { font-style: normal; color: var(--yellow); }

.gn-chapter {
  padding: 110px 40px;
  max-width: 980px;
  margin: 0 auto;
  border-block-end: 1px solid var(--line);
}
.gn-chapter--alt { background: var(--paper); margin: 0; max-width: 100%; }
.gn-chapter--alt > * { max-width: 980px; margin-inline: auto; }
.gn-chapter__num {
  font-family: var(--ui);
  font-size: 13px; letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--primary);
  margin-block-end: 18px;
}
.gn-chapter__title {
  font-family: var(--heb);
  font-weight: 900;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 36px;
}
.gn-chapter__body {
  font-family: var(--heb);
  font-size: 19px;
  line-height: 1.85;
  color: var(--ink-2);
}
.gn-chapter__body p { margin: 0 0 18px; }
.gn-chapter__body strong { color: var(--primary); }
.gn-chapter__stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-block-start: 44px;
}

/* SERVICE PAGE TEMPLATE — shared */
.gn-svc-hero {
  position: relative;
  min-height: 70vh;
  padding: 130px 40px 60px;
  display: grid;
  align-items: end;
  overflow: hidden;
}
.gn-svc-hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.gn-svc-hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,250,241,0.5), rgba(255,250,241,0.96));
}
.gn-svc-hero__inner {
  position: relative; z-index: 3;
  max-width: 1300px; margin: 0 auto;
  width: 100%;
}
.gn-svc-hero__num {
  display: inline-block;
  background: var(--primary);
  color: white;
  font-family: var(--ui);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  margin-block-end: 28px;
}
.gn-svc-hero__title {
  font-family: var(--heb);
  font-weight: 900;
  font-size: clamp(56px, 9vw, 130px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
  color: var(--ink);
}
.gn-svc-hero__title em {
  font-style: normal;
  color: var(--primary);
}
.gn-svc-hero__sub {
  font-family: var(--heb);
  font-size: 17px;
  color: var(--dim);
  margin: 0 0 32px;
  max-width: 60ch;
}
.gn-svc-intro {
  padding: 90px 32px;
  max-width: 980px; margin: 0 auto;
  font-family: var(--heb);
  font-size: 21px;
  line-height: 1.85;
  color: var(--ink);
}
.gn-svc-intro strong { color: var(--primary); }

/* Service category grid (6/4/3 layouts) */
.gn-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1300px;
  margin: 0 auto;
}
.gn-cat-grid--3 { grid-template-columns: repeat(3, 1fr); }
.gn-cat-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  transition: border-color .25s, transform .25s;
}
.gn-cat-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}
.gn-cat-card__ic { font-size: 32px; margin-block-end: 14px; }
.gn-cat-card__title {
  font-family: var(--heb);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--ink);
}
.gn-cat-card__desc {
  color: var(--dim);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* Checklist */
.gn-checklist {
  max-width: 980px; margin: 0 auto;
  list-style: none; padding: 0;
  display: grid; gap: 10px;
}
.gn-checklist li {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: var(--heb);
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
  transition: border-color .2s, transform .2s;
}
.gn-checklist li:hover { border-color: var(--primary); transform: translateY(-2px); }
.gn-checklist__check {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: grid; place-items: center;
  font-weight: 900;
  flex-shrink: 0;
}

/* Service FAQ */
.gn-svc-faq {
  padding: 90px 32px;
  max-width: 900px;
  margin: 0 auto;
}
.gn-faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-block-end: 12px;
  transition: border-color .2s;
}
.gn-faq-item[open] { border-color: var(--primary); }
.gn-faq-item summary {
  padding: 20px 28px;
  cursor: pointer;
  font-family: var(--heb);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
  list-style: none;
}
.gn-faq-item summary::-webkit-details-marker { display: none; }
.gn-faq-item summary::after {
  content: '+';
  color: var(--primary);
  font-size: 28px;
  font-weight: 400;
  transition: transform .25s;
}
.gn-faq-item[open] summary::after { transform: rotate(45deg); }
.gn-faq-item > div {
  padding: 0 28px 24px;
  color: var(--dim);
  line-height: 1.8;
  font-size: 16px;
}

/* GALLERY page filter */
.gn-gallery-filter {
  padding: 32px 32px 0;
  background: var(--bg);
}
.gn-gallery-filter__bar {
  display: flex; gap: 10px; justify-content: center;
  flex-wrap: wrap;
  max-width: 1300px; margin: 0 auto;
}
.gn-filter-btn {
  padding: 10px 20px;
  font-family: var(--heb);
  font-size: 14px;
  font-weight: 700;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  color: var(--ink-2);
}
.gn-filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.gn-filter-btn.is-active { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* Masonry gallery */
.gn-mason-gallery {
  columns: 3;
  column-gap: 16px;
  max-width: 1500px; margin: 0 auto;
}
@media (max-width: 980px) { .gn-mason-gallery { columns: 2; } }
@media (max-width: 540px) { .gn-mason-gallery { columns: 1; } }
.gn-mason-tile {
  break-inside: avoid;
  display: block;
  position: relative;
  margin-block-end: 16px;
  border-radius: 14px;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.gn-mason-tile:hover { transform: translateY(-4px); }
.gn-mason-tile img { width: 100%; height: auto; display: block; }
.gn-mason-tile__cap {
  position: absolute;
  inset-block-end: 0; inset-inline: 0;
  padding: 20px 22px 16px;
  background: linear-gradient(0deg, rgba(26,22,18,0.92), transparent);
  color: white;
  font-family: var(--heb);
  font-weight: 700;
  font-size: 15px;
  transform: translateY(0);
  transition: transform .3s;
}
.gn-mason-tile:hover .gn-mason-tile__cap { background: linear-gradient(0deg, rgba(255,91,46,0.95), transparent); }
.gn-mason-tile.is-hidden { display: none; }

/* Songs / Repertoire */
.gn-rep-section {
  max-width: 980px; margin: 0 auto;
  padding-block: 60px;
  border-block-end: 1px solid var(--line);
}
.gn-rep-section:last-child { border-block-end: 0; }
.gn-rep-section__head {
  display: flex; gap: 24px; align-items: center;
  margin-block-end: 32px;
}
.gn-rep-section__flag {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 36px;
  flex-shrink: 0;
}
.gn-rep-section__flag.gn-lang-block-1 { background: var(--primary); }
.gn-rep-section__flag.gn-lang-block-2 { background: var(--olive); }
.gn-rep-section__flag.gn-lang-block-3 { background: var(--ink); }
.gn-rep-section__flag.gn-lang-block-4 { background: var(--yellow); }
.gn-rep-section__name {
  font-family: var(--heb);
  font-weight: 900;
  font-size: 40px;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 4px;
}
.gn-rep-section__desc {
  color: var(--dim);
  font-size: 14px;
  margin: 0;
}
.gn-rep-list {
  list-style: none; padding: 0; margin: 0;
}
.gn-rep-list__item {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  border-block-end: 1px solid var(--line);
  font-family: var(--heb);
}
.gn-rep-list__num { color: var(--primary); font-weight: 700; }
.gn-rep-list__title { font-weight: 700; color: var(--ink); font-size: 18px; }
.gn-rep-list__artist { color: var(--dim); font-size: 14px; }

/* THANK YOU page */
.gn-thankyou {
  min-height: 75vh;
  display: grid; place-items: center;
  padding: 100px 32px;
  background: var(--bg);
}
.gn-thankyou__inner {
  max-width: 700px; text-align: center;
}
.gn-thankyou__check {
  width: 140px; height: 140px;
  margin: 0 auto 32px;
}
.gn-thankyou__check svg { width: 100%; height: 100%; }
.gn-thankyou__title {
  font-family: var(--heb);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 12px 0 24px;
}
.gn-thankyou__title em {
  font-style: normal;
  color: var(--primary);
}
.gn-thankyou__body {
  font-family: var(--heb);
  font-size: 18px;
  line-height: 1.7;
  color: var(--dim);
  margin: 0 0 32px;
}
.gn-thankyou__row {
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap;
}

/* Mobile fixes for new sections */
@media (max-width: 640px) {
  .gn-behind { min-height: 60vh; }
  .gn-behind__caption { padding: 50px 22px; margin: 0; max-width: none; }
  .gn-behind__title { font-size: 36px; }
  .gn-behind__body { font-size: 16px; }

  .gn-quote-week { padding: 70px 22px; }
  .gn-quote-week__text { font-size: 24px; line-height: 1.35; }

  .gn-page-hero { padding: 100px 22px 50px; }
  .gn-page-hero__title { font-size: 44px; }

  .gn-about-cover { min-height: 60vh; }
  .gn-about-cover__inner { padding: 80px 22px; }
  .gn-about-cover__title { font-size: 48px; }

  .gn-chapter { padding: 60px 22px; }
  .gn-chapter__title { font-size: 40px; }
  .gn-chapter__body { font-size: 17px; }
  .gn-chapter__stats { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }

  .gn-svc-hero { padding: 100px 22px 40px; min-height: 60vh; }
  .gn-svc-hero__title { font-size: 44px; }
  .gn-svc-hero__sub { font-size: 15px; }
  .gn-svc-intro { padding: 60px 22px; font-size: 17px; }

  .gn-cat-grid, .gn-cat-grid--3 { grid-template-columns: 1fr; gap: 12px; }

  .gn-checklist li { padding: 14px 16px; font-size: 14px; }
  .gn-checklist__check { width: 28px; height: 28px; }

  .gn-svc-faq { padding: 50px 22px; }
  .gn-faq-item summary { padding: 16px 20px; font-size: 16px; }

  .gn-gallery-filter { padding: 20px 22px 0; }
  .gn-filter-btn { padding: 8px 14px; font-size: 13px; }

  .gn-rep-section { padding-block: 40px; }
  .gn-rep-section__head { gap: 14px; }
  .gn-rep-section__flag { width: 56px; height: 56px; font-size: 24px; }
  .gn-rep-section__name { font-size: 28px; }
  .gn-rep-list__item { grid-template-columns: 32px 1fr; padding: 14px 0; }
  .gn-rep-list__artist { grid-column: 2; font-size: 12px; }

  .gn-thankyou { padding: 70px 22px; }
  .gn-thankyou__check { width: 100px; height: 100px; }
  .gn-thankyou__title { font-size: 36px; }
  .gn-thankyou__row { flex-direction: column; align-items: stretch; }
}

/* ============================================================
   v5 — MAKE-IT-ALIVE LAYERS
   ============================================================ */

/* Reset page bg to a CSS var so it can transition */
:root { --page-bg: #FFFAF1; }
body { background: var(--page-bg); transition: background-color 800ms cubic-bezier(.22,1,.36,1); }
html { background: var(--page-bg); transition: background-color 800ms cubic-bezier(.22,1,.36,1); }

/* ============================================================
   LOADING SCREEN
   ============================================================ */
.gn-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: grid; place-items: center;
  transition: transform .7s cubic-bezier(.83,0,.17,1);
}
.gn-loader.is-out { transform: translateY(-100%); }
.gn-loader__inner { text-align: center; padding: 0 24px; }
.gn-loader__word {
  font-family: var(--heb);
  font-weight: 900;
  font-size: clamp(48px, 9vw, 130px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
  display: inline-flex;
  gap: 0.02em;
}
.gn-loader__word span {
  display: inline-block;
  animation: gn-loader-pop .8s cubic-bezier(.22,1,.36,1) both;
  animation-delay: calc(var(--i) * 70ms);
}
@keyframes gn-loader-pop {
  from { opacity: 0; transform: translateY(40px) scale(0.85); filter: blur(8px); }
  to   { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
.gn-loader__bar {
  margin: 36px auto 18px;
  width: 240px; height: 2px;
  background: rgba(26,22,18,0.1);
  border-radius: 999px;
  overflow: hidden;
}
.gn-loader__bar-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 999px;
  animation: gn-loader-fill 1.1s cubic-bezier(.22,1,.36,1) forwards;
  transform-origin: right center;
}
@keyframes gn-loader-fill {
  from { width: 0; }
  to   { width: 100%; }
}
.gn-loader__tag {
  font-family: var(--heb);
  font-style: italic;
  font-size: 14px;
  color: var(--dim);
  letter-spacing: 0.4em;
}
@media (prefers-reduced-motion: reduce) {
  .gn-loader__word span { animation: none; }
  .gn-loader__bar-fill { animation: none; width: 100%; }
}

/* ============================================================
   CUSTOM CURSOR — desktop pointer:fine only
   ============================================================ */
.gn-cursor { position: fixed; inset: 0; pointer-events: none; z-index: 9998; }
.gn-cursor.is-off { opacity: 0; transition: opacity .2s; }
.gn-cursor__dot, .gn-cursor__ring {
  position: absolute; top: 0; inset-inline-start: 0;
  pointer-events: none; will-change: transform;
}
.gn-cursor__dot {
  width: 7px; height: 7px;
  background: var(--ink);
  border-radius: 50%;
  margin-inline-start: -3.5px; margin-block-start: -3.5px;
  transition: background .25s, transform .25s;
}
.gn-cursor__ring {
  width: 38px; height: 38px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  margin-inline-start: -19px; margin-block-start: -19px;
  transition: width .3s cubic-bezier(.22,1,.36,1),
              height .3s cubic-bezier(.22,1,.36,1),
              margin .3s cubic-bezier(.22,1,.36,1),
              background .25s, border-color .25s;
}
.gn-cursor__label {
  position: absolute; top: 0; inset-inline-start: 0;
  font-family: var(--ui); font-weight: 700; font-size: 13px;
  color: white; pointer-events: none;
  opacity: 0; transform: translate(-50%, -50%);
  transition: opacity .2s;
}
/* lg: links, buttons, magnets */
.gn-cursor--lg .gn-cursor__ring {
  width: 68px; height: 68px;
  margin-inline-start: -34px; margin-block-start: -34px;
  background: var(--ink); border-color: var(--ink);
  mix-blend-mode: difference;
}
.gn-cursor--lg .gn-cursor__dot { background: transparent; }
/* play: video cards */
.gn-cursor--play .gn-cursor__ring {
  width: 86px; height: 86px;
  margin-inline-start: -43px; margin-block-start: -43px;
  background: var(--primary); border-color: var(--primary);
}
.gn-cursor--play .gn-cursor__dot { background: transparent; }
.gn-cursor--play .gn-cursor__label { opacity: 1; font-size: 28px; }
/* wa: whatsapp links */
.gn-cursor--wa .gn-cursor__ring {
  width: 78px; height: 78px;
  margin-inline-start: -39px; margin-block-start: -39px;
  background: var(--whatsapp); border-color: var(--whatsapp);
}
.gn-cursor--wa .gn-cursor__label { opacity: 1; font-size: 22px; }

@media (max-width: 1023px), (hover: none), (pointer: coarse) {
  .gn-cursor { display: none !important; }
}
@media (hover: hover) and (pointer: fine) {
  html.fine-pointer body { cursor: default; }
  html.fine-pointer a, html.fine-pointer button { cursor: pointer; }
}

/* ============================================================
   NEW NAV BAR + OVERLAY (Layer 2 replaces old pill-nav)
   ============================================================ */
.gn-bar {
  position: fixed; inset-block-start: 0; inset-inline: 0;
  z-index: 200;
  height: 56px;
  display: flex; align-items: center;
  padding: 0 24px;
  background: rgba(255, 250, 241, 0.6);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-block-end: 1px solid rgba(26, 22, 18, 0.06);
  transition: background .3s, border-color .3s, height .3s;
}
.gn-bar.is-scrolled {
  background: rgba(255, 250, 241, 0.94);
  border-block-end-color: rgba(26, 22, 18, 0.12);
}
.gn-bar__status {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ui);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-2);
  font-weight: 500;
}
.gn-bar__status .dot {
  width: 8px; height: 8px;
  background: var(--whatsapp);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.18);
  animation: gn-bar-pulse 2s ease-in-out infinite;
}
@keyframes gn-bar-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.18); }
  50%      { box-shadow: 0 0 0 9px rgba(37, 211, 102, 0); }
}
.gn-bar__wordmark {
  position: absolute; inset-inline-start: 50%; transform: translateX(-50%);
  font-family: var(--heb);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
}
.gn-bar__actions {
  margin-inline-start: auto;
  display: inline-flex; align-items: center; gap: 14px;
}
.gn-bar__wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--whatsapp);
  color: white;
  padding: 9px 14px;
  border-radius: 999px;
  font-family: var(--heb); font-weight: 700; font-size: 13px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.gn-bar__wa:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(37,211,102,0.35); }
.gn-bar__wa svg { width: 16px; height: 16px; fill: currentColor; }
.gn-bar__burger {
  width: 44px; height: 44px;
  background: var(--ink);
  border: 0; border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  padding: 0;
  position: relative;
  transition: transform .3s, background .3s;
}
.gn-bar__burger:hover { transform: rotate(45deg); }
.gn-bar__burger span {
  position: absolute; inset-inline-start: 12px;
  width: 20px; height: 1.5px;
  background: var(--bg);
  transition: transform .3s cubic-bezier(.22,1,.36,1), opacity .3s;
}
.gn-bar__burger span:nth-child(1) { top: 17px; }
.gn-bar__burger span:nth-child(2) { top: 21px; width: 14px; }
.gn-bar__burger span:nth-child(3) { top: 25px; }
.gn-bar__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.gn-bar__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.gn-bar__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }

@media (max-width: 640px) {
  .gn-bar__status { display: none; }
  .gn-bar__wordmark { font-size: 16px; }
  .gn-bar__wa span { display: none; }
  .gn-bar__wa { padding: 9px 11px; }
}

/* Full-screen Nav Overlay */
.gn-overlay {
  position: fixed; inset: 0;
  z-index: 199;
  background: var(--primary);
  transform: translateY(-100%);
  transition: transform .55s cubic-bezier(.83,0,.17,1);
  display: flex; flex-direction: column;
  overflow-y: auto;
  visibility: hidden;
}
.gn-overlay.is-open { transform: translateY(0); visibility: visible; }
.gn-overlay__top {
  padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between;
  border-block-end: 1px solid rgba(255,255,255,0.18);
}
.gn-overlay__top-text {
  font-family: var(--ui);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.gn-overlay__close {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.18);
  border: 0; border-radius: 50%;
  color: white;
  font-size: 18px; font-weight: 700;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background .25s, transform .25s;
}
.gn-overlay__close:hover { background: rgba(255,255,255,0.32); transform: rotate(90deg); }
.gn-overlay__list {
  flex: 1;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 40px 24px;
  max-width: 1200px; margin-inline: auto;
  width: 100%;
}
.gn-overlay__item {
  display: flex; align-items: baseline; gap: 16px;
  padding: 12px 0;
  font-family: var(--heb);
  font-weight: 900;
  font-size: clamp(36px, 7vw, 92px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: white;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: padding-inline-start .35s cubic-bezier(.22,1,.36,1);
}
.gn-overlay.is-open .gn-overlay__item {
  animation: gn-overlay-in .6s cubic-bezier(.22,1,.36,1) forwards;
}
.gn-overlay.is-open .gn-overlay__item:nth-child(1) { animation-delay: 0.05s; }
.gn-overlay.is-open .gn-overlay__item:nth-child(2) { animation-delay: 0.10s; }
.gn-overlay.is-open .gn-overlay__item:nth-child(3) { animation-delay: 0.15s; }
.gn-overlay.is-open .gn-overlay__item:nth-child(4) { animation-delay: 0.20s; }
.gn-overlay.is-open .gn-overlay__item:nth-child(5) { animation-delay: 0.25s; }
.gn-overlay.is-open .gn-overlay__item:nth-child(6) { animation-delay: 0.30s; }
.gn-overlay.is-open .gn-overlay__item:nth-child(7) { animation-delay: 0.35s; }
.gn-overlay.is-open .gn-overlay__item:nth-child(8) { animation-delay: 0.40s; }
@keyframes gn-overlay-in {
  to { opacity: 1; transform: translateY(0); }
}
.gn-overlay__item:hover {
  padding-inline-start: 24px;
  color: var(--ink);
}
.gn-overlay__num {
  font-family: var(--ui);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.55);
  width: 60px;
  flex-shrink: 0;
}
.gn-overlay__item:hover .gn-overlay__num { color: var(--ink); }
.gn-overlay__arrow {
  margin-inline-start: auto;
  font-size: 28px;
  opacity: 0.5;
  transition: opacity .25s, transform .25s;
}
.gn-overlay__item:hover .gn-overlay__arrow { opacity: 1; transform: translate(-6px, -6px); }
.gn-overlay__foot {
  padding: 28px 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  border-block-start: 1px solid rgba(255,255,255,0.18);
  font-family: var(--heb);
  font-weight: 500;
  font-size: 15px;
}
.gn-overlay__foot a {
  color: white;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: opacity .2s;
}
.gn-overlay__foot a:hover { opacity: 0.7; }
html.gn-nav-open { overflow: hidden; }

@media (max-width: 640px) {
  .gn-overlay__item { font-size: 36px; gap: 12px; padding: 8px 0; }
  .gn-overlay__num { width: 36px; font-size: 12px; }
  .gn-overlay__arrow { font-size: 20px; }
  .gn-overlay__foot { font-size: 13px; gap: 12px; flex-direction: column; align-items: stretch; text-align: center; }
}

/* ============================================================
   HERO — Clip-Path Reveal + Word Fall
   ============================================================ */
.gn-hero__portrait {
  clip-path: circle(0% at center);
  transition: clip-path 1.2s cubic-bezier(.22,1,.36,1);
}
.gn-hero__portrait.is-revealed {
  clip-path: circle(100% at center);
}
.gn-hero__word { transition: transform .35s cubic-bezier(.22,1,.36,1); }

/* ============================================================
   3D TILT — utility for cards/tiles
   ============================================================ */
.gn-tilted {
  transform-style: preserve-3d;
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .3s;
}
@media (hover: hover) and (pointer: fine) {
  .gn-tilted {
    transform: perspective(900px) translate3d(0, var(--float-y, 0px), 0) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  }
}
.gn-svc {
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .3s;
  transform: translate3d(0, var(--float-y, 0px), 0);
}
@media (hover: hover) and (pointer: fine) {
  .gn-svc.gn-tilted {
    transform: perspective(900px) translate3d(0, var(--float-y, 0px), 0) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  }
}

/* ============================================================
   PHASE 12 · YOUTUBE SVG BLINDS
   ============================================================ */
.gn-yt__embed { position: relative; }
.gn-blinds {
  position: absolute; inset: 0;
  z-index: 4;
  pointer-events: none;
  display: flex;
}
.gn-blinds__strip {
  flex: 1;
  background: var(--ink);
  transform-origin: center;
}

/* ============================================================
   PHASE 9 · QUOTE OF THE WEEK — signature path
   ============================================================ */
.gn-quote-week__signature {
  display: block;
  margin: 32px auto 0;
  width: 280px;
  height: 70px;
}
.gn-quote-week__signature path {
  fill: none;
  stroke: var(--primary);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================================
   PROGRESS DOTS
   ============================================================ */
.gn-progress-dots {
  position: fixed;
  inset-inline-end: 24px;
  inset-block-start: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex; flex-direction: column;
  gap: 10px;
}
.gn-pd-dot {
  width: 8px; height: 8px;
  background: rgba(26, 22, 18, 0.18);
  border-radius: 50%;
  display: block;
  transition: transform .3s cubic-bezier(.22,1,.36,1), background .3s;
  cursor: pointer;
}
.gn-pd-dot:hover { background: var(--ink); transform: scale(1.6); }
.gn-pd-dot.is-active {
  background: var(--primary);
  transform: scale(2);
  box-shadow: 0 0 0 3px rgba(255,91,46,0.18);
}
@media (max-width: 1024px) { .gn-progress-dots { display: none; } }

/* ============================================================
   AUDIO TOGGLE
   ============================================================ */
.gn-audio-toggle {
  position: fixed;
  inset-block-end: 24px;
  inset-inline-end: 24px;
  z-index: 90;
  width: 48px; height: 48px;
  background: var(--ink);
  color: var(--bg);
  border: 0; border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  font-size: 20px;
  box-shadow: 0 10px 24px rgba(26,22,18,0.18);
  transition: transform .25s, background .25s;
}
.gn-audio-toggle:hover { transform: scale(1.1); }
.gn-audio-toggle.is-on { background: var(--primary); }
.gn-audio-toggle .gn-audio-toggle__off { display: block; }
.gn-audio-toggle .gn-audio-toggle__on  { display: none; }
.gn-audio-toggle.is-on .gn-audio-toggle__off { display: none; }
.gn-audio-toggle.is-on .gn-audio-toggle__on  { display: block; }
@media (max-width: 640px) {
  .gn-audio-toggle { width: 40px; height: 40px; font-size: 16px; inset-inline-end: 16px; inset-block-end: 80px; }
}

/* ============================================================
   PAGE MAIN — push content below fixed nav
   ============================================================ */
main { padding-block-start: 0; }
.gn-hero, .gn-page-hero, .gn-svc-hero, .gn-about-cover {
  padding-block-start: 96px;
}

/* Hide the OLD pill-nav entirely (we replaced it) */
.gn-pill-nav, .gn-burger, .gn-drawer { display: none !important; }

/* gn-magnet uses transition for transform */
.gn-magnet { transition: transform .25s cubic-bezier(.22,1,.36,1); }

/* Character split utility */
.gn-split__char { display: inline-block; transition: transform .15s cubic-bezier(.22,1,.36,1); }

/* prefer reduced motion — kill heavy effects */
@media (prefers-reduced-motion: reduce) {
  .gn-hero__portrait { clip-path: none; }
  .gn-tilted { transform: none !important; }
  .gn-overlay__item { opacity: 1 !important; transform: none !important; animation: none !important; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   v5.1 — FIXES from audit feedback
   ============================================================ */

/* Remove page-bg transition (was causing flicker) */
html { background: var(--bg) !important; transition: none !important; }
body { background: transparent !important; transition: none !important; }

/* Fix Hero "זה" — align baseline, normal size */
.gn-hero__word--mid {
  font-size: 1em !important;          /* match other words */
  font-style: italic;
  color: var(--olive) !important;
  margin-block: 0 !important;
  align-self: auto !important;
  margin-inline-end: 0 !important;
}

/* Overlay — smaller, slide from right with backdrop */
.gn-overlay {
  position: fixed;
  inset-block: 0;
  inset-inline-end: 0;
  inset-inline-start: auto;
  width: min(640px, 100vw);
  transform: translateX(100%);
  border-inline-start: 1px solid rgba(255,255,255,0.18);
  box-shadow: -20px 0 60px rgba(0,0,0,0.25);
  transition: transform .55s cubic-bezier(.83,0,.17,1);
}
[dir="rtl"] .gn-overlay {
  inset-inline-end: 0;
  transform: translateX(-100%);
}
.gn-overlay.is-open { transform: translateX(0); visibility: visible; }
/* Backdrop attached to html (avoids pseudo z-index issues with stacking context) */
html.gn-nav-open::before {
  content: '';
  position: fixed; inset: 0;
  background: rgba(26, 22, 18, 0.55);
  z-index: 198;
  animation: gn-overlay-fade .4s ease-out;
}
@keyframes gn-overlay-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.gn-overlay__item {
  font-size: clamp(30px, 4.5vw, 56px) !important;
  padding: 8px 0 !important;
}
.gn-overlay__num {
  font-size: 12px !important;
  width: 40px !important;
}
.gn-overlay__arrow {
  font-size: 20px !important;
}
.gn-overlay__list {
  padding: 60px 40px !important;
}
@media (min-width: 1024px) {
  .gn-overlay { overflow: hidden !important; }
  .gn-overlay__list {
    padding: 20px 36px !important;
    justify-content: stretch !important;
    gap: 0 !important;
  }
  .gn-overlay__item {
    flex: 1 1 0 !important;
    min-height: 0 !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 !important;
    font-size: clamp(28px, 5vh, 56px) !important;
    line-height: 1 !important;
    gap: 14px !important;
    border-block-end: 1px solid rgba(255,255,255,0.10);
  }
  .gn-overlay__item:last-child { border-block-end: 0; }
  .gn-overlay__num { font-size: 11px !important; width: 36px !important; }
  .gn-overlay__arrow { font-size: 18px !important; }
  .gn-overlay__top { padding: 14px 36px !important; }
  .gn-overlay__foot { padding: 16px 36px !important; font-size: 13px !important; }
}
.gn-overlay__foot {
  padding: 24px 40px !important;
  font-size: 14px !important;
  flex-direction: column !important;
  align-items: stretch !important;
  text-align: center !important;
  gap: 10px !important;
}

/* Force grids to be visible (override any leftover gsap.from state) */
.gn-services > *, .gn-lang-blocks > *, .gn-social-wall > *, .gn-vid-grid > *, .gn-mason > * {
  opacity: 1 !important;
  transform: none;
}
/* But still allow tilt transforms */
.gn-tilted { opacity: 1 !important; }

/* Behind-the-scenes — make sure it's a proper section, not pinned */
.gn-behind {
  position: relative !important;
  min-height: 70vh !important;
  height: auto !important;
}

/* Tape — manual pin via JS, no sticky/no GSAP dependency */
.gn-tape-wrap {
  position: relative;
  background: var(--bg);
}
.gn-tape {
  overflow: hidden;
  width: 100%;
  z-index: 5;
  left: 0; right: 0;
  background: var(--ink);
}
.gn-tape.is-pinned {
  position: fixed;
  top: 18%;
}
.gn-tape.is-released {
  position: absolute;
  bottom: 0;
}
.gn-tape__track {
  animation: none !important;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transition: none;
}
[dir="rtl"] .gn-tape__track { animation: none !important; }

/* Reveal default: visible. Only IO-armed elements hide. */
[data-reveal] { opacity: 1; transform: none; transition: opacity 700ms cubic-bezier(.22,1,.36,1), transform 700ms cubic-bezier(.22,1,.36,1); }
html.js-loaded [data-reveal]:not(.is-in) {
  /* Don't hide by default — let them show. Only animate IN when triggered. */
}

/* ============================================================
   LANGUAGES — Vinyl Records Carousel
   ============================================================ */
.gn-vinyl-carousel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 32px);
  padding: 24px 0;
  perspective: 1400px;
  max-width: 1400px;
  margin: 0 auto;
}
.gn-vinyl {
  aspect-ratio: 1/1;
  background: transparent; border: 0; padding: 0; cursor: pointer;
  position: relative;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
  font-family: inherit;
}
.gn-vinyl:focus-visible { outline: 3px solid var(--primary); outline-offset: 6px; border-radius: 50%; }
.gn-vinyl:hover { transform: translateY(-6px); }
.gn-vinyl__inner {
  position: absolute; inset: 0;
  transform-style: preserve-3d;
  transition: transform .85s cubic-bezier(.83,0,.17,1);
}
.gn-vinyl.is-flipped .gn-vinyl__inner { transform: rotateY(180deg); }
.gn-vinyl__front, .gn-vinyl__back {
  position: absolute; inset: 0;
  border-radius: 50%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: grid; place-items: center;
}
/* DISC — vinyl visual */
.gn-vinyl__disc {
  position: absolute; inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, transparent 0 18%, #1a1612 18.5%),
    repeating-radial-gradient(circle at center, #1a1612 0 2px, #251f1a 2px 4px),
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.08), transparent 60%),
    #0f0c08;
  box-shadow: 0 18px 40px rgba(0,0,0,0.45), inset 0 0 0 1px rgba(255,255,255,0.04);
  animation: gn-vinyl-spin 12s linear infinite;
  will-change: transform;
  display: grid; place-items: center;
}
.gn-vinyl:hover .gn-vinyl__disc { animation-duration: 4s; }
.gn-vinyl.is-flipped .gn-vinyl__disc { animation-play-state: paused; }
@keyframes gn-vinyl-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
/* LABEL — center colored disc per language */
.gn-vinyl__label {
  position: relative; z-index: 2;
  width: 48%; height: 48%;
  border-radius: 50%;
  display: grid; place-items: center; gap: 4px;
  text-align: center; padding: 6%;
  font-family: var(--heb); font-weight: 900;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.18);
}
.gn-vinyl__label::after {
  content: ''; position: absolute; width: 16%; height: 16%;
  border-radius: 50%; background: #0a0805;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.06);
}
.gn-vinyl__label--he { background: linear-gradient(135deg, #1B3D8B, #0C2666); color: white; }
.gn-vinyl__label--el { background: linear-gradient(135deg, #FFFFFF, #E8EFF8); color: #0D5EAF; }
.gn-vinyl__label--fr { background: linear-gradient(135deg, #002D72 0 28%, #FFFFFF 28% 72%, #E1000F 72%); color: #002D72; }
.gn-vinyl--fr .gn-vinyl__lang {
  transform: translateX(-50%) rotate(28deg);
  transform-origin: center center;
  text-shadow: 0 0 6px rgba(255,255,255,0.95), 0 0 3px rgba(255,255,255,1);
}
.gn-vinyl__label--mz { background: linear-gradient(135deg, #C9A961, #8B6F2B); color: #FFFAF1; }
.gn-vinyl__lang  {
  font-size: clamp(16px, 1.4vw, 24px); line-height: 1;
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.gn-vinyl__sub   { font-size: clamp(9px, 0.7vw, 11px); letter-spacing: 0.18em; opacity: 0.75; font-family: var(--ui); font-weight: 600; }
/* BACK — artist list */
.gn-vinyl__back {
  transform: rotateY(180deg);
  flex-direction: column;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18), inset 0 0 0 1px rgba(26,22,18,0.08);
  padding: 10% 12%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
}
.gn-vinyl__back--he { background: linear-gradient(180deg, #FFFAF1, #FFF2D9); }
.gn-vinyl__back--el { background: linear-gradient(180deg, #FFFAF1, #E8EFF8); }
.gn-vinyl__back--fr { background: linear-gradient(180deg, #FFFAF1, #FFE8E8); }
.gn-vinyl__back--mz { background: linear-gradient(180deg, #FFFAF1, #F8EDD8); }
.gn-vinyl__back-title { font-family: var(--heb); font-weight: 900; font-size: clamp(20px, 1.8vw, 30px); margin: 0 0 10px; color: var(--ink); }
.gn-vinyl__list { list-style: none; padding: 0; margin: 0 0 10px; font-family: var(--heb); font-weight: 500; font-size: clamp(11px, 1vw, 14px); line-height: 1.55; color: var(--ink); }
.gn-vinyl__list li { padding: 1px 0; }
.gn-vinyl__cta {
  font-family: var(--ui); font-size: 11px; letter-spacing: 0.12em;
  color: var(--primary); font-weight: 700;
  text-transform: uppercase;
}
/* MOBILE — 2×2 grid */
@media (max-width: 768px) {
  .gn-vinyl-carousel { grid-template-columns: 1fr 1fr; gap: 14px; }
  .gn-vinyl__label { width: 54%; height: 54%; }
}
/* HIDE old lang-blocks (kept as harmless CSS dead code) */
.gn-lang-blocks { display: none; }
/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  .gn-vinyl__disc { animation: none; }
  .gn-vinyl__inner { transition: none; }
}

/* ============================================================
   MOBILE OPTIMIZATIONS — pause + simplify
   ============================================================ */
/* Tape auto-marquee for mobile (no pin) */
@keyframes gn-tape-mobile {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@media (max-width: 767px) {
  /* Tape mobile: pin behavior active (JS-driven), shorter travel */
  .gn-tape-wrap { /* JS sets height */ }

  /* Vinyl: slow rotation + smaller, prevent overflow */
  .gn-vinyl__disc { animation-duration: 20s !important; }
  .gn-vinyl-carousel { gap: 12px; padding: 12px 0; }

  /* Parallax: zero out */
  [data-parallax], .gn-parallax { transform: none !important; }

  /* Floating service cards: kill outer float if section out of view (JS already zeros it) */
  .gn-svc { will-change: auto; }

  /* Behind video should not pin on mobile if anywhere it does */
  .gn-behind { overflow: hidden; }

  /* Disable will-change overuse on mobile */
  .gn-tape__track,
  .gn-hero__portrait,
  .gn-svc,
  .gn-vinyl__disc { backface-visibility: hidden; }

  /* Hero clip-path: simpler on mobile (instant reveal, no animation) */
  .gn-hero__portrait { clip-path: none !important; }

  /* Reduce custom audio toggle size */
  .gn-audio-toggle { width: 44px; height: 44px; }
}

/* Pause vinyl disc spin when carousel section is offscreen — saves battery */
.gn-vinyl-carousel:not(.is-visible) .gn-vinyl__disc { animation-play-state: paused; }

/* ============================================================
   MOBILE — Social Wall logo fix + anti-jitter guards
   ============================================================ */
@media (max-width: 767px) {
  /* Social wall: smaller logos so they don't cover text */
  .gn-social-tile { padding: 14px; }
  .gn-social-tile__brand {
    width: 36px !important; height: 36px !important;
    inset-inline-end: 10px; inset-block-start: 10px;
  }
  .gn-social-tile.is-yt .gn-social-tile__brand { width: 40px !important; height: auto !important; }
  .gn-social-tile.is-fb .gn-social-tile__brand,
  .gn-social-tile.is-ig .gn-social-tile__brand { padding: 4px; border-radius: 10px; }
  .gn-social-tile.is-yt .gn-social-tile__brand { padding: 5px 4px; border-radius: 8px; }
  .gn-social-tile__handle { font-size: 11px; }
  .gn-social-tile__name { font-size: 18px; margin-block-start: 4px; }
  .gn-social-tile__count { font-size: 22px; }
  .gn-social-tile__count small { font-size: 10px; }
  .gn-social-tile__meta {
    padding-inline-end: 38px; /* reserve space for logo */
  }

  /* Anti-jitter: force GPU layers + remove subpixel shifts */
  .gn-tape, .gn-tape__track,
  .gn-svc, .gn-vinyl, .gn-vinyl__disc,
  .gn-social-tile, .gn-svc__inner {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
  }

  /* Eliminate any rogue horizontal overflow */
  html, body { overflow-x: clip; }
  body { width: 100%; max-width: 100vw; }
  main, section, .gn-section, .gn-tape-wrap, .gn-final, .gn-hero { max-width: 100vw; }

  /* Ensure tape pin works smoothly */
  .gn-tape.is-pinned { width: 100% !important; left: 0 !important; right: 0 !important; }
}

/* ============================================================
   HERO 3D MIC — floating rotating model-viewer
   ============================================================ */
/* Float to the LEFT of headline (RTL: inset-inline-end = left edge of parent) */
.gn-hero__mic3d {
  position: absolute;
  inset-inline-end: 60px;
  inset-block-start: 90px;
  width: clamp(140px, 18vw, 260px);
  aspect-ratio: 1/1;
  z-index: 6;
  pointer-events: none;
  filter: drop-shadow(0 24px 44px rgba(26,22,18,0.35));
  animation: gn-mic-bob 5.5s ease-in-out infinite;
}
.gn-hero__mic3d model-viewer {
  width: 100%; height: 100%;
  --poster-color: transparent;
}
@keyframes gn-mic-bob {
  0%, 100% { transform: translateY(0px); }
  50%      { transform: translateY(-14px); }
}
@media (max-width: 768px) {
  .gn-hero__mic3d {
    position: relative;
    inset: auto;
    width: 160px;
    margin: 0 auto 12px;
    animation: gn-mic-bob 5s ease-in-out infinite;
  }
}
@media (prefers-reduced-motion: reduce) {
  .gn-hero__mic3d { animation: none; }
}
