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

    :root {
      --navy: #0f2347;
      --navy-mid: #162d58;
      --navy-card: #0f1e40;
      --navy-border: #1e3260;
      --gold: #c8972a;
      --gold-light: #f5c96e;
      --gold-dim: rgba(200,151,42,0.12);
      --white: #ffffff;
      --muted: #8a98b8;
      --serif: 'Cormorant Garamond', Georgia, serif;
      --sans: 'Montserrat', sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--navy);
      color: var(--white);
      font-family: var(--sans);
      font-size: 15px;
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
    }

    /* ── HEADER ── */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      height: 80px;
      background: rgba(8,8,20,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(201,169,110,0.12);
    }

    .logo {
      font-family: var(--serif);
      font-size: 22px;
      font-weight: 500;
      color: var(--gold);
      text-decoration: none;
      letter-spacing: 0.04em;
    }
    .logo span { color: var(--white); font-weight: 300; }

    nav {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    nav a {
      font-family: var(--sans);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.25s;
    }
    nav a:hover, nav a.active { color: var(--gold); }

    .nav-cta {
      display: inline-block;
      padding: 10px 22px;
      border: 1px solid var(--gold);
      color: var(--gold) !important;
      font-size: 11px !important;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none;
      transition: background 0.25s, color 0.25s !important;
    }
    .nav-cta:hover {
      background: var(--gold);
      color: var(--navy) !important;
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      height: 480px;
      display: flex;
      align-items: flex-end;
      padding: 64px 80px;
      margin-top: 80px;
      overflow: hidden;
      background: var(--navy-mid);
    }
    .hero img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 40%;
      opacity: 0.45;
    }
    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(8,8,20,0.95) 0%, rgba(8,8,20,0.3) 60%, rgba(8,8,20,0.1) 100%);
    }
    .hero-content {
      position: relative;
      z-index: 1;
    }
    .hero-eyebrow {
      font-family: var(--sans);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }
    .hero h1 {
      font-family: var(--serif);
      font-size: clamp(48px, 6vw, 80px);
      font-weight: 300;
      line-height: 1.05;
      color: var(--white);
      margin-bottom: 20px;
    }
    .hero h1 em {
      font-style: italic;
      color: var(--gold-light);
    }
    .hero-sub {
      font-size: 14px;
      color: var(--muted);
      max-width: 480px;
    }

    /* ── MAIN CONTENT ── */
    main {
      max-width: 1280px;
      margin: 0 auto;
      padding: 80px 48px;
    }

    /* ── FEATURED POST ── */
    .featured-label {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 32px;
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .featured-label::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--navy-border);
    }

    .featured-post {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      background: var(--navy-card);
      border: 1px solid var(--navy-border);
      margin-bottom: 80px;
      text-decoration: none;
      color: inherit;
      transition: border-color 0.3s;
    }
    .featured-post:hover { border-color: rgba(201,169,110,0.4); }

    .featured-img {
      position: relative;
      overflow: hidden;
      min-height: 460px;
    }
    .featured-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .featured-post:hover .featured-img img { transform: scale(1.04); }

    .featured-img .tag {
      position: absolute;
      top: 24px;
      left: 24px;
      background: var(--gold);
      color: var(--navy);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 6px 14px;
    }

    .featured-body {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 56px 56px;
    }

    .post-category {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 18px;
    }

    .featured-body h2 {
      font-family: var(--serif);
      font-size: 38px;
      font-weight: 400;
      line-height: 1.2;
      color: var(--white);
      margin-bottom: 20px;
    }

    .post-excerpt {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 32px;
    }

    .post-meta {
      font-size: 12px;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 20px;
      border-top: 1px solid var(--navy-border);
      padding-top: 24px;
    }
    .post-meta strong { color: var(--white); font-weight: 400; }

    .read-more {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      margin-top: 28px;
    }
    .read-more::after {
      content: '→';
      transition: transform 0.2s;
    }
    .featured-post:hover .read-more::after { transform: translateX(6px); }

    /* ── BLOG GRID ── */
    .grid-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 40px;
    }

    .section-title {
      font-family: var(--serif);
      font-size: 32px;
      font-weight: 300;
      color: var(--white);
    }

    .filter-tabs {
      display: flex;
      gap: 6px;
    }
    .filter-tab {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      background: none;
      border: 1px solid transparent;
      padding: 7px 16px;
      cursor: pointer;
      transition: all 0.2s;
    }
    .filter-tab:hover { color: var(--gold); border-color: rgba(201,169,110,0.3); }
    .filter-tab.active { color: var(--gold); border-color: var(--gold); }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      margin-bottom: 64px;
    }

    .blog-card {
      background: var(--navy-card);
      border: 1px solid var(--navy-border);
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
      transition: border-color 0.3s, transform 0.3s;
    }
    .blog-card:hover {
      border-color: rgba(201,169,110,0.35);
      transform: translateY(-4px);
    }

    .card-img {
      position: relative;
      height: 220px;
      overflow: hidden;
    }
    .card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .blog-card:hover .card-img img { transform: scale(1.06); }

    .card-img .card-tag {
      position: absolute;
      bottom: 14px;
      left: 14px;
      background: rgba(8,8,20,0.8);
      border: 1px solid rgba(201,169,110,0.4);
      color: var(--gold);
      font-size: 9px;
      font-weight: 500;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      padding: 5px 12px;
    }

    .card-body {
      padding: 28px 28px 32px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .card-body h3 {
      font-family: var(--serif);
      font-size: 22px;
      font-weight: 400;
      line-height: 1.3;
      color: var(--white);
      margin-bottom: 12px;
    }

    .card-body p {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.75;
      flex: 1;
      margin-bottom: 24px;
    }

    .card-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 11px;
      color: var(--muted);
      border-top: 1px solid var(--navy-border);
      padding-top: 18px;
    }

    .card-arrow {
      color: var(--gold);
      font-size: 16px;
      transition: transform 0.2s;
    }
    .blog-card:hover .card-arrow { transform: translateX(4px); }
    .page-btn.active { background: var(--gold); border-color: var(--gold); color: var(--navy); font-weight: 600; }

    /* ── NEWSLETTER ── */
    .newsletter {
      background: var(--navy-card);
      border: 1px solid var(--navy-border);
      border-top: 2px solid var(--gold);
      padding: 64px 80px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      margin-bottom: 80px;
    }

    .newsletter h2 {
      font-family: var(--serif);
      font-size: 36px;
      font-weight: 300;
      line-height: 1.2;
      color: var(--white);
      margin-bottom: 14px;
    }
    .newsletter h2 em { font-style: italic; color: var(--gold-light); }

    .newsletter p {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.7;
    }

    .newsletter-form {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .newsletter-form input {
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--navy-border);
      color: var(--white);
      font-family: var(--sans);
      font-size: 13px;
      padding: 14px 18px;
      outline: none;
      transition: border-color 0.2s;
      width: 100%;
    }
    .newsletter-form input::placeholder { color: var(--muted); }
    .newsletter-form input:focus { border-color: rgba(201,169,110,0.5); }

    .newsletter-form button {
      background: var(--gold);
      color: var(--navy);
      border: none;
      font-family: var(--sans);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 15px 32px;
      cursor: pointer;
      transition: background 0.25s;
      align-self: flex-start;
    }
    .newsletter-form button:hover { background: var(--gold-light); }
    .newsletter-note { font-size: 11px; color: var(--muted); }

    /* ── FOOTER ── */
    footer {
      border-top: 1px solid var(--navy-border);
      padding: 48px 48px 32px;
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
    }

    footer .footer-logo {
      font-family: var(--serif);
      font-size: 18px;
      font-weight: 500;
      color: var(--gold);
      text-decoration: none;
    }
    footer .footer-logo span { color: var(--white); font-weight: 300; }

    footer p {
      font-size: 12px;
      color: var(--muted);
    }

    footer nav {
      gap: 24px;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .blog-grid { grid-template-columns: repeat(2, 1fr); }
      .featured-post { grid-template-columns: 1fr; }
      .featured-img { min-height: 300px; }
      .newsletter { grid-template-columns: 1fr; padding: 40px; }
    }

    @media (max-width: 768px) {
      header { padding: 0 24px; }
      nav { gap: 16px; }
      nav a { display: none; }
      nav a.nav-cta { display: inline-block; }
      .hero { padding: 40px 24px; height: 380px; }
      main { padding: 48px 24px; }
      .blog-grid { grid-template-columns: 1fr; }
      .featured-body { padding: 32px 28px; }
      .featured-body h2 { font-size: 28px; }
      .grid-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    }
  
.whatsapp-float{position:fixed;bottom:28px;right:28px;z-index:9999;background:#25D366;width:58px;height:58px;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 20px rgba(37,211,102,.45);transition:transform .2s,box-shadow .2s;text-decoration:none;}.whatsapp-float:hover{transform:scale(1.1);box-shadow:0 6px 28px rgba(37,211,102,.6);}.whatsapp-float svg{width:30px;height:30px;}