
      :root {
        --ink: #24211e;
        --paper: #f8f4eb;
        --cream: #eee5d4;
        --red: #762b31;
        --red2: #531c25;
        --sage: #566257;
        --gold: #c7a35a;
        --muted: #685f57;
        --line: rgba(36, 33, 30, 0.16);
      }
      * {
        box-sizing: border-box;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        margin: 0;
        background: var(--paper);
        color: var(--ink);
        font:
          400 16px/1.75 Manrope,
          sans-serif;
        background-image: radial-gradient(
          rgba(76, 63, 48, 0.055) 0.65px,
          transparent 0.65px
        );
        background-size: 7px 7px;
      }
      img {
        max-width: 100%;
        display: block;
      }
      a {
        color: inherit;
      }
      .skip {
        position: fixed;
        top: -5rem;
        left: 1rem;
        z-index: 99;
        background: #fff;
        padding: 0.7rem;
      }
      .skip:focus {
        top: 1rem;
      }
      .header {
        height: 86px;
        padding: 0 clamp(1.2rem, 4vw, 4.5rem);
        display: flex;
        align-items: center;
        gap: 2rem;
        border-bottom: 1px solid var(--line);
        background: rgba(248, 244, 235, 0.94);
        backdrop-filter: blur(12px);
        position: sticky;
        top: 0;
        z-index: 20;
      }
      .brand {
        display: flex;
        flex-direction: column;
        line-height: 1;
        text-decoration: none;
        white-space: nowrap;
      }
      .brand b {
        font:
          600 1.55rem Cormorant Garamond,
          serif;
      }
      .brand span {
        margin-top: 0.25rem;
        color: var(--red);
        font-size: 0.58rem;
        font-weight: 600;
        letter-spacing: 0.29em;
        text-transform: uppercase;
      }
      .header nav {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: clamp(0.8rem, 1.7vw, 2rem);
        margin-left: auto;
      }
      .header nav a {
        font-size: 0.69rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        text-decoration: none;
        padding: 0.6rem 0;
        border-bottom: 1px solid transparent;
      }
      .header nav a:hover,
      .header nav a.active {
        color: var(--red);
        border-color: var(--red);
      }
      .header-cta {
        margin-left: 0.7rem;
        background: var(--red);
        color: #fff;
        padding: 0.65rem 1rem;
        text-decoration: none;
        font-size: 0.67rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
      }
      .menu {
        display: none;
        border: 0;
        background: none;
        text-transform: uppercase;
        font: 600 0.67rem Manrope;
        letter-spacing: 0.12em;
      }
      .kicker {
        margin: 0 0 1rem;
        color: var(--red);
        font-size: 0.67rem;
        font-weight: 600;
        letter-spacing: 0.19em;
        text-transform: uppercase;
      }
      h1,
      h2,
      h3 {
        font-family:
          Cormorant Garamond,
          serif;
        line-height: 1;
      }
      h1 {
        font-size: clamp(4.5rem, 8vw, 8.8rem);
        font-weight: 500;
        letter-spacing: -0.045em;
      }
      h1 i,
      h2 i {
        color: var(--red);
        font-weight: 500;
      }
      h2 {
        font-size: clamp(3rem, 5vw, 5.6rem);
        font-weight: 500;
        letter-spacing: -0.03em;
        margin: 0.4rem 0 1.6rem;
      }
      h3 {
        font-size: 2.4rem;
        font-weight: 500;
        margin: 0.4rem 0;
      }
      .lead {
        font: 500 clamp(1.15rem, 1.5vw, 1.35rem) / 1.65 Manrope;
        max-width: 680px;
        color: var(--muted);
      }
      .large-copy {
        font:
          500 clamp(1.7rem, 2.5vw, 2.65rem) / 1.22 Cormorant Garamond,
          serif;
      }
      .home-hero {
        min-height: calc(100vh - 86px);
        display: grid;
        grid-template-columns: 1.18fr 0.82fr;
      }
      .hero-text {
        align-self: center;
        padding: clamp(5rem, 9vw, 9rem) clamp(1.5rem, 7vw, 8rem);
      }
      .hero-text h1 {
        max-width: 850px;
        margin: 1rem 0 2rem;
      }
      .actions {
        display: flex;
        gap: 2rem;
        align-items: center;
        margin-top: 2.5rem;
      }
      .btn {
        display: inline-block;
        padding: 0.9rem 1.35rem;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 0.68rem;
        font-weight: 600;
        letter-spacing: 0.12em;
        border: 1px solid var(--red);
      }
      .fill {
        background: var(--red);
        color: #fff;
      }
      .outline {
        color: var(--red);
      }
      .light {
        color: var(--ink);
        background: var(--cream);
        border-color: var(--cream);
      }
      .arrow-link {
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        text-decoration: none;
      }
      .arrow-link span {
        color: var(--red);
        font-size: 1.1rem;
        margin-left: 0.5rem;
      }
      .hero-visual {
        min-height: 630px;
        background: linear-gradient(145deg, var(--red), var(--red2));
        position: relative;
        overflow: hidden;
      }
      .sun {
        position: absolute;
        width: min(34vw, 510px);
        aspect-ratio: 1;
        border-radius: 50%;
        background: var(--gold);
        top: 11%;
        left: 16%;
        opacity: 0.9;
      }
      .roman-arch {
        position: absolute;
        width: 64%;
        height: 68%;
        border: 3px solid rgba(255, 255, 255, 0.72);
        border-bottom: 0;
        border-radius: 50% 50% 0 0;
        left: 18%;
        bottom: -12%;
        z-index: 2;
      }
      .hill {
        position: absolute;
        width: 130%;
        height: 35%;
        background: var(--sage);
        border-radius: 50%;
        bottom: -13%;
        left: -15%;
        z-index: 3;
        transform: rotate(-8deg);
      }
      .hill-b {
        background: #3f4941;
        bottom: -20%;
        transform: rotate(9deg);
      }
      .constellation {
        position: absolute;
        right: 9%;
        top: 8%;
        color: #fff;
        z-index: 4;
        line-height: 2.6;
      }
      .hero-visual p {
        position: absolute;
        z-index: 5;
        bottom: 16%;
        left: 0;
        right: 0;
        color: #fff;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        font: 500 clamp(2.7rem, 4vw, 4.5rem) / 0.75 Cormorant Garamond;
      }
      .hero-visual p i {
        font-size: 0.48em;
        text-transform: none;
        letter-spacing: 0.02em;
        color: var(--cream);
      }
      .intro-band {
        padding: 1.2rem;
        display: flex;
        justify-content: center;
        gap: 2.7rem;
        background: var(--ink);
        color: var(--cream);
        font-size: 0.65rem;
        letter-spacing: 0.17em;
        text-transform: uppercase;
      }
      .intro-band i {
        color: var(--gold);
      }
      .section {
        padding: clamp(5rem, 9vw, 9rem) clamp(1.4rem, 7vw, 7.5rem);
      }
      .section-title {
        max-width: 760px;
        margin-bottom: 4rem;
      }
      .section-title > p:last-child {
        color: var(--muted);
        max-width: 630px;
      }
      .feature-grid {
        display: grid;
        grid-template-columns: minmax(270px, 420px) minmax(320px, 650px);
        justify-content: center;
        align-items: center;
        gap: clamp(3rem, 8vw, 8rem);
      }
      .cover {
        aspect-ratio: 2/3;
        background: var(--sage);
        color: #fff;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        box-shadow: -20px 24px 45px rgba(37, 31, 26, 0.22);
        outline: 1px solid rgba(255, 255, 255, 0.4);
        outline-offset: -13px;
      }
      .cover small,
      .cover span {
        text-transform: uppercase;
        letter-spacing: 0.17em;
        font-size: 0.57rem;
      }
      .cover strong {
        font: 500 clamp(3rem, 5vw, 5rem) / 0.75 Cormorant Garamond;
        margin: auto 0 1rem;
        text-transform: uppercase;
      }
      .cover i {
        margin-bottom: auto;
        color: var(--gold);
        font-size: 1.8rem;
      }
      .feature-copy {
        max-width: 670px;
      }
      .feature-copy > p:not(.large-copy) {
        color: var(--muted);
      }
      .tags,
      .project-meta {
        display: flex;
        gap: 0.55rem;
        flex-wrap: wrap;
        margin: 2rem 0;
      }
      .tags span,
      .project-meta span {
        border: 1px solid var(--line);
        padding: 0.42rem 0.7rem;
        font-size: 0.62rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
      }
      .writing-map {
        background: var(--cream);
      }
      .read-now {
        background: var(--ink);
        color: #fff;
      }
      .read-now .section-title > p:last-child {
        color: #c9c2bb;
      }
      .published-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: clamp(1.5rem, 4vw, 4rem);
      }
      .published-card {
        display: grid;
        grid-template-columns: minmax(150px, 210px) 1fr;
        gap: clamp(1.5rem, 3vw, 3rem);
        align-items: center;
        padding: clamp(1.4rem, 3vw, 2.4rem);
        border: 1px solid rgba(255, 255, 255, 0.18);
        background: rgba(255, 255, 255, 0.035);
      }
      .published-cover {
        aspect-ratio: 2 / 3;
        background: #302d29;
        box-shadow: -12px 16px 30px rgba(0, 0, 0, 0.32);
        overflow: hidden;
      }
      .published-cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .published-card .kicker {
        color: var(--gold);
      }
      .published-card h3 {
        font-size: clamp(2.5rem, 4vw, 4rem);
      }
      .published-card p:not(.kicker) {
        color: #c9c2bb;
      }
      .published-card .btn {
        color: #fff;
        border-color: var(--gold);
      }
      .start-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        border-top: 1px solid var(--line);
        border-left: 1px solid var(--line);
      }
      .start-card {
        min-height: 330px;
        padding: clamp(1.7rem, 3vw, 3rem);
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        text-decoration: none;
        display: flex;
        flex-direction: column;
        transition: background 0.25s ease, color 0.25s ease;
      }
      .start-card:hover,
      .start-card:focus-visible {
        background: var(--red);
        color: #fff;
      }
      .start-card > span {
        color: var(--red);
        font-size: 0.63rem;
        text-transform: uppercase;
        letter-spacing: 0.14em;
      }
      .start-card:hover > span,
      .start-card:focus-visible > span {
        color: var(--gold);
      }
      .start-card h3 {
        margin-top: auto;
        font-size: clamp(2.8rem, 4vw, 4.3rem);
      }
      .start-card p {
        color: var(--muted);
      }
      .start-card:hover p,
      .start-card:focus-visible p {
        color: #ead8d3;
      }
      .card-grid {
        display: grid;
        gap: 1rem;
      }
      .card-grid.three {
        grid-template-columns: repeat(3, 1fr);
      }
      .image-card {
        min-height: 430px;
        padding: 1.8rem;
        color: #fff;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
        overflow: hidden;
      }
      .image-card:before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          linear-gradient(160deg, transparent, rgba(18, 17, 15, 0.78)),
          radial-gradient(
            circle at 75% 20%,
            rgba(199, 163, 90, 0.65),
            transparent 30%
          );
      }
      .image-card.novels {
        background: var(--red);
      }
      .image-card.shorts {
        background: var(--sage);
      }
      .image-card.fanworks {
        background: #55445e;
      }
      .image-card span,
      .image-card div {
        z-index: 1;
      }
      .image-card span {
        font-size: 0.65rem;
      }
      .image-card p {
        font-size: 0.63rem;
        text-transform: uppercase;
        letter-spacing: 0.12em;
      }
      .image-card h3 {
        font-size: 3.2rem;
      }
      .home-about {
        display: grid;
        grid-template-columns: 0.8fr 1.2fr;
        align-items: center;
        gap: clamp(3rem, 8vw, 9rem);
      }
      .home-photo {
        max-width: 470px;
        padding: 1rem;
        background: #fff;
        box-shadow: 0 20px 45px rgba(36, 33, 30, 0.15);
        transform: rotate(-1.5deg);
      }
      .home-photo img {
        aspect-ratio: 4/5;
        object-fit: cover;
        object-position: 50% 22%;
      }
      .home-about > div:last-child {
        max-width: 700px;
      }
      .newsletter {
        background: var(--red);
        color: #fff;
        padding: clamp(5rem, 9vw, 8rem) 1.5rem;
        text-align: center;
      }
      .newsletter > div {
        max-width: 820px;
        margin: auto;
      }
      .newsletter .kicker {
        color: var(--gold);
      }
      .newsletter h2 {
        font-size: clamp(3.5rem, 6vw, 6.5rem);
      }
      .newsletter p {
        color: #ead8d3;
      }
      .newsletter small {
        display: block;
        margin-top: 1rem;
        opacity: 0.65;
      }
      .newsletter.compact {
        padding: 5rem 1.5rem;
      }
      .newsletter.compact h2 {
        font-size: 4rem;
      }
      .page-hero {
        min-height: 510px;
        padding: clamp(5rem, 9vw, 8rem) clamp(1.4rem, 8vw, 9rem);
        background: var(--cream);
        position: relative;
        overflow: hidden;
      }
      .page-hero:after {
        content: "✦";
        position: absolute;
        right: 8%;
        top: 20%;
        font: 400 clamp(12rem, 24vw, 25rem) Cormorant Garamond;
        color: rgba(118, 43, 49, 0.08);
      }
      .page-hero h1 {
        margin: 1rem 0 1.5rem;
        max-width: 1000px;
      }
      .page-hero > p:last-child {
        max-width: 680px;
        color: var(--muted);
        font-size: 1.1rem;
      }
      .about-layout {
        display: grid;
        grid-template-columns: minmax(300px, 520px) minmax(400px, 720px);
        gap: clamp(3rem, 8vw, 9rem);
        justify-content: center;
        align-items: start;
      }
      .author-photo {
        margin: 0;
        position: sticky;
        top: 120px;
      }
      .author-photo img {
        width: 100%;
        box-shadow: 0 25px 55px rgba(36, 33, 30, 0.18);
      }
      .author-photo figcaption {
        text-align: right;
        margin-top: 0.8rem;
        color: var(--muted);
        font: italic 1rem Cormorant Garamond;
      }
      .prose p:not(.large-copy, .kicker) {
        color: var(--muted);
      }
      .prose blockquote {
        margin: 3rem 0;
        padding: 2rem 0;
        border-block: 1px solid var(--line);
        font: italic 500 2rem/1.3 Cormorant Garamond;
        color: var(--red);
      }
      .facts {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        background: var(--ink);
        color: #fff;
      }
      .facts div {
        padding: 2.5rem;
        border-right: 1px solid rgba(255, 255, 255, 0.15);
      }
      .facts span {
        display: block;
        color: var(--gold);
        font-size: 0.6rem;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        margin-bottom: 0.5rem;
      }
      .facts b {
        font: 500 1.4rem Cormorant Garamond;
      }
      .project-main {
        display: grid;
        grid-template-columns: minmax(270px, 410px) minmax(350px, 720px);
        gap: clamp(3rem, 8vw, 9rem);
        justify-content: center;
        align-items: center;
      }
      .project-main .prose h2 {
        font-size: clamp(4rem, 6vw, 6.5rem);
      }
      .dark-section {
        padding: clamp(5rem, 9vw, 9rem) clamp(1.4rem, 7vw, 7.5rem);
        background: var(--ink);
        color: #fff;
      }
      .dark-section .kicker {
        color: var(--gold);
      }
      .dark-section .section-title > p:last-child {
        color: #c4bbb2;
      }
      .series-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        border: 1px solid rgba(255, 255, 255, 0.18);
      }
      .series-grid article {
        min-height: 310px;
        padding: 2rem;
        border-right: 1px solid rgba(255, 255, 255, 0.18);
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
        display: flex;
        flex-direction: column;
      }
      .series-grid article:nth-child(3n) {
        border-right: 0;
      }
      .series-grid article:nth-last-child(-n + 3) {
        border-bottom: 0;
      }
      .series-grid b {
        color: var(--gold);
        font-size: 0.62rem;
        text-transform: uppercase;
        letter-spacing: 0.15em;
      }
      .series-grid h3 {
        font-size: 3.4rem;
        margin-top: auto;
      }
      .series-grid p {
        color: #c4bbb2;
      }
      .project-list {
        border-top: 1px solid var(--line);
      }
      .project-list article {
        display: grid;
        grid-template-columns: 180px 1fr 1.2fr;
        gap: 2rem;
        padding: 2.2rem 0;
        border-bottom: 1px solid var(--line);
        align-items: center;
      }
      .project-list span {
        color: var(--red);
        font-size: 0.62rem;
        text-transform: uppercase;
        letter-spacing: 0.12em;
      }
      .project-list p {
        color: var(--muted);
      }
      .story-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
      }
      .story-card {
        display: grid;
        grid-template-columns: 180px 1fr;
        background: #fff;
        border: 1px solid var(--line);
        min-height: 320px;
      }
      .story-card > div:last-child {
        padding: 2.3rem;
      }
      .story-card h2 {
        font-size: 2.8rem;
      }
      .story-card p {
        color: var(--muted);
      }
      .story-card.featured-story {
        grid-column: 1/-1;
        grid-template-columns: 38% 1fr;
      }
      .story-card.featured-story h2 {
        font-size: 4rem;
      }
      .story-art {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100%;
        font: 500 5rem Cormorant Garamond;
        color: #fff;
      }
      .befana {
        background: var(--red);
      }
      .silent {
        background: var(--sage);
      }
      .lines {
        background: #4a4055;
      }
      .blood {
        background: #a4533e;
      }
      .publication {
        font-size: 0.8rem;
      }
      .fan-intro {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
      }
      .fan-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        border-top: 1px solid rgba(255, 255, 255, 0.18);
        border-left: 1px solid rgba(255, 255, 255, 0.18);
      }
      .fan-list article {
        padding: 2rem;
        min-height: 260px;
        border-right: 1px solid rgba(255, 255, 255, 0.18);
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
      }
      .fan-list span {
        color: var(--gold);
        font-size: 0.6rem;
        text-transform: uppercase;
        letter-spacing: 0.14em;
      }
      .fan-list p {
        color: #c4bbb2;
      }
      .archive-note {
        color: #c4bbb2;
        font-size: 0.8rem;
        margin-top: 2rem;
      }
      .rights-note {
        max-width: 1000px;
      }
      .rights-note p {
        color: var(--muted);
      }
      .substack-panel {
        display: grid;
        grid-template-columns: 300px minmax(320px, 700px);
        gap: 6rem;
        justify-content: center;
        align-items: center;
      }
      .substack-mark {
        width: 260px;
        aspect-ratio: 1;
        background: #ff6719;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font: 600 10rem Cormorant Garamond;
        box-shadow: -16px 20px 35px rgba(36, 33, 30, 0.2);
      }
      .blog-topics {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        background: var(--cream);
      }
      .blog-topics article {
        padding: 4rem;
        border-right: 1px solid var(--line);
      }
      .blog-topics span {
        color: var(--red);
        font-size: 0.65rem;
      }
      .blog-topics h3 {
        font-size: 3rem;
        margin-top: 2.5rem;
      }
      .blog-topics p {
        color: var(--muted);
      }
      footer {
        padding: 3.5rem clamp(1.4rem, 5vw, 5rem);
        background: #191715;
        color: #fff;
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 4rem;
        align-items: end;
      }
      footer > div:first-child p {
        color: #8f8982;
        font-size: 0.75rem;
      }
      .light-brand span {
        color: var(--gold);
      }
      .footer-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem 2rem;
      }
      .footer-links a {
        font-size: 0.68rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        text-decoration: none;
        color: #c9c2bb;
      }
      .copyright {
        font-size: 0.65rem;
        color: #8f8982;
      }
      .fade {
        opacity: 0;
        transform: translateY(18px);
        transition: 0.7s ease;
      }
      .fade.visible {
        opacity: 1;
        transform: none;
      }
      @media (prefers-reduced-motion: reduce) {
        .fade {
          opacity: 1;
          transform: none;
          transition: none;
        }
        html {
          scroll-behavior: auto;
        }
      }
      @media (max-width: 1000px) {
        .header {
          height: 74px;
        }
        .header nav {
          display: none;
          position: absolute;
          top: 74px;
          left: 0;
          right: 0;
          background: var(--paper);
          padding: 1.5rem;
          flex-direction: column;
          align-items: stretch;
          border-bottom: 1px solid var(--line);
        }
        .header nav.open {
          display: flex;
        }
        .menu {
          display: block;
          margin-left: auto;
        }
        .header-cta {
          display: none;
        }
        .home-hero {
          grid-template-columns: 1fr;
        }
        .hero-visual {
          min-height: 560px;
        }
        .sun {
          width: 70vw;
        }
        .feature-grid,
        .home-about,
        .about-layout,
        .project-main,
        .fan-intro,
        .substack-panel {
          grid-template-columns: 1fr;
        }
        .published-grid,
        .start-grid {
          grid-template-columns: 1fr;
        }
        .author-photo {
          position: static;
          max-width: 560px;
        }
        .card-grid.three,
        .facts {
          grid-template-columns: 1fr 1fr;
        }
        .series-grid {
          grid-template-columns: 1fr;
        }
        .series-grid article {
          border-right: 0;
          border-bottom: 1px solid rgba(255, 255, 255, 0.18);
        }
        .series-grid article:nth-last-child(-n + 3) {
          border-bottom: 1px solid rgba(255, 255, 255, 0.18);
        }
        .series-grid article:last-child {
          border-bottom: 0;
        }
        .project-list article {
          grid-template-columns: 130px 1fr;
        }
        .project-list p {
          grid-column: 2;
        }
        .story-cards {
          grid-template-columns: 1fr;
        }
        .story-card.featured-story {
          grid-column: auto;
        }
        .blog-topics {
          grid-template-columns: 1fr;
        }
        .blog-topics article {
          border-right: 0;
          border-bottom: 1px solid var(--line);
        }
        footer {
          grid-template-columns: 1fr 1fr;
        }
        .copyright {
          grid-column: 1/-1;
        }
      }
      @media (max-width: 650px) {
        .published-card {
          grid-template-columns: 120px 1fr;
        }
        h1 {
          font-size: 4.1rem;
        }
        .hero-text {
          padding: 5rem 1.4rem;
        }
        .intro-band {
          gap: 1rem;
          flex-wrap: wrap;
        }
        .card-grid.three,
        .facts {
          grid-template-columns: 1fr;
        }
        .story-card,
        .story-card.featured-story {
          grid-template-columns: 1fr;
        }
        .story-art {
          min-height: 190px;
        }
        .story-card.featured-story h2 {
          font-size: 3rem;
        }
        .fan-list {
          grid-template-columns: 1fr;
        }
        .project-list article {
          grid-template-columns: 1fr;
          gap: 0.2rem;
        }
        .project-list p {
          grid-column: auto;
        }
        .substack-panel {
          gap: 3rem;
        }
        .substack-mark {
          width: 190px;
        }
        .actions {
          align-items: flex-start;
          flex-direction: column;
        }
        .socials {
          flex-wrap: wrap;
        }
        footer {
          grid-template-columns: 1fr;
          gap: 2rem;
        }
        .copyright {
          grid-column: auto;
        }
      }

      .page-view {
        display: none;
      }
      .page-view.active {
        display: block;
      }
      .route-nav a.active {
        color: var(--red);
        border-color: var(--red);
      }
      .social-links {
        display: flex;
        align-items: center;
        gap: 0.65rem;
        flex-wrap: wrap;
        margin-top: 1.4rem;
      }
      .social-links a {
        width: 40px;
        height: 40px;
        border: 1px solid currentColor;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: inherit;
        opacity: 0.82;
        transition:
          background 0.2s ease,
          color 0.2s ease,
          transform 0.2s ease;
      }
      .social-links a:hover,
      .social-links a:focus-visible {
        background: var(--gold);
        border-color: var(--gold);
        color: var(--ink);
        opacity: 1;
        transform: translateY(-2px);
      }
      .social-links svg {
        width: 18px;
        height: 18px;
        fill: currentColor;
      }
      .social-section {
        padding: 5rem clamp(1.4rem, 7vw, 7.5rem);
        background: var(--cream);
        text-align: center;
      }
      .social-section > div {
        max-width: 760px;
        margin: auto;
      }
      .social-section h2 {
        font-size: clamp(3rem, 5vw, 5rem);
      }
      .social-section p:not(.kicker) {
        color: var(--muted);
      }
      .social-section .social-links {
        justify-content: center;
        margin-top: 2rem;
      }
      footer .social-links {
        margin-top: 1.2rem;
      }
      footer .social-links a {
        width: 34px;
        height: 34px;
        color: #c9c2bb;
      }
      footer .social-links svg {
        width: 15px;
        height: 15px;
      }
      .story-art.cover-art {
        background: #e8e0d4;
        padding: 1rem;
        overflow: hidden;
      }
      .story-art.cover-art img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        box-shadow: 0 10px 28px rgba(20, 18, 16, 0.2);
        transition: transform 0.3s ease;
      }
      .story-art.cover-art:hover img {
        transform: scale(1.025);
      }
      .anthology-link {
        margin-top: 1.2rem;
      }
      .story-card.featured-story {
        grid-template-columns: 180px 1fr;
      }
      .story-card.featured-story .story-art {
        min-height: 320px;
      }
      .story-card.featured-story .story-art img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }
      @media (max-width: 650px) {
        .story-card.featured-story {
          grid-template-columns: 1fr;
        }
        .story-card.featured-story .story-art {
          min-height: 260px;
          max-height: 360px;
        }
      }
      .second-call {
        background: #665a4f;
      }
      .tora-feature {
        display: grid;
        grid-template-columns: minmax(280px, 440px) minmax(360px, 700px);
        gap: clamp(3rem, 8vw, 9rem);
        align-items: center;
        justify-content: center;
      }
      .tora-art {
        aspect-ratio: 4/5;
        background: linear-gradient(155deg, #69776f, #34413c);
        color: var(--cream);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        box-shadow: -18px 22px 40px rgba(36, 33, 30, 0.2);
      }
      .tora-art:before {
        content: "";
        position: absolute;
        width: 72%;
        aspect-ratio: 1;
        border-radius: 50%;
        background: var(--gold);
        opacity: 0.75;
        top: 12%;
        left: 14%;
      }
      .tora-art strong,
      .tora-art small,
      .tora-moon {
        position: relative;
        z-index: 1;
      }
      .tora-art strong {
        font: 500 clamp(5rem, 8vw, 8rem) / 0.8 Cormorant Garamond;
      }
      .tora-art small {
        font: italic 500 2rem Cormorant Garamond;
        margin-top: 1rem;
      }
      .tora-moon {
        position: absolute;
        top: 8%;
        right: 10%;
        font-size: 1.5rem;
      }
      .young-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        border-top: 1px solid var(--line);
        border-left: 1px solid var(--line);
      }
      .young-grid article {
        min-height: 260px;
        padding: 2rem;
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
      }
      .young-grid span {
        color: var(--red);
        font-size: 0.62rem;
        text-transform: uppercase;
        letter-spacing: 0.13em;
      }
      .young-grid p {
        color: var(--muted);
      }
      @media (max-width: 900px) {
        .tora-feature {
          grid-template-columns: 1fr;
        }
        .tora-art {
          max-width: 440px;
        }
        .young-grid {
          grid-template-columns: 1fr;
        }
      }
      .brand-with-mark {
        display: grid;
        grid-template-columns: 38px auto;
        column-gap: 0.7rem;
        align-items: center;
      }
      .brand-copy {
        display: flex;
        flex-direction: column;
      }
      .brand-mark {
        width: 38px;
        height: 38px;
        overflow: visible;
      }
      .mark-feather {
        fill: var(--gold);
      }
      .mark-stem,
      .mark-ink {
        fill: none;
        stroke: var(--red);
        stroke-width: 2.2;
        stroke-linecap: round;
      }
      .hero-portrait {
        min-height: 630px;
        position: relative;
        overflow: hidden;
        background: var(--red2);
      }
      .hero-portrait > img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 50% 32%;
      }
      .hero-photo-wash {
        position: absolute;
        inset: 0;
        background:
          linear-gradient(to top, rgba(27, 18, 18, 0.78), transparent 49%),
          linear-gradient(to right, rgba(83, 28, 37, 0.13), transparent);
      }
      .hero-signature {
        position: absolute;
        left: 2rem;
        bottom: 2rem;
        color: #fff;
        display: flex;
        align-items: center;
        gap: 0.8rem;
      }
      .hero-signature > span {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        background: rgba(36, 33, 30, 0.28);
        backdrop-filter: blur(5px);
      }
      .hero-signature .brand-mark {
        width: 31px;
        height: 31px;
      }
      .hero-signature .mark-stem,
      .hero-signature .mark-ink {
        stroke: var(--cream);
      }
      .hero-signature p {
        font: 500 1.45rem/1 Cormorant Garamond;
        margin: 0;
      }
      .hero-signature small {
        display: block;
        margin-top: 0.35rem;
        font: 600 0.52rem Manrope;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--gold);
      }
      @media (max-width: 1000px) {
        .hero-portrait {
          min-height: 680px;
        }
        .hero-portrait > img {
          object-position: 50% 25%;
        }
      }
      @media (max-width: 650px) {
        .brand-with-mark {
          grid-template-columns: 31px auto;
          column-gap: 0.5rem;
        }
        .brand-mark {
          width: 31px;
          height: 31px;
        }
        .brand-with-mark .brand-copy b {
          font-size: 1.25rem;
        }
        .hero-portrait {
          min-height: 580px;
        }
      }
      .card-grid.four {
        grid-template-columns: repeat(4, 1fr);
      }
      .image-card.young-card {
        background: #887146;
      }
      @media (max-width: 1100px) {
        .card-grid.four {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      @media (max-width: 650px) {
        .card-grid.four {
          grid-template-columns: 1fr;
        }
      }
      .reader-category > .category-heading {
        max-width: 760px;
        margin-bottom: 4rem;
      }
      .category-heading h2 {
        font-size: clamp(3rem, 5vw, 5.5rem);
      }
      .longer-works {
        background: var(--ink);
        color: #fff;
      }
      .longer-works > .section {
        padding-bottom: 3rem;
      }
      .longer-works .kicker {
        color: var(--gold);
      }
      .widger-feature {
        display: grid;
        grid-template-columns: minmax(300px, 480px) minmax(380px, 700px);
        gap: clamp(3rem, 8vw, 9rem);
        align-items: center;
        justify-content: center;
        padding: 0 clamp(1.4rem, 7vw, 7.5rem) 5rem;
      }
      .widger-art {
        aspect-ratio: 4/5;
        padding: 2.5rem;
        background: linear-gradient(145deg, #312641, #101821);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        box-shadow: -18px 22px 45px rgba(0, 0, 0, 0.35);
        outline: 1px solid rgba(199, 163, 90, 0.5);
        outline-offset: -14px;
      }
      .widger-art span {
        color: var(--gold);
        font-size: 0.58rem;
        letter-spacing: 0.2em;
      }
      .widger-art strong {
        font: 500 clamp(3.3rem, 5vw, 5rem) / 0.83 Cormorant Garamond;
        margin: 2rem 0;
      }
      .widger-art small {
        color: #c9c2bb;
        font: italic 1rem Cormorant Garamond;
      }
      .widger-feature .prose p:not(.large-copy, .kicker) {
        color: #c9c2bb;
      }
      .dark-tags span {
        border-color: rgba(255, 255, 255, 0.22);
      }
      .secondary-long {
        display: grid;
        grid-template-columns: 1fr 1.4fr;
        gap: 3rem;
        padding: 3rem clamp(1.4rem, 7vw, 7.5rem);
        border-top: 1px solid rgba(255, 255, 255, 0.18);
      }
      .secondary-long h3 {
        font-size: 3.4rem;
      }
      .secondary-long > p {
        color: #c9c2bb;
      }
      .short-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      @media (max-width: 900px) {
        .widger-feature {
          grid-template-columns: 1fr;
        }
        .widger-art {
          max-width: 480px;
        }
        .secondary-long {
          grid-template-columns: 1fr;
        }
        .short-grid {
          grid-template-columns: 1fr;
        }
      }
      .fandom-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
      }
      .fandom-card {
        min-height: 410px;
        padding: 2rem;
        color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        position: relative;
        overflow: hidden;
      }
      .fandom-card:after {
        content: "";
        position: absolute;
        inset: 0;
        border: 1px solid rgba(255, 255, 255, 0.35);
        margin: 12px;
        pointer-events: none;
      }
      .fandom-card.miraculous {
        background: linear-gradient(150deg, #9d3038, #52151f);
      }
      .fandom-card.potter {
        background: linear-gradient(150deg, #314054, #151b25);
      }
      .fandom-card.inuyasha {
        background: linear-gradient(150deg, #786654, #332b28);
      }
      .fandom-card p {
        position: relative;
        z-index: 2;
        color: var(--gold);
        font-size: 0.6rem;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        margin: 0;
      }
      .fandom-card h3 {
        position: relative;
        z-index: 2;
        font-size: clamp(2.7rem, 3.5vw, 4rem);
        margin: 0.5rem 0;
      }
      .fandom-card small {
        position: relative;
        z-index: 2;
        color: rgba(255, 255, 255, 0.72);
      }
      .fandom-motif {
        position: absolute;
        inset: 2rem 2rem auto auto;
        width: 120px;
        height: 120px;
        opacity: 0.27;
      }
      .fandom-motif:not(.stars):not(.moon-mark) {
        display: grid;
        grid-template-columns: repeat(2, 28px);
        gap: 16px;
        transform: rotate(24deg);
      }
      .fandom-motif span {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: #fff;
      }
      .fandom-motif span:last-child {
        grid-column: 1/-1;
        justify-self: center;
      }
      .fandom-motif.stars {
        font: 500 2.1rem Cormorant Garamond;
        letter-spacing: 0.2em;
        width: auto;
      }
      .fandom-motif.moon-mark {
        font: 500 7rem/1 Cormorant Garamond;
        width: auto;
      }
      .archive-section {
        padding: clamp(5rem, 8vw, 8rem) clamp(1.4rem, 7vw, 7.5rem);
        background: var(--ink);
        color: #fff;
      }
      .archive-section > div {
        max-width: 1050px;
        margin: auto;
        text-align: center;
      }
      .archive-section .kicker {
        color: var(--gold);
      }
      .archive-section h2 {
        font-size: clamp(3rem, 5vw, 5.4rem);
      }
      .archive-section > div > p:not(.kicker) {
        color: #c9c2bb;
      }
      .archive-buttons {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin-top: 3rem;
      }
      .archive-button {
        padding: 1.6rem;
        border: 1px solid rgba(255, 255, 255, 0.25);
        text-decoration: none;
        display: flex;
        flex-direction: column;
        transition: 0.2s ease;
      }
      .archive-button:hover,
      .archive-button:focus-visible {
        background: var(--gold);
        color: var(--ink);
        border-color: var(--gold);
        transform: translateY(-3px);
      }
      .archive-button b {
        font: 500 2rem Cormorant Garamond;
      }
      .archive-button span {
        font-size: 0.65rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
      }
      .rights-note {
        max-width: 1000px;
      }
      .rights-note h2 {
        font-size: 3.5rem;
      }
      @media (max-width: 850px) {
        .fandom-grid,
        .archive-buttons {
          grid-template-columns: 1fr;
        }
        .fandom-card {
          min-height: 330px;
        }
      }
      .fandom-icon {
        position: absolute;
        right: 1.7rem;
        top: 1.5rem;
        width: 145px;
        height: 145px;
        z-index: 1;
        opacity: 0.31;
        fill: none;
        stroke: #fff;
        stroke-width: 4;
        stroke-linecap: round;
        stroke-linejoin: round;
      }
      .fandom-icon circle {
        fill: #fff;
        stroke: none;
      }
      .fandom-icon .spark,
      .fandom-icon .moon-line {
        fill: none;
        stroke: var(--gold);
      }
      .broom-icon {
        width: 155px;
      }
      .well-icon {
        width: 150px;
      }
      .clear-icon {
        opacity: 0.42;
        stroke-width: 5;
      }
      .clear-icon .solid {
        fill: #fff;
        stroke: none;
      }
      .clear-icon .cutout {
        fill: var(--red2);
        stroke: none;
      }
      .clear-icon .handle {
        stroke: #fff;
        stroke-width: 11;
      }
      .clear-icon .bristles {
        fill: var(--gold);
      }
      .clear-icon .bristle-lines {
        stroke: var(--ink);
        stroke-width: 4;
      }
      .clear-icon .well-body {
        fill: #9d8060;
      }
      .clear-icon .well-rim {
        fill: var(--gold);
        stroke: none;
      }
      .clear-icon .opening {
        fill: var(--ink);
        stroke: none;
      }
      .clear-icon .wood-line {
        stroke: rgba(36, 33, 30, 0.75);
        stroke-width: 4;
      }
      .clear-icon .supports,
      .clear-icon .crank {
        stroke: #fff;
        stroke-width: 8;
      }
      .clear-icon .crank-dot {
        fill: var(--gold);
        stroke: none;
      }
      .branded-blog-hero {
        display: flex;
        min-height: 510px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        background: linear-gradient(145deg, #21002f, #3b0852);
        padding: clamp(4rem, 8vw, 7rem) clamp(1.4rem, 8vw, 9rem);
      }
      .branded-blog-hero:after {
        display: none;
      }
      .blog-banner-logo {
        width: min(100%, 1100px);
        height: auto;
        object-fit: contain;
        filter: drop-shadow(0 16px 35px rgba(0, 0, 0, 0.22));
      }
      .branded-blog-hero > p:last-child {
        max-width: 720px;
        margin: 2rem auto 0;
        color: #e9deef;
        font-size: 1.05rem;
      }
      .blog-banner-logo {
        width: min(88vw, 650px);
        max-height: 360px;
      }
      .mobile-menu {
        display: none;
        margin-left: auto;
        position: relative;
      }
      .mobile-menu summary {
        list-style: none;
        cursor: pointer;
        font-size: 0.68rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        padding: 0.7rem 0.2rem;
      }
      .mobile-menu summary::-webkit-details-marker {
        display: none;
      }
      .mobile-menu summary:after {
        content: " +";
        color: var(--red);
      }
      .mobile-menu[open] summary:after {
        content: " −";
      }
      .mobile-route-nav {
        display: none;
      }
      @media (max-width: 1000px) {
        .mobile-menu {
          display: block;
        }
        .header > #nav {
          display: none;
        }
        .header .mobile-menu[open] .mobile-route-nav {
          display: flex;
          position: absolute;
          top: 52px;
          right: -1.2rem;
          width: min(86vw, 340px);
          padding: 1.3rem;
          background: var(--paper);
          border: 1px solid var(--line);
          box-shadow: 0 18px 35px rgba(36, 33, 30, 0.18);
          flex-direction: column;
          align-items: stretch;
          gap: 0.2rem;
        }
        .header .mobile-route-nav a {
          display: block;
          padding: 0.75rem 0.4rem;
          border-bottom: 1px solid var(--line);
          font-size: 0.72rem;
          text-decoration: none;
          text-transform: uppercase;
          letter-spacing: 0.1em;
        }
        .header .mobile-route-nav a:last-child {
          border-bottom: 0;
        }
      }
      .page-view:target {
        display: block;
      }
      body:not(:has(.page-view:target)) .page-view[data-page="home"] {
        display: block;
      }
      .page-hero.has-emblem:after {
        display: none;
      }
      .section-emblem {
        position: absolute;
        right: 6%;
        top: 50%;
        transform: translateY(-50%);
        width: min(24vw, 320px);
        height: auto;
        fill: none;
        stroke: var(--red);
        stroke-width: 3.2;
        stroke-linecap: round;
        stroke-linejoin: round;
        opacity: 0.2;
      }
      .section-emblem .gold-detail {
        fill: rgba(199, 163, 90, 0.6);
        stroke: var(--gold);
      }
      .young-emblem {
        width: min(27vw, 360px);
      }
      .young-emblem .cat-shape,
      .young-emblem .bus-shape {
        fill: none;
      }
      .young-emblem .gold-fill {
        fill: var(--gold);
        stroke: none;
      }
      @media (max-width: 800px) {
        .section-emblem {
          right: 2%;
          top: auto;
          bottom: 1rem;
          transform: none;
          width: 170px;
          opacity: 0.13;
        }
        .young-emblem {
          width: 210px;
        }
        .page-hero.has-emblem {
          padding-bottom: 10rem;
        }
      }
      .page-hero .section-silhouette {
        position: absolute;
        right: 4%;
        top: 50%;
        transform: translateY(-50%);
        width: min(29vw, 420px);
        height: auto;
        max-height: 80%;
        object-fit: contain;
        opacity: 0.28;
        filter: saturate(0.9);
        pointer-events: none;
      }
      .page-hero .book-silhouette {
        width: min(31vw, 460px);
      }
      .page-hero .necklace-silhouette {
        width: min(21vw, 290px);
        max-height: 86%;
      }
      .page-hero .young-silhouette {
        width: min(31vw, 460px);
      }
      @media (max-width: 800px) {
        .page-hero .section-silhouette {
          right: 2%;
          top: auto;
          bottom: 1rem;
          transform: none;
          width: 210px;
          max-height: 150px;
          opacity: 0.18;
        }
        .page-hero .book-silhouette,
        .page-hero .young-silhouette {
          width: 250px;
        }
        .page-hero .necklace-silhouette {
          width: 130px;
          max-height: 170px;
        }
      }
    

/* Multipage build additions */
.page-view,
.page-view.active {
  display: block;
}
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.title-link {
  text-decoration: none;
}
.title-link:hover,
.title-link:focus-visible {
  color: var(--red);
}
.detail-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.cover.lost-suitcase-cover {
  background: linear-gradient(145deg, #3d4650, #181d23);
}
.cover.lost-suitcase-cover strong {
  font-size: clamp(2.8rem, 4.4vw, 4.6rem);
}
.cover.good-walker-cover {
  background: linear-gradient(145deg, var(--sage), #354039);
}
.detail-note {
  margin-top: 2.5rem;
  padding: 1.5rem 0;
  border-block: 1px solid var(--line);
  color: var(--muted);
}
.breadcrumbs {
  margin: 0 0 1.2rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--muted);
}
.breadcrumbs a {
  color: var(--red);
  text-decoration: none;
}
@media (max-width: 650px) {
  .detail-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Privacy and cookie consent */
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin-top: 1rem;
  font-size: 0.72rem;
}
.footer-legal a,
.footer-cookie-settings {
  color: inherit;
  opacity: 0.82;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.footer-cookie-settings {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}
.footer-legal a:hover,
.footer-legal a:focus-visible,
.footer-cookie-settings:hover,
.footer-cookie-settings:focus-visible {
  opacity: 1;
}
.cookie-banner {
  position: fixed;
  z-index: 1000;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
  padding: clamp(1.25rem, 3vw, 2rem);
  color: var(--ink);
  background: rgba(248, 244, 235, 0.98);
  border: 1px solid rgba(118, 43, 49, 0.3);
  box-shadow: 0 24px 70px rgba(36, 33, 30, 0.24);
  backdrop-filter: blur(10px);
}
.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none !important;
}
.cookie-banner h2 {
  margin: 0.15rem 0 0.65rem;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
}
.cookie-banner p {
  margin: 0;
  max-width: 760px;
}
.cookie-banner__links {
  margin-top: 0.7rem !important;
  font-size: 0.82rem;
}
.cookie-banner__links a,
.cookie-modal a {
  color: var(--red);
  text-underline-offset: 0.18em;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
}
.cookie-choice {
  white-space: nowrap;
}
.cookie-modal {
  position: fixed;
  z-index: 1100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 19, 17, 0.68);
}
.cookie-modal__panel {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  padding: clamp(1.4rem, 4vw, 2.7rem);
  background: var(--paper);
  border: 1px solid rgba(118, 43, 49, 0.25);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}
.cookie-modal__panel h2 {
  margin: 0.2rem 2rem 1.4rem 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.cookie-modal__close {
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
.cookie-setting-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}
.cookie-setting-row:last-of-type {
  border-bottom: 1px solid var(--line);
}
.cookie-setting-row h3 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
}
.cookie-setting-row p,
.cookie-modal__policy {
  margin: 0;
  color: var(--muted);
}
.cookie-status {
  color: var(--sage);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cookie-switch {
  position: relative;
  display: inline-flex;
  cursor: pointer;
}
.cookie-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.cookie-switch > span:last-child {
  position: relative;
  width: 3.3rem;
  height: 1.8rem;
  border-radius: 999px;
  background: #aaa29a;
  transition: background 0.2s ease;
}
.cookie-switch > span:last-child::after {
  content: "";
  position: absolute;
  top: 0.2rem;
  left: 0.2rem;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}
.cookie-switch input:checked + span {
  background: var(--red);
}
.cookie-switch input:checked + span::after {
  transform: translateX(1.5rem);
}
.cookie-switch input:focus-visible + span {
  outline: 3px solid rgba(118, 43, 49, 0.28);
  outline-offset: 3px;
}
.cookie-modal__policy {
  margin-top: 1.2rem;
}
.cookie-modal__actions {
  margin-top: 1.5rem;
  display: flex;
  justify-content: flex-end;
}
.cookie-modal-open {
  overflow: hidden;
}
.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) clamp(1.4rem, 5vw, 3rem);
}
.legal-page .legal-intro {
  margin-bottom: 3rem;
}
.legal-page .legal-intro h1 {
  margin: 0.3rem 0 1rem;
  font-size: clamp(3.4rem, 8vw, 6.8rem);
}
.legal-page .legal-updated {
  color: var(--muted);
  font-size: 0.82rem;
}
.legal-copy h2 {
  margin-top: 2.6rem;
  font-size: clamp(2rem, 4vw, 3rem);
}
.legal-copy h3 {
  margin-top: 1.7rem;
  font-size: 1.45rem;
}
.legal-copy p,
.legal-copy li {
  line-height: 1.8;
}
.legal-copy table {
  width: 100%;
  margin: 1.5rem 0;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.legal-copy th,
.legal-copy td {
  padding: 0.9rem;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.legal-copy th {
  background: var(--cream);
}
.legal-copy a {
  color: var(--red);
  text-underline-offset: 0.18em;
}
@media (max-width: 760px) {
  .cookie-banner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .cookie-banner__actions {
    justify-content: stretch;
  }
  .cookie-banner__actions .btn {
    flex: 1 1 180px;
  }
  .cookie-setting-row {
    grid-template-columns: 1fr;
  }
  .legal-copy table,
  .legal-copy thead,
  .legal-copy tbody,
  .legal-copy tr,
  .legal-copy th,
  .legal-copy td {
    display: block;
  }
  .legal-copy thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
  .legal-copy tr {
    margin-bottom: 1rem;
    border: 1px solid var(--line);
  }
  .legal-copy td {
    border: 0;
    border-bottom: 1px solid var(--line);
  }
  .legal-copy td:last-child {
    border-bottom: 0;
  }
}

