/* roulang page: index */
:root{
      --ink:#171717;
      --sand:#D8C7A3;
      --teal:#5F7F78;
      --ivory:#F8F5EE;
      --mist:#F2F1EC;
      --text:#1C1B1A;
      --muted:#66625B;
      --weak:#969088;
      --border:#E4DED2;
      --dark:#111111;
      --radius-lg:28px;
      --radius-md:20px;
      --radius-sm:14px;
      --shadow-soft:0 18px 60px rgba(23,23,23,.08);
      --shadow-lift:0 24px 70px rgba(23,23,23,.10);
      --container:1240px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:"Noto Sans SC","PingFang SC","Microsoft YaHei",system-ui,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at top left, rgba(216,199,163,.26), transparent 28%),
        radial-gradient(circle at top right, rgba(95,127,120,.12), transparent 24%),
        linear-gradient(180deg, #fbfaf6 0%, var(--ivory) 44%, #f6f3ec 100%);
      -webkit-font-smoothing:antialiased;
      text-rendering:optimizeLegibility;
    }
    body::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background-image:
        linear-gradient(rgba(23,23,23,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23,23,23,.035) 1px, transparent 1px);
      background-size:34px 34px;
      mask-image:linear-gradient(180deg, rgba(0,0,0,.4), rgba(0,0,0,0));
      opacity:.5;
      z-index:-1;
    }
    ::selection{background:rgba(216,199,163,.45); color:var(--ink)}
    a{color:inherit; text-decoration:none}
    img{max-width:100%; display:block}
    button,input,textarea,select{font:inherit}
    .site-container{max-width:var(--container); margin:0 auto; padding:0 20px}
    @media (min-width:1024px){ .site-container{padding:0 32px} }
    .section-pad{padding:88px 0}
    @media (min-width:768px){ .section-pad{padding:112px 0} }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:.55rem;
      font-size:12px;
      font-weight:700;
      letter-spacing:.14em;
      text-transform:uppercase;
      color:var(--muted);
    }
    .eyebrow::before{
      content:"";
      width:34px;
      height:1px;
      background:var(--sand);
      display:inline-block;
    }
    .display-title{
      font-weight:800;
      line-height:1.02;
      letter-spacing:-.04em;
      color:var(--ink);
    }
    .headline-accent{
      color:var(--ink);
      box-shadow:inset 0 -0.42em 0 rgba(216,199,163,.42);
    }
    .section-title{
      font-size:clamp(28px, 3.4vw, 54px);
      line-height:1.08;
      letter-spacing:-.03em;
      font-weight:800;
      color:var(--ink);
    }
    .section-subtitle{
      font-size:17px;
      line-height:1.9;
      color:var(--muted);
    }
    .card{
      border:1px solid var(--border);
      border-radius:var(--radius-lg);
      background:rgba(255,255,255,.72);
      box-shadow:var(--shadow-soft);
      backdrop-filter:blur(10px);
      transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
    }
    .card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-lift);
      border-color:rgba(216,199,163,.95);
    }
    .dark-card{
      border:1px solid rgba(255,255,255,.09);
      border-radius:32px;
      background:
        radial-gradient(circle at top right, rgba(216,199,163,.09), transparent 30%),
        linear-gradient(180deg, #171717 0%, #111111 100%);
      box-shadow:0 24px 70px rgba(17,17,17,.25);
      color:#f8f5ee;
    }
    .pill{
      display:inline-flex;
      align-items:center;
      gap:.45rem;
      border:1px solid var(--border);
      background:rgba(255,255,255,.72);
      color:var(--muted);
      border-radius:999px;
      padding:.62rem .95rem;
      font-size:13px;
      transition:all .25s ease;
    }
    .pill:hover{border-color:var(--sand); color:var(--ink); transform:translateY(-1px)}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:.55rem;
      border-radius:999px;
      padding:14px 22px;
      font-weight:700;
      transition:all .28s ease;
      border:1px solid transparent;
      line-height:1;
      white-space:nowrap;
    }
    .btn-primary{
      background:var(--ink);
      color:#f8f5ee;
      box-shadow:0 12px 28px rgba(23,23,23,.12);
    }
    .btn-primary:hover{
      background:var(--sand);
      color:var(--ink);
      transform:translateY(-2px);
    }
    .btn-secondary{
      background:transparent;
      color:var(--ink);
      border-color:var(--border);
    }
    .btn-secondary:hover{
      background:#fff;
      border-color:var(--sand);
      transform:translateY(-2px);
    }
    .btn-dark{
      background:var(--sand);
      color:var(--ink);
      border-color:transparent;
    }
    .btn-dark:hover{
      background:#f7f2e7;
      transform:translateY(-2px);
    }
    .btn:focus-visible, .nav-link:focus-visible, .faq-btn:focus-visible, input:focus-visible, textarea:focus-visible{
      outline:none;
      box-shadow:0 0 0 4px rgba(216,199,163,.35);
    }
    .nav-wrap{
      position:sticky;
      top:0;
      z-index:60;
      backdrop-filter:blur(18px);
      background:rgba(248,245,238,.86);
      border-bottom:1px solid rgba(228,222,210,.8);
    }
    .nav-link{
      position:relative;
      padding:.35rem 0;
      color:var(--muted);
      font-size:14px;
      font-weight:600;
      letter-spacing:.01em;
      transition:color .24s ease;
    }
    .nav-link:hover{color:var(--ink)}
    .nav-link.active{color:var(--ink)}
    .nav-link.active::after{
      content:"";
      position:absolute;
      left:0;
      right:0;
      bottom:-10px;
      height:2px;
      border-radius:999px;
      background:var(--sand);
    }
    .brand-mark{
      width:40px;height:40px;
      border-radius:14px;
      border:1px solid var(--border);
      background:
        linear-gradient(180deg, rgba(255,255,255,.95), rgba(242,241,236,.92));
      display:grid;
      place-items:center;
      box-shadow:inset 0 1px 0 rgba(255,255,255,.8);
    }
    .brand-bars{
      display:flex;
      align-items:flex-end;
      gap:3px;
      height:14px;
    }
    .brand-bars span{
      width:3px;
      border-radius:999px;
      background:var(--ink);
      display:block;
    }
    .brand-bars span:nth-child(1){height:12px}
    .brand-bars span:nth-child(2){height:16px;background:var(--sand)}
    .brand-bars span:nth-child(3){height:12px}
    .hero-grid{
      display:grid;
      grid-template-columns:1.08fr .92fr;
      gap:32px;
      align-items:center;
    }
    .metric{
      border:1px solid rgba(255,255,255,.1);
      border-radius:22px;
      background:rgba(255,255,255,.03);
      padding:18px 18px 16px;
    }
    .metric strong{
      display:block;
      font-size:26px;
      line-height:1;
      letter-spacing:-.04em;
      color:#f8f5ee;
    }
    .metric span{
      display:block;
      margin-top:8px;
      font-size:13px;
      color:rgba(248,245,238,.72);
      line-height:1.6;
    }
    .feature-grid{
      display:grid;
      grid-template-columns:repeat(2, minmax(0,1fr));
      gap:18px;
    }
    .feature-card{
      padding:24px;
      min-height:176px;
    }
    .feature-card .num{
      font-size:12px;
      font-weight:800;
      letter-spacing:.12em;
      color:var(--teal);
    }
    .feature-card h3{
      margin-top:12px;
      font-size:20px;
      line-height:1.25;
      letter-spacing:-.02em;
      color:var(--ink);
    }
    .feature-card p{
      margin-top:10px;
      color:var(--muted);
      line-height:1.8;
      font-size:15px;
    }
    .step{
      position:relative;
      padding:26px 22px;
      border-radius:24px;
      border:1px solid rgba(255,255,255,.09);
      background:rgba(255,255,255,.02);
      transition:transform .28s ease, border-color .28s ease, background .28s ease;
      min-height:210px;
    }
    .step:hover{
      transform:translateY(-3px);
      border-color:rgba(216,199,163,.42);
      background:rgba(255,255,255,.045);
    }
    .step .step-num{
      font-size:13px;
      font-weight:800;
      letter-spacing:.14em;
      color:var(--sand);
    }
    .step h3{
      margin-top:16px;
      font-size:22px;
      font-weight:700;
      line-height:1.2;
      color:#f8f5ee;
    }
    .step p{
      margin-top:10px;
      color:rgba(248,245,238,.74);
      font-size:15px;
      line-height:1.85;
    }
    .step::after{
      content:"";
      position:absolute;
      top:22px;
      right:22px;
      width:16px;
      height:16px;
      border-radius:999px;
      border:1px solid rgba(216,199,163,.45);
      background:rgba(216,199,163,.08);
    }
    .stat-card{
      border:1px solid var(--border);
      border-radius:28px;
      background:linear-gradient(180deg, rgba(255,255,255,.95), rgba(246,243,236,.9));
      box-shadow:var(--shadow-soft);
    }
    .stat-number{
      font-size:clamp(42px, 6vw, 74px);
      line-height:.95;
      letter-spacing:-.05em;
      font-weight:800;
      color:var(--ink);
    }
    .stat-label{
      color:var(--muted);
      line-height:1.8;
      font-size:15px;
    }
    .quote-mark{
      font-size:72px;
      line-height:1;
      color:rgba(23,23,23,.14);
      margin:-8px 0 0 -6px;
    }
    .faq-item{
      border-bottom:1px solid var(--border);
    }
    .faq-btn{
      width:100%;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      padding:22px 0;
      text-align:left;
      color:var(--ink);
      background:transparent;
      border:none;
      cursor:pointer;
    }
    .faq-question{
      font-size:18px;
      line-height:1.55;
      font-weight:700;
      letter-spacing:-.01em;
    }
    .faq-icon{
      flex:0 0 auto;
      width:34px;
      height:34px;
      border-radius:999px;
      border:1px solid var(--border);
      display:grid;
      place-items:center;
      color:var(--ink);
      transition:all .28s ease;
      position:relative;
    }
    .faq-icon::before,
    .faq-icon::after{
      content:"";
      position:absolute;
      background:currentColor;
      border-radius:999px;
      transition:transform .28s ease, opacity .28s ease;
    }
    .faq-icon::before{width:12px;height:1.6px}
    .faq-icon::after{width:1.6px;height:12px}
    .faq-item[data-open="true"] .faq-icon{
      background:rgba(216,199,163,.22);
      border-color:var(--sand);
    }
    .faq-item[data-open="true"] .faq-icon::after{
      transform:rotate(90deg);
      opacity:0;
    }
    .faq-answer{
      max-height:0;
      overflow:hidden;
      opacity:0;
      transition:max-height .35s ease, opacity .25s ease;
    }
    .faq-item[data-open="true"] .faq-answer{
      max-height:240px;
      opacity:1;
      padding-bottom:22px;
    }
    .faq-answer p{
      color:var(--muted);
      font-size:16px;
      line-height:1.85;
      padding-right:18px;
    }
    .footer-link{
      color:rgba(248,245,238,.72);
      transition:color .24s ease;
    }
    .footer-link:hover{color:var(--sand)}
    .mobile-panel{
      display:none;
    }
    .menu-open .mobile-panel{display:block}
    @media (max-width:1023px){
      .hero-grid{grid-template-columns:1fr; gap:22px}
      .feature-grid{grid-template-columns:1fr}
    }
    @media (max-width:767px){
      .section-pad{padding:72px 0}
      .display-title{font-size:clamp(38px, 11vw, 46px)}
      .faq-question{font-size:16px}
      .btn{width:100%}
      .mobile-stack{flex-direction:column}
    }

/* roulang page: category1 */
:root{
      --ink:#171717;
      --ink-2:#111111;
      --text:#1C1B1A;
      --muted:#66625B;
      --soft:#969088;
      --ivory:#F8F5EE;
      --mist:#F2F1EC;
      --line:#E4DED2;
      --sand:#D8C7A3;
      --teal:#5F7F78;
      --shadow:0 18px 60px rgba(23,23,23,.08);
      --shadow-strong:0 24px 70px rgba(23,23,23,.12);
      --radius-xl:28px;
      --radius-lg:20px;
      --radius-md:16px;
    }
    html{
      scroll-behavior:smooth;
    }
    body{
      margin:0;
      color:var(--text);
      background:
        radial-gradient(circle at top left, rgba(216,199,163,.18), transparent 34%),
        radial-gradient(circle at right top, rgba(95,127,120,.12), transparent 26%),
        linear-gradient(180deg, #fbf8f1 0%, #f6f3eb 100%);
      font-family:"Noto Sans SC","PingFang SC","Microsoft YaHei",system-ui,sans-serif;
      -webkit-font-smoothing:antialiased;
      text-rendering:optimizeLegibility;
    }
    body::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background-image:
        linear-gradient(rgba(23,23,23,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23,23,23,.03) 1px, transparent 1px);
      background-size:42px 42px;
      mask-image: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.08) 60%, transparent 100%);
      opacity:.55;
      z-index:-1;
    }
    a{
      color:inherit;
      text-decoration:none;
      transition:all .28s ease;
    }
    img{
      max-width:100%;
      display:block;
    }
    button,input,textarea,select{
      font:inherit;
    }
    :focus-visible{
      outline:2px solid rgba(216,199,163,.85);
      outline-offset:3px;
    }
    .site-container{
      width:min(1240px, calc(100% - 40px));
      margin-inline:auto;
    }
    @media (min-width:640px){
      .site-container{width:min(1240px, calc(100% - 48px));}
    }
    @media (min-width:1024px){
      .site-container{width:min(1240px, calc(100% - 64px));}
    }
    .header-wrap{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter:blur(14px);
      background:rgba(248,245,238,.84);
      border-bottom:1px solid rgba(228,222,210,.82);
    }
    .brand-mark{
      width:44px;
      height:44px;
      border-radius:14px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.72);
      box-shadow:0 10px 30px rgba(23,23,23,.05);
      display:grid;
      place-items:center;
      flex:none;
    }
    .brand-bars{
      display:flex;
      align-items:end;
      gap:4px;
      height:16px;
    }
    .brand-bars span{
      width:3px;
      border-radius:999px;
      background:var(--ink);
      display:block;
    }
    .brand-bars span:nth-child(1){height:10px;}
    .brand-bars span:nth-child(2){height:16px;background:var(--sand);}
    .brand-bars span:nth-child(3){height:12px;}
    .nav-link{
      position:relative;
      color:#2a2926;
      font-size:14px;
      font-weight:500;
      padding:8px 0;
      letter-spacing:.01em;
    }
    .nav-link:hover{
      color:var(--ink);
    }
    .nav-link::after{
      content:"";
      position:absolute;
      left:0;
      bottom:-2px;
      width:100%;
      height:1px;
      background:transparent;
      transform:scaleX(.35);
      transform-origin:left;
      transition:all .28s ease;
    }
    .nav-link:hover::after,
    .nav-link.active::after{
      background:var(--sand);
      transform:scaleX(1);
    }
    .nav-link.active{
      color:var(--ink);
    }
    .nav-pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:12px 18px;
      border-radius:999px;
      background:var(--ink);
      color:var(--ivory);
      border:1px solid var(--ink);
      box-shadow:0 14px 30px rgba(23,23,23,.08);
      transition:all .28s ease;
    }
    .nav-pill:hover{
      background:var(--sand);
      color:var(--ink);
      transform:translateY(-1px);
    }
    .nav-pill-outline{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:12px 18px;
      border-radius:999px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.42);
      color:var(--ink);
      transition:all .28s ease;
    }
    .nav-pill-outline:hover{
      border-color:var(--sand);
      background:rgba(216,199,163,.1);
      transform:translateY(-1px);
    }
    .hero-shell,
    .soft-card,
    .feature-card,
    .panel-card,
    .quote-card,
    .faq-item,
    .form-card{
      border:1px solid var(--line);
      border-radius:var(--radius-xl);
      background:rgba(255,255,255,.72);
      box-shadow:var(--shadow);
    }
    .hero-shell{
      position:relative;
      overflow:hidden;
    }
    .hero-shell::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 15% 20%, rgba(216,199,163,.18), transparent 30%),
        radial-gradient(circle at 84% 18%, rgba(95,127,120,.12), transparent 24%);
      pointer-events:none;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:10px;
      font-size:12px;
      font-weight:700;
      letter-spacing:.18em;
      text-transform:uppercase;
      color:#5f5a52;
    }
    .eyebrow::before{
      content:"";
      width:26px;
      height:1px;
      background:var(--sand);
      display:inline-block;
    }
    .section-title{
      color:var(--ink);
      letter-spacing:-.04em;
      line-height:1.08;
      font-weight:800;
    }
    .section-kicker{
      font-size:12px;
      letter-spacing:.18em;
      text-transform:uppercase;
      color:#6f695f;
      font-weight:700;
    }
    .lead-text{
      color:var(--muted);
      line-height:1.9;
      font-size:16px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      border-radius:999px;
      padding:14px 22px;
      font-weight:700;
      transition:all .28s ease;
      border:1px solid transparent;
      white-space:nowrap;
    }
    .btn-primary{
      background:var(--ink);
      color:var(--ivory);
      border-color:var(--ink);
      box-shadow:0 14px 30px rgba(23,23,23,.08);
    }
    .btn-primary:hover{
      background:var(--sand);
      color:var(--ink);
      transform:translateY(-2px);
      box-shadow:var(--shadow-strong);
    }
    .btn-secondary{
      background:transparent;
      color:var(--ink);
      border-color:var(--line);
    }
    .btn-secondary:hover{
      background:rgba(216,199,163,.12);
      border-color:var(--sand);
      transform:translateY(-2px);
    }
    .btn-dark{
      background:var(--sand);
      color:var(--ink);
      border-color:var(--sand);
    }
    .btn-dark:hover{
      background:var(--ivory);
      transform:translateY(-2px);
    }
    .section-gap{
      padding-top:88px;
      padding-bottom:88px;
    }
    @media (min-width:1024px){
      .section-gap{
        padding-top:112px;
        padding-bottom:112px;
      }
    }
    .metric-tile{
      border-radius:20px;
      border:1px solid rgba(255,255,255,.08);
      background:rgba(255,255,255,.03);
      padding:16px 16px 18px;
      min-height:118px;
    }
    .metric-num{
      font-size:30px;
      line-height:1;
      font-weight:800;
      color:var(--ivory);
      letter-spacing:-.04em;
    }
    .metric-label{
      color:#d8d2c5;
      font-size:13px;
      line-height:1.7;
      margin-top:10px;
    }
    .num-tag{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:44px;
      height:44px;
      border-radius:14px;
      background:rgba(216,199,163,.14);
      color:var(--sand);
      font-weight:800;
      letter-spacing:-.03em;
      flex:none;
    }
    .feature-card{
      padding:24px;
      transition:all .28s ease;
      height:100%;
    }
    .feature-card:hover,
    .panel-card:hover,
    .quote-card:hover,
    .faq-item:hover,
    .soft-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-strong);
      border-color:rgba(216,199,163,.9);
    }
    .step-line{
      position:relative;
    }
    .step-line::before{
      content:"";
      position:absolute;
      left:22px;
      top:24px;
      bottom:24px;
      width:1px;
      background:linear-gradient(180deg, rgba(216,199,163,.8), rgba(216,199,163,.18));
    }
    .step-dot{
      width:12px;
      height:12px;
      border-radius:999px;
      background:var(--sand);
      box-shadow:0 0 0 8px rgba(216,199,163,.15);
      margin-top:18px;
      flex:none;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      border-radius:999px;
      padding:7px 12px;
      font-size:12px;
      font-weight:700;
      color:#3c3a36;
      background:rgba(216,199,163,.14);
      border:1px solid rgba(216,199,163,.55);
    }
    .badge.teal{
      background:rgba(95,127,120,.1);
      color:#4a6761;
      border-color:rgba(95,127,120,.25);
    }
    .list-check{
      display:grid;
      gap:12px;
    }
    .list-check li{
      position:relative;
      padding-left:22px;
      line-height:1.8;
      color:var(--muted);
    }
    .list-check li::before{
      content:"";
      position:absolute;
      left:0;
      top:.72em;
      width:8px;
      height:8px;
      border-radius:999px;
      background:var(--sand);
    }
    .faq-item{
      overflow:hidden;
      background:rgba(255,255,255,.72);
    }
    .faq-question{
      width:100%;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      text-align:left;
      padding:22px 24px;
      background:transparent;
      border:0;
      color:var(--ink);
      cursor:pointer;
      font-weight:700;
      font-size:17px;
    }
    .faq-question .plus{
      width:34px;
      height:34px;
      border-radius:999px;
      border:1px solid var(--line);
      display:grid;
      place-items:center;
      flex:none;
      transition:all .28s ease;
      background:rgba(255,255,255,.6);
    }
    .faq-question .plus::before,
    .faq-question .plus::after{
      content:"";
      position:absolute;
      width:12px;
      height:1.5px;
      background:var(--ink);
      border-radius:999px;
      transition:transform .28s ease, opacity .28s ease;
    }
    .faq-question .plus{
      position:relative;
    }
    .faq-question .plus::after{
      transform:rotate(90deg);
    }
    .faq-item.active .faq-question .plus{
      border-color:rgba(216,199,163,.9);
      background:rgba(216,199,163,.12);
    }
    .faq-item.active .faq-question .plus::after{
      transform:rotate(0deg);
      opacity:0;
    }
    .faq-answer{
      display:none;
      padding:0 24px 22px;
      color:var(--muted);
      line-height:1.9;
      font-size:15px;
    }
    .faq-item.active .faq-answer{
      display:block;
    }
    .footer-link{
      color:#cfc7ba;
      display:inline-flex;
      width:fit-content;
    }
    .footer-link:hover{
      color:var(--sand);
      transform:translateX(3px);
    }
    .mobile-panel{
      display:none;
    }
    .mobile-panel.open{
      display:block;
    }
    .menu-btn{
      width:44px;
      height:44px;
      border-radius:14px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.7);
      display:grid;
      place-items:center;
      transition:all .28s ease;
    }
    .menu-btn:hover{
      border-color:var(--sand);
      transform:translateY(-1px);
    }
    .menu-lines{
      width:18px;
      height:12px;
      position:relative;
    }
    .menu-lines span{
      position:absolute;
      left:0;
      right:0;
      height:1.6px;
      border-radius:999px;
      background:var(--ink);
      transition:all .28s ease;
    }
    .menu-lines span:nth-child(1){top:0;}
    .menu-lines span:nth-child(2){top:5px;}
    .menu-lines span:nth-child(3){top:10px;}
    .menu-btn.open .menu-lines span:nth-child(1){transform:translateY(5px) rotate(45deg);}
    .menu-btn.open .menu-lines span:nth-child(2){opacity:0;}
    .menu-btn.open .menu-lines span:nth-child(3){transform:translateY(-5px) rotate(-45deg);}
    .directory-card{
      background:linear-gradient(180deg, rgba(17,17,17,.97), rgba(23,23,23,.93));
      color:var(--ivory);
      border:1px solid rgba(255,255,255,.08);
      border-radius:28px;
      box-shadow:0 24px 70px rgba(23,23,23,.18);
    }
    .directory-link{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:14px 0;
      border-top:1px solid rgba(255,255,255,.08);
      color:#e8e1d1;
    }
    .directory-link:first-of-type{
      border-top:0;
      padding-top:0;
    }
    .directory-link:hover{
      color:var(--sand);
    }
    .mini-pulse{
      width:10px;
      height:10px;
      border-radius:999px;
      background:var(--sand);
      box-shadow:0 0 0 6px rgba(216,199,163,.12);
      flex:none;
    }
    .soft-note{
      background:linear-gradient(180deg, rgba(248,245,238,.8), rgba(242,241,236,.9));
      border:1px solid var(--line);
      border-radius:24px;
    }
    .form-field{
      width:100%;
      border-radius:14px;
      border:1px solid #dcd4c7;
      background:#fbfaf6;
      color:var(--text);
      padding:13px 14px;
      transition:all .28s ease;
    }
    .form-field:focus{
      border-color:var(--sand);
      box-shadow:0 0 0 4px rgba(216,199,163,.18);
      outline:none;
    }
    @media (max-width:1023px){
      .desktop-only{display:none!important;}
    }
    @media (min-width:1024px){
      .mobile-only{display:none!important;}
    }
    @media (max-width:640px){
      .section-gap{padding-top:64px;padding-bottom:64px;}
      .faq-question{font-size:16px;padding:20px;}
      .faq-answer{padding:0 20px 20px;}
    }
