@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Cormorant+Infant:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&display=swap");

:root {
    --chapter-ink: #0d0907;
    --chapter-brown: #24150d;
    --chapter-cream: #f4eee4;
    --chapter-sand: #ecddc7;
    --chapter-gold: #eac477;
    --chapter-copper: #b56b2c;
    --chapter-line-dark: rgba(234, 196, 119, 0.2);
    --chapter-line-light: rgba(42, 27, 17, 0.16);
    --chapter-serif: "Cormorant Garamond", Georgia, serif;
    --chapter-infant: "Cormorant Infant", Georgia, serif;
    --chapter-sans: Arial, Helvetica, sans-serif;
}

html {
    scroll-behavior: smooth;
}
.new-chapter-body {
    margin: 0;
    background: var(--chapter-ink);
    color: var(--chapter-cream);
    font-family: var(--chapter-sans);
    font-size: 15px;
    line-height: 1.45;
}
.new-chapter-body *,
.new-chapter-body *::before,
.new-chapter-body *::after {
    box-sizing: border-box;
}
.new-chapter-body a {
    color: inherit;
    text-decoration: none;
}
.new-chapter-body p,
.new-chapter-body h1,
.new-chapter-body h2,
.new-chapter-body h3,
.new-chapter-body figure {
    margin: 0;
}
.chapter-shell {
    width: min(100% - 9vw, 1730px);
    margin-inline: auto;
}
.eyebrow {
    color: var(--chapter-gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.chapter-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: url("../assets/new-pages/new-chapter/new-chapter-hero-background.jpeg")
        center center / cover no-repeat;
}
.chapter-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(7, 4, 2, 0.84),
            rgba(15, 8, 4, 0.35) 56%,
            rgba(7, 4, 2, 0.55)
        ),
        linear-gradient(0deg, rgba(5, 3, 2, 0.74), transparent 42%);
}
.chapter-header {
    position: relative;
    z-index: 1;
    min-height: 105px;
    padding: 0 4.3vw;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    border-bottom: 1px solid rgba(234, 196, 119, 0.22);
}
.chapter-logo img {
    display: block;
    width: 205px;
}
.chapter-nav {
    display: flex;
    align-items: center;
    gap: clamp(35px, 5vw, 110px);
}
.chapter-nav a,
.chapter-header-button {
    color: #eadbc7;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}
.chapter-header-button {
    justify-self: end;
    border: 1px solid rgba(244, 238, 228, 0.45);
    padding: 22px 32px;
}
.chapter-header-button span,
.chapter-button span {
    margin-left: 9px;
    font-size: 1.15em;
}
.chapter-hero-content {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 105px);
    padding-top: 18vh;
    padding-bottom: 140px;
}
.chapter-hero-content .eyebrow {
    margin-left: 13%;
}
.chapter-hero-content h1 {
    margin: 25px 0 30px 13%;
    color: var(--chapter-cream);
    font: 500 clamp(110px, 11vw, 220px) / 0.72 var(--chapter-serif);
    letter-spacing: -0.06em;
    text-transform: uppercase;
}
.chapter-hero-content h1 em {
    display: block;
    color: var(--chapter-gold);
    font-family: var(--chapter-infant);
    font-style: italic;
    font-weight: 500;
    text-transform: none;
}
.chapter-hero-description {
    max-width: 710px;
    margin-left: 13%;
    color: rgba(244, 238, 228, 0.84);
    font-size: 17px;
    line-height: 1.55;
}
.chapter-text-link {
    display: inline-block;
    margin: 28px 0 0 13%;
    padding-bottom: 9px;
    border-bottom: 1px solid var(--chapter-gold);
    color: var(--chapter-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.chapter-text-link span {
    margin-left: 8px;
}
.chapter-marquee {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 67px;
    padding: 0 4.8vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(234, 196, 119, 0.22);
    color: var(--chapter-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.vision-section {
    padding: 120px 0 130px;
    background: var(--chapter-ink);
}
.vision-intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 80px;
    padding: 92px 0 0;
}
.vision-intro h2 {
    color: var(--chapter-cream);
    font: 500 clamp(68px, 7.2vw, 145px) / 0.82 var(--chapter-serif);
    letter-spacing: -0.055em;
}
.vision-intro h2 em {
    color: var(--chapter-gold);
    font-family: var(--chapter-infant);
    font-style: italic;
    font-weight: 500;
}
.vision-intro > p {
    max-width: 520px;
    padding-bottom: 12px;
    color: rgba(244, 238, 228, 0.6);
    font-size: 16px;
    line-height: 1.65;
}

.design-panels {
    background: var(--chapter-brown);
}
.design-panel {
    min-height: 600px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
}
.design-panel-reverse {
    grid-template-columns: 0.85fr 1.15fr;
}
.design-panel-reverse .panel-image {
    order: 2;
}
.design-panel-reverse .panel-copy {
    order: 1;
}
.panel-image {
    position: relative;
    min-height: 600px;
    background-position: center;
    background-size: cover;
}
.panel-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(7, 3, 1, 0.38), transparent 38%);
}
.panel-image > span {
    position: absolute;
    z-index: 1;
    right: 36px;
    bottom: 23px;
    color: var(--chapter-cream);
    font: 400 68px/1 var(--chapter-serif);
}
.panel-copy {
    padding: 85px clamp(45px, 7vw, 145px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.panel-copy h2 {
    margin-top: 42px;
    color: var(--chapter-gold);
    font: 500 clamp(60px, 6.2vw, 120px) / 0.8 var(--chapter-serif);
    letter-spacing: -0.05em;
}
.panel-copy > p:last-child {
    max-width: 510px;
    margin-top: 40px;
    color: rgba(244, 238, 228, 0.62);
    font-size: 16px;
    line-height: 1.6;
}

.film-section {
    padding: 130px 0 145px;
    background: var(--chapter-sand);
    color: var(--chapter-ink);
}
.film-grid {
    display: grid;
    grid-template-columns: 0.83fr 1.17fr;
    gap: 9vw;
    align-items: center;
}
.film-copy .eyebrow {
    color: #a86b32;
}
.film-copy h2 {
    margin-top: 38px;
    font: 500 clamp(70px, 7.2vw, 140px) / 0.78 var(--chapter-serif);
    letter-spacing: -0.055em;
}
.film-copy h2 em {
    color: var(--chapter-copper);
    font-family: var(--chapter-infant);
    font-style: italic;
    font-weight: 500;
}
.film-copy > p:last-child {
    max-width: 550px;
    margin-top: 42px;
    color: rgba(13, 9, 7, 0.62);
    font-size: 16px;
    line-height: 1.6;
}
.film-media {
    position: relative;
    padding: 13px 13px 0;
    border: 1px solid rgba(181, 107, 44, 0.35);
}
.film-media img {
    display: block;
    width: 100%;
    aspect-ratio: 1.79;
    object-fit: cover;
}
.film-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    border: 1px solid rgba(244, 238, 228, 0.7);
    border-radius: 50%;
    color: var(--chapter-cream);
    font-size: 15px;
    padding-left: 3px;
}
.film-media figcaption {
    padding: 15px 5px 14px;
    color: rgba(13, 9, 7, 0.62);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.journey-section {
    padding: 130px 0 145px;
    background: var(--chapter-ink);
}
.journey-section > .chapter-shell > h2 {
    margin-top: 78px;
    color: var(--chapter-cream);
    font: 500 clamp(70px, 7.4vw, 145px) / 0.78 var(--chapter-serif);
    letter-spacing: -0.055em;
}
.journey-section > .chapter-shell > h2 em {
    color: var(--chapter-gold);
    font-family: var(--chapter-infant);
    font-style: italic;
    font-weight: 500;
}
.journey-points {
    margin-top: 115px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--chapter-line-dark);
    border-bottom: 1px solid var(--chapter-line-dark);
}
.journey-points article {
    min-height: 290px;
    padding: 40px 30px 36px 0;
    border-right: 1px solid var(--chapter-line-dark);
}
.journey-points article:not(:first-child) {
    padding-left: 32px;
}
.journey-points article:last-child {
    border-right: 0;
}
.journey-points span {
    color: var(--chapter-copper);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
}
.journey-points h3 {
    margin-top: 77px;
    color: var(--chapter-gold);
    font: 500 30px/1 var(--chapter-serif);
}
.journey-points p {
    max-width: 265px;
    margin-top: 15px;
    color: rgba(244, 238, 228, 0.57);
    font-size: 15px;
    line-height: 1.45;
}

.conversation-section {
    padding: 130px 0 150px;
    background: var(--chapter-cream);
    color: var(--chapter-ink);
}
.conversation-grid {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 9vw;
}
.conversation-heading h2 {
    margin-top: 40px;
    font: 500 clamp(68px, 7.2vw, 140px) / 0.78 var(--chapter-serif);
    letter-spacing: -0.055em;
}
.conversation-heading h2 em {
    color: var(--chapter-copper);
    font-family: var(--chapter-infant);
    font-style: italic;
    font-weight: 500;
}
.conversation-heading > p:last-child {
    max-width: 500px;
    margin-top: 48px;
    color: rgba(13, 9, 7, 0.62);
    font-size: 16px;
    line-height: 1.6;
}
.conversation-form {
    padding-top: 15px;
}
.chapter-form-notice {
    margin-bottom: 28px;
    padding: 14px 18px;
    border: 1px solid rgba(181, 107, 44, 0.35);
    font-size: 13px;
    line-height: 1.45;
}
.chapter-form-success {
    margin-bottom: 42px;
    color: var(--chapter-copper);
}
.chapter-form-error {
    display: block;
    margin-top: 8px;
    color: #9b3f2f;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.35;
    text-transform: none;
}
.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.conversation-form label {
    display: block;
    color: rgba(13, 9, 7, 0.65);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.conversation-form input[type="text"],
.conversation-form input[type="email"],
.conversation-form input[type="tel"],
.conversation-form textarea {
    width: 100%;
    margin-top: 28px;
    padding: 0 0 12px;
    border: 0;
    border-bottom: 1px solid rgba(181, 107, 44, 0.35);
    outline: 0;
    background: transparent;
    color: var(--chapter-ink);
    font: 16px var(--chapter-sans);
}
.form-comment {
    margin-top: 42px;
}
.conversation-form textarea {
    min-height: 170px;
    resize: vertical;
    line-height: 1.5;
}
.conversation-form textarea::placeholder {
    color: rgba(13, 9, 7, 0.43);
}
.form-consent {
    display: flex !important;
    align-items: flex-start;
    gap: 14px;
    margin-top: 31px;
    font-size: 12px !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    line-height: 1.4;
    text-transform: none !important;
}
.form-consent input {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    margin: 0;
    accent-color: var(--chapter-copper);
}
.chapter-button {
    margin-top: 38px;
    padding: 17px 26px;
    border: 0;
    background: var(--chapter-copper);
    color: var(--chapter-cream);
    cursor: pointer;
    font: 700 11px var(--chapter-sans);
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.chapter-footer {
    padding: 90px 0 25px;
    background: var(--chapter-ink);
    color: var(--chapter-cream);
}
.chapter-footer-top {
    display: grid;
    grid-template-columns: 280px 1fr auto;
    align-items: center;
    gap: 7vw;
    min-height: 250px;
}
.chapter-footer-top > img {
    width: 255px;
}
.chapter-footer-top > p {
    color: var(--chapter-gold);
    font: 500 clamp(42px, 4.2vw, 80px)/0.85 var(--chapter-serif);
    letter-spacing: -0.04em;
}
.chapter-footer-top nav {
    display: flex;
    gap: 28px;
    align-self: center;
}
.chapter-footer-top nav a {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.chapter-footer-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 55px;
    padding-top: 24px;
    border-top: 1px solid var(--chapter-line-dark);
    color: rgba(244, 238, 228, 0.52);
    font-size: 10px;
    text-transform: uppercase;
}
.chapter-footer-meta a {
    color: var(--chapter-copper);
    font-weight: 700;
    letter-spacing: 0.16em;
}

@media (max-width: 900px) {
    .chapter-shell {
        width: min(100% - 40px, 680px);
    }
    .chapter-hero {
        min-height: 820px;
        background-position: 58% center;
    }
    .chapter-header {
        min-height: 78px;
        padding: 0 20px;
        grid-template-columns: 1fr auto;
    }
    .chapter-logo img {
        width: 255px;
    }
    .chapter-nav {
        display: none;
    }
    .chapter-header-button {
        padding: 12px 14px;
        font-size: 8px;
        letter-spacing: 0.1em;
        text-align: center;
    }
    .chapter-header-button span {
        display: none;
    }
    .chapter-hero-content {
        min-height: 732px;
        padding-top: 130px;
        padding-bottom: 90px;
    }
    .chapter-hero-content .eyebrow,
    .chapter-hero-content h1,
    .chapter-hero-description,
    .chapter-text-link {
        margin-left: 0;
    }
    .chapter-hero-content h1 {
        margin-top: 22px;
        margin-bottom: 27px;
        font-size: clamp(78px, 20vw, 150px);
    }
    .chapter-hero-description {
        max-width: 560px;
        font-size: 14px;
    }
    .chapter-text-link {
        margin-top: 23px;
        font-size: 9px;
    }
    .chapter-marquee {
        min-height: 58px;
        padding: 0 20px;
        font-size: 8px;
    }
    .vision-section {
        padding: 70px 0 80px;
    }
    .vision-intro {
        display: block;
        padding-top: 55px;
    }
    .vision-intro h2 {
        font-size: clamp(55px, 14vw, 92px);
    }
    .vision-intro > p {
        margin-top: 35px;
        font-size: 13px;
    }
    .design-panel,
    .design-panel-reverse {
        display: flex;
        flex-direction: column;
        min-height: 0;
    }
    .design-panel-reverse .panel-image,
    .design-panel-reverse .panel-copy {
        order: 0;
    }
    .panel-image {
        min-height: 420px;
    }
    .panel-image > span {
        right: 20px;
        bottom: 15px;
        font-size: 50px;
    }
    .panel-copy {
        min-height: 440px;
        padding: 60px 20px 70px;
    }
    .panel-copy h2 {
        margin-top: 30px;
        font-size: clamp(52px, 13vw, 80px);
    }
    .panel-copy > p:last-child {
        margin-top: 30px;
        font-size: 13px;
    }
    .film-section {
        padding: 75px 0 85px;
    }
    .film-grid {
        display: block;
    }
    .film-copy h2 {
        margin-top: 30px;
        font-size: clamp(57px, 14vw, 90px);
    }
    .film-copy > p:last-child {
        margin-top: 30px;
        font-size: 13px;
    }
    .film-media {
        margin-top: 35px !important;
    }
    .journey-section {
        padding: 75px 0 85px;
    }
    .journey-section > .chapter-shell > h2 {
        margin-top: 55px;
        font-size: clamp(57px, 14vw, 92px);
    }
    .journey-points {
        grid-template-columns: 1fr 1fr;
        margin-top: 65px;
    }
    .journey-points article,
    .journey-points article:not(:first-child) {
        min-height: 220px;
        padding: 25px 18px 25px 0;
    }
    .journey-points article:nth-child(2n) {
        padding-left: 18px;
        border-right: 0;
    }
    .journey-points article:nth-child(-n + 2) {
        border-bottom: 1px solid var(--chapter-line-dark);
    }
    .journey-points h3 {
        margin-top: 45px;
        font-size: 24px;
    }
    .journey-points p {
        font-size: 12px;
    }
    .conversation-section {
        padding: 75px 0 85px;
    }
    .conversation-grid {
        display: block;
    }
    .conversation-heading h2 {
        margin-top: 30px;
        font-size: clamp(55px, 14vw, 92px);
    }
    .conversation-heading > p:last-child {
        margin-top: 32px;
        font-size: 13px;
    }
    .conversation-form {
        margin-top: 55px;
    }
    .form-row {
        display: block;
    }
    .form-row label + label {
        margin-top: 30px;
    }
    .form-comment {
        margin-top: 38px;
    }
    .conversation-form textarea {
        min-height: 150px;
    }
    .form-consent {
        font-size: 11px !important;
    }
    .chapter-footer {
        padding: 55px 0 22px;
    }
    .chapter-footer-top {
        display: block;
        min-height: 0;
    }
    .chapter-footer-top > img {
        width: 210px;
    }
    .chapter-footer-top > p {
        margin-top: 48px;
        font-size: clamp(52px, 14vw, 88px);
    }
    .chapter-footer-top nav {
        flex-wrap: wrap;
        gap: 16px 22px;
        margin-top: 48px;
    }
    .chapter-footer-top nav a {
        font-size: 9px;
    }
    .chapter-footer-meta {
        display: block;
        margin-top: 45px;
        font-size: 9px;
        line-height: 2;
    }
    .chapter-footer-meta a {
        display: block;
        margin-top: 8px;
    }
}

@media (min-width: 901px) {
    .chapter-hero-description {
        margin-left: 13% !important;
    }
}

@media (min-width: 901px) and (max-width: 1600px) {
    .chapter-header {
        min-height: 88px;
        padding-inline: 3.7vw;
    }
    .chapter-logo img {
        width: 255px;
    }
    .chapter-nav {
        gap: clamp(32px, 4.8vw, 72px);
    }
    .chapter-nav a,
    .chapter-header-button {
        font-size: 10px;
    }
    .chapter-header-button {
        padding: 17px 25px;
    }
}

@media (max-width: 420px) {
    .chapter-hero {
        min-height: 760px;
    }
    .chapter-header-button {
        max-width: 110px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .chapter-hero-content {
        min-height: 672px;
        padding-top: 100px;
    }
    .chapter-hero-content h1 {
        font-size: 22vw;
    }
    .chapter-marquee {
        display: block;
        padding-top: 17px;
        text-align: center;
    }
    .chapter-marquee span {
        display: block;
    }
    .chapter-marquee span + span {
        margin-top: 4px;
    }
    .journey-points {
        grid-template-columns: 1fr;
    }
    .journey-points article,
    .journey-points article:not(:first-child),
    .journey-points article:nth-child(2n) {
        min-height: 0;
        padding: 25px 0;
        border-right: 0;
        border-bottom: 1px solid var(--chapter-line-dark);
    }
    .journey-points article:last-child {
        border-bottom: 0;
    }
    .film-media {
        padding: 8px 8px 0;
    }
}
