/* === BASE STYLES === */:root {
      --color-1: #0a0a0f;
      --color-2: #12121c;
      --color-3: #1a1a2e;
      --color-4: #e63946;
      --color-5: #ff1744;
      --color-6: #ff6b6b;
      --color-7: #f8f8f2;
      --color-8: #c4c4d4;
      --color-9: #2a2a3e;
      --color-10: #ff2d55;
      --color-11: #00e5ff;
      --color-12: #1e1e32;
      --color-13: rgba(230, 57, 70, 0.15);
      --color-14: rgba(0, 229, 255, 0.1);
      --color-15: #ffb400;
      --space-1: 0.25rem;
      --space-2: 0.5rem;
      --space-3: 1rem;
      --space-4: 1.5rem;
      --space-5: 2rem;
      --space-6: 3rem;
      --space-7: 4rem;
      --space-8: 6rem;
      --radius-1: 8px;
      --radius-2: 12px;
      --radius-3: 16px;
      --radius-4: 24px;
      --shadow-1: 0 4px 20px rgba(0, 0, 0, 0.3);
      --shadow-2: 0 8px 40px rgba(0, 0, 0, 0.4);
      --shadow-3: 0 20px 60px rgba(0, 0, 0, 0.5);
      --shadow-4: 0 0 40px rgba(230, 57, 70, 0.3);
      --shadow-5: 0 0 60px rgba(0, 229, 255, 0.15);
      --transition-1: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      --transition-2: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      --transition-3: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    html, body {
      overflow-x: hidden;
      max-width: 100vw;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--color-1);
      color: var(--color-7);
      line-height: 1.7;
      font-size: 16px;
    }

    h1, h2, h3, h4 {
      font-family: 'Playfair Display', serif;
      font-weight: 800;
      line-height: 1.15;
    }

    .container {
      max-width: 1200px;
      padding-left: var(--space-3);
      padding-right: var(--space-3);
    }

    figure.contentImage {
      margin: 0;
      overflow: hidden;
      border-radius: var(--radius-2);
    }

    figure.contentImage img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      max-height: 500px;
      border-radius: var(--radius-2);
    }

    .btnPrimary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--color-4), var(--color-5));
      color: #fff;
      font-weight: 700;
      font-size: 1rem;
      padding: 14px 32px;
      border-radius: 50px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: var(--transition-1);
      box-shadow: 0 4px 25px rgba(230, 57, 70, 0.4);
      text-transform: uppercase;
      letter-spacing: 1px;
      white-space: nowrap;
      position: relative;
      overflow: hidden;
      min-height: 44px;
      min-width: 44px;
    }

    .btnPrimary::after {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
      transform: rotate(45deg) translateX(-100%);
      transition: transform 0.6s ease;
    }

    .btnPrimary:hover::after {
      transform: rotate(45deg) translateX(100%);
    }

    .btnPrimary:hover {
      transform: translateY(-3px) scale(1.03);
      box-shadow: 0 8px 35px rgba(230, 57, 70, 0.6);
      color: #fff;
      background: linear-gradient(135deg, var(--color-5), #ff4466);
    }

    .btnSecondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: transparent;
      color: var(--color-11);
      font-weight: 700;
      font-size: 1rem;
      padding: 14px 32px;
      border-radius: 50px;
      text-decoration: none;
      border: 2px solid var(--color-11);
      cursor: pointer;
      transition: var(--transition-1);
      text-transform: uppercase;
      letter-spacing: 1px;
      min-height: 44px;
      min-width: 44px;
    }

    .btnSecondary:hover {
      background: var(--color-11);
      color: var(--color-1);
      transform: translateY(-2px);
      box-shadow: 0 4px 25px rgba(0, 229, 255, 0.3);
    }

    a {
      color: var(--color-11);
      transition: var(--transition-1);
    }

    a:hover {
      color: var(--color-6);
    }

    p {
      color: var(--color-8);
      margin-bottom: var(--space-3);
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes pulseGlow {
      0%, 100% { box-shadow: 0 0 20px rgba(230, 57, 70, 0.3); }
      50% { box-shadow: 0 0 40px rgba(230, 57, 70, 0.6); }
    }

    @keyframes shimmer {
      0% { background-position: -200% 0; }
      100% { background-position: 200% 0; }
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    .animateIn {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .animateIn.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* === LAYOUT STYLES === */
    .siteHeader {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(10, 10, 15, 0.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      padding: var(--space-2) 0;
    }

    .headerInner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--space-3);
      min-height: 60px;
    }

    .logoLink {
      display: flex;
      flex-direction: column;
      text-decoration: none;
      line-height: 1;
      flex-shrink: 0;
    }

    .logoText {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      font-weight: 900;
      background: linear-gradient(135deg, var(--color-4), var(--color-5));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .logoSubtitle {
      font-size: 0.65rem;
      text-transform: uppercase;
      letter-spacing: 4px;
      color: var(--color-8);
      margin-top: -2px;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 10px;
      min-width: 44px;
      min-height: 44px;
      z-index: 1001;
    }

    .hamburger span {
      width: 26px;
      height: 2px;
      background: var(--color-7);
      transition: var(--transition-1);
      border-radius: 2px;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    .mainNav .navList {
      display: flex;
      align-items: center;
      list-style: none;
      margin: 0;
      padding: 0;
      gap: var(--space-5);
    }

    .mainNav .navList a {
      color: var(--color-8);
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      transition: var(--transition-1);
      position: relative;
      padding: var(--space-2) 0;
    }

    .mainNav .navList a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--color-4);
      transition: width 0.3s ease;
    }

    .mainNav .navList a:hover {
      color: var(--color-7);
    }

    .mainNav .navList a:hover::after {
      width: 100%;
    }

    .headerCta {
      max-width: 200px;
      font-size: 0.85rem;
      padding: 10px 24px;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .siteFooter {
      background: var(--color-2);
      border-top: 1px solid rgba(255,255,255,0.06);
      padding: var(--space-7) 0 var(--space-5);
      margin-top: var(--space-8);
    }

    .footerInner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: var(--space-4);
      text-align: center;
    }

    .footerNav .footerLinks {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      list-style: none;
      padding: 0;
      margin: 0;
      gap: var(--space-4);
    }

    .footerNav .footerLinks a {
      color: var(--color-8);
      text-decoration: none;
      font-size: 0.9rem;
      transition: var(--transition-1);
    }

    .footerNav .footerLinks a:hover {
      color: var(--color-4);
    }

    .copyright {
      color: rgba(196, 196, 212, 0.5);
      font-size: 0.85rem;
      margin: 0;
    }

    .footerBrand {
      margin-bottom: var(--space-3);
    }

    .footerBrand .logoText {
      font-size: 1.4rem;
    }

    .footerDisclaimer {
      max-width: 600px;
      font-size: 0.8rem;
      color: rgba(196, 196, 212, 0.4);
      line-height: 1.5;
    }

    @media (max-width: 767.98px) {
      .hamburger {
        display: flex;
      }

      .mainNav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-2);
        padding: 80px var(--space-5) var(--space-5);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
        border-left: 1px solid rgba(255,255,255,0.06);
      }

      .mainNav.open {
        right: 0;
      }

      .mainNav .navList {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-4);
      }

      .mainNav .navList a {
        font-size: 1.1rem;
      }

      .headerCta {
        display: none;
      }

      .mobileCtaWrap {
        display: block;
        padding: var(--space-2) var(--space-3);
        background: rgba(10, 10, 15, 0.92);
      }

      .mobileCtaWrap .btnPrimary {
        width: 100%;
        text-align: center;
      }

      .navOverlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.6);
        z-index: 998;
      }

      .navOverlay.active {
        display: block;
      }
    }

    @media (min-width: 768px) {
      .mobileCtaWrap {
        display: none;
      }

      .navOverlay {
        display: none !important;
      }
    }

@media (max-width: 767.98px) {
      .hamburger {
        display: flex;
      }

      .mainNav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-2);
        padding: 80px var(--space-5) var(--space-5);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
        border-left: 1px solid rgba(255,255,255,0.06);
      }

      .mainNav.open {
        right: 0;
      }

      .mainNav .navList {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-4);
      }

      .mainNav .navList a {
        font-size: 1.1rem;
      }

      .headerCta {
        display: none;
      }

      .mobileCtaWrap {
        display: block;
        padding: var(--space-2) var(--space-3);
        background: rgba(10, 10, 15, 0.92);
      }

      .mobileCtaWrap .btnPrimary {
        width: 100%;
        text-align: center;
      }

      .navOverlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.6);
        z-index: 998;
      }

      .navOverlay.active {
        display: block;
      }
    }