:root{
      --bg:#0f172a;
      --section:#e5e7eb;
      --primary:#f97316;
      --text:#111827;
      --light:#f8fafc;
      --white:#ffffff;
      --border:#d1d5db;
    }
    *{box-sizing:border-box}
    body{
      margin:0;
      font-family:'Inter',sans-serif;
      color:var(--text);
      background:linear-gradient(180deg,#f8fafc 0%, #eef2f7 100%);
    }
    h1,h2,h3,h4,h5,h6{
      font-family:'Playfair Display',serif;
      text-transform:uppercase;
      letter-spacing:.04em;
      color:var(--text);
    }
    a{
      text-decoration:none;
      color:inherit;
      transition:all .25s ease;
    }
    .site-shell{
      max-width:1440px;
      margin:0 auto;
      padding:12px;
    }
    .glass-nav{
      background:rgba(255,255,255,.84);
      backdrop-filter:blur(8px);
      border:1px solid rgba(209,213,219,.9);
      border-radius:24px;
      padding:10px 14px;
      box-shadow:0 10px 30px rgba(15,23,42,.06);
      position:sticky;
      top:12px;
      z-index:1030;
    }
    .brand-mark{
      width:42px;
      height:42px;
      border-radius:14px;
      background:var(--primary);
      color:#fff;
      display:grid;
      place-items:center;
      font-weight:700;
      box-shadow:0 8px 20px rgba(249,115,22,.25);
    }
    .brand-title{
      font-family:'Playfair Display',serif;
      font-size:1.1rem;
      letter-spacing:.08em;
      text-transform:uppercase;
      margin:0;
    }
    .brand-sub{
      font-size:.78rem;
      color:#4b5563;
      margin:0;
    }
    .nav-link{
      font-weight:600;
      color:var(--text);
      padding:.6rem 1rem !important;
      border-radius:999px;
    }
    .nav-link:hover{
      color:var(--primary);
      background:rgba(249,115,22,.08);
    }
    .navbar-toggler{
      border:1px solid var(--border);
      border-radius:14px;
      padding:.55rem .7rem;
      box-shadow:none !important;
    }
    .hero-wrap{
      margin-top:14px;
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:12px;
    }
    .hero-main,.hero-side,.feature-card,.content-panel,.footer-wrap{
      background:var(--section);
      border:1px solid rgba(17,24,39,.08);
      border-radius:32px;
      overflow:hidden;
      box-shadow:0 12px 30px rgba(15,23,42,.05);
    }
    .hero-main{
      position:relative;
      min-height:560px;
    }
    .hero-main img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
      border:10px solid #fff;
      border-radius:32px;
      transform:scale(1);
      transition:transform .45s ease;
    }
    .hero-main:hover img{transform:scale(1.025)}
    .hero-overlay{
      position:absolute;
      inset:auto 18px 18px 18px;
      background:rgba(255,255,255,.9);
      border:1px solid rgba(209,213,219,.95);
      border-radius:28px;
      padding:20px;
      max-width:78%;
      box-shadow:0 10px 24px rgba(15,23,42,.08);
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      font-size:.76rem;
      text-transform:uppercase;
      font-weight:700;
      color:var(--primary);
      background:rgba(249,115,22,.08);
      border:1px solid rgba(249,115,22,.2);
      border-radius:999px;
      padding:7px 12px;
      margin-bottom:12px;
    }
    .hero-title{
      font-size:clamp(2rem,4vw,4.2rem);
      line-height:.95;
      margin-bottom:12px;
    }
    .hero-text{
      color:#374151;
      font-size:1rem;
      max-width:52ch;
      margin-bottom:16px;
    }
    .btn-outline-brand{
      border:2px solid var(--primary);
      color:var(--primary);
      background:transparent;
      border-radius:999px;
      padding:.8rem 1.25rem;
      font-weight:700;
      letter-spacing:.02em;
    }
    .btn-outline-brand:hover{
      background:var(--primary);
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 10px 20px rgba(249,115,22,.18);
    }
    .hero-side{
      padding:18px;
      display:grid;
      gap:12px;
      align-content:space-between;
    }
    .side-block{
      background:#fff;
      border:1px solid var(--border);
      border-radius:24px;
      padding:18px;
      transition:transform .25s ease, box-shadow .25s ease;
    }
    .side-block:hover{
      transform:translateY(-4px);
      box-shadow:0 12px 24px rgba(15,23,42,.07);
    }
    .metric{
      font-size:2rem;
      font-weight:800;
      line-height:1;
      color:var(--primary);
      margin-bottom:6px;
    }
    .mini-list{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:10px;
    }
    .mini-list li{
      padding:10px 0;
      border-bottom:1px solid #e5e7eb;
      font-size:.95rem;
      color:#374151;
    }
    .mini-list li:last-child{border-bottom:0}
    .section-heading{
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap:10px;
      margin:18px 2px 12px;
    }
    .section-heading h2{
      margin:0;
      font-size:clamp(1.35rem,2vw,2rem);
    }
    .section-heading p{
      margin:0;
      color:#4b5563;
      max-width:48ch;
    }
    .features-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr .9fr;
      gap:12px;
    }
    .feature-card{
      padding:18px;
      min-height:220px;
      position:relative;
    }
    .feature-card.primary{
      background:linear-gradient(180deg,#fff7ed 0%, #e5e7eb 100%);
    }
    .feature-icon{
      width:52px;
      height:52px;
      border-radius:18px;
      display:grid;
      place-items:center;
      background:rgba(249,115,22,.12);
      color:var(--primary);
      margin-bottom:14px;
      font-size:1.35rem;
      border:1px solid rgba(249,115,22,.16);
    }
    .feature-card h3{
      font-size:1.15rem;
      margin-bottom:10px;
    }
    .feature-card p{
      color:#4b5563;
      margin:0;
    }
    .content-panel{
      padding:18px;
    }
    .carousel-shell{
      display:grid;
      grid-template-columns:.85fr 1.15fr;
      gap:14px;
      align-items:stretch;
    }
    .carousel-intro{
      background:#fff;
      border:1px solid var(--border);
      border-radius:26px;
      padding:20px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      min-height:100%;
    }
    .carousel-intro p{
      color:#4b5563;
      margin:12px 0 18px;
    }
    .carousel{
      border-radius:26px;
      overflow:hidden;
    }
    .carousel-item-inner{
      background:#fff;
      border:1px solid var(--border);
      border-radius:26px;
      overflow:hidden;
      display:grid;
      grid-template-columns:1fr 1fr;
      min-height:390px;
    }
    .carousel-item-inner img{
      width:100%;
      height:100%;
      object-fit:cover;
      border:10px solid #fff;
      border-radius:26px;
      padding:0;
      background:#fff;
    }
    .post-copy{
      padding:22px;
      display:flex;
      flex-direction:column;
      justify-content:center;
    }
    .post-copy h3{
      font-size:1.35rem;
      margin-bottom:10px;
    }
    .post-copy p{
      color:#4b5563;
      margin-bottom:18px;
    }
    .carousel-control-prev,
    .carousel-control-next{
      width:52px;
      height:52px;
      top:auto;
      bottom:18px;
      opacity:1;
      background:#fff;
      border:1px solid var(--border);
      border-radius:999px;
      transform:none;
    }
    .carousel-control-prev{left:auto; right:80px;}
    .carousel-control-next{right:18px;}
    .carousel-control-prev-icon,
    .carousel-control-next-icon{
      filter:invert(49%) sepia(95%) saturate(2330%) hue-rotate(352deg) brightness(100%) contrast(96%);
      width:1.1rem;
      height:1.1rem;
    }
    .footer-wrap{
      margin-top:18px;
      padding:24px 20px;
      background:linear-gradient(180deg,#f8fafc 0%, #e5e7eb 100%);
    }
    .footer-title{
      font-size:1rem;
      margin-bottom:12px;
    }
    .footer-link{
      display:block;
      color:#4b5563;
      padding:.3rem 0;
      font-size:.95rem;
    }
    .footer-link:hover{
      color:var(--primary);
      transform:translateX(4px);
    }
    .footer-note{
      color:#6b7280;
      font-size:.92rem;
      margin-top:10px;
    }
    .badge-soft{
      display:inline-block;
      padding:6px 10px;
      border-radius:999px;
      background:#fff;
      border:1px solid var(--border);
      font-size:.78rem;
      font-weight:700;
      color:#374151;
      margin:.2rem .15rem 0 0;
    }
    @media (max-width: 1199.98px){
      .hero-wrap,
      .features-grid,
      .carousel-shell,
      .carousel-item-inner{
        grid-template-columns:1fr;
      }
      .hero-overlay{
        position:static;
        max-width:none;
        margin:12px;
      }
      .hero-main{
        min-height:auto;
        display:flex;
        flex-direction:column;
      }
      .hero-main img{
        max-height:420px;
      }
    }
    @media (max-width: 767.98px){
      .site-shell{padding:10px}
      .glass-nav,
      .hero-main,
      .hero-side,
      .feature-card,
      .content-panel,
      .footer-wrap{border-radius:24px}
      .hero-title{font-size:2rem}
      .post-copy{padding:18px}
      .carousel-control-prev{right:74px}
      .carousel-control-prev,
      .carousel-control-next{
        width:46px;
        height:46px;
        bottom:14px;
      }
    }
