/* extracted from index.html */

    :root {
      --ocean: #09090e;
      --ocean2: #111116;
      --ocean3: #191920;
      --water: #c9a84c;
      --water-dim: #8a6a28;
      --water-bright: #e8cc76;
      --text: #ede5d0;
      --text-dim: #7a7060;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--ocean);
      color: var(--text);
      font-family: 'Microsoft YaHei', 'PingFang SC', system-ui, sans-serif;
      line-height: 1.75;
    }

    /* HERO */
    #hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 2rem;
      overflow: hidden;
    }

    #hero-bg {
      position: absolute;
      inset: 0;
      background: url(../img/hero.jpg) center/cover no-repeat;
      z-index: 0;
    }

    #hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(9, 9, 14, 0.82);
    }

    #hero>*:not(#hero-bg) {
      position: relative;
      z-index: 2;
    }

    .hero-badge {
      display: inline-block;
      border: 1px solid var(--water-dim);
      color: var(--water);
      padding: .35rem 1.6rem;
      font-size: .72rem;
      letter-spacing: .3em;
      margin-bottom: 2rem;
    }

    #hero h1 {
      font-size: clamp(2.2rem, 6vw, 4.5rem);
      font-weight: 300;
      line-height: 1.2;
      margin-bottom: .8rem;
      color: #fff;
    }

    #hero h1 strong {
      font-weight: 800;
      color: var(--water);
    }

    .hero-sub {
      font-size: clamp(.9rem, 1.8vw, 1.1rem);
      color: #a09070;
      max-width: 600px;
      margin: 0 auto 2.8rem;
    }

    .hero-cta-group {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    .btn-water {
      background: var(--water);
      color: #120f05;
      padding: .9rem 2.4rem;
      font-weight: 800;
      font-size: .9rem;
      text-decoration: none;
      letter-spacing: .08em;
      transition: background .2s, transform .2s;
    }

    .btn-water:hover {
      background: var(--water-bright);
      transform: translateY(-2px);
    }

    .btn-outline-w {
      border: 1px solid var(--water-dim);
      color: var(--water);
      padding: .9rem 2.4rem;
      font-weight: 600;
      font-size: .9rem;
      text-decoration: none;
      letter-spacing: .08em;
      transition: background .2s, color .2s;
    }

    .btn-outline-w:hover {
      background: var(--water);
      color: #120f05;
    }

    .hero-scroll {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      color: var(--text-dim);
      font-size: .72rem;
      letter-spacing: .2em;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: .5rem;
      z-index: 2;
    }

    .hero-scroll span {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, var(--water-dim), transparent);
    }

    /* STATS */
    #stats {
      background: var(--ocean2);
      border-top: 1px solid rgba(201, 168, 76, .15);
      border-bottom: 1px solid rgba(201, 168, 76, .15);
      padding: 2.5rem 1rem;
    }

    .stats-grid {
      max-width: 900px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 2rem;
      text-align: center;
    }

    .stat-num {
      font-size: 2.4rem;
      font-weight: 700;
      color: var(--water);
      line-height: 1;
    }

    .stat-label {
      font-size: .8rem;
      color: var(--text-dim);
      margin-top: .4rem;
      letter-spacing: .08em;
    }

    /* COMMON */
    section {
      padding: 6rem 1.5rem;
    }

    .container {
      max-width: 1100px;
      margin: 0 auto;
    }

    .sec-label {
      text-align: center;
      font-size: .68rem;
      letter-spacing: .3em;
      color: var(--water-dim);
      margin-bottom: .8rem;
    }

    h2.sec-title {
      text-align: center;
      font-size: clamp(1.6rem, 3.2vw, 2.4rem);
      font-weight: 300;
      margin-bottom: 1rem;
      color: #fff;
    }

    h2.sec-title strong {
      font-weight: 800;
      color: var(--water);
    }

    .sec-desc {
      text-align: center;
      color: var(--text-dim);
      max-width: 660px;
      margin: 0 auto 3.5rem;
      font-size: .95rem;
      line-height: 1.85;
    }

    .sec-desc a {
      color: var(--water);
      text-decoration: none;
    }

    .divider {
      width: 60px;
      height: 1px;
      background: var(--water-dim);
      margin: 0 auto 3rem;
    }

    /* WHATIS */
    #whatis {
      background: var(--ocean2);
      position: relative;
    }

    #whatis::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url(../img/bg-ocean.jpg) center/cover no-repeat;
      opacity: .04;
      pointer-events: none;
      z-index: 0;
    }

    #whatis .container {
      position: relative;
      z-index: 1;
    }

    .whatis-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }

    .whatis-card {
      background: var(--ocean3);
      border: 1px solid rgba(201, 168, 76, .12);
      padding: 2.5rem 2rem;
      transition: border-color .3s, transform .3s;
    }

    .whatis-card:hover {
      border-color: var(--water-dim);
      transform: translateY(-4px);
    }

    .whatis-icon {
      font-size: 2rem;
      margin-bottom: 1rem;
      color: var(--water);
    }

    .whatis-card h3 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--water);
      margin-bottom: .7rem;
      letter-spacing: .06em;
    }

    .whatis-card p {
      font-size: .9rem;
      color: var(--text-dim);
      line-height: 1.9;
    }

    .whatis-card a {
      color: var(--water);
      text-decoration: none;
    }

    /* CONTACT */
    #contact {
      background: var(--ocean);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem;
    }

    .contact-card {
      background: var(--ocean2);
      border: 1px solid rgba(201, 168, 76, .15);
      padding: 2.5rem 2rem;
      text-align: center;
      transition: border-color .3s;
    }

    .contact-card:hover {
      border-color: var(--water);
    }

    .contact-icon {
      font-size: 2.5rem;
      margin-bottom: 1.2rem;
    }

    .contact-card h3 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--water);
      margin-bottom: .8rem;
    }

    .contact-card p {
      font-size: .9rem;
      color: var(--text-dim);
      margin-bottom: 1.5rem;
      line-height: 1.85;
    }

    .btn-tg {
      display: inline-block;
      background: #0088cc;
      color: #fff;
      padding: .8rem 2rem;
      font-weight: 700;
      font-size: .88rem;
      text-decoration: none;
      margin: .3rem;
      transition: opacity .2s;
    }

    .btn-tg:hover {
      opacity: .85;
    }

    .btn-wa {
      display: inline-block;
      background: #25d366;
      color: #fff;
      padding: .8rem 2rem;
      font-weight: 700;
      font-size: .88rem;
      text-decoration: none;
      margin: .3rem;
      transition: opacity .2s;
    }

    .btn-wa:hover {
      opacity: .85;
    }

    /* AREAS */
    #areas {
      background: var(--ocean2);
    }

    .areas-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1rem;
    }

    .area-card {
      background: var(--ocean3);
      border: 1px solid rgba(201, 168, 76, .1);
      padding: 2rem 1.5rem;
      text-align: center;
      transition: border-color .3s, transform .3s;
    }

    .area-card:hover {
      border-color: var(--water);
      transform: translateY(-3px);
    }

    .area-num {
      font-size: 1.8rem;
      font-weight: 300;
      color: var(--water);
      opacity: .5;
      margin-bottom: .5rem;
    }

    .area-card h3 {
      font-size: .95rem;
      font-weight: 700;
      color: var(--water);
      margin-bottom: .5rem;
    }

    .area-card p {
      font-size: .82rem;
      color: var(--text-dim);
      line-height: 1.8;
    }

    .area-tag {
      display: inline-block;
      margin-top: .8rem;
      padding: .2rem .7rem;
      border: 1px solid rgba(201, 168, 76, .25);
      font-size: .68rem;
      color: var(--text-dim);
    }

    /* GUIDE */
    #guide {
      background: var(--ocean);
    }

    .guide-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }

    .guide-card {
      background: var(--ocean2);
      border: 1px solid rgba(201, 168, 76, .12);
      padding: 2.5rem 2rem;
      transition: border-color .3s;
    }

    .guide-card:hover {
      border-color: var(--water-dim);
    }

    .guide-num {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      border: 1px solid var(--water-dim);
      color: var(--water);
      font-size: 1.1rem;
      font-weight: 300;
      margin-bottom: 1.2rem;
    }

    .guide-card h3 {
      font-size: .98rem;
      font-weight: 700;
      color: var(--water);
      margin-bottom: .7rem;
    }

    .guide-card p {
      font-size: .88rem;
      color: var(--text-dim);
      line-height: 1.9;
    }

    .guide-card a {
      color: var(--water);
      text-decoration: none;
    }

    .guide-card ul {
      margin-top: .6rem;
      padding-left: 1.2rem;
    }

    .guide-card ul li {
      font-size: .85rem;
      color: var(--text-dim);
      margin-bottom: .3rem;
    }

    /* REVIEWS */
    #reviews {
      background: var(--ocean2);
    }

    .rating-box {
      text-align: center;
      margin: 0 auto 4rem;
      padding: 2.5rem;
      background: var(--ocean3);
      border: 1px solid rgba(201, 168, 76, .2);
      max-width: 360px;
    }

    .rating-num {
      font-size: 4.5rem;
      font-weight: 300;
      color: var(--water);
      line-height: 1;
    }

    .rating-stars {
      font-size: 1.2rem;
      color: var(--water);
      letter-spacing: .12em;
      margin: .6rem 0;
    }

    .rating-count {
      font-size: .78rem;
      color: var(--text-dim);
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }

    .review-card {
      background: var(--ocean3);
      padding: 2rem;
      border: 1px solid rgba(201, 168, 76, .08);
    }

    .stars {
      color: var(--water);
      font-size: .88rem;
      letter-spacing: .15em;
      margin-bottom: 1rem;
    }

    .review-text {
      font-size: .9rem;
      color: var(--text-dim);
      font-style: italic;
      margin-bottom: 1.2rem;
      line-height: 1.9;
    }

    .review-author {
      font-size: .78rem;
      color: var(--water-dim);
      font-weight: 700;
    }

    .review-date {
      font-size: .7rem;
      color: #3a3428;
      margin-top: .2rem;
    }

    /* VERSUS */
    #versus {
      background: var(--ocean);
      position: relative;
    }

    #versus::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url(../img/bg-night.jpg) center/cover no-repeat;
      opacity: .06;
      pointer-events: none;
      z-index: 0;
    }

    #versus .container {
      position: relative;
      z-index: 1;
    }

    .vs-wrap {
      max-width: 900px;
      margin: 0 auto;
    }

    .vs-grid {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 1.5rem;
      align-items: start;
    }

    .vs-col {
      background: var(--ocean2);
      border: 1px solid rgba(201, 168, 76, .12);
      padding: 2rem 1.5rem;
    }

    .vs-title {
      font-size: .9rem;
      font-weight: 700;
      color: var(--water);
      margin-bottom: 1.2rem;
      text-align: center;
    }

    .vs-col ul {
      list-style: none;
      padding: 0;
    }

    .vs-col ul li {
      font-size: .85rem;
      color: var(--text-dim);
      padding: .5rem 0;
      border-bottom: 1px solid rgba(201, 168, 76, .06);
      display: flex;
      align-items: flex-start;
      gap: .5rem;
    }

    .vs-col ul li::before {
      content: '→';
      color: var(--water-dim);
      flex-shrink: 0;
    }

    .vs-badge {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: var(--water-dim);
      padding: 1rem 0;
      align-self: center;
    }

    @media(max-width:640px) {
      .vs-grid {
        grid-template-columns: 1fr
      }

      .vs-badge {
        display: none
      }
    }

    /* FAQ */
    #faq {
      background: var(--ocean2);
    }

    .faq-list {
      max-width: 780px;
      margin: 0 auto;
    }

    .faq-item {
      border-bottom: 1px solid rgba(201, 168, 76, .1);
    }

    .faq-item input[type="checkbox"] {
      display: none;
    }

    .faq-label {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.4rem 0;
      cursor: pointer;
      color: #fff;
      font-size: .95rem;
      font-weight: 600;
      user-select: none;
    }

    .faq-label::after {
      content: '+';
      font-size: 1.4rem;
      color: var(--water-dim);
      transition: transform .3s;
    }

    .faq-item input:checked+.faq-label::after {
      transform: rotate(45deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height .4s ease;
      color: var(--text-dim);
      font-size: .9rem;
      padding-right: 2rem;
      line-height: 1.9;
    }

    .faq-item input:checked~.faq-answer {
      max-height: 480px;
      padding-bottom: 1.4rem;
    }

    .faq-answer a {
      color: var(--water);
      text-decoration: none;
    }

    /* FOOTER */
    footer {
      background: #060607;
      border-top: 1px solid rgba(201, 168, 76, .08);
      padding: 5rem 1.5rem 2rem;
    }

    .footer-grid {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 3rem;
    }

    .footer-brand img {
      width: 72px;
      height: 72px;
      object-fit: contain;
      border-radius: 8px;
      margin-bottom: .85rem;
      display: block;
    }

    .footer-brand h3 {
      font-size: 1.05rem;
      color: var(--water);
      margin-bottom: 1rem;
      font-weight: 700;
    }

    .footer-brand p {
      font-size: .85rem;
      color: var(--text-dim);
      line-height: 1.85;
    }

    .footer-brand a {
      color: var(--water-dim);
      text-decoration: none;
    }

    .footer-col h4 {
      font-size: .68rem;
      letter-spacing: .2em;
      color: var(--water-dim);
      margin-bottom: 1.2rem;
    }

    .footer-col ul {
      list-style: none;
    }

    .footer-col ul li {
      margin-bottom: .6rem;
    }

    .footer-col ul li a {
      font-size: .85rem;
      color: var(--text-dim);
      text-decoration: none;
      transition: color .2s;
    }

    .footer-col ul li a:hover {
      color: var(--water);
    }

    .footer-divider {
      max-width: 1100px;
      margin: 3rem auto 1.5rem;
      border: none;
      border-top: 1px solid rgba(201, 168, 76, .06);
    }

    .footer-bottom {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
      align-items: center;
    }

    .footer-bottom p {
      font-size: .75rem;
      color: #3a3428;
    }

    .footer-bottom a {
      color: #3a3428;
      text-decoration: none;
    }

    .footer-tags {
      display: flex;
      gap: .5rem;
      flex-wrap: wrap;
    }

    .footer-tag {
      font-size: .65rem;
      color: #3a3428;
      padding: .2rem .6rem;
      border: 1px solid #2a2415;
    }

    /* NAV */
    #top-nav {
      position: sticky;
      top: 0;
      z-index: 200;
      background: rgba(9, 9, 14, .96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(201, 168, 76, .12);
      padding: 0 1.5rem;
    }

    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 56px;
    }

    .nav-brand {
      display: flex;
      align-items: center;
      gap: .5rem;
      font-size: .85rem;
      font-weight: 700;
      color: var(--water);
      text-decoration: none;
      white-space: nowrap;
      letter-spacing: .12em;
    }

    .nav-brand img {
      width: 36px;
      height: 36px;
      object-fit: contain;
      border-radius: 4px;
      flex-shrink: 0;
    }

    .nav-links {
      display: flex;
      list-style: none;
      overflow-x: auto;
    }

    .nav-links li a {
      display: block;
      padding: 0 .9rem;
      height: 56px;
      line-height: 56px;
      font-size: .78rem;
      color: var(--text-dim);
      text-decoration: none;
      white-space: nowrap;
      border-bottom: 1px solid transparent;
      transition: color .2s, border-color .2s;
    }

    .nav-links li a:hover {
      color: var(--water);
      border-bottom-color: var(--water);
    }

    .nav-cta {
      background: var(--water);
      color: #120f05;
      padding: .45rem 1.2rem;
      font-size: .78rem;
      font-weight: 800;
      text-decoration: none;
      white-space: nowrap;
      margin-left: 1rem;
      flex-shrink: 0;
      transition: background .2s;
    }

    .nav-cta:hover {
      background: var(--water-bright);
    }


    /* WA FLOAT */
    .wa-float {
      position: fixed;
      bottom: 1.5rem;
      right: 1.5rem;
      z-index: 999;
      background: #25d366;
      color: #fff;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      text-decoration: none;
      box-shadow: 0 4px 16px rgba(37, 211, 102, .5);
      transition: transform .2s;
    }

    .wa-float:hover {
      transform: scale(1.1);
    }

    @media(max-width:768px) {
      .nav-brand {
        font-size: 0;
        letter-spacing: 0;
        gap: 0;
      }

      .nav-links li a {
        padding: 0 .6rem;
        font-size: .72rem
      }
    }

    @media(max-width:600px) {
      .hero-cta-group {
        flex-direction: column;
        align-items: center
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center
      }
    }

    /* LISTINGS */
    #listings {
      background: var(--ocean2);
    }

    .listings-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 1.5rem;
      margin-top: 2.5rem;
    }

    .listing-card {
      background: var(--ocean3);
      border: 1px solid rgba(201, 168, 76, .12);
      overflow: hidden;
      transition: transform .25s, box-shadow .25s;
      position: relative;
    }

    .listing-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(201, 168, 76, .14);
    }

    .listing-card .card-img-wrap {
      height: 380px;
      overflow: hidden;
      background: #0e0d12;
    }

    .listing-card .card-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
      transition: transform .4s;
    }

    .listing-card:hover .card-img-wrap img {
      transform: scale(1.04);
    }

    .listing-card .card-body {
      padding: 1.1rem 1.1rem .9rem;
    }

    .card-name {
      font-size: 1rem;
      font-weight: 700;
      color: var(--water-bright);
      margin-bottom: .5rem;
    }

    .card-tags {
      display: flex;
      flex-wrap: wrap;
      gap: .35rem;
      margin-bottom: .75rem;
    }

    .card-tag {
      font-size: .63rem;
      padding: .18rem .55rem;
      border: 1px solid rgba(201, 168, 76, .2);
      color: var(--text-dim);
    }

    .card-tag.region {
      border-color: rgba(201, 168, 76, .55);
      color: var(--water);
      font-weight: 600;
    }

    .card-desc {
      font-size: .81rem;
      color: var(--text-dim);
      line-height: 1.65;
      margin-bottom: .9rem;
    }

    .card-btns {
      display: flex;
      gap: .5rem;
      flex-wrap: wrap;
    }

    .card-btn-tg {
      font-size: .73rem;
      padding: .38rem .85rem;
      background: rgba(201, 168, 76, .1);
      color: var(--water);
      text-decoration: none;
      border: 1px solid rgba(201, 168, 76, .28);
      transition: background .2s;
    }

    .card-btn-tg:hover {
      background: rgba(201, 168, 76, .28);
    }

    .card-btn-wa {
      font-size: .73rem;
      padding: .38rem .85rem;
      background: rgba(37, 211, 102, .1);
      color: #25d366;
      text-decoration: none;
      border: 1px solid rgba(37, 211, 102, .22);
      transition: background .2s;
    }

    .card-btn-wa:hover {
      background: rgba(37, 211, 102, .22);
    }

    .card-badge {
      position: absolute;
      top: .7rem;
      left: .7rem;
      font-size: .58rem;
      font-weight: 700;
      padding: .22rem .55rem;
      background: var(--water);
      color: #120f05;
      letter-spacing: .04em;
      max-width: 7.5rem;
      line-height: 1.35;
    }

    .card-badge.hot {
      background: #e05252;
    }

    .card-badge.new {
      background: #e8cc76;
      color: #120f05;
    }

    /* SLANG ITEM */
    .slang-item {
      background: var(--ocean3);
      border: 1px solid rgba(201, 168, 76, .15);
      padding: 2rem 2.5rem;
      margin-top: 3rem;
      max-width: 860px;
      margin-left: auto;
      margin-right: auto;
    }

    .slang-item h3 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--water);
      margin-bottom: .8rem;
      letter-spacing: .06em;
    }

    .slang-item p {
      font-size: .9rem;
      color: var(--text-dim);
      line-height: 1.9;
      margin-bottom: .6rem;
    }

    .slang-item a {
      color: var(--water);
      text-decoration: none;
    }

    /* YUEPAO / MASSAGE */
    #yuepao {
      background: var(--ocean);
      padding: 6rem 1.5rem;
    }

    #massage-xiashui {
      background: var(--ocean2);
      padding: 6rem 1.5rem;
    }

    .yuepao-regions {
      list-style: none;
      padding: 0;
      max-width: 680px;
      margin: 1.5rem auto 0;
    }

    .yuepao-regions li {
      padding: .55rem 0;
      border-bottom: 1px solid rgba(201, 168, 76, .08);
      color: var(--text-dim);
      font-size: .9rem;
      display: flex;
      gap: .5rem;
      align-items: flex-start;
    }

    .yuepao-regions li::before {
      content: '→';
      color: var(--water-dim);
      flex-shrink: 0;
    }

    /* PRICING */
    #pricing {
      background: var(--ocean2);
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.25rem;
      margin-bottom: 2rem;
    }

    .pricing-tier {
      background: var(--ocean3);
      border: 1px solid rgba(201, 168, 76, .15);
      padding: 2rem 1.5rem;
      text-align: center;
    }

    .pricing-tier h3 {
      font-size: .95rem;
      color: var(--water);
      margin-bottom: .8rem;
      letter-spacing: .06em;
    }

    .pricing-tier .price {
      font-size: 1.5rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: .5rem;
    }

    .pricing-tier .sgd {
      font-size: .82rem;
      color: var(--text-dim);
      margin-bottom: .8rem;
    }

    .pricing-tier p {
      font-size: .85rem;
      color: var(--text-dim);
      line-height: 1.7;
    }

    .pricing-note {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 2rem;
      font-size: .9rem;
      color: var(--text-dim);
      line-height: 1.85;
    }

    .pricing-note a {
      color: var(--water);
      text-decoration: none;
    }

    /* XIASHUI INTRO */
    #xiashui-intro {
      background: var(--ocean);
    }

    .intro-body {
      max-width: 760px;
      margin: 0 auto;
      font-size: .95rem;
      color: var(--text-dim);
      line-height: 1.95;
    }

    .intro-body p {
      margin-bottom: 1.2rem;
    }

    .intro-body a {
      color: var(--water);
      text-decoration: none;
    }

    .intro-body h3 {
      font-size: 1.05rem;
      color: var(--water);
      font-weight: 600;
      margin: 2rem 0 .8rem;
    }

    /* TRUST */
    #trust {
      background: var(--ocean2);
    }

    /* TYPES */
    #types {
      background: var(--ocean);
    }

    .yuepao-cta {
      text-align: center;
      margin-top: 2.5rem;
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }
  

    /* INNER PAGE */
    .page-header {
      padding: 4.5rem 1.5rem 3rem;
      text-align: center;
      background: linear-gradient(180deg, rgba(9,9,14,.4), var(--ocean)), url(../img/hero.jpg) center/cover no-repeat;
    }
    .breadcrumb {
      font-size: .78rem;
      color: var(--text-dim);
      margin-bottom: 1.2rem;
    }
    .breadcrumb a { color: var(--water); text-decoration: none; }
    .page-header h1 {
      font-size: clamp(1.7rem, 4vw, 2.6rem);
      font-weight: 300;
      color: #fff;
      margin-bottom: .8rem;
    }
    .page-header h1 strong { font-weight: 800; color: var(--water); }
    .page-header .lede {
      max-width: 680px;
      margin: 0 auto 1.8rem;
      color: #a09070;
      font-size: .95rem;
      line-height: 1.85;
    }
    .article {
      max-width: 760px;
      margin: 0 auto;
      padding: 4rem 1.5rem;
      font-size: .95rem;
      color: var(--text-dim);
      line-height: 1.95;
    }
    .article h2 {
      font-size: 1.25rem;
      color: #fff;
      font-weight: 600;
      margin: 2.2rem 0 .9rem;
    }
    .article h2 strong { color: var(--water); }
    .article h3 {
      font-size: 1.02rem;
      color: var(--water);
      margin: 1.6rem 0 .6rem;
    }
    .article p { margin-bottom: 1.1rem; }
    .article a { color: var(--water); text-decoration: none; }
    .article ul, .article ol { margin: 0 0 1.2rem 1.2rem; }
    .article li { margin-bottom: .45rem; }
    .callout {
      background: var(--ocean3);
      border: 1px solid rgba(201,168,76,.2);
      padding: 1.2rem 1.4rem;
      margin: 1.6rem 0;
      color: var(--text);
    }
    .siblings { background: var(--ocean2); padding: 4rem 1.5rem; }
    .sib-grid {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1rem;
    }
    .sib-card {
      background: var(--ocean3);
      border: 1px solid rgba(201,168,76,.12);
      padding: 1.4rem 1.2rem;
      text-decoration: none;
      color: inherit;
      display: block;
    }
    .sib-card:hover { border-color: var(--water); }
    .sib-card h3 { color: var(--water); font-size: .95rem; margin-bottom: .4rem; }
    .sib-card p { font-size: .82rem; color: var(--text-dim); }
    .cta-band {
      text-align: center;
      padding: 4.5rem 1.5rem;
      background: var(--ocean);
    }
    .cta-band h3 { color: #fff; font-size: 1.4rem; margin-bottom: .8rem; }
    .cta-band p { color: var(--text-dim); margin-bottom: 1.6rem; }
    .hub-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1rem;
    }
    .hub-card {
      display: block;
      background: var(--ocean3);
      border: 1px solid rgba(201,168,76,.12);
      padding: 1.6rem 1.3rem;
      text-decoration: none;
      color: inherit;
      transition: border-color .2s, transform .2s;
    }
    .hub-card:hover { border-color: var(--water); transform: translateY(-3px); }
    .hub-card .hub-kw { font-size: .68rem; letter-spacing: .12em; color: var(--water-dim); margin-bottom: .5rem; }
    .hub-card h3 { color: var(--water); font-size: 1rem; margin-bottom: .45rem; }
    .hub-card p { font-size: .84rem; color: var(--text-dim); line-height: 1.7; }

/* =========================================================
   HOME PAGE — MODERN DARK LUXURY
   Scoped to .home-page so inner pages remain unchanged.
   ========================================================= */
.home-page {
  --home-bg: #080808;
  --home-panel: #11100f;
  --home-panel-soft: #171512;
  --home-gold: #d7b866;
  --home-gold-bright: #f0d98d;
  --home-cream: #f4efe4;
  --home-muted: #a29a8b;
  --home-line: rgba(215, 184, 102, .18);
  background:
    radial-gradient(circle at 12% 8%, rgba(215, 184, 102, .07), transparent 28rem),
    var(--home-bg);
  color: var(--home-cream);
  font-family: Inter, "Noto Sans SC", "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
  overflow-x: hidden;
}

.home-page a,
.home-page button,
.home-page label {
  -webkit-tap-highlight-color: transparent;
}

.home-page a:focus-visible,
.home-page label:focus-visible {
  outline: 2px solid var(--home-gold-bright);
  outline-offset: 4px;
}

.home-page #top-nav {
  position: sticky;
  height: 72px;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
  background: rgba(8, 8, 8, .82);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  backdrop-filter: blur(22px) saturate(130%);
}

.home-page .nav-inner {
  max-width: 1280px;
  height: 72px;
}

.home-page .nav-brand {
  color: var(--home-cream);
  font-size: .82rem;
  letter-spacing: .14em;
}

.home-page .nav-brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--home-line);
  padding: 3px;
}

.home-page .nav-links {
  gap: .25rem;
}

.home-page .nav-links li a {
  height: 72px;
  line-height: 72px;
  padding: 0 .8rem;
  color: #8f897e;
  border: 0;
  font-size: .75rem;
}

.home-page .nav-links li a:hover {
  color: var(--home-cream);
}

.home-page .nav-cta {
  padding: .7rem 1.25rem;
  border: 1px solid var(--home-gold);
  border-radius: 999px;
  background: transparent;
  color: var(--home-gold-bright);
  letter-spacing: .06em;
}

.home-page .nav-cta:hover {
  color: #080706;
  background: var(--home-gold-bright);
}

.home-page #hero {
  min-height: calc(100svh - 72px);
  padding: clamp(3rem, 7vw, 6.5rem) clamp(1.25rem, 5vw, 4rem);
  text-align: left;
  isolation: isolate;
  background:
    radial-gradient(circle at 72% 34%, rgba(215, 184, 102, .14), transparent 24rem),
    linear-gradient(135deg, #080808 0%, #0e0d0b 52%, #080808 100%);
}

.home-page #hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .24;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.home-page .hero-shell {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .78fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.home-page .hero-copy {
  max-width: 690px;
}

.home-page .hero-badge {
  width: fit-content;
  margin: 0 0 2.1rem;
  padding: .45rem .9rem;
  border: 1px solid var(--home-line);
  border-radius: 999px;
  color: var(--home-gold);
  background: rgba(215, 184, 102, .04);
  font-size: .62rem;
  line-height: 1;
  letter-spacing: .22em;
}

.home-page .hero-kicker {
  margin-bottom: .9rem;
  color: var(--home-muted);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.home-page #hero h1 {
  margin: 0 0 1.5rem;
  font-size: clamp(2.75rem, 5.8vw, 5.7rem);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.055em;
  text-align: left;
}

.home-page #hero h1 strong {
  display: block;
  color: var(--home-cream);
  font-weight: 800;
}

.home-page #hero h1 span {
  display: block;
  margin-top: .18em;
  color: var(--home-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .54em;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -.02em;
}

.home-page .hero-sub {
  max-width: 600px;
  margin: 0 0 2.25rem;
  color: var(--home-muted);
  font-size: clamp(.92rem, 1.3vw, 1.04rem);
  line-height: 1.9;
  text-align: left;
}

.home-page .hero-cta-group {
  justify-content: flex-start;
  gap: .75rem;
}

.home-page .btn-water,
.home-page .btn-outline-w {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: .85rem 1.5rem;
  font-size: .8rem;
  letter-spacing: .04em;
}

.home-page .btn-water {
  background: var(--home-gold-bright);
  color: #0b0905;
  box-shadow: 0 10px 30px rgba(215, 184, 102, .16);
}

.home-page .btn-water:hover {
  background: #f8e8b3;
  box-shadow: 0 14px 38px rgba(215, 184, 102, .24);
}

.home-page .btn-outline-w {
  border-color: rgba(244, 239, 228, .2);
  color: var(--home-cream);
  background: rgba(255, 255, 255, .025);
}

.home-page .btn-outline-w:hover {
  border-color: var(--home-gold);
  background: rgba(215, 184, 102, .08);
  color: var(--home-gold-bright);
}

.home-page .hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1.5rem;
  margin-top: 2rem;
  color: #767066;
  font-size: .68rem;
  letter-spacing: .08em;
}

.home-page .hero-proof span {
  display: flex;
  align-items: center;
  gap: .55rem;
}

.home-page .hero-proof span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--home-gold);
  box-shadow: 0 0 10px rgba(215, 184, 102, .7);
}

.home-page .hero-visual {
  position: relative;
  width: min(420px, 100%);
  justify-self: end;
}

.home-page .hero-image-frame {
  position: relative;
  aspect-ratio: 4 / 5.45;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 180px 180px 24px 24px;
  background: var(--home-panel);
  box-shadow: 0 32px 80px rgba(0, 0, 0, .55);
}

.home-page .hero-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(8, 8, 8, .5), transparent 35%),
    linear-gradient(120deg, rgba(215, 184, 102, .12), transparent 36%);
  pointer-events: none;
}

.home-page .hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  filter: saturate(.82) contrast(1.04);
}

.home-page .hero-visual-card {
  position: absolute;
  left: -2rem;
  bottom: 2.25rem;
  min-width: 230px;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .95rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 16px;
  background: rgba(17, 16, 15, .84);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .35);
  backdrop-filter: blur(18px);
}

.home-page .hero-visual-index {
  font-family: Georgia, serif;
  color: var(--home-gold);
  font-size: 1.75rem;
}

.home-page .hero-visual-card strong,
.home-page .hero-visual-card small {
  display: block;
}

.home-page .hero-visual-card strong {
  color: var(--home-cream);
  font-size: .83rem;
}

.home-page .hero-visual-card small {
  margin-top: .15rem;
  color: #777167;
  font-size: .58rem;
  letter-spacing: .15em;
}

.home-page .hero-visual-mark {
  position: absolute;
  top: 12%;
  right: -2.1rem;
  z-index: -1;
  color: rgba(215, 184, 102, .11);
  font-family: Georgia, serif;
  font-size: 7rem;
  line-height: 1;
  writing-mode: vertical-rl;
}

.home-page .hero-scroll {
  bottom: 1.2rem;
  color: #5f5a52;
  text-decoration: none;
}

.home-page #stats {
  position: relative;
  z-index: 4;
  width: min(1120px, calc(100% - 2rem));
  margin: -1.4rem auto 0;
  padding: 1.6rem 2rem;
  border: 1px solid var(--home-line);
  border-radius: 20px;
  background: rgba(17, 16, 15, .94);
  box-shadow: 0 22px 50px rgba(0, 0, 0, .3);
  backdrop-filter: blur(18px);
}

.home-page .stats-grid {
  max-width: none;
  gap: 0;
}

.home-page .stats-grid > div {
  padding: .35rem 1rem;
  border-right: 1px solid var(--home-line);
}

.home-page .stats-grid > div:last-child {
  border-right: 0;
}

.home-page .stat-num {
  color: var(--home-gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
}

.home-page .stat-label {
  color: #777167;
  font-size: .67rem;
}

.home-page .today-updates {
  width: min(920px, calc(100% - 2rem));
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.5rem;
  align-items: center;
  margin: 2.5rem auto 0 !important;
  padding: 1rem 1.25rem !important;
  border: 1px solid rgba(215, 184, 102, .14) !important;
  border-left: 1px solid rgba(215, 184, 102, .14) !important;
  border-radius: 14px;
  background: rgba(215, 184, 102, .045);
}

.home-page .today-updates h3 {
  margin: 0 !important;
  color: var(--home-gold) !important;
  font-size: .75rem !important;
  white-space: nowrap;
}

.home-page .today-updates p {
  color: #898276 !important;
  font-size: .76rem !important;
  line-height: 1.7;
}

.home-page section:not(#hero):not(#stats) {
  padding: clamp(4.8rem, 8vw, 7.5rem) clamp(1.15rem, 4vw, 2rem);
}

.home-page .container {
  max-width: 1180px;
}

.home-page .sec-label {
  color: #8a7542;
  font-size: .64rem;
  letter-spacing: .28em;
}

.home-page h2.sec-title {
  color: var(--home-cream);
  font-size: clamp(1.9rem, 3.7vw, 3.25rem);
  font-weight: 650;
  letter-spacing: -.035em;
}

.home-page h2.sec-title strong {
  color: var(--home-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.home-page .divider {
  width: 34px;
  height: 2px;
  margin-bottom: 1.6rem;
  background: var(--home-gold);
}

.home-page .sec-desc {
  max-width: 720px;
  margin-bottom: 3rem;
  color: var(--home-muted);
}

.home-page #listings {
  background: transparent;
}

.home-page .listings-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.home-page .listing-card {
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 22px;
  background: var(--home-panel);
  box-shadow: 0 12px 35px rgba(0, 0, 0, .22);
}

.home-page .listing-card:hover {
  transform: translateY(-7px);
  border-color: rgba(215, 184, 102, .35);
  box-shadow: 0 24px 55px rgba(0, 0, 0, .38);
}

.home-page .listing-card .card-img-wrap {
  position: relative;
  height: auto;
  aspect-ratio: 4 / 4.9;
  background: #14120f;
}

.home-page .listing-card .card-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, .52), transparent 42%);
  pointer-events: none;
}

.home-page .listing-card .card-body {
  position: relative;
  padding: 1.2rem 1.25rem 1.3rem;
}

.home-page .card-name {
  color: var(--home-cream);
  font-size: 1.05rem;
}

.home-page .card-tag {
  border-radius: 999px;
  border-color: rgba(255, 255, 255, .1);
  color: #8d867a;
  background: rgba(255, 255, 255, .025);
}

.home-page .card-tag.region {
  border-color: rgba(215, 184, 102, .24);
  color: var(--home-gold);
  background: rgba(215, 184, 102, .06);
}

.home-page .card-desc {
  min-height: 2.7em;
  color: #918a7e;
}

.home-page .card-btns a {
  flex: 1;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.home-page .card-badge {
  z-index: 2;
  top: 1rem;
  left: 1rem;
  border-radius: 999px;
  padding: .35rem .7rem;
  background: rgba(8, 8, 8, .72);
  color: var(--home-gold-bright);
  border: 1px solid rgba(215, 184, 102, .36);
  backdrop-filter: blur(12px);
}

.home-page .card-badge.hot,
.home-page .card-badge.new {
  background: rgba(8, 8, 8, .72);
  color: var(--home-gold-bright);
}

.home-page #contact,
.home-page #pricing,
.home-page #trust,
.home-page #faq {
  background:
    radial-gradient(circle at 85% 0%, rgba(215, 184, 102, .055), transparent 25rem),
    #0d0c0b;
}

.home-page .contact-grid {
  max-width: 820px;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.home-page .contact-card,
.home-page .whatis-card,
.home-page .guide-card,
.home-page .area-card,
.home-page .pricing-tier,
.home-page .vs-col {
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  background: rgba(255, 255, 255, .025);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}

.home-page .contact-card {
  padding: 2.1rem 1.5rem;
}

.home-page .contact-card:first-child {
  background:
    radial-gradient(circle at 20% 0%, rgba(0, 136, 204, .12), transparent 16rem),
    rgba(255, 255, 255, .025);
}

.home-page .contact-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin: 0 auto 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--home-line);
  background: rgba(215, 184, 102, .06);
  font-size: 1.35rem;
}

.home-page .btn-tg,
.home-page .btn-wa {
  border-radius: 999px;
  padding: .7rem 1.1rem;
}

.home-page #topics,
.home-page #whatis,
.home-page #guide,
.home-page #versus {
  background: transparent;
}

.home-page .hub-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  counter-reset: topic;
}

.home-page .hub-card {
  position: relative;
  min-height: 178px;
  padding: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  background: var(--home-panel);
  counter-increment: topic;
}

.home-page .hub-card::after {
  content: "0" counter(topic);
  position: absolute;
  right: 1rem;
  bottom: -.3rem;
  color: rgba(215, 184, 102, .07);
  font-family: Georgia, serif;
  font-size: 4.5rem;
  line-height: 1;
}

.home-page .hub-card:hover {
  border-color: rgba(215, 184, 102, .4);
  background: var(--home-panel-soft);
  transform: translateY(-5px);
}

.home-page .hub-card .hub-kw {
  color: #8a7542;
}

.home-page .hub-card h3 {
  color: var(--home-cream);
  font-size: 1.02rem;
}

.home-page .hub-card p {
  position: relative;
  z-index: 1;
  max-width: 85%;
  color: #8e877a;
}

.home-page .areas-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.home-page .area-card {
  text-align: left;
  padding: 1.5rem;
}

.home-page .area-card:hover,
.home-page .guide-card:hover,
.home-page .whatis-card:hover {
  border-color: rgba(215, 184, 102, .32);
  transform: translateY(-4px);
}

.home-page .area-num {
  color: var(--home-gold);
  font-family: Georgia, serif;
  font-size: 1.15rem;
}

.home-page .area-card h3,
.home-page .guide-card h3,
.home-page .whatis-card h3,
.home-page .pricing-tier h3 {
  color: var(--home-cream);
}

.home-page .area-card p,
.home-page .guide-card p,
.home-page .whatis-card p,
.home-page .pricing-tier p {
  color: #928b7f;
}

.home-page .area-card a {
  color: var(--home-gold);
  text-decoration: none;
}

.home-page .area-tag {
  border-radius: 999px;
  border-color: var(--home-line);
  color: var(--home-gold);
}

.home-page .pricing-grid {
  gap: 1rem;
}

.home-page .pricing-tier {
  padding: 2rem 1.5rem;
}

.home-page .pricing-tier:nth-child(2) {
  border-color: rgba(215, 184, 102, .36);
  background: linear-gradient(145deg, rgba(215, 184, 102, .09), rgba(255, 255, 255, .025));
  transform: translateY(-8px);
}

.home-page .pricing-tier .price {
  color: var(--home-gold-bright);
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
}

.home-page .whatis-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-page .whatis-card {
  padding: 2rem;
}

.home-page .whatis-icon,
.home-page .guide-num {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--home-line);
  border-radius: 50%;
  color: var(--home-gold);
  font-family: Georgia, serif;
  font-size: .82rem;
}

.home-page .guide-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.home-page #trust .guide-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-page .guide-card {
  padding: 1.7rem;
}

.home-page .vs-grid {
  gap: 1rem;
}

.home-page .vs-col {
  padding: 2rem;
}

.home-page .vs-title {
  color: var(--home-gold);
}

.home-page .vs-badge {
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--home-line);
  border-radius: 50%;
  color: var(--home-gold);
  font-family: Georgia, serif;
  font-size: .9rem;
}

.home-page .faq-list {
  max-width: 860px;
  padding: .3rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  background: rgba(255, 255, 255, .022);
}

.home-page .faq-item {
  border-bottom-color: rgba(255, 255, 255, .07);
}

.home-page .faq-label {
  min-height: 64px;
  color: var(--home-cream);
}

.home-page .faq-label::after {
  color: var(--home-gold);
}

.home-page footer {
  padding-top: 4rem;
  border-top-color: var(--home-line);
  background: #060606;
}

.home-page .footer-brand img {
  width: 82px;
  height: 82px;
  border: 1px solid var(--home-line);
  border-radius: 50%;
  padding: 4px;
}

.home-page .footer-brand h3 {
  color: var(--home-cream);
}

.home-page .footer-col h4 {
  color: var(--home-gold);
}

.home-page .footer-col ul li a:hover {
  color: var(--home-gold-bright);
}

.home-page .wa-float {
  width: 52px;
  height: 52px;
  right: 1.25rem;
  bottom: 1.25rem;
  border: 1px solid rgba(255, 255, 255, .25);
  box-shadow: 0 10px 30px rgba(37, 211, 102, .22);
}

.home-page .mobile-actions {
  display: none;
}

.home-page .faq-item input[type="checkbox"] {
  display: block;
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.home-page .faq-item input:focus-visible + .faq-label {
  outline: 2px solid var(--home-gold-bright);
  outline-offset: -2px;
  border-radius: 8px;
}

@media (max-width: 1024px) {
  .home-page .nav-links li:nth-child(3),
  .home-page .nav-links li:nth-child(4),
  .home-page .nav-links li:nth-child(5) {
    display: none;
  }

  .home-page .hero-shell {
    grid-template-columns: minmax(0, 1fr) minmax(300px, .7fr);
    gap: 3rem;
  }

  .home-page .listings-grid,
  .home-page .hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .areas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page #trust .guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .home-page #top-nav,
  .home-page .nav-inner {
    height: 62px;
  }

  .home-page #top-nav {
    padding: 0 1rem;
  }

  .home-page .nav-brand img {
    width: 38px;
    height: 38px;
  }

  .home-page .nav-links {
    display: none;
  }

  .home-page .nav-cta {
    margin-left: auto;
    padding: .58rem .95rem;
    font-size: .7rem;
  }

  .home-page #hero {
    min-height: auto;
    padding: 3.6rem 1.15rem 5rem;
  }

  .home-page .hero-shell {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .home-page .hero-copy {
    text-align: center;
  }

  .home-page .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .home-page .hero-kicker,
  .home-page #hero h1,
  .home-page .hero-sub {
    text-align: center;
  }

  .home-page #hero h1 {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  .home-page .hero-cta-group,
  .home-page .hero-proof {
    justify-content: center;
  }

  .home-page .hero-visual {
    width: min(340px, 88vw);
    justify-self: center;
  }

  .home-page .hero-visual-card {
    left: -1rem;
    bottom: 1.5rem;
  }

  .home-page .hero-visual-mark {
    right: -1rem;
    font-size: 5.2rem;
  }

  .home-page .hero-scroll {
    display: none;
  }

  .home-page #stats {
    margin-top: 0;
    padding: 1.1rem .6rem;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    width: 100%;
  }

  .home-page .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 0;
  }

  .home-page .stats-grid > div:nth-child(2) {
    border-right: 0;
  }

  .home-page .stats-grid > div:nth-child(-n+2) {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--home-line);
  }

  .home-page .today-updates {
    display: block;
  }

  .home-page .today-updates h3 {
    margin-bottom: .4rem !important;
  }

  .home-page section:not(#hero):not(#stats) {
    padding: 4.5rem 1rem;
  }

  .home-page .listings-grid,
  .home-page .hub-grid,
  .home-page .areas-grid,
  .home-page .contact-grid,
  .home-page .whatis-grid,
  .home-page .guide-grid {
    grid-template-columns: 1fr;
  }

  .home-page #trust .guide-grid {
    grid-template-columns: 1fr;
  }

  .home-page .listing-card .card-img-wrap {
    aspect-ratio: 4 / 4.7;
  }

  .home-page .pricing-tier:nth-child(2) {
    transform: none;
  }

  .home-page .vs-col {
    padding: 1.5rem;
  }

  .home-page .faq-list {
    padding: .2rem 1rem;
    border-radius: 16px;
  }

  .home-page .faq-label {
    font-size: .88rem;
  }

  .home-page .wa-float {
    display: none;
  }

  .home-page .mobile-actions {
    position: fixed;
    left: 50%;
    bottom: max(.7rem, env(safe-area-inset-bottom));
    z-index: 998;
    width: min(390px, calc(100% - 1.4rem));
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .55rem;
    padding: .55rem;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    background: rgba(13, 12, 11, .9);
    box-shadow: 0 16px 45px rgba(0, 0, 0, .5);
    backdrop-filter: blur(20px);
    transform: translateX(-50%);
  }

  .home-page .mobile-actions a {
    min-height: 43px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: var(--home-cream);
    background: rgba(255, 255, 255, .06);
    font-size: .76rem;
    font-weight: 700;
    text-decoration: none;
  }

  .home-page .mobile-actions a:last-child {
    color: #07150b;
    background: #69dc89;
  }

  .home-page footer {
    padding-bottom: 7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page *,
  .home-page *::before,
  .home-page *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
