
  :root {
    --navy: #0f1f2e;
    --navy-mid: #1a3347;
    --gold: #cd5f91;
    --gold-light: #ee87b6;
    --cream: #f7f3ed;
    --warm-white: #fdfaf6;
    --charcoal: #2c2c2c;
    --mid-grey: #6b6b6b;
    --light-grey: #e8e4de;


  }

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

  /* ANNOTATION SYSTEM */
  .annotation {
    position: absolute;
    right: -240px;
    top: 50%;
    transform: translateY(-50%);
    width: 220px;
    background: #fffbe6;
    border: 1px solid #f0d96a;
    border-radius: 6px;
    padding: 10px 12px;

    font-size: 11px;
    line-height: 1.5;
    color: #5a4e00;
    z-index: 100;
  }

  .annotation::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 4px solid transparent;
    border-right-color: #f0d96a;
  }

  .annotation strong {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
    color: #7a6800;
  }

  .section-wrapper {
    position: relative;
    overflow: visible;
  }

  /* PAGE CHROME */
  .page-chrome {
    background: var(--navy);
    padding: 12px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo-text {

    color: #fff;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 2px;
  }

  .nav-links {
    display: flex;
    gap: 28px;
  }

  .nav-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  /* SECTION LABELS */
  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
  }

  .section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--gold);
  }

  /* ─── SECTION 1: HERO ─── */
  .hero {
    position: relative;
    overflow: hidden;
  }

  .hero-image-panel {
    position: relative;
    overflow: hidden;
  }

  .hero-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    color: rgba(255, 255, 255, 0.2);
  }

  .hero-image-placeholder .img-icon {
    font-size: 48px;
    height: 100%;
  }

  .hero-image-placeholder .img-icon img {
    height: 100%;
    object-fit: cover;
  }

  .hero-image-placeholder span {
    font-size: 12px;

  }

  .hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15, 31, 46, 0.6) 0%, rgba(15, 31, 46, 0) 60%);
  }

  .hero-badge {
    position: absolute;
    bottom: 17px;
    left: 30px;
    background: var(--gold);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 2px;
  }

  .hero-content {
    padding: 30px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    background: #f0edec;
    position: relative;
  }

  .hero-content .breadcrumbfive {
    font-size: 12px;
    color: rgb(6 6 6);
    letter-spacing: 0.5px;
  }

  .hero-content .breadcrumbfive span {
    color: var(--gold);
  }

  .hero-h1 {

    font-size: 48px;
    font-weight: 300;
    color: #131212;
    line-height: 1.15;
    letter-spacing: -0.5px;
  }

  .hero-h1 em {
    font-style: italic;
    color: var(--gold-light);
  }

  .hero-blurb {
    font-size: 15px;
    color: rgb(33 32 32 / 96%);
    line-height: 1.7;
    max-width: 420px;
  }

  .hero-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }

  .hero-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
  }

  .hero-meta-item strong {
    color: rgba(31, 31, 31, 0.8);
    font-weight: 500;
  }

  .hero-meta-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
  }

  .btn-primary {
    background: var(--gold);
    color: #fff;
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
  }

  .btn-outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.75);
    padding: 13px 28px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
  }

  /* ─── SECTION 2: PROOF BAR ─── */
  .proof-bar {
    background: var(--gold);
  }

  .proof-stat {
    text-align: center;
    padding: 0 12px;
    border-right: 1px solid rgba(15, 31, 46, 0.15);
  }

  .proof-stat:last-child {
    border-right: none;
  }

  .proof-stat .stat-number {
    font-size: 32px;
    font-weight: 500;
    color: #fff;
    line-height: 1;
  }

  .proof-stat .stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-top: 5px;
  }

  /* ─── SECTION 3: BLURB / ABOUT ─── */
  .blurb-section {
    background: var(--warm-white);
    gap: 80px;

  }

  .section-wrapper.blurb {
    background-color: #fdfaf6;
  }

  .blurb-text h2 {

    font-size: 38px;
    font-weight: 300;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 24px;
  }

  .blurb-text p {
    font-size: 15px;
    color: var(--mid-grey);
    line-height: 1.8;
    margin-bottom: 16px;
  }

  .blurb-text p strong {
    color: var(--charcoal);
    font-weight: 500;
  }

  .blurb-visual {
    /* background: var(--navy-mid); */
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.2);
    font-size: 13px;
    flex-direction: column;
    gap: 8px;
  }

  .blurb-visual .img-icon {
    font-size: 36px;
  }

  /* ─── SECTION 4: UNITS / PORTFOLIO GRID ─── */
 
  .units-section .units-header .sub {
    font-size: 15px;
    color: black;
    margin-left: auto;
    margin-right: auto;
  }

  .units-section h2 {
    font-size: 30px;
    font-weight: 300;
    color: var(--navy);
    margin-bottom: 8px;
  }

  .units-section .unit-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--light-grey);
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .units-section .unit-card.unit-card--linked {
    position: relative;
    cursor: pointer;
    isolation: isolate;
  }

  .units-section .unit-card-img {
    flex-shrink: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--navy-mid);
    position: relative;
  }

  .units-section .unit-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .units-section .unit-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--navy);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
    z-index: 1;
  }

  .units-section .unit-card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    padding: 20px;
  }

  .units-section .unit-card-body h3 {
    font-size: 16px;
    font-weight: 400;
    color: black;
    margin-bottom: 8px;
    line-height: 1.35;
  }
  .units-section .unit-card-body p {
    font-size: 13px;
    color: #000;
    line-height: 1.6;
    margin-bottom: 16px;
    font-weight: 300;
}

  .units-section .unit-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    position: relative;
    z-index: 2;
  }

  .units-section .unit-tag {
    font-size: 11px;
    background: var(--cream);
    color: var(--charcoal);
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 500;
    border: 1px solid var(--light-grey);
  }

  .units-section a.unit-tag {
    position: relative;
    z-index: 2;
    text-decoration: none;
  }

  .units-section a.unit-tag:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
  }

  .units-section .units-furnished-slider .slick-track {
    display: flex;
    align-items: stretch;
  }

  .units-section .units-furnished-slider .slick-slide {
    height: auto;
    display: flex;
  }

  .units-section .units-furnished-slider .slick-slide > div {
    width: 100%;
    height: 100%;
    padding: 0 10px;
  }

  .unit-filter {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap;
  }

  .filter-btn {
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid var(--light-grey);
    background: #fff;
    color: var(--mid-grey);
  }

  .filter-btn.active {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
  }
  /* ─── SECTION 5: SERVICES ─── */
  .services-section {
    background: #efeeec;

  }

  .services-section .section-label {
    color: rgb(205 95 145);
  }

  .services-section .section-label::before {
    background: var(--gold);
  }

  .services-section h2 {

    font-size: 30px;
    font-weight: 400;
    color: #2e2e2d;
    margin-bottom: 24px;
  }

  .service-card {
    background: var(--navy);
    padding: 36px 28px;
    border: 1px solid #ffff;
    transition: background 0.2s;
  }

  .service-card:hover {
    background: var(--navy-mid);
  }

  .service-card.service-card--linked {
    position: relative;
    cursor: pointer;
  }

  .service-icon {
    width: 48px;
    height: 48px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 18px;
  }

  .service-card h3 {

    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 12px;
  }


  .service-card p {
    font-size: 13px;
    color: rgb(255, 255, 255);
    line-height: 1.7;
  }

  .service-card .from-price {
    margin-top: 16px;
    font-size: 12px;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 0.3px;
  }

  .section-wrapper.offer {
    background-color: #efeeec;
  }

  /* ─── SECTION 6: PROCESS ─── */

  .process-section {
    background: var(--warm-white);
    padding: 80px 60px;
  }

  .process-section h2 {

    font-size: 30px;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 5px;
  }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
  }

  section.unitProcessSec {
    border-top: 0px !important;
    padding: 15px !important;
  }

  .process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--light-grey);
  }

  .process-step {
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
  }

  .step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;

    font-size: 22px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
  }

  .step-number.gold-step {
    background: var(--gold);
    color: var(--navy);
  }

  .process-step h3 {

    font-size: 18px;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 10px;
  }

  .process-step p {
    font-size: 13px;
    color: var(--mid-grey);
    line-height: 1.6;
  }

  /* ─── SECTION 8: DEVELOPMENT SNAPSHOT ─── */

  .snapshot-section .section-label {
    color: #cd5f91
  }

  .snapshot-section .section-label::before {
    background: var(--gold);
  }

  .snapshot-section-title-wrap {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    text-align: center;
    -webkit-overflow-scrolling: touch;
  }

  .snapshot-section-title-wrap::-webkit-scrollbar {
    height: 5px;
  }

  .snapshot-section-title-wrap::-webkit-scrollbar-thumb {
    background: rgba(2, 2, 2, 0.2);
    border-radius: 999px;
  }

  .snapshot-section h2.snapshot-section__h2 {
    display: inline-block;
    font-size: 30px;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 5px;
    line-height: 1.2;
    white-space: nowrap;
    max-width: none;
    text-align: center;
  }

  @media (max-width: 767.98px) {
    .snapshot-section h2.snapshot-section__h2 {
      font-size: clamp(1.125rem, 3.2vw + 0.65rem, 2.375rem);
      padding-left: 0.25rem;
      padding-right: 0.25rem;
    }
  }

  .snapshot-section .snapshot-grid {
    margin-top: 1.25rem;
  }

  @media (min-width: 768px) {
    .snapshot-section .snapshot-grid {
      margin-top: 1.75rem;
    }
  }

  .data-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(233, 86, 189, 0.08);
    border-radius: 4px;
    padding: 14px;
  }

  .data-card .data-number {

    font-size: 34px;
    font-weight: 400;
    color: var(--gold-light);
    line-height: 1;
  }

  .data-card .data-label {
    font-size: 12px;
    color: rgba(17, 16, 16, 0.45);
    margin-top: 6px;
    font-weight: 400;
    letter-spacing: 0.3px;
  }

  .snapshot-map-placeholder {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    color: rgba(255, 255, 255, 0.2);
   margin-top: 25px;
    font-size: 13px;
  }

  .snapshot-map-placeholder .img-icon {
    font-size: 36px;
  }

  .transport-list {
    margin-top: 70px;
  }

  .transport-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .transport-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .transport-item .t-name {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.7);
    flex: 1;
  }

  .transport-item .t-time {
    font-size: 13px;
    color: var(--gold);
    font-weight: 500;
  }

  /* ─── SECTION 9: THINGS TO DO ─── */

  .todo-section h2 {

    font-size: 30px;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 8px;
  }

  .todo-section .sub {
    font-size: 15px;
    color: var(--mid-grey);
  }

  .todo-grid {

    margin: 0px 2px;
  }

  .todo-grid.row > .todo-card {
    display: flex;
    flex-direction: column;
    align-self: stretch;
  }

  .todo-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    border: 1px light var(--light-grey);
  }

  .todo-card-img {

    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
  }
  .todo-card-img {
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .todo-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
  }

  .todo-card-body {
    padding: 16px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .todo-card-category {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
  }

  .todo-card-title {
    font-size: 17px;
    font-weight: 400;
    color: var(--navy);
    margin: 0 0 8px;
    line-height: 1.3;
    min-height: calc(2 * 1.3em);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .todo-card-desc {
    flex-shrink: 0;
    width: 100%;
  }

  .todo-card-text {
    font-size: 14px;
    color: black;
    margin: 0;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    min-height: calc(2 * 1.45 * 1em);
  }

  .todo-card-text.is-expanded {
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
  }

  .todo-card-readmore-wrap {
    min-height: 28px;
    margin-top: 8px;
    display: flex;
    align-items: center;
  }

  .todo-card-readmore {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    line-height: 1.3;
  }

  .todo-card-readmore:hover:not([aria-disabled="true"]) {
    color: var(--navy);
  }

  .todo-card-readmore:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
  }

  .todo-card-readmore[aria-disabled="true"] {
    opacity: 0.45;
    cursor: default;
    text-decoration: underline;
    pointer-events: none;
  }

  .todo-card-body-fill {
    flex: 1 1 auto;
    min-height: 0;
  }

  /* ─── SECTION 10: PARTNERS ─── */


  .partners-section h2 {

    font-size: 32px;
    font-weight: 300;
    color: var(--navy);
    margin-bottom: 8px;
  }

  .partners-section .sub {
    font-size: 14px;
    color: var(--mid-grey);
    margin-bottom: 40px;
  }

  .partners-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
  }

  .partner-logo {
    width: 130px;
    height: 50px;
    background: #fff;
    border: 1px solid var(--light-grey);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--mid-grey);
    text-transform: uppercase;
  }

  /* ─── SECTION 11: UPSELL ─── */

  .upsell-text h2 {

    font-size: 30px;
    font-weight: 300;
    color: #030303;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .upsell-text p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
    font-weigth: 400;
  }

  .upsell-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgb(223 153 184);
    border-radius: 4px;
    padding: 24px;
  }

   .upsell-card h3 {

    font-size: 18px;
    font-weight: 400;
    color: #080808;
    font-weight: 400;
  }

  .upsell-card p {
    font-size: 13px;
    color: black;
    line-height: 1.6;
    font-weight: 300;
  }

  .upsell-card .price-from {
   
    font-size: 13px;
    color: var(--gold);
    font-weight: 500;
  }

  .upsell-card.upsell-card--linked {
    position: relative;
    cursor: pointer;
  }

  /* ─── SECTION 12: GALLERY ─── */

  .gallery-section h2 {

    font-size: 38px;
    font-weight: 300;
    color: var(--navy);
    margin-bottom: 8px;
  }

  .gallery-section .sub {
    font-size: 15px;
    color: var(--mid-grey);
    margin-bottom: 40px;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 8px;
  }

  .gallery-item {
    background: var(--navy-mid);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.15);
    flex-direction: column;
    gap: 6px;
  }

  .gallery-item span {
    font-size: 11px;
    font-family: var(--sans);
    color: rgba(255, 255, 255, 0.15);
  }

  .gallery-item:nth-child(1) {
    grid-row: 1/3;
    min-height: 420px;
  }

  .gallery-item:not(:nth-child(1)) {
    min-height: 205px;
  }

  /* ─── SECTION 13: SUCCESS STORIES ─── */
  .success-section {
    background: var(--cream);
    padding: 80px 60px;
  }

  .success-section h2 {

    font-size: 38px;
    font-weight: 300;
    color: var(--navy);
    margin-bottom: 48px;
  }

  .success-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .success-card {
    background: #fff;
    border-left: 3px solid var(--gold);
    padding: 32px;
    border-radius: 0 4px 4px 0;
  }

  .success-card .client-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
  }

  .success-card h3 {

    font-size: 22px;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 16px;
  }

  .success-card p {
    font-size: 14px;
    color: var(--mid-grey);
    line-height: 1.7;
  }

  .success-result {
    margin-top: 20px;
    padding: 14px;
    background: var(--cream);
    border-radius: 4px;
    display: flex;
    gap: 16px;
    align-items: center;
  }

  .success-result-num {

    font-size: 28px;
    font-weight: 300;
    color: var(--navy);
  }

  .success-result-text {
    font-size: 13px;
    color: var(--mid-grey);
    line-height: 1.4;
  }

  /* ─── SECTION 14: TESTIMONIALS ─── */
  .testimonials-section {
    background: var(--navy);
    padding: 80px 60px;
  }

  .testimonials-section .section-label {
    color: rgba(255, 255, 255, 0.4);
  }

  .testimonials-section .section-label::before {
    background: var(--gold);
  }

  .testimonials-section h2 {
    font-family: var(--serif);
    font-size: 38px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 48px;
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 4px;
    padding: 28px;
  }

  .testimonial-stars {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 16px;
    letter-spacing: 2px;
  }

  .testimonial-quote {
    font-family: var(--serif);
    font-size: 17px;
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.65;
    margin-bottom: 24px;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .author-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--navy-mid);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    flex-shrink: 0;
  }

  .author-name {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
  }

  .author-role {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 1px;
  }

  .featured-testimonial {
    border: 1px solid var(--gold);
    background: rgba(201, 168, 76, 0.06);
  }

  /* ─── SECTION 15: FAQs ─── */
  .accordion-button {
    padding: 10px 25px 10px 10px;
    border-radius: 10px 10px 0 0 !important;
    outline: 0;
    box-shadow: none;
    border: 0;
    background: #fff0;
    font-size: 18px;
    color: #3c3c3c;
    font-weight: 400;
  }

  /* ─── FINAL CTA ─── */
  .final-cta {
    background: #f7f3ed;
    padding: 60px;
    text-align: center;
  }

  .final-cta h2 {
    font-family: var(--serif);
    font-size: 38px;
    font-weight: 400;
    color: #3c3c3c;
    margin-bottom: 16px;
  }

  .final-cta p {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.65);
    margin-bottom: 32px;
    /* max-width: 500px; */
    margin-left: auto;
    font-weight: 400;

    margin-right: auto;
  }

  .final-cta .btn-primary {
    background: var(--navy);
    color: #fff;
    padding: 16px 40px;
    font-size: 14px;
  }

  /* SECTION DIVIDER LABELS */
  .section-tag {
    background: #fff;
    color: var(--gold);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    display: inline-block;
    margin-bottom: 0;
  }

  .section-tag.light {
    background: rgb(255, 255, 255);
    color: var(--gold);
  }

  /* DESIGN KEY header */
  .design-header {
    background: #fff;
    border-bottom: 2px solid #f0f0f0;
    padding: 20px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 999;
  }

  .design-header h1 {
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 600;
    color: #333;
  }

  .design-header .tag {
    font-size: 11px;
    background: #e8f3ff;
    color: #0055a5;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 500;
  }

  .design-meta {
    font-size: 12px;
    color: #888;
  }
