/* ============================================
   SAMI STRATEGY CO. — GLOBAL CSS
   Shared across all pages via head-common.html
   Font: Lato (McKimm-inspired minimalist)
============================================ */

:root {
    --navy: #1a3550;
    --navy-dark: #132840;
    --navy-light: #2670AC;
    --blue-light: #b2d9e5;
    --blue-pale: #e8f4f8;
    --orange: #f78f20;
    --orange-hover: #e07d15;
    --orange-glow: rgba(247, 143, 32, 0.5);
    --white: #fafafa;
    --off-white: #f5f3f0;
    --grey-light: #f3f4f6;
    --grey-mid: #e5e7eb;
    --grey-border: #d1d5db;
    --text-dark: #1a3550;
    --text-body: #2d4a63;
    --text-muted: #5a7f9a;
    --text-light: rgba(255, 255, 255, 0.85);
}

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

/* Restore circles for orbital elements + radio buttons */
.orbital-centre, .orbital-dot, .orbital-dot::after, .orbital-ring, .orbital-ring::before,
.form-radio-list input[type="radio"], .form-radio-list input[type="radio"]::after,
.review-avatar {
    border-radius: 50% !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--text-body);
    overflow-x: hidden;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ===== HEADINGS: Lato, Bold 700, Uppercase ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    color: #1a3550;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ===== DESCRIPTIONS / BODY TEXT: Lato, Regular 400 ===== */
p, li, td, th, blockquote, label {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    line-height: 1.8;
}

/* Spans inside headings inherit heading weight */
h1 span, h2 span, h3 span, h4 span, h5 span, h6 span {
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== ANIMATION CLASSES ===== */
.anim,
.anim-left,
.anim-right,
.anim-scale {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.anim { transform: translateY(30px); }
.anim-left { transform: translateX(-40px); }
.anim-right { transform: translateX(40px); }
.anim-scale { transform: scale(0.95); }

.anim.visible,
.anim-left.visible,
.anim-right.visible,
.anim-scale.visible {
    opacity: 1;
    transform: none;
}

.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }
.anim-delay-5 { transition-delay: 0.5s; }
.anim-delay-6 { transition-delay: 0.6s; }
.anim-delay-7 { transition-delay: 0.7s; }

/* ===== CUSTOM CURSOR: Hide native, show orange dot only ===== */
@media (hover: hover) and (pointer: fine) {
    *, *::before, *::after {
        cursor: none !important;
    }
}

/* ===== SCROLL PROGRESS BAR ===== */
.ss-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: #1a3550;
    z-index: 1100;
    transition: width 0.1s linear;
}
