:root {
      --cream: #f7ead8;
      --cream-2: #fbf2e7;
      --ink: #151221;
      --muted: #5c4e4b;
      --gold: #b78234;
      --gold-light: #f4d69a;
      --magenta: #b41967;
      --plum: #1b1420;
      --line: rgba(183,130,52,.28);
      --shadow: 0 24px 70px rgba(87, 42, 20, .15);
      --serif: "Cormorant Garamond", Georgia, serif;
      --sans: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      background:
        radial-gradient(circle at 88% 6%, rgba(180,25,103,.32), transparent 22rem),
        radial-gradient(circle at 2% 76%, rgba(180,25,103,.18), transparent 19rem),
        linear-gradient(180deg, var(--cream-2), var(--cream) 58%, #f4e2ca);
      font-family: var(--sans);
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: .28;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
      mix-blend-mode: multiply;
    }

    .page {
      width: min(1160px, calc(100% - 40px));
      margin: 0 auto;
      position: relative;
    }

    .hero {
      position: relative;
      min-height: 100vh;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(380px, .95fr);
      gap: clamp(2rem, 5vw, 6rem);
      align-items: center;
      padding: clamp(3rem, 5vw, 5rem) 0 4rem;
    }

    .brand {
      font-family: var(--serif);
      font-size: clamp(3.4rem, 7vw, 6.8rem);
      line-height: .82;
      letter-spacing: .18em;
      color: var(--gold);
      font-weight: 500;
      text-transform: uppercase;
      position: relative;
      width: max-content;
      max-width: 100%;
    }
    .brand sup, .tm { font-size: .18em; letter-spacing: 0; vertical-align: super; }
    .brand::after {
      content: "";
      position: absolute;
      left: 42%;
      top: 42%;
      width: 46%;
      height: 2px;
      background: linear-gradient(90deg, transparent, #fff3c4 12%, var(--gold-light) 36%, transparent 100%);
      box-shadow: 0 0 16px #fff1b5, 0 0 34px rgba(231,185,91,.85);
      transform: rotate(-1deg);
    }

    .tagline {
      margin: 2rem 0 3.1rem;
      max-width: 450px;
      font: italic 600 clamp(1.35rem, 2vw, 1.85rem)/1.18 var(--serif);
      color: #27202b;
    }

    .vol {
      font-size: .78rem;
      color: var(--magenta);
      font-weight: 800;
      letter-spacing: .18em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    h1 {
      margin: 0;
      max-width: 570px;
      font: 600 clamp(3rem, 6.7vw, 6.3rem)/.91 var(--serif);
      letter-spacing: -.035em;
      color: #151326;
    }
    h1 .gold { color: var(--gold); }

    .gold-rule {
      width: 44px;
      height: 1px;
      background: var(--gold);
      margin: 1.65rem 0 1.4rem;
    }

    .subhead {
      color: var(--magenta);
      font: 700 clamp(1.18rem, 2vw, 1.52rem)/1.24 var(--serif);
      max-width: 540px;
      margin-bottom: 1.85rem;
    }

    .intro {
      max-width: 470px;
      color: #342c31;
      font-size: 1.02rem;
      line-height: 1.74;
      margin-bottom: 2rem;
    }
    .intro p { margin: 0 0 .72rem; }

    .form {
      width: min(100%, 520px);
      display: grid;
      gap: .95rem;
    }
    .input-wrap {
      position: relative;
    }
    .input-wrap svg {
      position: absolute;
      left: 1.15rem;
      top: 50%;
      transform: translateY(-50%);
      width: 20px;
      height: 20px;
      stroke: var(--gold);
    }
    input[type="email"] {
      width: 100%;
      height: 62px;
      border: 1px solid rgba(183,130,52,.45);
      border-radius: 16px;
      background: rgba(255,250,243,.42);
      padding: 0 1.2rem 0 3.4rem;
      font: 500 1rem var(--sans);
      color: var(--ink);
      outline: none;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.55);
    }
    input[type="email"]:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(183,130,52,.12); }

    .btn {
      border: 1px solid rgba(183,130,52,.55);
      border-radius: 16px;
      height: 66px;
      cursor: pointer;
      padding: 0 1.6rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      color: var(--magenta);
      background:
        radial-gradient(circle at 18% 40%, rgba(255,255,255,.9), transparent 18%),
        linear-gradient(135deg, #f3c879, #fff3d7 42%, #e2b46d);
      box-shadow: 0 18px 32px rgba(151,95,32,.25), inset 0 1px 0 rgba(255,255,255,.7);
      font: 600 clamp(1.2rem, 2vw, 1.55rem) var(--serif);
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .btn:hover { transform: translateY(-2px); box-shadow: 0 24px 42px rgba(151,95,32,.28), inset 0 1px 0 rgba(255,255,255,.7); }
    .btn span:last-child { font-size: 2rem; line-height: 1; }

    .microcopy {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .45rem;
      color: #54433b;
      font-size: .9rem;
    }
    .microcopy svg { width: 15px; height: 15px; stroke: var(--gold); }

    .portrait-wrap {
      position: relative;
      min-height: 720px;
      align-self: stretch;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .portrait-card {
      position: relative;
      z-index: 1;
      width: min(100%, 520px);
      aspect-ratio: 3 / 4.15;
      overflow: hidden;
      border-radius: 48% 48% 10% 10% / 32% 32% 9% 9%;
      mask-image: radial-gradient(ellipse at center, black 64%, transparent 73%);
      -webkit-mask-image: radial-gradient(ellipse at center, black 64%, transparent 73%);
    }
    .portrait-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: sepia(.17) contrast(1.04) brightness(1.04);
      opacity: .91;
      transform: scale(1.03);
    }
    .portrait-wrap::before {
      content: "";
      position: absolute;
      right: -16%;
      top: 6%;
      width: 75%;
      height: 52%;
      background: radial-gradient(circle, rgba(189,26,98,.55), rgba(189,26,98,.22) 38%, transparent 70%);
      filter: blur(18px);
      opacity: .75;
      z-index: -2;
    }

    .cracks {
      position: absolute;
      left: -2rem;
      right: -2rem;
      top: -3rem;
      bottom: clamp(-14rem, -14vw, -6rem);
      pointer-events: none;
      z-index: 0;
    }
    .cracks path {
      fill: none;
      stroke: url(#goldStroke);
      stroke-width: 5;
      stroke-linecap: round;
      stroke-linejoin: round;
      filter: drop-shadow(0 0 7px rgba(255,216,134,.68));
    }
    .cracks .thin { stroke-width: 2.2; opacity: .8; }
    .spark {
      position: absolute;
      width: 8px;
      height: 8px;
      background: #fff5c7;
      border-radius: 999px;
      box-shadow: 0 0 14px 6px rgba(244,214,154,.75);
      z-index: 4;
    }
    .s1 { left: 8%; top: 8%; }
    .s2 { left: 92%; bottom: 4%; top: auto; }
    .s3 { left: 4%; bottom: -2%; top: auto; }

    .proof-strip {
      position: relative;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      padding: 2.7rem 0;
    }
    .proof-grid {
      width: min(1020px, calc(100% - 40px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.2rem;
      text-align: center;
    }
    .proof {
      padding: .4rem 1.4rem;
      position: relative;
    }
    .proof + .proof { border-left: 1px solid var(--line); }
    .proof svg {
      width: 38px;
      height: 38px;
      stroke: var(--gold);
      margin-bottom: .8rem;
    }
    .proof strong {
      display: block;
      color: var(--magenta);
      font-size: .9rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: .45rem;
    }
    .proof span { font-size: .95rem; color: #2b2630; }

    .story-section {
      position: relative;
      padding: 3.4rem 0 2.2rem;
      overflow: hidden;
    }
    .story-section::before {
      content: "";
      position: absolute;
      left: -10%;
      bottom: -6rem;
      width: 34rem;
      height: 34rem;
      background: radial-gradient(circle, rgba(180,25,103,.22), transparent 68%);
      filter: blur(8px);
      pointer-events: none;
    }
    .story-grid {
      width: min(1060px, calc(100% - 40px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.03fr .97fr;
      gap: clamp(2rem, 5vw, 5rem);
      align-items: start;
    }
    .quote-card {
      background: rgba(255,248,238,.58);
      border: 1px solid rgba(183,130,52,.28);
      border-radius: 22px;
      padding: clamp(2rem, 4vw, 3.4rem);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
      position: relative;
    }
    .quote-mark {
      font: 700 5rem/1 var(--serif);
      color: var(--gold);
      opacity: .85;
      margin-bottom: -.8rem;
    }
    .quote-card p {
      margin: 0 0 1rem;
      font: italic 600 clamp(1.08rem, 1.7vw, 1.36rem)/1.44 var(--serif);
      color: #2b2430;
    }
    .quote-card .signature {
      color: var(--magenta);
      font-size: .86rem;
      letter-spacing: .13em;
      font-weight: 800;
      text-transform: uppercase;
      margin-top: 1.5rem;
      font-family: var(--sans);
      font-style: normal;
      line-height: 1.7;
    }

    .right-stack {
      display: grid;
      gap: 1.6rem;
    }
    .book-row {
      display: flex;
      justify-content: center;
      align-items: end;
      min-height: 420px;
      position: relative;
    }
    .book {
      width: min(75%, 340px);
      position: relative;
      transform: perspective(1200px) rotateY(-7deg);
      filter: drop-shadow(20px 28px 28px rgba(80,48,28,.18));
    }
    .book::before {
      content: "";
      position: absolute;
      right: -13px;
      top: 17px;
      width: 20px;
      height: calc(100% - 34px);
      background: linear-gradient(90deg, #e5d3bc, #f8eddd);
      transform: skewY(-3deg);
      border-radius: 0 7px 7px 0;
      z-index: -1;
    }
    .book img {
      width: 100%;
      display: block;
      border-radius: 4px;
      box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
    }

    .bio-card {
      background: rgba(255,248,238,.68);
      border: 1px solid rgba(183,130,52,.28);
      border-radius: 22px;
      padding: 1.65rem 1.8rem;
    }
    .bio-card h2 {
      margin: 0 0 1rem;
      font: 600 1.65rem/1.1 var(--serif);
      color: var(--magenta);
      text-align: center;
    }
    .bio-card ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: .72rem;
    }
    .bio-card li {
      display: grid;
      grid-template-columns: 24px 1fr;
      gap: .65rem;
      align-items: start;
      color: #302831;
      font-size: .95rem;
      line-height: 1.45;
    }
    .bio-card li::before {
      content: "✧";
      color: var(--gold);
      font-size: 1.2rem;
      line-height: 1;
      margin-top: .08rem;
    }

    .pull-quote {
      width: min(1060px, calc(100% - 40px));
      margin: 2.4rem auto 3.4rem;
      text-align: center;
      color: var(--magenta);
      font: 600 clamp(1.9rem, 4.5vw, 4.1rem)/1.05 var(--serif);
      letter-spacing: -.015em;
    }
    .pull-quote span {
      display: block;
      margin-top: .9rem;
      font: 600 .95rem/1.4 var(--serif);
      letter-spacing: .34em;
      color: var(--gold);
      text-transform: uppercase;
    }

    footer {
      background: #16131d;
      color: rgba(255,246,232,.84);
      padding: 2rem 0;
      font-size: .82rem;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    .footer-grid {
      width: min(1060px, calc(100% - 40px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1px 1fr;
      gap: 2rem;
      align-items: center;
    }
    .footer-grid .divider { height: 48px; background: rgba(183,130,52,.7); }
    footer a { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(255,246,232,.25); }

    @media (max-width: 900px) {
      .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 2.4rem;
        gap: 1rem;
      }
      .portrait-wrap {
        min-height: 520px;
        order: -1;
        align-self: auto;
      }
      .portrait-card { width: min(88%, 420px); }
      .content { padding-top: 0; }
      .tagline { margin-bottom: 2rem; }
      .proof-grid, .story-grid { grid-template-columns: 1fr; }
      .proof + .proof { border-left: none; border-top: 1px solid var(--line); padding-top: 1.6rem; }
      .book-row { min-height: 360px; }
      .footer-grid { grid-template-columns: 1fr; gap: 1rem; }
      .footer-grid .divider { display: none; }
      .cracks {
        left: -1rem;
        right: -1rem;
        top: -2rem;
        bottom: clamp(-10rem, -16vw, -5rem);
      }
    }

    @media (max-width: 560px) {
      .page, .proof-grid, .story-grid, .pull-quote, .footer-grid { width: min(100% - 28px, 1060px); }
      .brand { font-size: 3.1rem; }
      h1 { font-size: 3.05rem; }
      .hero { padding-bottom: 2.5rem; }
      .portrait-wrap { min-height: 430px; }
      .btn { font-size: 1.25rem; padding: 0 1.05rem; }
      .intro { font-size: .96rem; }
      .proof-strip { padding: 2rem 0; }
      .quote-card { padding: 1.6rem; }
      .book { width: min(82%, 300px); }
      footer { font-size: .72rem; }
    }
