    :root {
      --forest: #1a2e22;
      --forest-d: #111e17;
      --forest-m: #1e3528;
      --forest-l: #2e5040;
      --forest-f: #f0f5f1;
      --gold: #b08d57;
      --gold-l: #d4af70;
      --gold-pale: #f5edda;
      --gold-xp: #faf6ee;
      --cream: #f8f4ec;
      --cream-d: #e4d9c4;
      --border: #e5dfd2;
      --ink: #1a1a1a;
      --slate: #444;
      --muted: #777;
      --light: #aaa;
      --white: #fff;
      --red: #c0392b;
      --green: #27ae60;
      --amber: #e67e22;
      --blue: #2471a3;
      --shadow: 0 4px 24px rgba(26, 46, 34, .09);
      --shadow-lg: 0 14px 52px rgba(26, 46, 34, .13);
      --r: 10px;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box
    }

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--ink);
      overflow-x: hidden
    }

    /* ── NAV ── */
    .topnav {
      background: var(--forest-d);
      padding: 0 5vw;
      display: flex;
      align-items: center;
      gap: 14px;
      height: 62px;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 400;
      border-bottom: 1px solid rgba(176, 141, 87, .15)
    }

    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      color: #fff;
      font-weight: 400;
      text-decoration: none;
      flex-shrink: 0
    }

    .nav-logo span {
      color: var(--gold-l)
    }

    .nav-links {
      display: flex;
      gap: 4px;
      flex: 1;
      margin-left: 22px
    }

    .nav-link {
      color: rgba(255, 255, 255, .5);
      font-size: 12.5px;
      font-weight: 500;
      padding: 6px 12px;
      border-radius: 4px;
      cursor: pointer;
      transition: .2s;
      text-decoration: none
    }

    .nav-link:hover {
      color: rgba(255, 255, 255, .85)
    }

    .nav-link.active {
      color: var(--gold-l)
    }

    .nav-actions {
      display: flex;
      gap: 8px;
      margin-left: auto
    }

    .btn-nav {
      padding: 8px 18px;
      border-radius: 5px;
      font-family: 'DM Sans', sans-serif;
      font-size: 12px;
      font-weight: 700;
      cursor: pointer;
      border: none;
      transition: .2s
    }

    .btn-ghost {
      background: transparent;
      border: 1.5px solid rgba(255, 255, 255, .2) !important;
      color: rgba(255, 255, 255, .7)
    }

    .btn-ghost:hover {
      border-color: var(--gold-l) !important;
      color: var(--gold-l)
    }

    .btn-gold {
      background: var(--gold);
      color: var(--forest)
    }

    .btn-gold:hover {
      background: var(--gold-l)
    }

    /* ── READING BAR ── */
    .rbar {
      position: fixed;
      top: 62px;
      left: 0;
      right: 0;
      height: 3px;
      z-index: 500;
      background: transparent
    }

    .rbar-fill {
      height: 100%;
      background: var(--gold);
      width: 0%;
      transition: .1s linear
    }

    /* ── HERO ── */
    .hero {
      min-height: 42vh;
      background: var(--forest-d);
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      margin-top: 62px;
      overflow: hidden
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1600&q=80') center/cover;
      opacity: .08;
      filter: saturate(.3) sepia(.3)
    }

    .hero-ov {
      position: absolute;
      inset: 0;
      background: linear-gradient(155deg, rgba(17, 30, 23, .97) 0%, rgba(17, 30, 23, .9) 55%, rgba(26, 46, 34, .75) 100%)
    }

    .hero-dots {
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(176, 141, 87, .06) 1px, transparent 1px);
      background-size: 32px 32px;
      pointer-events: none
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      padding: 52px 5vw 0
    }

    .hero-layout {
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 48px;
      align-items: end
    }

    .h-badge {
      background: rgba(176, 141, 87, .14);
      border: 1px solid rgba(176, 141, 87, .25);
      color: var(--gold-l);
      padding: 5px 13px;
      border-radius: 20px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      display: inline-block;
      margin-bottom: 16px
    }

    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(34px, 5vw, 58px);
      font-weight: 300;
      color: #fff;
      line-height: 1.07;
      margin-bottom: 12px
    }

    .hero-title em {
      font-style: italic;
      color: var(--gold-l)
    }

    .hero-desc {
      font-size: 13.5px;
      color: rgba(255, 255, 255, .4);
      line-height: 1.9;
      max-width: 560px;
      margin-bottom: 26px
    }

    .hero-pills {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      padding-bottom: 44px
    }

    .hero-pill {
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .1);
      color: rgba(255, 255, 255, .55);
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 11.5px;
      font-weight: 600;
      cursor: pointer;
      transition: .2s
    }

    .hero-pill:hover,
    .hero-pill.active {
      background: rgba(176, 141, 87, .15);
      border-color: rgba(176, 141, 87, .3);
      color: var(--gold-l)
    }

    .hero-stats {
      display: flex;
      flex-direction: column;
      gap: 12px;
      padding-bottom: 44px;
      align-items: flex-end
    }

    .h-stat-row {
      display: flex;
      gap: 20px
    }

    .h-stat {
      text-align: right
    }

    .h-stat-val {
      font-family: 'Cormorant Garamond', serif;
      font-size: 34px;
      color: var(--gold-l);
      line-height: 1
    }

    .h-stat-lab {
      font-size: 10px;
      color: rgba(255, 255, 255, .28);
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-top: 2px
    }

    .h-vsep {
      width: 1px;
      height: 40px;
      background: rgba(255, 255, 255, .08)
    }

    .bc-strip {
      background: rgba(176, 141, 87, .07);
      border-top: 1px solid rgba(176, 141, 87, .1);
      padding: 9px 5vw;
      position: relative;
      z-index: 3
    }

    .bc {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      color: rgba(255, 255, 255, .28)
    }

    .bc a {
      color: rgba(255, 255, 255, .28);
      text-decoration: none;
      transition: .2s
    }

    .bc a:hover {
      color: var(--gold-l)
    }

    .bc-sep {
      color: rgba(255, 255, 255, .12)
    }

    .bc-cur {
      color: var(--gold-l);
      font-weight: 600
    }

    /* ── STICKY SEARCH BAR ── */
    .sticky-search {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding: 12px 5vw;
      position: sticky;
      top: 62px;
      z-index: 300;
      box-shadow: 0 2px 12px rgba(0, 0, 0, .05)
    }

    .sticky-search-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      gap: 12px;
      align-items: center;
      flex-wrap: wrap
    }

    .search-wrap {
      position: relative;
      flex: 1;
      min-width: 240px
    }

    .search-wrap::before {
      content: '🔍';
      position: absolute;
      left: 13px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 15px;
      pointer-events: none
    }

    #faq-search {
      width: 100%;
      padding: 12px 14px 12px 40px;
      border: 1.5px solid var(--border);
      border-radius: 8px;
      font-family: 'DM Sans', sans-serif;
      font-size: 13.5px;
      outline: none;
      transition: .22s;
      background: var(--cream)
    }

    #faq-search:focus {
      border-color: var(--gold);
      background: var(--white);
      box-shadow: 0 0 0 3px rgba(176, 141, 87, .1)
    }

    .cat-filter-row {
      display: flex;
      gap: 6px;
      flex-wrap: wrap
    }

    .cat-btn {
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
      cursor: pointer;
      border: 1.5px solid var(--border);
      background: transparent;
      color: var(--muted);
      font-family: 'DM Sans', sans-serif;
      transition: .2s;
      white-space: nowrap
    }

    .cat-btn:hover {
      border-color: var(--gold);
      color: var(--forest)
    }

    .cat-btn.active {
      background: var(--forest);
      border-color: var(--forest);
      color: #fff
    }

    .faq-counter {
      font-size: 12px;
      color: var(--muted);
      margin-left: auto;
      white-space: nowrap;
      flex-shrink: 0
    }

    #visible-count {
      font-weight: 700;
      color: var(--forest)
    }

    /* ── TRENDING STRIP ── */
    .trending-strip {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding: 10px 5vw;
      overflow: hidden
    }

    .trending-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 12px;
      overflow-x: auto;
      scrollbar-width: none
    }

    .trending-inner::-webkit-scrollbar {
      display: none
    }

    .trending-label {
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      flex-shrink: 0;
      display: flex;
      align-items: center;
      gap: 5px
    }

    .trending-label::before {
      content: '🔥';
      font-size: 13px
    }

    .trending-chip {
      background: var(--gold-pale);
      border: 1px solid var(--cream-d);
      color: var(--forest);
      padding: 5px 13px;
      border-radius: 20px;
      font-size: 11.5px;
      font-weight: 600;
      cursor: pointer;
      transition: .2s;
      white-space: nowrap;
      flex-shrink: 0
    }

    .trending-chip:hover {
      background: var(--gold-pale);
      border-color: var(--gold)
    }

    /* ── MAIN LAYOUT ── */
    .main-wrap {
      max-width: 1280px;
      margin: 0 auto;
      padding: 36px 5vw 80px;
      display: grid;
      grid-template-columns: 260px 1fr;
      gap: 36px;
      align-items: start
    }

    /* ── SIDEBAR ── */
    .sidebar {
      position: sticky;
      top: 130px;
      display: flex;
      flex-direction: column;
      gap: 14px
    }

    .sbar-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--r);
      overflow: hidden
    }

    .sbar-head {
      background: var(--forest);
      padding: 14px 18px
    }

    .sbar-title {
      font-size: 13px;
      font-weight: 700;
      color: #fff
    }

    .sbar-sub {
      font-size: 10.5px;
      color: rgba(255, 255, 255, .38);
      margin-top: 2px
    }

    .sbar-list {
      padding: 6px 0
    }

    .sbar-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 16px;
      font-size: 12.5px;
      font-weight: 500;
      color: var(--slate);
      cursor: pointer;
      transition: .18s;
      border-left: 3px solid transparent;
      text-decoration: none
    }

    .sbar-item:hover {
      background: var(--gold-xp);
      color: var(--forest);
      border-left-color: var(--gold)
    }

    .sbar-item.active {
      background: var(--gold-xp);
      color: var(--forest);
      font-weight: 700;
      border-left-color: var(--gold)
    }

    .sbar-count {
      font-size: 10px;
      color: var(--muted);
      margin-left: auto;
      background: var(--cream);
      padding: 2px 7px;
      border-radius: 10px
    }

    .sbar-item.active .sbar-count {
      background: var(--gold);
      color: var(--forest);
      font-weight: 700
    }

    /* Help card */
    .help-card {
      background: var(--forest);
      border-radius: var(--r);
      padding: 20px;
      text-align: center
    }

    .help-icon {
      font-size: 28px;
      margin-bottom: 10px;
      display: block
    }

    .help-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      color: #fff;
      margin-bottom: 6px
    }

    .help-sub {
      font-size: 12px;
      color: rgba(255, 255, 255, .4);
      line-height: 1.6;
      margin-bottom: 14px
    }

    .help-btn {
      display: block;
      background: var(--gold);
      color: var(--forest);
      padding: 11px;
      border-radius: 6px;
      font-size: 13px;
      font-weight: 700;
      text-decoration: none;
      transition: .2s;
      margin-bottom: 8px;
      text-align: center
    }

    .help-btn:hover {
      background: var(--gold-l)
    }

    .help-btn2 {
      display: block;
      background: transparent;
      color: rgba(255, 255, 255, .5);
      border: 1px solid rgba(255, 255, 255, .15);
      padding: 9px;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 600;
      text-decoration: none;
      transition: .2s;
      text-align: center
    }

    .help-btn2:hover {
      border-color: var(--gold-l);
      color: var(--gold-l)
    }

    /* Stats mini */
    .mini-stats {
      background: var(--forest-f);
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 16px
    }

    .ms-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 5px 0;
      border-bottom: 1px solid var(--border)
    }

    .ms-row:last-child {
      border-bottom: none
    }

    .ms-label {
      font-size: 11.5px;
      color: var(--muted)
    }

    .ms-val {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      color: var(--gold);
      font-weight: 400
    }

    /* ── FAQ CONTENT ── */
    .faq-content {}

    .section-block {
      margin-bottom: 40px
    }

    .section-anchor {
      padding-top: 12px
    }

    .section-header {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 18px;
      padding-bottom: 12px;
      border-bottom: 2px solid var(--border);
      position: relative
    }

    .section-header::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 56px;
      height: 2px;
      background: var(--gold)
    }

    .sh-icon {
      width: 42px;
      height: 42px;
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0
    }

    .sh-cat {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 2px
    }

    .sh-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      color: var(--forest);
      font-weight: 400
    }

    .sh-count {
      margin-left: auto;
      background: var(--forest-f);
      border: 1px solid var(--border);
      color: var(--muted);
      font-size: 11px;
      font-weight: 600;
      padding: 3px 10px;
      border-radius: 20px;
      flex-shrink: 0
    }

    /* FAQ Items */
    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 8px
    }

    .faq-item {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--r);
      overflow: hidden;
      transition: .22s
    }

    .faq-item:hover {
      box-shadow: var(--shadow)
    }

    .faq-item[data-hidden="true"] {
      display: none
    }

    .faq-q {
      padding: 16px 20px;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      cursor: pointer;
      gap: 14px;
      transition: .18s
    }

    .faq-q:hover {
      background: var(--gold-xp)
    }

    .faq-item.open .faq-q {
      background: var(--gold-xp)
    }

    .faq-q-left {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      flex: 1
    }

    .faq-q-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      color: var(--border);
      line-height: 1;
      flex-shrink: 0;
      width: 24px;
      margin-top: 1px;
      text-align: right
    }

    .faq-item.open .faq-q-num {
      color: var(--gold)
    }

    .faq-q-text {
      font-size: 14px;
      font-weight: 600;
      color: var(--forest);
      line-height: 1.55;
      flex: 1
    }

    .faq-q-meta {
      display: flex;
      align-items: center;
      gap: 7px;
      flex-shrink: 0;
      margin-top: 2px
    }

    .faq-tag {
      font-size: 9.5px;
      font-weight: 700;
      padding: 2px 7px;
      border-radius: 4px;
      letter-spacing: .4px;
      text-transform: uppercase;
      white-space: nowrap
    }

    .tag-trending {
      background: rgba(230, 126, 34, .1);
      color: var(--amber)
    }

    .tag-seo {
      background: rgba(36, 113, 163, .1);
      color: var(--blue)
    }

    .tag-new {
      background: rgba(39, 174, 96, .1);
      color: var(--green)
    }

    .tag-legal {
      background: rgba(192, 57, 43, .1);
      color: var(--red)
    }

    .tag-nri {
      background: rgba(106, 27, 154, .1);
      color: #7b1fa2
    }

    .faq-ico {
      font-size: 18px;
      color: var(--muted);
      transition: .3s;
      flex-shrink: 0;
      margin-top: 2px
    }

    .faq-item.open .faq-ico {
      transform: rotate(45deg);
      color: var(--gold)
    }

    .faq-a {
      display: none;
      padding: 0 20px 18px 56px;
      border-top: 1px solid var(--border)
    }

    .faq-item.open .faq-a {
      display: block
    }

    .faq-a-text {
      font-size: 13.5px;
      color: var(--slate);
      line-height: 1.85;
      padding-top: 14px
    }

    .faq-a-text strong {
      color: var(--forest);
      font-weight: 700
    }

    .faq-a-text ul,
    .faq-a-text ol {
      margin: 10px 0 10px 20px
    }

    .faq-a-text li {
      margin-bottom: 5px;
      line-height: 1.7
    }

    .faq-a-text a {
      color: var(--gold);
      text-decoration: none;
      font-weight: 600
    }

    .faq-a-text a:hover {
      color: var(--forest)
    }

    .faq-highlight {
      background: var(--forest-f);
      border-left: 3px solid var(--gold);
      padding: 12px 15px;
      border-radius: 0 7px 7px 0;
      margin-top: 12px;
      font-size: 13px;
      color: var(--forest);
      line-height: 1.7
    }

    .faq-highlight strong {
      font-weight: 700
    }

    .faq-a-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 14px;
      padding-top: 12px;
      border-top: 1px solid var(--border);
      flex-wrap: wrap
    }

    .faq-helpful {
      font-size: 11.5px;
      color: var(--muted)
    }

    .faq-helpful-btn {
      background: var(--cream);
      border: 1px solid var(--border);
      color: var(--slate);
      padding: 5px 12px;
      border-radius: 5px;
      font-size: 11.5px;
      font-weight: 600;
      cursor: pointer;
      transition: .18s;
      font-family: 'DM Sans', sans-serif
    }

    .faq-helpful-btn:hover {
      background: var(--gold-pale);
      border-color: var(--gold);
      color: var(--forest)
    }

    .faq-share {
      font-size: 11px;
      color: var(--light);
      margin-left: auto;
      cursor: pointer;
      transition: .18s
    }

    .faq-share:hover {
      color: var(--gold)
    }

    /* No results */
    .no-results {
      text-align: center;
      padding: 60px 20px;
      display: none
    }

    .no-results.show {
      display: block
    }

    .nr-icon {
      font-size: 48px;
      margin-bottom: 12px
    }

    .nr-title {
      font-size: 18px;
      font-weight: 700;
      color: var(--forest);
      margin-bottom: 6px
    }

    .nr-sub {
      font-size: 13.5px;
      color: var(--muted)
    }

    /* ── TOPIC PAGES STRIP ── */
    .topic-strip {
      background: var(--white);
      border-radius: var(--r);
      border: 1px solid var(--border);
      padding: 24px;
      margin-bottom: 28px
    }

    .ts-label {
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 7px
    }

    .ts-label::before {
      content: '';
      width: 20px;
      height: 1.5px;
      background: var(--gold);
      border-radius: 2px
    }

    .ts-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px
    }

    .ts-card {
      background: var(--cream);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 14px;
      transition: .22s;
      cursor: pointer;
      text-decoration: none
    }

    .ts-card:hover {
      background: var(--gold-pale);
      border-color: var(--gold);
      transform: translateY(-2px);
      box-shadow: var(--shadow)
    }

    .ts-icon {
      font-size: 22px;
      margin-bottom: 7px
    }

    .ts-title {
      font-size: 12.5px;
      font-weight: 700;
      color: var(--forest);
      margin-bottom: 3px;
      line-height: 1.3
    }

    .ts-sub {
      font-size: 11px;
      color: var(--muted)
    }

    /* ── ASK FORM ── */
    .ask-form-card {
      background: var(--forest);
      border-radius: var(--r);
      padding: 28px;
      margin-bottom: 28px;
      position: relative;
      overflow: hidden
    }

    .ask-form-card::before {
      content: '';
      position: absolute;
      bottom: -40px;
      right: -40px;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(176, 141, 87, .08) 0%, transparent 65%)
    }

    .ask-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      color: #fff;
      margin-bottom: 4px
    }

    .ask-sub {
      font-size: 12.5px;
      color: rgba(255, 255, 255, .38);
      margin-bottom: 18px;
      line-height: 1.6
    }

    .ask-inputs {
      display: flex;
      flex-direction: column;
      gap: 10px
    }

    .ask-input {
      padding: 11px 14px;
      background: rgba(255, 255, 255, .07);
      border: 1.5px solid rgba(255, 255, 255, .1);
      border-radius: 7px;
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      color: rgba(255, 255, 255, .75);
      outline: none;
      transition: .2s
    }

    .ask-input::placeholder {
      color: rgba(255, 255, 255, .28)
    }

    .ask-input:focus {
      border-color: rgba(176, 141, 87, .4);
      background: rgba(255, 255, 255, .1)
    }

    .ask-textarea {
      min-height: 80px;
      resize: vertical;
      font-family: 'DM Sans', sans-serif
    }

    .ask-btn {
      background: var(--gold);
      color: var(--forest);
      border: none;
      padding: 12px;
      border-radius: 7px;
      font-family: 'DM Sans', sans-serif;
      font-size: 13.5px;
      font-weight: 700;
      cursor: pointer;
      transition: .22s;
      margin-top: 2px
    }

    .ask-btn:hover {
      background: var(--gold-l)
    }

    /* ── CTA BAND ── */
    .cta-band {
      background: var(--forest-d);
      padding: 52px 5vw;
      text-align: center;
      position: relative;
      overflow: hidden
    }

    .cta-band::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 500px;
      height: 300px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(176, 141, 87, .06) 0%, transparent 65%);
      pointer-events: none
    }

    .cta-inner {
      position: relative;
      z-index: 1;
      max-width: 600px;
      margin: 0 auto
    }

    .cta-tag {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold-l);
      margin-bottom: 10px
    }

    .cta-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(26px, 4vw, 42px);
      color: #fff;
      font-weight: 300;
      margin-bottom: 8px;
      line-height: 1.15
    }

    .cta-title em {
      font-style: italic;
      color: var(--gold-l)
    }

    .cta-sub {
      font-size: 13.5px;
      color: rgba(255, 255, 255, .38);
      line-height: 1.8;
      margin-bottom: 24px
    }

    .cta-buttons {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap
    }

    .btn-cta-p {
      background: var(--gold);
      color: var(--forest);
      border: none;
      padding: 14px 28px;
      border-radius: 7px;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      transition: .25s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px
    }

    .btn-cta-p:hover {
      background: var(--gold-l);
      transform: translateY(-1px)
    }

    .btn-cta-s {
      background: transparent;
      color: rgba(255, 255, 255, .65);
      border: 1.5px solid rgba(255, 255, 255, .18);
      padding: 14px 22px;
      border-radius: 7px;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: .25s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px
    }

    .btn-cta-s:hover {
      border-color: var(--gold-l);
      color: var(--gold-l)
    }

    /* ── FOOTER MINI ── */
    .footer-mini {
      background: var(--forest-d);
      padding: 36px 5vw 24px
    }

    .footer-mini-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 240px 1fr 1fr 1fr;
      gap: 30px;
      margin-bottom: 28px
    }

    .fm-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 21px;
      color: #fff
    }

    .fm-logo span {
      color: var(--gold-l)
    }

    .fm-tag {
      font-size: 12px;
      color: rgba(255, 255, 255, .3);
      line-height: 1.7;
      max-width: 190px;
      margin-top: 6px
    }

    .fm-col-title {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .27);
      margin-bottom: 10px
    }

    .fm-link {
      display: block;
      font-size: 12px;
      color: rgba(255, 255, 255, .4);
      text-decoration: none;
      margin-bottom: 7px;
      transition: .2s
    }

    .fm-link:hover {
      color: var(--gold-l)
    }

    .footer-bot {
      padding-top: 18px;
      border-top: 1px solid rgba(255, 255, 255, .07);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 8px
    }

    .footer-copy {
      font-size: 11.5px;
      color: rgba(255, 255, 255, .2)
    }

    .footer-links-r {
      display: flex;
      gap: 14px
    }

    .footer-links-r a {
      font-size: 11.5px;
      color: rgba(255, 255, 255, .2);
      text-decoration: none;
      transition: .2s
    }

    .footer-links-r a:hover {
      color: var(--gold-l)
    }

    /* Toast */
    .toast {
      position: fixed;
      bottom: 24px;
      right: 24px;
      background: var(--forest-d);
      color: #fff;
      padding: 12px 17px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
      z-index: 1000;
      transform: translateY(80px);
      opacity: 0;
      transition: .35s cubic-bezier(.34, 1.56, .64, 1);
      pointer-events: none;
      border-left: 4px solid var(--gold);
      max-width: 300px;
      font-family: 'DM Sans', sans-serif
    }

    .toast.show {
      transform: translateY(0);
      opacity: 1
    }

    .back-top {
      position: fixed;
      bottom: 24px;
      left: 24px;
      width: 42px;
      height: 42px;
      background: var(--forest);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      cursor: pointer;
      transition: .25s;
      opacity: 0;
      transform: translateY(20px);
      border: none;
      box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
      font-size: 16px
    }

    .back-top.show {
      opacity: 1;
      transform: translateY(0)
    }

    .back-top:hover {
      background: var(--forest-m)
    }

    @media(max-width:1024px) {
      .main-wrap {
        grid-template-columns: 1fr
      }

      .sidebar {
        position: static
      }

      .ts-grid {
        grid-template-columns: repeat(2, 1fr)
      }

      .footer-mini-inner {
        grid-template-columns: 1fr 1fr
      }
    }

    @media(max-width:640px) {
      .hero-layout {
        grid-template-columns: 1fr
      }

      .hero-stats {
        display: none
      }

      .ts-grid {
        grid-template-columns: 1fr 1fr
      }

      .footer-mini-inner {
        grid-template-columns: 1fr
      }

      .faq-a {
        padding: 0 14px 16px 14px
      }
    }
    
    
    