/* =========================================================
   HARRY / DRACO
   Original fanlisting layout
   ========================================================= */

:root {
    --paper: #e8e4d8;
    --paper-dark: #d9d4c6;
    --ink: #191a18;
    --muted: #686963;
    --line: rgba(25, 26, 24, .20);
    --green: #3b4a3d;
    --burgundy: #713f43;
    --white: #f4f1e8;
    --dark: #242622;



    --serif: "Bodoni 72", "Didot", "Bodoni MT", Georgia, serif;
    --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
    --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(0,0,0,.035) 0 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(0,0,0,.025) 0 1px, transparent 1px),
        var(--paper);
    background-size: 7px 7px, 11px 11px, auto;
    color: var(--ink);
    font-family: var(--sans);
    line-height: 1.6;
}

/* subtle paper grain */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .08;
    z-index: 20;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent 0,
            transparent 3px,
            rgba(0,0,0,.15) 4px
        );
    mix-blend-mode: multiply;
}

a {
    color: inherit;
    text-decoration: none;
}

::selection {
    background: var(--ink);
    color: var(--paper);
}

/* =========================================================
   SITE FRAME
   ========================================================= */

.site {
    width: min(1440px, 100%);
    margin: auto;
    padding: 0 42px;
}

/* =========================================================
   HEADER
   ========================================================= */

header {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    position: relative;
    z-index: 5;
}

.brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

.brand-mark {
    width: 32px;
    height: 32px;
    border: 1px solid var(--ink);
    display: grid;
    place-items: center;
    font-family: var(--serif);
    font-size: 16px;
    font-style: italic;
}

.brand-name {
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    font-size: 9px;
    letter-spacing: .18em;
    text-transform: uppercase;
    position: relative;
}

nav a::after {
    content: "";
    position: absolute;
    height: 1px;
    background: currentColor;
    left: 0;
    right: 100%;
    bottom: -5px;
    transition: right .25s ease;
}

nav a:hover::after {
    right: 0;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
    min-height: calc(100vh - 82px);
    display: grid;
    grid-template-columns: 1fr 86px 1fr;
    position: relative;
    padding: 58px 0 90px;
}

.character {
    min-height: 650px;
    position: relative;
    overflow: hidden;
}

.character-image {
    position: absolute;
    inset: 0 7% 82px;
    overflow: hidden;
    background: var(--dark);
}

.character-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.08),
            transparent 45%,
            rgba(0,0,0,.35)
        );
    pointer-events: none;
}

.character.harry .character-image {
    background: linear-gradient(
        135deg,
        #7b5c5e,
        #2c2728 70%
    );
}

.character.draco .character-image {
    background: linear-gradient(
        135deg,
        #4d5b50,
        #252a27 70%
    );
}

/* abstract architectural photography */
.architecture {
    position: absolute;
    inset: 0;
    opacity: .35;
}

.architecture::before,
.architecture::after {
    content: "";
    position: absolute;
}

.architecture::before {
    width: 60%;
    height: 150%;
    left: 20%;
    top: -20%;
    border-left: 1px solid rgba(255,255,255,.5);
    border-right: 1px solid rgba(255,255,255,.25);
    transform: skewX(-13deg);
}

.architecture::after {
    width: 130%;
    height: 1px;
    top: 62%;
    left: -15%;
    background: rgba(255,255,255,.3);
    transform: rotate(-13deg);
}

/* stylized character silhouette */
.silhouette {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 46%;
    height: 83%;
    transform: translateX(-50%);
}

.silhouette .head {
    position: absolute;
    width: 30%;
    aspect-ratio: 1;
    border-radius: 50%;
    left: 35%;
    top: 5%;
    background: #171816;
}

.silhouette .body {
    position: absolute;
    width: 70%;
    height: 65%;
    left: 15%;
    bottom: 0;
    background: #151614;
    clip-path: polygon(20% 0, 80% 0, 100% 100%, 0 100%);
}

.silhouette .robe {
    position: absolute;
    width: 100%;
    height: 75%;
    left: 0;
    bottom: 0;
    background: rgba(10,11,10,.85);
    clip-path: polygon(35% 0, 65% 0, 100% 100%, 0 100%);
}

/* Harry hair */
.harry .head::before {
    content: "";
    position: absolute;
    inset: -7% -4% 65% -7%;
    background: #10110f;
    clip-path: polygon(
        0 65%, 12% 20%, 25% 50%,
        40% 5%, 52% 45%, 68% 0,
        77% 45%, 94% 18%, 100% 70%,
        84% 55%, 68% 75%, 48% 58%,
        30% 75%, 15% 55%
    );
}

/* Draco hair */
.draco .head::before {
    content: "";
    position: absolute;
    inset: -12% -8% 62% -8%;
    background: #d0cfc4;
    clip-path: polygon(
        0 75%, 12% 15%, 25% 50%,
        39% 5%, 55% 48%, 72% 12%,
        88% 55%, 100% 18%, 96% 90%,
        72% 70%, 50% 88%, 25% 65%
    );
}

.character-info {
    position: absolute;
    left: 0;
    bottom: 0;
}

.character.draco .character-info {
    left: auto;
    right: 0;
    text-align: right;
}

.character-index {
    font-family: var(--mono);
    font-size: 9px;
    color: var(--muted);
    letter-spacing: .1em;
}

.character-name {
    font-family: var(--serif);
    font-size: clamp(48px, 6vw, 88px);
    line-height: .78;
    margin: 10px 0 14px;
    letter-spacing: -.045em;
}

.character-role {
    font-size: 9px;
    letter-spacing: .22em;
    text-transform: uppercase;
}

/* =========================================================
   CENTER DIVIDER
   ========================================================= */

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.divider::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    background: var(--line);
}

.divider-content {
    background: var(--paper);
    padding: 24px 8px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.divider-symbol {
    font-family: var(--serif);
    font-size: 34px;
    font-style: italic;
}

.divider-word {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 8px;
    letter-spacing: .25em;
    text-transform: uppercase;
    margin: 24px auto;
}

.divider-date {
    font-family: var(--mono);
    font-size: 7px;
    color: var(--muted);
}

/* =========================================================
   FLOATING TITLE
   ========================================================= */

.hero-title {
    position: absolute;
    left: 50%;
    top: 43%;
    transform: translate(-50%, -50%);
    width: max-content;
    z-index: 4;
    pointer-events: none;
}

.hero-title h1 {
    margin: 0;
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(62px, 9vw, 138px);
    line-height: .73;
    letter-spacing: -.065em;
    text-align: center;
}

.hero-title h1 span {
    display: block;
}

.hero-title h1 span:last-child {
    margin-left: 100px;
}

.hero-title small {
    display: block;
    margin-top: 28px;
    text-align: center;
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: .18em;
    text-transform: uppercase;
}

/* =========================================================
   INTRO
   ========================================================= */

.intro {
    border-top: 1px solid var(--line);
    padding: 110px 8% 130px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 10%;
}

.eyebrow {
    font-family: var(--mono);
    font-size: 8px;
    color: var(--muted);
    letter-spacing: .18em;
    text-transform: uppercase;
}

.intro h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(48px, 6vw, 88px);
    line-height: .86;
    letter-spacing: -.05em;
    margin: 20px 0;
}

.intro-copy {
    max-width: 620px;
}

.intro-copy p {
    font-family: var(--serif);
    font-size: 23px;
    line-height: 1.45;
    margin: 0 0 35px;
}

.text-link {
    font-size: 9px;
    letter-spacing: .18em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 5px;
}

/* =========================================================
   OPPOSITION
   ========================================================= */

.opposition {
    background: var(--dark);
    color: var(--white);
    margin: 0 -42px;
    padding: 110px max(42px, 8%);
}

.opposition-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    border-bottom: 1px solid rgba(255,255,255,.2);
    padding-bottom: 35px;
    margin-bottom: 70px;
}

.opposition h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(55px, 8vw, 110px);
    line-height: .75;
    letter-spacing: -.06em;
    margin: 15px 0 0;
}

.opposition-grid {
    display: grid;
    grid-template-columns: 1fr 70px 1fr;
}

.side {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.side h3 {
    font-family: var(--serif);
    font-size: 40px;
    font-weight: 400;
    margin: 0 0 35px;
}

.side.harry h3 {
    color: #a96d72;
}

.side.draco {
    text-align: right;
}

.side.draco h3 {
    color: #849889;
}

.trait {
    border-top: 1px solid rgba(255,255,255,.15);
    padding: 16px 0;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.opposition-center {
    position: relative;
}

.opposition-center::before {
    content: "";
    width: 1px;
    background: rgba(255,255,255,.2);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
}

.opposition-center span {
    position: sticky;
    top: 50%;
    display: block;
    width: 40px;
    height: 40px;
    margin: auto;
    background: var(--dark);
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 50%;
    text-align: center;
    line-height: 37px;
    font-family: var(--serif);
    font-style: italic;
}

/* =========================================================
   QUOTE
   ========================================================= */

.quote {
    padding: 150px 8%;
    text-align: center;
    position: relative;
}

.quote-mark {
    font-family: var(--serif);
    font-size: 120px;
    line-height: .3;
    opacity: .12;
}

.quote blockquote {
    margin: 40px auto;
    max-width: 1000px;
    font-family: var(--serif);
    font-size: clamp(42px, 6vw, 82px);
    line-height: .95;
    letter-spacing: -.045em;
    font-weight: 400;
}

.quote-caption {
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: .2em;
    color: var(--muted);
    text-transform: uppercase;
}

/* =========================================================
   FANLISTING INFO
   ========================================================= */

.list-section {
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.list-card {
    padding: 80px 8%;
    min-height: 300px;
}

.list-card + .list-card {
    border-left: 1px solid var(--line);
}

.list-card h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 55px;
    line-height: .9;
    margin: 15px 0 35px;
}

.stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 430px;
}

.stat {
    border-top: 1px solid var(--line);
    padding: 12px 0;
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.stat strong {
    display: block;
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 400;
    margin-top: 3px;
    text-transform: none;
    letter-spacing: 0;
}

.join-copy {
    max-width: 400px;
    font-family: var(--serif);
    font-size: 21px;
    line-height: 1.4;
    margin-bottom: 30px;
}

/* =========================================================
   CODES
   ========================================================= */

.codes {
    padding: 100px 8%;
    border-top: 1px solid var(--line);
}

.codes h2 {
    font-family: var(--serif);
    font-size: clamp(55px, 8vw, 105px);
    font-weight: 400;
    line-height: .75;
    letter-spacing: -.06em;
    margin: 15px 0 60px;
}

.code-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.code {
    aspect-ratio: 1.8 / 1;
    border: 1px solid var(--ink);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.code:nth-child(2) {
    background: var(--ink);
    color: var(--paper);
}

.code:nth-child(3) {
    background: var(--green);
    color: var(--paper);
}

.code:nth-child(4) {
    background: var(--burgundy);
    color: var(--paper);
}

.code-title {
    font-family: var(--serif);
    font-size: 25px;
    letter-spacing: -.03em;
}

.code-size {
    font-family: var(--mono);
    font-size: 7px;
    letter-spacing: .15em;
    margin-top: 8px;
}

/* =========================================================
   FOOTER
   ========================================================= */

footer {
    border-top: 1px solid var(--line);
    padding: 55px 0 45px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
}

.footer-title {
    font-family: var(--serif);
    font-size: 28px;
}

.footer-copy {
    font-family: var(--mono);
    color: var(--muted);
    font-size: 7px;
    letter-spacing: .08em;
    line-height: 1.8;
    margin-top: 10px;
}

.footer-links {
    display: flex;
    gap: 20px;
    align-items: center;
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: .1em;
    text-transform: uppercase;
}


/* =========================================================
   FANLISTING
   ========================================================= */

.fanlisting-intro {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);


}

.fanlisting-intro__label {
  margin-bottom: 1.25rem;
  font: 700 0.6rem/1 Arial, sans-serif;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.fanlisting-intro__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.5fr auto;
  gap: 2rem;
  align-items: center;
}

.fanlisting-intro h2 {
  margin: 0;
    font-family: var(--serif);
    font-size: 40px;
    font-weight: 400;
    margin: 0 0 35px;
text-transform: uppercase;

}

.fanlisting-intro p {
  margin: 0;    
font-family: var(--serif);
  font-size:20px;
  color: var(--muted);

}

.fanlisting-intro strong {
  color: var(--red);
}

.fanlisting-intro a {
    font-family: var(--serif);
 background: #ecd0a9;
 padding: 5px;
  color: #0e7154;
 font-weight: bold;
  text-decoration: none;
  white-space: nowrap;
display: inline-block;
	transition-duration: $defaultDuration;
	transition-property: transform;

	@include hideTapHighlightColor();
	@include hardwareAccel();
	@include improveAntiAlias();
	
	&:hover {	
		transform: rotate(4deg);
	}



.fanlisting-intro a:hover {
  text-decoration: none;
}

@media (max-width: 700px) {
  .fanlisting-intro__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .fanlisting-intro a {
    white-space: normal;
  }
}



/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .site {
        padding: 0 22px;
    }

    header {
        height: 70px;
    }

    nav {
        gap: 13px;
    }

    nav a {
        font-size: 8px;
    }

    .hero {
        grid-template-columns: 1fr;
        padding-top: 30px;
    }

    .hero-title {
        top: 50%;
        transform: translate(-50%, -50%) rotate(-4deg);
    }

    .hero-title h1 {
        font-size: clamp(58px, 17vw, 100px);
    }

    .hero-title h1 span:last-child {
        margin-left: 50px;
    }

    .character {
        min-height: 520px;
        margin-bottom: 25px;
    }

    .character-image {
        inset: 0 0 70px;
    }

    .divider {
        display: none;
    }

    .character.draco {
        margin-top: 0;
    }

    .intro {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 80px 0;
    }

    .intro-copy p {
        font-size: 20px;
    }

    .opposition {
        margin: 0 -22px;
        padding: 80px 22px;
    }

    .opposition-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .opposition-center {
        display: none;
    }

    .side.draco {
        text-align: left;
    }

    .quote {
        padding: 100px 0;
    }

    .list-section {
        grid-template-columns: 1fr;
    }

    .list-card {
        padding: 65px 0;
    }

    .list-card + .list-card {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .code-grid {
        grid-template-columns: 1fr 1fr;
    }

    footer {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-wrap: wrap;
    }
}

@media (max-width: 520px) {

    nav a:nth-child(n+4) {
        display: none;
    }

    .character {
        min-height: 430px;
    }

    .character-name {
        font-size: 54px;
    }

    .hero-title h1 {
        font-size: 55px;
    }

    .hero-title h1 span:last-child {
        margin-left: 25px;
    }

    .code-grid {
        grid-template-columns: 1fr;
    }

    .codes {
        padding: 75px 0;
    }

    .opposition h2,
    .codes h2 {
        font-size: 64px;
    }
}