
  :root {
    --bg-deep: #0a0704;
    --bg-dark: #110d08;
    --bg-card: #1a1208;
    --amber: #e8a020;
    --amber-light: #f5c842;
    --orange: #d45a10;
    --orange-bright: #f07020;
    --cream: #f5e8c8;
    --text-body: #c8b090;
    --text-muted: #7a6040;
    --glow: rgba(232,160,32,0.15);
    --glow-strong: rgba(232,160,32,0.35);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg-deep);
    color: var(--cream);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    cursor: default;
  }

  /* ─── CURSOR ─── */
  .cursor {
    width: 20px; height: 20px;
    border: 1.5px solid var(--amber);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease, background 0.2s;
    transform: translate(-50%,-50%);
  }
  .cursor.hovered { background: var(--glow-strong); transform: translate(-50%,-50%) scale(2); }

  /* ─── STARS BG ─── */
  .stars {
    position: fixed; inset: 0;
    pointer-events: none; z-index: 0;
    background:
      radial-gradient(ellipse at 20% 10%, rgba(232,160,32,0.05) 0%, transparent 50%),
      radial-gradient(ellipse at 80% 90%, rgba(212,90,16,0.06) 0%, transparent 50%);
  }
  .stars::before {
    content:'';
    position: absolute; inset: 0;
    background-image:
      radial-gradient(1px 1px at 10% 15%, rgba(255,220,120,0.6) 0%, transparent 100%),
      radial-gradient(1px 1px at 25% 40%, rgba(255,220,120,0.4) 0%, transparent 100%),
      radial-gradient(1px 1px at 40% 8%, rgba(255,220,120,0.5) 0%, transparent 100%),
      radial-gradient(1px 1px at 60% 30%, rgba(255,200,100,0.3) 0%, transparent 100%),
      radial-gradient(1px 1px at 75% 12%, rgba(255,220,120,0.6) 0%, transparent 100%),
      radial-gradient(1px 1px at 85% 55%, rgba(255,200,100,0.4) 0%, transparent 100%),
      radial-gradient(1px 1px at 15% 70%, rgba(255,220,120,0.3) 0%, transparent 100%),
      radial-gradient(1px 1px at 50% 85%, rgba(255,200,100,0.5) 0%, transparent 100%),
      radial-gradient(1px 1px at 90% 20%, rgba(255,220,120,0.4) 0%, transparent 100%),
      radial-gradient(1px 1px at 35% 60%, rgba(255,200,100,0.3) 0%, transparent 100%),
      radial-gradient(1.5px 1.5px at 5% 50%, rgba(255,240,160,0.7) 0%, transparent 100%),
      radial-gradient(1.5px 1.5px at 70% 75%, rgba(255,240,160,0.5) 0%, transparent 100%),
      radial-gradient(1.5px 1.5px at 55% 5%, rgba(255,240,160,0.6) 0%, transparent 100%);
  }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 5%;
    background: linear-gradient(to bottom, rgba(10,7,4,0.95) 0%, transparent 100%);
    backdrop-filter: blur(4px);
  }
  .nav-logo {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.1rem;
    color: var(--amber);
    letter-spacing: 0.05em;
    text-decoration: none;
  }
  .nav-links { display: flex; gap: 28px; list-style: none; }
  .nav-links a {
    font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--text-body); text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--amber); }
  .nav-cta {
    background: linear-gradient(135deg, var(--orange), var(--amber));
    color: var(--bg-deep);
    border: none; padding: 10px 22px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; cursor: pointer;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: opacity 0.2s, transform 0.2s;
  }
  .nav-cta:hover { opacity: 0.85; transform: scale(1.04); }

  /* ─── SECTIONS ─── */
  section {
    position: relative; z-index: 1;
    min-height: 100vh;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    padding: 100px 6% 80px;
    overflow: hidden;
  }

  /* ─── HERO ─── */
  #hero {
    text-align: center;
    background:
      radial-gradient(ellipse 70% 60% at 50% 60%, rgba(212,90,16,0.12) 0%, transparent 70%),
      radial-gradient(ellipse 40% 30% at 50% 90%, rgba(232,160,32,0.08) 0%, transparent 100%);
    min-height: 100vh;
  }
  .hero-ornament {
    font-size: 1.4rem;
    color: var(--amber);
    letter-spacing: 0.3em;
    margin-bottom: 16px;
    opacity: 0.7;
  }
  .hero-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(3rem, 9vw, 7rem);
    font-weight: 900;
    line-height: 0.9;
    color: var(--amber-light);
    text-shadow:
      0 0 40px rgba(232,160,32,0.5),
      0 0 80px rgba(232,160,32,0.2);
    letter-spacing: 0.05em;
    margin-bottom: 24px;
  }
  .hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: var(--text-body);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
  }
  .hero-tagline {
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange-bright);
    margin-bottom: 50px;
  }

  /* ─── ISKROSH CHARACTER ─── */
  .iskrosh-wrap {
    position: relative;
    width: 280px; height: 280px;
    margin: 0 auto 40px;
  }
  .iskrosh-glow {
    position: absolute; inset: -30px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(232,160,32,0.25) 0%, transparent 70%);
    animation: pulseGlow 3s ease-in-out infinite;
  }
  .iskrosh-body {
    position: relative; z-index: 2;
    width: 100%; height: 100%;
    animation: floatBob 4s ease-in-out infinite;
  }
  .iskrosh-svg {
    width: 100%; height: 100%;
    filter: drop-shadow(0 0 20px rgba(232,120,30,0.6)) drop-shadow(0 0 40px rgba(232,120,30,0.3));
  }

  /* Tail */
  .tail { transform-origin: 40% 75%; animation: tailWag 2.5s ease-in-out infinite; }
  /* Eyes */
  .eye-left .pupil, .eye-right .pupil { animation: blink 5s ease-in-out infinite; transform-origin: center center; }
  /* Flames on head */
  .flame-1 { transform-origin: bottom center; animation: flicker1 1.8s ease-in-out infinite; }
  .flame-2 { transform-origin: bottom center; animation: flicker2 2.2s ease-in-out infinite; }
  .flame-3 { transform-origin: bottom center; animation: flicker3 1.5s ease-in-out infinite; }

  @keyframes floatBob {
    0%,100% { transform: translateY(0) rotate(-1deg); }
    50%      { transform: translateY(-14px) rotate(1deg); }
  }
  @keyframes pulseGlow {
    0%,100% { opacity: 0.5; transform: scale(1); }
    50%      { opacity: 1; transform: scale(1.1); }
  }
  @keyframes tailWag {
    0%,100% { transform: rotate(-8deg); }
    50%      { transform: rotate(8deg); }
  }
  @keyframes blink {
    0%,45%,55%,100% { transform: scaleY(1); }
    50%              { transform: scaleY(0.08); }
  }
  @keyframes flicker1 {
    0%,100% { transform: scaleX(1) scaleY(1) rotate(-3deg); }
    50%      { transform: scaleX(0.9) scaleY(1.12) rotate(3deg); }
  }
  @keyframes flicker2 {
    0%,100% { transform: scaleX(1) scaleY(1) rotate(2deg); }
    50%      { transform: scaleX(1.08) scaleY(0.95) rotate(-2deg); }
  }
  @keyframes flicker3 {
    0%,100% { transform: scaleX(1) scaleY(1) rotate(-2deg); }
    33%      { transform: scaleX(0.92) scaleY(1.1) rotate(4deg); }
    66%      { transform: scaleX(1.06) scaleY(0.9) rotate(-3deg); }
  }

  .hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .btn-primary {
    background: linear-gradient(135deg, var(--orange) 0%, var(--amber) 100%);
    color: var(--bg-deep);
    border: none; padding: 14px 36px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
    cursor: pointer;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    transition: all 0.25s;
    text-decoration: none; display: inline-block;
  }
  .btn-primary:hover { transform: scale(1.05); box-shadow: 0 0 30px rgba(232,160,32,0.5); }
  .btn-secondary {
    background: transparent;
    color: var(--amber);
    border: 1px solid var(--amber);
    padding: 13px 36px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
    cursor: pointer;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    transition: all 0.25s;
    text-decoration: none; display: inline-block;
  }
  .btn-secondary:hover { background: var(--glow); box-shadow: 0 0 20px #e8a0204d; }

  /* ─── SECTION COMMON ─── */
  .section-inner {
    max-width: 1100px;
    width: 100%;
  }
  .section-badge {
    display: inline-block;
    font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--orange-bright);
    border: 1px solid rgba(212,90,16,0.4);
    padding: 4px 14px;
    margin-bottom: 20px;
  }
  .section-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--amber-light);
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 0 30px rgba(232,160,32,0.3);
  }
  .section-lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 650px;
  }

  /* divider */
  .ornament-divider {
    text-align: center;
    color: var(--amber);
    opacity: 0.5;
    font-size: 1.2rem;
    letter-spacing: 0.4em;
    margin: 16px 0 32px;
  }

  /* ─── CARDS GRID ─── */
  .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 32px;
  }
  .card {
    background: linear-gradient(135deg, rgba(26,18,8,0.9) 0%, rgba(18,12,4,0.95) 100%);
    border: 1px solid rgba(232,160,32,0.15);
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  }
  .card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--amber), transparent);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .card:hover {
    border-color: rgba(232,160,32,0.4);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 20px rgba(232,160,32,0.1);
  }
  .card:hover::before { opacity: 1; }
  .card-icon {
    font-size: 1.8rem; margin-bottom: 14px;
    filter: drop-shadow(0 0 6px rgba(232,160,32,0.5));
  }
  .card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--amber); margin-bottom: 10px;
  }
  .card-text {
    font-size: 0.85rem; line-height: 1.65;
    color: var(--text-body);
  }

  /* ─── TWO COL ─── */
  .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .two-col.reverse { direction: rtl; }
  .two-col.reverse > * { direction: ltr; }

  /* ─── HIGHLIGHT BOX ─── */
  .highlight-box {
    background: linear-gradient(135deg, rgba(212,90,16,0.15) 0%, rgba(232,160,32,0.08) 100%);
    border: 1px solid rgba(232,160,32,0.3);
    border-left: 3px solid var(--orange-bright);
    padding: 20px 24px;
    margin-top: 24px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--orange-bright);
  }

  /* ─── LIST ─── */
  .fancy-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
  .fancy-list li {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 14px 18px;
    background: rgba(26,18,8,0.6);
    border: 1px solid rgba(232,160,32,0.1);
    transition: border-color 0.25s, background 0.25s;
  }
  .fancy-list li:hover {
    border-color: rgba(232,160,32,0.3);
    background: rgba(26,18,8,0.9);
  }
  .fancy-list .li-icon {
    font-size: 1.3rem; flex-shrink: 0; margin-top: 2px;
  }
  .fancy-list .li-text { font-size: 0.9rem; line-height: 1.5; color: var(--text-body); }
  .fancy-list .li-text strong { color: var(--cream); }

  /* ─── ZONES GRID ─── */
  .zones-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 32px;
  }
  .zone-card {
    background: var(--bg-card);
    border: 1px solid rgba(232,160,32,0.15);
    padding: 20px 14px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
    cursor: default;
  }
  .zone-card:hover {
    border-color: var(--amber);
    background: rgba(232,160,32,0.06);
    transform: translateY(-6px);
    box-shadow: 0 0 30px rgba(232,160,32,0.15);
  }
  .zone-num {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.8rem;
    color: var(--orange-bright);
    opacity: 0.4;
    display: block;
    margin-bottom: 8px;
  }
  .zone-icon { font-size: 1.6rem; margin-bottom: 10px; }
  .zone-title {
    font-size: 0.65rem; letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-body);
    line-height: 1.4;
  }
  .zone-card:hover .zone-title { color: var(--amber-light); }

  /* ─── CHARACTER SECTION ─── */
  #character {
    background: radial-gradient(ellipse 60% 50% at 30% 50%, rgba(212,90,16,0.08) 0%, transparent 70%);
  }
  .char-visual {
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  .char-ring {
    width: 320px; height: 320px;
    border: 1px solid rgba(232,160,32,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    animation: spinSlow 20s linear infinite;
  }
  .char-ring::before, .char-ring::after {
    content: '✦ ✦ ✦ ✦ ✦ ✦';
    position: absolute;
    font-size: 0.5rem;
    color: var(--amber);
    opacity: 0.4;
    letter-spacing: 0.5em;
  }
  .char-ring::before { top: 10px; }
  .char-ring::after { bottom: 10px; }
  @keyframes spinSlow { to { transform: rotate(360deg); } }
  .char-inner {
    width: 260px; height: 260px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(232,120,30,0.15) 0%, transparent 70%);
    display: flex; align-items: center; justify-content: center;
    animation: spinSlow 20s linear infinite reverse;
  }
  .char-emoji {
    font-size: 6rem;
    filter: drop-shadow(0 0 20px rgba(232,120,30,0.7));
    animation: floatBob 4s ease-in-out infinite;
  }

  /* ─── AUDIENCE ─── */
  .audience-tiers {
    display: flex; flex-direction: column; gap: 16px;
    margin-top: 32px;
  }
  .tier {
    display: flex; gap: 20px; align-items: center;
    padding: 18px 24px;
    border: 1px solid rgba(232,160,32,0.15);
    background: var(--bg-card);
    transition: all 0.3s;
    position: relative;
  }
  .tier::after {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--orange), var(--amber));
    opacity: 0;
    transition: opacity 0.3s;
  }
  .tier:hover { border-color: rgba(232,160,32,0.3); background: rgba(232,160,32,0.04); }
  .tier:hover::after { opacity: 1; }
  .tier-icon { font-size: 2rem; flex-shrink: 0; }
  .tier-label {
    font-family: 'Cinzel Decorative', serif;
    font-size: 0.9rem; color: var(--amber); margin-bottom: 4px;
  }
  .tier-desc { font-size: 0.8rem; color: var(--text-muted); }

  /* ─── PERSPECTIVES ─── */
  .persp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
  }
  .persp-item {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid rgba(232,160,32,0.12);
    display: flex; gap: 16px;
    transition: all 0.3s;
  }
  .persp-item:hover {
    border-color: rgba(232,160,32,0.35);
    background: rgba(232,160,32,0.05);
    transform: translateX(4px);
  }
  .persp-item .pi-icon { font-size: 1.6rem; flex-shrink: 0; }
  .persp-item .pi-body {}
  .persp-item .pi-title {
    font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--orange-bright); margin-bottom: 6px;
  }
  .persp-item .pi-text { font-size: 0.85rem; color: var(--text-body); line-height: 1.5; }

  /* ─── CTA SECTION ─── */
  #cta {
    background:
      radial-gradient(ellipse 80% 60% at 50% 50%, rgba(212,90,16,0.12) 0%, transparent 70%);
    text-align: center;
    min-height: 70vh;
  }
  .cta-text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    color: var(--text-body);
    max-width: 600px;
    margin: 20px auto 40px;
    line-height: 1.7;
  }
  .cta-quote {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(0.8rem, 2vw, 1rem);
    color: var(--orange-bright);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 50px;
    opacity: 0.8;
  }

  /* ─── SECTION BG VARIANTS ─── */
  .bg-alt {
    background: linear-gradient(to bottom, var(--bg-deep) 0%, var(--bg-dark) 50%, var(--bg-deep) 100%);
  }

  /* ─── SEPARATOR ─── */
  .sep {
    width: 100%; max-width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--amber), transparent);
    opacity: 0.25;
    margin: 0 auto;
  }

  /* ─── FOOTER ─── */
  footer {
    position: relative; z-index: 1;
    text-align: center;
    padding: 40px 5%;
    border-top: 1px solid rgba(232,160,32,0.1);
  }
  .footer-logo {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.4rem; color: var(--amber); margin-bottom: 12px;
  }
  .footer-sub { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.1em; }

  /* ─── SCROLL REVEAL ─── */
  .reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ─── MODAL ─── */
  .modal-overlay {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s;
  }
  .modal-overlay.open { opacity: 1; pointer-events: all; }
  .modal {
    background: var(--bg-dark);
    border: 1px solid rgba(232,160,32,0.3);
    padding: 48px 40px;
    max-width: 480px; width: 90%;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s;
  }
  .modal-overlay.open .modal { transform: translateY(0); }
  .modal-close {
    position: absolute; top: 16px; right: 20px;
    background: none; border: none;
    color: var(--text-muted); font-size: 1.4rem; cursor: pointer;
    transition: color 0.2s;
  }
  .modal-close:hover { color: var(--amber); }
  .modal-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.3rem; color: var(--amber-light);
    margin-bottom: 8px;
  }
  .modal-sub { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 28px; }
  .modal input, .modal textarea {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(232,160,32,0.2);
    color: var(--cream);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    padding: 12px 16px;
    margin-bottom: 14px;
    outline: none;
    transition: border-color 0.2s;
  }
  .modal input:focus, .modal textarea:focus { border-color: var(--amber); }
  .modal textarea { resize: vertical; min-height: 80px; }
  .modal-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--orange), var(--amber));
    color: var(--bg-deep);
    border: none; padding: 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.2s;
  }
  .modal-submit:hover { opacity: 0.85; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    .two-col { grid-template-columns: 1fr; gap: 40px; }
    .two-col.reverse { direction: ltr; }
    .zones-grid { grid-template-columns: repeat(3, 1fr); }
    .persp-grid { grid-template-columns: 1fr; }
    nav .nav-links { display: none; }
    .nav-mobile-menu { display: block; }
  }
  @media (max-width: 600px) {
    section { padding: 80px 5% 60px; }
    .zones-grid { grid-template-columns: repeat(2, 1fr); }
    .cards-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .iskrosh-wrap { width: 220px; height: 220px; }
    .modal { padding: 32px 24px; }
  }
</style>