@font-face {
    font-family: 'The Blendinroom';
    src: url('../font/THE%20BLENDINROOM.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-light: #FDCA9A;
    --color-bg: #5F2029;
    --custom-bg: #591829;
    --secondary-bg: #FFF3D8;
    --custom-peach: #FF7161;
    --custom-grey: #394459;
    --custom-yellow: #F9C89B;
    --bespoke-bg: #FED0BD;
    --core-bg: #621C26;
    --custom-green: #214546;
    --custom-dark: #3C4659;
    --custom-pink: #F6CDC5;
    --octopus-bg: #670b1c;
}

*,
*::after,
*::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background-color: var(--color-bg);
}

body,
button,
input,
textarea,
select,
a {
    font-family: 'Lora', serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'The Blendinroom', serif;
}

a,
button {
    color: inherit;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
}

.hero-banner {
    display: flex;
    height: 100vh;
    height: 100dvh;
    min-height: 600px;
    overflow: hidden;
    background-color: var(--color-bg);
    isolation: isolate;
}

.banner-left {
    flex: 1;
    height: 100%;
    position: relative;
    min-width: 0;
    overflow: hidden;
    background-color: var(--color-light);
}

.hero-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.logo {
    position: absolute;
    top: 5px;
    left: 10px;
    width: 100px;
    z-index: 1;
}

.logo img {
    width: 100%;
}

.banner-right {
    flex: 1;
    height: 100%;
    background-color: var(--color-bg);
    color: var(--color-light);
    padding: 30px 60px 40px 100px;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    position: relative;
}

.top-nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1800;
}

.responsive-nav-icon {
    display: none;
    width: 50px;
    height: 42px;
    object-fit: contain;
}

.responsive-nav-toggle,
.mobile-nav {
    display: none;
}

.responsive-nav-brand,
.responsive-nav-divider {
    display: none;
}

.nav-links {
    display: flex;
    flex-wrap: nowrap;
    list-style: none;
    gap: 30px;
    margin-bottom: 0;
    padding-left: 0;
}

.nav-links>li {
    flex: 0 0 auto;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-light);
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 400;
    white-space: nowrap;
}

.home-services-item {
    position: relative;
}

.home-services-trigger {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 7px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--color-light);
    font-size: 14px;
    letter-spacing: 1px;
    white-space: nowrap;
    cursor: pointer;
}

.home-services-trigger i {
    font-size: 10px;
}

.home-services-menu {
    display: none;
    position: absolute;
    top: 37px;
    right: -540px;
    z-index: 1800;
    width: min(900px, calc(100vw - 80px));
    padding: 35px;
    border-radius: 24px;
    background: var(--custom-pink);
    box-shadow: 0 18px 45px rgba(60, 20, 25, 0.25);
}

.home-services-menu.is-open {
    display: block;
}

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.home-services-column h3 {
    margin: 0 0 12px;
    color: var(--custom-bg);
    font-size: 25px;
    font-weight: 400;
}

.home-services-column h3.home-services-subheading {
    margin-top: 24px;
}

.home-services-column a {
    display: block;
    margin-bottom: 8px;
    color: var(--custom-bg);
    font-size: 14px;
    letter-spacing: 0;
}

.nav-icons {
    display: flex;
    gap: 25px;
}

.home-profile-item {
    position: relative;
}

.home-profile-menu {
    display: none;
    position: absolute;
    top: 48px;
    right: -25px;
    width: 280px;
    padding: 20px;
    border-radius: 20px;
    background: var(--custom-pink);
    color: var(--custom-bg);
    box-shadow: 0 15px 35px rgba(60, 20, 25, 0.2);
}

.home-profile-menu.is-open {
    display: block;
}

.home-profile-option {
    padding: 10px 0;
    border-bottom: 1px solid rgba(89, 24, 41, 0.15);
}

.home-profile-option:last-child {
    border-bottom: 0;
}

.home-profile-option a {
    display: block;
    margin-bottom: 4px;
    color: var(--custom-bg);
    font-size: 14px;
    text-decoration: none;
}

.home-profile-option span {
    display: block;
    font-size: 12px;
}

body.home-menu-open {
    overflow: hidden;
}

body.home-menu-open .hero-banner::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 1700;
    background: rgba(0, 0, 0, 0.38);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 29px;
    height: 29px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.8;
}

.icon-btn img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.hero-text h1 {
    font-size: 78px;
    font-weight: 400;
    text-transform: uppercase;
}

.subheading {
    font-size: 20px;
    letter-spacing: 4px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 0;
}

.floating-button {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 1200;
    display: block;
    width: 94px;
    height: 94px;
    transition: transform 0.3s ease;
}

.floating-button:hover {
    transform: translateY(-5px);
}

.floating-button img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.services-tab-bar {
    width: 100%;
    background-color: var(--custom-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
}

.tab-item {
    text-decoration: none;
    color: var(--color-light);
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

.tab-item:hover {
    opacity: 0.7;
}

.hero-banner {
    position: relative;
    padding-bottom: 50px;
}

.personal-narrative {
    background-color: var(--secondary-bg);
    padding: 100px 5% 0 5%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    height: 100vh;
    min-height: 100vh;
}

.narrative-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.narrative-visual {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
}

.vertical-tagline {
    position: absolute;
    top: 30%;
    left: 12%;
    z-index: 2;
    transform: translateY(-50%);
    color: var(--custom-peach);
    font-size: 20px;
    letter-spacing: 4px;
    line-height: 1.4;
    font-weight: 300;
    margin: 0;
    width: 90px;
}

.tree-container {
    flex-grow: 1;
    height: 100%;
    min-width: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.tree-img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    display: block;
    object-fit: contain;
}

.narrative-content {
    flex: 1.2;
    margin-bottom: 100px;
}

.narrative-title {
    font-size: 60px;
    color: var(--custom-grey);
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 30px;
    overflow-wrap: anywhere;
}

.narrative-title-rose {
    font-size: 16px;
    color: #FF7161;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-family: 'Lora', serif;
}

.narrative-description {
    font-size: 16px;
    color: var(--custom-bg);
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 50px;
}

.narrative-cards {
    display: flex;
    gap: 20px;
}

.info-card {
    background-color: var(--custom-yellow);
    flex: 1;
    min-width: 240px;
    padding: 40px 30px;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 215px;
    text-align: left;
}

.card-text {
    font-size: 16px;
    font-weight: 400;
    color: var(--custom-bg);
    letter-spacing: 1px;
    line-height: 1.8;
    text-transform: uppercase;
}

.card-btn {
    display: inline-block;
    background-color: var(--custom-bg);
    color: var(--custom-yellow);
    text-decoration: none;
    border-radius: 40px;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
    padding: 12px 20px;
}

.card-btn:hover {
    opacity: 0.9;
}

.bespoke-package {
    height: 100vh;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    background-color: var(--bespoke-bg);
}

.bespoke-container {
    max-width: 1400px;
    width: 100%;
    flex: 1 1 auto;
    min-height: 0;
    margin: 0 auto;
    padding: clamp(40px, 6vh, 80px) 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.bespoke-bottom-pattern {
    display: block;
    width: 100%;
    height: clamp(70px, 5.5vw, 110px);
    flex: 0 0 auto;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.bespoke-col {
    display: flex;
    flex-direction: column;
}

.bespoke-col.left {
    position: absolute;
    top: 45%;
    width: 26%;
    transform: translateY(-50%);
    z-index: 2;
}

.bespoke-col.right {
    position: absolute;
    top: 74%;
    width: 26%;
    transform: translateY(-50%);
    z-index: 2;
}

.bespoke-col.left {
    left: 15%;
}

.bespoke-col.right {
    right: 5%;
}

.bespoke-col.center {
    position: relative;
    width: min(52%, 720px);
    z-index: 1;
}

.main-title {
    font-size: 78px;
    color: var(--custom-bg);
    line-height: 0.9;
    font-weight: 400;
    margin-bottom: 0px;
    line-height: 100px;
}

.tagline {
    font-size: 18px;
    color: var(--custom-bg);
    letter-spacing: 3px;
    line-height: 1.6;
    font-weight: 400;
    text-transform: uppercase;
}

.video-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--bespoke-bg);
    isolation: isolate;
}

.animation-video {
    display: block;
    width: min(120%, 700px);
    height: auto;
    object-fit: contain;
    -webkit-mask-image: radial-gradient(ellipse at center, #000 72%, transparent 100%);
    mask-image: radial-gradient(ellipse at center, #000 72%, transparent 100%);
}

.description {
    font-size: 14px;
    color: var(--custom-bg);
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 300;
}

.btn-explore {
    display: inline-block;
    background-color: var(--custom-bg);
    color: var(--custom-yellow);
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    align-self: flex-start;
    transition: transform 0.3s ease;
}

.btn-explore:hover {
    transform: translateY(-3px);
    color: var(--custom-yellow);
}

.core-publishing {
    height: 100vh;
    min-height: 100vh;
    background-color: var(--octopus-bg);
    color: var(--color-light);
    padding: clamp(70px, 8vw, 120px) 5%;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.core-container {
    width: 100%;
    display: flex;
    align-items: center;
}

.core-visual {
    flex: 1.2;
    display: flex;
    justify-content: center;
    min-width: 0;
}

.octopus-frame {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--octopus-bg);
    isolation: isolate;
}

.octopus-media {
    display: block;
    width: min(120%, 800px);
    height: auto;
    object-fit: contain;
    -webkit-mask-image: radial-gradient(ellipse at center, #000 40%, transparent 100%);
    mask-image: radial-gradient(ellipse at center, #000 40%, transparent 100%);
}

.core-content {
    flex: 1;
    min-width: 0;
    text-align: center;
    z-index: 1;
    margin-left: -80px;
}

.core-title {
    font-size: 78px;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 5px;
    line-height: 1;
}

.core-subtitle {
    font-size: 24px;
    letter-spacing: 4px;
    font-weight: 300;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.tags-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.service-tag {
    border: 0;
    background-color: var(--custom-bg);
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 30px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    font-family: 'Lora', serif;
    cursor: pointer;
}

.service-tag:hover {
    background-color: var(--color-light);
    color: var(--custom-bg);
    transform: translateY(-3px);
}

.extended-services {
    background-color: var(--secondary-bg);
    padding: clamp(70px, 8vw, 120px) 20px;
    position: relative;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.illustration-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../Gif/fish_flower.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
}

.extended-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.extended-header {
    margin-bottom: 60px;
}

.extended-header .title {
    font-size: 78px;
    color: var(--custom-bg);
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 0;
}

.extended-header .subtitle {
    font-size: 22px;
    color: var(--custom-bg);
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 300;
}

.services-pill-grid {
    --side-pill-width: 150px;
    --center-pill-width: 200px;
    display: grid;
    grid-template-columns: var(--side-pill-width) var(--center-pill-width) var(--side-pill-width);
    grid-auto-rows: 1fr;
    justify-content: center;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
    align-items: stretch;
}

.pill {
    border: 0;
    background-color: var(--custom-grey);
    color: var(--secondary-bg);
    width: 100%;
    min-height: 75px;
    box-sizing: border-box;
    padding: 12px 20px;
    border-radius: 60px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: 'Lora', serif;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.pill span {
    font-size: 16px;
    text-transform: none;
    opacity: 0.8;
}

.pill:hover {
    transform: scale(1.05);
    background-color: var(--custom-bg);
    color: var(--color-light);
}

.featured-author-section {
    position: relative;
    padding: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--custom-yellow);
}

.featured-container {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

.featured-left-image {
    flex: 1 1 50%;
    max-width: 550px;
    align-self: stretch;
    display: flex;
    align-items: flex-end;
    padding: 90px 0 0 4%;
    box-sizing: border-box;
}

.featured-left-image img {
    display: block;
    width: 100%;
    max-height: 100%;
    height: auto;
    object-fit: contain;
    object-position: center bottom;
}

.featured-content {
    width: 50%;
    padding: 10% 10% 10% 0%;
    box-sizing: border-box;
}

.header-group {
    display: flex;
    margin-bottom: 20px;
    gap: 15px;
}

.featured-title {
    font-size: 78px;
    color: var(--custom-bg);
    line-height: 95px;
    font-weight: 400;
    margin-bottom: 0px;
}

.author-portrait {
    flex: 0 0 auto;
    width: 180px;
    margin-top: -35px;
}

.author-portrait img {
    display: block;
    width: 100%;
    height: auto;
}

.author-name {
    font-size: 20px;
    color: var(--custom-green);
    letter-spacing: 1px;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-family: 'Lora', serif;
}

.author-description {
    font-size: 16px;
    color: var(--custom-bg);
    line-height: 32px;
    max-width: 620px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.btn-more {
    display: inline-block;
    border: 1px solid var(--custom-bg);
    color: var(--custom-bg);
    text-decoration: none;
    padding: 17px 30px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.btn-more:hover {
    background-color: var(--custom-bg);
    color: var(--custom-yellow);
    transform: translateY(-2px);
}

.book-club-section {
    min-height: 100vh;
    background-color: var(--custom-dark);
    padding: 5% 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.book-club-container {
    max-width: 1400px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: clamp(50px, 7vw, 110px);
}

.visual-wrap {
    flex: 1 1 55%;
    display: flex;
    justify-content: center;
}

.illustration {
    width: min(100%, 680px);
    height: auto;
    display: block;
}

.content-wrap {
    flex: 1 1 45%;
}

.club-title {
    font-size: 78px;
    color: var(--custom-yellow);
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 80px;
    margin-bottom: 0;
}

.club-tagline {
    font-size: 24px;
    color: var(--custom-yellow);
    letter-spacing: 3px;
    font-weight: 400;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 30px;
}

.club-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--custom-yellow);
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 450px;
}

.btn-join {
    display: inline-block;
    background-color: var(--custom-bg);
    color: var(--custom-yellow);
    text-decoration: none;
    padding: 17px 30px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.btn-join:hover {
    background-color: var(--custom-bg);
    transform: translateY(-2px);
}

.testimonials-section {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.testimonials-left {
    flex: 1.2;
    position: relative;
    background-image: url('../image/Testimonials_side_bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pill-heading {
    background-color: var(--custom-bg);
    padding: 25px 60px 18px;
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pill-heading h2 {
    color: var(--custom-yellow);
    font-size: 78px;
    font-weight: 400;
    height: 75px;
    margin: 0;
    letter-spacing: 2px;
}

.testimonials-right {
    flex: 1;
    background-color: var(--custom-bg);
    color: var(--custom-yellow);
    padding: 80px 10%;
    position: relative;
    display: flex;
    align-items: center;
}

.testimonial-container {
    width: 100%;
    max-width: 600px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.author-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--custom-yellow);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
}

.author-meta h3 {
    font-size: 24px;
    letter-spacing: 5px;
    margin-bottom: 5px;
    color: var(--custom-yellow);
}

.author-title {
    font-size: 16px;
    letter-spacing: 1.5px;
    font-weight: 300;
    text-transform: uppercase;
    color: var(--custom-yellow);
}

.testimonial-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 400;
    color: var(--custom-yellow);
    letter-spacing: 1px;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.nav-arrow:hover {
    opacity: 1;
}

.nav-arrow.prev {
    left: 10px;
}

.nav-arrow.next {
    right: 10px;
}

.insights-newsletter {
    background-color: var(--secondary-bg);
    padding: 8% 12%;
    display: flex;
    justify-content: center;
}

.insights-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.insights-box,
.newsletter-box {
    flex: 1;
}

.narrative-title-rose {
    display: none;
}

.section-title {
    font-size: 78px;
    color: var(--custom-bg);
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 1;
}

.newsletter-section-title {
    font-size: 24px;
    color: var(--custom-bg);
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 5px;
}

.section-desc {
    font-size: 16px;
    color: var(--custom-bg);
    margin-bottom: 40px;
    line-height: 1.6;
}

.newsletter-header {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: calc(90px - clamp(100px, 11vw, 160px));
}

.envelope-img {
    width: clamp(100px, 11vw, 160px);
    transform: translate(-35px, -100px);
}

.underlined-input {
    width: 100%;
    max-width: 350px;
    border: none;
    border-bottom: 1px solid var(--custom-bg);
    background: transparent;
    padding: 10px 0;
    color: var(--custom-bg);
    margin-bottom: 40px;
    outline: none;
    font-weight: 500;
}

.underlined-input::placeholder {
    color: rgba(77, 11, 33, 0.6);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-pill {
    display: inline-block;
    border: none;
    background-color: var(--custom-bg);
    color: var(--custom-yellow);
    text-decoration: none;
    padding: 17px 30px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.btn-pill:hover {
    opacity: 0.9;
}

.partners-section {
    background-color: var(--custom-pink);
    padding: 60px 5%;
    text-align: center;
}

.partners-title {
    font-size: 24px;
    color: var(--custom-bg);
    letter-spacing: 3px;
    margin-bottom: 40px;
    font-weight: 400;
}

.partners-logos {
    max-width: 1200px;
    margin: 0 auto;
}

.partners-track {
    width: 100%;
}

.partners-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    gap: 30px;
}

.partners-group[aria-hidden="true"] {
    display: none;
}

.partners-group img {
    flex: 0 0 auto;
    max-width: 200px;
    height: 100px;
    width: auto;
    object-fit: contain;
}

@keyframes partners-scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


@media only screen and (max-width: 1500px) {
    .banner-right {
        padding: 40px 50px 40px 50px;
    }
}

@media only screen and (max-width: 1400px) {

    .hero-banner {
        overflow: visible;
        isolation: auto;
    }

    .top-nav {
        justify-content: flex-end;
    }

    .top-nav .nav-links,
    .top-nav .nav-icons {
        display: none;
    }

    .responsive-nav-toggle {
        position: fixed;
        top: 24px;
        right: 30px;
        left: auto;
        z-index: 1900;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 54px;
        height: 42px;
        padding: 0;
        border: 0;
        border-radius: 999px;
        background: var(--bespoke-bg);
        transform: none;
    }

    .responsive-nav-toggle[aria-expanded="true"] {
        visibility: hidden;
        pointer-events: none;
    }

    .responsive-nav-icon {
        display: block;
        width: 24px;
        height: auto;
    }

    .mobile-nav {
        position: fixed;
        inset: 0;
        z-index: 2000;
        isolation: isolate;
        display: flex;
        align-items: flex-end;
        flex-direction: column;
        padding: 24px clamp(18px, 5vw, 48px);
        background: transparent;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .25s ease, visibility .25s ease;
    }

    .mobile-nav::before {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 0;
        background: rgba(0, 0, 0, .38);
        -webkit-backdrop-filter: blur(6px);
        backdrop-filter: blur(6px);
    }

    .mobile-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .mobile-nav-toolbar,
    .mobile-nav-panel {
        position: relative;
        z-index: 1;
        width: min(100%, 390px);
        color: var(--color-bg);
        background: var(--bespoke-bg);
    }

    .mobile-nav-toolbar {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 19px;
        min-height: 52px;
        margin-bottom: 8px;
        padding: 5px 18px;
        border-radius: 999px;
        width: 160px;
    }

    .mobile-nav-brand {
        margin-right: auto;
    }

    .mobile-nav-brand img {
        display: block;
        width: 54px;
    }

    .mobile-nav-divider {
        width: 1px;
        height: 32px;
        background: rgba(95, 32, 41, .3);
    }

    .mobile-nav-action img {
        display: block;
        width: 21px;
        height: 21px;
    }

    button.mobile-nav-action {
        padding: 0;
        border: 0;
        color: inherit;
        background: transparent;
    }

    .mobile-nav-close {
        position: relative;
        width: 24px;
        height: 24px;
        padding: 0;
        border: 0;
        background: transparent;
    }

    .mobile-nav-close::before,
    .mobile-nav-close::after {
        content: '';
        position: absolute;
        top: 11px;
        left: 1px;
        width: 22px;
        height: 1px;
        background: var(--color-bg);
        transform: rotate(45deg);
    }

    .mobile-nav-close::after {
        transform: rotate(-45deg);
    }

    .mobile-nav-panel {
        max-height: calc(100dvh - 108px);
        overflow-y: auto;
        padding: 58px 32px 48px;
        border-radius: 28px;
    }

    .mobile-profile-panel {
        display: none;
        text-align: left;
    }

    .mobile-nav.profile-open .mobile-profile-panel {
        display: block;
    }

    .mobile-nav.profile-open .mobile-services-toggle,
    .mobile-nav.profile-open .mobile-services-list,
    .mobile-nav.profile-open .mobile-primary-links {
        display: none;
    }

    .mobile-profile-option {
        padding: 0 0 28px;
        border-bottom: 1px solid rgba(95, 32, 41, .55);
    }

    .mobile-profile-option+.mobile-profile-option {
        padding: 28px 0 0;
        border-bottom: 0;
    }

    .mobile-profile-option a,
    .mobile-profile-option span {
        display: block;
        color: inherit;
    }

    .mobile-profile-option a {
        margin-bottom: 14px;
        font-family: 'Lora', serif;
        font-size: 20px;
        letter-spacing: 1px;
        text-decoration: none;
    }

    .mobile-profile-option span {
        font-family: 'Lora', serif;
        font-size: 16px;
        line-height: 1.4;
    }

    .mobile-services-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0 0 14px;
        border: 0;
        border-bottom: 1px solid rgba(95, 32, 41, .45);
        color: inherit;
        background: transparent;
        font-family: 'The Blendinroom', serif;
        font-size: 20px;
        text-align: left;
    }

    .mobile-services-toggle[aria-expanded="true"] {
        border-bottom-color: transparent;
    }

    .mobile-services-chevron {
        width: 9px;
        height: 9px;
        border-right: 1px solid currentColor;
        border-bottom: 1px solid currentColor;
        transform: rotate(45deg);
        transition: transform .2s ease;
    }

    .mobile-services-toggle[aria-expanded="true"] .mobile-services-chevron {
        transform: rotate(225deg);
    }

    .mobile-services-list {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: max-height .4s ease, opacity .25s ease, visibility 0s linear .4s;
    }

    .mobile-services-inner {
        padding-top: 10px;
    }

    .mobile-services-list.is-open {
        opacity: 1;
        visibility: visible;
        transition: max-height .4s ease, opacity .25s ease, visibility 0s;
    }

    .mobile-service-group+.mobile-service-group {
        margin-top: 34px;
    }

    .mobile-service-group h3 {
        margin: 0 0 20px;
        font-family: 'Lora', serif;
        font-size: 16px;
        font-weight: 500;
    }

    .mobile-service-group a {
        display: block;
        margin: 0 0 7px;
        font-size: 14px;
        line-height: 18px;
    }

    .mobile-primary-links {
        padding-top: 18px;
    }

    .mobile-primary-links a {
        display: block;
        margin: 0 0 22px;
        font-family: 'The Blendinroom', serif;
        font-size: 20px;
    }

    .mobile-primary-links a:last-child {

        margin: 0;
    }

    .mobile-services-list.is-open+.mobile-primary-links {
        display: none;
    }

    body.mobile-nav-open {
        overflow: hidden;
    }
}

@media only screen and (max-width: 1300px) {
    .tree-img {
        content: url('../image/personal_narrative_img.png');
    }

    .narrative-container {
        flex-direction: row-reverse;
    }

    .narrative-cards {
        flex-wrap: wrap;
    }

    .tree-container {

        justify-content: end;
    }

    .personal-narrative {
        padding: 100px 0 0 5%;
        height: auto;
    }

    .narrative-title-rose {
        display: block;
    }
}

@media only screen and (max-width: 1200px) {

    .narrative-container {
        gap: 30px;
    }

    .narrative-visual {
        flex: 0.8;
    }

    .narrative-content {
        flex: 1.2;
    }

    .narrative-title {
        margin-bottom: 20px;
    }

    .narrative-description {
        margin-bottom: 30px;
    }

    .info-card {
        flex: 1 1 calc(50% - 10px);
        padding: 30px 24px;
    }

    .hero-text h1 {
        font-size: 70px;
    }

    .subheading {
        font-size: 16px;
    }

    .services-tab-bar {
        justify-content: flex-start;
        gap: 50px;
        padding: 15px 7%;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        overscroll-behavior-x: contain;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .services-tab-bar::-webkit-scrollbar {
        display: none;
    }

    .services-tab-bar .tab-item {
        flex: 0 0 auto;
    }

    .narrative-title {
        font-size: 60px;
    }

    .extended-services {
        padding: clamp(70px, 10vw, 120px) 6px;
    }

}

@media only screen and (max-width: 992px) {
    .personal-narrative {
        height: auto;
        min-height: 0;
        padding: clamp(70px, 14vw, 120px) 7%;
        overflow: hidden;
    }

    .narrative-container {
        position: relative;
        display: block;
        height: auto;
    }

    .narrative-visual {
        position: absolute;
        top: 0;
        right: -7vw;
        z-index: 0;
        width: min(58vw, 430px);
        height: clamp(390px, 70vw, 590px);
        pointer-events: none;
    }

    .tree-container {
        width: 100%;
        height: 100%;
        justify-content: flex-end;
    }

    .tree-img {
        width: auto;
        max-width: none;
        height: 100%;
        object-fit: contain;
        object-position: right top;
    }

    .narrative-content {
        position: relative;
        z-index: 1;
        width: 100%;
        margin-bottom: 0;
        padding-top: clamp(70px, 13vw, 115px);
    }

    .narrative-title-rose {
        width: max-content;
        margin-bottom: 24px;
    }

    .narrative-title {
        max-width: 55%;
        margin-bottom: 22px;
        font-size: clamp(44px, 8vw, 64px);
        line-height: 1.08;
    }

    .narrative-description {
        max-width: 46%;
        margin-bottom: clamp(60px, 15vw, 125px);
        font-size: clamp(14px, 2vw, 17px);
        line-height: 1.45;
    }

    .narrative-description br {
        display: none;
    }

    .narrative-cards {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: clamp(14px, 3vw, 24px);
    }

    .info-card {
        min-width: 0;
        min-height: 170px;
        padding: 26px 22px 22px;
        border-radius: 30px;
    }

    .info-card:nth-child(3) {
        grid-column: 1 / -1;
        min-height: 110px;
    }

    .card-text {
        line-height: 1.45;
    }

    .card-btn {
        padding: 10px 14px;
    }

    .hero-banner {
        flex-direction: column;
        height: auto;
        min-height: 0;
        overflow: visible;
    }

    .banner-left {
        flex: none;
        width: 100%;
        height: 100svh;
        min-height: 520px;
    }

    .banner-left>.logo {
        display: none;
    }

    .responsive-nav-toggle {
        position: fixed;
        top: 16px;
        right: auto;
        left: 50%;
        z-index: 1900;
        justify-content: center;
        gap: 15px;
        width: min(200px, calc(100vw - 32px));
        height: 62px;
        padding: 6px clamp(16px, 5vw, 28px);
        transform: translateX(-50%);
        border-radius: 999px;
    }

    .responsive-nav-brand {
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .responsive-nav-brand img {
        display: block;
        width: 50px;
        height: auto;
    }

    .responsive-nav-divider {
        display: block;
        flex: 0 0 auto;
        width: 1px;
        height: 30px;
        margin: 0;
        background: rgba(95, 32, 41, .55);
    }

    .responsive-nav-icon {
        flex: 0 0 auto;
        width: clamp(28px, 8vw, 32px);
    }

    .banner-right {
        flex: none;
        width: 100%;
        height: auto;
        padding: 10% 7%;
    }

    .hero-video {
        width: 100%;
        height: 100%;
    }

    .featured-content {
        width: auto;
        padding: 20% 45px 10% 45px;
    }

    .featured-title {
        font-size: 60px;
        line-height: 70px;
    }

    .author-portrait {
        width: 150px;
    }

    .author-name {
        font-size: 18px;
    }

    .featured-left-image {
        margin: 0 auto;
        padding: 0px 0 0 4%;
    }

    .featured-container {
        gap: 0px;
    }
}

@media only screen and (max-width: 575px) {
    .personal-narrative {
        padding: 55px 0 55px 30px;
    }

    .services-tab-bar {
        padding: 15px 7% 15px 30px;
    }

    .narrative-container {
        display: block;
    }

    .narrative-visual {
        top: 20px;
        right: calc(clamp(28px, 9vw, 42px) * -1);
        width: 62vw;
        height: clamp(360px, 105vw, 490px);
    }

    .vertical-tagline {
        top: 28%;
        font-size: 15px;
        letter-spacing: 2px;
    }

    .tree-img {
        width: auto;
        max-width: none;
        height: 100%;
        margin-left: 0;
    }

    .narrative-title {
        max-width: 58%;
        font-size: clamp(38px, 11vw, 50px);
        letter-spacing: 1px;
        margin-bottom: 18px;
    }

    .narrative-description {
        max-width: 52%;
        font-size: 15px;
        margin-bottom: clamp(65px, 18vw, 90px);
    }

    .narrative-cards {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 14px;
        padding-right: 30px;
    }

    .info-card {
        min-height: 125px;
        padding: 24px 20px 20px;
        border-radius: 28px;
    }

    .info-card:nth-child(3) {
        grid-column: 1 / -1;
        min-height: 108px;
    }

    .card-text,
    .card-btn {
        font-size: 14px;
    }

    .card-btn {
        padding: 10px 12px;
    }

    .author-description {
        font-size: 14px;
    }

    .btn-more {
        font-size: 12px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 992px) {
    .hero-text h1 {
        font-size: 50px;
        white-space: nowrap;
    }

    .hero-text h1 br {
        display: none;
    }
}

@media only screen and (max-width: 576px) {
    .banner-right {
        padding: 15% 10% 15% 30px;
    }

    .hero-text h1 {
        font-size: 50px;
    }

    .subheading {
        font-size: 14px;
    }

    .bespoke-package .bespoke-container {
        padding: 15% 10% 15% 30px;
    }
}

@media only screen and (max-width: 375px) {

    .hero-text h1 {
        font-size: 40px;
    }

    .subheading {
        font-size: 14px;
    }
}

/* Match the responsive Bespoke hero used on package.html. */
@media only screen and (max-width: 1200px) {
    .bespoke-package {
        height: auto;
    }

    .bespoke-package .bespoke-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .bespoke-package .bespoke-col.left {
        position: relative;
        top: 0;
        left: 0;
        z-index: 2;
        width: 100%;
        margin-top: 15%;
        transform: none;
    }

    .bespoke-package .bespoke-col.center {
        top: -125px;
        width: min(80%, 720px);
        margin: 0 auto;
    }

    .bespoke-package .bespoke-col.right {
        position: relative;
        top: 0;
        right: 0;
        width: 50%;
        margin-top: -180px;
        transform: none;
    }
}

@media only screen and (max-width: 992px) {
    .bespoke-package .main-title {
        font-size: 62px;
        line-height: 75px;
    }

    .featured-container {
        flex-direction: column-reverse;
    }

    .book-club-container {
        flex-direction: column;
    }

    .club-title {
        font-size: 60px;
    }

    .club-tagline {
        font-size: 22px;
    }

    .testimonials-section {
        flex-direction: column;
    }

    .testimonials-left {
        flex: none;
        height: 600px;
    }

    .pill-heading h2 {
        font-size: 60px;
        height: 65px;
    }

    .author-meta h3 {
        font-size: 22px;
    }

    .insights-container {
        flex-direction: column;
        gap: 120px;
    }

    .envelope-img {
        transform: translate(-10px, -30px);
    }

    .section-title {
        font-size: 60px;
    }

    .newsletter-section-title {
        font-size: 22px;
        color: var(--custom-bg);
    }
}


@media only screen and (max-width: 768px) {
    .partners-logos {
        width: 100%;
        max-width: none;
        overflow: hidden;
    }

    .partners-track {
        display: flex;
        align-items: center;
        width: max-content;
        animation: partners-scroll-left 22s linear infinite;
        will-change: transform;
    }

    .partners-group,
    .partners-group[aria-hidden="true"] {
        display: flex;
        flex: 0 0 auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: clamp(45px, 7vw, 110px);
        padding-right: clamp(45px, 7vw, 110px);
    }

    .bespoke-package .bespoke-col.left {
        margin-top: 15%;
    }

    .bespoke-package .bespoke-col.center {
        margin: 0 0 0 auto;
    }

    .bespoke-package .main-title {
        font-size: 50px;
        line-height: 60px;
    }

    .bespoke-package .tagline {
        font-size: 16px;
    }

    .featured-title {
        font-size: 50px;
        line-height: 60px;
    }

    .author-portrait {
        width: 130px;
    }

    .club-title {
        font-size: 50px;
    }

    .club-tagline {
        font-size: 20px;
    }

    .book-club-section {
        padding: 25% 5%;
    }

    .pill-heading h2 {
        font-size: 50px;
        height: 55px;
    }

    .author-meta h3 {
        font-size: 20px;
    }

    .section-title {
        font-size: 50px;
    }
}

@media only screen and (max-width: 500px) {
    .bespoke-package .bespoke-col.center {
        top: -75px;
        width: min(80%, 720px);
    }

    .bespoke-package .bespoke-col.right {
        width: 70%;
        margin-top: -100px;
    }

    .bespoke-package .description {
        font-size: 14px;
    }

    .featured-title {
        font-size: 40px;
        line-height: 50px;
    }

    .author-portrait {
        width: 110px;
    }

    .author-name {
        font-size: 16px;
    }

    .club-title {
        font-size: 40px;
    }

    .club-tagline {
        font-size: 14px;
    }

    .club-description {
        font-size: 14px;
    }

    .content-wrap {
        padding: 0 30px 0 0px;
    }

    .pill-heading h2 {
        font-size: 40px;
        height: 40px;
    }

    .author-meta h3 {
        font-size: 14px;
    }

    .author-title {
        font-size: 12px;
    }

    .testimonial-text p {
        font-size: 12px;
    }

    .author-image {
        width: 90px;
        height: 92px;
    }

    .section-title {
        font-size: 40px;
    }

    .section-desc {
        font-size: 14px;
    }

    .insights-newsletter {
        padding: 30% 12% 30% 30px;
    }

    .newsletter-section-title {
        font-size: 20px;
        letter-spacing: 3px;
    }

    .pill-heading {
        padding: 25px 30px 18px;
    }

    .banner-left {
        height: 60svh;
    }

    .partners-section {
        padding: 60px 5% 60px 30px;
    }
}


@media only screen and (max-width: 1200px) {
    .core-publishing .core-title {
        font-size: 62px;
    }

    .core-publishing .core-subtitle {
        font-size: 20px;
    }
}

@media only screen and (max-width: 992px) {
    .core-publishing {
        height: auto;
        min-height: 100svh;
        padding: 90px 24px 80px;
        overflow: hidden;
    }

    .core-publishing .core-container {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        justify-items: center;
        width: 100%;
        max-width: 620px;
        margin: 0 auto;
    }

    .core-publishing .core-content {
        display: contents;
    }

    .core-publishing .core-title {
        grid-row: 1;
        margin: 0;
        text-align: left;
        justify-self: start;
        width: 100%;
        line-height: 1;
    }

    .core-publishing .core-subtitle {
        grid-row: 2;
        margin: 14px 0 8px;
        text-align: left;
        justify-self: start;
        width: 100%;
        font-size: clamp(16px, 3vw, 20px);
        line-height: 1.25;
    }

    .core-publishing .core-visual {
        grid-row: 3;
        width: min(100%, 520px);
        min-width: 0;
        margin-top: -18px;
    }

    .core-publishing .octopus-frame,
    .core-publishing .octopus-media {
        width: 100%;
        margin-top: 15px;
    }

    .core-publishing .octopus-media {
        max-height: 520px;
    }

    .core-publishing .tags-flex {
        width: 100%;
        justify-content: center;
    }
}

@media only screen and (max-width: 500px) {
    .core-publishing {
        padding: 72px 30px 0px 30px;
    }

    .core-publishing .core-title {
        font-size: clamp(38px, 12vw, 52px);
    }

    .core-publishing .core-subtitle {
        font-size: 14px;
        letter-spacing: 2px;
        z-index: 9;
        width: 150px;
    }

    .core-publishing .service-tag {
        font-size: 12px;
        line-height: 25px;
    }

    .extended-services {
        padding: 72px 30px 64px 30px;
    }

    .featured-content {
        padding: 20% 45px 10% 30px;
    }

    .book-club-section {
        padding: 25% 5% 25% 30px;
    }

    .core-publishing .octopus-media {
        transform: translate(0px, -125px);
    }

    .extended-header {
        width: 150px;
        transform: translate(0px, -31px);
    }
}

@media only screen and (max-width: 576px) {
    .core-publishing .tags-flex {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        max-width: 430px;
        gap: 10px;
        transform: translate(0px, -190px);
    }

    .core-publishing .service-tag {
        width: 100%;
        min-height: 94px;
        box-sizing: border-box;
        padding: 12px 16px;
        border-radius: 60px;
    }

    .core-publishing .service-tag:last-child {
        grid-column: auto;
        width: 100%;
        justify-self: auto;
    }

    .mobile-primary-links {
        letter-spacing: 1px;
    }

    .mobile-services-toggle {
        letter-spacing: 1px;
    }

    .extended-header {
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 1200px) {
    .extended-services .extended-header .title {
        font-size: 62px;
    }
}

@media only screen and (max-width: 992px) {
    .extended-services {
        height: 100vh;
        min-height: 100svh;
    }

    .extended-services .illustration-overlay {
        background-image: url('../Gif/fish_flower_mobile_transparent.gif');
        background-size: contain;
    }

    .extended-services .extended-header .subtitle {
        font-size: 20px;
    }
}

@media only screen and (max-width: 768px) {
    .extended-services .extended-header .title {
        font-size: 50px;
    }

    .floating-button {
        width: 65px;
    }
}

@media only screen and (max-width: 576px) {

    .extended-services .extended-header,
    .extended-services .extended-header .title,
    .extended-services .extended-header .subtitle {
        text-align: left;
    }

    .extended-services .services-pill-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        max-width: 430px;
        gap: 10px;
    }

    .featured-left-image {
        max-width: 250px;
    }

    .testimonials-left {
        height: 300px;
    }

}

@media only screen and (max-width: 500px) {

    .extended-services .extended-header .title {
        font-size: 36px;
    }

    .extended-services .extended-header .subtitle {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .responsive-nav-brand img {
        width: 40px;
    }

    .responsive-nav-icon {
        width: clamp(26px, 8vw, 20px);
    }

    .responsive-nav-toggle {
        width: min(150px, calc(100vw - 32px));
        height: 50px;
    }

    .subheading {
        font-size: 12px;
    }

    .btn-explore {
        padding: 15px 30px;
    }

    .pill {
        font-size: 12px;
    }
}

.nav-arrow img {
    display: block;
    width: 12px;
    height: 19px;
}

.service-modal[hidden] {
    display: none;
}

.service-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: center;
    padding: 28px;
}

.service-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(30, 27, 31, .55);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.service-modal__content {
    position: relative;
    width: min(950px, 100%);
    min-height: auto;
    padding: 130px 110px;
    border: 1px solid #ff7161;
    border-radius: 28px;
    color: var(--color-light);
    background: var(--custom-grey);
}

.service-modal--core .service-modal__content {
    background: var(--custom-bg);
}

.service-modal__content h2 {
    margin: 0 0 38px;
    font-family: 'The Blendinroom', serif;
    font-size: 40px;
    font-weight: 400;
}

.service-modal__content p {
    max-width: 820px;
    margin: 0;
    font-size: 18px;
    line-height: 1.75;
    letter-spacing: 1px;
}

.service-modal__close {
    position: absolute;
    top: 36px;
    right: 36px;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.service-modal__close::before,
.service-modal__close::after {
    content: '';
    position: absolute;
    top: 17px;
    left: 0;
    width: 36px;
    height: 1px;
    background: var(--color-light);
    transform: rotate(45deg);
}

.service-modal__close::after {
    transform: rotate(-45deg);
}

.service-modal__cta {
    display: inline-block;
    padding: 15px 25px;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-size: 16px;
    letter-spacing: 1px;
        margin-top: 30px;
}

body.service-modal-open {
    overflow: hidden;
}

@media only screen and (max-width: 600px) {
    .service-modal {
        padding: 16px;
    }

    .service-modal__content {
        min-height: 0;
        max-height: calc(100dvh - 32px);
        overflow-y: auto;
        padding: 78px 30px 34px;
        border-radius: 24px;
    }

    .service-modal__content h2 {
        margin-bottom: 24px;
    }

    .service-modal__content p {
        font-size: 17px;
        line-height: 1.55;
    }

    .service-modal__close {
        top: 20px;
        right: 20px;
    }
}

.editorial-begin-now-modal[hidden] { display: none; }

.editorial-begin-now-modal {
    position: fixed;
    inset: 0;
    z-index: 3100;
    display: grid;
    place-items: center;
    padding: 24px;
}

.editorial-begin-now-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(30, 10, 18, .62);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.editorial-begin-now-modal__content {
    position: relative;
    width: min(560px, 100%);
    padding: 72px 64px 60px;
    border: 1px solid #ff7161;
    border-radius: 28px;
    color: var(--color-light);
    background: var(--custom-bg);
}

.editorial-begin-now-modal__content h2 {
    margin: 0 0 24px;
    font-family: 'The Blendinroom', serif;
    font-size: clamp(38px, 6vw, 54px);
    font-weight: 400;
    line-height: 1;
}

.editorial-begin-now-modal__content p {
    margin: 0 0 30px;
    font-size: 18px;
    line-height: 1.6;
}

.editorial-begin-now-modal__close {
    position: absolute;
    top: 28px;
    right: 28px;
    width: 30px;
    height: 30px;
    padding: 0;
    border: 0;
    color: inherit;
    background: transparent;
    cursor: pointer;
}

.editorial-begin-now-modal__close::before,
.editorial-begin-now-modal__close::after {
    content: '';
    position: absolute;
    top: 14px;
    left: 0;
    width: 30px;
    height: 1px;
    background: currentColor;
    transform: rotate(45deg);
}

.editorial-begin-now-modal__close::after { transform: rotate(-45deg); }
.editorial-begin-now-modal__form { display: grid; gap: 16px; }
.editorial-begin-now-modal__form input {
    width: 100%;
    padding: 14px 0;
    border: 0;
    border-bottom: 1px solid currentColor;
    outline: 0;
    color: inherit;
    background: transparent;
    font: inherit;
}
.editorial-begin-now-modal__form input::placeholder { color: inherit; opacity: .8; }
.editorial-begin-now-modal__form button {
    justify-self: start;
    margin-top: 12px;
    padding: 13px 26px;
    border: 1px solid currentColor;
    border-radius: 999px;
    color: inherit;
    background: transparent;
    font: inherit;
    cursor: pointer;
}

body.editorial-begin-now-modal-open { overflow: hidden; }
