/* ── AMATICA SC FONT ── */
@font-face {
  font-family: 'AmaticaSC';
  src: url('fonts/AmaticaSC-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'AmaticaSC';
  src: url('fonts/AmaticaSC-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   style.css — משא"ן 360
   ============================================================ */
:root {
  /* Warm cream / off-white palette */
  --cream:    #FDFAF5;
  --cream-2:  #F5EFE4;
  --cream-3:  #EAE0D2;
  --sand:     #D4BFA0;
  --warm:     #B89A74;
  --warm-d:   #7A5C38;
  --warm-xd:  #4A3420;
  --gold:     #C49A3C;
  --gold-l:   #FBF2E0;
  --white:    #FFFFFF;
  --text:     #1A1208;
  --text-m:   #5C4A30;
  --text-s:   #9A8870;

  --col-red:    #B84040; --col-red-l:    #FBEAEA;
  --col-purple: #7C5CBF; --col-purple-l: #F3EEFF;
  --col-teal:   #2E7D6A; --col-teal-l:   #E7F6F2;
  --col-gold:   #A07020; --col-gold-l:   #FDF5E2;
  --col-blue:   #2B5F8A; --col-blue-l:   #EAF0F8;
  --col-green:  #3A7D5A; --col-green-l:  #EAF4EE;

  --sh1: 0 2px 16px rgba(74,52,32,.08);
  --sh2: 0 8px 40px rgba(74,52,32,.13);
  --sh3: 0 24px 72px rgba(74,52,32,.19);
  --r: 16px; --rl: 24px;
  --ease: cubic-bezier(.4,0,.2,1);
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0 }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100% }
body { font-family:'Rubik',sans-serif; background:var(--cream); color:var(--text); direction:rtl; overflow-x:hidden; line-height:1.6 }
a { text-decoration:none; color:inherit }
ul { list-style:none }
img { max-width:100%; display:block }
button { font-family:inherit; cursor:pointer; border:none; background:none }
::-webkit-scrollbar { width:5px }
::-webkit-scrollbar-track { background:var(--cream-2) }
::-webkit-scrollbar-thumb { background:var(--sand); border-radius:3px }

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  position:fixed; top:0; right:0; left:0; z-index:900;
  display:flex; align-items:center; justify-content:space-between;
  padding:1.1rem 2.5rem;
  transition:background .35s var(--ease), padding .3s, box-shadow .35s;
}
.navbar.scrolled {
  background:rgba(253,250,245,.97);
  backdrop-filter:blur(22px);
  box-shadow:var(--sh1);
  padding:.72rem 2.5rem;
}
.nav-logo { display:flex; align-items:center; gap:.7rem }
.logo-img {
  width:40px; height:40px; object-fit:contain; border-radius:50%;
  background:rgba(255,255,255,.2); padding:3px;
  box-shadow:0 2px 10px rgba(0,0,0,.12);
  transition:background .3s;
}
.navbar.scrolled .logo-img { background:var(--white); box-shadow:var(--sh1) }
.nav-brand {
  font-family:'AmaticaSC','Rubik',sans-serif;
  font-weight:700; font-size:1.35rem;
  color:var(--white); transition:color .3s;
  letter-spacing:.04em;
}
.navbar.scrolled .nav-brand { color:var(--warm-xd) }
.nav-links { display:flex; gap:2rem; align-items:center }
.nav-links a {
  font-size:.88rem; font-weight:500; color:rgba(255,255,255,.82);
  position:relative; transition:color .25s;
}
.navbar.scrolled .nav-links a { color:var(--text-m) }
.nav-links a::after {
  content:''; position:absolute; bottom:-3px; right:0;
  width:0; height:2px; background:var(--gold); border-radius:2px; transition:width .3s;
}
.nav-links a:hover::after { width:100% }
.nav-links a:hover { color:var(--white) }
.navbar.scrolled .nav-links a:hover { color:var(--warm-xd) }

.hamburger { display:none; flex-direction:column; gap:5px; padding:4px }
.hamburger span { display:block; width:22px; height:2px; border-radius:2px; background:var(--white); transition:all .3s }
.navbar.scrolled .hamburger span { background:var(--warm-xd) }

/* ══════════════════════════════════════════
   HERO — split layout: logo left, text right
══════════════════════════════════════════ */
.hero {
  min-height:100vh;
  display:flex; align-items:stretch;
  position:relative; overflow:hidden;
  background:var(--cream);
}

/* Left visual panel */
.hero-visual {
  position:relative;
  flex:0 0 48%;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.hero-visual-bg {
  position:absolute; inset:0;
  background:linear-gradient(160deg, #3A2408 0%, #6B4020 40%, #9A6832 70%, #C4A060 100%);
}
.hero-visual-grain {
  position:absolute; inset:0; z-index:1; pointer-events:none; opacity:.4;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size:160px;
}
/* Decorative circles */
.hero-visual-rings {
  position:absolute; inset:0; z-index:1; pointer-events:none;
}
.hero-visual-rings::before,
.hero-visual-rings::after {
  content:''; position:absolute; border-radius:50%;
  border:1px solid rgba(255,255,255,.08);
}
.hero-visual-rings::before {
  width:500px; height:500px;
  top:50%; left:50%; transform:translate(-50%,-50%);
}
.hero-visual-rings::after {
  width:340px; height:340px;
  top:50%; left:50%; transform:translate(-50%,-50%);
}

/* Logo embedded in the visual panel */
.hero-logo-embed {
  position:relative; z-index:2;
  display:flex; flex-direction:column; align-items:center; gap:1.5rem;
}
.hero-logo {
  position:relative; z-index:2;
  width:200px; height:200px; object-fit:contain;
  border-radius:50%;
  background:rgba(255,255,255,.92); padding:10px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.15),
    0 0 0 20px rgba(255,255,255,.04),
    0 0 0 40px rgba(255,255,255,.025),
    0 24px 60px rgba(0,0,0,.3);
  animation:logoPop .9s .15s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes logoPop { from{opacity:0;transform:scale(.5)} to{opacity:1;transform:scale(1)} }

.hero-logo-label {
  font-family:'AmaticaSC','Rubik',sans-serif;
  font-weight:700; font-size:1.1rem; letter-spacing:.25em;
  color:rgba(255,255,255,.6); text-transform:uppercase;
  animation:fadeUp .8s .5s var(--ease) both;
}

/* Diagonal clip connecting the two panels */
.hero-visual::after {
  content:''; position:absolute;
  top:0; right:0; bottom:0;
  width:340px; z-index:3;
  background:linear-gradient(to right,
    transparent 0%,
    rgba(160,112,48,.04) 15%,
    rgba(186,148,88,.12) 30%,
    rgba(210,178,130,.28) 45%,
    rgba(232,210,170,.52) 60%,
    rgba(245,234,210,.76) 75%,
    rgba(251,245,232,.93) 88%,
    rgb(253,250,245) 100%
  );
  pointer-events:none;
}

/* Right text panel */
.hero-text {
  flex:1;
  display:flex; flex-direction:column; justify-content:center; align-items:center;
  text-align:center;
  padding:7rem 3rem 4rem;
  position:relative; z-index:2;
  animation:fadeUp .9s .1s var(--ease) both;
}
@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }

.hero-badge {
  display:inline-flex; align-items:center; gap:.45rem; align-self:center;
  background:var(--gold-l); border:1px solid rgba(196,154,60,.3);
  color:var(--gold); font-size:.73rem; font-weight:700;
  letter-spacing:.18em; padding:.35rem 1rem; border-radius:100px;
  margin-bottom:1.5rem; text-transform:uppercase;
}
.hero-badge svg { width:13px; height:13px }

.hero-title {
  margin-bottom:1rem; line-height:1.05;
}
.title-line {
  display:block;
  font-family:'AmaticaSC','Rubik',sans-serif;
  font-weight:400; font-size:clamp(1.8rem,3.5vw,2.8rem);
  color:var(--text-m); letter-spacing:.02em;
}
.title-accent {
  display:block;
  font-family:'AmaticaSC','Rubik',sans-serif;
  font-weight:700; font-size:clamp(5rem,9vw,8.5rem);
  color:var(--warm-xd); line-height:.88;
  letter-spacing:-.02em;
}

.hero-subtitle {
  color:var(--text-s); font-size:clamp(.9rem,1.6vw,1rem);
  font-weight:400; margin-bottom:2rem;
  max-width:440px; line-height:1.7; text-align:center;
}

/* Pills */
.hero-pills { display:flex; flex-wrap:wrap; gap:.5rem; margin-bottom:2.25rem; justify-content:center }
.hero-pill {
  display:inline-flex; align-items:center; gap:.4rem;
  background:var(--white); border:1px solid var(--cream-3);
  color:var(--text-m); font-size:.76rem; font-weight:500;
  padding:.36rem .9rem; border-radius:100px;
  box-shadow:var(--sh1);
  transition:border-color .25s, box-shadow .25s;
}
.hero-pill:hover { border-color:var(--sand); box-shadow:var(--sh2) }
.hero-pill svg { width:14px; height:14px; color:var(--gold); flex-shrink:0 }

.hero-cta { display:flex; gap:.85rem; flex-wrap:wrap; justify-content:center }
.btn {
  display:inline-flex; align-items:center; gap:.5rem;
  padding:.85rem 1.8rem; border-radius:100px;
  font-size:.9rem; font-weight:700;
  transition:transform .25s var(--ease), box-shadow .25s, filter .25s;
}
.btn svg { width:17px; height:17px; flex-shrink:0 }
.btn-primary {
  background:var(--warm-xd); color:var(--white);
  box-shadow:0 4px 20px rgba(74,52,32,.22);
}
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 10px 28px rgba(74,52,32,.28) }
.btn-outline {
  background:var(--white); color:var(--warm-d);
  border:1.5px solid var(--cream-3); box-shadow:var(--sh1);
}
.btn-outline:hover { border-color:var(--sand); transform:translateY(-2px); box-shadow:var(--sh2) }

/* Minimal pulse dot scroll indicator */
.hero-scroll-dot {
  position:absolute; bottom:1.4rem; left:50%; transform:translateX(-50%);
  z-index:4; display:flex; flex-direction:column; align-items:center; gap:.4rem;
  pointer-events:none;
}
.pulse-ring {
  width:36px; height:36px; border-radius:50%;
  border:1.5px solid rgba(196,154,60,.4);
  display:flex; align-items:center; justify-content:center;
  animation:pulseRing 2.2s ease-in-out infinite;
}
.pulse-ring::after {
  content:''; width:8px; height:8px; border-radius:50%;
  background:var(--gold); opacity:.7;
}
@keyframes pulseRing {
  0%,100% { transform:scale(1); opacity:.6 }
  50%      { transform:scale(1.18); opacity:1 }
}
.scroll-label {
  font-size:.63rem; font-weight:500; letter-spacing:.2em;
  color:var(--text-s); text-transform:uppercase; text-decoration:none; border:none;
}

/* ══════════════════════════════════════════
   CONTAINER + SECTION HEADERS
══════════════════════════════════════════ */
.container { max-width:1100px; margin:0 auto; padding:0 2rem }

.section-header { text-align:center; margin-bottom:3.5rem; border:none }
.section-tag {
  display:inline-block; background:var(--gold-l); color:var(--gold);
  font-size:.72rem; font-weight:700; letter-spacing:.18em;
  padding:.32rem 1rem; border-radius:100px; margin-bottom:.85rem;
  text-transform:uppercase; border:1px solid rgba(196,154,60,.22);
}
.section-title {
  font-family:'AmaticaSC','Rubik',sans-serif;
  font-size:clamp(2.2rem,5vw,3.2rem); font-weight:700;
  color:var(--warm-xd); margin-bottom:.6rem; line-height:1.15;
  letter-spacing:.03em;
}
.section-subtitle { color:var(--text-s); font-size:.92rem; max-width:460px; margin:0 auto }

/* ══════════════════════════════════════════
   PAKALS SECTION
══════════════════════════════════════════ */
.pakals-section { padding:6.5rem 0; background:var(--cream); position:relative }
/* top divider line removed */

/* SNAKE TRACK */
.snake-track { position:relative; padding:1rem 0 2rem }
.snake-svg {
  position:absolute; top:0; left:0; width:100%; height:100%;
  pointer-events:none; z-index:0; overflow:visible;
}

/* FlyAll-style dark cards */
.snake-card {
  border-radius:var(--rl); position:relative; overflow:hidden;
  box-shadow:var(--sh2);
  transition:transform .38s var(--ease), box-shadow .38s;
  z-index:1; width:44%; min-height:310px;
  display:flex; flex-direction:column; justify-content:flex-end;
}
.snake-card:hover { transform:translateY(-8px) scale(1.015); box-shadow:var(--sh3) }

.sc-bg {
  position:absolute; inset:0;
  background:var(--card-bg, linear-gradient(135deg,#2A1A0A,#4A2E12));
  transition:transform .6s var(--ease);
}
.snake-card:hover .sc-bg { transform:scale(1.04) }
.sc-pattern {
  position:absolute; inset:0; z-index:1; pointer-events:none; opacity:.07;
  background-image:radial-gradient(circle,rgba(255,255,255,.9) 1px,transparent 1px);
  background-size:22px 22px;
}
.sc-overlay {
  position:absolute; inset:0; z-index:2;
  background:linear-gradient(to top,rgba(0,0,0,.88) 0%,rgba(0,0,0,.42) 50%,rgba(0,0,0,.08) 100%);
}
.sc-stripe {
  position:absolute; top:0; right:0; left:0; height:4px; z-index:4;
  border-radius:var(--rl) var(--rl) 0 0;
}
[data-color=red]    .sc-stripe { background:linear-gradient(90deg,var(--col-red),#E07070) }
[data-color=purple] .sc-stripe { background:linear-gradient(90deg,var(--col-purple),#A07FE0) }
[data-color=teal]   .sc-stripe { background:linear-gradient(90deg,var(--col-teal),#5BB89E) }
[data-color=gold]   .sc-stripe { background:linear-gradient(90deg,var(--col-gold),#D4A820) }
[data-color=blue]   .sc-stripe { background:linear-gradient(90deg,var(--col-blue),#5E92C0) }
[data-color=green]  .sc-stripe { background:linear-gradient(90deg,var(--col-green),#5BAD80) }

.sc-icon-badge {
  position:absolute; top:1.4rem; right:1.4rem; z-index:5;
  width:50px; height:50px; border-radius:13px;
  display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,.11); backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,.2);
  transition:transform .3s, background .3s;
}
.snake-card:hover .sc-icon-badge { transform:scale(1.1) rotate(-4deg); background:rgba(255,255,255,.18) }
.sc-icon-badge svg { width:24px; height:24px; color:#fff }

.sc-content { position:relative; z-index:5; padding:1.75rem 1.75rem 1.5rem }
.sc-tags { display:flex; flex-wrap:wrap; gap:.4rem; margin-bottom:.85rem }
.tag {
  font-size:.7rem; font-weight:600; padding:.22rem .65rem; border-radius:100px;
  background:rgba(255,255,255,.12); color:rgba(255,255,255,.88);
  border:1px solid rgba(255,255,255,.18); backdrop-filter:blur(4px);
}
.sc-title {
  font-family:'AmaticaSC','Rubik',sans-serif;
  font-size:1.7rem; font-weight:700; color:#fff;
  margin-bottom:.5rem; line-height:1.1; letter-spacing:.03em;
}
.sc-desc { font-size:.83rem; color:rgba(255,255,255,.68); line-height:1.55; margin-bottom:1.25rem }

.sc-btn {
  display:inline-flex; align-items:center; gap:.5rem;
  padding:.72rem 1.4rem; border-radius:100px;
  font-size:.84rem; font-weight:700; color:#fff;
  background:rgba(255,255,255,.13); backdrop-filter:blur(10px);
  border:1.5px solid rgba(255,255,255,.28);
  transition:background .25s, border-color .25s, transform .25s;
  cursor:pointer; width:fit-content;
}
.sc-btn svg { width:17px; height:17px }
.sc-btn:hover { background:rgba(255,255,255,.24); border-color:rgba(255,255,255,.52); transform:translateX(-3px) }

[data-color=red]    .sc-btn { background:rgba(184,64,64,.35);   border-color:rgba(184,64,64,.6) }
[data-color=purple] .sc-btn { background:rgba(124,92,191,.35);  border-color:rgba(124,92,191,.6) }
[data-color=teal]   .sc-btn { background:rgba(46,125,106,.35);  border-color:rgba(46,125,106,.6) }
[data-color=gold]   .sc-btn { background:rgba(160,112,32,.35);  border-color:rgba(160,112,32,.6) }
[data-color=blue]   .sc-btn { background:rgba(43,95,138,.35);   border-color:rgba(43,95,138,.6) }
[data-color=green]  .sc-btn { background:rgba(58,125,90,.35);   border-color:rgba(58,125,90,.6) }

[data-color=red]    { --card-bg:linear-gradient(145deg,#2A0A0A,#5C1A1A) }
[data-color=purple] { --card-bg:linear-gradient(145deg,#1A0A2A,#3C1E6A) }
[data-color=teal]   { --card-bg:linear-gradient(145deg,#061A16,#0E4438) }
[data-color=gold]   { --card-bg:linear-gradient(145deg,#1E1400,#4A3000) }
[data-color=blue]   { --card-bg:linear-gradient(145deg,#060E1A,#0E2840) }
[data-color=green]  { --card-bg:linear-gradient(145deg,#061409,#103A1E) }

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact-section { padding:6.5rem 0; background:var(--cream-2) }
.contact-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.3rem; max-width:860px; margin:0 auto }
.contact-card {
  background:var(--white); border-radius:var(--rl); padding:2.25rem 1.75rem;
  text-align:center; box-shadow:var(--sh1); border:1.5px solid var(--cream-3);
  transition:transform .3s, box-shadow .3s, border-color .3s;
  display:flex; flex-direction:column; gap:.45rem; align-items:center;
}
.contact-card:hover { transform:translateY(-5px); box-shadow:var(--sh2); border-color:var(--sand) }
.contact-icon { width:52px; height:52px; background:var(--gold-l); border-radius:14px; display:flex; align-items:center; justify-content:center; margin-bottom:.4rem }
.contact-icon svg { width:24px; height:24px; color:var(--gold) }
.contact-card h3 {
  font-family:'AmaticaSC','Rubik',sans-serif;
  font-size:1.3rem; font-weight:700; color:var(--warm-xd); letter-spacing:.03em;
}
.contact-card p { font-size:.82rem; color:var(--text-s) }
.contact-link {
  background:var(--warm-xd); color:var(--white);
  padding:.5rem 1.5rem; border-radius:100px;
  font-size:.82rem; font-weight:700; margin-top:.4rem;
  transition:background .25s, transform .25s; direction:ltr; display:inline-block;
}
.contact-link:hover { background:var(--warm-d); transform:translateY(-2px) }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer { background:var(--warm-xd); padding:2.5rem 2rem; text-align:center; display:flex; flex-direction:column; align-items:center; gap:.6rem }
.footer-logo { width:46px; height:46px; object-fit:contain; border-radius:50%; background:rgba(255,255,255,.1); padding:3px }
.footer-text {
  font-family:'AmaticaSC','Rubik',sans-serif;
  font-size:1.1rem; font-weight:700; color:rgba(255,255,255,.85); letter-spacing:.04em;
}
.footer-sub { font-size:.72rem; color:rgba(255,255,255,.3) }

/* ══════════════════════════════════════════
   MODAL
══════════════════════════════════════════ */
.modal-overlay {
  position:fixed; inset:0; background:rgba(30,18,8,.65);
  backdrop-filter:blur(12px); z-index:2000;
  display:flex; align-items:center; justify-content:center; padding:1.5rem;
  opacity:0; visibility:hidden; transition:opacity .3s,visibility .3s;
}
.modal-overlay.active { opacity:1; visibility:visible }
.modal-overlay.active .modal { transform:scale(1) translateY(0); opacity:1 }
.modal {
  background:var(--cream); border-radius:var(--rl); padding:2.25rem;
  max-width:560px; width:100%; position:relative;
  transform:scale(.93) translateY(18px); opacity:0;
  transition:transform .38s var(--ease), opacity .38s;
  box-shadow:var(--sh3); max-height:90vh; overflow-y:auto;
  border:1.5px solid var(--cream-3);
}
.modal-close {
  position:absolute; top:1.1rem; left:1.1rem;
  width:32px; height:32px; border-radius:50%;
  background:var(--cream-2); display:flex; align-items:center; justify-content:center;
  transition:background .25s;
}
.modal-close svg { width:16px; height:16px; color:var(--text-m) }
.modal-close:hover { background:var(--cream-3) }
.modal-header { text-align:center; margin-bottom:1.75rem; padding-bottom:1.5rem }
.modal-icon { width:56px; height:56px; border-radius:16px; display:flex; align-items:center; justify-content:center; margin:0 auto .7rem }
.modal-icon svg { width:26px; height:26px }
.modal-icon.purple { background:var(--col-purple-l); color:var(--col-purple) }
.modal-header h2 {
  font-family:'AmaticaSC','Rubik',sans-serif;
  font-size:1.8rem; font-weight:700; color:var(--warm-xd); margin-bottom:.3rem; letter-spacing:.03em;
}
.modal-header p { font-size:.83rem; color:var(--text-s) }
.modal-list { display:flex; flex-direction:column; gap:.6rem }
.modal-row {
  display:flex; align-items:center; gap:.9rem; padding:.9rem 1.1rem;
  border-radius:var(--r); border:1.5px solid var(--cream-3); background:var(--white);
  transition:border-color .25s, transform .25s, box-shadow .25s;
}
.modal-row:hover { border-color:var(--sand); transform:translateX(-4px); box-shadow:var(--sh1) }
.modal-row-icon { width:38px; height:38px; background:var(--cream-2); border-radius:10px; display:flex; align-items:center; justify-content:center; flex-shrink:0 }
.modal-row-icon svg { width:20px; height:20px; color:var(--warm) }
.modal-row-text { display:flex; flex-direction:column; gap:.15rem; flex:1 }
.modal-row-text strong { font-size:.9rem; color:var(--text); font-weight:700 }
.modal-row-text span { font-size:.75rem; color:var(--text-s) }
.modal-arrow { width:18px; height:18px; color:var(--text-s); flex-shrink:0 }
.modal-contact {
  background:var(--gold-l); border:1.5px solid rgba(196,154,60,.25);
  border-radius:var(--r); padding:1.1rem 1.3rem;
  display:flex; align-items:flex-start; gap:.85rem; margin-top:.3rem;
}
.modal-contact>svg { width:22px; height:22px; color:var(--gold); flex-shrink:0; margin-top:.15rem }
.modal-contact>div { display:flex; flex-direction:column; gap:.2rem }
.modal-contact strong { font-size:.78rem; font-weight:800; color:var(--gold); text-transform:uppercase; letter-spacing:.1em }
.modal-contact span { font-size:.85rem; color:var(--text) }
.modal-contact a { color:var(--warm-xd); font-weight:800; font-size:.95rem; direction:ltr; display:inline-block }
.modal-contact a:hover { text-decoration:underline }

/* ══════════════════════════════════════════
   TOAST + REVEAL
══════════════════════════════════════════ */
.toast {
  position:fixed; bottom:2rem; left:50%;
  transform:translateX(-50%) translateY(12px);
  background:var(--warm-xd); color:var(--white);
  padding:.72rem 1.8rem; border-radius:100px;
  font-size:.85rem; font-weight:600; z-index:3000;
  opacity:0; transition:opacity .3s,transform .3s;
  box-shadow:var(--sh2); white-space:nowrap; pointer-events:none;
}
.toast.show { opacity:1; transform:translateX(-50%) translateY(0) }

.reveal { opacity:0; transform:translateY(28px); transition:opacity .6s var(--ease),transform .6s var(--ease) }
.reveal.in { opacity:1; transform:translateY(0) }



/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */

/* ── 1. LOGO: spinning golden ring ── */
.hero-logo-wrap { position:relative; display:inline-flex; justify-content:center; align-items:center }

.logo-ring {
  position:absolute;
  width:240px; height:240px;
  border-radius:50%;
  border:2px solid transparent;
  background:
    linear-gradient(transparent, transparent) padding-box,
    conic-gradient(
      rgba(196,154,60,0)   0%,
      rgba(196,154,60,.85) 20%,
      rgba(255,220,120,1)  35%,
      rgba(196,154,60,.85) 50%,
      rgba(196,154,60,0)   70%,
      rgba(196,154,60,0)   100%
    ) border-box;
  animation:spinRing 6s linear infinite;
  pointer-events:none;
}
.logo-ring-2 {
  position:absolute;
  width:264px; height:264px;
  border-radius:50%;
  border:1.5px solid transparent;
  background:
    linear-gradient(transparent, transparent) padding-box,
    conic-gradient(
      rgba(196,154,60,0)   0%,
      rgba(196,154,60,.4)  30%,
      rgba(255,220,120,.6) 45%,
      rgba(196,154,60,.4)  60%,
      rgba(196,154,60,0)   80%,
      rgba(196,154,60,0)   100%
    ) border-box;
  animation:spinRing 10s linear infinite reverse;
  pointer-events:none;
}
@keyframes spinRing {
  from { transform:rotate(0deg) }
  to   { transform:rotate(360deg) }
}

/* Glow pulse behind logo */
.logo-glow {
  position:absolute;
  width:180px; height:180px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(196,154,60,.35) 0%, rgba(196,154,60,.1) 50%, transparent 70%);
  animation:glowPulse 3s ease-in-out infinite;
  pointer-events:none;
}
@keyframes glowPulse {
  0%,100% { transform:scale(1);   opacity:.7 }
  50%      { transform:scale(1.2); opacity:1 }
}

/* ── 2. PAKAL CARDS: floating dots in bg ── */
.sc-floating-dots {
  position:absolute; inset:0; z-index:3; pointer-events:none; overflow:hidden;
}
.sc-floating-dots span {
  position:absolute;
  width:4px; height:4px;
  border-radius:50%;
  background:rgba(255,255,255,.45);
  animation:floatDot linear infinite;
}
.sc-floating-dots span:nth-child(1)  { left:10%; animation-duration:8s;  animation-delay:0s;    top:80% }
.sc-floating-dots span:nth-child(2)  { left:25%; animation-duration:11s; animation-delay:1.5s;  top:90% }
.sc-floating-dots span:nth-child(3)  { left:40%; animation-duration:9s;  animation-delay:0.8s;  top:85% }
.sc-floating-dots span:nth-child(4)  { left:55%; animation-duration:13s; animation-delay:2s;    top:95% }
.sc-floating-dots span:nth-child(5)  { left:70%; animation-duration:7s;  animation-delay:0.3s;  top:88% }
.sc-floating-dots span:nth-child(6)  { left:82%; animation-duration:10s; animation-delay:1s;    top:92% }
.sc-floating-dots span:nth-child(7)  { left:15%; animation-duration:12s; animation-delay:3s;    top:75% }
.sc-floating-dots span:nth-child(8)  { left:60%; animation-duration:8.5s;animation-delay:2.5s;  top:70% }
@keyframes floatDot {
  0%   { transform:translateY(0)   scale(1);   opacity:0 }
  10%  { opacity:.5 }
  90%  { opacity:.3 }
  100% { transform:translateY(-260px) scale(1.5); opacity:0 }
}

/* Subtle shimmer on card hover */
.snake-card::after {
  content:'';
  position:absolute; inset:0; z-index:3; pointer-events:none;
  background:linear-gradient(135deg, rgba(255,255,255,0) 40%, rgba(255,255,255,.06) 50%, rgba(255,255,255,0) 60%);
  background-size:200% 200%;
  opacity:0;
  transition:opacity .4s;
}
.snake-card:hover::after {
  opacity:1;
  animation:shimmer 1.4s ease forwards;
}
@keyframes shimmer {
  from { background-position:200% 200% }
  to   { background-position:-200% -200% }
}

/* ── 3. CONTACT CARDS: icon float + card entrance ── */
.contact-card .contact-icon {
  transition:transform .4s cubic-bezier(.34,1.56,.64,1);
}
.contact-card:hover .contact-icon {
  animation:iconBounce .55s cubic-bezier(.34,1.56,.64,1) forwards;
}
@keyframes iconBounce {
  0%   { transform:translateY(0) scale(1) }
  40%  { transform:translateY(-10px) scale(1.15) }
  70%  { transform:translateY(-4px) scale(1.05) }
  100% { transform:translateY(-6px) scale(1.08) }
}

/* Contact cards: staggered entrance glow border */
.contact-card {
  position:relative; overflow:hidden; isolation:isolate;
}
.contact-card::before {
  content:'';
  position:absolute; inset:-2px;
  border-radius:calc(var(--rl) + 2px);
  background:conic-gradient(
    from var(--angle, 0deg),
    transparent 70%,
    rgba(196,154,60,.5) 80%,
    rgba(255,220,100,.8) 90%,
    rgba(196,154,60,.5) 95%,
    transparent 100%
  );
  opacity:0;
  transition:opacity .4s;
  z-index:-1;
  animation:none;
}
.contact-card:hover::before {
  opacity:1;
  animation:rotateBorder 2.5s linear infinite;
}
@property --angle {
  syntax:'<angle>';
  initial-value:0deg;
  inherits:false;
}
@keyframes rotateBorder {
  from { --angle:0deg }
  to   { --angle:360deg }
}

/* Contact numbers: subtle count-up glow on visible */
.contact-link {
  position:relative; overflow:hidden;
}
.contact-link::after {
  content:'';
  position:absolute; top:0; right:-100%; width:60%; height:100%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  animation:linkSheen 3s ease-in-out infinite;
}
@keyframes linkSheen {
  0%,40%   { right:-100% }
  60%,100% { right:120% }
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media(max-width:900px) {
  /* Stack hero vertically */
  .hero { flex-direction:column; min-height:auto }
  .hero-visual { flex:none; min-height:280px; width:100% }
  .hero-visual::after {
    top:auto; right:0; left:0; bottom:0; width:auto; height:160px;
    background:linear-gradient(to bottom,
      transparent 0%,
      rgba(186,148,88,.15) 30%,
      rgba(232,210,170,.55) 60%,
      rgba(251,245,232,.90) 80%,
      rgb(253,250,245) 100%
    );
  }
  .hero-logo { width:140px; height:140px }
  .hero-text { padding:3rem 2rem 4rem }
  .title-accent { font-size:clamp(4rem,12vw,6rem) }

  /* Mobile snake — JS positions cards absolutely */
  .snake-track { position:relative; padding:0; display:block }
  .snake-card { min-height:260px }

  .stats-bar { flex-wrap:wrap; gap:0 }
  .stat-item { padding:.4rem 1.5rem }
}
@media(max-width:700px) {
  .hero-scroll-dot { bottom:.9rem }
  .pulse-ring { width:28px; height:28px }
  .scroll-label { font-size:.58rem }
  .nav-links { display:none }
  .hamburger { display:flex }
  .navbar { padding:.9rem 1.5rem }
  .navbar.scrolled { padding:.65rem 1.5rem }
  .nav-links.open {
    display:flex; flex-direction:column;
    position:fixed; top:0; right:0; width:80vw; height:100vh;
    background:var(--cream); padding:4.5rem 2rem 2rem;
    gap:1.75rem; z-index:999; box-shadow:var(--sh3);
  }
  .nav-links.open a { font-size:1.1rem; color:var(--text)!important }
  .hero-text { padding:2.5rem 1.5rem 5.5rem } /* extra space for scroll dot */
  .hero-cta { flex-direction:column }
  .btn { width:100%; max-width:280px; justify-content:center }
  .hero-pills { gap:.4rem }
  .stats-bar { flex-direction:column; gap:1.25rem; padding:1.75rem }
  .stat-divider { width:50px; height:1px }
  .contact-grid { grid-template-columns:1fr; max-width:340px }
}
@media(max-width:480px) {
  .container { padding:0 1.1rem }
  .modal { padding:1.75rem 1.1rem }
  .sc-content { padding:1.4rem 1.25rem 1.25rem }
}

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */

/* ── 1. LOGO: spinning golden ring ── */
.hero-logo-wrap { position:relative; display:inline-flex; justify-content:center; align-items:center }

.logo-ring {
  position:absolute;
  width:240px; height:240px;
  border-radius:50%;
  border:2px solid transparent;
  background:
    linear-gradient(transparent, transparent) padding-box,
    conic-gradient(
      rgba(196,154,60,0)   0%,
      rgba(196,154,60,.85) 20%,
      rgba(255,220,120,1)  35%,
      rgba(196,154,60,.85) 50%,
      rgba(196,154,60,0)   70%,
      rgba(196,154,60,0)   100%
    ) border-box;
  animation:spinRing 6s linear infinite;
  pointer-events:none;
}
.logo-ring-2 {
  position:absolute;
  width:264px; height:264px;
  border-radius:50%;
  border:1.5px solid transparent;
  background:
    linear-gradient(transparent, transparent) padding-box,
    conic-gradient(
      rgba(196,154,60,0)   0%,
      rgba(196,154,60,.4)  30%,
      rgba(255,220,120,.6) 45%,
      rgba(196,154,60,.4)  60%,
      rgba(196,154,60,0)   80%,
      rgba(196,154,60,0)   100%
    ) border-box;
  animation:spinRing 10s linear infinite reverse;
  pointer-events:none;
}
@keyframes spinRing {
  from { transform:rotate(0deg) }
  to   { transform:rotate(360deg) }
}

/* Glow pulse behind logo */
.logo-glow {
  position:absolute;
  width:180px; height:180px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(196,154,60,.35) 0%, rgba(196,154,60,.1) 50%, transparent 70%);
  animation:glowPulse 3s ease-in-out infinite;
  pointer-events:none;
}
@keyframes glowPulse {
  0%,100% { transform:scale(1);   opacity:.7 }
  50%      { transform:scale(1.2); opacity:1 }
}

/* ── 2. PAKAL CARDS: floating dots in bg ── */
.sc-floating-dots {
  position:absolute; inset:0; z-index:3; pointer-events:none; overflow:hidden;
}
.sc-floating-dots span {
  position:absolute;
  width:4px; height:4px;
  border-radius:50%;
  background:rgba(255,255,255,.45);
  animation:floatDot linear infinite;
}
.sc-floating-dots span:nth-child(1)  { left:10%; animation-duration:8s;  animation-delay:0s;    top:80% }
.sc-floating-dots span:nth-child(2)  { left:25%; animation-duration:11s; animation-delay:1.5s;  top:90% }
.sc-floating-dots span:nth-child(3)  { left:40%; animation-duration:9s;  animation-delay:0.8s;  top:85% }
.sc-floating-dots span:nth-child(4)  { left:55%; animation-duration:13s; animation-delay:2s;    top:95% }
.sc-floating-dots span:nth-child(5)  { left:70%; animation-duration:7s;  animation-delay:0.3s;  top:88% }
.sc-floating-dots span:nth-child(6)  { left:82%; animation-duration:10s; animation-delay:1s;    top:92% }
.sc-floating-dots span:nth-child(7)  { left:15%; animation-duration:12s; animation-delay:3s;    top:75% }
.sc-floating-dots span:nth-child(8)  { left:60%; animation-duration:8.5s;animation-delay:2.5s;  top:70% }
@keyframes floatDot {
  0%   { transform:translateY(0)   scale(1);   opacity:0 }
  10%  { opacity:.5 }
  90%  { opacity:.3 }
  100% { transform:translateY(-260px) scale(1.5); opacity:0 }
}

/* Subtle shimmer on card hover */
.snake-card::after {
  content:'';
  position:absolute; inset:0; z-index:3; pointer-events:none;
  background:linear-gradient(135deg, rgba(255,255,255,0) 40%, rgba(255,255,255,.06) 50%, rgba(255,255,255,0) 60%);
  background-size:200% 200%;
  opacity:0;
  transition:opacity .4s;
}
.snake-card:hover::after {
  opacity:1;
  animation:shimmer 1.4s ease forwards;
}
@keyframes shimmer {
  from { background-position:200% 200% }
  to   { background-position:-200% -200% }
}

/* ── 3. CONTACT CARDS: icon float + card entrance ── */
.contact-card .contact-icon {
  transition:transform .4s cubic-bezier(.34,1.56,.64,1);
}
.contact-card:hover .contact-icon {
  animation:iconBounce .55s cubic-bezier(.34,1.56,.64,1) forwards;
}
@keyframes iconBounce {
  0%   { transform:translateY(0) scale(1) }
  40%  { transform:translateY(-10px) scale(1.15) }
  70%  { transform:translateY(-4px) scale(1.05) }
  100% { transform:translateY(-6px) scale(1.08) }
}

/* Contact cards: staggered entrance glow border */
.contact-card {
  position:relative; overflow:hidden; isolation:isolate;
}
.contact-card::before {
  content:'';
  position:absolute; inset:-2px;
  border-radius:calc(var(--rl) + 2px);
  background:conic-gradient(
    from var(--angle, 0deg),
    transparent 70%,
    rgba(196,154,60,.5) 80%,
    rgba(255,220,100,.8) 90%,
    rgba(196,154,60,.5) 95%,
    transparent 100%
  );
  opacity:0;
  transition:opacity .4s;
  z-index:-1;
  animation:none;
}
.contact-card:hover::before {
  opacity:1;
  animation:rotateBorder 2.5s linear infinite;
}
@property --angle {
  syntax:'<angle>';
  initial-value:0deg;
  inherits:false;
}
@keyframes rotateBorder {
  from { --angle:0deg }
  to   { --angle:360deg }
}

/* Contact numbers: subtle count-up glow on visible */
.contact-link {
  position:relative; overflow:hidden;
}
.contact-link::after {
  content:'';
  position:absolute; top:0; right:-100%; width:60%; height:100%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  animation:linkSheen 3s ease-in-out infinite;
}
@keyframes linkSheen {
  0%,40%   { right:-100% }
  60%,100% { right:120% }
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media(max-width:900px) {
  /* Stack hero vertically */
  .hero { flex-direction:column; min-height:auto }
  .hero-visual { flex:none; min-height:280px; width:100% }
  .hero-visual::after {
    top:auto; right:0; left:0; bottom:0; width:auto; height:160px;
    background:linear-gradient(to bottom,
      transparent 0%,
      rgba(186,148,88,.15) 30%,
      rgba(232,210,170,.55) 60%,
      rgba(251,245,232,.90) 80%,
      rgb(253,250,245) 100%
    );
  }
  .hero-logo { width:140px; height:140px }
  .hero-text { padding:3rem 2rem 4rem }
  .title-accent { font-size:clamp(4rem,12vw,6rem) }

  /* Mobile snake — JS positions cards absolutely */
  .snake-track { position:relative; padding:0; display:block }
  .snake-card { min-height:260px }

  .stats-bar { flex-wrap:wrap; gap:0 }
  .stat-item { padding:.4rem 1.5rem }
}
@media(max-width:700px) {
  .hero-scroll-dot { bottom:.9rem }
  .pulse-ring { width:28px; height:28px }
  .scroll-label { font-size:.58rem }
  .nav-links { display:none }
  .hamburger { display:flex }
  .navbar { padding:.9rem 1.5rem }
  .navbar.scrolled { padding:.65rem 1.5rem }
  .nav-links.open {
    display:flex; flex-direction:column;
    position:fixed; top:0; right:0; width:80vw; height:100vh;
    background:var(--cream); padding:4.5rem 2rem 2rem;
    gap:1.75rem; z-index:999; box-shadow:var(--sh3);
  }
  .nav-links.open a { font-size:1.1rem; color:var(--text)!important }
  .hero-text { padding:2.5rem 1.5rem 5.5rem } /* extra space for scroll dot */
  .hero-cta { flex-direction:column }
  .btn { width:100%; max-width:280px; justify-content:center }
  .hero-pills { gap:.4rem }
  .stats-bar { flex-direction:column; gap:1.25rem; padding:1.75rem }
  .stat-divider { width:50px; height:1px }
  .contact-grid { grid-template-columns:1fr; max-width:340px }
}
@media(max-width:480px) {
  .container { padding:0 1.1rem }
  .modal { padding:1.75rem 1.1rem }
  .sc-content { padding:1.4rem 1.25rem 1.25rem }
}
