/* sbrat.net — vanilla replacement styles.
   Provides: appear animation CSS, menu toggle states, light-mode theme,
   print fallback. Loaded last so it overrides Framer-generated styles. */

/* ============================================================
   LIGHT MODE THEME
   ------------------------------------------------------------
   Framer generated 4 design tokens in :root for dark mode:
     --token-0df385c8… = rgb(15, 15, 15)    primary background
     --token-412736a6… = rgb(255, 255, 255) primary text + logo
     --token-4213617f… = rgb(166, 166, 166) secondary text
     --token-847bdcde… = rgb(26, 26, 26)    surface / card bg

   We override them for light mode in two ways:
     1. @media (prefers-color-scheme: light) — auto from OS
     2. html[data-theme="light"] — manual override (wins over auto)
     3. html[data-theme="dark"]  — manual pin to dark

   Transitions smooth the toggle; reduced-motion users skip them.
   ============================================================ */

html {
  color-scheme: dark;
}

html body,
html #main {
  transition:
    background-color 280ms cubic-bezier(0.22, 1, 0.36, 1),
    color 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* 1a. AUTO — follow OS preference when no manual override.
   NOTE: Framer's SSR declared these tokens on `body`, not :root. We must
   target `body` too (higher specificity than plain body) to override them. */
@media (prefers-color-scheme: light) {
  html:not([data-theme="dark"]) {
    color-scheme: light;
  }
  html:not([data-theme="dark"]) body {
    --token-0df385c8-c6c4-40bb-a008-e6f27b304ae0: rgb(245, 245, 245);
    --token-412736a6-764a-4748-80bf-a9c04ad63339: rgb(15, 15, 15);
    --token-4213617f-db71-4b9f-b786-d4b4f6de56f3: rgb(107, 107, 107);
    --token-847bdcde-68af-4acc-bb45-37d83fa37c74: rgb(232, 232, 232);
  }
}

/* 1b. MANUAL — user explicitly chose light (beats OS auto). */
html[data-theme="light"] {
  color-scheme: light;
}
html[data-theme="light"] body {
  --token-0df385c8-c6c4-40bb-a008-e6f27b304ae0: rgb(245, 245, 245);
  --token-412736a6-764a-4748-80bf-a9c04ad63339: rgb(15, 15, 15);
  --token-4213617f-db71-4b9f-b786-d4b4f6de56f3: rgb(107, 107, 107);
  --token-847bdcde-68af-4acc-bb45-37d83fa37c74: rgb(232, 232, 232);
}

/* 1c. Framer's SSR injected hard-coded background rules on the <body>:
       :root body { background: var(--token-0df385c8…) }
       html body { background: var(--token-0df385c8…) }
   Force them to recompute by re-declaring here. */
:root body,
html body {
  background: var(--token-0df385c8-c6c4-40bb-a008-e6f27b304ae0);
}

/* 1d. Theme toggle button — top-left, positioned next to the hamburger
   on all devices. Hamburger sits at (20, 35) with 24x24 size;
   the toggle is placed just to its right with visual breathing room. */
/* Vertically center mobile header content inside the 80px nav.
   Framer hard-codes 20px top/bottom padding on the logo wrapper which pushes
   the logo + hamburger below the nav's midline — override it. */
.framer-1grl81i {
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}

#sbrat-theme-toggle {
  position: fixed;
  top: 24px;
  left: 60px;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: var(--token-412736a6-764a-4748-80bf-a9c04ad63339, #fff);
  cursor: pointer;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  transition: background-color 200ms, transform 200ms;
}
#sbrat-theme-toggle:hover {
  background: color-mix(in srgb, currentColor 10%, transparent);
  transform: scale(1.08);
}
#sbrat-theme-toggle svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* Show sun icon when light is active, moon when dark — opposite of current. */
#sbrat-theme-toggle .icon-sun { display: none; }
#sbrat-theme-toggle .icon-moon { display: block; }
html[data-theme="light"] #sbrat-theme-toggle .icon-sun { display: block; }
html[data-theme="light"] #sbrat-theme-toggle .icon-moon { display: none; }
@media (prefers-color-scheme: light) {
  html:not([data-theme="dark"]) #sbrat-theme-toggle .icon-sun { display: block; }
  html:not([data-theme="dark"]) #sbrat-theme-toggle .icon-moon { display: none; }
}

/* Respect motion preference — remove theme transitions for those users. */
@media (prefers-reduced-motion: reduce) {
  html body, html #main, #sbrat-theme-toggle {
    transition: none;
  }
}

/* 1e. Hamburger icon lines — Framer hard-codes their background-color as
   inline style `rgb(255, 255, 255)`. We override with !important so the
   lines follow the active theme's foreground color. */
html[data-theme="light"] [data-framer-name="Mobile Menu Icon"] > div,
html[data-theme="light"] [data-framer-name="Menu Icon"] > div {
  background-color: var(--token-412736a6-764a-4748-80bf-a9c04ad63339) !important;
}
@media (prefers-color-scheme: light) {
  html:not([data-theme="dark"]) [data-framer-name="Mobile Menu Icon"] > div,
  html:not([data-theme="dark"]) [data-framer-name="Menu Icon"] > div {
    background-color: var(--token-412736a6-764a-4748-80bf-a9c04ad63339) !important;
  }
}


/* 1. Appear animation — initial hidden state + transition to visible. */
.appear-init {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.appear-init.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Respect user motion preferences. */
@media (prefers-reduced-motion: reduce) {
  .appear-init,
  .appear-init.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* 2. Menu open state — when hamburger toggles. */
html.menu-open {
  overflow: hidden;
}

[data-framer-name="Overlay"].is-open,
[data-framer-name="Nav Overlay"].is-open,
[data-framer-name="Menu Overlay"].is-open {
  opacity: 1 !important;
  pointer-events: auto !important;
  visibility: visible !important;
  transform: none !important;
}

/* 3. Baseline: ensure images never exceed container. */
img {
  max-width: 100%;
  height: auto;
}

/* 3a. <picture> transparency in layout.
   We wrap every <img> in <picture> for WebP fallback. By default <picture>
   is inline and breaks Framer layouts where the <img> was sized as a
   block 100% child. display:contents lets the <img> participate in its
   grandparent's layout as if the <picture> wasn't there. */
picture {
  display: contents;
}

/* 3b. Framer autosize fix on mobile/tablet.
   Framer's SSR caches desktop-measured max-width on RichTextContainer
   elements, causing text to look inset on narrow viewports.
   Relax the cap below the tablet breakpoint so text fills its parent. */
@media (max-width: 809.98px) {
  [data-framer-component-type="RichTextContainer"] {
    max-width: 100% !important;
    width: 100% !important;
  }
}

/* 4. Mobile nav overlay (custom — replaces Framer's runtime-only "Open" variant). */
#sbrat-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--token-0df385c8-c6c4-40bb-a008-e6f27b304ae0, rgb(15, 15, 15));
  color: var(--token-412736a6-764a-4748-80bf-a9c04ad63339, #fff);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 350ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 280ms cubic-bezier(0.22, 1, 0.36, 1),
    color 280ms cubic-bezier(0.22, 1, 0.36, 1);
  direction: rtl;
  font-family: 'Lama Sans Medium Expanded', 'Lama Sans Regular', sans-serif;
}
html.sbrat-menu-open #sbrat-mobile-menu {
  opacity: 1;
  pointer-events: auto;
}
html.sbrat-menu-open {
  overflow: hidden;
}

.sbrat-menu-close {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: currentColor;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}
.sbrat-menu-close:hover { opacity: 0.7; }

.sbrat-menu-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}
.sbrat-menu-list a {
  color: currentColor;
  font-size: clamp(28px, 7vw, 56px);
  font-weight: 500;
  text-decoration: none;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 450ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 450ms cubic-bezier(0.22, 1, 0.36, 1),
    color 200ms;
  transition-delay: calc(var(--i, 0) * 60ms);
}
html.sbrat-menu-open .sbrat-menu-list a {
  opacity: 1;
  transform: translateY(0);
}
.sbrat-menu-list a:hover {
  color: var(--token-4213617f-db71-4b9f-b786-d4b4f6de56f3, rgb(166, 166, 166));
}

/* ============================================================
   HERO — subtitle centering only (gradient effect removed)
   ============================================================ */
.framer-1g09fev p,
[data-framer-name="Subtitle"] p {
  text-align: center !important;
}

/* ============================================================
   LOGO — replace "SBRAT" text with the 2026 SVG mark
   ============================================================ */
.framer-Rzd3N {
  width: 116px !important;
  height: 43px !important;
  display: inline-block !important;
  background: var(--token-412736a6-764a-4748-80bf-a9c04ad63339, #fff);
  -webkit-mask: url('/assets/images/logo-sbrat-2026.svg') center / contain no-repeat;
  mask: url('/assets/images/logo-sbrat-2026.svg') center / contain no-repeat;
  text-indent: -9999em;
  overflow: hidden;
  white-space: nowrap;
  font-size: 0;
  line-height: 0;
  transition: background-color 280ms cubic-bezier(0.22, 1, 0.36, 1), transform 240ms ease;
}
.framer-Rzd3N:hover { transform: scale(1.04); }
.framer-Rzd3N > * { display: none !important; }

/* ============================================================
   SERVICES SECTION — custom redesign
   ============================================================ */
.sbrat-services {
  --bg: var(--token-0df385c8-c6c4-40bb-a008-e6f27b304ae0, rgb(15,15,15));
  --fg: var(--token-412736a6-764a-4748-80bf-a9c04ad63339, rgb(255,255,255));
  --muted: var(--token-4213617f-db71-4b9f-b786-d4b4f6de56f3, rgb(166,166,166));
  --surface: var(--token-847bdcde-68af-4acc-bb45-37d83fa37c74, rgb(26,26,26));
  position: relative;
  z-index: 2;
  padding: clamp(72px, 10vw, 160px) clamp(20px, 5vw, 80px);
  color: var(--fg);
  background: var(--bg);
  direction: rtl;
  font-family: 'Lama Sans Medium Expanded', 'Lama Sans Regular', 'Inter', sans-serif;
  overflow: hidden;
}
.sbrat-services__inner {
  max-width: 1440px;
  margin: 0 auto;
}
.sbrat-services__header {
  display: grid;
  gap: 20px;
  margin-bottom: clamp(48px, 7vw, 96px);
  max-width: 900px;
}
.sbrat-services__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--muted);
  font-family: 'Lama Sans Regular', sans-serif;
  width: fit-content;
}
.sbrat-services__eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
  animation: sbrat-pulse 2.4s ease-in-out infinite;
}
@keyframes sbrat-pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.35); }
}
.sbrat-services__title {
  font-family: 'Lama Sans Bold Expanded', 'Lama Sans Medium Expanded', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 7vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0;
  display: grid;
  gap: 4px;
}
.sbrat-services__title .line { display: block; }
.sbrat-services__title .accent {
  background: linear-gradient(90deg, var(--fg) 0%, var(--muted) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.sbrat-services__lede {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.9;
  color: var(--muted);
  margin: 0;
  max-width: 680px;
}
.sbrat-services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
@media (max-width: 860px) {
  .sbrat-services__grid { grid-template-columns: 1fr; }
}

.sbrat-service-card {
  position: relative;
  padding: clamp(28px, 3.5vw, 48px);
  background: var(--surface);
  border-radius: 24px;
  border: 1px solid color-mix(in srgb, var(--fg) 8%, transparent);
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 40px);
  transition:
    transform 500ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 300ms ease,
    background 300ms ease;
  overflow: hidden;
  isolation: isolate;
}
.sbrat-service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    600px circle at var(--mx, 50%) var(--my, 0%),
    color-mix(in srgb, var(--fg) 10%, transparent),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 400ms ease;
  pointer-events: none;
  z-index: 0;
}
.sbrat-service-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--fg) 22%, transparent);
}
.sbrat-service-card:hover::before { opacity: 1; }
.sbrat-service-card > * { position: relative; z-index: 1; }

.sbrat-service-card__top {
  display: flex;
  align-items: center;
  gap: 16px;
}
.sbrat-service-card__num {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding: 5px 11px;
  border: 1px solid color-mix(in srgb, var(--fg) 15%, transparent);
  border-radius: 999px;
  flex-shrink: 0;
  transition: border-color 300ms ease, color 300ms ease;
}
.sbrat-service-card:hover .sbrat-service-card__num {
  color: var(--fg);
  border-color: color-mix(in srgb, var(--fg) 40%, transparent);
}
.sbrat-service-card__title {
  flex: 1;
  font-family: 'Lama Sans Bold Expanded', 'Lama Sans Medium Expanded', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.01em;
  text-align: right;
}
.sbrat-service-card__arrow {
  width: 26px;
  height: 26px;
  color: var(--muted);
  flex-shrink: 0;
  transform: translate(0, 0);
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1), color 300ms ease;
}
.sbrat-service-card:hover .sbrat-service-card__arrow {
  color: var(--fg);
  transform: translate(-4px, -4px);
}

.sbrat-service-card__body {
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.85;
  color: var(--muted);
  margin: 0;
  text-align: right;
}

.sbrat-service-card__subs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid color-mix(in srgb, var(--fg) 10%, transparent);
}
.sbrat-service-card__subs li {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--fg) 7%, transparent);
  transition: padding 300ms ease;
}
.sbrat-service-card__subs li:last-child { border-bottom: none; }
.sbrat-service-card__subs li:hover { padding-right: 8px; }
.sbrat-service-card__subs .sub-num {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
  min-width: 28px;
  opacity: 0.7;
}
.sbrat-service-card__subs .sub-label {
  font-size: clamp(15px, 1.1vw, 17px);
  color: var(--fg);
  font-family: 'Lama Sans Medium Expanded', 'Lama Sans Regular', sans-serif;
  text-align: right;
}

/* ============================================================
   ABOUT SECTION — custom redesign
   ============================================================ */
.sbrat-about {
  --bg: var(--token-0df385c8-c6c4-40bb-a008-e6f27b304ae0, rgb(15,15,15));
  --fg: var(--token-412736a6-764a-4748-80bf-a9c04ad63339, rgb(255,255,255));
  --muted: var(--token-4213617f-db71-4b9f-b786-d4b4f6de56f3, rgb(166,166,166));
  --surface: var(--token-847bdcde-68af-4acc-bb45-37d83fa37c74, rgb(26,26,26));
  position: relative;
  z-index: 2;
  padding: clamp(72px, 10vw, 160px) clamp(20px, 5vw, 80px);
  background: var(--bg);
  color: var(--fg);
  direction: rtl;
  font-family: 'Lama Sans Medium Expanded', 'Lama Sans Regular', sans-serif;
  overflow: hidden;
}
.sbrat-about__inner {
  max-width: 1440px;
  margin: 0 auto;
}
.sbrat-about__head {
  display: grid;
  gap: 20px;
  margin-bottom: clamp(48px, 6vw, 80px);
  max-width: 900px;
}
.sbrat-about__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--muted);
  font-family: 'Lama Sans Regular', sans-serif;
  width: fit-content;
}
.sbrat-about__eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
  animation: sbrat-pulse 2.4s ease-in-out infinite;
}
.sbrat-about__title {
  font-family: 'Lama Sans Bold Expanded', 'Lama Sans Medium Expanded', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 7vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0;
  display: grid;
  gap: 4px;
}
.sbrat-about__title .line { display: block; }
.sbrat-about__title .accent {
  background: linear-gradient(90deg, var(--fg) 0%, var(--muted) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.sbrat-about__top {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: center;
  margin-bottom: clamp(56px, 7vw, 96px);
}
@media (max-width: 720px) {
  .sbrat-about__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.sbrat-about__figure {
  position: relative;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--surface);
  max-width: 420px;
  width: 100%;
}
.sbrat-about__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 1200ms cubic-bezier(0.22, 1, 0.36, 1);
}
.sbrat-about__figure:hover img {
  transform: scale(1.04);
}
.sbrat-about__lede {
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.9;
  color: var(--fg);
  margin: 0;
  letter-spacing: -0.005em;
  text-align: right;
}

.sbrat-about__pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  padding-top: clamp(32px, 4vw, 56px);
  border-top: 1px solid color-mix(in srgb, var(--fg) 12%, transparent);
}
@media (max-width: 860px) {
  .sbrat-about__pillars { grid-template-columns: 1fr; gap: 0; }
}
.sbrat-pillar {
  position: relative;
  padding: clamp(20px, 2.2vw, 30px);
  border: 1px solid color-mix(in srgb, var(--fg) 10%, transparent);
  border-radius: 20px;
  background: color-mix(in srgb, var(--surface) 45%, transparent);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1), border-color 300ms ease, background 300ms ease;
}
.sbrat-pillar:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--fg) 22%, transparent);
  background: color-mix(in srgb, var(--surface) 80%, transparent);
}
@media (max-width: 860px) {
  .sbrat-pillar {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid color-mix(in srgb, var(--fg) 10%, transparent);
    background: transparent;
    padding: clamp(18px, 3vw, 24px) 0;
  }
  .sbrat-pillar:last-child { border-bottom: none; }
  .sbrat-pillar:hover { transform: none; background: transparent; }
}
.sbrat-pillar__head {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.sbrat-pillar__num {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--muted);
  direction: ltr;
}
.sbrat-pillar__label {
  font-family: 'Lama Sans Bold Expanded', 'Lama Sans Medium Expanded', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2vw, 28px);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.sbrat-pillar__body {
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.85;
  color: var(--muted);
  margin: 0;
  text-align: right;
}


/* ============================================================
   CONTACT PAGE — /contact
   ============================================================ */
.sbrat-contact {
  direction: rtl;
  background: transparent;
  color: var(--fg);
  padding: clamp(80px, 10vw, 140px) clamp(20px, 4vw, 40px);
  z-index: 2;
  position: relative;
  font-family: 'Lama Sans Regular', 'Lama Sans Medium Expanded', sans-serif;
  --fg: var(--token-412736a6-764a-4748-80bf-a9c04ad63339, #fff);
  --muted: var(--token-4213617f-db71-4b9f-b786-d4b4f6de56f3, rgba(255,255,255,0.7));
  --surface: transparent;
}
.sbrat-contact__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.sbrat-contact__head {
  max-width: 880px;
  margin: 0 auto clamp(48px, 6vw, 80px);
  text-align: center;
}
.sbrat-contact__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-family: 'Lama Sans Medium Expanded', 'Lama Sans Regular', sans-serif;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 20px;
}
.sbrat-contact__eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.7;
}
.sbrat-contact__title {
  font-family: 'Lama Sans Bold Expanded', 'Lama Sans Medium Expanded', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}
.sbrat-contact__title .line { display: block; }
.sbrat-contact__title .accent {
  background: linear-gradient(90deg, var(--fg) 0%, color-mix(in srgb, var(--fg) 55%, transparent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sbrat-contact__lede {
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.8;
  color: var(--muted);
  margin: 0 auto;
  max-width: 620px;
}

.sbrat-contact__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: stretch;
}
@media (max-width: 900px) {
  .sbrat-contact__grid { grid-template-columns: 1fr; }
}

.sbrat-contact__media { display: flex; }
.sbrat-contact__figure {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  margin: 0;
  border: 1px solid color-mix(in srgb, var(--fg) 8%, transparent);
}
.sbrat-contact__figure picture,
.sbrat-contact__figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sbrat-contact__figure img {
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1), filter 600ms ease;
  filter: saturate(0.85) contrast(1.02);
}
.sbrat-contact__figure:hover img {
  transform: scale(1.04);
  filter: saturate(1) contrast(1.02);
}

.sbrat-contact__channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sbrat-channel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(22px, 2.5vw, 32px);
  background: transparent;
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--fg) 14%, transparent);
  text-decoration: none;
  color: var(--fg);
  transition:
    transform 500ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 300ms ease,
    background 300ms ease;
  overflow: hidden;
  isolation: isolate;
  flex: 1;
}
.sbrat-channel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    500px circle at var(--mx, 50%) var(--my, 0%),
    color-mix(in srgb, var(--fg) 10%, transparent),
    transparent 45%
  );
  opacity: 0;
  transition: opacity 400ms ease;
  pointer-events: none;
  z-index: 0;
}
.sbrat-channel:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--fg) 24%, transparent);
}
.sbrat-channel:hover::before { opacity: 1; }
.sbrat-channel > * { position: relative; z-index: 1; }

.sbrat-channel__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sbrat-channel__label {
  font-size: 13px;
  font-family: 'Lama Sans Medium Expanded', 'Lama Sans Regular', sans-serif;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.sbrat-channel__arrow {
  width: 22px;
  height: 22px;
  color: var(--muted);
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1), color 300ms ease;
  flex-shrink: 0;
}
.sbrat-channel:hover .sbrat-channel__arrow {
  transform: translate(-4px, -4px);
  color: var(--fg);
}
.sbrat-channel__value {
  font-family: 'Lama Sans Bold Expanded', 'Lama Sans Medium Expanded', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 1.9vw, 28px);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

/* Light mode tokens */
html[data-theme="light"] .sbrat-contact {
  --fg: #0a0a0a;
  --muted: rgba(10,10,10,0.6);
}
@media (prefers-color-scheme: light) {
  html:not([data-theme="dark"]) .sbrat-contact {
    --fg: #0a0a0a;
    --muted: rgba(10,10,10,0.6);
  }
}

/* Hero section was position:fixed in Framer's SSR (parallax target for
   the removed runtime). Without the runtime it stays pinned to the viewport
   and visually overlaps later sections — force it back to normal flow. */
section.framer-jquibe { position: relative !important; }

/* ── Footer redesign ─────────────────────────────────────── */
/* Hide the original Framer footer (all three responsive variants share
   the framer-1m3glzw base class). */
footer.framer-1m3glzw { display: none !important; }

.sbrat-footer {
  direction: rtl;
  background: transparent;
  color: var(--fg, #fff);
  padding: clamp(80px, 10vw, 140px) clamp(24px, 4vw, 64px) clamp(32px, 3vw, 48px);
  font-family: 'Lama Sans Regular', 'Lama Sans Medium Expanded', sans-serif;
  --fg: var(--token-412736a6-764a-4748-80bf-a9c04ad63339, #fff);
  --muted: var(--token-4213617f-db71-4b9f-b786-d4b4f6de56f3, rgba(255,255,255,0.7));
  --hair: color-mix(in srgb, var(--fg) 10%, transparent);
  position: relative;
  z-index: 2;
}
html[data-theme="light"] .sbrat-footer,
html:not([data-theme="dark"]) .sbrat-footer {
  --fg: #0a0a0a;
  --muted: rgba(10,10,10,0.6);
}
@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) .sbrat-footer {
    --fg: #fff;
    --muted: rgba(255,255,255,0.7);
  }
}

.sbrat-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.sbrat-footer__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  padding-bottom: clamp(48px, 6vw, 80px);
  border-bottom: 1px solid var(--hair);
}
.sbrat-footer__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-family: 'Lama Sans Medium Expanded', sans-serif;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.sbrat-footer__eyebrow::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor; opacity: 0.7;
}
.sbrat-footer__title {
  font-family: 'Lama Sans Bold Expanded', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}
.sbrat-footer__title .line { display: block; }
.sbrat-footer__title .accent {
  background: linear-gradient(90deg, var(--fg) 0%, color-mix(in srgb, var(--fg) 45%, transparent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sbrat-footer__btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  border-radius: 999px;
  border: 1px solid var(--fg);
  background: transparent;
  color: var(--fg);
  text-decoration: none;
  font-family: 'Lama Sans Medium Expanded', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: background 300ms ease, color 300ms ease, transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
  margin-top: 12px;
}
.sbrat-footer__btn svg {
  width: 18px; height: 18px;
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}
.sbrat-footer__btn:hover {
  background: var(--fg);
  color: var(--token-0df385c8-c6c4-40bb-a008-e6f27b304ae0, #0f0f0f);
  transform: translateY(-2px);
}
html[data-theme="light"] .sbrat-footer__btn:hover,
html:not([data-theme="dark"]) .sbrat-footer__btn:hover { color: #fff; }
.sbrat-footer__btn:hover svg { transform: translate(-4px, -4px); }

.sbrat-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: clamp(24px, 4vw, 64px);
  padding: clamp(40px, 5vw, 64px) 0;
  border-bottom: 1px solid var(--hair);
}
@media (max-width: 720px) {
  .sbrat-footer__grid { grid-template-columns: 1fr; gap: 32px; }
}
.sbrat-footer__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sbrat-footer__col-title {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--muted);
  font-family: 'Lama Sans Medium Expanded', sans-serif;
  font-weight: 500;
  margin-bottom: 6px;
}
.sbrat-footer__col a {
  color: var(--fg);
  text-decoration: none;
  font-size: 15px;
  font-family: 'Lama Sans Regular', sans-serif;
  width: fit-content;
  transition: opacity 300ms ease, transform 300ms ease;
  opacity: 0.9;
}
.sbrat-footer__col a:hover { opacity: 1; transform: translateX(-4px); }
.sbrat-footer__col p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
  max-width: 320px;
}

.sbrat-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: clamp(24px, 3vw, 40px);
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
}
.sbrat-footer__bottom .brand {
  font-family: 'Lama Sans Bold Expanded', sans-serif;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: 0.08em;
}
