
    /* ── HERO: 3-column asymmetric grid ── */
    .ivt-hero {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      min-height: 100vh;
    }

   
    @media (max-width: 991px) {
      .ivt-hero { grid-template-columns: 1fr; }
      .ivt-hero-img { order: -1; min-height: 55vw; }
    }
    .ivt-hero-copy {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 9rem 3.5rem 5rem 5vw;
      background: var(--soft-bg);
      position: relative;
    }
    @media (max-width: 991px) { .ivt-hero-copy { padding: 5rem 1.8rem 3.5rem; } }
    .ivt-hero-copy::after {
      content: '';
      position: absolute;
      top: 6rem;
      right: -1px;
      bottom: 6rem;
      width: 1px;
      background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    }
    @media (max-width: 991px) { .ivt-hero-copy::after { display: none; } }
    .ivt-hero-img {
      position: relative;
      /* overflow: hidden; */
    }
    .ivt-hero-img-2 {
      position: relative;
     
    }

    .ivt-hero-img img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.9s cubic-bezier(.22,1,.36,1);
      z-index: -1 !important;
    }
    .ivt-hero-img:hover img { transform: scale(1.04); }
    .ivt-hero-img::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(250,245,236,.08) 0%, transparent 60%);
    }
    /* floating card on hero image */
    .ivt-float-card {
      position: absolute;
      bottom: 2.5rem;
      left: -2rem;
      background: rgba(20,16,12,.82);
      backdrop-filter: blur(14px);
      border: 1px solid rgba(201,169,106,.3);
      border-radius: 18px;
      padding: 1.2rem 1.6rem;
      max-width: 240px;
      z-index: 2;
    }
    @media (max-width: 991px) { .ivt-float-card { left: 1rem; bottom: 1.5rem; } }
    .ivt-float-card .eyebrow { color: var(--gold-light); }
    .ivt-float-card h4 {
      font-family: var(--serif);
      font-size: 1.2rem;
      color: var(--cream);
      line-height: 1.3;
      margin: 0.3rem 0 0;
    }
    .ivt-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--gold);
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1.4rem;
    }
    .ivt-label::before {
      content: '';
      display: block;
      width: 32px;
      height: 1px;
      background: var(--gold);
    }
    .ivt-trust {
      display: flex;
      flex-wrap: wrap;
      gap: 0.55rem;
      margin-top: 1.8rem;
    }
    .ivt-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #6b6256;
      border: 1px solid rgba(201,169,106,.35);
      border-radius: 30px;
      padding: 5px 14px;
      background: rgba(201,169,106,.06);
    }
    .ivt-pill i { color: var(--gold); font-size: 0.7rem; }
 
    /* ── HIGHLIGHTS BAR ── */
    .ivt-highlights {
      background: var(--ink);
      padding: 3rem 0;
    }
    .ivt-hl-grid {
      display: grid;
      grid-template-columns: repeat(4,1fr);
      gap: 1px;
      background: rgba(201,169,106,.12);
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid rgba(201,169,106,.12);
    }
    @media (max-width: 767px) { .ivt-hl-grid { grid-template-columns: repeat(2,1fr); } }
    .ivt-hl-card {
      background: rgba(250,245,236,.03);
      padding: 1.8rem 1.4rem;
      text-align: center;
      transition: background 0.3s;
    }
    .ivt-hl-card:hover { background: rgba(201,169,106,.07); }
    .ivt-hl-icon {
      font-size: 1.8rem;
      color: var(--gold);
      display: block;
      margin-bottom: 0.7rem;
    }
    .ivt-hl-card h3 {
      font-family: var(--serif);
      font-size: 1.1rem;
      color: var(--cream);
      margin: 0 0 0.3rem;
    }
    .ivt-hl-card p {
      font-size: 0.8rem;
      color: rgba(250,245,236,.55);
      margin: 0;
      line-height: 1.55;
    }
 
    /* ── IV DRIPS: horizontal scroll cards ── */
    .ivt-drips { background: var(--soft-bg); }
    .ivt-drip-scroll {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 1.25rem;
    }
    @media (max-width: 991px) { .ivt-drip-scroll { grid-template-columns: repeat(2,1fr); } }
    @media (max-width: 575px) { .ivt-drip-scroll { grid-template-columns: 1fr; } }
    .ivt-drip-card {
      background: var(--cream);
      border: 1px solid rgba(201,169,106,.2);
      border-radius: 22px;
      padding: 2rem 1.8rem;
      position: relative;
      overflow: hidden;
      transition: all 0.35s;
    }
    .ivt-drip-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--gold-grad);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s cubic-bezier(.22,1,.36,1);
    }
    .ivt-drip-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-luxe); border-color: var(--gold); }
    .ivt-drip-card:hover::before { transform: scaleX(1); }
    .ivt-drip-num {
      font-family: var(--serif);
      font-size: 3.5rem;
      font-weight: 300;
      color: rgba(201,169,106,.12);
      line-height: 1;
      margin-bottom: -0.8rem;
    }
    .ivt-drip-card i {
      font-size: 18px;
      color: var(--gold);
      display: block;
      /* margin-bottom: 0.75rem; */
    }
    .ivt-drip-card h3 {
      font-family: var(--serif);
      font-size: 1.35rem;
      color: var(--ink);
      margin: 0 0 0.5rem;
    }
    .ivt-drip-card p {
      font-size: 0.88rem;
      color: #6b6256;
      line-height: 1.7;
      margin: 0 0 1rem;
    }
 
    /* ── PROCESS: horizontal numbered steps with connector ── */
    .ivt-process { background: var(--cream); }
    .ivt-steps {
      display: grid;
      grid-template-columns: repeat(5,1fr);
      gap: 0;
      position: relative;
    }
    @media (max-width: 991px) { .ivt-steps { grid-template-columns: 1fr; gap: 1rem; } }
    .ivt-steps::before {
      content: '';
      position: absolute;
      top: 28px;
      left: 10%;
      right: 10%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }
    @media (max-width: 991px) { .ivt-steps::before { display: none; } }
    .ivt-step {
      text-align: center;
      padding: 0 0.8rem 1.5rem;
    }
    .ivt-step-num {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--gold-grad);
      color: var(--ink);
      font-size: 13px;
      font-weight: 700;
      display: grid;
      place-items: center;
      margin: 0 auto 1rem;
      box-shadow: var(--shadow-gold);
      position: relative;
      z-index: 1;
    }
    .ivt-step h4 {
      font-family: var(--serif);
      font-size: 1.05rem;
      color: var(--ink);
      margin: 0 0 0.4rem;
    }
    .ivt-step p {
      font-size: 0.82rem;
      color: #6b6256;
      line-height: 1.6;
      margin: 0;
    }
 
    /* ── BENEFITS: pure HTML+CSS grid — no JS ── */
    .ivt-benefits { background: var(--soft-bg); }
    .ivt-ben-grid {
      display: grid;
      grid-template-columns: repeat(4,1fr);
      gap: 1rem;
    }
    @media (max-width: 991px) { .ivt-ben-grid { grid-template-columns: repeat(2,1fr); } }
    .ivt-ben-card {
      background: var(--cream);
      border: 1px solid rgba(201,169,106,.2);
      border-radius: 20px;
      padding: 1.6rem 1.3rem;
      transition: all 0.3s;
    }
    .ivt-ben-card:nth-child(even) { margin-top: 1.2rem; }
    @media (max-width: 991px) { .ivt-ben-card:nth-child(even) { margin-top: 0; } }
    .ivt-ben-card:hover {
      transform: translateY(-4px);
      border-color: var(--gold);
      box-shadow: var(--shadow-soft);
    }
    .ivt-ben-card i {
      font-size: 1.5rem;
      color: var(--gold);
      display: block;
      margin-bottom: 0.65rem;
    }
    .ivt-ben-card h3 {
      font-family: var(--serif);
      font-size: 1.15rem;
      color: var(--ink);
      margin: 0 0 0.4rem;
    }
    .ivt-ben-card p {
      font-size: 0.85rem;
      color: #6b6256;
      line-height: 1.65;
      margin: 0;
    }
 
    /* ── WHY AURA: pure HTML+CSS, no JS ── */
    .ivt-why { background: var(--ink); }
    .ivt-why-grid {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 1.25rem;
    }
    @media (max-width: 767px) { .ivt-why-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 480px) { .ivt-why-grid { grid-template-columns: 1fr; } }
    .ivt-why-card {
      background: rgba(250,245,236,.04);
      border: 1px solid rgba(201,169,106,.18);
      border-radius: 20px;
      padding: 1.8rem 1.5rem;
      transition: all 0.3s;
    }
    .ivt-why-card:hover {
      background: rgba(201,169,106,.07);
      border-color: var(--gold);
      transform: translateY(-3px);
    }
    .ivt-why-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--gold-grad);
      display: grid;
      place-items: center;
      color: var(--ink);
      font-size: 1.1rem;
      box-shadow: var(--shadow-gold);
      margin-bottom: 1rem;
    }
    .ivt-why-card h3 {
      font-family: var(--serif);
      font-size: 1.2rem;
      color: var(--cream);
      margin: 0 0 0.5rem;
    }
    .ivt-why-card p {
      font-size: 0.85rem;
      color: rgba(250,245,236,.6);
      line-height: 1.65;
      margin: 0;
    }
 
    /* ── JOURNEY roadmap ── */
    .ivt-journey { background: var(--soft-bg); }
    .ivt-journey-row {
      display: flex;
      gap: 0;
      position: relative;
      overflow: hidden;
    }
    @media (max-width: 767px) {
      .ivt-journey-row { flex-direction: column; gap: 1rem; }
    }
    .ivt-journey-row::before {
      content: '';
      position: absolute;
      top: 30px;
      left: 5%;
      right: 5%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
    }
    @media (max-width: 767px) { .ivt-journey-row::before { display: none; } }
    .ivt-j-step {
      flex: 1;
      text-align: center;
      padding: 0 1rem 1.5rem;
    }
    .ivt-j-num {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: var(--gold-grad);
      color: var(--ink);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.05em;
      display: grid;
      place-items: center;
      margin: 0 auto 1rem;
      box-shadow: var(--shadow-gold);
      position: relative;
      z-index: 1;
    }
    .ivt-j-step h4 {
      font-family: var(--serif);
      font-size: 1rem;
      color: var(--ink);
      margin: 0;
      line-height: 1.35;
    }
 
    /* ── RESULTS mosaic ── */
    .ivt-results { background: var(--cream); }
    .ivt-results-mosaic {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      grid-template-rows: 280px 280px;
      gap: 1rem;
    }
    @media (max-width: 767px) {
      .ivt-results-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
      }
    }
    .ivt-r-item {
      border-radius: 18px;
      overflow: hidden;
      position: relative;
    }
    .ivt-r-item:first-child { grid-row: span 2; }
    .ivt-r-item:last-child { grid-column: span 2; }
    @media (max-width: 767px) {
      .ivt-r-item:first-child { grid-row: span 1; }
      .ivt-r-item:last-child { grid-column: span 1; }
    }
    .ivt-r-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(.22,1,.36,1);
    }
    .ivt-r-item:hover img { transform: scale(1.05); }
    .ivt-r-tag {
      position: absolute;
      bottom: 0.8rem;
      left: 0.8rem;
      background: rgba(20,16,12,.75);
      backdrop-filter: blur(8px);
      color: var(--gold-light);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 20px;
    }
 
    /* ── FAQ: pure HTML details/summary ── */
    .ivt-faq { background: var(--soft-bg); }
    .ivt-faq-wrap {
      max-width: 760px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
    }
    .ivt-faq-wrap details {
      background: var(--cream);
      border: 1px solid rgba(201,169,106,.2);
      border-radius: 14px;
      overflow: hidden;
      transition: border-color 0.3s;
    }
    .ivt-faq-wrap details[open] { border-color: var(--gold); }
    .ivt-faq-wrap summary {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      padding: 1.15rem 1.5rem;
      font-family: var(--serif);
      font-size: 1.15rem;
      color: var(--ink);
      cursor: pointer;
      list-style: none;
    }
    .ivt-faq-wrap summary::-webkit-details-marker { display: none; }
    .ivt-faq-wrap summary::after {
      content: '\F282';
      font-family: 'bootstrap-icons';
      font-size: 0.9rem;
      color: var(--gold);
      flex-shrink: 0;
    }
    .ivt-faq-wrap details[open] summary::after { content: '\F286'; }
    .ivt-faq-ans {
      padding: 0 1.5rem 1.3rem;
      font-size: 0.9rem;
      color: #6b6256;
      line-height: 1.75;
    }
    .ivt-faq-ans p { margin: 0; }
 
    /* ── LOUNGE immersive section ── */
    .ivt-lounge {
      position: relative;
      min-height: 480px;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .ivt-lounge-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .ivt-lounge-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(20,16,12,.85) 0%, rgba(20,16,12,.5) 100%);
    }
    .ivt-lounge-body {
      position: relative;
      z-index: 1;
      max-width: 680px;
    }
 
    /* ── CTA ── */
    .ivt-cta {
      position: relative;
      padding: 7rem 0;
      overflow: hidden;
    }
    .ivt-cta-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .ivt-cta-overlay {
      position: absolute;
      inset: 0;
      background: rgba(20,16,12,.68);
    }



-------------------------------------------------------------------
                         /* hormone-pellet-therapy*/
-------------------------------------------------------------------- 


    /* HERO — luxury split screen */
   
    .hpt-hero-img:hover img { transform: scale(1.04); }
    .hpt-hero-img::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(20,16,12,.45) 0%, transparent 60%);
    }
    .hpt-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--gold);
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1.5rem;
    }
    .hpt-label::before {
      content: '';
      display: block;
      width: 32px;
      height: 1px;
      background: var(--gold);
    }
    .hpt-trust-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      margin-top: 2rem;
    }
    .hpt-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(250,245,236,.7);
      border: 1px solid rgba(201,169,106,.3);
      border-radius: 30px;
      padding: 5px 14px;
    }
    .hpt-pill i { color: var(--gold); font-size: 0.75rem; }

    /* WELLNESS BAR */
    .hpt-wellness {
      background: var(--soft-bg);
      padding: 3.5rem 0;
    }
    .hpt-w-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: rgba(201,169,106,.15);
      border: 1px solid rgba(201,169,106,.15);
      border-radius: 20px;
      overflow: hidden;
    }
    @media (max-width: 767px) { .hpt-w-grid { grid-template-columns: repeat(2,1fr); } }
    .hpt-w-card {
      background: var(--cream);
      padding: 2rem 1.6rem;
      text-align: center;
      transition: background 0.3s;
    }
    .hpt-w-card:hover { background: #fdfaf5; }
    .hpt-w-icon {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: var(--gold-grad);
      display: grid;
      place-items: center;
      margin: 0 auto 1rem;
      color: var(--ink);
      font-size: 1.2rem;
      box-shadow: var(--shadow-gold);
    }
    .hpt-w-card h3 {
      font-family: var(--serif);
      font-size: 1.15rem;
      color: var(--ink);
      margin: 0 0 0.4rem;
    }
    .hpt-w-card p {
      font-size: 0.83rem;
      color: #6b6256;
      margin: 0;
      line-height: 1.6;
    }

    /* SYMPTOMS CARDS */
    .hpt-symptoms { background: var(--ink); }
    .hpt-sym-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
    }
    @media (max-width: 991px) { .hpt-sym-grid { grid-template-columns: repeat(2,1fr); } }
    @media (max-width: 575px) { .hpt-sym-grid { grid-template-columns: 1fr 1fr; } }
    .hpt-sym-card {
      border: 1px solid rgba(201,169,106,.2);
      border-radius: 18px;
      padding: 1.6rem 1.2rem;
      text-align: center;
      transition: all 0.3s;
      background: rgba(250,245,236,.04);
    }
    .hpt-sym-card:hover {
      border-color: var(--gold);
      background: rgba(201,169,106,.07);
      transform: translateY(-3px);
    }
    .hpt-sym-card i {
      font-size: 1.6rem;
      color: var(--gold);
      display: block;
      margin-bottom: 0.7rem;
    }
    .hpt-sym-card span {
      font-family: var(--serif);
      font-size: 1.05rem;
      color: var(--cream);
      display: block;
      line-height: 1.3;
    }

    /* PROCESS — vertical timeline variant */
    .hpt-process { background: var(--soft-bg); }
    .hpt-timeline {
      position: relative;
      max-width: 780px;
      margin: 0 auto;
    }
    .hpt-timeline::before {
      content: '';
      position: absolute;
      left: 32px;
      top: 24px;
      bottom: 24px;
      width: 1px;
      background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    }
    @media (max-width: 575px) { .hpt-timeline::before { left: 22px; } }
    .hpt-tl-item {
      display: grid;
      grid-template-columns: 64px 1fr;
      gap: 1.5rem;
      margin-bottom: 2rem;
      position: relative;
    }
    .hpt-tl-item:last-child { margin-bottom: 0; }
    .hpt-tl-num {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: var(--gold-grad);
      color: var(--ink);
      font-size: 13px;
      font-weight: 700;
      display: grid;
      place-items: center;
      flex-shrink: 0;
      box-shadow: var(--shadow-gold);
      position: relative;
      z-index: 1;
    }
    @media (max-width: 575px) {
      .hpt-tl-num { width: 44px; height: 44px; font-size: 11px; }
      .hpt-tl-item { grid-template-columns: 44px 1fr; gap: 1rem; }
    }
    .hpt-tl-body {
      background: var(--cream);
      border: 1px solid rgba(201,169,106,.2);
      border-radius: 16px;
      padding: 1.4rem 1.6rem;
    }
    .hpt-tl-body h3 {
      font-family: var(--serif);
      font-size: 1.3rem;
      color: var(--ink);
      margin: 0 0 0.4rem;
    }
    .hpt-tl-body p {
      font-size: 0.88rem;
      color: #6b6256;
      margin: 0;
      line-height: 1.7;
    }

    /* GENDER SPLIT */
    .hpt-gender { background: var(--cream); }
    .hpt-gender-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }
    @media (max-width: 767px) { .hpt-gender-grid { grid-template-columns: 1fr; } }
    .hpt-gender-card {
      border-radius: 24px;
      overflow: hidden;
      position: relative;
    }
    .hpt-gender-img {
      height: 280px;
      overflow: hidden;
    }
    .hpt-gender-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(.22,1,.36,1);
    }
    .hpt-gender-card:hover .hpt-gender-img img { transform: scale(1.05); }
    .hpt-gender-body {
      background: var(--soft-bg);
      padding: 2rem 2rem 2.2rem;
      border: 1px solid rgba(201,169,106,.18);
      border-top: none;
      border-radius: 0 0 24px 24px;
    }
    .hpt-gender-body h3 {
      font-family: var(--serif);
      font-size: 1.65rem;
      color: var(--ink);
      margin: 0 0 0.8rem;
    }
    .hpt-gender-body p {
      font-size: 0.9rem;
      color: #6b6256;
      line-height: 1.75;
      margin: 0 0 1.2rem;
    }

    /* JOURNEY ROADMAP */
    .hpt-journey { background: var(--ink); }
    .hpt-road {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 0;
      position: relative;
    }
    @media (max-width: 991px) { .hpt-road { grid-template-columns: repeat(3,1fr); } }
    @media (max-width: 575px) { .hpt-road { grid-template-columns: repeat(2,1fr); } }
    .hpt-road::before {
      content: '';
      position: absolute;
      top: 32px;
      left: 8%;
      right: 8%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      pointer-events: none;
    }
    @media (max-width: 991px) { .hpt-road::before { display: none; } }
    .hpt-road-step {
      text-align: center;
      padding: 0 0.8rem 1.5rem;
      position: relative;
    }
    .hpt-road-num {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: var(--gold-grad);
      color: var(--ink);
      font-size: 13px;
      font-weight: 700;
      display: grid;
      place-items: center;
      margin: 0 auto 1rem;
      box-shadow: var(--shadow-gold);
      position: relative;
      z-index: 1;
    }
    .hpt-road-step h4 {
      font-family: var(--serif);
      font-size: 1rem;
      color: var(--cream);
      line-height: 1.3;
      margin: 0;
    }

    /* RESULTS GALLERY (bespoke grid, not masonry) */
    .hpt-results { background: var(--soft-bg); }
    .hpt-results-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto auto;
      gap: 1rem;
    }
    @media (max-width: 767px) { .hpt-results-grid { grid-template-columns: 1fr 1fr; } }
    .hpt-result-item {
      border-radius: 18px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      aspect-ratio: 4/3;
    }
    .hpt-result-item:first-child {
      grid-column: span 2;
      aspect-ratio: 16/7;
    }
    @media (max-width: 767px) {
      .hpt-result-item:first-child { grid-column: span 2; aspect-ratio: 4/3; }
    }
    .hpt-result-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(.22,1,.36,1);
    }
    .hpt-result-item:hover img { transform: scale(1.05); }
    .hpt-result-tag {
      position: absolute;
      bottom: 0.8rem;
      left: 0.8rem;
      background: rgba(20,16,12,.75);
      backdrop-filter: blur(8px);
      color: var(--gold-light);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 20px;
    }

    /* FAQ — pure HTML details/summary */
    .hpt-faq { background: var(--cream); }
    .hpt-faq-list {
      max-width: 780px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    .hpt-faq-list details {
      background: var(--soft-bg);
      border: 1px solid rgba(201,169,106,.2);
      border-radius: 14px;
      overflow: hidden;
      transition: border-color 0.3s;
    }
    .hpt-faq-list details[open] {
      border-color: var(--gold);
    }
    .hpt-faq-list summary {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.2rem 1.5rem;
      font-family: var(--serif);
      font-size: 1.15rem;
      color: var(--ink);
      cursor: pointer;
      list-style: none;
      gap: 1rem;
    }
    .hpt-faq-list summary::-webkit-details-marker { display: none; }
    .hpt-faq-list summary::after {
      content: '\F282';
      font-family: 'bootstrap-icons';
      font-size: 0.9rem;
      color: var(--gold);
      flex-shrink: 0;
      transition: transform 0.3s;
    }
    .hpt-faq-list details[open] summary::after {
      content: '\F286';
    }
    .hpt-faq-body {
      padding: 0 1.5rem 1.4rem;
      font-size: 0.91rem;
      color: #6b6256;
      line-height: 1.75;
    }
    .hpt-faq-body p { margin: 0; }

    /* CTA */
    .hpt-cta {
      position: relative;
      padding: 7rem 0;
      overflow: hidden;
    }
    .hpt-cta-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .hpt-cta-overlay {
      position: absolute;
      inset: 0;
      background: rgba(20,16,12,.72);
    }



    -------------------------------------------------



    