:root {
    --blue: #1e5fbf;
    --blue-dark: #114796;
    --red: #c70d3b;
    --red-dark: #a10830;
    --black: #050505;
    --white: #ffffff;
    --text: #000;
    --title: #1f57b8;
    --bg: #f3f3f3;
    --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    --radius: 999px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    background: var(--white);
}

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

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.narrow-container {
    width: min(980px, 100%);
}

.section-space {
    padding: 72px 0;
}

.topbar {
    background: var(--black);
    color: var(--white);
}

.topbar-inner {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.buy-book-btn,
.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 700;
    transition: 0.25s ease;
}

.buy-book-btn {
    background: var(--red);
    color: var(--white);
    padding: 8px 18px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.buy-book-btn:hover,
.primary-btn:hover {
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-links a {
    color: var(--white);
    font-size: 1rem;
    transition: 0.25s ease;
}

.social-links a:hover {
    color: #ffdc6d;
}

.main-header {
    background: #f7f7f7;
    padding: 28px 0 18px;
    position: sticky;
    top: 0;
    z-index: 20;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.branding {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
}

.site-logo {
    width: min(260px, 100%);
        margin: 0 auto;
}

.nav-wrap {
    position: relative;
}

.site-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 20px;
    padding: 0;
    margin: 0;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 14px;
    color: #1b1b1b;
    font-size: 0.95rem;
    border-radius: var(--radius);
    transition: 0.25s ease;
}

.site-nav a.active,
.site-nav a:hover {
    background: var(--blue);
    color: var(--white);
}

.nav-toggle {
    display: none;
    background: var(--blue);
    border: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    padding: 10px;
    cursor: pointer;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--blue);
    border: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    padding: 0;
    cursor: pointer;
    color: var(--white);
}

.nav-toggle i {
    color: var(--white);
    font-size: 1.2rem;
    line-height: 1;
    pointer-events: none;
}

.hero-section {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: url('../img/slide1.png') center center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.22));
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.hero-kicker {
    display: block;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-size: clamp(0.9rem, 1vw, 1.35rem);
    font-weight: 800;
}

.hero-content h1,
.section-title,
.message-copy h2 {
    font-family: 'Cormorant Garamond', serif;
    line-height: 0.95;
}

.hero-content h1 {
    margin: 0 0 22px;
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    font-weight: 600;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 28px;
    border-radius: var(--radius);
    background: var(--blue);
    font-weight: 700;
    font-size: clamp(0.95rem, 1.3vw, 1.25rem);
}

.welcome-section {
    background: var(--white);
    text-align: center;
}

.section-title {
    margin: 0 0 28px;
    color: var(--title);
    font-size: clamp(3.1rem, 6vw, 5rem);
    font-weight: 700;
}

.section-text {
    max-width: 860px;
    margin: 0 auto;
    font-size: 1.02rem;
    line-height: 1.95;
}

.welcome-section .section-text {
    color:#000;
}

.book-promo {
    margin-top: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    flex-wrap: wrap;
}

.book-card {
    width: min(320px, 100%);
}

.book-cover {
    width: 100%;
    max-width: 160px;
    margin: 0 auto;
    filter: none;
}

.primary-btn {
    background: var(--red);
    color: var(--white);
    font-size: 1.1rem;
    box-shadow: var(--shadow);
}

.message-section {
    background: #fff;
    padding: 60px 0 0;
    overflow: hidden;
}

.message-section .container {
    width: min(1280px, calc(100% - 40px));
    background-image: url(../img/ruben.png);
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
}

.message-grid {
    display: grid;
    grid-template-columns: 520px minmax(320px, 1fr);
    gap: 40px;
    align-items: center;
}

.message-image {
    min-height: 520px;
    /*background: url('../img/ruben.png') left bottom / contain no-repeat;
    */
    border-radius: 0;
}

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

.message-copy h2 {
    margin: 0 0 20px;
    font-size: clamp(3rem, 5vw, 4.8rem);
    font-weight: 700;
    line-height: 0.95;
    color: var(--red);
}

.message-copy h2 span {
    color: var(--title);
}

.message-copy p {
    margin: 0 0 18px;
    font-size: 1rem;
    line-height: 1.75;
}

.site-footer {
    background: var(--black);
    color: rgba(255, 255, 255, 0.78);
    padding: 46px 0 54px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 26px;
}

.footer-nav a,
.footer-info a {
    transition: 0.25s ease;
}

.footer-nav a:hover,
.footer-info a:hover {
    color: var(--white);
}

.footer-info {
    text-align: left;
}

.social-links-footer {
    margin-bottom: 18px;
}

.social-links-footer a {
    color: var(--red);
    font-size: 1.45rem;
}

.footer-info p {
    margin: 0 0 12px;
    line-height: 1.75;
}

@media (max-width: 991px) {
    .main-header {
        padding-bottom: 22px;
    }

    .hero-section {
        min-height: 520px;
        background-position: center top;
    }

    .message-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .message-section {
        padding: 0px 0 50px;
        background: #d9dce0;
    }

    .message-section .container {
        width: min(var(--container), calc(100% - 32px));
        background-image:none;
    }

    .message-image {
        min-height: 420px;
        background-position: center bottom;
        background-size: contain;
        background: url('../img/ruben.png') left bottom / contain no-repeat;
    }

    .message-copy {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .topbar-inner {
        justify-content: space-between;
        gap: 12px;
    }

    .social-links-top {
        gap: 12px;
    }

    .branding {
        margin-bottom: 12px;
    }

   .nav-toggle {
    display: flex;
    margin-left: auto;
}

    .site-nav {
        display: none;
        position: absolute;
        top: calc(100% + 14px);
        left: 0;
        right: 0;
        background: var(--white);
        border-radius: 18px;
        box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
        padding: 18px;
    }

    .site-nav.open {
        display: block;
    }

    .site-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .site-nav a {
        justify-content: flex-start;
        width: 100%;
    }

    .hero-section {
        min-height: 460px;
    }

    .hero-kicker {
        letter-spacing: 0.18em;
    }

    .hero-badge {
        width: 100%;
        max-width: 520px;
        padding-inline: 18px;
    }

    .section-space {
        padding: 56px 0;
    }

    .section-text {
        font-size: 0.98rem;
        line-height: 1.8;
    }

    .message-image {
        min-height: 300px;
        border-radius: 0;
    }

    .message-copy h2 {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }

    .footer-info {
        text-align: left;
    }
}

@media (max-width: 575px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

    .topbar-inner {
        min-height: auto;
        padding: 10px 0;
        flex-wrap: wrap;
        justify-content: center;
    }

    .buy-book-btn {
        font-size: 0.72rem;
    }

    .site-logo {
        width: 50%;
    }

    .hero-section {
        min-height: 390px;
    }

    .hero-content h1 {
        font-size: clamp(2.7rem, 13vw, 4rem);
    }

    .hero-badge {
        font-size: 0.92rem;
        line-height: 1.45;
    }

    .section-title,
    .message-copy h2 {
        line-height: 1;
    }

    .message-grid {
        gap: 28px;
    }

    .message-image {
        min-height: 260px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 12px;
    }
}

/** ABOUT **/

.about-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: url('../img/about-bg.png') center center / cover no-repeat;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 72, 190, 0.72), rgba(0, 72, 190, 0.72));
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    color: var(--white);
}

.about-icon {
    margin-bottom: 18px;
    font-size: 2.1rem;
    color: var(--white);
}

.about-hero h1 {
    margin: 0 0 28px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.2rem, 6vw, 5.4rem);
    line-height: 1;
    font-weight: 600;
}

.about-hero p {
    margin: 0 auto 14px;
    max-width: 860px;
    font-size: 1.08rem;
    line-height: 1.85;
}

.about-content {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: start;
}

.about-col p {
    margin: 0 0 18px;
    font-size: 1rem;
    line-height: 1.9;
}

.about-col h3 {
    margin: 22px 0 18px;
    font-size: 1.35rem;
    color: #111;
    font-weight: 700;
}

.about-list {
    margin: 0;
    padding-left: 22px;
}

.about-list li {
    margin-bottom: 14px;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 700;
    color: #111;
}

.about-cta-wrap {
    margin-top: 42px;
    display: flex;
    justify-content: center;
}

.about-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    padding: 18px 34px;
    border-radius: 999px;
    background: var(--blue);
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 3vw, 1.4rem);
    line-height: 1.15;
    text-align: center;
    max-width: 940px;
    width: 100%;
}

@media (max-width: 991px) {
    .about-hero {
        min-height: 500px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-cta {
        min-height: 64px;
        padding: 16px 22px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 440px;
    }

    .about-hero p {
        font-size: 1rem;
        line-height: 1.75;
    }

    .about-cta {
        border-radius: 30px;
        font-size: clamp(1.35rem, 6vw, 2rem);
    }
}

@media (max-width: 575px) {
    .about-hero {
        min-height: 390px;
                padding-top: 30px;
    }

    .about-icon {
        font-size: 1.7rem;
    }

    .about-list {
        padding-left: 18px;
    }
}

/** MATTERS **/

.matters-hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: url('../img/matters-bg.png') center center / cover no-repeat;
}

.matters-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(180, 0, 20, 0.28), rgba(180, 0, 20, 0.28));
}

.matters-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    color: var(--white);
    padding: 40px 0;
}

.matters-icon {
    margin-bottom: 18px;
    font-size: 2.15rem;
    color: var(--white);
}

.matters-hero h1 {
    margin: 0 0 26px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.4rem, 6vw, 5.8rem);
    line-height: 0.95;
    font-weight: 600;
    color: var(--white);
}

.matters-copy {
    max-width: 720px;
    margin: 0 auto;
}

.matters-copy p {
    margin: 0 0 14px;
    font-size: 1rem;
    line-height: 1.75;
}

.matters-list {
    list-style: disc;
    display: inline-block;
    text-align: left;
    margin: 0 0 26px;
    padding-left: 26px;
}

.matters-list li {
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.6;
}

.matters-text {
    max-width: 700px;
    margin: 0 auto 34px !important;
    font-size: 1.05rem !important;
    line-height: 1.8 !important;
}

.matters-cta {
    display: inline-block;
    padding: 22px 38px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.7;
    background: rgba(255, 255, 255, 0.04);
    max-width: 860px;
}

@media (max-width: 991px) {
    .matters-hero {
        min-height: 680px;
    }

    .matters-hero-content {
        max-width: 760px;
    }

    .matters-cta {
        max-width: 100%;
        padding: 20px 26px;
    }
}

@media (max-width: 768px) {
    .matters-hero {
        min-height: 600px;
    }

    .matters-icon {
        font-size: 1.9rem;
    }

    .matters-copy p,
    .matters-list li {
        font-size: 0.98rem;
    }

    .matters-cta {
        border-radius: 30px;
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 575px) {
    .matters-hero {
        min-height: 520px;
    }

    .matters-hero-content {
        padding: 28px 0;
    }

    .matters-list {
        padding-left: 20px;
    }

    .matters-cta {
        padding: 18px 18px;
        font-size: 0.95rem;
    }
}


/**JOIN**/

.join-hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: url('../img/join-bg.png') center center / cover no-repeat;
}

.join-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.68);
}

.join-hero-content {
    position: relative;
    z-index: 1;
    max-width: 940px;
    margin: 0 auto;
    padding: 50px 0;
    color: #111;
}

.join-icon {
    margin-bottom: 18px;
    font-size: 2.15rem;
    color: #111;
}

.join-hero h1 {
    margin: 0 0 24px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.8rem, 6vw, 5.9rem);
    line-height: 0.95;
    font-weight: 600;
    color: #111;
}

.join-hero h2 {
    margin: 0 0 14px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 3vw, 3rem);
    line-height: 1;
    font-weight: 700;
    color: var(--blue);
}

.join-hero p {
    margin: 0 0 22px;
    font-size: 1.02rem;
    line-height: 1.8;
    color: #222;
}

.join-actions {
    margin-bottom: 26px;
}

.join-strong {
    margin-bottom: 8px !important;
    font-size: 1.2rem !important;
    line-height: 1.65 !important;
    font-weight: 700;
    color: var(--blue) !important;
}

.join-last {
    margin-bottom: 34px !important;
}

.join-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 62px;
    padding: 14px 42px;
    border-radius: 999px;
    background: var(--red);
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1;
    font-weight: 600;
    transition: 0.25s ease;
}

.join-btn:hover {
    transform: translateY(-2px);
    background: var(--red-dark);
}

@media (max-width: 991px) {
    .join-hero {
        min-height: 680px;
    }

    .join-hero-content {
        max-width: 760px;
    }
}

@media (max-width: 768px) {
    .join-hero {
        min-height: 600px;
    }

    .join-hero-content {
        padding: 38px 0;
    }

    .join-icon {
        font-size: 1.9rem;
    }

    .join-hero p {
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .join-strong {
        font-size: 1.05rem !important;
    }

    .join-btn {
        min-height: 56px;
        padding: 14px 28px;
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }
}

@media (max-width: 575px) {
    .join-hero {
        min-height: 520px;
    }

    .join-hero-content {
        padding: 28px 0;
    }

    .join-hero h1 {
        font-size: clamp(3rem, 12vw, 4.4rem);
    }

    .join-hero h2 {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .join-btn {
        width: 100%;
        max-width: 320px;
    }
}



.anniversaryBanner{
  padding: 30px 20px 10px;
  background: #ffffff;
}



.anniversaryWrap{
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.anniversaryWrap img{
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.10);
}

.anniversaryWrap h2{
  font-size: 28px;
  line-height: 1.2;
  color: #12386b;
  margin: 0 0 18px;
  text-align: center;
}