/* פריים — Perumnas-inspired editorial layout */

@font-face {
  font-family: "buTactica";
  src: url("../fonts/buTactica-Variable.woff2") format("woff2-variations"),
       url("../fonts/buTactica-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "buTactica";
  src: url("../fonts/buTactica-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "buTactica";
  src: url("../fonts/buTactica-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #ffffff;
  --paper-soft: #f6f6f4;
  --ink: #111111;
  --ink-soft: #5c5c5c;
  --ink-mute: #8a8a8a;
  --line: #ececec;
  --line-strong: #d8d8d8;
  --gold: #b8954a;
  --whatsapp: #1f6b46;
  --header-h: 84px;
  --container: 1120px;
  --wide: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Heebo", Arial, sans-serif;
  --font-display: "buTactica", Arial, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html[dir="rtl"] { direction: rtl; }

body.frame-body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.frame-skip {
  position: absolute;
  inset-inline-start: 16px;
  top: -80px;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
}
.frame-skip:focus { top: 16px; }

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}
.container-wide {
  width: min(calc(100% - 48px), var(--wide));
  margin-inline: auto;
}

.section { padding: 110px 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: #2a2a2a; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn:focus-visible,
.nav-link:focus-visible,
.faq-q:focus-visible,
.form-field input:focus-visible,
.form-field select:focus-visible,
.gallery-item:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

/* Header */

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 80;
  height: var(--header-h);
  background: transparent;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.is-solid,
.site-header.is-menu-open {
  background: #fff;
  box-shadow: 0 1px 0 var(--line);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  position: relative;
}
.brand-logo {
  height: 64px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}
.brand-logo-dark { display: none; }
.site-header.is-solid .brand-logo-light,
.site-header.is-menu-open .brand-logo-light { display: none; }
.site-header.is-solid .brand-logo-dark,
.site-header.is-menu-open .brand-logo-dark { display: block; }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: 14px;
  color: #fff;
  opacity: 0.92;
}
.site-header.is-solid .nav-link,
.site-header.is-menu-open .nav-link { color: var(--ink); opacity: 1; }
.nav-link:hover { opacity: 0.65; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 1.5px;
  background: #fff;
  position: relative;
}
.menu-toggle span::before,
.menu-toggle span::after { content: ""; position: absolute; inset-inline-start: 0; }
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
.site-header.is-solid .menu-toggle span,
.site-header.is-solid .menu-toggle span::before,
.site-header.is-solid .menu-toggle span::after,
.site-header.is-menu-open .menu-toggle span,
.site-header.is-menu-open .menu-toggle span::before,
.site-header.is-menu-open .menu-toggle span::after { background: var(--ink); }

.nav-mobile { display: none; }

/* Hero — bottom-center overlay */

.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 34%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to top, #fff 0%, rgba(255, 255, 255, 0.72) 38%, rgba(255, 255, 255, 0) 100%);
}
.hero-media { position: absolute; inset: 0; }
.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
}
.hero-media video { display: block; }
@media (prefers-reduced-motion: reduce) {
  .hero-media video { display: none; }
  .hero-media .hero-fallback { display: block; }
}
.hero-fallback { display: none; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.42);
}
.hero-content {
  position: absolute;
  z-index: 3;
  inset-inline: 0;
  bottom: clamp(150px, 26vh, 240px);
  max-width: none;
  padding: 0 24px;
}
.hero-kicker,
.hero-title,
.hero-text {
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.55),
    0 6px 28px rgba(0, 0, 0, 0.55),
    0 18px 48px rgba(0, 0, 0, 0.4);
}
.hero-kicker {
  margin: 0 0 20px;
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 400;
  letter-spacing: 0.08em;
  opacity: 0.95;
}
.hero-title {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.2vw, 5.2rem);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}
.hero-text {
  margin: 0 auto;
  max-width: 36em;
  font-size: clamp(1.2rem, 2.1vw, 1.55rem);
  font-weight: 300;
  line-height: 1.25;
  opacity: 0.96;
}

/* Intro + facts */

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}
.intro-title {
  margin: 0 0 20px;
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
}
.intro-copy p {
  margin: 0 0 16px;
  color: var(--ink-soft);
}
.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.fact strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.fact span {
  color: var(--ink-soft);
  font-size: 14px;
}

/* Project slider */

.slider-section {
  overflow: hidden;
  width: 100%;
}
.slider {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-inline: calc(50% - 50vw);
}
.slider-viewport { overflow: hidden; }
.slider-track {
  display: flex;
  gap: 16px;
  will-change: transform;
  transition: transform 0.55s var(--ease);
}
.slider-slide {
  flex: 0 0 calc((100% - 64px) / 5);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
  border-radius: 24px;
}
.slider-slide img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  border-radius: 24px;
}
.slider-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transform: translateY(-50%);
}
.slider-prev { inset-inline-start: 16px; }
.slider-next { inset-inline-end: 16px; }
.slider-nav svg { width: 20px; height: 20px; }

/* Features */

.features-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
}
.feature {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.feature:first-child { padding-top: 0; }
.feature h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}
.feature p {
  margin: 0;
  color: var(--ink-soft);
}

/* Collage */

.collage-section {
  padding-top: 0;
}

.collage {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 28px 40px;
  align-items: stretch;
}

.collage-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-height: 0;
}

.collage-col--copy { gap: 36px; }

.collage-copy {
  flex: 0 0 auto;
}

.collage-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 3.8vw, 3.35rem);
  line-height: 1.12;
}

.collage-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.65;
}

.collage-media {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: var(--paper-soft);
}

.collage-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.collage-media--hero {
  aspect-ratio: 5 / 4;
  animation-delay: 0.08s;
}

.collage-media--wide {
  aspect-ratio: 1.85 / 1;
  animation-delay: 0.2s;
}

.collage-media--tall {
  position: relative;
  flex: 1 1 auto;
  min-height: 320px;
  animation-delay: 0.14s;
}

.collage-media--tall img {
  position: absolute;
  inset: 0;
  object-position: 50% 42%;
}

/* Works grid */

.works-head {
  margin-bottom: 36px;
}
.works-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.lunsoul-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: center;
}
.lunsoul-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}
.lunsoul-copy p {
  margin: 0 0 22px;
  max-width: 26em;
  color: var(--ink-soft);
}
.ig-follow-text {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 8px;
  background: #0095f6;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.ig-follow-text:hover { background: #1877f2; }
.lunsoul-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 360px;
  max-width: 100%;
  border: 1px solid #dbdbdb;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}
.lunsoul-card .lunsoul-widget {
  display: contents;
}
.ig-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid #efefef;
  font-size: 14px;
  font-weight: 600;
}
.ig-topbar svg { width: 22px; height: 22px; flex-shrink: 0; }
.ig-follow {
  position: absolute;
  top: 58px;
  inset-inline-end: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 14px;
  border-radius: 8px;
  background: #0095f6;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
.ig-follow:hover { background: #1877f2; }
.ig-tabs {
  display: flex;
  justify-content: center;
  order: 5;
  border-top: 1px solid #efefef;
  padding: 8px 0 6px;
}
.ig-tabs span {
  width: 22px;
  height: 22px;
  background: currentColor;
  color: #262626;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 3h7v7H3V3zm11 0h7v7h-7V3zM3 14h7v7H3v-7zm11 0h7v7h-7v-7z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 3h7v7H3V3zm11 0h7v7h-7V3zM3 14h7v7H3v-7zm11 0h7v7h-7v-7z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.lunsoul-section .lunsoul-widget {
  --lunsoul-accent: #0095f6;
  --lunsoul-text: #262626;
  --lunsoul-muted: #737373;
  --lunsoul-border: #efefef;
  font-family: var(--font);
  font-size: 13px;
}
.lunsoul-section .lunsoul-feed__header {
  padding: 14px 14px 12px;
  border-bottom: 0;
  padding-inline-end: 92px;
}
.lunsoul-section .lunsoul-feed__avatar {
  width: 56px;
  height: 56px;
  padding: 2px;
  border: 2px solid transparent;
  border-radius: 50%;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(45deg, #f9ce34, #ee2a7b 50%, #6228d7) border-box;
}
.lunsoul-section .lunsoul-feed__name {
  font-size: 14px;
  font-weight: 600;
}
.lunsoul-section .lunsoul-feed__stats,
.lunsoul-section .lunsoul-feed__glyph { display: none; }
.lunsoul-section .lunsoul-feed__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  cursor: default;
  direction: rtl;
}
.lunsoul-section .lunsoul-feed__tile {
  flex: none;
  aspect-ratio: 1 / 1;
  border-radius: 0;
  overflow: hidden;
}
.lunsoul-section .lunsoul-feed__tile a {
  position: relative;
}
.lunsoul-section .lunsoul-feed__tile a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
  opacity: 0;
  transition: opacity 0.2s var(--ease);
}
.lunsoul-section .lunsoul-feed__tile a:hover::after { opacity: 1; }
.lunsoul-section .lunsoul-feed__play {
  z-index: 1;
  top: 8px;
  inset-inline-end: 8px;
  inset-inline-start: auto;
}
.lunsoul-section .lunsoul-credit {
  display: block;
  order: 6;
  margin: 0;
  padding: 8px 12px 12px;
  font-size: 11px;
  line-height: 1.45;
  color: #8e8e8e;
  text-align: center;
}
.lunsoul-section .lunsoul-credit a {
  color: #737373;
  text-decoration: underline;
}
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  padding: 0;
  border: 0;
  background: var(--paper-soft);
  cursor: zoom-in;
  overflow: hidden;
  border-radius: 24px;
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.04); }
.works-more {
  display: none;
  margin: 24px auto 0;
  min-width: 220px;
}

/* FAQ */

.faq-split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.faq-split h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: start;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}
.faq-icon {
  width: 14px;
  height: 14px;
  position: relative;
  flex-shrink: 0;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--ink);
}
.faq-icon::before { inset-inline: 0; top: 6.5px; height: 1px; }
.faq-icon::after { inset-block: 0; inset-inline-start: 6.5px; width: 1px; }
.faq-item.is-open .faq-icon::after { opacity: 0; }
.faq-a {
  display: none;
  padding: 0 0 18px;
  color: var(--ink-soft);
  font-size: 15px;
}
.faq-item.is-open .faq-a { display: block; }

/* Contact */

.contact {
  background: var(--paper-soft);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.contact h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}
.contact .lede {
  margin: 0 0 20px;
  color: var(--ink-soft);
}
.contact-note {
  margin: 20px 0 0;
  color: var(--ink-mute);
  font-size: 14px;
}

.lead-form h3 { margin: 0 0 6px; font-size: 1.3rem; }
.lead-form .form-intro { margin: 0 0 22px; color: var(--ink-soft); font-size: 0.95rem; }
.form-field { margin-bottom: 14px; }
.form-field label { display: block; margin-bottom: 6px; font-size: 13px; }
.form-field input,
.form-field select {
  width: 100%;
  height: 48px;
  padding: 0 12px;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  border-radius: 0;
}
.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"] { border-color: #8b3a2a; }
.field-error { display: none; margin-top: 6px; color: #8b3a2a; font-size: 13px; }
.form-field.is-error .field-error { display: block; }
.form-actions .btn { width: 100%; margin-top: 8px; }
.form-legal { margin: 12px 0 0; color: var(--ink-mute); font-size: 13px; }
.form-success { display: none; }
.lead-form.is-success .form-fields { display: none; }
.lead-form.is-success .form-success { display: block; }
.form-success h4 { margin: 0 0 8px; font-size: 1.3rem; }

/* Footer */

.site-footer {
  background: #fff;
  color: var(--ink-soft);
  padding: 64px 0 0;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: 40px 40px;
  align-items: start;
  padding-bottom: 40px;
}
.footer-brand a { display: inline-block; }
.footer-brand img {
  height: 72px;
  width: auto;
  max-width: min(240px, 100%);
  object-fit: contain;
  margin-bottom: 12px;
}
.footer-seo {
  margin: 0;
  max-width: 36ch;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.footer-title {
  margin: 0 0 4px;
  color: var(--ink);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.3;
}
.footer-col,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;
  font-style: normal;
}
.footer-col a,
.footer-contact a {
  font-size: 14px;
}
.footer-col a:hover,
.footer-contact a:hover { color: var(--ink); }
.footer-phone {
  direction: ltr;
  unicode-bidi: isolate;
  font-weight: 500;
  color: var(--ink);
  font-size: 15px;
}
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 6px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 18px 0 24px;
  padding-inline-end: 80px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--ink-mute);
}

.whatsapp-float {
  position: fixed;
  inset-inline-end: 20px;
  bottom: 24px;
  z-index: 70;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: grid;
  place-items: center;
}
.whatsapp-float svg { width: 24px; height: 24px; fill: currentColor; }
.mobile-cta { display: none; }
body.is-contact-visible .mobile-cta { transform: translateY(110%); }
body.is-contact-visible .whatsapp-float { bottom: 24px; }

.legal-page { padding: 140px 0 80px; }
.legal-copy { max-width: 72ch; }
.legal-page h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin: 0 0 20px; }
.legal-page h2 {
  font-size: 1.2rem;
  margin: 36px 0 12px;
  letter-spacing: -0.02em;
}
.legal-page p, .legal-page li { color: var(--ink-soft); }
.legal-page p { margin: 0 0 14px; }
.legal-page ul { margin: 0 0 16px; padding-inline-start: 1.2em; }
.legal-page li { margin: 0 0 8px; }
.legal-copy a { text-decoration: underline; text-underline-offset: 3px; }
.legal-copy a:hover { color: var(--ink); }
.legal-updated { margin-top: 36px; font-size: 14px; color: var(--ink-mute); }

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: rise 0.7s var(--ease) forwards;
  animation-play-state: paused;
}
.reveal.is-in { animation-play-state: running; }
@keyframes rise { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .gallery-item img { animation: none; transition: none; opacity: 1; transform: none; }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  place-items: center;
  background: rgba(10, 10, 10, 0.88);
  padding: 24px;
}
.lightbox.is-open { display: grid; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 86vh; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 18px;
  inset-inline-end: 18px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

@media (max-width: 980px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .nav-mobile {
    display: block;
    position: fixed;
    inset: var(--header-h) 0 0 0;
    z-index: 75;
    background: #fff;
    padding: 28px 24px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  }
  .nav-mobile.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-mobile a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.2rem;
  }
  .nav-mobile .btn { margin-top: 24px; width: 100%; }

  .intro-grid,
  .features-wrap,
  .faq-split,
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .works-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  /* Show 4 works, the rest behind "show more" */
  .works-grid:not(.is-expanded) .gallery-item:nth-child(n + 5) { display: none; }
  .works-more[data-active] { display: inline-flex; }
  .works-grid.is-expanded + .works-more { display: none; }
  .lunsoul-layout { grid-template-columns: 1fr; gap: 24px; }
  .lunsoul-copy { order: -1; }
  .lunsoul-copy p { max-width: none; }
  .lunsoul-card { margin-inline: auto; }
  .contact-grid { gap: 40px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 28px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .slider-viewport { padding-inline: 24px; }
  .slider-slide { flex-basis: calc((100% - 16px) / 2); }
  .slider-slide img { height: 460px; }

  .facts { gap: 16px; }
  /* Collage: copy, one wide image, then two side by side */
  .collage {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .collage-col {
    display: contents;
  }
  .collage-copy { order: 1; grid-column: 1 / -1; margin-bottom: 8px; }
  .collage-media--hero { order: 2; grid-column: 1 / -1; aspect-ratio: 16 / 10; }
  .collage-media--tall { order: 3; min-height: 0; aspect-ratio: 1 / 1; }
  .collage-media--wide { order: 4; aspect-ratio: 1 / 1; }
  .collage-media--tall img {
    position: static;
    min-height: 0;
    aspect-ratio: 1 / 1;
  }
  .collage-copy h2 { font-size: clamp(1.8rem, 5vw, 2.6rem); }

  .hero {
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
  }
  .hero-title { font-size: 2.2rem; white-space: normal; }
  .hero-text { font-size: 1.15rem; max-width: none; }
  .hero-content { bottom: calc(170px + env(safe-area-inset-bottom)); }

  .mobile-cta {
    display: flex;
    position: fixed;
    inset-inline: 0;
    bottom: 0;
    z-index: 65;
    background: var(--ink);
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    transition: transform 0.3s var(--ease);
  }
  .mobile-cta .btn { width: 100%; }
  .whatsapp-float { bottom: 76px; transition: bottom 0.3s var(--ease); }
  body.has-mobile-cta { padding-bottom: 70px; }
}

@media (max-width: 640px) {
  :root { --header-h: 72px; }
  .section { padding: 64px 0; }
  .container, .container-wide { width: min(calc(100% - 32px), var(--container)); }
  .brand-logo { height: 50px; max-width: 180px; }

  /* Hero */
  .hero-kicker { margin-bottom: 14px; font-size: 14px; }
  .hero-title { font-size: clamp(2.1rem, 10vw, 2.6rem); margin-bottom: 14px; }
  .hero-text { font-size: 1.05rem; line-height: 1.35; }
  .hero-content { padding: 0 20px; bottom: calc(150px + env(safe-area-inset-bottom)); }

  /* Intro */
  .intro-grid { gap: 14px; }
  .intro-title { font-size: 1.85rem; margin-bottom: 4px; }
  .facts { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 28px; }
  .fact strong { font-size: 1.9rem; }
  .fact span { font-size: 13px; line-height: 1.3; display: block; }

  /* Slider: one card at a time with a peek of the next */
  .slider-viewport { padding-inline: 16px; }
  .slider-track { gap: 12px; }
  .slider-slide { flex-basis: 84%; border-radius: 18px; }
  .slider-slide img { height: min(62vh, 440px); border-radius: 18px; }
  .slider-nav { width: 40px; height: 40px; }
  .slider-nav svg { width: 18px; height: 18px; }
  .slider-prev { inset-inline-start: 8px; }
  .slider-next { inset-inline-end: 8px; }

  /* Features */
  .features-wrap { gap: 12px; }
  .feature { padding: 22px 0; }
  .feature h3 { font-size: 1.15rem; }
  .feature p { font-size: 15px; }

  /* Collage: copy, then one wide image, then two side by side */
  .collage { gap: 12px; }
  .collage-copy { margin-bottom: 6px; }
  .collage-copy h2 { font-size: 1.85rem; margin-bottom: 12px; }
  .collage-copy p { font-size: 1rem; line-height: 1.55; }
  .collage-media { border-radius: 16px; }
  .collage-media--hero { aspect-ratio: 4 / 3; }

  /* Works grid */
  .works-head { margin-bottom: 22px; }
  .works-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery-item { border-radius: 16px; }
  .works-more { width: 100%; }

  /* Instagram */
  .lunsoul-layout { gap: 20px; }
  .lunsoul-copy h2 { margin-bottom: 10px; }
  .lunsoul-copy p { margin-bottom: 16px; }
  .lunsoul-card { width: 100%; }

  /* FAQ */
  .faq-split { gap: 12px; }
  .faq-q { padding: 16px 0; gap: 16px; font-size: 15px; }
  .faq-a { font-size: 14px; }

  /* Contact */
  .contact h2 { font-size: 1.85rem; }
  .contact .lede { font-size: 15px; }
  .contact .btn-ghost { width: 100%; }
  .contact-note { font-size: 13px; }
  .lead-form { padding-bottom: 8px; }
  .lead-form h3 { font-size: 1.2rem; }
  .form-legal { padding-inline-end: 60px; }

  /* Footer: brand, two link columns side by side, contact strip, centered legal line */
  .site-footer { padding-top: 48px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
    padding-bottom: 28px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand img { height: 56px; margin-bottom: 10px; }
  .footer-seo { max-width: none; font-size: 13px; line-height: 1.5; }
  .footer-title { margin-bottom: 8px; }
  .footer-col { gap: 0; }
  .footer-col a { padding: 6px 0; font-size: 14px; }
  .footer-contact {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
  }
  .footer-contact .footer-title { flex-basis: 100%; margin: 0; }
  .footer-contact .footer-phone {
    flex-basis: 100%;
    text-align: right;
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
  }
  .footer-socials { display: contents; }
  .footer-contact > a:not(.footer-phone),
  .footer-socials a {
    flex: 1 1 calc(50% - 5px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    font-size: 14px;
    color: var(--ink);
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 16px 64px 28px;
    font-size: 12px;
  }
}
