﻿:root {
      --bg-ivory: #FBF7EF;
      --bg-paper: #F6F0E6;
      --ink-deep: #111418;
      --ink-solid: #0B0F14;
      --burgundy: #9F1239;
      --burgundy-deep: #7F1D1D;
      --gold: #C9A45C;
      --gold-dark: #B8893C;
      --text-main: #111827;
      --text-muted: #6B7280;
      --border-light: rgba(17,24,39,.10);
      --border-gold: rgba(201,164,92,.22);
      --shadow-luxe: 0 26px 80px rgba(17,24,39,.08);
    }
    *,*::before,*::after{box-sizing:border-box;}
    html{width:100%;overflow-x:hidden;scroll-behavior:smooth;}
    body{
      width:100%;
      margin:0;
      overflow-x:hidden;
      background: var(--bg-ivory);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      line-height: 1.6;
    }
    img,video,iframe,embed{max-width:100%;height:auto;display:block;}
    a{text-decoration:none;transition:all 0.3s ease;}

    
    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      width:100%;
      background:rgba(17,20,24,.92);
      backdrop-filter:blur(20px) saturate(150%);
      border-bottom:1px solid rgba(201,164,92,.20);
      box-shadow:0 14px 44px rgba(17,24,39,.20);
    }
    .header-inner{
      width:min(1200px, calc(100% - 32px));
      min-height:76px;
      margin:0 auto;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .logo{
      display:inline-flex;
      align-items:center;
      gap:12px;
      min-width:0;
      max-width:100%;
      text-decoration:none;
      flex-shrink:0;
    }
    .logo img{
      display:block;
      height:40px;
      width:auto;
      max-width:150px;
      object-fit:contain;
      flex-shrink:0;
    }
    .logo span{
      display:inline-block;
      font-size:18px;
      font-weight:900;
      line-height:1.2;
      color:#F8FAFC;
      white-space:nowrap;
      max-width:190px;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .desktop-nav-wrap{
      flex:1 1 auto;
      min-width:0;
      display:flex;
      justify-content:flex-end;
      overflow:hidden;
    }
    .desktop-nav{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:8px;
      max-width:100%;
      overflow-x:auto;
      overflow-y:hidden;
      -webkit-overflow-scrolling:touch;
      scrollbar-width:none;
      white-space:nowrap;
    }
    .desktop-nav::-webkit-scrollbar{display:none;}
    .desktop-nav a{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:40px;
      padding:0 14px;
      border-radius:999px;
      color:#CBD5E1;
      text-decoration:none;
      font-size:14px;
      font-weight:800;
      line-height:1;
      white-space:nowrap;
      flex:0 0 auto;
      border:1px solid transparent;
    }
    .desktop-nav a:hover{
      color:#FFFFFF;
      background:rgba(201,164,92,.14);
      border-color:rgba(201,164,92,.30);
      box-shadow:0 8px 24px rgba(201,164,92,.12);
    }
    .mobile-menu-btn{
      display:none;
      width:46px;
      height:46px;
      border:1px solid rgba(201,164,92,.28);
      border-radius:16px;
      background:rgba(201,164,92,.10);
      align-items:center;
      justify-content:center;
      flex-direction:column;
      gap:5px;
      cursor:pointer;
      flex:0 0 auto;
      box-shadow:0 8px 20px rgba(17,24,39,.18);
    }
    .mobile-menu-btn span{
      display:block;
      width:20px;
      height:2px;
      border-radius:99px;
      background:#F8FAFC;
    }
    .mobile-nav-mask{
      position:fixed;
      inset:0;
      z-index:1100;
      background:rgba(15,23,42,.56);
      opacity:0;
      visibility:hidden;
      pointer-events:none;
      transition:opacity .25s ease, visibility .25s ease;
    }
    .mobile-drawer{
      position:fixed;
      top:0;
      left:0;
      z-index:1110;
      width:min(86vw, 360px);
      height:100vh;
      height:100dvh;
      max-width:90vw;
      background:linear-gradient(180deg,#111418 0%,#0B0F14 100%);
      color:#F8FAFC;
      transform:translateX(-105%);
      transition:transform .28s ease;
      box-shadow:24px 0 60px rgba(0,0,0,.34);
      display:flex;
      flex-direction:column;
      overflow:hidden;
    }
    .drawer-head{
      min-height:76px;
      padding:16px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      border-bottom:1px solid rgba(255,255,255,.12);
      flex:0 0 auto;
    }
    .drawer-logo img{height:34px;max-width:120px;}
    .drawer-logo span{font-size:16px;max-width:145px;color:#F8FAFC;}
    .drawer-close{
      width:40px;
      height:40px;
      border:0;
      border-radius:14px;
      background:rgba(255,255,255,.10);
      color:#F8FAFC;
      font-size:26px;
      line-height:1;
      cursor:pointer;
      flex:0 0 auto;
    }
    .drawer-body{
      flex:1 1 auto;
      min-height:0;
      overflow-y:auto;
      overflow-x:hidden;
      -webkit-overflow-scrolling:touch;
      padding:14px;
    }
    .drawer-nav{
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    .drawer-nav a{
      display:flex;
      align-items:center;
      width:100%;
      min-height:48px;
      padding:13px 14px;
      border-radius:14px;
      background:rgba(255,255,255,.08);
      color:#F8FAFC;
      text-decoration:none;
      font-size:15px;
      font-weight:800;
      line-height:1.35;
      white-space:normal;
      word-break:break-word;
      overflow-wrap:anywhere;
      border:1px solid rgba(255,255,255,.10);
    }
    .drawer-nav a:hover{
      background:rgba(201,164,92,.18);
    }
    body.drawer-open{overflow:hidden;touch-action:none;}
    body.drawer-open .mobile-nav-mask{opacity:1;visibility:visible;pointer-events:auto;}
    body.drawer-open .mobile-drawer{transform:translateX(0);}

    
    .hero-section {
      padding: 100px 0 80px;
      background: radial-gradient(circle at top right, rgba(201, 164, 92, 0.08), transparent 50%), var(--bg-paper);
      border-bottom: 1px solid var(--border-light);
    }
    .hero-inner {
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 48px;
      align-items: center;
    }
    .hero-content {
      max-width: 620px;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      background: rgba(159, 18, 57, 0.08);
      border: 1px solid rgba(159, 18, 57, 0.2);
      border-radius: 99px;
      color: var(--burgundy);
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 24px;
    }
    .hero-title {
      font-size: clamp(32px, 5vw, 52px);
      font-weight: 800;
      line-height: 1.15;
      color: var(--ink-deep);
      margin: 0 0 20px 0;
      letter-spacing: -0.02em;
    }
    .hero-title span {
      display: block;
      color: var(--burgundy);
      font-size: 0.9em;
    }
    .hero-desc {
      font-size: 17px;
      color: var(--text-muted);
      line-height: 1.7;
      margin: 0 0 32px 0;
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 54px;
      padding: 0 28px;
      border-radius: 8px;
      font-weight: 700;
      font-size: 15px;
      transition: all 0.3s ease;
      cursor: pointer;
    }
    .btn-primary {
      background: var(--burgundy);
      color: #fff;
      border: 1px solid var(--burgundy);
    }
    .btn-primary:hover {
      background: var(--burgundy-deep);
      border-color: var(--burgundy-deep);
      transform: translateY(-2px);
    }
    .btn-secondary {
      background: transparent;
      color: var(--ink-deep);
      border: 1px solid var(--border-light);
    }
    .btn-secondary:hover {
      background: rgba(17, 24, 39, 0.03);
      border-color: var(--ink-deep);
      transform: translateY(-2px);
    }

    
    .pathway-visual {
      background: #ffffff;
      border: 1px solid var(--border-gold);
      border-radius: 20px;
      padding: 32px;
      box-shadow: var(--shadow-luxe);
      position: relative;
      overflow: hidden;
    }
    .pathway-visual::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--burgundy), var(--gold));
    }
    .pathway-title {
      font-size: 18px;
      font-weight: 800;
      color: var(--ink-deep);
      margin: 0 0 20px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .pathway-badge {
      font-size: 12px;
      background: rgba(201, 164, 92, 0.15);
      color: var(--gold-dark);
      padding: 4px 10px;
      border-radius: 4px;
      font-weight: 600;
    }
    .pathway-steps {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .pathway-step {
      display: flex;
      gap: 16px;
      padding: 16px;
      border: 1px solid var(--border-light);
      border-radius: 12px;
      background: var(--bg-ivory);
      transition: all 0.3s ease;
    }
    .pathway-step:hover {
      border-color: var(--gold);
      transform: scale(1.02);
    }
    .step-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(159, 18, 57, 0.08);
      color: var(--burgundy);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      flex-shrink: 0;
    }
    .step-content {
      min-width: 0;
    }
    .step-name {
      font-size: 14px;
      font-weight: 700;
      color: var(--ink-deep);
      margin-bottom: 4px;
    }
    .step-desc {
      font-size: 12px;
      color: var(--text-muted);
      margin: 0;
    }

    
    .services-section {
      padding: 80px 0;
      background: var(--bg-ivory);
    }
    .section-header {
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto 50px;
      text-align: center;
      max-width: 700px;
    }
    .section-subtitle {
      font-size: 14px;
      color: var(--burgundy);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 12px;
    }
    .section-title {
      font-size: clamp(26px, 4vw, 38px);
      font-weight: 800;
      color: var(--ink-deep);
      margin: 0 0 16px 0;
    }
    .section-desc {
      font-size: 16px;
      color: var(--text-muted);
      margin: 0;
    }
    .grid-container {
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 28px;
    }
    .service-card {
      background: #ffffff;
      border: 1px solid var(--border-light);
      border-radius: 16px;
      padding: 32px;
      transition: all 0.3s ease;
      position: relative;
    }
    .service-card:hover {
      border-color: var(--gold);
      transform: translateY(-5px);
      box-shadow: var(--shadow-luxe);
    }
    .service-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 32px; right: 32px;
      height: 2px;
      background: var(--gold);
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }
    .service-card:hover::after {
      transform: scaleX(1);
    }
    .service-icon {
      width: 52px;
      height: 52px;
      border-radius: 12px;
      background: rgba(201, 164, 92, 0.12);
      color: var(--gold-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin-bottom: 24px;
    }
    .service-card-title {
      font-size: 19px;
      font-weight: 800;
      color: var(--ink-deep);
      margin: 0 0 12px 0;
    }
    .service-card-desc {
      font-size: 14px;
      color: var(--text-muted);
      margin: 0 0 20px 0;
      line-height: 1.6;
    }
    .service-bullets {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .service-bullet {
      font-size: 13px;
      color: var(--text-main);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .service-bullet::before {
      content: '✓';
      color: var(--burgundy);
      font-weight: bold;
    }

    
    .dark-adv-section {
      background: var(--ink-deep);
      color: #fff;
      padding: 80px 0;
    }
    .dark-inner {
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 48px;
      align-items: center;
    }
    .dark-title {
      font-size: clamp(26px, 4vw, 36px);
      font-weight: 800;
      line-height: 1.2;
      margin: 0 0 20px 0;
      color: #fff;
    }
    .dark-title span {
      color: var(--gold);
    }
    .dark-desc {
      color: rgba(255,255,255,0.7);
      font-size: 16px;
      line-height: 1.7;
      margin-bottom: 32px;
    }
    .adv-panels {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .adv-panel {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.08);
      border-left: 4px solid var(--gold);
      padding: 24px;
      border-radius: 0 12px 12px 0;
    }
    .panel-headline {
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      margin: 0 0 8px 0;
    }
    .panel-body {
      font-size: 13.5px;
      color: rgba(255,255,255,0.65);
      margin: 0;
    }

    
    .insights-section {
      padding: 80px 0;
      background: var(--bg-paper);
    }
    .articles-grid {
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 24px;
    }
    .insight-card {
      background: #ffffff;
      border-radius: 12px;
      border: 1px solid var(--border-light);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: all 0.3s ease;
    }
    .insight-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-luxe);
    }
    .insight-img-wrap {
      aspect-ratio: 16 / 10;
      overflow: hidden;
      background: #eaeaea;
    }
    .insight-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .insight-body {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }
    .insight-meta {
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .insight-title {
      font-size: 16px;
      font-weight: 800;
      color: var(--ink-deep);
      margin: 0 0 10px 0;
      line-height: 1.4;
    }
    .insight-summary {
      font-size: 13px;
      color: var(--text-muted);
      margin: 0 0 16px 0;
      line-height: 1.5;
    }
    .insight-tags {
      margin-top: auto;
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }
    .insight-tag {
      font-size: 11px;
      background: rgba(17,24,39,0.05);
      color: var(--text-main);
      padding: 2px 8px;
      border-radius: 4px;
    }

    
    .cta-banner {
      background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-deep) 100%);
      color: #fff;
      padding: 80px 0;
      text-align: center;
    }
    .cta-inner {
      width: min(800px, calc(100% - 32px));
      margin: 0 auto;
    }
    .cta-title {
      font-size: clamp(24px, 4vw, 36px);
      font-weight: 800;
      margin: 0 0 16px 0;
    }
    .cta-desc {
      font-size: 16px;
      color: rgba(255,255,255,0.85);
      margin: 0 0 32px 0;
    }

    
    .site-footer{
      position:relative;
      width:100%;
      background:linear-gradient(180deg,#111418 0%,#0B0F14 100%);
      color:#F8FAFC;
      padding:60px 0 24px;
      overflow:hidden;
      border-top:1px solid rgba(201,164,92,.18);
    }
    .site-footer .logo span{color:#F8FAFC;}
    .footer-inner{
      width:min(1200px, calc(100% - 32px));
      margin:0 auto;
      display:grid;
      grid-template-columns:minmax(260px,1.35fr) repeat(3,minmax(150px,1fr));
      gap:28px;
      align-items:start;
    }
    .footer-brand,.footer-column{min-width:0;}
    .footer-brand p{
      margin:16px 0 0;
      color:rgba(248,250,252,.76);
      line-height:1.8;
      font-size:14px;
      word-break:break-word;
      overflow-wrap:anywhere;
    }
    .footer-column h3{
      margin:0 0 14px;
      font-size:15px;
      color:#fff;
    }
    .footer-column ul{
      list-style:none;
      margin:0;
      padding:0;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .footer-column a,.footer-column span{
      display:inline;
      color:rgba(248,250,252,.76);
      text-decoration:none;
      font-size:14px;
      line-height:1.55;
      white-space:normal;
      word-break:break-word;
      overflow-wrap:anywhere;
    }
    .footer-column a:hover{color:#fff;}
    .footer-bottom{
      width:min(1200px, calc(100% - 32px));
      margin:32px auto 0;
      padding-top:20px;
      border-top:1px solid rgba(255,255,255,.10);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      color:rgba(248,250,252,.62);
      font-size:13px;
    }
    .footer-bottom p{
      margin:0;
      min-width:0;
      word-break:break-word;
      overflow-wrap:anywhere;
    }
    .footer-bottom a{
      color:rgba(248,250,252,.76);
      text-decoration:none;
      word-break:break-word;
      overflow-wrap:anywhere;
    }

    @media (max-width:900px){
      .hero-inner { grid-template-columns: 1fr; gap: 36px; }
      .dark-inner { grid-template-columns: 1fr; gap: 32px; }
      .footer-inner{grid-template-columns:1fr 1fr;gap:24px;}
      .footer-brand{grid-column:1 / -1;}
      .footer-bottom{flex-direction:column;align-items:flex-start;gap:8px;}
      .header-inner{width:min(100% - 24px, 1200px);min-height:68px;gap:12px;}
      .desktop-nav-wrap,.desktop-nav{display:none !important;}
      .mobile-menu-btn{display:inline-flex !important;}
      .logo img{height:34px;max-width:118px;}
      .logo span{font-size:16px;max-width:145px;}
    }
    @media (max-width:640px){
      .footer-inner{grid-template-columns:1fr;}
      .footer-inner,.footer-bottom{width:min(100% - 24px, 1200px);}
    }
    @media (max-width:420px){
      .mobile-drawer{width:88vw;}
      .logo span{max-width:118px;}
    }