/*
 * TABLE OF CONTENTS
 * 1.  Variables & Reset
 * 2.  Nav
 * 3.  Hero
 * 4.  Stats Strip
 * 5.  Sections Common
 * 6.  About
 * 7.  Pilgrimage
 * 8.  Next Pilgrimage Banner
 * 9.  Testimonial
 * 10. Know More
 * 11. Magazine
 * 12. Contact
 * 13. Footer
 * 14. Animations & Keyframes
 * 15. Media Queries
 */


/* ── 1. VARIABLES & RESET ── */

:root {
    --gold:         #b8975a;
    --gold-light:   #d4b47a;
    --gold-pale:    #f5ead6;
    --blue-deep:    #0a1628;
    --blue-mid:     #152444;
    --blue-accent:  #1e3a6e;
    --blue-light:   #2d5fa6;
    --blue-lourdes: #51d1f6;
    --cream:        #faf6f0;
    --cream-dark:   #f0e8d8;
    --text-dark:    #1a1208;
    --text-mid:     #4a3f2f;
    --text-light:   #8a7a62;
    --white:        #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Noise texture overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
}


/* ── 2. NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    transition: background 0.4s, box-shadow 0.4s;
}

nav.scrolled {
    background: rgba(10, 22, 40, 0.97);
    box-shadow: 0 1px 0 rgba(184, 151, 90, 0.2);
    backdrop-filter: blur(12px);
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--gold-light);
    letter-spacing: 0.04em;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.nav-logo img {
    width: 2.33rem;      /* roughly matches your font-size */
    height: auto;     /* keep it square */
    vertical-align: middle; /* aligns with the text baseline */
    margin-right: 0.5rem;   /* space between logo and text */
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.25s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.25s;
    transform-origin: left;
}

.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { transform: scaleX(1); }

/* container */
.dropdown {
    position: relative;
}

/* dropdown box */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;

    background: #222;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);

    list-style: none;
    padding: 0;
    margin: 0;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: 0.25s ease;

    z-index: 1000;
}

/* show on hover */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(6px);
}

/* separators */
.dropdown-menu li {
    border-bottom: 1px solid #333;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

/* links */
.dropdown-menu a {
    display: block;
    padding: 12px 18px;
    color: #ddd;
    text-decoration: none;
    transition: 0.2s ease;
}

/* hover */
.dropdown-menu a:hover {
    background: #333;
    color: var(--gold-light);
    padding-left: 22px;
}

/* ── 3. HERO ── */

.hero {
    min-height: 100vh;
    background: var(--blue-deep);
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 5rem 6rem 6rem;
    position: relative;
    z-index: 2;
}

.hero-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(30, 58, 110, 0.6) 0%, transparent 70%);
    pointer-events: none;
}

.hero-eyebrow {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.6rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.3s forwards;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 2.5rem;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 4.5vw, 4.2rem);
    font-weight: 100;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 0.4rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.5s forwards;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold-light);
    font-weight: 400;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 4.5vw, 4.2rem);
    font-weight: 100;
    color: var(--white);
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.65s forwards;
}

.hero-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    max-width: 26rem;
    margin-bottom: 3rem;
    font-weight: 300;
    opacity: 0;
    animation: fadeUp 0.8s 0.8s forwards;
}

.hero-ctas {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 1s forwards;
}

/* Hero right – visual panel */
.hero-right {
    position: relative;
    overflow: hidden;
}

.hero-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, var(--blue-deep) 0%, transparent 35%),
        linear-gradient(to top, var(--blue-deep) 0%, transparent 25%);
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    filter: sepia(30%) brightness(0.6);
    animation: slowZoom 18s ease-out forwards;
}

/* Ornamental cross overlay */
.hero-ornament {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    z-index: 2;
    opacity: 0;
    animation: fadeIn 1.2s 1.2s forwards;
}

.hero-ornament svg {
    width: 80px;
    height: 80px;
    opacity: 0.35;
}

/* Scroll indicator */
.scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    z-index: 2;
    opacity: 0;
    animation: fadeIn 1s 1.5s forwards;
}

.scroll-hint span {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 3.5rem;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* Hero keyframes */
@keyframes slowZoom {
    from { transform: scale(1.08); }
    to   { transform: scale(1); }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50%       { opacity: 1;   transform: scaleY(1.1); }
}


/* ── 4. STATS STRIP ── */

.stats-strip {
    background: var(--blue-mid);
    border-top: 1px solid rgba(184, 151, 90, 0.2);
    border-bottom: 1px solid rgba(184, 151, 90, 0.2);
    display: flex;
    justify-content: center;
}

.stats-inner {
    display: flex;
    width: 100%;
    max-width: 1200px;
}

.stat-item {
    flex: 1;
    padding: 2.5rem 2rem;
    text-align: center;
    border-right: 1px solid rgba(184, 151, 90, 0.15);
    position: relative;
}

.stat-item:last-child { border-right: none; }

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--gold-light);
    line-height: 1;
    display: block;
}

.stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 0.4rem;
    display: block;
}


/* ── 5. SECTIONS COMMON ── */

section { position: relative; }

.section-tag {
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1.2rem;
}

.section-tag::before {
    content: '';
    width: 1.8rem;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--text-dark);
}

.section-title em {
    font-style: italic;
    color: var(--blue-accent);
}

.section-title.light       { color: var(--white); }
.section-title.light em    { color: var(--gold-light); }

/* Shared buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 2rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--blue-deep);
    font-family: 'Raleway', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(184, 151, 90, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(184, 151, 90, 0.45);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.75);
    font-family: 'Raleway', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: border-color 0.25s, color 0.25s;
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-4 { transition-delay: 0.5s; }

/* Decorative divider */
.ornament-divider {
    text-align: center;
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 0.5rem;
    opacity: 0.4;
    padding: 1rem;
}


/* ── 6. ABOUT ── */

.about {
    padding: 8rem 6rem;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

.about-text .section-title { margin-bottom: 1.8rem; }

.about-body {
    font-size: 0.97rem;
    line-height: 1.9;
    color: var(--text-mid);
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.about-visual { position: relative; }

.about-image-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.about-image-frame::before {
    content: '';
    position: absolute;
    inset: -1.5rem 1.5rem 1.5rem -1.5rem;
    border: 1px solid var(--gold-pale);
    z-index: 0;
}

.about-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    filter: sepia(15%) brightness(0.9);
}

/* Grotto placeholder (shown when no real image is available) */
.grotto-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #1a2e50 0%, #0d1f3c 40%, #172444 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.grotto-placeholder::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 50% 80%, rgba(184, 151, 90, 0.18) 0%, transparent 55%);
}

.grotto-cross {
    font-size: 6rem;
    color: rgba(184, 151, 90, 0.5);
    text-shadow: 0 0 60px rgba(184, 151, 90, 0.3);
    z-index: 1;
    position: relative;
}


/* ── 7. PILGRIMAGE ── */

.pilgrimage {
    background: var(--blue-deep);
    padding: 8rem 6rem;
    overflow: hidden;
    position: relative;
}

.pilgrimage::before {
    content: '';
    position: absolute;
    top: -10rem;
    left: -10rem;
    width: 40rem;
    height: 40rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 58, 110, 0.6) 0%, transparent 70%);
    pointer-events: none;
}

.pilgrimage-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.pilgrimage-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 5rem;
}

.pilgrimage-header .section-title { max-width: 30rem; }

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: rgba(184, 151, 90, 0.1);
    border: 1px solid rgba(184, 151, 90, 0.1);
}

.card {
    background: rgba(10, 22, 40, 0.9);
    padding: 3rem 2.5rem;
    position: relative;
    transition: background 0.3s;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: inherit;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.card:hover            { background: rgba(21, 36, 68, 0.95); }
.card:hover::before    { transform: scaleX(1); }

.card-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    color: rgba(184, 151, 90, 0.15);
    line-height: 1;
    margin-bottom: 1.5rem;
    display: block;
}

.card-icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: block;
}

.card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--gold-light);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
    font-weight: 300;
}


/* ── 8. NEXT PILGRIMAGE BANNER ── */

.next-pilgrimage {
    background: linear-gradient(135deg, var(--blue-accent), var(--blue-mid));
    border-top: 1px solid rgba(184, 151, 90, 0.25);
    border-bottom: 1px solid rgba(184, 151, 90, 0.25);
    padding: 5rem 6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    overflow: hidden;
}

.next-pilgrimage::before {
    content: '✦';
    position: absolute;
    right: 20%;
    font-size: 20rem;
    color: rgba(255, 255, 255, 0.02);
    font-family: serif;
    pointer-events: none;
    line-height: 1;
    top: 50%;
    transform: translateY(-50%);
}

.next-info { max-width: 500px; }

.next-info .section-tag { margin-bottom: 1rem; }

.next-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.next-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-weight: 300;
}

.next-date {
    text-align: center;
    display: flex;           /* make it a flex container */
    flex-direction: column;  /* stack children vertically */
    gap: 1rem;               /* spacing between buttons */
    align-items: center;     /* center buttons horizontally */
}

.date-display {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.date-block {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(184, 151, 90, 0.3);
    padding: 1.2rem 1.5rem;
    text-align: center;
    min-width: 5rem;
}

.date-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold-light);
    line-height: 1;
    display: block;
}

.date-unit {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-top: 0.2rem;
}


/* ── 9. TESTIMONIAL ── */

.testimonial-section {
    padding: 9rem 6rem;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6rem;
    align-items: center;
}

.testimonial-label .section-tag { margin-bottom: 2rem; }

.testimonial-label h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.3;
}

.testimonial-quote {
    position: relative;
    padding: 3rem 3rem 3rem 4rem;
    border-left: 2px solid var(--gold);
    background: var(--cream-dark);
}

.testimonial-quote blockquote,
.testimonial-quote .author-name {
    transform: translateY(0);
    opacity: 1;
    transition: opacity 0.8s cubic-bezier(0.77,0,0.175,1),
                transform 0.8s cubic-bezier(0.77,0,0.175,1);
}

.testimonial-quote.fade-out blockquote,
.testimonial-quote.fade-out .author-name {
    opacity: 0;
    transform: translateY(10px);
}

.testimonial-quote blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-mid);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-line {
    width: 2rem;
    height: 1px;
    background: var(--gold);
}

.author-name {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 500;
}


/* ── 10. KNOW MORE ── */

.know-more {
    background: var(--cream-dark);
    padding: 8rem 6rem;
    position: relative;
}

.know-more-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.know-more-header {
    text-align: center;
    margin-bottom: 5rem;
}

.know-more-header .section-tag { justify-content: center; }

.links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.link-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    display: block;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.link-card:hover {
    border-bottom-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.link-card-icon {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    display: block;
}

.link-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--blue-deep);
    margin-bottom: 0.7rem;
    letter-spacing: 0.01em;
}

.link-card p {
    font-size: 0.83rem;
    color: var(--text-light);
    line-height: 1.65;
    font-weight: 300;
}

.link-card-arrow {
    margin-top: 1.5rem;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}


/* ── 11. MAGAZINE ── */

.magazine {
    background: var(--blue-deep);
    padding: 8rem 6rem;
    position: relative;
    overflow: hidden;
}

.magazine::after {
    content: 'REVISTA';
    position: absolute;
    right: -3rem;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.02);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 0.3em;
}

.magazine-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.magazine-text .section-title { margin-bottom: 1.5rem; }

.magazine-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.magazine-cover {
    position: relative;
    display: flex;
    justify-content: center;
}

.mag-frame {
    width: auto;
    height: auto;
    max-width: 400px;
    background: linear-gradient(145deg, #1a3060, #0d1f3c);
    border: 1px solid rgba(184, 151, 90, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5), -4px -4px 20px rgba(184, 151, 90, 0.05);
    position: relative;
    transform: rotate(-2deg);
    transition: transform 0.3s;
}

.mag-frame:hover { transform: rotate(0deg); }

.mag-frame-inner {
    width: auto;
    height: auto;
    position: relative;
    overflow: hidden;
}

.mag-frame-inner img {
    width: 100%;
    height: auto;
    object-fit: contain;  /* fills container, maintains aspect ratio, crops if needed */
    display: block;
    cursor: pointer;
}

.mag-icon {
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.7;
}

.mag-title-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--gold-light);
    font-style: italic;
    margin-top: 0.8rem;
}

.mag-year {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
}

.mag-badge {
    position: absolute;
    top: -1rem;
    right: -1rem;
    background: var(--gold);
    color: var(--blue-deep);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 0.8rem;
}


/* ── 12. CONTACT ── */

.contact {
    padding: 8rem 6rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.contact-info .section-title { margin-bottom: 2rem; }

.contact-info p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-mid);
    font-size: 0.9rem;
    font-weight: 300;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--cream-dark);
    transition: color 0.2s;
}

.contact-link:hover { color: var(--blue-accent); }

.contact-link-icon {
    width: 2.2rem;
    height: 2.2rem;
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

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

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-field label {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 500;
}

.form-field input,
.form-field textarea {
    border: 1px solid var(--cream-dark);
    border-bottom-color: rgba(10, 22, 40, 0.2);
    background: transparent;
    padding: 0.8rem 0;
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 300;
    outline: none;
    transition: border-color 0.25s;
    resize: none;
}

.form-field input:focus,
.form-field textarea:focus { border-color: var(--gold); }

.form-field textarea { min-height: 8rem; }

.btn-submit {
    align-self: flex-start;
    padding: 0.9rem 2.5rem;
    background: var(--blue-deep);
    color: var(--gold-light);
    border: 1px solid rgba(184, 151, 90, 0.3);
    font-family: 'Raleway', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
}

.btn-submit:hover {
    background: var(--blue-accent);
    color: var(--gold-light);
}


/* ── 13. FOOTER ── */

footer {
    background: var(--blue-deep);
    border-top: 1px solid rgba(184, 151, 90, 0.15);
    padding: 4rem 6rem 2.5rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand .nav-logo {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    display: inline-flex;
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    font-weight: 300;
    max-width: 22rem;
}

.footer-col h4 {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 300;
    transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--gold-light); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
}

.footer-cross {
    color: var(--gold);
    opacity: 0.5;
}


/* ── 14. ANIMATIONS & KEYFRAMES ── */

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}


/* ── 15. MEDIA QUERIES ── */

@media (max-width: 900px) {
    .hero                   { grid-template-columns: 1fr; }
    .hero-right             { display: none; }
    .hero-left              { padding: 8rem 2rem 5rem; }

    .about                  { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 2rem; }

    .pilgrimage             { padding: 5rem 2rem; }
    .pilgrimage-header      { flex-direction: column; align-items: flex-start; gap: 2rem; }
    .cards                  { grid-template-columns: 1fr; }

    .next-pilgrimage        { flex-direction: column; padding: 4rem 2rem; text-align: center; }

    .testimonial-section    { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 2rem; }

    .know-more              { padding: 5rem 2rem; }
    .links-grid             { grid-template-columns: 1fr 1fr; }

    .magazine               { padding: 5rem 2rem; }
    .magazine-inner         { grid-template-columns: 1fr; gap: 3rem; }

    .contact                { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 2rem; }
    .form-row               { grid-template-columns: 1fr; }

    footer                  { padding: 3rem 2rem 2rem; }
    .footer-top             { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-bottom          { flex-direction: column; gap: 0.5rem; text-align: center; }

    nav                     { padding: 0 1.5rem; }
    .nav-links              { display: none; }

    .stats-inner            { flex-wrap: wrap; }
    .stat-item              { min-width: 50%; border-bottom: 1px solid rgba(184, 151, 90, 0.15); }
}