/* roulang page: index */
:root {
      --ink: #243029;
      --ink-soft: #526057;
      --paper: #f6f1e7;
      --paper-deep: #ede5d6;
      --cream: #fffdf8;
      --moss: #31483b;
      --moss-deep: #203128;
      --fern: #8a9c6a;
      --sage: #c8d0b3;
      --clay: #bd714e;
      --clay-dark: #9d5639;
      --sun: #e1bd62;
      --line: rgba(49, 72, 59, .18);
      --shadow-sm: 0 6px 18px rgba(42, 52, 43, .08);
      --shadow-md: 0 18px 42px rgba(38, 47, 39, .14);
      --radius-sm: 12px;
      --radius-md: 20px;
      --radius-lg: 30px;
      --side-width: 282px;
      --font-display: "STKaiti", "KaiTi", "Songti SC", serif;
      --font-body: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      background: var(--paper);
      font-family: var(--font-body);
      line-height: 1.7;
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }
    button, input { font: inherit; }
    button { border: 0; }
    ::selection { background: var(--sage); color: var(--moss-deep); }
    :focus-visible {
      outline: 3px solid var(--sun);
      outline-offset: 3px;
    }

    .site-sidebar {
      width: var(--side-width);
      min-height: 100vh;
      position: fixed;
      z-index: 1040;
      left: 0;
      top: 0;
      padding: 25px 19px;
      color: #f7f0df;
      background:
        radial-gradient(circle at 10% 88%, rgba(196, 129, 87, .18), transparent 24%),
        radial-gradient(circle at 95% 12%, rgba(158, 177, 117, .16), transparent 28%),
        var(--moss-deep);
      border-right: 1px solid rgba(255,255,255,.10);
      display: flex;
      flex-direction: column;
    }
    .side-logo {
      display: flex;
      align-items: center;
      gap: 11px;
      padding: 10px 10px 26px;
      border-bottom: 1px dashed rgba(255,255,255,.22);
    }
    .logo-mark {
      flex: 0 0 42px;
      height: 42px;
      display: grid;
      place-items: center;
      color: var(--moss-deep);
      font-size: 1.18rem;
      background: var(--sun);
      border: 2px solid rgba(255,255,255,.35);
      border-radius: 14px 8px 14px 8px;
      transform: rotate(-3deg);
      box-shadow: 3px 3px 0 rgba(16, 24, 18, .32);
    }
    .side-logo-text { min-width: 0; }
    .side-logo-text strong {
      display: block;
      font-size: .97rem;
      letter-spacing: .04em;
      line-height: 1.35;
      color: #fff9eb;
    }
    .side-logo-text span {
      display: block;
      margin-top: 3px;
      color: #bfcdb4;
      font-size: .71rem;
      letter-spacing: .12em;
    }
    .side-nav {
      padding-top: 26px;
    }
    .side-nav .nav-label {
      padding: 0 12px 10px;
      color: #aebda5;
      font-size: .7rem;
      letter-spacing: .2em;
    }
    .side-nav .nav-link {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 13px 14px;
      color: #d9e0d2;
      border: 1px solid transparent;
      border-radius: var(--radius-sm);
      font-size: .96rem;
      transition: .25s ease;
    }
    .side-nav .nav-link i { font-size: 1.1rem; }
    .side-nav .nav-link:hover,
    .side-nav .nav-link.active {
      color: #fffdf5;
      background: rgba(255,255,255,.1);
      border-color: rgba(255,255,255,.16);
      transform: translateX(3px);
    }
    .side-nav .nav-link.active::after {
      content: "";
      width: 7px;
      height: 7px;
      margin-left: auto;
      background: var(--sun);
      border-radius: 50%;
      box-shadow: 0 0 0 4px rgba(225,189,98,.15);
    }
    .sidebar-foot {
      margin-top: auto;
      padding: 18px 10px 5px;
      border-top: 1px dashed rgba(255,255,255,.2);
      color: #b5c0ae;
      font-size: .75rem;
      line-height: 1.65;
    }
    .sidebar-foot .safe-note {
      display: flex;
      align-items: center;
      gap: 7px;
      margin-bottom: 7px;
      color: #d9e5c6;
    }

    .page-shell {
      min-height: 100vh;
      margin-left: var(--side-width);
    }
    .mobile-topbar {
      display: none;
      position: sticky;
      top: 0;
      z-index: 1030;
      height: 68px;
      padding: 0 17px;
      align-items: center;
      justify-content: space-between;
      background: rgba(32,49,40,.96);
      border-bottom: 1px solid rgba(255,255,255,.12);
      backdrop-filter: blur(12px);
    }
    .mobile-brand {
      display: flex;
      align-items: center;
      gap: 9px;
      max-width: calc(100% - 60px);
      color: #fff9eb;
      font-size: .88rem;
      font-weight: 700;
      line-height: 1.25;
    }
    .mobile-brand .logo-mark {
      flex-basis: 32px;
      height: 32px;
      font-size: .9rem;
      border-radius: 10px 6px 10px 6px;
    }
    .menu-toggle {
      width: 42px;
      height: 42px;
      color: #fff9eb;
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.17);
      border-radius: 12px;
      font-size: 1.25rem;
    }

    .container-main {
      width: min(1180px, calc(100% - 64px));
      margin: 0 auto;
    }
    .hero {
      position: relative;
      min-height: 655px;
      display: flex;
      align-items: center;
      padding: 68px 0 72px;
      overflow: hidden;
      border-bottom: 1px solid var(--line);
      background:
        linear-gradient(100deg, rgba(246,241,231,.98) 36%, rgba(246,241,231,.72) 58%, rgba(246,241,231,.12) 100%),
        url("https://images.unsplash.com/photo-1489599849927-2ee91cede3ba?auto=format&fit=crop&w=1800&q=85") center / cover;
    }
    .hero::before {
      content: "";
      position: absolute;
      width: 250px;
      height: 250px;
      right: 10%;
      bottom: -110px;
      border: 2px dashed rgba(49,72,59,.26);
      border-radius: 50%;
      transform: rotate(18deg);
    }
    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 740px;
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 7px 12px;
      color: var(--moss);
      background: rgba(255,253,248,.82);
      border: 1px solid rgba(49,72,59,.2);
      border-radius: 99px;
      box-shadow: var(--shadow-sm);
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .09em;
    }
    .eyebrow i { color: var(--clay); }
    .hero h1 {
      margin: 19px 0 18px;
      color: var(--moss-deep);
      font-family: var(--font-display);
      font-size: clamp(2.6rem, 5vw, 5.35rem);
      font-weight: 700;
      line-height: 1.08;
      letter-spacing: .02em;
    }
    .hero h1 em {
      color: var(--clay);
      font-style: normal;
    }
    .hero-lead {
      max-width: 610px;
      margin: 0;
      color: #425149;
      font-size: clamp(1rem, 1.8vw, 1.15rem);
      line-height: 1.95;
    }
    .search-panel {
      max-width: 620px;
      margin-top: 29px;
      padding: 7px;
      display: flex;
      align-items: center;
      background: var(--cream);
      border: 1px solid rgba(49,72,59,.24);
      border-radius: 18px;
      box-shadow: var(--shadow-md);
    }
    .search-panel i {
      margin: 0 11px 0 13px;
      color: var(--fern);
      font-size: 1.1rem;
    }
    .search-panel input {
      min-width: 0;
      flex: 1;
      height: 46px;
      color: var(--ink);
      background: transparent;
      border: 0;
      outline: 0;
      font-size: .95rem;
    }
    .search-panel input::placeholder { color: #839087; }
    .btn-vintage {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 47px;
      padding: 12px 19px;
      color: #fff9ea;
      background: var(--moss);
      border: 1px solid var(--moss);
      border-radius: 12px;
      box-shadow: 3px 4px 0 var(--moss-deep);
      font-weight: 700;
      font-size: .9rem;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .btn-vintage:hover {
      color: #fff;
      background: #3e5b49;
      box-shadow: 1px 2px 0 var(--moss-deep);
      transform: translate(2px, 2px);
    }
    .btn-vintage:active {
      box-shadow: none;
      transform: translate(3px, 4px);
    }
    .btn-outline-vintage {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 47px;
      padding: 11px 18px;
      color: var(--moss);
      background: rgba(255,253,248,.75);
      border: 1px solid var(--moss);
      border-radius: 12px;
      font-size: .9rem;
      font-weight: 700;
      transition: .22s ease;
    }
    .btn-outline-vintage:hover {
      color: var(--cream);
      background: var(--moss);
      transform: translateY(-2px);
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      margin-top: 25px;
    }
    .hero-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
      margin-top: 29px;
    }
    .soft-tag {
      padding: 6px 11px;
      color: #52634e;
      background: rgba(255,253,248,.72);
      border: 1px dashed rgba(49,72,59,.32);
      border-radius: 7px;
      font-size: .78rem;
    }

    .section { padding: 94px 0; }
    .section-soft { background: #f0eadc; }
    .section-dark {
      position: relative;
      overflow: hidden;
      color: #edf1e8;
      background: var(--moss-deep);
    }
    .section-dark::after {
      content: "PLAY";
      position: absolute;
      right: -15px;
      bottom: -83px;
      color: rgba(255,255,255,.035);
      font-size: 16rem;
      font-weight: 900;
      letter-spacing: -.12em;
      pointer-events: none;
    }
    .section-heading {
      max-width: 690px;
      margin-bottom: 43px;
    }
    .section-kicker {
      display: flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 10px;
      color: var(--clay);
      font-size: .78rem;
      font-weight: 800;
      letter-spacing: .16em;
    }
    .section-kicker::before {
      content: "";
      display: inline-block;
      width: 26px;
      height: 2px;
      background: currentColor;
    }
    .section-heading h2 {
      margin: 0;
      color: var(--moss-deep);
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.3vw, 3.2rem);
      font-weight: 700;
      line-height: 1.22;
    }
    .section-heading p {
      margin: 15px 0 0;
      color: var(--ink-soft);
      font-size: 1rem;
    }
    .section-dark .section-heading h2 { color: #fff9eb; }
    .section-dark .section-heading p { color: #c6d0c1; }
    .section-dark .section-kicker { color: var(--sun); }

    .feature-card {
      height: 100%;
      padding: 27px 25px;
      background: var(--cream);
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-sm);
      transition: .28s ease;
    }
    .feature-card:hover {
      border-color: rgba(49,72,59,.36);
      box-shadow: var(--shadow-md);
      transform: translateY(-6px) rotate(-.3deg);
    }
    .feature-icon {
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      margin-bottom: 19px;
      color: #fffaf0;
      background: var(--moss);
      border-radius: 16px 10px 16px 10px;
      box-shadow: 3px 3px 0 var(--sage);
      font-size: 1.35rem;
    }
    .feature-card:nth-child(2) .feature-icon { background: var(--clay); }
    .feature-card:nth-child(3) .feature-icon { background: #708755; }
    .feature-card h3 {
      margin: 0 0 8px;
      color: var(--moss-deep);
      font-size: 1.1rem;
      font-weight: 800;
    }
    .feature-card p {
      margin: 0;
      color: var(--ink-soft);
      font-size: .91rem;
      line-height: 1.8;
    }

    .story-card {
      overflow: hidden;
      height: 100%;
      background: var(--cream);
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-sm);
      transition: .28s ease;
    }
    .story-card:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-6px);
    }
    .poster-wrap {
      position: relative;
      height: 250px;
      overflow: hidden;
      background: var(--moss);
    }
    .poster-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(.72) sepia(.12);
      transition: transform .5s ease, filter .5s ease;
    }
    .story-card:hover .poster-wrap img {
      transform: scale(1.07);
      filter: saturate(.95) sepia(0);
    }
    .poster-wrap::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg, rgba(25,38,30,.72), transparent 60%);
    }
    .poster-label {
      position: absolute;
      z-index: 1;
      top: 14px;
      left: 14px;
      padding: 5px 9px;
      color: var(--moss-deep);
      background: var(--sun);
      border-radius: 6px;
      font-size: .72rem;
      font-weight: 800;
    }
    .poster-time {
      position: absolute;
      z-index: 1;
      right: 13px;
      bottom: 12px;
      color: #fff;
      font-size: .76rem;
      font-weight: 700;
    }
    .story-content { padding: 20px; }
    .story-meta {
      margin-bottom: 8px;
      color: var(--clay);
      font-size: .76rem;
      font-weight: 700;
      letter-spacing: .05em;
    }
    .story-content h3 {
      margin: 0 0 9px;
      color: var(--moss-deep);
      font-size: 1.08rem;
      font-weight: 800;
    }
    .story-content p {
      display: -webkit-box;
      margin: 0;
      overflow: hidden;
      color: var(--ink-soft);
      font-size: .87rem;
      line-height: 1.72;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
    }
    .card-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 15px;
      color: var(--moss);
      font-size: .85rem;
      font-weight: 800;
    }
    .card-link i { transition: transform .2s ease; }
    .story-card:hover .card-link i { transform: translateX(4px); }

    .tape-note {
      position: relative;
      padding: 32px;
      color: var(--moss-deep);
      background: #e8dba7;
      border: 1px solid rgba(90,75,34,.22);
      border-radius: 4px 18px 6px 18px;
      box-shadow: 7px 8px 0 rgba(36,48,41,.12);
      transform: rotate(-1deg);
    }
    .tape-note::before {
      content: "";
      position: absolute;
      top: -13px;
      left: 35%;
      width: 118px;
      height: 28px;
      background: rgba(221,190,102,.62);
      border-right: 1px solid rgba(112,83,29,.17);
      border-left: 1px solid rgba(112,83,29,.17);
      transform: rotate(2deg);
    }
    .tape-note h3 {
      margin: 0 0 15px;
      font-family: var(--font-display);
      font-size: 1.85rem;
      font-weight: 700;
    }
    .tape-note p {
      margin: 0;
      font-size: .95rem;
      line-height: 1.9;
    }
    .check-list {
      margin: 23px 0 0;
      padding: 0;
      list-style: none;
    }
    .check-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 11px;
      font-size: .88rem;
    }
    .check-list i { margin-top: 3px; color: var(--clay-dark); }

    .stats-grid { position: relative; z-index: 1; }
    .stat-block {
      height: 100%;
      padding: 23px 12px;
      border-right: 1px dashed rgba(255,255,255,.22);
      text-align: center;
    }
    .stat-block:last-child { border-right: 0; }
    .stat-num {
      color: var(--sun);
      font-family: var(--font-display);
      font-size: clamp(2.2rem, 4vw, 3.5rem);
      font-weight: 700;
      line-height: 1;
    }
    .stat-label {
      margin-top: 10px;
      color: #c9d3c5;
      font-size: .85rem;
      letter-spacing: .04em;
    }
    .timeline {
      position: relative;
      z-index: 1;
      margin-top: 50px;
      padding-left: 0;
      list-style: none;
    }
    .timeline-item {
      position: relative;
      display: grid;
      grid-template-columns: 110px 1fr;
      gap: 25px;
      padding: 0 0 30px;
    }
    .timeline-item:not(:last-child)::before {
      content: "";
      position: absolute;
      top: 29px;
      bottom: 0;
      left: 103px;
      border-left: 1px dashed rgba(255,255,255,.3);
    }
    .timeline-step {
      position: relative;
      z-index: 1;
      color: var(--sun);
      font-size: .78rem;
      font-weight: 800;
      letter-spacing: .08em;
      text-align: right;
    }
    .timeline-step span {
      display: inline-grid;
      place-items: center;
      width: 26px;
      height: 26px;
      margin-left: 10px;
      color: var(--moss-deep);
      background: var(--sun);
      border-radius: 50%;
      font-size: .72rem;
    }
    .timeline-content {
      padding-bottom: 2px;
    }
    .timeline-content h3 {
      margin: -4px 0 6px;
      color: #fff9eb;
      font-size: 1.04rem;
      font-weight: 800;
    }
    .timeline-content p {
      max-width: 610px;
      margin: 0;
      color: #c3cfc0;
      font-size: .9rem;
    }

    .curation-layout {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 55px;
      align-items: center;
    }
    .collage {
      position: relative;
      min-height: 450px;
    }
    .collage-main {
      position: absolute;
      left: 0;
      top: 14px;
      width: 72%;
      height: 360px;
      overflow: hidden;
      border: 9px solid var(--cream);
      border-radius: 10px;
      box-shadow: var(--shadow-md);
      transform: rotate(-3deg);
    }
    .collage-main img, .collage-small img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(.68) sepia(.12);
    }
    .collage-small {
      position: absolute;
      right: 0;
      bottom: 17px;
      width: 50%;
      height: 230px;
      overflow: hidden;
      border: 8px solid var(--cream);
      border-radius: 8px;
      box-shadow: var(--shadow-md);
      transform: rotate(5deg);
    }
    .collage-stamp {
      position: absolute;
      z-index: 2;
      top: 54px;
      right: 2%;
      display: grid;
      place-items: center;
      width: 105px;
      height: 105px;
      color: #fff9e8;
      background: var(--clay);
      border: 2px dashed rgba(255,255,255,.7);
      border-radius: 50%;
      box-shadow: 0 0 0 5px var(--clay);
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-weight: 700;
      line-height: 1.25;
      text-align: center;
      transform: rotate(11deg);
    }
    .curation-copy h2 {
      margin: 0 0 17px;
      color: var(--moss-deep);
      font-family: var(--font-display);
      font-size: clamp(2rem, 3vw, 3rem);
      line-height: 1.25;
    }
    .curation-copy > p {
      margin-bottom: 23px;
      color: var(--ink-soft);
    }
    .journal-list {
      margin: 0;
      padding: 0;
      list-style: none;
      border-top: 1px solid var(--line);
    }
    .journal-list li {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 15px 4px;
      border-bottom: 1px solid var(--line);
      transition: .2s ease;
    }
    .journal-list li:hover { padding-left: 11px; background: rgba(255,253,248,.58); }
    .journal-list .journal-no {
      color: var(--clay);
      font-family: var(--font-display);
      font-size: 1.25rem;
      font-weight: 700;
    }
    .journal-list strong { font-size: .94rem; }
    .journal-list span {
      display: block;
      margin-top: 1px;
      color: var(--ink-soft);
      font-size: .78rem;
    }

    .faq-wrap {
      max-width: 860px;
      margin: 0 auto;
    }
    .accordion-item {
      margin-bottom: 12px;
      overflow: hidden;
      background: var(--cream);
      border: 1px solid var(--line) !important;
      border-radius: var(--radius-sm) !important;
      box-shadow: var(--shadow-sm);
    }
    .accordion-button {
      padding: 20px 22px;
      color: var(--moss-deep);
      background: var(--cream);
      box-shadow: none !important;
      font-weight: 800;
      font-size: .98rem;
    }
    .accordion-button:not(.collapsed) {
      color: var(--moss-deep);
      background: #f3eddf;
    }
    .accordion-button::after {
      width: 1.1rem;
      height: 1.1rem;
      background-size: 1.1rem;
      filter: sepia(.4) saturate(.7);
    }
    .accordion-body {
      padding: 0 22px 21px;
      color: var(--ink-soft);
      font-size: .92rem;
      line-height: 1.85;
    }

    .cta-panel {
      position: relative;
      overflow: hidden;
      padding: 58px 54px;
      color: #fff9ed;
      background: var(--clay);
      border: 1px solid rgba(115,57,35,.35);
      border-radius: var(--radius-lg);
      box-shadow: 9px 10px 0 var(--moss-deep);
    }
    .cta-panel::before,
    .cta-panel::after {
      content: "";
      position: absolute;
      border: 1px solid rgba(255,255,255,.24);
      border-radius: 50%;
    }
    .cta-panel::before { width: 290px; height: 290px; right: -85px; top: -125px; }
    .cta-panel::after { width: 180px; height: 180px; left: -90px; bottom: -115px; }
    .cta-panel > * { position: relative; z-index: 1; }
    .cta-panel h2 {
      max-width: 700px;
      margin: 0;
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.5vw, 3.2rem);
      font-weight: 700;
      line-height: 1.2;
    }
    .cta-panel p {
      max-width: 610px;
      margin: 15px 0 25px;
      color: #fff1df;
    }
    .cta-panel .btn-vintage {
      color: var(--moss-deep);
      background: var(--sun);
      border-color: var(--sun);
      box-shadow: 3px 4px 0 #783e2a;
    }

    .site-footer {
      padding: 43px 0 31px;
      color: #c4cec0;
      background: #18251e;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr .7fr;
      gap: 50px;
      align-items: start;
    }
    .footer-brand {
      color: #fff8e9;
      font-family: var(--font-display);
      font-size: 1.45rem;
      font-weight: 700;
    }
    .footer-desc {
      max-width: 610px;
      margin: 10px 0 0;
      color: #b9c5b5;
      font-size: .86rem;
      line-height: 1.85;
    }
    .footer-note {
      padding: 17px;
      color: #d5decf;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 12px;
      font-size: .78rem;
      line-height: 1.7;
    }
    .footer-note i { margin-right: 6px; color: var(--sun); }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      margin-top: 36px;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,.12);
      color: #93a28f;
      font-size: .75rem;
    }

    .search-result {
      display: none;
      margin-top: 12px;
      max-width: 620px;
      padding: 10px 14px;
      color: var(--moss);
      background: rgba(255,253,248,.84);
      border-left: 3px solid var(--clay);
      border-radius: 5px;
      font-size: .85rem;
    }

    @media (max-width: 1024px) {
      :root { --side-width: 236px; }
      .site-sidebar { padding: 20px 13px; }
      .container-main { width: min(100% - 46px, 920px); }
      .hero { min-height: 600px; }
      .curation-layout { gap: 30px; }
    }
    @media (max-width: 768px) {
      .site-sidebar { display: none; }
      .page-shell { margin-left: 0; }
      .mobile-topbar { display: flex; }
      .mobile-drawer {
        position: fixed;
        z-index: 1050;
        inset: 68px 0 auto 0;
        display: none;
        padding: 13px 16px 17px;
        background: var(--moss-deep);
        border-top: 1px solid rgba(255,255,255,.1);
        box-shadow: 0 18px 30px rgba(20,28,22,.25);
      }
      .mobile-drawer.show { display: block; }
      .mobile-drawer .nav-link {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 13px;
        color: #eff3e8;
        background: rgba(255,255,255,.08);
        border-radius: 10px;
        font-size: .92rem;
      }
      .hero {
        min-height: auto;
        padding: 76px 0 69px;
        background:
          linear-gradient(90deg, rgba(246,241,231,.98), rgba(246,241,231,.9)),
          url("https://images.unsplash.com/photo-1489599849927-2ee91cede3ba?auto=format&fit=crop&w=1200&q=80") center / cover;
      }
      .container-main { width: min(100% - 34px, 680px); }
      .section { padding: 70px 0; }
      .section-heading { margin-bottom: 31px; }
      .curation-layout { grid-template-columns: 1fr; gap: 45px; }
      .collage { max-width: 550px; width: 100%; margin: auto; }
      .footer-grid { grid-template-columns: 1fr; gap: 24px; }
      .cta-panel { padding: 42px 31px; }
    }
    @media (max-width: 520px) {
      .container-main { width: min(100% - 28px, 500px); }
      .hero h1 { font-size: 2.55rem; }
      .hero-lead { font-size: .96rem; }
      .search-panel { padding: 5px; }
      .search-panel i { display: none; }
      .search-panel input { padding-left: 10px; font-size: .82rem; }
      .search-panel .btn-vintage { padding: 10px 13px; font-size: .8rem; }
      .hero-actions { gap: 11px; }
      .btn-vintage, .btn-outline-vintage { width: 100%; }
      .section { padding: 58px 0; }
      .section-heading h2 { font-size: 2rem; }
      .poster-wrap { height: 225px; }
      .feature-card { padding: 23px 20px; }
      .timeline-item { grid-template-columns: 82px 1fr; gap: 15px; }
      .timeline-item:not(:last-child)::before { left: 76px; }
      .timeline-step { font-size: .68rem; }
      .timeline-step span { width: 23px; height: 23px; margin-left: 5px; }
      .collage { min-height: 360px; }
      .collage-main { height: 282px; }
      .collage-small { height: 175px; }
      .collage-stamp { width: 80px; height: 80px; font-size: .88rem; }
      .stat-block { padding: 15px 7px; }
      .stat-label { font-size: .72rem; }
      .cta-panel { padding: 37px 23px; box-shadow: 5px 6px 0 var(--moss-deep); }
      .accordion-button { padding: 17px 16px; font-size: .91rem; }
      .accordion-body { padding: 0 16px 18px; }
      .footer-bottom { display: block; }
      .footer-bottom span + span { display: block; margin-top: 5px; }
    }
