/* ================================================
   LANDRY MARIE PHOTOGRAPHY
   Rustic · Warm · Timeless
================================================ */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Figtree:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Tangerine&family=Shadows+Into+Light&display=swap');

/* ─── Custom Properties ──────────────────────── */
:root {
    --brown-darkest:  #1A1414;
    --brown-deep:     #211B1B;
    --brown-dark:     #2C2525;
    --brown-mid:      #3B2E2E;
    --brown-warm:     #7B4F2E;
    --brown-accent:   #C45E39;
    --brown-light:    #B8845A;
    --olive-dark:     #585030;
    --olive-mid:      #6B6038;
    --cream:          #FBF6E9;
    --cream-light:    #FDFAF3;
    --parchment:      #EAD9B8;
    --gold:           #C49A3C;
    --gold-light:     #D4AB52;
    --gold-pale:      #E8CC80;
    --white:          #FEFCF8;
    --text-dark:      #2A1705;
    --text-body:      #3E2410;
    --text-muted:     #967550;
    --text-light:     #F2E8D5;

    --font-display:   'Tangerine', cursive;
    --font-script:    'Tangerine', cursive;
    --font-hand:      'Shadows Into Light', cursive;
    --font-body:      'Figtree', sans-serif;

    --section-pad:    8rem;
    --max-width:      1296px;
    --side-pad:       2.5rem;
    --nav-height:     120px;
}

/* ─── Reset & Base ───────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }
body {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-body);
    background-color: var(--cream-light);
    line-height: 1.85;
    -webkit-font-smoothing: antialiased;
    padding-top: var(--nav-height);
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; background: none; border: none; }
:where(a, button, input, textarea):focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 4px;
}

/* ─── Navigation ─────────────────────────────── */
.site-nav {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 999;
    padding: 1.5rem var(--side-pad);
    background: rgba(12, 6, 1, 0.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(196, 154, 60, 0.14);
    transition: padding 0.4s ease, background 0.4s ease;
}
.site-nav.scrolled {
    padding: 1rem var(--side-pad);
    background: rgba(8, 4, 0, 0.97);
}
.nav-logo {
    width: 100px;
    height: 100px;
    flex: 0 0 100px;
    display: grid;
    place-items: center;
    transform: rotate(-8deg);
}
.nav-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 9px 16px rgba(0,0,0,0.38));
}
.nav-links {
    display: flex; gap: 2.4rem; list-style: none;
    position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a {
    font-family: var(--font-body);
    font-size: 0.68rem; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(242, 232, 213, 0.72);
    transition: color 0.22s;
    position: relative; padding-bottom: 4px;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1px; background: var(--gold);
    transition: width 0.32s ease;
}
.nav-links a:hover { color: rgba(242, 232, 213, 1); }
.nav-links a:hover::after,
.nav-links a.active::after,
.nav-links .current-menu-item > a::after,
.nav-links .current_page_item > a::after { width: 100%; }
.nav-links a.active,
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a { color: var(--gold-pale); }
.nav-cta a {
    font-size: 0.65rem; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--white);
    background: var(--brown-accent);
    border: 1px solid var(--brown-accent);
    padding: 16px 24px;
    transition: all 0.22s;
}
.nav-cta a:hover {
    background: #B3532F;
    border-color: #B3532F;
    color: var(--white);
}
.hamburger {
    display: none; flex-direction: column; gap: 5px; padding: 4px;
}
.hamburger span {
    display: block; width: 24px; height: 1.5px;
    background: var(--text-light); transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
    display: none; position: fixed; inset: 0;
    background: rgba(8, 4, 0, 0.98); z-index: 998;
    flex-direction: column; align-items: center; justify-content: center; gap: 2.8rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu li { list-style: none; }
.mobile-menu a {
    font-family: var(--font-display); font-size: 1.9rem;
    font-weight: 400; color: var(--cream); letter-spacing: 0.03em;
    transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold-light); }

/* ─── Hero ───────────────────────────────────── */
.hero {
    position: relative;
    height: calc(100vh - var(--nav-height));
    min-height: 560px;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transform: scale(1.05); transition: transform 8s ease;
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(8, 4, 0, 0.42) 0%,
        rgba(8, 4, 0, 0.4) 40%,
        rgba(8, 4, 0, 0.68) 100%
    );
}
.hero-content {
    position: relative; z-index: 2;
    text-align: center; width: 100%; max-width: 760px; padding: 0 2rem;
}
.hero-eyebrow {
    display: block;
    position: relative;
    transform: translateY(-42px);
    font-size: 24px; font-weight: 700;
    letter-spacing: normal; text-transform: none;
    color: var(--white); margin-bottom: -0.6rem;
}
.hero-letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(14px) scale(0.92);
    animation: heroLetterPop 0.55s cubic-bezier(0.22, 0.8, 0.24, 1) forwards;
    animation-delay: var(--letter-delay);
}
@keyframes heroLetterPop {
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.hero-title {
    font-family: var(--font-script);
    font-size: 120px;
    font-weight: 400; line-height: 0.9;
    color: var(--white); margin-bottom: 1.2rem;
    letter-spacing: 0;
}
.hero-title em { font-style: normal; color: var(--white); }
.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.4vw, 1.12rem);
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 2rem;
    display: block;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}
.hero-body {
    font-family: var(--font-script);
    font-size: 40px; font-weight: 400; line-height: 1.1;
    max-width: 700px; margin: 0 auto 1.35rem;
    color: var(--white);
    text-align: center;
}
.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.85rem;
}
.hero-scroll {
    position: absolute; bottom: 2.8rem; left: 50%;
    transform: translateX(-50%); z-index: 2;
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    color: rgba(242, 232, 213, 0.42);
    font-size: 0.58rem; letter-spacing: 0.28em; text-transform: uppercase;
}
.hero-scroll::after {
    content: ''; display: block; width: 1px; height: 48px;
    background: linear-gradient(to bottom, rgba(242,232,213,0.42), transparent);
    animation: scrollPulse 2.4s ease infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.42; transform: scaleY(1); }
    50%       { opacity: 0.15; transform: scaleY(0.55); }
}

/* ─── Buttons ────────────────────────────────── */
.btn {
    display: inline-block;
    font-family: var(--font-body); font-size: 0.67rem;
    font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
    padding: 16px 24px; transition: all 0.28s ease;
    border: none; cursor: pointer; line-height: 1;
}
/* Primary — CTA orange */
.btn-primary {
    background: var(--brown-accent);
    color: var(--white);
    border: 1.5px solid var(--brown-accent);
}
.btn-primary:hover {
    background: #B3532F;
    border-color: #B3532F;
    transform: translateY(-2px);
}
/* Outline on dark backgrounds */
.btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.55);
    color: rgba(255,255,255,0.9);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.85);
    transform: translateY(-2px);
}
/* Outline on light backgrounds */
.btn-outline-dark {
    background: transparent;
    border: 1px solid rgba(58, 32, 8, 0.4);
    color: var(--brown-dark);
}
.btn-outline-dark:hover {
    background: var(--brown-dark);
    border-color: var(--brown-dark);
    color: var(--cream-light);
    transform: translateY(-2px);
}
/* Gold ghost — on dark/olive backgrounds */
.btn-ghost-light {
    background: transparent;
    border: 1px solid rgba(196,154,60,0.5);
    color: var(--gold-pale);
}
.btn-ghost-light:hover {
    background: rgba(196,154,60,0.1);
    border-color: var(--gold-light);
    transform: translateY(-2px);
}

/* ─── Section Utilities ──────────────────────── */
.section { padding: var(--section-pad) 0; }
.section-sm { padding: 5rem 0; }
.section-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--side-pad); }
.section-label {
    display: block;
    font-size: 0.63rem; font-weight: 700;
    letter-spacing: normal; text-transform: uppercase;
    color: var(--brown-accent); margin-bottom: 1rem;
}
.section-title {
    font-family: var(--font-display);
    font-size: 84px;
    font-weight: 400; line-height: 1.2;
    color: var(--brown-dark); margin-bottom: 1.6rem;
    letter-spacing: -0.01em;
    text-wrap: balance;
}
.section-title em {
    font-family: var(--font-script);
    font-style: normal;
    color: var(--brown-warm);
}
.section-intro {
    font-size: 1.05rem; line-height: 1.92;
    color: var(--text-muted); max-width: 600px;
}
.text-center { text-align: center; }
.text-center .section-intro { margin: 0 auto; }
.about-script-heading {
    display: block;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    line-height: 1.3;
    text-transform: uppercase;
    color: var(--brown-warm);
    margin: 2.75rem 0 0.9rem;
}

.home-contact-prompt {
    background: var(--brown-dark);
    color: var(--cream);
    padding: 4rem var(--side-pad);
    text-align: center;
}
.home-contact-prompt-inner {
    max-width: 760px;
    margin: 0 auto;
}
.home-contact-prompt h2 {
    font-family: var(--font-display);
    font-size: 84px;
    font-weight: 400;
    line-height: 1.18;
    margin-bottom: 1rem;
}
.home-contact-prompt p {
    color: rgba(242, 232, 213, 0.78);
    line-height: 1.8;
    margin: 0 auto 1.8rem;
    max-width: 560px;
}

/* Fine ornamental divider */
.ornament {
    display: flex; align-items: center; gap: 1.2rem; margin-bottom: 2.5rem;
}
.ornament-center { justify-content: center; }
.ornament-line { flex: 1; height: 1px; background: var(--parchment); max-width: 80px; }
.ornament-diamond {
    width: 4px; height: 4px;
    background: var(--gold); transform: rotate(45deg); flex-shrink: 0;
}

/* Fade-in animation */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.75s ease, transform 0.75s ease; }
.fade-in.visible { opacity: 1; transform: none; }
.fade-in-delay-1 { transition-delay: 0.12s; }
.fade-in-delay-2 { transition-delay: 0.24s; }
.fade-in-delay-3 { transition-delay: 0.36s; }
.fade-in-delay-4 { transition-delay: 0.48s; }

/* ─── Parchment Background ───────────────────── */
/* Gradient overlay lightens the texture for an airy, refined look */
.parchment-bg {
    background-image:
        linear-gradient(rgba(253, 250, 244, 0.72), rgba(253, 250, 244, 0.72)),
        url('../images/parchment-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ─── Scripture / Quote Banner ───────────────── */
.scripture-banner {
    background-color: var(--brown-dark);
    padding: 7rem 2rem; text-align: center;
    position: relative; overflow: hidden;
}
.scripture-banner::before {
    content: ''; position: absolute; inset: 0;
    background: url('../images/logos/logo-emboss.png')
        center/auto 70% no-repeat;
    opacity: 0.04; pointer-events: none;
}
.home-scripture-banner::before {
    width: 250px; height: 250px;
    inset: auto;
    bottom: 84px; left: 84px;
    background-image: url('../images/logos/logo-embossed-2.png');
    background-size: contain;
    opacity: 0.75;
    transform: rotate(-30deg);
}
.home-scripture-banner > * {
    position: relative;
    z-index: 1;
}
.scripture-quote {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, calc(3vw + 1rem), 3.3rem);
    font-weight: 400; font-style: italic; line-height: 1.65;
    color: var(--cream); max-width: 720px; margin: 0 auto 1.6rem;
}
.scripture-attr {
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--gold);
}

/* ─── Split Layout (image + text) ────────────── */
.split-section {
    display: grid; grid-template-columns: 1fr 1fr; min-height: 620px;
}
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-image { position: relative; overflow: hidden; }
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split-content {
    display: flex; flex-direction: column; justify-content: center;
    padding: 6rem 5rem;
}
.split-content p {
    font-size: 1rem; line-height: 1.92;
    color: var(--text-muted); margin-bottom: 1.2rem;
}

/* ─── Process Steps ──────────────────────────── */
.steps-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 4rem 6rem; margin-top: 5rem;
}
.step { position: relative; }
.step-number {
    display: block;
    font-family: var(--font-display);
    font-size: 5.5rem; font-weight: 400; line-height: 0.88;
    color: rgba(234, 217, 184, 0.5);
    margin-bottom: 0.6rem;
    letter-spacing: -0.03em;
    user-select: none;
}
.step-title {
    font-family: var(--font-display);
    font-size: 48px; font-weight: 400;
    color: var(--brown-dark); margin-bottom: 0.85rem;
}
.step-body { font-size: 1.08rem; line-height: 1.88; color: var(--text-muted); }

/* ─── Gallery Grid ───────────────────────────── */
.gallery-grid {
    columns: 3; column-gap: 5px;
}
.gallery-item {
    break-inside: avoid; margin-bottom: 5px;
    overflow: hidden; position: relative; cursor: pointer;
}
.gallery-item img {
    width: 100%; display: block;
    transition: transform 0.6s ease, filter 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.04); filter: brightness(1.03); }

/* Lightbox */
.lightbox {
    display: none; position: fixed; inset: 0; z-index: 2000;
    background: rgba(8, 4, 0, 0.96); align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close {
    position: fixed; top: 1.5rem; right: 2rem;
    color: var(--text-light); font-size: 2rem; font-weight: 300;
    background: none; border: none; cursor: pointer; line-height: 1;
    opacity: 0.7; transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; color: var(--gold); }
.lightbox-arrow {
    position: fixed; top: 50%; transform: translateY(-50%);
    color: rgba(242,232,213,0.45); font-size: 2.5rem; font-weight: 300;
    background: none; border: none; cursor: pointer; padding: 1rem;
    transition: color 0.2s;
}
.lightbox-arrow:hover { color: var(--gold); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* ─── Package Cards ──────────────────────────── */
.packages-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem; margin-top: 4rem; align-items: start;
}
.package-card {
    padding: 3.5rem 2.8rem 3.2rem;
    border: 1px solid rgba(234, 217, 184, 0.8);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: rgba(253, 250, 244, 0.7);
}
.package-card::after {
    content: ''; position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 32px; height: 1.5px; background: var(--gold);
}
.package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(10, 5, 1, 0.09);
}
.package-card.featured {
    border-color: rgba(196,154,60,0.45);
}
.package-featured-tag {
    position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
    font-size: 0.57rem; font-weight: 700; letter-spacing: 0.2em;
    text-transform: uppercase; background: var(--gold);
    color: var(--brown-darkest); padding: 0.28rem 0.9rem; white-space: nowrap;
}
.package-name {
    font-family: var(--font-script); font-size: 2.6rem;
    color: var(--brown-warm); margin-bottom: 0.2rem; line-height: 1.1;
}
.package-title {
    font-size: 0.7rem; font-weight: 700;
    color: var(--text-muted); margin-bottom: 1.2rem;
    letter-spacing: 0.18em; text-transform: uppercase;
}
.package-desc {
    font-size: 0.94rem; line-height: 1.82;
    color: var(--text-muted); margin-bottom: 1.6rem;
    padding-bottom: 1.6rem;
    border-bottom: 1px solid rgba(234, 217, 184, 0.8);
}
.package-includes { list-style: none; margin-bottom: 2.4rem; }
.package-includes li {
    font-size: 0.9rem; color: var(--text-body);
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(234, 217, 184, 0.5);
    display: flex; align-items: flex-start; gap: 0.7rem; line-height: 1.5;
}
.package-includes li::before {
    content: '✦'; color: var(--gold); font-size: 0.5rem;
    margin-top: 0.38em; flex-shrink: 0;
}

/* ─── Beliefs / Values Cards ─────────────────── */
.beliefs-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 0; margin-top: 4rem;
}
.belief-card {
    padding: 3rem 3.5rem;
    border-top: 1px solid rgba(234, 217, 184, 0.7);
    border-right: 1px solid rgba(234, 217, 184, 0.7);
    transition: background 0.3s ease;
}
.belief-card:nth-child(even) { border-right: none; }
.belief-card:nth-child(3), .belief-card:nth-child(4) { border-bottom: 1px solid rgba(234, 217, 184, 0.7); }
.belief-card:hover { background: rgba(234, 217, 184, 0.15); }
.belief-bar { width: 28px; height: 1.5px; background: var(--gold); margin-bottom: 1.4rem; }
.belief-title {
    font-family: var(--font-display);
    font-size: 48px; font-weight: 400;
    color: var(--brown-dark); margin-bottom: 0.85rem;
}
.belief-body { font-size: 0.96rem; line-height: 1.88; color: var(--text-muted); }

/* ─── Work Ethic Banner ──────────────────────── */
.ethic-banner {
    background-color: var(--olive-dark);
    padding: 7rem 2rem; text-align: center;
    position: relative; overflow: hidden;
}
.ethic-banner::before {
    content: ''; position: absolute; inset: 0;
    background: url('../images/logos/logo-emboss.png')
        center/auto 60% no-repeat;
    opacity: 0.05; pointer-events: none;
}
.ethic-inner { max-width: 780px; margin: 0 auto; position: relative; }
.ethic-label {
    display: block;
    font-size: 0.6rem; font-weight: 700;
    letter-spacing: normal; text-transform: uppercase;
    color: rgba(212,171,82,0.65); margin-bottom: 2rem;
}
.ethic-desc {
    font-size: 1rem; line-height: 1.95;
    color: rgba(242,232,213,0.68);
    max-width: 620px; margin: 0 auto 3rem;
}
.ethic-divider {
    width: 32px; height: 1px;
    background: rgba(196,154,60,0.35);
    margin: 0 auto 3rem;
}
.ethic-quote {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.7vw, 1.9rem);
    font-style: italic; line-height: 1.6;
    color: var(--cream); margin-bottom: 1.2rem;
}
.ethic-attr {
    font-size: 0.65rem; font-weight: 700;
    letter-spacing: 0.26em; text-transform: uppercase;
    color: var(--gold-light);
}

/* ─── Marriage Statement Section ─────────────── */
.marriage-section {
    background-color: #2C2525;
    padding: 8rem 2rem; text-align: center;
    position: relative; overflow: hidden;
}
.marriage-section::before {
    content: ''; position: absolute; inset: 0;
    background: url('../images/logos/logo-emboss.png')
        center/auto 80% no-repeat;
    opacity: 0.035; pointer-events: none;
}
.marriage-inner { max-width: 960px; margin: 0 auto; position: relative; }
.marriage-left {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 4rem);
    font-weight: 400; color: rgba(253, 250, 244, 0.88); line-height: 1.15;
    letter-spacing: -0.01em;
}
.marriage-right {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 4rem);
    font-weight: 400; font-style: italic;
    color: var(--gold-light); line-height: 1.15;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}
.marriage-rule {
    width: 40px; height: 1px;
    background: rgba(196,154,60,0.4); margin: 2.5rem auto;
}
.marriage-body {
    font-size: 1rem; line-height: 1.95;
    color: rgba(242,232,213,0.65);
    max-width: 600px; margin: 0 auto 3rem;
}

/* ─── Testimonials — Handwritten + Polaroid ──── */
.testimonials-section {
    position: relative;
    overflow: hidden;
    padding-top: 3rem;
}
.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}
.testimonial-card.text-only {
    display: block;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 0 3rem;
    border-bottom: 1px solid rgba(123, 79, 46, 0.2);
}
.testimonial-card.text-only:last-child { border-bottom: none; }
.testimonial-card.text-only .testimonial-quote-wrap { padding: 0; }
.testimonial-card.text-only .testimonial-text {
    font-family: var(--font-script);
    font-size: 34px;
    line-height: 1.18;
    font-weight: 400;
}
.testimonial-card.text-only:nth-child(4n + 1) .testimonial-text { color: var(--brown-warm); }
.testimonial-card.text-only:nth-child(4n + 2) .testimonial-text { color: var(--brown-accent); }
.testimonial-card.text-only:nth-child(4n + 3) .testimonial-text { color: var(--olive-dark); }
.testimonial-card.text-only:nth-child(4n) .testimonial-text { color: var(--gold); }
.testimonial-card.text-only .testimonial-author {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
}
.testimonial-photo-strip {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.3fr;
    gap: 6px;
    margin: 0 auto 1rem;
    max-width: 1080px;
}
.testimonial-photo-strip-bottom { margin: 1rem auto 4rem; }
.testimonial-photo-strip img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.testimonial-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 4rem;
    padding: 1rem 0;
    position: relative;
}
.testimonial-card.flip { grid-template-columns: 0.9fr 1.1fr; }
.testimonial-card.flip .testimonial-quote-wrap { order: 2; }
.testimonial-card.flip .testimonial-polaroid-wrap { order: 1; }

.testimonial-quote-wrap {
    padding: 1rem 1.5rem;
}
.testimonial-text {
    font-family: var(--font-hand);
    font-size: clamp(1.3rem, 1.7vw, 1.7rem);
    line-height: 1.55;
    color: var(--brown-dark);
    margin-bottom: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.005em;
}
.testimonial-author {
    font-family: var(--font-hand);
    font-size: clamp(1.1rem, 1.4vw, 1.4rem);
    color: var(--brown-warm);
    letter-spacing: 0.01em;
    text-transform: none;
    font-weight: 400;
}

/* Polaroid frame */
.testimonial-polaroid-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    position: relative;
}
.testimonial-polaroid {
    background: #ffffff;
    padding: 14px 14px 60px;
    box-shadow:
        0 18px 50px rgba(10,5,1,0.18),
        0 4px 12px rgba(10,5,1,0.08);
    position: relative;
    max-width: 440px;
    width: 100%;
    aspect-ratio: 5/4;
    transform: rotate(1.2deg);
    transition: transform 0.4s ease;
}
.testimonial-card:nth-child(even) .testimonial-polaroid { transform: rotate(-1.5deg); }
.testimonial-polaroid:hover { transform: rotate(0) translateY(-4px); }
.testimonial-polaroid::before {
    /* tape at the top */
    content: '';
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    width: 78px; height: 24px;
    background: rgba(196, 154, 60, 0.22);
    border-left: 1px dashed rgba(123, 79, 46, 0.18);
    border-right: 1px dashed rgba(123, 79, 46, 0.18);
    box-shadow: 0 2px 4px rgba(10,5,1,0.06);
}
.testimonial-polaroid img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}

/* Decorative mountain illustration */
.testimonials-mountain {
    position: absolute;
    bottom: 4%;
    right: 2%;
    width: clamp(180px, 22%, 360px);
    opacity: 0.55;
    pointer-events: none;
    z-index: 1;
}
.testimonials-mountain img {
    width: 100%; height: auto; display: block;
}

/* ─── Insights / Blog Cards ──────────────────── */
.insights-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 3rem; margin-top: 4rem;
}
.insight-card {
    overflow: hidden;
    transition: transform 0.3s ease;
    background: transparent;
}
.insight-card:hover { transform: translateY(-5px); }
.insight-thumb {
    position: relative; aspect-ratio: 5 / 4; overflow: hidden;
    margin-bottom: 1.8rem;
}
.insight-thumb img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}
.insight-card:hover .insight-thumb img { transform: scale(1.04); }
.insight-category {
    position: absolute; top: 1.1rem; left: 1.1rem;
    font-size: 0.56rem; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--brown-darkest); background: var(--gold);
    padding: 0.25rem 0.7rem;
}
.insight-content { padding: 0; }
.insight-title {
    font-family: var(--font-display);
    font-size: 48px; font-weight: 400;
    color: var(--brown-dark); margin-bottom: 0.85rem; line-height: 1.4;
}
.insight-excerpt {
    font-size: 0.94rem; line-height: 1.85; color: var(--text-muted);
}

/* ─── Footer ─────────────────────────────────── */
.site-footer {
    background-color: var(--brown-darkest);
    padding: 7rem 0 3.5rem;
    position: relative; overflow: hidden;
}
.site-footer::before {
    content: ''; position: absolute; inset: 0;
    background: url('../images/logos/logo-emboss.png')
        center/auto 52% no-repeat;
    opacity: 0.025; pointer-events: none;
}
.footer-inner {
    max-width: var(--max-width); margin: 0 auto; padding: 0 var(--side-pad);
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 6rem; align-items: start; position: relative;
}
.footer-logo { height: 52px; margin-bottom: 2.8rem; }
.footer-headline {
    font-family: var(--font-display);
    font-size: 84px;
    font-weight: 400; font-style: italic;
    color: var(--cream); line-height: 1.2; margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}
.footer-sub {
    font-size: 0.97rem; line-height: 1.82;
    color: rgba(242,232,213,0.48); margin-bottom: 2rem;
}
.footer-phone {
    font-size: 0.88rem; letter-spacing: 0.06em;
    color: var(--gold-light); margin-top: 0.5rem;
}
.footer-nav-links {
    list-style: none; display: flex; flex-wrap: wrap;
    gap: 0.5rem 1.8rem; margin-top: 2.2rem;
}
.footer-nav-links a {
    font-size: 0.65rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: rgba(242,232,213,0.32); transition: color 0.2s;
}
.footer-nav-links a:hover { color: var(--gold-light); }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.site-footer .btn { padding: 1rem 2.6rem; }
.landry-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.contact-form-notice {
    margin-bottom: 1rem;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(196,154,60,0.35);
    color: var(--text-light);
}
.contact-form-success { background: rgba(107,96,56,0.35); }
.contact-form-error { background: rgba(196,94,57,0.2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field input, .form-field textarea {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(196,154,60,0.15);
    color: var(--text-light);
    font-family: var(--font-body); font-size: 0.88rem;
    padding: 1rem 1.2rem; outline: none;
    transition: border-color 0.22s, background 0.22s;
    border-radius: 0; -webkit-appearance: none;
}
.form-field input::placeholder, .form-field textarea::placeholder {
    color: rgba(242,232,213,0.24); font-size: 0.84rem; letter-spacing: 0.03em;
}
.form-field input:focus, .form-field textarea:focus {
    border-color: rgba(196,154,60,0.5);
    background: rgba(255,255,255,0.07);
}
.form-field textarea { resize: vertical; min-height: 112px; }

/* Footer Bottom */
.footer-bottom {
    max-width: var(--max-width); margin: 4.5rem auto 0;
    padding: 2rem var(--side-pad) 0;
    border-top: 1px solid rgba(196,154,60,0.08);
    display: flex; align-items: center; justify-content: space-between;
    position: relative;
}
.footer-copyright {
    font-size: 0.7rem; color: rgba(242,232,213,0.24); letter-spacing: 0.04em;
}
.footer-tagline {
    font-family: var(--font-display); font-size: 1.1rem;
    font-style: italic; color: rgba(196,154,60,0.65);
}

/* ─── Horizontal Rule / Divider ──────────────── */
.section-rule {
    border: none; height: 1px;
    background: linear-gradient(to right, transparent, rgba(234,217,184,0.6), transparent);
    margin: 0;
}
.section-rule-gold {
    border: none; height: 1px;
    background: linear-gradient(to right, transparent, rgba(196,154,60,0.3), transparent);
    margin: 0;
}

/* ─── Page-specific Hero Variations ──────────── */
.hero-sm {
    height: auto;
    min-height: 62vh;
    align-items: flex-start;
    padding-top: 100px; /* clear fixed nav */
    padding-bottom: 5rem;
}
.hero-sm .hero-content {
    padding-top: 3rem;
    padding-bottom: 2rem;
}

/* ─── Page Hero — Split / Parchment Layout ───── */
.page-hero {
    min-height: 100vh;
    position: relative;
}
.page-hero-inner {
    display: grid;
    grid-template-columns: 42fr 58fr;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    min-height: 100vh;
}
.page-hero-sm {
    min-height: 84vh;
}
.page-hero-sm .page-hero-inner {
    min-height: 84vh;
}
.gallery-page-hero .page-hero-photo {
    height: calc(100vh - var(--nav-height) - 120px);
    max-height: 840px;
}
.page-hero-photo-col {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 84px 3rem;
}
.page-hero-photo {
    width: 100%;
    max-width: 460px;
    height: calc(100vh - var(--nav-height) - 168px);
    max-height: 780px;
    padding: 12px 12px 56px;
    background: #fffdf8;
    box-shadow:
        0 24px 60px rgba(10,5,1,0.18),
        0 6px 18px rgba(10,5,1,0.08);
    transform: rotate(-1.2deg);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    flex-shrink: 0;
}
.page-hero-photo::before {
    content: '';
    position: absolute;
    top: -13px;
    left: 50%;
    width: 82px;
    height: 25px;
    background: rgba(196,154,60,0.2);
    border-left: 1px dashed rgba(123,79,46,0.18);
    border-right: 1px dashed rgba(123,79,46,0.18);
    box-shadow: 0 2px 4px rgba(10,5,1,0.06);
    transform: translateX(-50%) rotate(2deg);
    z-index: 1;
}
.page-hero-photo:hover {
    transform: rotate(0) translateY(-4px);
    box-shadow:
        0 28px 68px rgba(10,5,1,0.2),
        0 8px 20px rgba(10,5,1,0.09);
}
.page-hero-sm .page-hero-photo {
    height: calc(84vh - var(--nav-height) - 168px);
    max-height: 580px;
}
.page-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 0;
}
.page-hero-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 84px 5rem 84px 3.5rem;
}
.page-hero-text-col .btn {
    align-self: flex-start;
    width: fit-content;
}
.page-hero-eyebrow {
    display: block;
    font-size: 0.64rem; font-weight: 700;
    letter-spacing: normal; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.6rem;
}
.page-hero-title {
    font-family: var(--font-display);
    font-size: 120px;
    font-weight: 400; line-height: 1.08;
    color: var(--brown-dark); margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
    text-wrap: balance;
}
.page-hero-title em {
    font-family: var(--font-script);
    font-style: normal;
    color: var(--brown-accent);
}
.page-hero-script {
    font-family: var(--font-script);
    font-size: clamp(1.5rem, 2.2vw, 2.2rem);
    color: var(--brown-warm);
    margin-bottom: 1.8rem;
    display: block;
}
.page-hero-body {
    font-size: 1.02rem; font-weight: 300; line-height: 1.92;
    max-width: 500px; color: var(--text-muted);
    margin-bottom: 2.8rem;
}
.page-hero-scroll {
    position: absolute; bottom: 2.4rem; right: 8%;
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    color: rgba(58, 32, 8, 0.32);
    font-size: 0.58rem; letter-spacing: 0.28em; text-transform: uppercase;
    z-index: 2;
}
.page-hero-scroll::after {
    content: ''; display: block; width: 1px; height: 48px;
    background: linear-gradient(to bottom, rgba(58,32,8,0.32), transparent);
    animation: scrollPulse 2.4s ease infinite;
}

/* ─── Home Polaroid Strip (hero junction) ────── */
.home-polaroid-strip {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 1.4rem;
    padding: 2.5rem 2.5rem 1rem;
    margin-top: -40px;
    background-color: var(--brown-dark);
    pointer-events: none;
}
.home-pol {
    --pol-rotate: 0deg;
    --pol-y: 0px;
    --pol-motion-x: 0px;
    --pol-motion-y: 0px;
    --pol-motion-rotate: 0deg;
    background: #ffffff;
    padding: 10px 10px 52px;
    box-shadow: 0 22px 55px rgba(8, 4, 0, 0.22), 0 6px 18px rgba(8, 4, 0, 0.1);
    width: 200px;
    flex-shrink: 0;
    position: relative;
    pointer-events: auto;
    transform: rotate(calc(var(--pol-rotate) + var(--pol-motion-rotate)))
        translate3d(var(--pol-motion-x), calc(var(--pol-y) + var(--pol-motion-y)), 0);
    transform-origin: center center;
    will-change: transform;
}
.home-pol.is-inertial-active { z-index: 2; }
.home-pol:nth-child(1) { --pol-rotate: -3deg; --pol-y: 10px; }
.home-pol:nth-child(2) { --pol-rotate: 1.8deg; --pol-y: -8px; }
.home-pol:nth-child(3) { --pol-rotate: -0.8deg; --pol-y: 4px; }
.home-pol:nth-child(4) { --pol-rotate: 2.4deg; --pol-y: -12px; }
.home-pol:nth-child(5) { --pol-rotate: -2.2deg; --pol-y: 6px; }
.home-pol img {
    width: 100%;
    height: 155px;
    object-fit: cover;
    display: block;
}

@media (prefers-reduced-motion: reduce), (hover: none), (pointer: coarse) {
    .home-pol {
        --pol-motion-x: 0px !important;
        --pol-motion-y: 0px !important;
        --pol-motion-rotate: 0deg !important;
        will-change: auto;
    }
}

/* ─── Gallery Filter Bar ─────────────────────── */
.filter-bar {
    display: flex; gap: 0.5rem; flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.filter-btn {
    font-size: 0.65rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    padding: 16px 24px;
    border: 1px solid rgba(196,154,60,0.22);
    color: var(--text-muted);
    background: transparent;
    transition: all 0.2s; cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
    background: var(--brown-warm); border-color: var(--brown-warm); color: var(--white);
}

/* ─── Arch Photo Frame ───────────────────────── */
.arch-frame {
    border-radius: 500px 500px 0 0;
    overflow: hidden;
}

/* ─── Editorial Statement Section ────────────── */
.editorial-section {
    position: relative;
    padding: 10rem var(--side-pad) 8rem;
    overflow: hidden;
    background-color: var(--cream-light);
}
.editorial-eyebrow {
    display: block;
    text-align: center;
    font-size: 0.6rem; font-weight: 700;
    letter-spacing: normal; text-transform: uppercase;
    color: var(--text-muted); margin-bottom: 4rem;
    position: relative; z-index: 2;
}
.editorial-ghost-photo {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 36%;
    aspect-ratio: 3/4;
    overflow: hidden;
    opacity: 0.13;
    pointer-events: none;
    border-radius: 300px 300px 0 0;
}
.editorial-ghost-photo img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.editorial-float-l {
    position: absolute;
    top: 8%; left: 3%;
    width: clamp(120px, 15%, 220px);
    z-index: 3;
    transform: rotate(-3.5deg);
}
.editorial-float-r {
    position: absolute;
    bottom: 8%; right: 3%;
    width: clamp(110px, 13%, 200px);
    z-index: 3;
    transform: rotate(2.8deg);
}
.editorial-polaroid {
    background: #ffffff;
    padding: 7px 7px 32px;
    box-shadow: 0 10px 40px rgba(10,5,1,0.16);
    aspect-ratio: 3/4;
    overflow: hidden;
}
.editorial-polaroid img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.editorial-headline {
    position: relative; z-index: 2;
    text-align: center;
}
.editorial-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25em;
    flex-wrap: wrap;
    line-height: 1.0;
}
.editorial-serif {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.5vw, 5.2rem);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.04em;
    color: var(--brown-dark);
    line-height: 1.1;
}
.editorial-script {
    font-family: var(--font-script);
    font-size: clamp(3.2rem, 7vw, 6.8rem);
    font-weight: 400;
    color: var(--brown-warm);
    line-height: 0.82;
    letter-spacing: 0;
}
.editorial-cta {
    position: relative; z-index: 2;
    text-align: center;
    margin-top: 4.5rem;
}
.editorial-link {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--brown-dark);
    border-bottom: 1.5px solid var(--brown-dark);
    padding-bottom: 3px;
    transition: opacity 0.22s;
}
.editorial-link:hover { opacity: 0.55; }

/* ─── Scatter Strip ──────────────────────────── */
.scatter-strip {
    overflow: hidden;
    background: var(--cream-light);
    padding: 2rem 0 3rem;
}
.scatter-inner {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 1.5rem;
    padding: 3rem 3rem 1rem;
}
.scatter-photo {
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(10,5,1,0.12);
}
.scatter-photo img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.6s ease;
}
.scatter-photo:hover img { transform: scale(1.04); }
.scatter-photo.sp-1 { width: 18%; aspect-ratio: 3/4; transform: rotate(-2.5deg) translateY(30px); }
.scatter-photo.sp-2 { width: 24%; aspect-ratio: 3/4; transform: rotate(1.5deg) translateY(-24px); border-radius: 300px 300px 0 0; }
.scatter-photo.sp-3 { width: 17%; aspect-ratio: 2/3; transform: rotate(-1deg) translateY(14px); }
.scatter-photo.sp-4 { width: 22%; aspect-ratio: 3/4; transform: rotate(2deg) translateY(-16px); border-radius: 300px 300px 0 0; }
.scatter-photo.sp-5 { width: 16%; aspect-ratio: 3/4; transform: rotate(-1.5deg) translateY(24px); }

/* ─── Arch Split Layout ──────────────────────── */
.arch-split {
    min-height: 680px;
    background-image:
        linear-gradient(rgba(253,250,244,0.72), rgba(253,250,244,0.72)),
        url('../images/parchment-background.png');
    background-size: cover;
}
.arch-split-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    min-height: 680px;
}
.arch-split-media {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7rem 3rem 7rem 4rem;
}
.arch-split-photo {
    width: 72%;
    max-width: 420px;
    aspect-ratio: 2/3;
    overflow: hidden;
    border-radius: 500px 500px 0 0;
    box-shadow: 0 20px 60px rgba(10,5,1,0.12);
}
.arch-split-photo img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.arch-split-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 7rem 5rem 7rem 3rem;
}
.arch-split-text p {
    font-size: 1rem; line-height: 1.92;
    color: var(--text-muted); margin-bottom: 1.2rem;
}

/* ─── Gallery CTA ────────────────────────────── */
.gallery-cta {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.gallery-cta-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center 40%;
    transform: scale(1.04);
    transition: transform 9s ease;
    filter: saturate(0.9);
}
.gallery-cta:hover .gallery-cta-bg { transform: scale(1); }
.gallery-cta-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(44, 37, 37, 0.62) 0%,
            rgba(30, 22, 22, 0.45) 40%,
            rgba(44, 37, 37, 0.78) 100%);
}
/* Large watermark text behind content */
.gallery-cta-watermark {
    position: absolute;
    font-family: var(--font-display);
    font-size: clamp(10rem, 22vw, 20rem);
    font-style: italic;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.04);
    letter-spacing: -0.04em;
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.gallery-cta-inner {
    position: relative; z-index: 2;
    text-align: center;
    max-width: 820px;
    padding: 7rem 2.5rem;
}
/* Horizontal badge with flanking lines */
.gallery-cta-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 3rem;
}
.gallery-cta-badge-line {
    display: block;
    width: 48px; height: 1px;
    background: rgba(196, 154, 60, 0.5);
}
.gallery-cta-badge-text {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: rgba(232, 204, 128, 0.7);
}
/* Heading — two-line serif + script combo */
.gallery-cta-heading {
    margin-bottom: 2rem;
    line-height: 1;
}
.gallery-cta-serif {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 4.2rem);
    font-weight: 400;
    font-style: italic;
    color: rgba(253, 250, 244, 0.92);
    letter-spacing: -0.01em;
    margin-bottom: 0.4rem;
}
.gallery-cta-script {
    display: block;
    font-family: var(--font-script);
    font-size: clamp(4rem, 9vw, 8.5rem);
    color: var(--gold-pale);
    line-height: 0.88;
    margin-bottom: 0.6rem;
}
/* Botanical ornament */
.gallery-cta-ornament {
    display: block;
    color: rgba(196, 154, 60, 0.55);
    font-size: 0.55rem;
    letter-spacing: 1.4em;
    margin: 2.2rem auto;
    text-indent: 1.4em;
}
.gallery-cta-sub {
    font-size: 0.98rem;
    line-height: 1.88;
    color: rgba(242, 232, 213, 0.58);
    max-width: 520px;
    margin: 0 auto 3.2rem;
}
.gallery-cta-btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--brown-accent);
    border: 1.5px solid var(--brown-accent);
    padding: 16px 24px;
    transition: all 0.28s ease;
}
.gallery-cta-btn:hover {
    background: #B3532F;
    border-color: #B3532F;
    transform: translateY(-2px);
}

/* ─── Responsive ─────────────────────────────── */
@media (max-width: 1024px) {
    .nav-links { gap: 1.45rem; }
    .split-content { padding: 5rem 3.5rem; }
    .steps-grid { gap: 3rem 4rem; }
    .packages-grid { gap: 1.5rem; }
    .editorial-float-l, .editorial-float-r { display: none; }
    .arch-split-text { padding: 6rem 3.5rem 6rem 2.5rem; }
    .arch-split-media { padding: 6rem 2.5rem 6rem 3rem; }
    .page-hero-photo-col { padding: 84px 1.8rem; }
    .page-hero-text-col { padding: 84px 3.5rem 84px 2.5rem; }
}

@media (max-width: 920px) {
    :root { --section-pad: 5.5rem; --side-pad: 2rem; }

    .site-nav { padding: 1.1rem 2rem; }
    .nav-logo { width: 72px; height: 72px; flex-basis: 72px; }
    .nav-logo img { width: 72px; height: 72px; }
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .mobile-menu { padding: 7rem 1.5rem 2rem; gap: clamp(1.25rem, 4vh, 2.25rem); overflow-y: auto; }
}

@media (max-width: 768px) {
    :root { --section-pad: 5rem; --side-pad: 1.5rem; }

    .split-section { grid-template-columns: 1fr; }
    .split-section.reverse { direction: ltr; }
    .split-image { height: 380px; }
    .split-content { padding: 4rem 1.5rem; }

    .steps-grid { grid-template-columns: 1fr; gap: 3.5rem; }
    .packages-grid { grid-template-columns: 1fr; }
    .package-card { max-width: 560px; margin: 0 auto; width: 100%; padding: 3rem 2rem; }
    .beliefs-grid { grid-template-columns: 1fr; }
    .beliefs-grid .belief-card { border-right: none; }
    .testimonials-grid { gap: 3rem; }
    .testimonial-card,
    .testimonial-card.flip { grid-template-columns: 1fr; gap: 1.5rem; }
    .testimonial-card.flip .testimonial-quote-wrap { order: 2; }
    .testimonial-card.flip .testimonial-polaroid-wrap { order: 1; }
    .testimonial-quote-wrap { padding: 0.5rem; text-align: center; }
    .testimonial-polaroid { max-width: 340px; }
    .testimonials-mountain { width: 55%; opacity: 0.35; bottom: 1%; right: -5%; }
    .insights-grid { grid-template-columns: 1fr; }

    .gallery-grid { columns: 2; }

    .arch-split-inner { grid-template-columns: 1fr; }
    .arch-split-media { padding: 5rem 2rem 2rem; }
    .arch-split-text { padding: 3rem 2rem 5rem; }
    .arch-split-photo { width: 55%; max-width: 280px; }

    .scatter-inner { gap: 0.8rem; padding: 2rem 1rem; }
    .scatter-photo.sp-1 { width: 28%; }
    .scatter-photo.sp-2 { width: 32%; }
    .scatter-photo.sp-3 { display: none; }
    .scatter-photo.sp-4 { width: 28%; }
    .scatter-photo.sp-5 { display: none; }

    .editorial-section { padding: 7rem 1.5rem 5rem; }
    .editorial-ghost-photo { width: 72%; }
    .editorial-serif { font-size: 28px; }
    .editorial-script { font-size: 44px; }

    .footer-inner { grid-template-columns: 1fr; gap: 4rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .form-row { grid-template-columns: 1fr; }

    .hero-title { font-size: 52px; }
    .hero-eyebrow { font-size: 20px; transform: translateY(-16px); }
    .hero-body { font-size: 32px; max-width: 100%; margin-bottom: 1.4rem; }
    .hero-actions { gap: 0.65rem; }
    .scripture-quote { font-size: 2.3rem; }
    .marriage-left, .marriage-right { font-size: 2rem; }

    .page-hero { min-height: auto; }
    .page-hero-inner { grid-template-columns: 1fr; min-height: auto; }
    .page-hero-sm { min-height: auto; }
    .page-hero-sm .page-hero-inner { min-height: auto; }
    .page-hero-photo-col { padding: 0 2rem; height: 55vw; min-height: 260px; align-items: flex-end; }
    .gallery-page-hero .page-hero-photo-col { height: 64vw; }
    .page-hero-photo { max-width: 100%; height: 100%; max-height: none; border-radius: 0; }
    .page-hero-text-col { padding: 3rem 1.5rem 4.5rem; }
    .page-hero-title { font-size: 52px; }
    .section-title,
    .home-contact-prompt h2,
    .footer-headline { font-size: 72px; }
    .step-title,
    .belief-title,
    .insight-title { font-size: 36px; }
    .page-hero-body { max-width: 100%; }
    .page-hero-scroll { display: none; }
    .home-polaroid-strip { gap: 0.55rem; margin-top: -24px; padding: 1.5rem 0.75rem 0.5rem; overflow: hidden; }
    .home-pol { width: 18.2vw; padding: 6px 6px 26px; }
    .home-pol img { height: 20vw; }
    .scripture-banner, .ethic-banner, .marriage-section { padding: 5.5rem 1.5rem; }
    .home-scripture-banner::before { width: 180px; height: 180px; bottom: 28px; left: 20px; }
    .gallery-cta { min-height: 600px; }
    .gallery-cta-inner { padding: 5rem 1.5rem; }
}

@media (max-width: 480px) {
    :root { --section-pad: 4.5rem; --side-pad: 1.25rem; }
    .gallery-grid { columns: 1; }
    .hero-sm { height: 68vh; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { min-width: 190px; }
    .step-number { font-size: 4rem; }
    .page-hero-photo-col { padding: 0 1.25rem; min-height: 240px; }
    .gallery-page-hero .page-hero-photo-col { height: 68vw; }
    .page-hero-text-col { padding: 2.75rem 1.25rem 4rem; }
    .home-polaroid-strip { gap: 0.35rem; }
    .home-pol { width: 18.4vw; padding-bottom: 22px; }
    .home-pol img { height: 19vw; }
    .gallery-cta { min-height: 540px; }
    .home-scripture-banner::before { width: 140px; height: 140px; bottom: 18px; left: 12px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.admin-bar .site-nav { top: 32px; }
@media screen and (max-width: 782px) {
    .admin-bar .site-nav { top: 46px; }
}
