/* Match 'Let's Celebrate!' style for 'Your Wedding, Your Way!' */
.celebrate-title {
    font-size: 5rem;
    color: var(--color-brand);
    margin-bottom: 40px;
    font-family: var(--font-display);
    text-align: center;
    font-weight: 700;
}
/* Overlay style for testimonials title */
.testimonials-title-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 2;
    margin: 0;
    padding: 0 10px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.18);
    color: #fff !important;
}
/* Testimonials Title Style (matches home page) */
.testimonials-title {
    /* Larger hero-style title for testimonials */
    font-family: var(--font-display);
    font-size: 5.5rem;
    line-height: 1;
    font-weight: 600;
    color: #fff; /* hero overlay uses white */
    text-align: center;
    margin: 0 0 18px 0;
}
.weddings-final-content .weddings-final-medium {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 14px;
    color: var(--color-text-medium);
    font-family: 'Playfair Display', serif;
    text-align: center;
}
/* =========================
   RESET
========================= */

:root {
    --color-page: #f5f5f5;
    --color-surface: #f8f8f8;
    --color-text: #333;
    --color-text-strong: #222;
    --color-text-medium: #444;
    --color-text-soft: #555;
    --color-text-muted: #666;
    --color-brand: #efaaa5;
    --color-brand-dark: #e7a29b;
    --color-brand-soft: #f2a9a2;
    --color-brand-panel: #eca19d;
    --color-line: #cfcfcf;
    --color-line-soft: #ddd;
    --color-card: #ededed;
    --color-footer: #d9d9d9;
    --color-input-border: #bdbdbd;
    --font-body: 'Montserrat', sans-serif;
    --font-display: 'Cormorant Garamond', serif;
}

.brand-text h1,
.hero-content h2,
.hero-content p,
.celebrate-content h2,
.split-text h2,
.final-content p,
.footer-main h3,
.about-main-content h2,
.about-main-content h3,
.weddings-hero-content h2,
.weddings-hero-content p,
.ceremony-image-overlay h3,
.ceremony-text-card p,
.weddings-final-content p,
.gallery-hero-content h2,
.contact-form-wrapper h2,
.testimonial-content p,
.testimonial-content h3,
.humanist-left h2,
.faq-title-section h2,
.faq-content h3 {
    font-family: var(--font-display);
}

.brand-text p,
nav a,
.humanist-source,
.fact-item p,
.form-group label,
.contact-form input,
.contact-form select,
.contact-form textarea,
.checkbox-group label {
    font-family: var(--font-body);
}

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

/* =========================
   BODY
========================= */

body {
    background: var(--color-page);
    color: var(--color-text);
    font-family: var(--font-body);
    overflow-x: hidden;
}

/* =========================
   CONTAINER
========================= */

.container {
    width: 96%;
    max-width: 1450px;
    margin: auto;
}

/* =========================
   HEADER
========================= */

header {
    background: var(--color-page);
}

/* =========================
   TOP HEADER
========================= */


.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0 24px;
}

.top-header .brand-area {
    flex: 0 0 auto;
}

.top-header > .contact-btn {
    margin-left: auto;
}

/* =========================
   BRAND
========================= */

.brand-area {
    display: flex;
    align-items: center;
    gap: 18px;
}

.logo-image {
    width: 70px;
    height: 70px;
    object-fit: cover;
}

.brand-text h1 {
    font-size: 4.2rem;

    line-height: 0.95;

    font-weight: 600;

    color: var(--color-brand);
}

.brand-text p {
    margin-top: 10px;

    font-size: 1.1rem;

    color: var(--color-text);
}

.brand-link {
    display: inline-block;
    color: inherit;
    text-decoration: none;
}

.brand-link:hover,
.brand-link:focus-visible {
    opacity: 0.92;
}

/* =========================
   BUTTON
========================= */


a.contact-btn,
button.contact-btn,
.contact-btn {
    background: var(--color-brand);
    color: white;
    font-family: var(--font-display);
    text-decoration: none;
    padding: 16px 40px;
    font-size: 1.75rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
    display: inline-block;
    margin-left: auto;
}

/* Make the Submit button text larger on the contact page */
button.submit-btn {
    font-size: 2.5rem;
}

a.contact-btn:hover,
button.contact-btn:hover,
.contact-btn:hover {
    opacity: 0.9;
}

/* =========================
   NAV
========================= */

.nav-container {
    border-top: 1px solid var(--color-line);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 16px 0;
}

/* =========================
   MENU
========================= */

nav ul {
    display: flex;
    align-items: center;

    list-style: none;

    gap: 28px;
}

/* ========================================
   DROPDOWN MENU
======================================== */

.dropdown {
    position: relative;
}

.dropdown-menu {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 0;

    position: absolute;

    top: 100%;

    left: 0;

    min-width: 240px;

    background: var(--color-page);

    list-style: none;

    padding: 14px 0;

    opacity: 0;

    visibility: hidden;

    transform: translateY(10px);

    transition: all 0.25s ease;

    box-shadow: 0 10px 25px rgba(0,0,0,0.08);

    z-index: 999;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {

    display: block;

    width: 100%;

    padding: 12px 24px;

    white-space: nowrap;
}

.dropdown:hover .dropdown-menu {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}

/* MOBILE ONLY LINKS */

.mobile-only {
    display: none;
}

nav a {
    text-decoration: none;

    color: var(--color-text-muted);

    font-size: 0.92rem;

    font-weight: 300;

    letter-spacing: 0.15px;

    line-height: 1;

    transition: color 0.3s ease;

    font-family: var(--font-body) !important;
}

nav a:hover {
    color: var(--color-brand);
}

/* =========================
   HEADER RIGHT
========================= */

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.email {
    font-size: 0.95rem;
    color: var(--color-text-medium);
    text-decoration: none;
}

.social {
    font-size: 0;
    cursor: pointer;
    color: var(--color-text-medium);
    text-decoration: none;
    line-height: 1;
    width: 22px;
    height: 22px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}.social:hover,
.email:hover {
    color: var(--color-brand);
}

/* =========================
   HERO SECTION
========================= */

.hero-section {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: stretch;
    min-height: 820px;
    padding-top: 0;
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    width: 100%;
    max-width: 460px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* =========================
   HERO IMAGE
========================= */

.hero-left {
    display: flex;
    justify-content: flex-start;
}

.hero-image {
    width: 100%;
    max-width: 490px;

    height: 820px;

    object-fit: cover;
}

/* =========================
   HERO RIGHT
========================= */

.hero-right {
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}

.hero-content {
    width: 100%;
    max-width: 460px;
}

/* =========================
   HERO TITLE
========================= */

.hero-content h2 {
    font-size: 72px;

    line-height: 90px;

    font-weight: 700;

    color: var(--color-brand);

    text-align: center;
}

/* =========================
   HERO TAGLINE
========================= */

.hero-content p {
    margin-top: 48px;

    text-align: center;

    font-size: 2rem;

    font-style: italic;

    font-weight: 600;

    color: var(--color-text-strong);
}

/* =========================
   CELEBRATE SECTION
========================= */

.celebrate-section {
    padding: 120px 20px;

    text-align: center;
}

.celebrate-content {
    max-width: 900px;
}

.celebrate-content h2 {
    font-size: 5rem;

    color: var(--color-brand);

    margin-bottom: 40px;
}

.celebrate-content p {
    font-size: 1.15rem;

    line-height: 2;

    margin-bottom: 20px;
}

/* =========================
   SPLIT SECTION
========================= */

.split-section {
    display: grid;

    grid-template-columns: 1fr 1fr;

    height: 840px;
}

.reverse {
    direction: rtl;
}

.reverse .split-text,
.reverse .split-image {
    direction: ltr;
}

/* IMAGE */

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* TEXT */

.split-text {
    background: var(--color-brand);

    color: white;

    padding: 90px 70px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-text h2 {
    font-size: 4rem;

    color: white;

    margin: 0 0 40px;
}

.split-text p {
    font-size: 1.3rem;

    font-family: var(--font-display);

    line-height: 2;

    margin: 0 0 24px;
}

.split-text p:last-child {
    margin-bottom: 0;
}

/* =========================
   FINAL SECTION
========================= */

.final-section {
    padding: 70px 0 40px;

    text-align: center;
}

.final-content {
    max-width: 980px;
}

.final-content p {
    font-size: 1.3rem;

    font-family: var(--font-display);

    font-weight: 600;

    line-height: 1.7;

    color: var(--color-text);

    margin-bottom: 6px;
}

/* BUTTON */

.final-section a.contact-btn {
    display: inline-block;

    margin-top: 45px;

    padding: 20px 46px;

    font-size: 1rem;
}

/* =========================
   FOOTER
========================= */

footer {
    margin-top: 10px;
}

/* MAIN FOOTER */

.footer-main {
    text-align: center;

    padding: 40px 0 30px;
}

/* FOOTER TITLE */

.footer-main h3 {
    color: var(--color-brand);

    font-size: 2.2rem;

    font-weight: 600;

    margin-bottom: 18px;
}

/* FOOTER EMAIL */

.footer-main p {
    font-size: 0.95rem;

    margin-bottom: 24px;

    color: var(--color-text);
}

/* SOCIALS */

.footer-socials {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 16px;

    font-size: 1.2rem;
}

.footer-socials a {
    color: transparent;
    text-decoration: none;
    line-height: 1;
    width: 22px;
    height: 22px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}.footer-socials a:hover {
    color: var(--color-brand);
}

/* FOOTER BOTTOM */

.footer-bottom {
    background: var(--color-footer);

    text-align: center;

    padding: 10px;

    font-size: 0.75rem;

    color: var(--color-text-soft);
}

/* ========================================
   MOBILE CONTACT BAR
======================================== */

.mobile-contact-bar {
    display: none;
}

@media(max-width: 768px) {
    body {
        padding-bottom: 92px;
    }

    .mobile-contact-bar {
        position: fixed;

        left: 0;

        right: 0;

        bottom: 0;

        z-index: 3000;

        display: flex;

        justify-content: space-around;

        align-items: center;

        background: var(--color-page);

        border-top: 1px solid var(--color-line-soft);

        padding: 10px 8px calc(8px + env(safe-area-inset-bottom));

        box-shadow: 0 -8px 22px rgba(0,0,0,0.08);
    }

    .mobile-contact-item {
        display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: center;

        gap: 6px;

        min-width: 80px;

        color: var(--color-text-strong);

        text-decoration: none;

        font-size: 0.9rem;

        line-height: 1;
    }

    .mobile-contact-icon {
        font-size: 2.05rem;

        font-weight: 700;

        line-height: 1;
    }

    .icon-phone {
        color: #7ebf67;
    }

    .icon-email {
        color: #b82f6f;
    }

    .mobile-contact-label {
        font-size: 0.8rem;
    }
}

/* ========================================
   ABOUT PAIGE PAGE
======================================== */

.about-main-section {
    display: grid;

    grid-template-columns: 58% 42%;

    align-items: start;

    padding-top: 35px;

    width: 96%;

    max-width: 1450px;

    margin: auto;
}

/* LEFT IMAGE */

.about-main-image {
    display: flex;
    justify-content: flex-start;
}

.about-main-image img {
    width: 90%;

    max-width: 860px;

    height: auto;

    object-fit: contain;
    object-position: left top;

    display: block;
}

/* RIGHT CONTENT */

.about-main-content {
    padding: 112px 64px 0 48px;
}

/* NAME */

.about-main-content h2 {
    font-size: 5rem;

    line-height: 1;

    color: var(--color-brand);

    margin-bottom: 45px;
}

/* SUBTITLE */

.about-main-content h3 {
    font-size: 2rem;

    line-height: 1.4;

    color: var(--color-text);

    margin-bottom: 55px;
}

/* PARAGRAPHS */

.about-main-content p {
    font-size: 1.08rem;

    line-height: 2;

    margin-bottom: 34px;

    color: var(--color-text);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width: 1200px) {

    .hero-content h2 {
        font-size: 4.5rem;
    }

    .brand-text h1 {
        font-size: 3rem;
    }

    .about-main-content h2 {
        font-size: 4rem;
    }

    .about-main-content h3 {
        font-size: 1.6rem;
    }

    .about-main-image img {
        width: 100%;

        max-width: none;

        height: auto;
    }
}

/* =========================
   TABLET
========================= */

@media(max-width: 520px) {

    .top-header {
        flex-direction: column;
        gap: 24px;
    }

    .brand-area {
    margin-bottom: 10px;
}

    .header-right {
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-section {
        grid-template-columns: 1fr;

        min-height: auto;

        gap: 40px;

        padding-bottom: 80px;
    }

    .hero-image {
        height: auto;
        max-width: 100%;
    }

    .hero-content h2 {
        font-size: 4.5rem;
    }

    .split-section {
        grid-template-columns: 1fr;

        height: auto;
    }

    .split-text {
        padding: 60px 35px;
    }

    .split-text h2 {
        font-size: 3rem;
    }

    .about-main-section {
        grid-template-columns: 1fr;
    }

    .about-main-image img {
        height: auto;
    }

    .about-main-content {
        padding: 60px 35px;
    }

    .about-main-content h2 {
        font-size: 3.5rem;
    }

    .about-main-content h3 {
        font-size: 1.4rem;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width: 600px) {

    .brand-area {
        flex-direction: column;
        text-align: center;
    }

    .brand-text h1 {
        font-size: 2.2rem;
    }

    .brand-text p {
        font-size: 1rem;
    }

    a.contact-btn {
        padding: 16px 30px;
    }

    .hero-content h2 {
        font-size: 3.3rem;
    }

    .hero-content p {
        font-size: 1.5rem;
    }

    .celebrate-content h2 {
        font-size: 3.2rem;
    }

    .split-text h2 {
        font-size: 2.8rem;
    }

    .split-text {
        padding: 50px 30px;
    }

    .split-text p {
        line-height: 1.8;
    }

    .final-section {
        padding: 50px 0 30px;
    }

    .final-content p {
        font-size: 0.95rem;

        line-height: 1.6;
    }

    .footer-main h3 {
        font-size: 1.8rem;
    }

    .footer-main p {
        font-size: 0.9rem;
    }

    .footer-socials {
        font-size: 1rem;
    }

    .about-main-content {
        padding: 45px 24px;
    }

    .about-main-content h2 {
        font-size: 2.7rem;

        margin-bottom: 28px;
    }

    .about-main-content h3 {
        font-size: 1.2rem;

        margin-bottom: 32px;
    }

    .about-main-content p {
        font-size: 1rem;

        line-height: 1.8;

        margin-bottom: 24px;
    }
}

/* ========================================
   WEDDINGS PAGE
======================================== */

/* HERO */

.weddings-hero {
    height: 260px;

    background-image:
        linear-gradient(
            rgba(0,0,0,0.18),
            rgba(0,0,0,0.18)
        ),
        url("https://static.wixstatic.com/media/11062b_ebcdc819b77d48e1bda98422b49f3f2c~mv2.jpg/v1/fill/w_1634,h_519,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/11062b_ebcdc819b77d48e1bda98422b49f3f2c~mv2.jpg");

    background-size: cover;
    background-position: center;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
}

/* HERO CONTENT */

.weddings-hero-content {
    max-width: 940px;

    width: 100%;

    padding: 20px;

    transform: translateY(-20px);
}

.weddings-hero-content h2 {
    font-family: var(--font-display);

    font-size: 46px;

    font-weight: 400;

    line-height: 62px;

    color: white;

    margin-bottom: 18px;
}

.weddings-hero-subtitle {
    display: block;

    font-size: 30px;

    line-height: 1.2;
}

.weddings-hero-content p {
    font-family: var(--font-display);

    font-size: 22px;

    font-weight: 400;

    line-height: 1.35;

    font-style: italic;

    color: white;
}

/* ========================================
   CEREMONY GRID
======================================== */

.ceremony-grid-section {
    display: flex;

    flex-direction: column;
}

/* ROW */

.ceremony-row {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    align-items: stretch;

    min-height: 680px;
}

/* IMAGE CARD */

.ceremony-image-card {
    position: relative;
    min-height: 400px;
}

.ceremony-image-card img {
    width: 100%;

    height: 100%;
    min-height: 0;

    object-fit: cover;
    object-position: center center;

    display: block;
    position: absolute;
    inset: 0;
}

/* OVERLAY */



.ceremony-image-overlay h3 {
    font-size: 3.4rem;

    line-height: 1.1;

    color: white;

    font-weight: 600;
}

/* TEXT CARD */

.ceremony-text-card {
    background: var(--color-card);

    padding: 40px 60px;

    text-align: left;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.ceremony-row:nth-child(3) .ceremony-text-card {
    padding-top: 40px;
    padding-bottom: 40px;
}

.ceremony-row:nth-child(3) .ceremony-image-card img {
    height: 100%;
}

.ceremony-text-card p {
    font-family: 'Playfair Display', serif;

    font-size: 14px;

    line-height: 24px;

    font-weight: 400;

    color: var(--color-text-medium);

    margin-bottom: 10px;
}

.ceremony-text-card p.ceremony-body {
    font-size: 15px;

    line-height: 26px;
}

.ceremony-text-card p strong {
    font-weight: 600;
}

.ceremony-card-title {
    font-family: 'Playfair Display', serif;

    font-size: 24px;

    line-height: 34px;

    font-weight: 400;

    text-align: left;

    color: var(--color-text-medium);

    margin-bottom: 24px;
}

.ceremony-highlight {
    font-family: var(--font-display);
    font-size: 1.25rem;
    line-height: 1.12;
    font-weight: 600;
    color: var(--color-text-medium);
    margin: 6px 0;
}

.ceremony-includes-list {
    list-style: disc;
    margin: 0 0 10px 20px;
    padding: 0;

    list-style-position: outside;
    text-align: left;
}

.ceremony-includes-list li {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: var(--color-text-medium);
    margin-bottom: 2px;
    text-align: left;
}

/* ========================================
   FINAL SECTION
======================================== */

.weddings-final-section {
    padding: 120px 0 100px;

    text-align: center;
}

.weddings-final-content {
    max-width: 1200px;
}

.weddings-final-content p {
    font-family: 'Playfair Display', serif;

    font-size: 2rem;
    line-height: 1.4;

    font-weight: 600;

    color: var(--color-text-medium);

    margin-bottom: 18px;
}

.weddings-final-content .weddings-final-small {
    font-size: 0.85rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.weddings-final-content p:last-of-type {
    margin-bottom: 56px;
}

/* ========================================
   WEDDINGS RESPONSIVE
======================================== */

@media(max-width: 1200px) {

    .weddings-hero {
        height: 300px;
    }

    .weddings-hero-content h2 {
        font-size: 2.8rem;
    }

    .weddings-hero-subtitle {
        font-size: 2rem;
    }

    .ceremony-image-overlay h3 {
        font-size: 2.8rem;
    }

    .ceremony-text-card p {
        font-size: 13px;

        line-height: 22px;
    }
}

/* TABLET */

@media(max-width: 900px) {

    .ceremony-row {
        grid-template-columns: 1fr;

        min-height: auto;
    }

    .ceremony-image-card img {
        height: 360px;
    }

    .ceremony-image-card {
        min-height: 360px;
    }

    .ceremony-text-card {
        padding: 50px 35px;
    }

    .weddings-hero {
        height: 300px;
    }

    .weddings-hero-content h2 {
        font-size: 4rem;
    }

    .weddings-hero-subtitle {
        font-size: 2.6rem;
    }

    .weddings-hero-content p {
        font-size: 1.8rem;
    }
}

/* MOBILE */

@media(max-width: 600px) {

    .weddings-hero {
        height: 500px;
    }

    .weddings-hero-content h2 {
        font-size: 2.8rem;
    }

    .weddings-hero-subtitle {
        font-size: 2rem;
    }

    .weddings-hero-content p {
        font-size: 1.5rem;
    }

    .ceremony-image-overlay h3 {
        font-size: 2.3rem;
    }

    .ceremony-text-card p {
        font-size: 1.05rem;
    }

    .ceremony-highlight {
        font-size: 2rem;
    }

    .ceremony-includes-list li {
        font-size: 1.05rem;
    }

    .weddings-final-content p {
        font-size: 1.15rem;
    }
}

/* ========================================
   GALLERY PAGE
======================================== */

.gallery-hero {
    padding: 80px 0 50px;

    text-align: center;
}

.gallery-hero-content h2 {
    font-size: 5.5rem;

    color: var(--color-brand);

    margin-bottom: 18px;
}

.gallery-hero-content p {
    font-size: 1.15rem;

    color: var(--color-text-soft);
}

/* GRID */

.gallery-section {
    margin-top: -6px;
    padding-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 8px;
    grid-auto-flow: row;
    gap: 8px;

    width: 100%;
    max-width: none;

    margin: 0;
}

.gallery-item {
    display: block;
    position: relative;
    overflow: hidden;
    margin: 0;
}

.gallery-item img {
    width: 100%;

    display: block;
}

.gallery-hover-caption {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(248,248,248,0.74);
    color: #464646;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.gallery-hover-title {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 2rem);
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 10px;
}

.gallery-hover-byline {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.35vw, 1.8rem);
    line-height: 1.25;
    font-weight: 400;
}

.gallery-item:hover .gallery-hover-caption {
    opacity: 1;
}

.gallery-item:focus-within .gallery-hover-caption {
    opacity: 1;
}

/* RESPONSIVE */

@media(max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media(max-width: 900px) {

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .gallery-hero-content h2 {
        font-size: 4rem;
    }
}

@media(max-width: 640px) {

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 6px;
        grid-auto-rows: auto;
    }

    .gallery-hover-caption {
        display: none;
    }

    .gallery-hero {
        padding-top: 50px;
    }

    .gallery-hero-content h2 {
        font-size: 3rem;
    }
}
/* ========================================
   CONTACT PAGE
======================================== */

.contact-page-section {
    display: grid;

    grid-template-columns: 48% 52%;

    align-items: start;

    padding-top: 40px;

    max-width: 1700px;

    margin: auto;
}

/* LEFT IMAGE */

.contact-image img {
    width: 100%;

    height: 1400px;

    object-fit: cover;

    display: block;
}

/* RIGHT SIDE */

.contact-form-wrapper {
    padding: 120px 48px 0 40px;
}

/* TITLE */

.contact-form-wrapper h2 {
    font-size: 3.25rem;

    line-height: 1.05;

    color: var(--color-brand);

    margin-bottom: 50px;

    text-align: center;
}

/* FORM */

.contact-form {
    width: 100%;
}

/* GROUP */

.form-group {
    margin-bottom: 28px;
}

/* LABEL */

.form-group label {
    display: block;

    font-size: 0.95rem;

    color: var(--color-text-muted);

    margin-bottom: 8px;
}

/* INPUTS */

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;

    padding: 18px;

    border: 1px solid var(--color-input-border);

    background: transparent;

    font-size: 0.95rem;
}

/* TEXTAREA */

.contact-form textarea {
    resize: vertical;
}

/* CHECKBOXES */

.checkbox-group {
    display: flex;

    flex-direction: column;

    gap: 10px;

    margin-top: 10px;
}

.checkbox-group label {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    font-size: 1rem;

    line-height: 1.4;

    color: var(--color-text-muted);
}

.checkbox-group input[type="checkbox"] {
    width: 18px;

    height: 18px;

    margin-top: 3px;

    flex-shrink: 0;
}

/* BUTTON */

.submit-btn {
    border: none;

    cursor: pointer;

    margin-top: 15px;

    width: 180px;
}

/* ========================================
   CONTACT RESPONSIVE
======================================== */

@media(max-width: 1000px) {

    .contact-page-section {
        grid-template-columns: 1fr;
    }

    .contact-image img {
        height: auto;
    }

    .contact-form-wrapper {
        padding: 60px 35px;
    }

    .contact-form-wrapper h2 {
        font-size: 3.8rem;
    }
}

@media(max-width: 600px) {

    .contact-form-wrapper {
        padding: 45px 24px;
    }

    .contact-form-wrapper h2 {
        font-size: 2.8rem;
    }

    button.submit-btn {
        font-size: 1.5rem;
    }

    .submit-btn {
        font-size: 1.5rem;
        width: 140px;
    }
}
/* ========================================
   TESTIMONIAL PAGE
======================================== */

.testimonial-banner {
    position: relative;
}

.testimonial-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.26);
    pointer-events: none;
    z-index: 1;
}

.testimonial-banner img {
    width: 100%;

    height: 300px;

    object-fit: cover;
    object-position: center 42%;

    display: block;
}

.testimonial-banner h1,
.testimonial-banner h2 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
        font-size: 5.5rem;
        font-weight: 600;
        color: #ffffff;
        z-index: 2;
        text-shadow: 0 3px 14px rgba(0, 0, 0, 0.28);
        max-width: 90%;
        margin: 0;
        line-height: 62px;
    }

.testimonial-section {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1600px;
    margin: 70px auto 26px;
    padding: 0 74px;
}

/* SLIDER */

.testimonial-slider {
    width: 100%;
}

/* EACH SLIDE */

.testimonial-slide {
    display: none;

    grid-template-columns: 48% 52%;

    align-items: center;

    gap: 56px;
}

.testimonial-slide.active {
    display: grid;
}

/* IMAGE */

.testimonial-image img {
    width: 100%;

    max-width: 460px;

    height: 520px;

    object-fit: cover;

    display: block;

    margin: auto;
}

/* TEXT */

.testimonial-content {
    text-align: center;

    padding-right: 110px;
}

.testimonial-content p {
    font-size: 1.08rem;

    line-height: 1.6;

    color: #4b4b4b;

    margin: 0 0 28px;
}

.testimonial-content h3 {
    font-size: 2rem;

    font-weight: 700;

    line-height: 1;

    color: var(--color-text-medium);

    margin: 0;
}

/* ARROWS */

.testimonial-arrow {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    background: transparent;

    border: none;

    font-size: 2.2rem;

    font-weight: 300;

    line-height: 1;

    color: #646464;

    cursor: pointer;

    z-index: 10;

    transition: 0.3s;
}

.testimonial-arrow:hover {
    color: var(--color-brand);
}

.testimonial-arrow.left {
    left: 74px;
}

.testimonial-arrow.right {
    right: 74px;
}

/* DOTS */

.testimonial-dots {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 14px;

    margin-bottom: 14px;
}

.dot {
    width: 9px;

    height: 9px;

    border-radius: 50%;

    background: #5f5f5f;

    opacity: 0.8;

    transition: 0.3s;
}

.dot.active {
    opacity: 1;

    background: transparent;

    border: 2px solid #5f5f5f;

    transform: none;
}

/* ========================================
   RESPONSIVE
======================================== */

@media(max-width: 1200px) {

    .testimonial-slide {
        gap: 50px;
    }

    .testimonial-content {
        padding-right: 80px;
    }

    .testimonial-content p {
        font-size: 1.08rem;
    }

    .testimonial-content h3 {
        font-size: 2rem;
    }
}

@media(max-width: 1000px) {

    .testimonial-section {
        padding: 0 30px;
    }

    .testimonial-slide {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .testimonial-content {
        padding-right: 0;
    }

    .testimonial-image img {
        height: auto;

        max-width: 100%;
    }

    .testimonial-content p {
        font-size: 1.5rem;
    }

    .testimonial-content h3 {
        font-size: 2.2rem;
    }

    .testimonial-arrow {
        font-size: 3.5rem;
    }
}

@media(max-width: 600px) {

    .testimonial-banner img {
        height: 300px;
    }

    .testimonial-banner h2 {
        font-size: 2.8rem;
    }

    .testimonial-section {
        margin-top: 35px;
    }

    .testimonial-content p {
        font-size: 1.25rem;

        line-height: 1.6;
    }

    .testimonial-content h3 {
        font-size: 1.9rem;
    }

    .testimonial-arrow {
        font-size: 2.8rem;
    }

    .testimonial-dots {
        gap: 8px;
    }

    .dot {
        width: 8px;

        height: 8px;
    }
}
/* ========================================
   MOBILE HAMBURGER MENU
======================================== */

.hamburger {
    display: none;

    flex-direction: column;

    gap: 6px;

    cursor: pointer;

    padding: 10px;
}

.hamburger span {
    display: block;

    width: 30px;

    height: 3px;

    background: var(--color-text-medium);

    transition: 0.3s;
}

/* ========================================
   MOBILE NAVIGATION
======================================== */

@media(max-width: 900px) {

    /* TOP HEADER */

    .top-header {
        position: relative;

        flex-direction: column;

        gap: 20px;

        text-align: center;

        padding: 22px 0;
    }

    .contact-btn {
        display: none;
    }

    /* NAV BAR */

.nav-inner {

    position: relative;

    display: flex;

    justify-content: center;

    align-items: flex-start;

    min-height: 0;
}

    /* HAMBURGER SHOWS */

.hamburger {

    display: flex;

    position: absolute;

    top: 18px;

    right: 10px;

    z-index: 2000;
}

    /* HIDE EMAIL + SOCIALS */

    .header-right {
        display: none;
    }

    /* MOBILE NAV */

    .main-nav {
        position: absolute;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        top: 0;

        left: 0;

        width: 100%;

        background: var(--color-page);

        border-top: 1px solid var(--color-line-soft);

        display: none;

        z-index: 999;

        padding: 25px 0;
    }

    /* OPEN MENU */

    .main-nav.active {
        display: block;
    }

    /* STACK LINKS */

    .main-nav ul {
        flex-direction: column;

        justify-content: center;

        align-items: center;

        gap: 22px;
    }

    /* LINKS */

    .main-nav a {
        font-size: 1.1rem;
    }

    /* PREVENT WRAPPING */

    nav ul {
        flex-wrap: nowrap;
    }

        /* MOBILE DROPDOWN */


    .desktop-dropdown {
        display: none;
    }

    .mobile-only {
        display: block;
    }
}
/* =========================
   HUMANIST CEREMONIES PAGE
========================= */

.humanist-section {
    padding: 30px 0 0;
    background: var(--color-surface);
}

.humanist-container {
    width: 96%;
    max-width: 1450px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 48% 52%;
    gap: 0;
    align-items: stretch;
}

.humanist-left {
    width: auto;
    max-width: none;
    margin: 0;
    padding: 0 30px 0 0;
    min-width: 0;
    justify-content: flex-start;
}

.humanist-right img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center;
    display: block;
}

.humanist-left h2 {
    font-size: 52px;
    line-height: 1.04;
    font-weight: 400;
    color: var(--color-brand-dark);
    margin-bottom: 14px;
    max-width: 420px;
}

.humanist-source {
    font-family: var(--font-display);
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 20px;
    color: var(--color-text-medium);
    max-width: 420px;
}

.fact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.fact-star {
    color: var(--color-brand-soft);
    font-size: 27px;
    line-height: 1;
    margin: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.fact-item p {
    font-family: var(--font-display);
    font-size: 1.4rem;
    line-height: 1.45;
    color: var(--color-text);
    max-width: 420px;
    margin-bottom: 14px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {

    .humanist-container {
        display: flex;
        flex-direction: column;
    }

    .humanist-left,
    .humanist-right {
        width: 100%;
        padding: 0 4%;
    }

    .humanist-left h2 {
        font-size: 50px;
        line-height: 1.08;
    }

}

@media (max-width: 768px) {

    .humanist-section {
        padding: 36px 0 46px;
    }

    .humanist-left h2 {
        font-size: 40px;
        line-height: 1.1;
    }

    .humanist-source {
        font-size: 14px;
        line-height: 1.35;
    }

    .fact-item {
        gap: 12px;
        margin-bottom: 16px;
    }

    .fact-star {
        font-size: 24px;
        margin-top: -2px;
    }

    .fact-item p {
        font-size: 14px;
        line-height: 1.4;
    }

}

/* =========================
   MOBILE: overlay button + hide header on scroll
========================= */

@media (max-width: 900px) {

    body {
        padding-top: 240px;
    }

    header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(255,255,255,0.98);
        z-index: 9999;
        transition: transform 0.28s ease;
        will-change: transform;
    }

    .top-header {
        position: relative;
        padding: 12px 0 10px;
    }

    .top-header .contact-btn {
        display: inline-block;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: calc(100% + 8px);
        padding: 12px 26px;
        font-size: 1.1rem;
        border-radius: 6px;
        box-shadow: 0 6px 18px rgba(0,0,0,0.12);
        z-index: 10001;
    }

    .nav-container {
        margin-top: 0;
        position: relative;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(255,255,255,0.98);
        display: none;
        z-index: 10000;
        padding: 25px 0;
    }

    .main-nav.active {
        display: block;
    }

    header.header-hidden {
        transform: translateY(-100%);
    }

}

/* ========================================
   FAQ PAGE
======================================== */

.faq-title-section {
    text-align: center;

    padding: 46px 0 24px;
}

.faq-title-section h2 {
    font-size: 50px;
    line-height: 67px;

    font-weight: 500;

    color: var(--color-brand);
}

/* GRID */

.faq-grid-section {
    display: grid;

    grid-template-columns: 1fr 1fr;
}

.faq-grid-section > :nth-child(1),
.faq-grid-section > :nth-child(2) {
    height: 780px;
}

/* IMAGES */

.faq-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;
    object-position: center center;

    display: block;
}

/* TEXT BOX */

.faq-text-box {
    background: var(--color-brand-panel);

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 48px 40px;
    }

    .faq-grid-section > .faq-text-box:nth-child(3) {
        justify-content: center;
        padding: 48px 40px;
    }

    /* CONTENT */

.faq-content {
    max-width: 700px;
    text-align: left;
    width: 100%;
    display: block;
    box-sizing: border-box;
    padding: 32px 36px;
    }

.faq-content h3 {
    font-size: 1.4rem;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #ffffff;
    margin-bottom: 18px;
    padding-left: 16px;
    position: relative;
}

.faq-content h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: var(--color-highlight, #f7b9b5);
    border-radius: 999px;
}

.faq-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: white;
    margin-bottom: 14px;
    word-break: break-word;
}

.faq-content ul {
    margin: 0 0 10px 16px;

    padding: 0;

    color: white;
}

.faq-content li {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 6px;
}

/* LINK */

.faq-link {
    color: white;

    text-decoration: underline;

    font-size: 1rem;
}

/* CTA */

.faq-cta-section {
    text-align: center;

    padding: 70px 0;
}

/* ========================================
   FAQ RESPONSIVE
======================================== */





@media(max-width: 900px) {

    .faq-grid-section {
        grid-template-columns: 1fr;
    }

    .faq-grid-section > :nth-child(1),
    .faq-grid-section > :nth-child(2) {
        height: auto;
    }

    .faq-text-box {
        padding: 60px 35px;
    }










    .faq-title-section h2 {
        font-size: 3rem;
    }
}

@media(max-width: 600px) {

    .faq-title-section {
        padding: 45px 0 30px;
    }

    .faq-title-section h2 {
        font-size: 2.3rem;
    }

    .faq-content h3 {
        font-size: 1.9rem;
    }

    .faq-content p {
        font-size: 0.95rem;

        line-height: 1.8;
    }

    .faq-content li {
        font-size: 0.95rem;

        line-height: 1.8;
    }

}