/* ════════════════════════════════════════════
   VILCHIK GROUP — MDEP-inspired luxury minimalism
   White-dominant · sans-serif · photography-driven
═══════════════════════════════════════════════ */

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

:root {
  /* MDEP-style palette: white + black + neutrals, gold as discreet brand mark only */
  --white:    #FFFFFF;
  --off:      #FBFAF7;   /* warm white */
  --bone:     #F2EFE9;   /* very subtle warm tone */
  --line:     #E6E2D9;   /* hairline dividers */
  --line-d:   #1F1F1F;   /* hairline dark */
  --ink:      #14333F;   /* deep sea-navy — sea/sky theme */
  --ink-2:    #2A2A2A;
  --ink-3:    #5C5C5C;
  --ink-4:    #9A9486;
  --gold:     #B08F3F;   /* decorative only — fails WCAG on small text */
  --gold-text: #8B6F2E;  /* WCAG-safe (4.9:1) — for small caps, eyebrows */
  --gold-lt:  #C9A85B;

  /* sea-sky (תכלת) accents */
  --azure:      #6FB8D6;
  --azure-deep: #2E7DA0;  /* WCAG-safe for text/links */
  --sky-lt:     #BFE0EE;
  --sand:       #EDE5D4;  /* warm sand — section backgrounds */
  --mist:       #EBF3F8;  /* soft sky — section backgrounds */
  --focus-ring: #0E0E0E; /* ink, not blue — keeps brand */

  /* Type */
  --sans:    'Inter', 'Heebo', system-ui, sans-serif;
  --serif:   'Cormorant Garamond', Georgia, serif;
  --he:      'Heebo', 'Inter', system-ui, sans-serif;
  --he-display: 'Frank Ruhl Libre', 'Heebo', serif;  /* elegant Hebrew serif — headings */

  --tr:   .5s cubic-bezier(.2,.7,.2,1);

  --pad-x:  clamp(24px, 5vw, 80px);
  --pad-y:  clamp(52px, 7.5vw, 108px);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--he);
  font-weight: 300;
  background: var(--off);
  color: var(--ink);
  direction: rtl;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font: inherit; cursor: pointer; background: none; border: none; }

::selection { background: var(--ink); color: var(--off); }

/* ════════════════════════════════════════════
   PAGE LOADER (curtain — first impression)
═══════════════════════════════════════════════ */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--off);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition: opacity .7s cubic-bezier(.2,.7,.2,1) .5s, visibility 0s linear 1.2s;
}
.page-loader.loaded {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.page-loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(8px);
  animation: loaderFade 1.6s cubic-bezier(.2,.7,.2,1) .1s forwards;
}

.page-loader-mark {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -.01em;
  line-height: 1;
}
.page-loader-word {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: .42em;
  color: var(--gold-text);
}
.page-loader-line {
  width: 0;
  height: 1px;
  background: var(--ink);
  animation: loaderLine 1.2s cubic-bezier(.2,.7,.2,1) .5s forwards;
}
@keyframes loaderFade {
  0%   { opacity: 0; transform: translateY(8px); }
  35%  { opacity: 1; transform: none; }
  100% { opacity: 1; transform: none; }
}
@keyframes loaderLine {
  to { width: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader { transition: opacity .2s linear, visibility 0s linear .2s; }
  .page-loader-inner,
  .page-loader-line { animation: none; opacity: 1; transform: none; }
  .page-loader-line { width: 48px; }
}


/* ════════════════════════════════════════════
   HERO — staggered cinematic entry
═══════════════════════════════════════════════ */
.hero-brand,
.hero-tagline,
.hero-essence,
.hero-sub,
.hero-cta {
  opacity: 0;
  transform: translateY(22px);
  animation: heroIn 1s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero-brand    { animation-delay: 1.05s; }
.hero-tagline  { animation-delay: 1.30s; }
.hero-essence  { animation-delay: 1.50s; }
.hero-sub      { animation-delay: 1.55s; }
.hero-cta      { animation-delay: 1.70s; }
.hero-sub {
  font-family: var(--he);
  font-size: clamp(.98rem, 1.5vw, 1.2rem);
  font-weight: 300;
  color: rgba(255,255,255,.82);
  letter-spacing: .05em;
  margin-bottom: 40px;
}

@keyframes heroIn {
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-brand, .hero-tagline, .hero-essence, .hero-cta {
    opacity: 1; transform: none; animation: none;
  }
}


/* ════════════════════════════════════════════
   ACCESSIBILITY — focus, reduced motion, skip-link
═══════════════════════════════════════════════ */
:focus { outline: none; }
:focus-visible {
  outline: 1px solid var(--focus-ring);
  outline-offset: 4px;
  border-radius: 0;
}
.hero-cta:focus-visible,
.submit-btn:focus-visible { outline-color: var(--off); outline-offset: 6px; }

.skip-link {
  position: absolute;
  top: -100px;
  right: 0;
  z-index: 1000;
  background: var(--ink);
  color: var(--off);
  padding: 12px 20px;
  font-family: var(--sans);
  font-size: 0.89rem;
  letter-spacing: .22em;
  transition: top var(--tr);
}
.skip-link:focus { top: 0; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-bg { opacity: 1 !important; transform: none !important; }
}

em, i { font-style: italic; font-family: var(--serif); font-weight: 400; }


/* ════════════════════════════════════════════
   TOPBAR
═══════════════════════════════════════════════ */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,.8);
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 400;
  letter-spacing: .12em;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px var(--pad-x);
  direction: ltr;
}
.tb-item { transition: color var(--tr); }
.tb-item:hover { color: var(--white); }
.tb-dot { color: rgba(255,255,255,.3); }
.tb-spacer { flex: 1; }
.tb-loc {
  letter-spacing: .28em;
  color: rgba(255,255,255,.55);
}


/* ════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 55px;
  z-index: 500;
  background: var(--off);
  border-bottom: 1px solid var(--line);
  transition: background var(--tr), border-color var(--tr);
}
.nav.scrolled {
  background: rgba(251,250,247,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 84px;
  padding: 0 var(--pad-x);
  gap: 24px;
}

.nav-side {
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 400;
  letter-spacing: .25em;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
}
.nav-side-active { color: var(--ink); }
.nav-side-sep { color: var(--ink-4); }

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  justify-self: center;
  transition: opacity var(--tr);
}
.nav-logo:hover { opacity: .7; }
.nl-mark {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--ink);
  line-height: 1;
}
.nl-word {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: .42em;
  color: var(--ink-3);
}

.nav-menu {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-self: end;
}
.nav-menu a {
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .16em;
  color: var(--ink-2);
  transition: color var(--tr);
  position: relative;
  padding: 14px 0;        /* increased for 44px touch target */
  white-space: nowrap;    /* never break a nav item to two lines */
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 1px;
  background: var(--ink);
  transition: width var(--tr);
}
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }
.nav-menu a.active { color: var(--ink); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  justify-self: end;
}
.nav-burger span {
  display: block;
  width: 22px; height: 1px;
  background: var(--ink);
}

.nav-drawer {
  display: none;
  position: fixed;
  top: 84px; right: 0; left: 0;
  background: var(--off);
  border-bottom: 1px solid var(--line);
  flex-direction: column;
  padding: 16px var(--pad-x) 32px;
  z-index: 499;
}
.nav-drawer a {
  font-family: var(--sans);
  font-size: 0.99rem;
  font-weight: 400;
  letter-spacing: .22em;
  color: var(--ink-2);
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer.open { display: flex; }


/* ════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: calc(100vh - 84px - 38px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--ink);
}

/* ── Hero video stack — rotating Greek property reels ── */
.hero-bg-stack {
  position: absolute;
  inset: 0;
  background: var(--ink);
  overflow: hidden;
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.4s cubic-bezier(.4,0,.2,1), transform 5s linear;
  will-change: opacity, transform;
  background: var(--ink);
}
.hero-bg-video.active {
  opacity: 1;
  transform: scale(1);
}

/* Poster fallback shown until first video frame is ready */
.hero-bg-stack::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/hero-frame.jpg');
  background-size: cover;
  background-position: center;
  opacity: 1;
  transition: opacity 1s ease;
  z-index: 0;
}
.hero-bg-stack.video-ready::before { opacity: 0; }

@media (prefers-reduced-motion: reduce) {
  .hero-bg-video { transition: opacity .3s linear; transform: none; }
  .hero-bg-video.active { transform: none; }
}

.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,14,14,.35) 0%, rgba(14,14,14,.15) 35%, rgba(14,14,14,.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--pad-x);
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ── Hero brand (large centered logotype) ── */
.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin-bottom: 64px;
  direction: ltr;
}
.hero-brand-mark {
  font-family: var(--serif);
  font-size: clamp(7rem, 16vw, 14rem);
  font-weight: 500;
  letter-spacing: -.02em;
  color: var(--white);
  line-height: .88;
}
.hero-brand-word {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.55vw, 1.4rem);
  font-weight: 500;
  letter-spacing: .42em;
  color: var(--gold-lt);
  padding-bottom: 4px;
  position: relative;
}
.hero-brand-word::before {
  content: '';
  display: block;
  width: 44px;
  height: 1px;
  background: var(--gold-lt);
  opacity: .5;
  margin: 0 auto 22px;
}

.hero-tagline {
  font-family: var(--he);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 300;
  color: rgba(255,255,255,.9);
  line-height: 1.5;
  letter-spacing: -.005em;
  margin-bottom: 14px;
  max-width: 720px;
}

/* ── Hero brand essence (4 brand pillars) ── */
.hero-essence {
  display: inline-flex;
  align-items: center;
  gap: clamp(14px, 1.6vw, 22px);
  padding: 18px clamp(20px, 2.6vw, 32px);
  margin-bottom: 56px;
  border-top: 1px solid rgba(201, 168, 91, .35);
  border-bottom: 1px solid rgba(201, 168, 91, .35);
}
.he-word {
  font-family: var(--sans);
  font-size: clamp(0.82rem, .78vw, 0.89rem);
  font-weight: 500;
  letter-spacing: .42em;
  color: var(--gold-lt);
  text-transform: uppercase;
}
.he-dot {
  color: rgba(201, 168, 91, .55);
  font-size: 0.87rem;
  line-height: 1;
}

/* Legacy aliases (kept for safety; not used in hero) */
.hero-eyebrow, .hero-h { display: none; }

.hero-cta {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .18em;
  color: var(--white);
  padding: 20px 0;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255,255,255,.5);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: gap var(--tr), border-color var(--tr), transform .4s cubic-bezier(.2,.7,.2,1);
  will-change: transform;
}
.hero-cta span { transition: transform var(--tr); display: inline-block; }
.hero-cta:hover { border-color: var(--white); }
.hero-cta:hover span { transform: translateX(-6px); }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.hs-line {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.4);
  position: relative;
  overflow: hidden;
}
.hs-line::after {
  content: '';
  position: absolute;
  top: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold-lt);
  animation: scrollLine 2.2s infinite cubic-bezier(.4,0,.2,1);
}
@keyframes scrollLine {
  0%   { top: -100%; }
  100% { top: 100%; }
}
.hs-arrow {
  font-size: 1.3rem;
  line-height: 1;
  color: rgba(255,255,255,.75);
  transition: color var(--tr), transform var(--tr);
}
.hero-scroll:hover .hs-arrow { color: #fff; transform: translateY(3px); }


/* ════════════════════════════════════════════
   SECTION HEADS (shared)
═══════════════════════════════════════════════ */
.sec-head {
  padding: var(--pad-y) var(--pad-x) clamp(48px, 7vw, 96px);
  max-width: 1280px;
  margin: 0 auto;
}

.sec-label, .intro-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 0.97rem;
  font-weight: 500;
  letter-spacing: .24em;
  color: var(--ink-2);
  margin-bottom: 36px;
  text-transform: uppercase;
}
.sl-num, .il-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--gold-text);
  letter-spacing: 0;
  text-transform: none;
}
.sl-word, .il-word {
  display: inline-block;
  position: relative;
  padding-right: 36px;
}
.sl-word::before, .il-word::before {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  width: 24px; height: 1px;
  background: var(--ink-3);
}

.sec-h {
  font-family: var(--he);
  font-size: clamp(2rem, 3.8vw, 3.8rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--ink);
}
.sec-h em { color: var(--ink-3); font-weight: 400; }

.sec-sub {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink-3);
  line-height: 1.85;
  max-width: 620px;
  margin-top: 24px;
}


/* ════════════════════════════════════════════
   INTRO / ABOUT
═══════════════════════════════════════════════ */
.intro {
  padding: var(--pad-y) var(--pad-x);
  background: var(--off);
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.intro-h {
  font-family: var(--he);
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 56px;
}
.intro-h em { color: var(--ink-3); font-weight: 400; }

.intro-text { max-width: 560px; }
.intro-text p {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink-2);
  line-height: 1.85;
  margin-bottom: 22px;
}

.link-line {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .18em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  margin-top: 12px;
  transition: gap var(--tr), opacity var(--tr);
}
.link-line span { transition: transform var(--tr); }
.link-line:hover { opacity: .7; }
.link-line:hover span { transform: translateX(-6px); }

.trust {
  max-width: 1280px;
  margin: clamp(48px, 6vw, 80px) auto 0;
  padding: clamp(38px, 4.5vw, 56px) clamp(24px, 4vw, 60px);
  background: var(--sand);
  text-align: center;
}
.trust-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.24rem, 2.6vw, 1.5rem);
  color: var(--ink);
  margin-bottom: 26px;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: .3em;
  color: var(--ink);
  direction: ltr;
}
.trust-row span:nth-child(even) { color: var(--gold-text); font-size: 0.94rem; }


/* ════════════════════════════════════════════
   WHY GREECE — framing section
═══════════════════════════════════════════════ */
.why-greece {
  background: var(--off);
  border-bottom: 1px solid var(--line);
}

.why-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--pad-x) var(--pad-y);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  border-top: 1px solid var(--line);
  padding-top: clamp(48px, 6vw, 72px);
}

.why-card { display: flex; flex-direction: column; }

.why-tag {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: .32em;
  color: var(--gold-text);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.why-h {
  font-family: var(--he);
  font-size: clamp(1.9rem, 2.8vw, 2.5rem);
  font-weight: 200;
  line-height: 1.14;
  color: var(--ink);
  letter-spacing: -.01em;
  margin-bottom: 24px;
}
.why-h em {
  color: var(--ink-3);
  font-weight: 400;
}

.why-card p {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink-2);
  line-height: 1.9;
  max-width: 480px;
}


/* ════════════════════════════════════════════
   PORTFOLIO
═══════════════════════════════════════════════ */
.portfolio {
  background: var(--off);
  border-bottom: 1px solid var(--line);
}

.port-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 56px) clamp(24px, 3vw, 40px);
}

.port-card {
  display: block;
  cursor: pointer;
}

.port-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bone);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
  transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .6s ease;
  filter: saturate(.92);
}
.port-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,14,14,0) 60%, rgba(14,14,14,.12));
  opacity: 0;
  transition: opacity var(--tr);
}
.port-card:hover .port-img {
  transform: scale(1.04);
  filter: saturate(1.05);
}
.port-card:hover .port-img::after { opacity: 1; }
.port-card .port-h { transition: color var(--tr); }
.port-card:hover .port-h { color: var(--gold-text); }

.port-meta {
  padding-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.port-cat {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: .3em;
  color: var(--gold-text);
  text-transform: uppercase;
}

.port-h {
  font-family: var(--he);
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -.01em;
}

.port-spec {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink-3);
}

.port-price {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
  margin-top: 4px;
  letter-spacing: .02em;
}

.port-foot {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(32px, 3.5vw, 48px) var(--pad-x) clamp(44px, 5vw, 72px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  margin-top: clamp(60px, 7vw, 96px);
}
.port-foot-text {
  font-family: var(--he-display);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  line-height: 1.4;
  color: var(--ink);
  max-width: 34ch;
}


/* ════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════ */
.services {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.serv-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--pad-x) var(--pad-y);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.serv {
  padding: 56px 40px 56px 0;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background var(--tr);
}
.serv:last-child { border-left: none; padding-left: 0; }
.serv:first-child { padding-right: 0; }
.serv:not(:first-child):not(:last-child) { padding: 56px 40px; }

.serv-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: .04em;
  margin-bottom: 8px;
}

.serv-h {
  font-family: var(--he);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -.01em;
  margin-bottom: 8px;
}

.serv-p {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink-3);
  line-height: 1.85;
  flex: 1;
}

.serv-cta {
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: .32em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  text-transform: uppercase;
}
.serv-cta em {
  font-style: normal;
  font-family: var(--sans);
  transition: transform var(--tr);
  display: inline-block;
}
.serv:hover .serv-cta em { transform: translateX(-6px); }


/* ════════════════════════════════════════════
   EDITORIAL QUOTE
═══════════════════════════════════════════════ */
.editor-quote {
  padding: clamp(26px, 3.4vw, 46px) var(--pad-x);
  background: var(--sand);
  border-bottom: 1px solid var(--line);
  text-align: center;
  position: relative;
}
.eq-inner {
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
}
.eq-inner::before {
  content: '';
  display: block;
  width: 1px;
  height: 36px;
  margin: 0 auto 26px;
  background: linear-gradient(to bottom, transparent, var(--gold) 50%, transparent);
}
.eq-mark {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: .5;
  margin-bottom: 20px;
  opacity: .85;
}
.eq-text {
  font-family: var(--he-display);
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 30px;
}
.eq-text em { color: var(--azure-deep); font-weight: 400; }
.eq-cite {
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: .42em;
  color: var(--gold-text);
  text-transform: uppercase;
}
.eq-link {
  display: block;
  width: fit-content;
  margin: clamp(30px, 4.5vw, 48px) auto 0;
  padding: 15px 40px;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: .14em;
  transition: background var(--tr), color var(--tr);
}
.eq-link:hover { background: var(--ink); color: var(--off); }
.eq-link span { display: inline-block; transition: transform var(--tr); }
.eq-link:hover span { transform: translateX(-6px); }

/* Alt variant — darker, ink background, used as a second editorial breath */
.editor-quote-alt {
  background: var(--ink);
}
.editor-quote-alt .eq-text { color: var(--off); }
.editor-quote-alt .eq-text em { color: var(--ink-4); }
.editor-quote-alt .eq-mark { color: var(--gold-lt); }
.editor-quote-alt .eq-cite { color: var(--gold-lt); }
.editor-quote-alt .eq-inner::before {
  background: linear-gradient(to bottom, transparent, var(--gold-lt) 50%, transparent);
}


/* ════════════════════════════════════════════
   FOUNDERS — two-card layout
═══════════════════════════════════════════════ */
.founder {
  background: var(--off);
  border-bottom: 1px solid var(--line);
}

.founder-duo {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
}

.founder-card {
  display: flex;
  flex-direction: column;
}

.founder-img {
  width: 100%;
  aspect-ratio: 2 / 3;
  background: var(--bone);
  background-size: cover;
  background-position: center;
  margin-bottom: 32px;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.founder-card:hover .founder-img { transform: translateY(-4px); }

.founder-card-body {
  display: flex;
  flex-direction: column;
}

.founder-role {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: .32em;
  color: var(--gold-text);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.founder-name {
  font-family: var(--he);
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -.01em;
  line-height: 1.15;
  margin-bottom: 24px;
}

.founder-card-body p {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink-2);
  line-height: 1.9;
  margin-bottom: 18px;
}

.founder-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.5;
  margin: 22px 0 0;
  padding-right: 18px;
  border-right: 2px solid var(--gold);
}

.founder-foot {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(60px, 7vw, 96px) var(--pad-x) var(--pad-y);
  text-align: center;
}


/* ════════════════════════════════════════════
   PROCESS — light background, bold typography
═══════════════════════════════════════════════ */
.process {
  background: var(--off);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.process .sec-head { padding-bottom: clamp(40px, 5vw, 64px); }

.proc-rail {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--pad-x) var(--pad-y);
  border-top: 2px solid var(--ink);
}

.proc-step {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(40px, 5vw, 80px);
  padding: clamp(40px, 5vw, 60px) 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: padding var(--tr), background var(--tr);
  position: relative;
}
.proc-step::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 2px;
  height: 0;
  background: var(--gold);
  transition: height .5s cubic-bezier(.2,.7,.2,1);
}
.proc-step:hover::after { height: 100%; }
.proc-step:hover { padding-right: 28px; }
.proc-step:last-child { border-bottom: none; }

.ps-n {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(3.4rem, 5.2vw, 5rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -.02em;
  display: block;
}

.proc-step h3 {
  font-family: var(--he);
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -.01em;
}

.proc-step p {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink-3);
  line-height: 1.85;
  max-width: 680px;
}


/* ════════════════════════════════════════════
   VIDEOS — מדברים נדל״ן
═══════════════════════════════════════════════ */
.videos {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.videos-grid {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 var(--pad-x) var(--pad-y);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}

.video-card {
  display: flex;
  flex-direction: column;
}

.video-wrap {
  width: 100%;
  aspect-ratio: 9 / 16;
  background: var(--ink);
  overflow: hidden;
  position: relative;
  transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow var(--tr);
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-card:hover .video-wrap {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -28px rgba(14,14,14,.3);
}

/* ── Reel covers — click-to-play facade (cream editorial · Hebrew · subtle gold) ── */
.reel-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  cursor: pointer;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  background: #EFE6D6;
  transition: background var(--tr);
}
.reel-cover:hover { background: #E8DECB; }
/* Reel cover = branded image (text + play baked in), links out (e.g. TikTok) */
.reel-cover-img {
  padding: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--ink);
}
.reel-cover-img:hover { background-color: var(--ink); }
.rc-mono {
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  font-family: var(--serif);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--gold);
}
.rc-top {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: .18em;
  color: var(--gold-text);
}
.rc-hook {
  font-family: var(--he);
  font-weight: 300;
  line-height: 1.3;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  color: #1C3047;
}
.rc-rule { width: 44px; height: 1px; background: var(--gold); }
.rc-play {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--tr), color var(--tr);
}
.video-card:hover .rc-play { background: var(--gold); color: #EFE6D6; }
.rc-play svg { width: 16px; height: 16px; margin-right: -2px; }

/* ── Podcast covers — click-to-play facade (cream editorial · 16:9 · FOLLOW THE SUN) ── */
.pod-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  cursor: pointer;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  background-color: var(--ink);
  background-size: cover;
  background-position: center;
  transition: background var(--tr);
}
.pod-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14,14,14,.15);
  transition: background var(--tr);
  pointer-events: none;
}
.pod-cover:hover::after { background: rgba(14,14,14,.34); }
.pc-mic { color: var(--gold); display: flex; line-height: 0; }
.pc-mic svg { width: 21px; height: 28px; }
.pc-eyebrow {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: .2em;
  color: var(--gold-text);
}
.pc-title {
  font-family: var(--he);
  font-weight: 300;
  line-height: 1.25;
  font-size: clamp(1.2rem, 2.1vw, 1.85rem);
  color: #1C3047;
}
.pc-rule { width: 46px; height: 1px; background: var(--gold); }
.pc-play {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.9);
  background: rgba(14,14,14,.4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--tr), color var(--tr), border-color var(--tr);
}
.podcast-card:hover .pc-play { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.pc-play svg { width: 16px; height: 16px; margin-right: -2px; }

/* ── Podcasts (מדברים נדל״ן) — landscape 16:9 ── */
.podcast-grid {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 var(--pad-x) var(--pad-y);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 2.5vw, 40px);
}
.podcast-card { display: flex; flex-direction: column; }
.podcast-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  overflow: hidden;
  position: relative;
  transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow var(--tr);
}
.podcast-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.podcast-card:hover .podcast-wrap {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -28px rgba(14,14,14,.3);
}
.podcast-meta { padding-top: 14px; display: flex; align-items: center; gap: 12px; }
.podcast-meta .pc-cat {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-text);
}
.podcast-meta .pc-dur {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-4);
}

/* ── Reels section (הצעד הראשון) — bone bg for visual separation ── */
.reels-sec {
  background: var(--bone);
  border-bottom: 1px solid var(--line);
}

@media (max-width: 920px) {
  .podcast-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .podcast-grid { grid-template-columns: 1fr; padding: 0 24px var(--pad-y); }
}


/* ════════════════════════════════════════════
   JOURNAL
═══════════════════════════════════════════════ */
.journal {
  background: var(--off);
  border-bottom: 1px solid var(--line);
}

.journal-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--pad-x) var(--pad-y);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3vw, 44px) clamp(24px, 2.5vw, 36px);
}

.jrnl {
  display: block;
  width: 100%;
  text-align: right;
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  direction: rtl;
}
.jrnl-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bone);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.jrnl:hover .jrnl-img { transform: scale(1.02); }

.jrnl-meta {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.jrnl-cat {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: .32em;
  color: var(--gold-text);
  text-transform: uppercase;
}
.jrnl h3 {
  font-family: var(--he);
  font-size: 1.02rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.35;
  letter-spacing: -.01em;
  transition: color var(--tr);
}
.jrnl-cat { font-size: 0.82rem; letter-spacing: .26em; }
.jrnl-date { font-size: 1.02rem; }
.jrnl:hover h3 { color: var(--gold); }
.jrnl-date {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.09rem;
  color: var(--ink-4);
}


/* ════════════════════════════════════════════
   INQUIRY
═══════════════════════════════════════════════ */
.inquiry {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.inq-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
}

.inq-left {
  padding: var(--pad-y) clamp(40px, 5vw, 80px) var(--pad-y) var(--pad-x);
  border-left: 1px solid var(--line);
}

.inq-h {
  font-family: var(--he);
  font-size: clamp(2.4rem, 4.5vw, 4.4rem);
  font-weight: 200;
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -.02em;
  margin: 0 0 28px 0;
}

.inq-p {
  font-size: 1.18rem;
  font-weight: 400;
  color: var(--ink-3);
  line-height: 1.9;
  margin-bottom: 56px;
}

.inq-dets {
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 40px;
}
.idet {
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: opacity var(--tr);
}
.idet:hover { opacity: .65; }
.idet-l {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: .35em;
  color: var(--ink-4);
  text-transform: uppercase;
}
.idet-v {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  direction: ltr;
  text-align: right;
}

/* Form */
.inq-form {
  padding: var(--pad-y) var(--pad-x);
  background: var(--off);
}

.fg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.fg { margin-bottom: 28px; }
.fg label {
  display: block;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: .3em;
  color: var(--ink-4);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.fg input,
.fg select,
.fg textarea {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(14,14,14,.18);
  padding: 8px 0;
  font-family: var(--he);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
  direction: rtl;
  border-radius: 0;
  outline: none;
  transition: border-color var(--tr);
  -webkit-appearance: none;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus { border-bottom-color: var(--ink); }
.fg textarea { resize: none; min-height: 80px; }

.submit-btn {
  margin-top: 14px;
  background: var(--ink);
  border: 1px solid var(--ink);
  color: var(--off);
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: .32em;
  padding: 20px 44px;
  transition: background var(--tr), color var(--tr), border-color var(--tr), transform .4s cubic-bezier(.2,.7,.2,1);
  text-transform: uppercase;
  will-change: transform;
}
.submit-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.submit-btn.sent {
  background: var(--off);
  color: var(--ink);
  border-color: var(--gold);
}
.form-note {
  margin-top: 20px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.12rem;
  color: var(--ink-4);
}


/* ════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  background: var(--ink);
  color: var(--white);
  padding: var(--pad-y) var(--pad-x) 36px;
}
.footer-top {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1.6fr;
  gap: clamp(40px, 6vw, 100px);
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 22px;
}
.fl-mark {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -.01em;
  line-height: 1;
}
.fl-word {
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: .42em;
  color: var(--gold-lt);
}
.footer-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,.6);
  max-width: 320px;
  line-height: 1.5;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: .42em;
  color: var(--gold-lt);
  margin-bottom: 24px;
}
.footer-col a { /* 50+ legibility bump */
  display: block;
  font-family: var(--he);
  font-size: .98rem;
  font-weight: 400;
  color: rgba(255,255,255,.82);
  margin-bottom: 12px;
  transition: color var(--tr);
}
.footer-col a:hover { color: var(--white); }

.footer-copy {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: .22em;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
}
.footer-credit {
  font-family: var(--serif);
  font-style: italic;
  text-transform: none;
  letter-spacing: .04em;
  font-size: 1.05rem;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
}
.footer-legal a {
  color: rgba(255,255,255,.55);
  transition: color var(--tr);
  white-space: nowrap;
}
.footer-legal a:hover { color: var(--gold-lt); }


/* ════════════════════════════════════════════
   ARTICLE OVERLAY — editorial reading modal
═══════════════════════════════════════════════ */
.article-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(14, 14, 14, 0.78);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .55s cubic-bezier(.2,.7,.2,1);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(40px, 8vh, 96px) clamp(16px, 4vw, 40px);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.article-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.article-modal {
  width: 100%;
  max-width: 760px;
  background: var(--off);
  padding: clamp(56px, 7vw, 96px) clamp(28px, 5vw, 84px) clamp(48px, 6vw, 80px);
  position: relative;
  transform: translateY(28px) scale(.985);
  opacity: 0;
  transition: opacity .65s cubic-bezier(.2,.7,.2,1) .05s,
              transform .7s cubic-bezier(.2,.7,.2,1) .05s;
  margin-bottom: 40px;
  box-shadow: 0 60px 120px -40px rgba(0,0,0,.45);
}
.article-overlay.open .article-modal {
  opacity: 1;
  transform: none;
}

.article-close {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-3);
  transition: color var(--tr), transform .5s cubic-bezier(.2,.7,.2,1);
  border-radius: 50%;
}
.article-close:hover {
  color: var(--ink);
  transform: rotate(90deg);
}
.article-close:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 4px;
}
.article-close svg { width: 22px; height: 22px; }

.article-content { direction: rtl; }

.article-head { margin-bottom: clamp(28px, 3.5vw, 44px); }

.article-cat {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: .32em;
  color: var(--gold-text);
  text-transform: uppercase;
  margin-bottom: 26px;
}

.article-title {
  font-family: var(--he);
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.22;
  letter-spacing: -.01em;
  margin-bottom: 22px;
}

.article-date {
  font-family: var(--serif);
  font-style: italic;
  font-size: .95rem;
  color: var(--ink-4);
}

.article-divider {
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin-bottom: clamp(28px, 3.5vw, 44px);
  opacity: .8;
}

.article-body p {
  font-family: var(--he);
  font-size: clamp(1.15rem, 1.3vw, 1.25rem);
  font-weight: 400;
  color: var(--ink-2);
  line-height: 1.95;
  margin-bottom: 22px;
}
.article-body p:last-child { margin-bottom: 0; }

/* Prevent body scroll when overlay is open */
body.no-scroll { overflow: hidden; }


/* ════════════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 400;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--off);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  box-shadow: 0 14px 40px -16px rgba(14,14,14,.5);
  transition: all var(--tr);
}
.wa-float svg { width: 26px; height: 26px; }
.wa-float:hover {
  background: var(--off);
  color: var(--ink);
  transform: scale(1.05);
}


/* ════════════════════════════════════════════
   REVEAL ANIMATION
═══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s var(--tr), transform 1s var(--tr);
}
.reveal.d1 { transition-delay: .12s; }
.reveal.d2 { transition-delay: .24s; }
.reveal.d3 { transition-delay: .36s; }
.reveal.on { opacity: 1; transform: none; }


/* ════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1180px) {
  .nav-menu { gap: 16px; }
  .nav-menu a { font-size: .82rem; letter-spacing: .14em; }
}

@media (max-width: 1024px) {
  .topbar-inner { font-size: 0.82rem; gap: 10px; flex-wrap: wrap; }
  .tb-loc { display: none; }

  .nav-inner { grid-template-columns: 1fr auto 1fr; }
  .nav-side, .nav-menu { display: none; }
  .nav-burger { display: flex; }

  .intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .port-grid { grid-template-columns: 1fr 1fr; }

  .serv-grid { grid-template-columns: 1fr; border-top: none; }
  .serv {
    padding: 44px 0 !important;
    border-left: none;
    border-top: 1px solid var(--line);
  }
  .serv:first-child { padding-top: 44px !important; }

  .founder-duo { grid-template-columns: 1fr; gap: 64px; }

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

  .videos-grid { grid-template-columns: repeat(2, 1fr); }

  .proc-step { grid-template-columns: 110px 1fr; gap: 28px; }

  .inq-grid { grid-template-columns: 1fr; }
  .inq-left { border-left: none; border-bottom: 1px solid var(--line); padding: var(--pad-y) var(--pad-x); }

  .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .topbar-inner { padding: 10px 24px; justify-content: center; }
  .topbar-inner .tb-spacer { display: none; }

  .nav-inner { height: 70px; padding: 0 24px; }
  .nl-mark { font-size: 1.3rem; }
  .nl-word { font-size: 0.82rem; letter-spacing: .36em; }
  .nav-drawer { top: 70px; padding: 12px 24px 24px; }

  .hero-brand-mark { font-size: 6.5rem; }
  .hero-brand-word { font-size: 1.05rem; letter-spacing: .32em; }
  .hero-brand-word::before { width: 32px; margin-bottom: 16px; }
  .hero-brand { gap: 16px; margin-bottom: 40px; }
  .hero-tagline { font-size: 1.25rem; margin-bottom: 26px; }
  .hero-essence { gap: 10px; padding: 12px 16px; margin-bottom: 36px; }
  .he-word { font-size: 0.82rem; letter-spacing: .3em; }
  .he-dot { font-size: 0.82rem; }
  .hero-scroll { display: none; }

  .sec-head { padding: var(--pad-y) 24px 48px; }
  .intro { padding: var(--pad-y) 24px; }
  .intro-label { margin-bottom: 24px; }

  .port-grid { grid-template-columns: 1fr; padding: 0 24px; gap: 40px; }
  .port-foot { padding: 56px 24px var(--pad-y); flex-direction: column; align-items: flex-start; gap: 16px; }

  .serv-grid { padding: 0 24px var(--pad-y); }
  .serv { padding: 36px 0 !important; }

  .editor-quote { padding: 100px 24px; }

  .founder-duo { padding: 0 24px; }
  .founder-foot { padding: 56px 24px var(--pad-y); }
  .founder-quote { font-size: 1.05rem; }

  .proc-rail { padding: 0 24px var(--pad-y); }
  .proc-step { grid-template-columns: 1fr; gap: 16px; padding: 36px 0; }
  .proc-step:hover { padding-right: 0; }
  .ps-n { font-size: 2.8rem; }

  .journal-grid { grid-template-columns: 1fr 1fr; padding: 0 24px var(--pad-y); gap: 24px 16px; }

  .videos-grid { grid-template-columns: 1fr; padding: 0 24px var(--pad-y); gap: 24px; }

  .inq-left, .inq-form { padding: var(--pad-y) 24px; }
  .fg-row { grid-template-columns: 1fr; gap: 0; }

  .footer { padding: var(--pad-y) 24px 28px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-copy { flex-direction: column; gap: 10px; padding-top: 24px; }

  .wa-float { width: 50px; height: 50px; bottom: 20px; left: 20px; }
  .wa-float svg { width: 24px; height: 24px; }
}

/* ════════════════════════════════════════════════
   ENGLISH (LTR) MODE — overrides for hard-coded RTL
   Applied when the language toggle adds .lang-en on <html>
   ════════════════════════════════════════════════ */
html.lang-en body { direction: ltr; }
html.lang-en .jrnl { text-align: left; direction: ltr; }
html.lang-en .fg input,
html.lang-en .fg select,
html.lang-en .fg textarea { direction: ltr; }
html.lang-en .idet-v { text-align: left; }
html.lang-en .article-content,
html.lang-en .article-body,
html.lang-en .article-head { direction: ltr; text-align: left; }
/* Flip directional arrows so they point forward (right) in LTR English */
html.lang-en .hero-cta span,
html.lang-en .link-line span,
html.lang-en .serv-cta em { display: inline-block; transform: scaleX(-1); }

/* ════════════════════════════════════════════
   SERVICE DETAIL MODAL — content styling
═══════════════════════════════════════════════ */
.srv-lead {
  font-size: 1.2rem;
  line-height: 1.7;
  font-weight: 400;
  color: var(--ink-2);
  margin-bottom: 1.4em;
}
.article-body .srv-modal-h {
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin: 1.9em 0 .9em;
}
.srv-list, .srv-steps { list-style: none; padding: 0; margin: 0; }
.srv-list li, .srv-steps li {
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--ink-2);
  padding: .7em 0;
  border-bottom: 1px solid var(--line);
}
.srv-list li:last-child, .srv-steps li:last-child { border-bottom: 0; }
.srv-list li strong, .srv-steps li strong { color: var(--ink); font-weight: 600; }
.srv-steps { counter-reset: srvstep; }
.srv-steps li { position: relative; padding-inline-start: 2.6em; }
.srv-steps li::before {
  counter-increment: srvstep;
  content: counter(srvstep, decimal-leading-zero);
  position: absolute;
  inset-inline-start: 0;
  top: .7em;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold-text);
}
.srv-modal-cta {
  margin-top: 2.2em;
  background: var(--ink);
  border: 1px solid var(--ink);
  color: var(--off);
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .18em;
  padding: 18px 42px;
  text-transform: uppercase;
  transition: background var(--tr), color var(--tr), border-color var(--tr);
}
.srv-modal-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

/* ════════════════════════════════════════════
   SERVICES — dominant & premium (LIGHT)
   Big editorial numerals + tighter layout, on the site's warm white.
   Scoped to .services only.
═══════════════════════════════════════════════ */
.services { background: var(--off); }
/* tighter header so the whole section reads in one view */
.services .sec-head { padding-top: clamp(48px, 5.5vw, 80px); padding-bottom: clamp(24px, 3vw, 40px); }
.services .serv-grid { padding-bottom: clamp(48px, 6vw, 90px); }
.services .serv {
  padding: clamp(34px, 3.6vw, 50px) clamp(26px, 3vw, 40px) clamp(34px, 3.6vw, 50px) 0;
  gap: 12px;
}
.services .serv:hover { background: var(--bone); }

/* big editorial numerals — the dominant anchor (readable dark gold on light) */
.services .serv-num {
  font-size: clamp(3.2rem, 5.5vw, 5rem);
  line-height: .9;
  color: var(--gold-text);
  margin-bottom: 6px;
}
.services .serv-h {
  font-size: clamp(1.55rem, 2.3vw, 2.05rem);
  font-weight: 300;
}

/* ── Founders — credentials list ── */
.founder-creds { list-style: none; padding: 0; margin: 6px 0 2px; }
.founder-creds li {
  position: relative;
  padding-inline-start: 20px;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 9px 0;
}
.founder-creds li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: .58em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-text);
}

/* ── Podcast — episode name + platform choice (YouTube / Spotify) ── */
.pod-info { padding: 16px 6px 0; text-align: center; }
.pod-name {
  font-family: var(--he);
  font-weight: 400;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 14px;
}
.pod-links { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.pod-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .06em;
  padding: 9px 18px;
  border: 1px solid var(--line);
  color: var(--ink);
  transition: background var(--tr), color var(--tr), border-color var(--tr);
}
.pod-link svg { flex-shrink: 0; }
.pod-link:hover { background: #FF0000; border-color: #FF0000; color: #fff; }
.pod-link-sp:hover { background: #1DB954; border-color: #1DB954; color: #fff; }

/* ── Contact form — consent checkbox ── */
.fg-consent { margin: 6px 0 26px; }
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-family: var(--he);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: normal;
  text-transform: none;
  color: var(--ink-3);
}
.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--azure);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════
   PALETTE — תכלת · ים · שמיים  (azure accents)
═══════════════════════════════════════════════ */
/* azure emphasis inside big headings */
.sec-h em, .intro-h em, .why-h em, .serv-h em { color: var(--azure-deep); }
/* primary buttons → sea-sky azure */
.submit-btn { background: var(--azure); border-color: var(--azure); color: var(--ink); }
.submit-btn:hover { background: var(--azure-deep); border-color: var(--azure-deep); color: #fff; }
.srv-modal-cta { background: var(--azure); border-color: var(--azure); color: var(--ink); }
.srv-modal-cta:hover { background: var(--azure-deep); border-color: var(--azure-deep); color: #fff; }
/* secondary text-links → azure */
.link-line { color: var(--azure-deep); border-bottom-color: var(--azure-deep); }

/* ════════════════════════════════════════════
   HEADINGS — elegant Hebrew serif (Frank Ruhl Libre)
   Body text stays Heebo for readability (50+).
═══════════════════════════════════════════════ */
.hero-tagline,
.intro-h,
.sec-h,
.why-h,
.serv-h,
.port-h,
.founder-name,
.inq-h,
.eq-text,
.pod-name,
.article-title { font-family: var(--he-display); }

/* Process (06) — sand band on the heading only, separating it from the steps */
.process .sec-head {
  background: var(--sand);
  padding-top: clamp(40px, 5vw, 64px);
  padding-bottom: clamp(30px, 4vw, 46px);
}

/* ════════════════════════════════════════════
   WEBINAR ANNOUNCEMENT BAR
═══════════════════════════════════════════════ */
.webinar-bar{
  position: sticky;
  top: 0;
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sand);
  color: var(--ink);
  padding: 10px 54px;
  text-align: center;
  border-bottom: 1px solid rgba(176,143,63,.28);
}
.webinar-bar.is-hidden{ display: none; }
.wb-link{
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  text-decoration: none;
  color: inherit;
}
.wb-tag{
  font-family: var(--he);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--off);
  background: var(--ink);
  padding: 4px 13px;
  border-radius: 2px;
  white-space: nowrap;
}
.wb-text{
  font-family: var(--he);
  font-size: .95rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: .01em;
}
.wb-cta{
  font-family: var(--he);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--azure-deep);
  white-space: nowrap;
  border: 1px solid var(--azure-deep);
  border-radius: 2px;
  padding: 5px 17px;
  transition: background .25s, color .25s;
}
.wb-link:hover .wb-cta{ background: var(--azure-deep); color: #fff; }
.wb-arrow{ display: inline-block; transition: transform .25s; }
.wb-link:hover .wb-arrow{ transform: translateX(-4px); }
.wb-close{
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--ink);
  opacity: .36;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  transition: opacity .2s;
}
.wb-close:hover{ opacity: .85; }
@media (max-width: 640px){
  .webinar-bar{ padding: 8px 16px; }
  .wb-link{ gap: 9px; }
  .wb-sub{ display: none; }
  .wb-text{ font-size: .82rem; }
  .wb-tag{ font-size: .58rem; padding: 3px 9px; letter-spacing: .06em; }
  .wb-cta{ font-size: .78rem; padding: 4px 12px; }
}

/* ════════════════════════════════════════════
   PORTFOLIO FOOTER → centered fit-check CTA
═══════════════════════════════════════════════ */
.port-foot {
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 28px;
}
.port-foot-text { max-width: 42ch; margin: 0 auto; }
.port-foot-btn {
  display: inline-block;
  background: var(--azure);
  color: var(--ink);
  border: 1px solid var(--azure);
  font-family: var(--he);
  font-size: .96rem;
  font-weight: 500;
  letter-spacing: .03em;
  padding: 16px 44px;
  border-radius: 2px;
  transition: background .3s, color .3s, transform .3s cubic-bezier(.2,.7,.2,1);
}
.port-foot-btn:hover {
  background: var(--azure-deep);
  border-color: var(--azure-deep);
  color: #fff;
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════
   GOLDEN VISA — benefits grid (quiet-luxury)
═══════════════════════════════════════════════ */
.goldenvisa {
  background: var(--off);
  border-bottom: 1px solid var(--line);
}
.gv-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--pad-x) clamp(52px, 7vw, 96px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.6vw, 24px);
}
.gv-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: clamp(30px, 3vw, 44px) clamp(22px, 2.4vw, 34px);
  text-align: center;
  transition: transform .45s cubic-bezier(.2,.7,.2,1), border-color .45s, box-shadow .45s;
}
.gv-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-lt);
  box-shadow: 0 18px 42px rgba(20,51,63,.07);
}
.gv-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 1px solid rgba(176,143,63,.4);
  color: var(--gold-text);
  margin-bottom: 24px;
  transition: border-color .45s, color .45s, background .45s;
}
.gv-card:hover .gv-icon {
  border-color: var(--gold);
  background: rgba(176,143,63,.05);
}
.gv-icon svg { width: 29px; height: 29px; }
.gv-h {
  font-family: var(--he-display);
  font-size: clamp(1.2rem, 1.8vw, 1.44rem);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 13px;
  letter-spacing: -.01em;
}
.gv-card p {
  font-family: var(--he);
  font-size: clamp(.95rem, 1.15vw, 1.04rem);
  font-weight: 300;
  line-height: 1.72;
  color: var(--ink-3);
  max-width: 30ch;
  margin: 0 auto;
}
@media (max-width: 920px) {
  .gv-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .gv-grid { grid-template-columns: 1fr; max-width: 420px; }
}

/* ── Golden Visa: clickable cards + detail modal ── */
.gv-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.gv-card:focus-visible { outline: 2px solid var(--azure-deep); outline-offset: 3px; }
.gv-teaser {
  font-family: var(--he);
  font-size: clamp(.95rem, 1.15vw, 1.02rem);
  font-weight: 300;
  line-height: 1.66;
  color: var(--ink-3);
  max-width: 28ch;
  margin: 0 0 20px;
}
.gv-more {
  margin-top: auto;
  font-family: var(--he);
  font-size: .87rem;
  font-weight: 600;
  color: var(--azure-deep);
  letter-spacing: .01em;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.gv-arr { display: inline-block; transition: transform .3s; }
.gv-card:hover .gv-more .gv-arr { transform: translateX(-5px); }

.gv-modal { position: fixed; inset: 0; z-index: 200; display: none; }
.gv-modal.open { display: block; }
.gv-backdrop { position: absolute; inset: 0; background: rgba(20,51,63,.55); backdrop-filter: blur(3px); opacity: 0; transition: opacity .35s; }
.gv-modal.open .gv-backdrop { opacity: 1; }
.gv-panel {
  position: absolute; inset-inline: 0; bottom: 0; margin: 0 auto;
  width: min(620px, 100%); background: var(--off);
  border-top-left-radius: 6px; border-top-right-radius: 6px;
  padding: clamp(30px,4vw,52px) clamp(24px,4vw,52px) clamp(34px,4vw,54px);
  transform: translateY(30px); opacity: 0;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), opacity .4s;
  max-height: 92vh; overflow-y: auto; text-align: right;
}
@media (min-width: 680px) {
  .gv-panel { bottom: auto; top: 50%; transform: translateY(-46%); border-radius: 6px; }
  .gv-modal.open .gv-panel { transform: translateY(-50%); }
}
.gv-modal.open .gv-panel { opacity: 1; transform: translateY(0); }
@media (min-width: 680px) { .gv-modal.open .gv-panel { transform: translateY(-50%); } }
.gv-close {
  position: absolute; inset-inline-start: 18px; top: 15px;
  background: none; border: none; font-size: 1.7rem; line-height: 1;
  color: var(--ink-4); cursor: pointer; padding: 6px 10px;
}
.gv-close:hover { color: var(--ink); }
.gv-m-icon {
  width: 60px; height: 60px; border-radius: 50%;
  border: 1px solid rgba(176,143,63,.45); color: var(--gold-text);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.gv-m-icon svg { width: 27px; height: 27px; }
.gv-m-title {
  font-family: var(--he-display); font-weight: 500;
  font-size: clamp(1.5rem,3vw,2rem); color: var(--ink); margin: 0 0 12px; letter-spacing: -.01em;
}
.gv-m-intro {
  font-family: var(--he); font-weight: 300; font-size: 1.06rem;
  line-height: 1.72; color: var(--ink-3); margin: 0 0 26px;
}
.gv-steps { list-style: none; margin: 0 0 30px; padding: 0; }
.gv-steps li {
  position: relative; padding: 0 44px 0 0; margin-bottom: 16px;
  font-family: var(--he); font-size: 1.02rem; line-height: 1.6; color: var(--ink);
}
.gv-steps li .num {
  position: absolute; inset-inline-start: 0; top: -2px;
  width: 30px; height: 30px; border-radius: 50%; background: var(--sand);
  color: var(--gold-text); font-family: var(--he-display); font-weight: 700; font-size: .92rem;
  display: flex; align-items: center; justify-content: center;
}
.gv-m-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--azure); color: var(--ink);
  font-family: var(--he); font-weight: 500; font-size: .98rem; letter-spacing: .02em;
  padding: 15px 40px; border-radius: 2px; text-decoration: none;
  transition: background .3s, color .3s, transform .3s;
}
.gv-m-cta:hover { background: var(--azure-deep); color: #fff; transform: translateY(-2px); }

/* ════════════════════════════════════════════
   OUR EDGE — "הצד שלכם" (independence / objectivity)
═══════════════════════════════════════════════ */
.edge { background: var(--off); border-bottom: 1px solid var(--line); }
.edge-eyebrow {
  display: inline-block;
  font-family: var(--sans); font-size: .74rem; font-weight: 600;
  letter-spacing: .34em; color: var(--gold-text); text-transform: uppercase;
  margin-bottom: 22px;
}
.edge-grid {
  max-width: 1200px; margin: 0 auto;
  padding: 0 var(--pad-x) clamp(52px, 7vw, 96px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(30px, 4vw, 60px);
}
.edge-col { text-align: center; }
.edge-rule { display: block; width: 42px; height: 2px; background: var(--gold); opacity: .85; margin: 0 auto 22px; }
.edge-h {
  font-family: var(--he-display); font-weight: 500;
  font-size: clamp(1.3rem, 2vw, 1.6rem); color: var(--ink);
  margin: 0 0 14px; letter-spacing: -.01em;
}
.edge-col p {
  font-family: var(--he); font-weight: 300;
  font-size: clamp(1rem, 1.2vw, 1.08rem); line-height: 1.75;
  color: var(--ink-3); max-width: 34ch; margin: 0 auto;
}
@media (max-width: 820px) {
  .edge-grid { grid-template-columns: 1fr; gap: 44px; max-width: 460px; }
}

/* nav sticks below the sticky webinar bar (bar height ~55px desktop / ~47px mobile) */
@media (max-width: 640px) {
  .nav { top: 47px; }
}

/* ── Footer social icons ── */
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.68);
  transition: color .3s, border-color .3s, background .3s, transform .3s cubic-bezier(.2,.7,.2,1);
}
.footer-social a:hover {
  color: var(--ink);
  background: var(--azure);
  border-color: var(--azure);
  transform: translateY(-3px);
}
.footer-social svg { width: 19px; height: 19px; }
