/* =============================================================
   larissa-modern.css  —  v2  pixel-faithful redesign
   Larissa Photography
   ============================================================= */

/* Google Fonts loaded in master:
   - Great Vibes       → "Larissa" logo script + "special moments"
   - Cinzel            → nav + button labels
   - Libre Baskerville → "Capturing life's" serif body
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }

body {
    background: #3d2b1a;
    font-family: 'Libre Baskerville', Georgia, serif;
    color: #e8dcc8;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* =============================================================
   HEADER  —  cream parchment with acanthus floral scroll left
   ============================================================= */
#lp-header {
    background-color: #e8dfc8;
    background-image: url('/images/header-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
    width: 100%;
    position: relative;
    border-bottom: 3px solid #b8a070;
    overflow: visible;
}

.lp-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px 14px 30px;
    position: relative;
    min-height: 130px;
}

/* Logo */
#lp-logo a {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.lp-logo-script {
    font-family: 'Great Vibes', cursive;
    font-size: 4rem;
    color: #2a1f0f;
    letter-spacing: 0.01em;
    line-height: 0.9;
}

.lp-logo-sub {
    font-family: 'Cinzel', serif;
    font-size: 0.58rem;
    letter-spacing: 0.35em;
    color: #2a1f0f;
    text-transform: uppercase;
    margin-top: 4px;
    padding-left: 4px;
    border-top: 1px solid #2a1f0f;
    padding-top: 3px;
}

/* Nav */
#lp-nav ul {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
}

#lp-navlist > li > a {
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    color: #1a1008;
    text-transform: uppercase;
    padding: 4px 6px;
    transition: color 0.2s;
    display: block;
    font-weight: 600;
    text-shadow: 0 1px 0 rgba(255,255,255,0.4);
}

#lp-navlist > li > a:hover,
#lp-navlist > li > a.active {
    color: #7ab8aa;
}

/* Teal chandelier — hidden from header, lives only on photo panel */
.lp-header-chandelier {
    display: none;
}

/* Mobile toggle */
#lp-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

#lp-nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #2a1f0f;
}

/* =============================================================
   HERO SECTION
   ============================================================= */
#lp-hero {
    display: flex;
    width: 100%;
    height: calc(100vh - 130px - 64px); /* subtract header + footer height */
    min-height: 480px;
    max-height: 720px;
    position: relative;
    overflow: hidden;
}

/* =============================================================
   HERO SECTION — full-width brown stripe background
   ============================================================= */
#lp-hero {
    display: flex;
    width: 100%;
    height: calc(100vh - 130px - 64px);
    min-height: 480px;
    max-height: 720px;
    position: relative;
    overflow: visible;
    /* Brown stripes span the FULL hero — left AND right panels */
    background-color: #2a1e0e;
    background-image: repeating-linear-gradient(
        90deg,
        #1e1508 0px,
        #1e1508 22px,
        #2f2010 22px,
        #2f2010 50px
    );
}

/* Clip only the right panel so frame masks work */
#lp-hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: transparent;
}
#lp-hero-left {
    width: 40%;
    flex-shrink: 0;
    /* Transparent — inherits stripe from #lp-hero */
    background: transparent;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 44px 60px;
    text-align: center;
    z-index: 2;
}

/* Gold chandelier watermark — top-left of left panel, bleeds up into header */
#lp-hero-left::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -20px;
    width: 240px;
    height: 360px;
    background-image: url('/images/chandelier-gold.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top left;
    pointer-events: none;
    z-index: 0;
}

/* "Capturing life's" */
.lp-capturing {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 400;
    font-style: italic;
    color: #e8dcc8;
    margin-bottom: 2px;
    position: relative;
    z-index: 2;
}

/* "special moments" script */
.lp-special {
    font-family: 'Great Vibes', cursive;
    font-size: 4rem;
    color: #7ab8aa;
    line-height: 1.05;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

/* Gold scroll ornament between script and tagline */
.lp-ornament {
    display: block;
    margin: 4px auto 10px;
    position: relative;
    z-index: 2;
}

/* "ONE IMAGE AT A TIME" */
.lp-tagline {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.28em;
    color: #e8dcc8;
    text-transform: uppercase;
    margin-bottom: 36px;
    position: relative;
    z-index: 2;
}

/* CTA buttons row */
.lp-hero-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.lp-btn-weddings {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 14px 32px;
    background: #8B6914;
    color: #f0e4c0 !important;
    border: 2px solid #a07c20;
    display: inline-block;
    transition: background 0.25s;
    cursor: pointer;
    min-width: 150px;
    text-align: center;
}

.lp-btn-weddings:hover { background: #9a7820; }

.lp-btn-sessions {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 14px 32px;
    background: transparent;
    color: #7ab8aa !important;
    border: 2px solid #7ab8aa;
    display: inline-block;
    transition: background 0.25s, color 0.25s;
    cursor: pointer;
    min-width: 150px;
    text-align: center;
}

.lp-btn-sessions:hover {
    background: rgba(122, 184, 170, 0.12);
}

/* Bottom scroll ornament */
.lp-ornament-bottom {
    position: relative;
    z-index: 2;
    margin-top: 4px;
}

/* ---------- RIGHT PANEL ---------- */

/* Hero photo fills the full panel behind the frame */
#lp-hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

/* Frame masks — hide photo outside frame opening, stripe shows through */
.lp-frame-mask {
    position: absolute;
    background: transparent; /* stripes from parent hero show through */
    z-index: 3;
    pointer-events: none;
    /* We actually don't need background here — just use overflow:hidden on a wrapper */
}
/* Hide photo outside frame using a clip wrapper instead */
/* Photo sits behind frame — frame PNG covers the edges with its border */
.lp-frame-mask-top,
.lp-frame-mask-bottom,
.lp-frame-mask-left,
.lp-frame-mask-right { display: none; }

/* Instead: clip the photo inside an absolutely-positioned box */
#lp-hero-photo-wrap {
    position: absolute;
    top: 80px;
    left: 60px;
    right: 60px;
    bottom: 80px;
    overflow: hidden;
    z-index: 1;
}

#lp-hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

/* ---- GOLD FRAME ---- */
.lp-gold-frame {
    position: absolute;
    top: 60px;
    left: 45px;
    right: 45px;
    bottom: 60px;
    pointer-events: none;
    z-index: 4;
    background-image: url('/images/frame-ornate.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
}

.lp-gold-frame::before,
.lp-gold-frame::after { display: none; }
.lp-frame-corner { display: none; }

/* ---- CHANDELIER — anchored to header top-right, overflows into hero ---- */
.lp-photo-chandelier {
    position: absolute;
    top: -20px;
    right: -10px;
    width: 280px;
    height: 420px;
    z-index: 20;
    pointer-events: none;
}

.lp-photo-chandelier img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top right;
}

.lp-photo-chandelier svg { display: none; }

/* =============================================================
   FOOTER BAR  —  cream, social + phone + location
   ============================================================= */
#lp-footer {
    background-color: #c8bc9a;
    background-image: url('/images/header-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
    border-top: 3px solid #b8a070;
    position: relative;
    overflow: hidden;
}

.lp-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 40px;
    min-height: 64px;
    position: relative;
    z-index: 2;
}

/* Social icons */
.lp-footer-socials {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lp-footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2a1f0f;
    transition: color 0.2s;
}

.lp-footer-socials a:hover { color: #7ab8aa; }

.lp-footer-socials svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Center: ornament + phone */
.lp-footer-center {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-direction: row;
}

.lp-footer-ornament {
    opacity: 0.5;
}

.lp-footer-phone {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    letter-spacing: 0.08em;
    color: #2a1f0f;
    font-weight: 600;
}

/* Right: location */
.lp-footer-location {
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    color: #2a1f0f;
    text-transform: uppercase;
}

/* (footer chandelier removed) */

/* =============================================================
   SEO TEXT BLOCK — below footer, secondary/subordinate
   ============================================================= */
#lp-seo-text {
    background: #110e0a;
    border-top: 1px solid rgba(180, 140, 60, 0.1);
}

.lp-seo-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem 2rem;
    color: #4a3a28;
    font-size: 0.8rem;
    line-height: 1.75;
    text-align: justify;
}

.lp-seo-heading {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #3a2e22;
    margin: 1.25rem 0 0.4rem;
    font-weight: 400;
}

.lp-seo-heading:first-child { margin-top: 0; }
.lp-seo-inner strong { color: #4a3a28; }

/* =============================================================
   INNER PAGES (existing .aspx pages)
   ============================================================= */
#lp-main { min-height: 60vh; }

#content-area {
    max-width: 960px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    color: #e8dcc8;
}

#content-area h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 2.6rem;
    color: #c4a55a;
    margin-bottom: 1.25rem;
}

#content-area h2 {
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c4b89a;
    margin: 1.5rem 0 0.75rem;
    font-weight: 400;
}

#content-area p {
    color: #c4b89a;
    margin-bottom: 1rem;
    line-height: 1.85;
}

#services-main-nav { margin-bottom: 1.5rem; }

#services-main-nav ul {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

#services-main-nav ul > li > a {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.5rem 1.2rem;
    border: 1px solid rgba(196, 165, 90, 0.35);
    color: #c4b89a;
    border-radius: 2px;
    display: block;
    transition: all 0.2s;
}

#services-main-nav ul > li > a:hover {
    background: rgba(196, 165, 90, 0.1);
    border-color: #c4a55a;
    color: #c4a55a;
}

.about-text-titles {
    font-family: 'Cinzel', serif;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c4a55a;
    margin-bottom: 0.4rem;
}

.contentLink { color: #c4a55a; text-decoration: underline; text-underline-offset: 2px; }
.contentLink:hover { color: #d4b56a; }
.pageHeader {
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c4b89a;
    font-weight: 400;
    margin: 1.25rem 0 0.5rem;
}

/* =============================================================
   KEN BURNS SLIDESHOW
   9 slides × 6 s each = 54 s total cycle.
   Each slide fades in, holds, fades out during its 6 s window.
   The transform snaps back at 100% while opacity is 0 — invisible.
   ============================================================= */

.kb-slideshow {
    position: relative;
    width: 100%;
    aspect-ratio: 830 / 394;
    overflow: hidden;
    border: 1px solid rgba(196, 165, 90, 0.2);
    background: #1a1008;
}

.kb-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    will-change: transform, opacity;
}

/* Opacity cycle — linear so keyframe % maps directly to time */
@keyframes kb-fade {
    0%   { opacity: 0; }
    1%   { opacity: 1; }
    9%   { opacity: 1; }
    11%  { opacity: 0; }
    100% { opacity: 0; }
}

/* Ken Burns motion variants.
   Motion spans 0–11% (the visible window).
   Held from 11–99%, then snaps back at 100% while still invisible. */
@keyframes kb-zoom-in {
    0%   { transform: scale(1.00); }
    11%  { transform: scale(1.08); }
    99%  { transform: scale(1.08); }
    100% { transform: scale(1.00); }
}
@keyframes kb-zoom-out {
    0%   { transform: scale(1.08); }
    11%  { transform: scale(1.00); }
    99%  { transform: scale(1.00); }
    100% { transform: scale(1.08); }
}
@keyframes kb-pan-right {
    0%   { transform: scale(1.06) translateX(-3%); }
    11%  { transform: scale(1.06) translateX(0%);  }
    99%  { transform: scale(1.06) translateX(0%);  }
    100% { transform: scale(1.06) translateX(-3%); }
}
@keyframes kb-pan-left {
    0%   { transform: scale(1.06) translateX(0%);  }
    11%  { transform: scale(1.06) translateX(-3%); }
    99%  { transform: scale(1.06) translateX(-3%); }
    100% { transform: scale(1.06) translateX(0%);  }
}
@keyframes kb-pan-up {
    0%   { transform: scale(1.06) translateY(0%);  }
    11%  { transform: scale(1.06) translateY(-3%); }
    99%  { transform: scale(1.06) translateY(-3%); }
    100% { transform: scale(1.06) translateY(0%);  }
}

/* Per-slide: delay steps by 6 s, alternating motion variants */
.kb-slide-1 { animation: kb-fade 54s  0s linear infinite, kb-zoom-in   54s  0s linear infinite; }
.kb-slide-2 { animation: kb-fade 54s  6s linear infinite, kb-pan-left  54s  6s linear infinite; }
.kb-slide-3 { animation: kb-fade 54s 12s linear infinite, kb-pan-right 54s 12s linear infinite; }
.kb-slide-4 { animation: kb-fade 54s 18s linear infinite, kb-zoom-out  54s 18s linear infinite; }
.kb-slide-5 { animation: kb-fade 54s 24s linear infinite, kb-pan-up    54s 24s linear infinite; }
.kb-slide-6 { animation: kb-fade 54s 30s linear infinite, kb-zoom-in   54s 30s linear infinite; }
.kb-slide-7 { animation: kb-fade 54s 36s linear infinite, kb-pan-left  54s 36s linear infinite; }
.kb-slide-8 { animation: kb-fade 54s 42s linear infinite, kb-pan-right 54s 42s linear infinite; }
.kb-slide-9 { animation: kb-fade 54s 48s linear infinite, kb-zoom-out  54s 48s linear infinite; }

/* =============================================================
   PRICING PAGE  —  $75/outfit model
   ============================================================= */

/* ---- Price hero ---- */
.price-hero {
    text-align: center;
    padding: 2.25rem 1rem 2rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(196, 165, 90, 0.2);
}

.price-hero-amount {
    font-family: 'Great Vibes', cursive;
    font-size: 5rem;
    color: #c4a55a;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.price-hero-unit {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #c4b89a;
    vertical-align: middle;
}

.price-hero-tagline {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-style: italic;
    font-size: 0.95rem;
    color: #c4b89a;
    margin: 0.75rem 0 0;
}

/* ---- Section headings ---- */
.pricing-section-heading {
    font-family: 'Cinzel', serif;
    font-size: 0.62rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #c4a55a;
    font-weight: 400;
    margin: 2rem 0 0.6rem;
}

.pricing-intro-text {
    color: #c4b89a;
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.pricing-note {
    color: rgba(196, 184, 154, 0.65);
    font-size: 0.78rem;
    font-style: italic;
    margin: 0.75rem 0 2rem;
    line-height: 1.7;
}

/* ---- Per-outfit feature grid ---- */
.per-outfit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin-bottom: 2.5rem;
    background: rgba(196, 165, 90, 0.15);
    border: 1px solid rgba(196, 165, 90, 0.15);
}

.per-outfit-item {
    background: rgba(255, 255, 255, 0.025);
    padding: 1.75rem 1.25rem 1.5rem;
    text-align: center;
    border-top: 3px solid rgba(196, 165, 90, 0.35);
    transition: background 0.2s, border-color 0.2s;
}

.per-outfit-item:hover {
    background: rgba(139, 105, 20, 0.07);
    border-top-color: #c4a55a;
}

.per-outfit-stat {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    color: #c4a55a;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.per-outfit-label {
    font-family: 'Cinzel', serif;
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c4b89a;
    margin-bottom: 0.6rem;
}

.per-outfit-desc {
    color: rgba(196, 184, 154, 0.7);
    font-size: 0.78rem;
    line-height: 1.65;
}

/* ---- Session builder table ---- */
.session-builder {
    margin-bottom: 0.5rem;
    border: 1px solid rgba(196, 165, 90, 0.2);
    overflow: hidden;
}

.session-builder-row {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.4fr 1fr 1fr;
    border-bottom: 1px solid rgba(196, 165, 90, 0.08);
}

.session-builder-row:last-child { border-bottom: none; }

.session-builder-row > div {
    padding: 0.75rem 1.1rem;
    color: #c4b89a;
    font-size: 0.85rem;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-right: 1px solid rgba(196, 165, 90, 0.08);
}

.session-builder-row > div:last-child { border-right: none; }

.session-builder-header {
    background: rgba(196, 165, 90, 0.06);
    border-bottom: 1px solid rgba(196, 165, 90, 0.2);
}

.session-builder-header > div {
    font-family: 'Cinzel', serif;
    font-size: 0.52rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(196, 184, 154, 0.6);
    padding: 0.6rem 1.1rem;
}

.session-builder-row--featured {
    background: rgba(139, 105, 20, 0.08);
    border-bottom: 1px solid rgba(196, 165, 90, 0.25) !important;
    border-top: 1px solid rgba(196, 165, 90, 0.25);
}

.outfit-count {
    font-family: 'Great Vibes', cursive;
    font-size: 2rem;
    color: #c4a55a;
    line-height: 1;
}

.builder-price {
    font-family: 'Great Vibes', cursive;
    font-size: 1.8rem;
    color: #c4a55a;
    line-height: 1;
}

.builder-badge {
    font-family: 'Cinzel', serif;
    font-size: 0.45rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: #8B6914;
    color: #f0e4c0;
    padding: 3px 8px;
    white-space: nowrap;
    align-self: center;
}

/* ---- Print prices ---- */
.print-prices-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 0.5rem;
}

.print-price-item {
    text-align: center;
    padding: 1.25rem 0.75rem 1rem;
    border: 1px solid rgba(196, 165, 90, 0.2);
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.2s;
}

.print-price-item:hover { border-color: rgba(196, 165, 90, 0.45); }

.print-size {
    font-family: 'Cinzel', serif;
    font-size: 0.58rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #c4b89a;
    margin-bottom: 0.4rem;
}

.print-price-amount {
    font-family: 'Great Vibes', cursive;
    font-size: 2.2rem;
    color: #c4a55a;
    line-height: 1.1;
}

.print-size-note {
    font-size: 0.68rem;
    color: rgba(196, 184, 154, 0.55);
    margin-top: 0.25rem;
    line-height: 1.4;
}

/* ---- Digital files grid ---- */
.digital-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 2rem;
}

.digital-item {
    text-align: center;
    padding: 1.5rem 0.75rem;
    border: 1px solid rgba(122, 184, 170, 0.25);
    background: rgba(122, 184, 170, 0.04);
    transition: border-color 0.2s, background 0.2s;
}

.digital-item:hover {
    border-color: rgba(122, 184, 170, 0.5);
    background: rgba(122, 184, 170, 0.08);
}

.digital-outfits {
    font-family: 'Cinzel', serif;
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #7ab8aa;
    margin-bottom: 0.4rem;
}

.digital-price {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    color: #c4a55a;
    line-height: 1.1;
}

/* ---- Legacy pricing (kept for other uses) ---- */
.pricing-includes {
    color: #c4b89a;
    font-style: italic;
    font-size: 0.88rem;
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(196, 165, 90, 0.15);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 2.5rem;
    align-items: start;
}

.pricing-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(196, 165, 90, 0.25);
    padding: 2rem 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: border-color 0.25s;
}

.pricing-card:hover { border-color: rgba(196, 165, 90, 0.55); }

.pricing-card--featured {
    border-color: rgba(196, 165, 90, 0.55);
    background: rgba(139, 105, 20, 0.1);
}

.pricing-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: #8B6914;
    color: #f0e4c0;
    font-family: 'Cinzel', serif;
    font-size: 0.48rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 4px 14px;
    white-space: nowrap;
}

.pricing-name {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c4b89a;
    margin-bottom: 0.6rem;
}

.pricing-price {
    font-family: 'Great Vibes', cursive;
    font-size: 3rem;
    color: #c4a55a;
    line-height: 1;
    margin-bottom: 1rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    border-top: 1px solid rgba(196, 165, 90, 0.2);
    padding-top: 0.9rem;
}

.pricing-features li {
    color: #c4b89a;
    font-size: 0.78rem;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(196, 165, 90, 0.08);
    line-height: 1.45;
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-section {
    margin: 0.5rem 0 2rem;
    padding: 1.25rem 1.75rem;
    border-left: 3px solid #8B6914;
    background: rgba(255, 255, 255, 0.02);
}

.pricing-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c4a55a;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.pricing-section p {
    color: #c4b89a;
    font-size: 0.88rem;
    line-height: 1.75;
    margin: 0;
}

.pricing-addons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.addons-block {
    padding: 1.5rem 1.25rem;
    border: 1px solid rgba(196, 165, 90, 0.2);
    background: rgba(255, 255, 255, 0.02);
}

.addons-free { border-color: rgba(122, 184, 170, 0.3); }

.addons-title {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c4a55a;
    margin-bottom: 0.75rem;
}

.addons-free .addons-title { color: #7ab8aa; }

.addons-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.addons-block ul li {
    color: #c4b89a;
    font-size: 0.82rem;
    padding: 0.3rem 0 0.3rem 1rem;
    position: relative;
    line-height: 1.5;
    border-bottom: 1px solid rgba(196, 165, 90, 0.06);
}

.addons-block ul li:last-child { border-bottom: none; }

.addons-block ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: rgba(196, 165, 90, 0.35);
    font-size: 0.7rem;
}

.addons-free ul li::before { color: rgba(122, 184, 170, 0.5); }

/* =============================================================
   DETAILS PAGE — intro, guarantee callout, FAQ accordion
   ============================================================= */

.details-intro {
    color: #c4b89a;
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(196, 165, 90, 0.15);
}

.guarantee-callout {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(122, 184, 170, 0.07);
    border: 1px solid rgba(122, 184, 170, 0.3);
    border-left: 4px solid #7ab8aa;
    padding: 1.25rem 1.75rem;
    margin-bottom: 2rem;
}

.guarantee-icon {
    font-size: 2rem;
    color: #7ab8aa;
    flex-shrink: 0;
    line-height: 1;
}

.guarantee-text {
    color: #c4b89a;
    font-size: 0.9rem;
    line-height: 1.65;
}

.guarantee-text strong {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #7ab8aa;
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 400;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 2rem;
}

.faq-item {
    border: 1px solid rgba(196, 165, 90, 0.18);
    overflow: hidden;
}

.faq-header {
    width: 100%;
    background: rgba(255, 255, 255, 0.025);
    border: none;
    text-align: left;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: 'Cinzel', serif;
    font-size: 0.63rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c4b89a;
    transition: background 0.2s, color 0.2s;
    gap: 1rem;
}

.faq-header:hover,
.faq-item.open .faq-header {
    background: rgba(139, 105, 20, 0.1);
    color: #c4a55a;
}

.faq-chevron {
    flex-shrink: 0;
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.25s;
}

.faq-item.open .faq-chevron {
    transform: rotate(-135deg) translateY(-2px);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.25s ease;
    padding: 0 1.5rem;
}

.faq-item.open .faq-body {
    max-height: 1200px;
    padding: 1rem 1.5rem 1.25rem;
}

.faq-body p {
    color: #c4b89a;
    font-size: 0.88rem;
    line-height: 1.9;
    margin: 0;
}

/* =============================================================
   WEDDING KEN BURNS — 11 slides × 6s = 66s total cycle
   Reuses kb-fade and motion keyframes from senior slideshow.
   ============================================================= */

.wb-slide-1  { animation: kb-fade 66s  0s linear infinite, kb-zoom-in   66s  0s linear infinite; }
.wb-slide-2  { animation: kb-fade 66s  6s linear infinite, kb-pan-left  66s  6s linear infinite; }
.wb-slide-3  { animation: kb-fade 66s 12s linear infinite, kb-pan-right 66s 12s linear infinite; }
.wb-slide-4  { animation: kb-fade 66s 18s linear infinite, kb-zoom-out  66s 18s linear infinite; }
.wb-slide-5  { animation: kb-fade 66s 24s linear infinite, kb-pan-up    66s 24s linear infinite; }
.wb-slide-6  { animation: kb-fade 66s 30s linear infinite, kb-zoom-in   66s 30s linear infinite; }
.wb-slide-7  { animation: kb-fade 66s 36s linear infinite, kb-pan-left  66s 36s linear infinite; }
.wb-slide-8  { animation: kb-fade 66s 42s linear infinite, kb-pan-right 66s 42s linear infinite; }
.wb-slide-9  { animation: kb-fade 66s 48s linear infinite, kb-zoom-out  66s 48s linear infinite; }
.wb-slide-10 { animation: kb-fade 66s 54s linear infinite, kb-pan-up    66s 54s linear infinite; }
.wb-slide-11 { animation: kb-fade 66s 60s linear infinite, kb-zoom-in   66s 60s linear infinite; }

/* =============================================================
   WEDDING GALLERY GRID
   ============================================================= */

.gallery-intro {
    font-style: italic;
    font-size: 1rem;
    color: #c4b89a;
    text-align: center;
    line-height: 1.85;
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(196, 165, 90, 0.15);
}

.wedding-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 0.5rem;
}

.wedding-gallery-item {
    display: block;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(196, 165, 90, 0.15);
    transition: border-color 0.25s;
    aspect-ratio: 4 / 5;
}

.wedding-gallery-item--featured {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 5;
}

.wedding-gallery-item:hover {
    border-color: rgba(196, 165, 90, 0.5);
}

.wedding-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    display: block;
    transition: transform 0.5s ease;
}

.wedding-gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-cta {
    text-align: center;
    padding: 3rem 1rem 1.5rem;
    border-top: 1px solid rgba(196, 165, 90, 0.2);
    margin-top: 0.5rem;
}

.gallery-cta-script {
    font-family: 'Great Vibes', cursive;
    font-size: 2.4rem;
    color: #c4a55a;
    line-height: 1.2;
    margin-bottom: 0.4rem;
}

.gallery-cta-sub {
    font-family: 'Cinzel', serif;
    font-size: 0.58rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(196, 184, 154, 0.6);
    margin-bottom: 1.75rem;
}

.gallery-cta-btn {
    font-family: 'Cinzel', serif;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 14px 38px;
    border: 1px solid rgba(196, 165, 90, 0.45);
    color: #c4b89a;
    display: inline-block;
    transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.gallery-cta-btn:hover {
    background: rgba(196, 165, 90, 0.08);
    border-color: #c4a55a;
    color: #c4a55a;
}

/* =============================================================
   PRICING GRID — 3-column variant for weddings
   ============================================================= */

.pricing-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

/* =============================================================
   WEDDING ALBUMS PAGE
   ============================================================= */

.albums-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 2.5rem;
    align-items: start;
    margin-top: 0.5rem;
}

.albums-image img {
    width: 100%;
    display: block;
    border: 1px solid rgba(196, 165, 90, 0.2);
}

.albums-content p {
    color: #c4b89a;
    font-size: 0.9rem;
    line-height: 1.9;
    margin-bottom: 1rem;
}

.albums-gallery-link {
    display: inline-block;
    margin-top: 0.5rem;
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c4a55a;
    border-bottom: 1px solid rgba(196, 165, 90, 0.35);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

.albums-gallery-link:hover {
    color: #d4b56a;
    border-color: #d4b56a;
}

/* =============================================================
   SESSIONS PAGE — 4-column portrait grid
   ============================================================= */

.sessions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 0.25rem;
}

.session-card {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border: 2px solid rgba(196, 165, 90, 0.15);
    transition: border-color 0.25s, transform 0.25s;
}

.session-card:hover {
    border-color: rgba(196, 165, 90, 0.55);
    transform: translateY(-3px);
}

.session-card:hover .session-label {
    background: rgba(139, 105, 20, 0.88);
}

/* Single photo fills the card */
.session-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Label bar — z-index:2 sits above the rotator stacking context */
.session-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(20, 13, 5, 0.82);
    color: #e8dcc8;
    font-family: 'Cinzel', serif;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-align: center;
    padding: 14px 10px;
    transition: background 0.25s;
    z-index: 2;
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 860px) {
    #lp-hero { flex-direction: column; min-height: auto; }
    #lp-hero-left { width: 100%; min-height: 60vw; padding: 40px 24px; }
    #lp-hero-right { height: 60vw; min-height: 280px; }
    .lp-header-inner { padding: 14px 20px; min-height: 90px; }
    .lp-logo-script { font-size: 2.8rem; }
    .lp-special { font-size: 3rem; }
    .sessions-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-addons { grid-template-columns: 1fr; }
    .per-outfit-grid { grid-template-columns: repeat(2, 1fr); }
    .print-prices-grid { grid-template-columns: repeat(3, 1fr); }
    .digital-grid { grid-template-columns: repeat(2, 1fr); }
    .session-builder-row { grid-template-columns: 1.4fr 1fr 1.4fr 1fr 1fr; }
    .price-hero-amount { font-size: 4rem; }
    .pricing-grid--3 { grid-template-columns: 1fr; }
    .wedding-gallery-grid { grid-template-columns: 1fr 1fr; }
    .wedding-gallery-item--featured { aspect-ratio: 16 / 7; }
    .albums-layout { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
    .per-outfit-grid { grid-template-columns: repeat(2, 1fr); }
    .print-prices-grid { grid-template-columns: repeat(2, 1fr); }
    .digital-grid { grid-template-columns: repeat(2, 1fr); }
    .session-builder { overflow-x: auto; }
    .session-builder-row { min-width: 520px; }
    .price-hero-amount { font-size: 3.5rem; }
    .price-hero-unit { font-size: 0.85rem; }
}

@media (max-width: 600px) {
    #lp-nav-toggle { display: flex; }
    #lp-nav {
        display: none; position: fixed; top: 90px; left: 0; right: 0;
        background: #e8dfc8; border-top: 2px solid #b8a070;
        padding: 1rem 0; z-index: 900;
    }
    #lp-nav.lp-nav-open { display: block; }
    #lp-nav ul { flex-direction: column; gap: 0; }
    #lp-navlist > li > a { padding: 0.75rem 2rem; font-size: 0.72rem; }
    .lp-footer-inner { flex-wrap: wrap; gap: 10px; justify-content: center; padding: 12px 16px; }
}
