@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600&family=Inter:wght@400;500&family=Montserrat:wght@500&family=Playfair+Display:wght@400;600;700&family=Roboto+Condensed:wght@400&family=Roboto:wght@400;700&display=swap');

:root {
    --gray: #303030;
    --light-gray: #EDE8DF;
    --dark-gray: #0B0C0E;
    --white: #fff;
    --black: #000;
    --accent: #C9A96E;
    --warm-text: #D4CFC7;
    --padding-large: 16rem;
    --padding-medium: 8rem;
    --padding-small: 0rem;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

table {
    border-collapse: collapse;
    border: 1px solid var(--accent);
}

th,
td {
    padding: 0.6rem 1rem;
}

html {
    /* Sets 1rem = 10px (assuming browser default font-size is 16px) */
    font-size: 62.5%;
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 2rem;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--dark-gray);
    /* Match the dark theme */
    overflow-x: hidden;
}

p {
    font-size: 1.8rem;
    line-height: 1.6;
    letter-spacing: -0.04em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -2px;
}

h1 {
    font-size: 6rem;
}

h2 {
    font-size: 5.4rem;
}

h3 {
    font-size: 4.6rem;
}

h4 {
    font-size: 3.4rem;
}

h5 {
    font-size: 2.8rem;
    letter-spacing: -1px;
}

h6 {
    font-size: 2.2rem;
}

button,
.button,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1.6rem;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    padding: 1.2rem 1.4rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--dark-gray);
}

.btn-primary:hover {
    background-color: var(--black);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: #F2EBE0;
    border: 1px solid var(--accent);
}

.btn-outline:hover {
    background-color: var(--dark-gray);
    color: var(--accent);
    border: 1px solid transparent;
}

/* Padding Utilities */
.px-large {
    padding-left: var(--padding-large);
    padding-right: var(--padding-large);
}

.px-medium {
    padding-left: var(--padding-medium);
    padding-right: var(--padding-medium);
}

.px-small {
    padding-left: var(--padding-small);
    padding-right: var(--padding-small);
}

/* Layout Utilities */
.container {
    width: 100%;
    /* padding: 0 4rem; */
    margin: 0 auto;
}

/* Header */
.header {
    background-color: var(--gray);
    width: calc(100% - 4rem);
    z-index: 100;
    position: sticky;
    top: 2rem;
    left: 2rem;
    border-radius: 1.5rem;
    transition: top 0.3s ease, left 0.3s ease, width 0.3s ease, border-radius 0.3s ease;
}

.header.scrolled {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5rem;
}
.logo {
    display: flex;
}

.menu-toggle {
    display: none;
}

.logo img {
    height: 4.5rem;
    /* Adjust this to match the Figma logo scale */
    width: auto;
}

.nav {
    display: flex;
    gap: 2.4rem;
    align-items: center;
}

.nav a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover,
.nav a.active {
    color: var(--accent);
}

/* Header Button override */
.header .btn-primary {
    padding: 1rem 1.6rem;
    font-size: 1.4rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: calc(100vh - 8rem);
    /* Adjusted for header height */
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #1E1E1E 0%, var(--dark-gray) 100%);
    overflow: hidden;
}

/* Subtle dot pattern background based on screenshot */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(var(--gray) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.15;
    z-index: 1;
}

.hero-left-image,
.hero-right-image {
    position: absolute;
    bottom: 0;
    z-index: 2;
    height: 85vh;
    /* Fits the people to the bottom of the screen */
    pointer-events: none;
}

.hero-left-image {
    left: -2%;
}

.hero-right-image {
    right: -2%;
}

.hero-left-image img,
.hero-right-image img {
    height: 100%;
    width: auto;
    object-fit: contain;
    object-position: bottom;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero-subtitle {
    color: var(--white);
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.hero-title {
    color: var(--accent);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-description {
    color: var(--white);
    font-family: 'Roboto', sans-serif;
    line-height: 1.4;
}

.hero-author {
    color: var(--white);
    font-family: 'Roboto', sans-serif;
    margin-top: 1.5rem;
}

.hero-author strong {
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
}

/* About page hero */
.about-hero {
    position: relative;
    background: radial-gradient(circle at center, #1E1E1E 0%, var(--dark-gray) 100%);
    overflow: hidden;
    padding-top: 6rem;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--gray) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.about-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-hero-copy {
    text-align: left;
}

.about-hero-copy h1 {
    margin-bottom: 4rem;
}

.about-hero-copy p {
    color: var(--warm-text);
}

.about-hero-media {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-right: 10rem;
}

.about-hero-media img {
    width: 100%;
    max-width: 44rem;
    height: auto;
    object-fit: contain;
    object-position: bottom right;
    display: block;
}

/* Consult page hero */
.consult-hero {
    position: relative;
    background: radial-gradient(circle at center, #1E1E1E 0%, var(--dark-gray) 100%);
    overflow: hidden;
    padding-top: 16rem;
    padding-bottom: 14rem;
}

.consult-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--gray) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.consult-hero-inner {
    position: relative;
    z-index: 1;
}

.consult-hero-copy {
    text-align: left;
}

.consult-hero-copy h1 {
    margin-bottom: 4rem;
}

.membership-page .consult-hero-copy p {
    font-size: 2rem;
}
.consult-hero-copy p {
    color: var(--warm-text);
    font-size: 1.8rem;
    line-height: 1.6;
    max-width: 80%;
}

/* Legal / policy page (Terms, Privacy, etc.) — page-legal.php */
.legal-content-section {
    background-color: #0B0C0E;
    padding-top: 6rem;
    padding-bottom: 12rem;
}

.legal-content-inner {
    max-width: 100%;
}

.legal-prose {
    max-width: 100rem;
    margin: 0 auto;
    color: var(--warm-text);
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    line-height: 1.65;
    margin-left: 0;
}

.legal-prose > *:first-child {
    margin-top: 0;
}

.legal-prose > *:last-child {
    margin-bottom: 0;
}

.legal-prose h2,
.legal-prose h3,
.legal-prose h4 {
    color: var(--accent);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 1.35em;
    margin-bottom: 0.55em;
}

.legal-prose h2 {
    font-size: clamp(3rem, 2.5vw, 4.2rem);
}

.legal-prose h3 {
    font-size: clamp(2.4rem, 2vw, 3.2rem);
}

.legal-prose h4 {
    font-size: clamp(2rem, 1.6vw, 2.6rem);
}

.legal-prose p,
.legal-prose ul,
.legal-prose ol {
    margin-bottom: 1.2em;
}

.legal-prose ul,
.legal-prose ol {
    padding-left: 1.6em;
}

.legal-prose li {
    margin-bottom: 0.45em;
}

.legal-prose a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.legal-prose a:hover {
    color: var(--light-gray);
}

.legal-prose strong {
    color: var(--white);
    font-weight: 600;
}

.legal-prose blockquote {
    margin: 2rem 0;
    padding-left: 2rem;
    border-left: 3px solid var(--accent);
    color: var(--light-gray);
    font-style: italic;
}

.legal-page-pagination {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(201, 169, 110, 0.25);
    font-size: 1.6rem;
}

.legal-page-pagination__label {
    display: inline;
    margin-right: 0.75em;
    color: var(--accent);
}

.legal-page-pagination a,
.legal-page-pagination span.post-page-numbers {
    display: inline-block;
    margin-right: 0.5em;
}

.legal-page-pagination a {
    color: var(--accent);
    text-decoration: none;
}

.legal-page-pagination a:hover {
    text-decoration: underline;
}

/* Consult page — discussion review */
.consult-review {
    background-color: #0B0C0E;
    padding-top: 8rem;
    padding-bottom: 10rem;
}

.consult-review.consult-review--flush {
    padding-top: 0;
    padding-bottom: 0;
}

.consult-review.consult-review--no-top-pad {
    padding-top: 0;
}

.consult-review h2 {
    text-align: left;
    margin-bottom: 2.8rem;
}

.consult-checklist {
    list-style: none;
    margin: 0 0 3.2rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.consult-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    line-height: 1.55;
    color: #D4CFC7;
}

.consult-check-icon {
    flex-shrink: 0;
    display: flex;
    margin-top: 0.35rem;
    line-height: 0;
}

.consult-check-icon svg {
    display: block;
}

.consult-checklist:has(+ .consult-review-price) {
    margin-bottom: 0;
}

.consult-review-price {
    margin-top: 4rem;
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    line-height: 1.6;
    color: #D4CFC7;
}

.consult-review-price-label {
    color: var(--white);
}

.consult-review-price-value {
    color: var(--accent);
    font-size: 2.4rem;
    font-weight: 600;
}

/* Enrollment — required forms */
.enroll-required-forms {
    background-color: var(--dark-gray);
    padding-bottom: 10rem;
}

.enroll-required-forms-inner {
    margin: 0;
    width: 80%;
}

.enroll-required-forms h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.enroll-required-forms-inner .consult-review-body + .enroll-forms-grid {
    padding-top: 4rem;
}

.enroll-forms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem;
    align-items: stretch;
}

.enroll-forms-grid--paired {
    grid-template-columns: 1fr;
    gap: 0;
}

/* Phones & tablets: same as original two-card layout (no merged “table”). */
.enroll-form-card.enroll-form-card--paired {
    flex: 1;
    min-width: 0;
    border: none;
    background-color: transparent;
    border-radius: 0;
    overflow: visible;
}

.enroll-form-paired-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem;
    align-items: stretch;
    min-height: 0;
    flex: 1;
}

.enroll-form-paired-panel {
    display: flex;
    flex-direction: column;
    min-width: 0;
    background-color: #141414;
    border: 1px solid var(--accent);
    border-radius: 8px;
    overflow: hidden;
}

.enroll-form-paired-panel + .enroll-form-paired-panel {
    border-left: none;
}

.enroll-form-paired-panel .enroll-form-list {
    flex: 1;
}

@media (max-width: 576px) {
    .enroll-form-paired-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (min-width: 1025px) {
    .enroll-forms-grid--paired {
        gap: 0;
    }

    .enroll-form-card.enroll-form-card--paired {
        background-color: #141414;
        border: 1px solid var(--accent);
        border-radius: 8px;
        overflow: hidden;
    }

    .enroll-form-paired-inner {
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .enroll-form-paired-panel {
        background-color: transparent;
        border: none;
        border-radius: 0;
        overflow: visible;
    }

    .enroll-form-paired-panel + .enroll-form-paired-panel {
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
}

.enroll-form-card {
    background-color: #141414;
    border: 1px solid var(--accent);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.enroll-form-card-head {
    background-color: color-mix(in srgb, var(--accent) 10%, transparent);
    padding: 1.8rem 4rem;
}

.enroll-form-card-title {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.04em;
    color: var(--accent);
}

.enroll-form-list {
    list-style: none;
    margin: 0;
    padding: 0.8rem 4rem;
    background-color: #141414;
    flex: 1;
}

.enroll-form-list li {
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    line-height: 1.5;
    color: #D4CFC7;
    padding: 1.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.enroll-form-list li:last-child {
    border-bottom: none;
    padding-bottom: 1.6rem;
}

.enroll-forms-note {
    margin-top: 4rem;
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    line-height: 1.65;
    color: #D4CFC7;
}

.enroll-forms-note a {
    color: var(--accent);
    text-decoration: none;
}

.enroll-forms-note a:hover {
    text-decoration: underline;
}

.consult-review-body {
    width: 70%;
}

.consult-review-body p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    line-height: 1.6;
    color: #D4CFC7;
}

.consult-review-body p + p {
    margin-top: 2rem;
}

.consult-review-body strong {
    color: var(--accent);
    font-weight: 600;
}

/* What to Expect — timeline */
.expect-timeline-section {
    background-color: #0B0C0E;
    padding: 8rem 0 10rem;
}

.expect-timeline-inner {
    margin-inline: auto;
}

.expect-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.expect-step {
    display: grid;
    grid-template-columns: 7.6rem minmax(0, 1fr);
    gap: 0 2.8rem;
    align-items: stretch;
    padding: 3.8rem 0;
    position: relative;
}

.expect-step:first-child {
    padding-top: 0;
}

.expect-step:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.expect-step-rail {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.expect-steps::before {
    position: absolute;
    content: '';
    flex: 1 1 auto;
    width: 2px;
    height: calc(100% - 8rem);
    left: 3.6rem;
    top: 0;
    background-color: var(--accent);
}

.expect-steps>:not(:last-child).expect-step::before {
    content: '';
    position: absolute;
    right: 0;
    width: calc(100% - 10rem);
    height: 1px;
    background-color: #ffffff28;
    bottom: 0;
}


.expect-step-icon-ring {
    flex-shrink: 0;
    padding: 1rem;
    border-radius: 50%;
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    background-color: #0F1011;
}

.expect-step-icon-ring img {
    width: 5rem;
    height: 5rem;
    object-fit: contain;
    display: block;
}

.expect-step-body {
    /* padding-top: 0.6rem; */
}

.expect-step-label {
    display: block;
    margin-bottom: 1rem;
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    letter-spacing: -0.04em;
}

.expect-step-title {
    margin: 0 0 1.6rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--white);
}

.expect-step-text {
    margin: 0;
    max-width: 80rem;
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    line-height: 1.65;
    color: #D4CFC7;
}

/* Men page — before / after transformation */
.men-transformation {
    background-color: var(--dark-gray);
    padding: 10rem 0 0;
}

.men-transformation-inner {
    margin-inline: auto;
}

.men-transformation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.2rem;
    align-items: start;
}

.men-transformation-col {
    margin: 0;
}

.men-transformation-media {
    overflow: hidden;
    aspect-ratio: 3 / 4;
    max-height: 72rem;
    background-color: #141414;
}

.men-transformation-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.men-transformation-figcaption {
    margin-top: 2.4rem;
    text-align: center;
}

.men-transformation-year {
    display: block;
    margin-bottom: 0.8rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.6rem, 4vw, 5.2rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--accent);
}

.men-transformation-caption {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: var(--white);
}

.men-transformation-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.4rem;
    margin-top: 5rem;
}

.men-stat-card {
    background-color: #141414;
    border: 1px solid var(--accent);
    /* padding: 2.8rem 2rem; */
    text-align: center;
}

.men-stat-value {
    margin: 0 0 1.2rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.6rem, 3.5vw, 4.8rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--accent);
}

.men-stat-value--arrow {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(3.2rem, 3vw, 4.2rem);
    line-height: 1;
}

.men-stat-value--vo2 sub {
    font-size: 0.55em;
    font-weight: 600;
    line-height: 0;
    vertical-align: baseline;
    position: relative;
    bottom: -0.15em;
}

.men-stat-label {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.03em;
    color: #D4CFC7;
}

.men-transformation-inner .enroll-forms-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.4rem;
    padding-top: 5rem;
    text-align: center;
}

.about-bio {
    background-color: #0B0C0E;
    padding-top: 8rem;
    padding-bottom: 6rem;
}

.about-bio-inner {
    margin-inline: auto;
}

.about-bio h2 {
    margin-bottom: 3rem;
    text-align: left;
}

.about-bio p {
    color: var(--warm-text);
}

.about-bio-inner > p + p {
    margin-top: 2.4rem;
}

.about-bio-quote {
    margin: 6rem 0 0;
    padding: 0;
    border: none;
}

.about-bio-quote p {
    text-align: center;
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem !important;
    line-height: 1.2;
}

.about-bio-quote em {
    color: var(--accent);
    font-style: italic;
}

.about-bio-quote--left p {
    text-align: left;
}

.about-bio-quote--narrow {
    max-width: 80%;
    margin: 8rem auto;
}

.about-standard {
    background-color: #0B0C0E;
    padding-bottom: 10rem;
}

.about-standard-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
    padding-right: 0;
}

.about-standard-copy h2 {
    margin-bottom: 2.5rem;
    text-align: left;
}

.about-standard-copy h3 {
    margin-top: 3rem;
    margin-bottom: 2rem;
    text-align: left;
}

.about-standard-copy p {
    color: var(--warm-text);
}

.about-standard-copy p + p {
    margin-top: 0.5rem;
}

.about-standard-copy h2 + p,
.about-standard-copy h3 + p {
    margin-top: 0;
}

.about-standard-media {
    overflow: hidden;
    border-radius: 5rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.about-standard-media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-philosophy {
    background-color: #0B0C0E;
    padding-top: 0;
    padding-bottom: 10rem;
}

.about-philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: stretch;
}

.about-philosophy-card {
    background-color: #141414;
    border: 1px solid var(--accent);
    border-radius: 8px;
    padding: 3.5rem 2rem 2rem 2rem;
}

.about-philosophy-card h3 {
    margin-bottom: 3rem;
    text-align: left;
}

.about-philosophy-card p {
    color: var(--warm-text);
    letter-spacing: -0.04em;
    line-height: 1.75;
}

.about-philosophy-card p + p {
    margin-top: 1.6rem;
}

.about-objective {
    overflow: hidden;
    background-color: var(--dark-gray);
    background-image: url('../images/16.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom right;
}

.about-objective-inner {
    display: flex;
    align-items: flex-start;
    min-height: 105rem;
}

.about-objective-copy {
    padding-top: 20rem;
    max-width: 72rem;
}

.about-objective-copy h2 {
    margin-bottom: 2rem;
    text-align: left;
}

.about-objective-tagline {
    margin-bottom: 2rem;
    color: #DFD6C5;
}

.about-objective-tagline em {
    color: inherit;
}

.about-objective-copy p {
    color: var(--warm-text);
}

.about-objective-copy .about-objective-tagline + p {
    margin-top: 0;
}

.about-objective-kicker {
    margin-top: 2rem;
    color: #DFD6C5;
}

.about-objective-kicker em {
    color: inherit;
    font-family: 'Cormorant Garamond', serif;
}

/* Information Section */
/* .section-padding {
    padding: 8rem 0;
} */

.info-section {
    background-color: var(--dark-gray);
    padding-top: 8rem;
    padding-bottom: 2rem;
}

.info-block {
    text-align: center;
    margin-bottom: 10rem;
}

.info-block:last-child {
    margin-bottom: 0;
}

.info-title {
    color: var(--accent);
    margin-bottom: 2rem;
    /* Uses the global h2 size of 5.4rem as defined in the rules */
}

.info-subtitle {
    color: var(--light-gray);
    margin-bottom: 2rem;
}

.info-subtitle em {
    font-style: italic;
}

.info-text {
    color: var(--light-gray);
    line-height: 1.6;
    font-family: 'Roboto', sans-serif;
}

/* Model Section */
.model-section {
    background-color: var(--dark-gray);
    padding-top: 10rem;
    padding-bottom: 10rem;
}

.model-container {
    /* border: 1px dashed rgba(255, 255, 255, 0.4); replaced with custom SVG for fewer dashes */
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='12' ry='12' stroke='%23DFD6C5' stroke-width='2' stroke-dasharray='10%2c 10' stroke-opacity='0.4'/%3e%3c/svg%3e");
    border-radius: 12px;
    padding: 6rem 10rem;
    /* Kept wide enough for the grid layout */
    margin: 0 auto;
    width: fit-content;
}

.model-header {
    text-align: center;
    margin-bottom: 8rem;
}

.model-title {
    color: var(--accent);
    margin-bottom: 2rem;
}

.model-subtitle {
    color: var(--light-gray);
    font-weight: 600;
}

.model-diagram {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: 1fr auto 1fr;
    gap: 0 7rem;
    align-items: center;
    justify-items: center;
    min-height: 52rem;
}

/* SVG + arrows sit out of the grid so they do not steal auto-placed cells from the five nodes */
.model-diagram-decoration {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.model-svg {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    pointer-events: none;
    scale: 0.6;
}

/* Arrows */
.arrow {
    position: absolute;
    width: 2.9rem;
    height: 3.3rem;
    background-image: url("data:image/svg+xml,%3Csvg width='29' height='33' viewBox='0 0 29 33' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.000605495 16.3063V10.5669C0.000605495 3.44107 -0.185923 -2.49804 5.98876 1.06489L16.2031 6.95564L26.0275 12.6213C32.2021 16.1842 27.3594 19.2244 21.1847 22.7873L16.2031 25.657L5.98876 31.5478C-0.185923 35.1108 0.000605495 29.1716 0.000605495 22.0457V16.3063Z' fill='%23C9A96E'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 5;
}

.arrow.top {
    top: 15.4%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
}

.arrow.bottom {
    bottom: 15.4%;
    left: 50%;
    transform: translate(-50%, 50%) rotate(180deg);
}

.arrow.right {
    top: 50%;
    right: 21.2%;
    transform: translate(50%, -50%) rotate(90deg);
}

.arrow.left {
    top: 50%;
    left: 21.2%;
    transform: translate(-50%, -50%) rotate(-90deg);
}

/* Nodes */
.model-node {
    background-color: #141414;
    border: 1px solid var(--accent);
    border-radius: 8px;
    width: 36rem;
    z-index: 10;
    position: relative;
    overflow: hidden;
}

.node-tl {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
}

.node-tr {
    grid-column: 3;
    grid-row: 1;
    justify-self: start;
}

.node-bl {
    grid-column: 1;
    grid-row: 3;
    justify-self: end;
}

.node-br {
    grid-column: 3;
    grid-row: 3;
    justify-self: start;
}

.model-node h5 {
    text-align: center;
    border-bottom: 1px solid var(--accent);
    padding: 1.8rem;
    background-color: rgba(201, 169, 110, 0.12);
    margin: 0;
    color: var(--accent);
}

.model-node ul {
    list-style: none;
    padding: 2.5rem 0 0 0;
    margin-bottom: 2.5rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.model-node li {
    color: var(--light-gray);
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
}

.model-node li::before {
    content: '•';
    color: var(--white);
    margin-right: 1rem;
    font-size: 1.6rem;
}

.node-footer {
    text-align: center;
    color: #DFD6C5;
    font-size: 2rem;
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
    padding: 0 3rem 0.5rem 3rem;
}

/* Center Node */
.model-center-node {
    grid-column: 2;
    grid-row: 2;
    width: 22rem;
    height: 22rem;
    border-radius: 50%;
    border: 1px solid var(--accent);
    background-color: var(--gray);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 10;
}

.model-center-node h3 {
    font-size: 3.4rem;
    color: var(--accent);
}

.model-center-node p {
    color: #DFD6C5;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials-section {
    position: relative;
    overflow: hidden;
    background: white;
    /* Simulates the warm glow */
    color: var(--gray);
    padding: 12rem 0 10rem 0;
}

.testimonials-section::before,
.testimonials-section::after {
    content: '';
    position: absolute;
    width: 68rem;
    height: 98.8rem;
    background-image: url("data:image/svg+xml,%3Csvg width='680' height='988' viewBox='0 0 680 988' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.7' filter='url(%23filter0_f_29_145)'%3E%3Cellipse cx='150.5' cy='494' rx='369.5' ry='334' fill='%23FFE4C4'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_f_29_145' x='-379' y='0' width='1059' height='988' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3E%3CfeGaussianBlur stdDeviation='80' result='effect1_foregroundBlur_29_145'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
}

.testimonials-section::before {
    top: -28rem;
    left: -24rem;
}

.testimonials-section::after {
    width: 78.7rem;
    height: 98.8rem;
    background-image: url("data:image/svg+xml,%3Csvg width='787' height='988' viewBox='0 0 787 988' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.7' filter='url(%23filter0_f_29_146)'%3E%3Cellipse cx='529.5' cy='494' rx='369.5' ry='334' fill='%23FFE4C4'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_f_29_146' x='0' y='0' width='1059' height='988' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3E%3CfeGaussianBlur stdDeviation='80' result='effect1_foregroundBlur_29_146'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");
    right: -24rem;
    bottom: -28rem;
}

.testimonials-section .container {
    position: relative;
    z-index: 1;
}

.testimonials-title {
    color: var(--gray);
    text-align: center;
    margin-bottom: 4rem;
}

.slider-wrapper {
    position: relative;
    width: 100%;
}

.slider-container {
    width: 100%;
    overflow: hidden;
    /* Hide overflow, use transform for slide */
    cursor: grab;
    /* Let the page scroll vertically on touch; drag is mouse-only in script.js */
    touch-action: pan-y;
}

.slider-container:active {
    cursor: grabbing;
}

@media (pointer: coarse) {
    .slider-container {
        cursor: default;
    }

    .slider-container:active {
        cursor: default;
    }
}

.slider-track {
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.slider-track.dragging {
    transition: none;
    /* Instant follow while dragging */
}

.testimonial-card {
    /* Exactly 3 cards visible on desktop: 100% minus 2 gaps of 3rem, divided by 3 */
    flex: 0 0 calc((100% - 6rem) / 3);
    min-width: 0;
    background-color: #FAFAFA;
    border: 1px solid transparent;
    background:
        linear-gradient(#FAFAFA, #FAFAFA) padding-box,
        linear-gradient(135deg, #C19A6B 0%, #66666600 52%, #C19A6B 100%) border-box;
    border-radius: 8px;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.02);
    user-select: none;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.stars-icon svg {
    height: 4rem;
    /* Scaled down the SVG visually */
    width: auto;
}

.quote-icon svg {
    height: 4rem;
    width: auto;
}

.testimonial-text {
    line-height: 1.6;
    color: var(--dark-gray);
    margin-bottom: 5rem;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    font-size: 1.6rem;
    color: var(--gray);
    font-weight: 700;
}

.testimonial-author span {
    font-size: 1.2rem;
    color: #999;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-top: 5rem;
}

.slider-dots .dot {
    height: 0.8rem;
    border-radius: 1rem;
    cursor: pointer;
    border: 0;
    padding: 0;
}

.slider-dots .dot-progress {
    width: 0;
    background-color: var(--accent);
    opacity: 0;
    transform: scale(0.75);
    pointer-events: none;
    margin-right: 0;
    transition: width 0.3s ease, margin-right 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.slider-dots .dot-progress.is-visible {
    width: 0.8rem;
    opacity: 0.5;
    transform: scale(1);
    pointer-events: auto;
    margin-right: 0.8rem;
}

.slider-dots .dot-progress.active {
    opacity: 1;
}

.slider-dots .dot-remaining {
    display: inline-block;
    height: 0.8rem;
    border-radius: 1rem;
    background-color: #E2DFD8;
    transition: width 0.3s ease, opacity 0.3s ease;
}

.slider-dots .dot-remaining.is-hidden {
    opacity: 0;
}

/* Strategic Oversight Section */
.strategic-oversight-section {
    padding-top: 10rem;
    padding-bottom: 12rem;
    background-color: #0B0C0E;
    color: var(--white);
}

.strategic-header {
    text-align: center;
    margin-bottom: 8rem;
    margin-inline: auto;
}

.strategic-header h2 {
    margin-bottom: 2.5rem;
}

.strategic-header p {
    font-size: 1.8rem;
    line-height: 1.6;
    color: var(--light-gray);
    margin: 0 auto;
}

.strategic-grid {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    margin: 0 auto;
}

.strategic-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
}

.strategic-item {
    display: flex;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

/* Vertical dashed line connecting the icons downwards to next row */
.strategic-row:not(:last-child) .strategic-item::before {
    content: '';
    position: absolute;
    left: 8px;
    /* Center of the 10px icon */
    top: 2rem;
    /* Start just below the icon */
    height: calc(100% + 6rem - 1.2rem);
    /* 100% of row height + 6rem gap - offset */
    border-left: 1.5px solid rgba(255, 255, 255, 0.15);
    z-index: 1;
}

@media (max-width: 992px) {
    .strategic-row {
        grid-template-columns: 1fr;
        gap: 6rem;
    }
}

.item-icon {
    width: 18px;
    height: 18px;
    background-color: var(--accent);
    border-radius: 2px;
    margin-top: 0.6rem;
    /* Align with heading */
    flex-shrink: 0;
}

.item-content h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.item-content p {
    font-size: 1.7rem;
    line-height: 1.6;
    color: #D4CFC7;
}

/* In the News Section */
.news-section {
    background-color: #FFFAF2;
}

.news-section .container.px-large {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.news-header {
    text-align: center;
    margin-bottom: 6rem;
    margin-inline: auto;
}

.news-header h2 {
    color: var(--black);
    margin-bottom: 2rem;
}

.news-header p {
    line-height: 1.6;
    color: var(--gray);
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

.news-footer {
    text-align: center;
    margin-top: 6rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 0 auto;
}

.news-card {
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.news-card-media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 18rem;
    overflow: hidden;
    border: 1px solid var(--light-gray);
    border-bottom: none;
    border-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.news-card-media img {
    object-fit: cover;
}

.news-tag {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translate(-50%, 50%);
    background-color: var(--accent);
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 0.6rem 2rem;
    border-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    white-space: nowrap;
    z-index: 2;
    font-family: 'Inter', sans-serif;
}

.news-card-body {
    padding: 3rem 2rem 2rem 2rem;
    flex-grow: 1;
    border: 1px solid var(--light-gray);
    border-top: none;
    border-bottom: none;
}

.news-card-body h5 {
    font-family: 'Playfair Display', serif;
    letter-spacing: -1px;
    color: var(--black);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 500;
    font-size: 2.4rem;
}

.news-card-body p {
    font-size: 1.4rem;
    color: #777777;
    line-height: 1.6;
}

.news-read-more {
    display: block;
    width: 100%;
    background-color: #333333;
    color: #FFFFFF;
    text-align: center;
    padding: 1rem 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.news-read-more:hover {
    background-color: var(--accent);
    color: var(--dark-gray);
}

/* View All Button */
.btn-view-all {
    display: inline-block;
    padding: 1.2rem 4rem;
    border: 1px solid var(--dark-gray);
    background: transparent;
    color: var(--black);
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: #FFFFFF;
}

@media (max-width: 1200px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

/* Professional Affiliations Section */
.affiliations-section {
    padding-top: 10rem;
    padding-bottom: 12rem;
    background-color: #FFFFFF;
}

.affiliations-header {
    text-align: center;
    margin-bottom: 8rem;
}

.affiliations-header h2 {
    color: var(--black);
}

.affiliations-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8rem;
    margin: 0 auto;
}

.affiliation-row {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.affiliation-row.row-top {
    flex-wrap: wrap;
    gap: 10rem;
}

.affiliation-row.row-bottom {
    flex-wrap: wrap;
    gap: 10rem;
}

.affiliation-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.affiliation-logo img {
    /* max-height: 5.5rem; */
    width: 70%;
    object-fit: contain;
}

.affiliation-logo .status {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: #666666;
    margin-top: 1rem;
    font-weight: 700;
}

@media (max-width: 992px) {
    .affiliation-row.row-top {
        gap: 5rem;
    }

    .affiliation-row.row-bottom {
        gap: 6rem;
    }
    
    .women-page .about-hero-inner {
        grid-template-columns: 1fr !important;
        gap: 3rem;
    }
    .women-page .about-hero-media img {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .affiliations-grid {
        gap: 6rem;
    }

    .affiliation-row {
        gap: 5rem !important;
        flex-direction: column;
    }
}


/* Services Page */

.services-hero .services-hero-copy p {
    max-width: 100%;
}
.membership-page .services-hero-copy p {
    max-width: 66rem;
}

.services-review ul {
    margin: 2.4rem 0;
}

/* Membership Page */
.membership-page .services-review:not(:last-child) {
    padding-bottom: 0;
}

/* Brain page — stacked consult-review sections (same rhythm as membership) */
.brain-page .services-review:not(:last-child) {
    padding-bottom: 0;
}

.brain-page .consult-review .hero-buttons {
    justify-content: flex-start;
}
.brain-page .consult-review-body {
    width: 80%;
}

.membership-page .consult-review-body strong {
    color: var(--white);
}

.membership-page .consult-review-price {
    margin: 1rem 0;
}

.brain-page .strategic-grid {
    margin-top: 6rem;
}
.women-page.men-page .enroll-required-forms {
    padding-top: 0rem;
}
/* Women Page */

.women-page .about-hero-media img {
    max-width: 100%;
}

.women-page .about-hero-inner {
    grid-template-columns: auto 1fr;
}
.women-page .enroll-required-forms {
    padding-top: 10rem;
}
.women-page .enroll-required-forms-inner {
    width: 100%;
}

.women-page .consult-review-body, .men-page .consult-review-body {
    width: 80%;
}

.women-page .about-hero-copy h1 {
    margin-bottom: 4rem;
}

/* Media page — outlet logos */
.media-brands-section {
    background-color: var(--white);
    padding: 10rem 0;
}

.media-brands-inner {
    margin-inline: auto;
}

.media-brands-title {
    margin: 0 0 4.8rem;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.2rem, 3vw, 4.2rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--accent);
}

.media-brands-row {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: clamp(1.2rem, 2.2vw, 4.8rem);
}

.media-brands-row li {
    flex: 0 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-brands-row a.media-brand-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-brands-row img {
    display: block;
    max-height: clamp(4.2rem, 4.5vw, 6rem);
    max-width: min(18rem, 15vw, 100%);
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Media Page */
.media-page .news-section {
    background-color: #0B0C0E;
}
.media-page .news-card-body, .media-page .news-card-media {
    border-color: rgba(255, 255, 255, 0.137);
    border-width: 1px;
}

.media-page .news-card-body h5 {
    color: var(--accent);
}

/* FAQ page — class added on body via page-faq.php */
html:has(body.faq-page) {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html:has(body.faq-page) {
        scroll-behavior: auto;
    }
}

.faq-nav-section {
    background-color: #0B0C0E;
    padding: 8rem 0 8rem;
}

.faq-nav-inner {
    margin-inline: auto;
}

.faq-nav-list {
    list-style: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-nav-link {
    display: block;
    padding: 2rem 2.4rem;
    border: 1px solid #ffffff21;
    border-radius: 10px;
    background-color: transparent;
    color: var(--accent);
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.25;
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: border-color 0.25s ease, background-color 0.25s ease;
}

.faq-nav-link:hover {
    background-color: rgba(201, 169, 110, 0.06);
}

.faq-nav-link:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.faq-answers-section {
    background-color: #0B0C0E;
    padding: 4rem 0 10rem;
    border-top: 1px solid var(--accent);
}

.faq-answers-inner {
    margin-inline: auto;
}

.faq-item {
    scroll-margin-top: 12rem;
    padding: 3.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-item__question {
    margin: 0 0 1.6rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--accent);
}

.faq-item__answer {
    margin: 0;
    max-width: 80%;
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    line-height: 1.65;
    color: #D4CFC7;
}

/* Footer Section */
.site-footer {
    background-color: #333333;
    color: #FFFFFF;
    padding-top: 10rem;
    padding-bottom: 4rem;
    font-family: 'Roboto', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr;
    gap: 6rem;
}

.footer-logo {
    max-width: 28rem;
    margin-bottom: 1.6rem;
    height: auto;
}

.footer-bio {
    font-size: 1.8rem;
    line-height: 1.6;
    font-family: 'Roboto', sans-serif;
    color: #A6A6A6;
    margin-bottom: 2rem;
    max-width: 52rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 8rem;
    margin-bottom: 3rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.5rem;
    height: 4.5rem;
    border: 1px solid var(--accent);
    border-radius: 8px;
    color: #FFFFFF;
    background-color: transparent;
    transition: all 0.3s ease;
}

.social-icon:hover {
    border-color: var(--accent);
    color: var(--accent);
    background-color: var(--accent);
}

.social-icon svg {
    width: 1.8rem;
    height: 1.8rem;
    display: block;
}

.footer-badges {
    display: flex;
    gap: 2rem;
    align-items: flex-end;
    margin-bottom: 1rem;
}

.badge-book {
    max-width: 8rem;
    display: flex;
}

.badge-book img {
    width: 100%;
    height: auto;
}

.footer-badges-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: var(--accent);
    line-height: 1.3;
    width: 19rem;
    white-space: nowrap;
}

.badge-spartan {
    max-width: 12rem;
    display: flex;
}

.badge-spartan img {
    width: 100%;
    height: auto;
}

.footer-heading {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 2.6rem;
    font-weight: 400;
    letter-spacing: 0;
    color: #FFFFFF;
    margin-bottom: 4rem;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.4rem;
}

.footer-menu li:last-child {
    margin-bottom: 0;
}

.footer-menu a {
    color: #A6A6A6;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.8rem;
    font-size: 1.3rem;
    color: #BBBBBB;
}

.legal-links {
    display: flex;
    gap: 3rem;
}

.legal-links .legal-links-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.legal-links .legal-links-menu li {
    margin: 0;
    padding: 0;
}

.legal-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.8rem;
    font-family: 'Inter', sans-serif;

}

.copyright {
    font-size: 1.8rem;
    color: var(--white);
    font-family: 'Inter', sans-serif;

}

.legal-links a:hover {
    color: var(--light-gray);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .legal-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }

    .legal-links .legal-links-menu {
        justify-content: center;
        gap: 2rem;
    }
}