/* Custom styles for Velora Photography */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Cormorant+Garamond:wght@300;400;600&display=swap');

body {
    font-family: 'Arial', sans-serif;
}

/* ── Premium Navbar ────────────────────────────────────────── */
.navbar-velora {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    padding: 1.4rem 0;
    background: rgba(8, 8, 8, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
    transition: padding 0.4s ease;
}

.navbar-velora.scrolled {
    padding: 0.8rem 0;
}

/* Brand */
.velora-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 0;
    line-height: 1;
}

.velora-brand-img {
    height: 56px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
    transition: height 0.35s ease;
}

/* Shrink logo when navbar enters scrolled state */
.navbar-velora.scrolled .velora-brand-img {
    height: 44px;
}

/* Tablet */
@media (max-width: 991px) {
    .velora-brand-img {
        height: 48px;
        max-width: 180px;
    }
    .navbar-velora.scrolled .velora-brand-img {
        height: 40px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .velora-brand-img {
        height: 40px;
        max-width: 150px;
    }
    .navbar-velora.scrolled .velora-brand-img {
        height: 36px;
    }
}

/* Nav links */
.navbar-velora .nav-link {
    color: #212529  !important;
    font-size: 0.77rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 500;
    padding: 0.5rem 0.85rem !important;
    display: flex;
    align-items: center;
    gap: 0.42rem;
    transition: color 0.25s ease;
    position: relative;
}

.navbar-velora .nav-link i {
    font-size: 0.78rem;
    opacity: 0.75;
    transition: opacity 0.25s ease;
}

.navbar-velora .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.85rem;
    right: 0.85rem;
    height: 1px;
    background: #D4AF37;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: center;
}

.navbar-velora .nav-link:hover,
.navbar-velora .nav-link.active {
    color: #0a0a0a !important;
    background: #D4AF37;
    border-radius: 2px;
}

.navbar-velora .nav-link:hover i,
.navbar-velora .nav-link.active i {
    opacity: 1;
}

.navbar-velora .nav-link:hover::after,
.navbar-velora .nav-link.active::after {
    transform: scaleX(0);
}

/* Book Session CTA */
.navbar-velora .nav-cta {
    border: 2px solid #D4AF37;
    border-radius: 2px;
    color: #212529  !important;
    padding: 0.45rem 1.2rem !important;
    letter-spacing: 0.16em;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.navbar-velora .nav-cta::after {
    display: none;
}

.navbar-velora .nav-cta:hover,
.navbar-velora .nav-cta.active {
    background: #D4AF37;
    border-color: #D4AF37;
    color: #0a0a0a !important;
}

.navbar-velora .nav-cta:hover i,
.navbar-velora .nav-cta.active i {
    opacity: 1;
}

/* Custom hamburger */
.velora-toggler {
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 2px;
    padding: 6px 10px;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.velora-toggler span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: #D4AF37;
    transition: all 0.3s ease;
}

/* Mobile menu */
@media (max-width: 991px) {
    .navbar-velora {
        background: rgba(8, 8, 8, 0.97);
        padding: 0.9rem 0;
        border-bottom-color: rgba(212, 175, 55, 0.18);
    }

    .navbar-velora .navbar-collapse {
        border-top: 1px solid rgba(212, 175, 55, 0.12);
        margin-top: 0.75rem;
        padding-top: 0.5rem;
    }

    .navbar-velora .nav-link {
        padding: 0.65rem 0 !important;
        font-size: 0.8rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .navbar-velora .nav-link::after {
        display: none;
    }

    .navbar-velora .nav-cta {
        margin-top: 0.75rem;
        justify-content: center;
        padding: 0.65rem 1rem !important;
    }
}
/* Professional dropdown */
.velora-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.42rem;
}

.velora-caret {
    font-size: 0.55rem;
    opacity: 0.6;
    transition: transform 0.3s ease;
}

.nav-item.dropdown.show .velora-caret {
    transform: rotate(180deg);
}

/* Suppress Bootstrap's built-in caret since we use our own icon */
.navbar-velora .velora-dropdown-toggle::after {
    display: none;
}

.velora-dropdown {
    background: rgba(8, 8, 8, 0.97);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 2px;
    padding: 0.4rem 0;
    margin-top: 0.5rem;
    min-width: 170px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.velora-dropdown .dropdown-item {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding: 0.65rem 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.velora-dropdown .dropdown-item i {
    font-size: 0.75rem;
    opacity: 0.7;
    width: 14px;
    text-align: center;
}

.velora-dropdown .dropdown-item:hover,
.velora-dropdown .dropdown-item.active,
.velora-dropdown .dropdown-item:active {
    background: #D4AF37;
    color: #0a0a0a;
}

.velora-dropdown .dropdown-item:hover i,
.velora-dropdown .dropdown-item.active i {
    opacity: 1;
}

@media (max-width: 991px) {
    .velora-dropdown {
        background: rgba(8, 8, 8, 0.97);
        border: 1px solid rgba(212, 175, 55, 0.22);
        border-radius: 2px;
        margin: 0.5rem 0 0.5rem 1rem;
        padding: 0.4rem 0;
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .velora-dropdown .dropdown-item {
        padding: 0.6rem 1.1rem;
        font-size: 0.75rem;
        border-bottom: none;
        color: rgba(255, 255, 255, 0.85);
    }

    .velora-dropdown .dropdown-item i {
        color: #D4AF37;
        opacity: 0.85;
    }
}

/* Desktop: open dropdown on hover instead of click */
@media (min-width: 992px) {
    .navbar-velora .nav-item.dropdown:hover > .velora-dropdown {
        display: block;
    }

    /* Invisible bridge so moving from trigger to menu doesn't break hover */
    .navbar-velora .velora-dropdown::before {
        content: '';
        position: absolute;
        top: -0.6rem;
        left: 0;
        right: 0;
        height: 0.6rem;
        background: transparent;
    }

    .navbar-velora .nav-item.dropdown:hover .velora-caret {
        transform: rotate(180deg);
    }
}

/* ── Professional sub-pages banner ────────────────────────── */
.professional-page-banner {
    height: 75vh;
}

.professional-overlay {
    flex-direction: column;
    background: rgba(0, 0, 0, 0.48);
}

.professional-banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1.5rem;
}

.professional-banner-content .slide-label {
    margin-bottom: 1.2rem;
}

.professional-banner-content h1 {
    margin-bottom: 1.2rem;
}

.professional-banner-sub {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: rgba(255, 255, 255, 0.62);
    margin: 0;
}

@media (max-width: 992px) { .professional-page-banner { height: 60vh; } }
@media (max-width: 768px) { .professional-page-banner { height: 50vh; } }
/* ── End Navbar ────────────────────────────────────────────── */

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-swiper .swiper-wrapper {
    height: 100%;
}

.hero-swiper .swiper-slide {
    height: 100%;
    position: relative;
}

/* Per-slide text: hidden by default, animates in on active slide */
.hero-swiper .hero-content {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.9s ease 0.4s, transform 0.9s ease 0.4s;
}

.hero-swiper .swiper-slide-active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

/* Slide label */
.slide-label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.38em;
    color: #D4AF37;
    margin-bottom: 1rem;
}

.hero-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top !important;
    transform: scale(1.08);
    transform-origin: center 30%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(to right, rgba(0,0,0,0.3), rgba(0,0,0,0.2));
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10%;
}

.hero-content {
    color: white;
    text-align: left;
    max-width: 600px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.sub-line {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.supporting-line {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons .btn {
    margin-right: 1rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.hero-section {
    min-height: 100vh;
    height: auto;
}

.hero-swiper .swiper-slide img {
    display: block;
}

@media (max-width: 1200px) {
    .hero-overlay {
        padding-left: 6%;
    }
    .hero-content h1 {
        font-size: 2.6rem;
    }
    .sub-line {
        font-size: 1.35rem;
    }
}

.birthday-banner {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    background: #000;
}

.birthday-video-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #000;
}

@media (max-width: 992px) {
    .birthday-banner {
        height: 70vh;
    }
}

@media (max-width: 768px) {
    .birthday-banner {
        height: 60vh;
    }
}

.professional-banner {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.professional-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.professional-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
}

.professional-banner-overlay h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-align: center;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

@media (max-width: 992px) {
    .professional-banner {
        height: 65vh;
    }
    .professional-banner-overlay h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .professional-banner {
        height: 50vh;
    }
    .professional-banner-overlay h1 {
        font-size: 1.6rem;
    }
}

@media (max-width: 992px) {
    .hero-section {
        min-height: 85vh;
    }
    .hero-overlay {
        padding-left: 4%;
    }
    .hero-content h1 {
        font-size: 2.3rem;
    }
    .hero-buttons .btn {
        width: 100%;
        margin-right: 0;
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 75vh;
    }
    .hero-overlay {
        justify-content: center;
        padding: 0 20px;
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
        width: 100%;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .sub-line {
        font-size: 1.2rem;
    }
    .supporting-line {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

.btn-primary {
    background-color: #D4AF37;
    border-color: #D4AF37;
    color: black;
}

.btn-primary:hover {
    background-color: #B8860B;
    border-color: #B8860B;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background-color: white;
    color: black;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .sub-line {
        font-size: 1.2rem;
    }
    .supporting-line {
        font-size: 1rem;
    }
    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-buttons .btn {
        margin-bottom: 1rem;
        margin-right: 0;
    }
    .hero-overlay {
        padding-left: 5%;
    }
}

footer {
    margin-top: auto;
}

.booking-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center top;
    background-color: #0f0f0f;
}

.booking-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.68);
    z-index: 0;
}

.booking-hero .container {
    position: relative;
    z-index: 1;
}

.booking-hero .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #D4AF37;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.booking-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.05;
    margin-bottom: 1rem;
}

.booking-hero .lead {
    max-width: 720px;
    margin: 0 auto 1rem;
    color: rgba(255,255,255,0.78);
}

.booking-form-section {
    background: #F5F2EE;
}

.booking-info-card,
.booking-form-card {
    border-radius: 1.5rem;
}

.booking-info-card {
    background: #1a1a1a;
    color: #f9f7f3;
}

.booking-info-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.booking-info-card p {
    color: rgba(249,247,243,0.85);
}

.booking-benefits {
    margin-top: 1.75rem;
}

.booking-benefits li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.8;
}

.booking-benefits li::before {
    content: '\2022';
    color: #D4AF37;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.4rem;
    line-height: 1;
}

.booking-form-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.04);
}

.booking-form-card .form-label {
    font-weight: 600;
}

.booking-form-card .form-control,
.booking-form-card .form-select {
    border-radius: 0.75rem;
    padding: 1rem;
}

.booking-form-card textarea.form-control {
    min-height: 170px;
}

.booking-form-card button {
    border-radius: 0.85rem;
    padding: 1rem 1.5rem;
}

@media (max-width: 768px) {
    .booking-hero h1 {
        font-size: 2.5rem;
    }
    .booking-benefits li {
        font-size: 0.95rem;
    }
}

.how-works-section {
    background: #F9F8F6;
}

.section-header .eyebrow {
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.section-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.section-header .lead {
    max-width: 700px;
    margin: 0 auto;
}

.section-card {
    border: none;
    border-radius: 1.5rem;
    padding: 2rem;
    background: white;
}

.section-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.section-card-dark {
    background: #1a1a1a;
}

.section-card-light {
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(0,0,0,0.05);
}

.formatted-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: inherit;
    margin-bottom: 1rem;
}

.formatted-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.formatted-content ul li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: inherit;
    font-size: 1rem;
    line-height: 1.8;
}

.formatted-content ul li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    top: 0;
    color: #D4AF37;
    font-size: 1.25rem;
    line-height: 1;
}

.section-card-dark .formatted-content p,
.section-card-dark .formatted-content ul li {
    color: #f4f4f4;
}

.section-card-dark h2 {
    color: #fff;
}

.btn-outline-dark {
    border-color: #1a1a1a;
    color: #1a1a1a;
}

.btn-outline-dark:hover {
    background-color: #1a1a1a;
    color: white;
    border-color: #1a1a1a;
}

.swiper {
    width: 100%;
    height: auto;
}

.hero-swiper {
    width: 100%;
    height: 100vh;
}

.gallery-swiper {
    width: 100%;
    min-height: 220px;
    max-height: 320px;
}

.gallery-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-swiper .swiper-slide img,
.gallery img {
    width: auto;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
}

.modal img {
    max-width: 100%;
    max-height: 80vh;
}

/* Premium Enhancements */
html {
    min-height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

main {
    flex: 1;
}

.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    background: linear-gradient(45deg, #D4AF37, #1e3a8a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(30, 58, 138, 0.3) 100%);
}

.btn-primary {
    background: linear-gradient(45deg, #D4AF37, #f59e0b);
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    background: linear-gradient(45deg, #f59e0b, #D4AF37);
}

.btn-secondary {
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.section-card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.section-card-dark {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d3748 100%);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.booking-info-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d3748 100%);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.booking-form-card {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-control, .form-select {
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.gallery img {
    transition: all 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.how-works-section {
    background: linear-gradient(135deg, #F9F8F6 0%, #f1f5f9 100%);
}

.bg-primary {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%) !important;
}

.bg-light {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
}

/* ── Brand Split Section ───────────────────────────────────── */
.brand-split-section {
    background: #0a0a0a;
    padding: 7rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

/* Left — Brand copy */
.brand-split-left {
    padding-right: 3rem;
}

.brand-split-label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.38em;
    color: #D4AF37;
    margin-bottom: 1.6rem;
}

.brand-split-left p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 2;
    color: rgba(255, 255, 255, 0.68);
    margin-bottom: 1.4rem;
}

/* Brand-split list — matches paragraph typography while keeping the pricing-features diamond bullet */
.brand-split-left .brand-split-list li {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.68);
    margin-bottom: 0.6rem;
}

/* Centre divider */
.brand-split-divider-col {
    padding: 2rem 0;
}

.brand-split-divider {
    width: 1px;
    flex: 1;
    min-height: 70px;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.55), transparent);
}

.brand-split-diamond {
    color: #D4AF37;
    font-size: 0.65rem;
    margin: 0.6rem 0;
    opacity: 0.8;
}

/* Right — Hero statement */
.brand-split-right {
    padding-left: 3rem;
}

/* Mirrors .brand-split-left onto the right column (Mission & Vision on About page) */
.brand-split-flip {
    padding-right: 0;
    padding-left: 3rem;
}

/* Central title used above a split (About page) */
.brand-split-heading {
    margin-bottom: 3.2rem;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.brand-split-heading h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #D4AF37;
    line-height: 1.2;
    letter-spacing: 0.02em;
    margin: 0 0 0.9rem;
}

.brand-split-heading-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, 0.68);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .brand-split-heading {
        margin-bottom: 2.4rem;
    }
    .brand-split-heading h2 {
        font-size: 2rem;
    }
    .brand-split-heading-sub {
        font-size: 1.05rem;
    }
}

/* Sub-section heading inside a merged section (About page — "Perfect For") */
.about-subsection {
    text-align: center;
    max-width: 720px;
    margin: 3.5rem auto 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.about-subsection .gallery-section-label {
    margin-bottom: 0.6rem;
}

.about-subsection h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: #fff;
    margin: 0.4rem 0 0;
    letter-spacing: 0.01em;
}

@media (max-width: 768px) {
    .about-subsection h3 { font-size: 1.5rem; }
    .about-subsection { margin-top: 2.5rem; }
}

/* Centered prose block used on the About page inside light or dark section wrappers */
.about-prose {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.about-prose p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

.about-prose p:last-child {
    margin-bottom: 0;
}

.about-prose em {
    color: #D4AF37;
    font-style: italic;
    font-weight: 400;
}

.hiw-overview-section .about-prose p { color: #444; }
.hiw-why-section .about-prose p     { color: rgba(255, 255, 255, 0.72); }
.hiw-why-section .about-prose em    { color: #D4AF37; }

.brand-split-right h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #D4AF37;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.brand-split-sub {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.2rem;
}

.brand-split-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.8;
}

/* Mobile — stack with horizontal rule */
@media (max-width: 991px) {
    .brand-split-section {
        padding: 5rem 0;
    }

    .brand-split-left {
        padding-right: 0;
        padding-bottom: 2.5rem;
        text-align: center;
    }

    .brand-split-divider-col {
        flex-direction: row !important;
        padding: 0 0 2.5rem;
    }

    .brand-split-divider {
        min-height: 1px;
        height: 1px;
        width: 80px;
        background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.55), transparent);
    }

    .brand-split-right {
        padding-left: 0;
        text-align: center;
    }

    .brand-split-flip {
        padding-left: 0;
        padding-top: 2.5rem;
        text-align: center;
    }

    .brand-split-right h2 {
        font-size: 2rem;
    }
}
/* ── End Brand Split ───────────────────────────────────────── */

/* ── Portrait Gallery Section ─────────────────────────────── */
.portrait-gallery-section {
    background: #0a0a0a;
    padding-bottom: 0;
}

.gallery-section-header {
    text-align: center;
    padding: 5rem 0 3.5rem;
}

.gallery-section-label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.38em;
    color: #D4AF37;
    margin-bottom: 1rem;
}

.gallery-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.9rem;
}

.gallery-section-header p {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.38);
}

.gallery-empty-msg {
    color: rgba(255, 255, 255, 0.35);
    font-style: italic;
    padding: 4rem 0;
}

/* Masonry grid */
.portrait-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.masonry-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #111;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.65s ease;
}

.masonry-item:hover img {
    transform: scale(1.05);
}

/* Slot ratios */
.ratio-tall      { aspect-ratio: 4 / 5; }
.ratio-medium    { aspect-ratio: 3 / 4; }
.ratio-square    { aspect-ratio: 1 / 1; }
.ratio-wide      { aspect-ratio: 8 / 5;  grid-column: span 2; }
.ratio-cinematic { aspect-ratio: 12 / 5;  grid-column: span 3; }

/* Landscape ratios get heavy vertical cropping on portrait sources —
   anchor to the top so faces aren't cut off */
.masonry-item.ratio-wide img {
    object-position: center top;
}

/* Cinematic ratio (21:6) is extreme — only ~23% of a portrait image fits.
   Shift the visible window slightly down so it lands on the face,
   not on the headroom/ceiling above it. */
.masonry-item.ratio-cinematic img {
    object-position: center 20%;
}

/* Hover overlay */
.masonry-hover {
    position: absolute;
    inset: 0;
    background: rgba(212, 175, 55, 0.16);
    backdrop-filter: blur(1.5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.masonry-item:hover .masonry-hover {
    opacity: 1;
}

.masonry-type {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.6);
}

.masonry-studio {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: rgba(255, 255, 255, 0.72);
    margin-top: 0.45rem;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

/* Masonry responsive */
@media (max-width: 768px) {
    .portrait-masonry { grid-template-columns: repeat(2, 1fr); gap: 4px; }
    .ratio-wide      { grid-column: span 2; }
    .ratio-cinematic { grid-column: span 2; aspect-ratio: 16 / 9; }
}

@media (max-width: 480px) {
    .portrait-masonry { grid-template-columns: 1fr; }
    .ratio-wide, .ratio-cinematic { grid-column: span 1; aspect-ratio: 4 / 5; }
}

/* ── Portrait Lightbox ─────────────────────────────────────── */
.portrait-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(4, 4, 4, 0.97);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
}

.portrait-lightbox.active {
    display: flex;
}

.lightbox-stage {
    flex: 1;
    max-width: 72vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-stage img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    display: block;
}

.lightbox-caption {
    margin-top: 1.2rem;
    text-align: center;
}

#lightboxType {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #D4AF37;
    letter-spacing: 0.08em;
}

.lightbox-brand {
    display: block;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 0.35rem;
}

.lightbox-nav {
    flex-shrink: 0;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #D4AF37;
    font-size: 1.4rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: #D4AF37;
    color: #0a0a0a;
    border-color: #D4AF37;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    transition: border-color 0.25s ease, color 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    border-color: #D4AF37;
    color: #D4AF37;
}

@media (max-width: 768px) {
    .portrait-lightbox { gap: 1rem; padding: 1rem; }
    .lightbox-stage { max-width: 90vw; }
    .lightbox-nav { width: 40px; height: 40px; font-size: 1.1rem; }
}

/* ── How It Works Teaser ───────────────────────────────────── */
.how-teaser-section {
    background: #FAF9F7;
    padding: 6rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.how-teaser-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.how-teaser-section p {
    font-size: 1.05rem;
    color: #666;
    max-width: 580px;
    margin: 0 auto 2.5rem;
    line-height: 1.85;
}

.how-teaser-link {
    display: inline-block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: #D4AF37;
    border: 1px solid rgba(212, 175, 55, 0.5);
    padding: 0.8rem 2.2rem;
    border-radius: 2px;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.how-teaser-link:hover {
    background: #D4AF37;
    color: #0a0a0a;
    border-color: #D4AF37;
}

/* ── Home CTA ──────────────────────────────────────────────── */
.home-cta-section {
    background: #0a0a0a;
    padding: 7rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.home-cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    display: inline-block;
    background: #D4AF37;
    color: #0a0a0a;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 700;
    padding: 1rem 2.8rem;
    border-radius: 2px;
    text-decoration: none;
    border: 2px solid #D4AF37;
    transition: background 0.3s ease, color 0.3s ease;
}

.btn-cta:hover {
    background: transparent;
    color: #D4AF37;
}
/* ── End Homepage Sections ─────────────────────────────────── */

/* ── Birthday Page ─────────────────────────────────────────── */

/* Banner — taller than standard page-banner, column-stacked overlay */
.birthday-page-banner {
    height: 75vh;
}

.birthday-overlay {
    flex-direction: column;
    background: rgba(0, 0, 0, 0.50);
}

.birthday-banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1.5rem;
}

.birthday-banner-content .slide-label {
    margin-bottom: 1.2rem;
}

.birthday-banner-content h1 {
    margin-bottom: 1.2rem;
}

.birthday-banner-sub {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: rgba(255, 255, 255, 0.62);
    margin: 0;
}

@media (max-width: 992px) { .birthday-page-banner { height: 60vh; } }
@media (max-width: 768px) { .birthday-page-banner { height: 50vh; } }

/* Video section */
.birthday-video-section {
    background: #0a0a0a;
    padding: 5rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.birthday-video-label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.38em;
    color: #D4AF37;
    margin-bottom: 2rem;
}

.birthday-video-grid {
    align-items: flex-start;
}

.birthday-video-col {
    display: flex;
}

.birthday-video-player {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    background: #000;
    border-radius: 2px;
}

/* Mobile — stack the two videos vertically with a comfortable gap */
@media (max-width: 991px) {
    .birthday-video-grid {
        row-gap: 1.5rem !important;
    }
}

/* Hover tagline (third line) */
.masonry-tagline {
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.26em;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.3rem;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

/* ── End Birthday Page ─────────────────────────────────────── */

/* Reusable page banner (pricing, contact, etc.) */
.page-banner {
    position: relative;
    width: 100%;
    height: 55vh;
    overflow: hidden;
}

.page-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.50);
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-banner-overlay h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-align: center;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
    font-family: 'Playfair Display', serif;
}

@media (max-width: 992px) {
    .page-banner { height: 42vh; }
    .page-banner-overlay h1 { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    .page-banner { height: 35vh; }
    .page-banner-overlay h1 { font-size: 1.6rem; }
}

/* ── How It Works Page ─────────────────────────────────────── */

/* Intro divider */
.hiw-intro {
    background: #0a0a0a;
    padding: 3rem 0 2.8rem;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.hiw-ornament {
    display: inline-block;
    color: #D4AF37;
    font-size: 0.85rem;
    opacity: 0.7;
    margin: 0 0.6rem;
}

.hiw-intro-line {
    color: rgba(255, 255, 255, 0.72);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    margin: 0.8rem 0;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

/* Why Choose section */
.hiw-why-section {
    background: #0a0a0a;
    padding: 5rem 0 4rem;
}

.hiw-why-section .gallery-section-header h2,
.hiw-why-section .gallery-section-header p {
    color: #fff;
}

.hiw-why-section .gallery-section-header p {
    color: rgba(255, 255, 255, 0.6);
}

.hiw-features ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem 2.5rem;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 720px;
}

.hiw-features ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.78);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    letter-spacing: 0.015em;
    line-height: 1.4;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.hiw-features ul li::before {
    content: '◆';
    color: #D4AF37;
    font-size: 0.5rem;
    flex-shrink: 0;
    margin-top: 0.42rem;
    opacity: 0.85;
}

@media (max-width: 768px) {
    .hiw-features ul {
        grid-template-columns: 1fr;
    }
}

/* Overview section */
.hiw-overview-section {
    background: #FAF9F7;
    padding: 5rem 0 4.5rem;
}

.hiw-overview-section .gallery-section-header h2 {
    color: #0a0a0a;
}

.hiw-overview-section .gallery-section-header p {
    color: #444;
}

.hiw-overview-grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    max-width: 880px;
    margin: 0 auto;
}

.hiw-overview-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.8rem 2.2rem 2.4rem;
    text-decoration: none;
    border: 1px solid rgba(212, 175, 55, 0.22);
    background: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    border-radius: 2px;
}

.hiw-overview-card:hover {
    border-color: #D4AF37;
    box-shadow: 0 6px 32px rgba(212, 175, 55, 0.13);
    transform: translateY(-3px);
}

.hiw-overview-icon {
    font-size: 2rem;
    color: #D4AF37;
    margin-bottom: 1.1rem;
}

.hiw-overview-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #0a0a0a;
    margin-bottom: 0.8rem;
    letter-spacing: 0.01em;
}

.hiw-overview-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1.4rem;
}

.hiw-overview-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #D4AF37;
    font-weight: 600;
    margin-top: auto;
    text-decoration: none;
}

/* Static overview card variant (parent isn't a link; sub-links live inside) */
.hiw-overview-card--static {
    cursor: default;
}

/* Stacked sub-links inside an overview card (Professional sub-pages) */
.hiw-overview-sublinks {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    width: 100%;
    margin-top: auto;
    padding-top: 1.2rem;
}

.hiw-overview-sublinks .hiw-overview-link,
.hiw-overview-sublinks .hiw-overview-link:hover,
.hiw-overview-sublinks .hiw-overview-link:focus,
.hiw-overview-sublinks .hiw-overview-link:active {
    text-decoration: none;
    border-bottom: none;
}

.hiw-overview-sublinks .hiw-overview-link {
    margin-top: 0;
    transition: color 0.25s ease;
}

.hiw-overview-sublinks .hiw-overview-link i {
    transition: transform 0.25s ease;
}

.hiw-overview-sublinks .hiw-overview-link:hover {
    color: #b8941e;
}

.hiw-overview-sublinks .hiw-overview-link:hover i {
    transform: translateX(4px);
}

.hiw-overview-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    font-size: 1.1rem;
    opacity: 0.55;
    padding: 0 1.4rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .hiw-overview-grid {
        flex-direction: column;
        gap: 1.2rem;
    }
    .hiw-overview-divider {
        padding: 0.6rem 0;
    }
}

/* Process Steps section */
.hiw-process-section {
    background: #111;
    padding: 5rem 0 5rem;
}

.hiw-process-section .gallery-section-header h2,
.hiw-process-section .gallery-section-header p {
    color: #fff;
}

.hiw-process-section .gallery-section-header p {
    color: rgba(255, 255, 255, 0.55);
}

.hiw-process-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 2px;
    padding: 2.4rem 2rem 2.6rem;
    height: 100%;
}

.hiw-process-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.22);
}

.hiw-process-card-header i {
    font-size: 1.5rem;
    color: #D4AF37;
    flex-shrink: 0;
}

.hiw-process-card-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #fff;
    margin: 0;
    letter-spacing: 0.01em;
}

/* Numbered step list */
.hiw-steps-wrap ul {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step;
}

.hiw-steps-wrap ul li {
    counter-increment: step;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    color: #fff !important;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
    line-height: 1.4;
}

.hiw-steps-wrap ul li:last-child {
    border-bottom: none;
}

.hiw-steps-wrap ul li::before {
    content: counter(step, decimal-leading-zero);
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    color: #D4AF37;
    font-weight: 700;
    flex-shrink: 0;
    min-width: 2rem;
    padding-top: 0.05rem;
    opacity: 0.85;
}

/* Professional overlay banner variant */
.professional-overlay {
    flex-direction: column;
}

.professional-banner-content .slide-label {
    color: #D4AF37;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    display: block;
    margin-bottom: 0.8rem;
}

.professional-banner-content h1 {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    text-shadow: 0 2px 16px rgba(0,0,0,0.55);
}

.professional-banner-sub {
    color: rgba(255, 255, 255, 0.65);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    letter-spacing: 0.04em;
    margin: 0;
}

@media (max-width: 992px) {
    .professional-banner-content h1 { font-size: 2.4rem; }
}

@media (max-width: 768px) {
    .professional-banner-content h1 { font-size: 1.85rem; }
    .hiw-process-card { padding: 1.8rem 1.3rem 2rem; }
    .hiw-steps-wrap ul li { font-size: 0.97rem; }
}

/* ── End How It Works Page ─────────────────────────────────── */

/* ── Pricing Page ──────────────────────────────────────────── */

.pricing-intro-section {
    background: #0a0a0a;
    padding: 5rem 0 3.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.pricing-intro-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #D4AF37;
    margin: 0.8rem 0 1rem;
}

.pricing-intro-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.58);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.85;
}

.pricing-packages-section {
    background: #0a0a0a;
    padding: 5rem 0 4rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.pricing-packages-section--alt {
    background: #070707;
}

/* ── Pricing Card ──────────────────────────────────────────── */
.pricing-card {
    position: relative;
    background: #0d0d0d;
    border: 1px solid rgba(212, 175, 55, 0.42);
    padding: 2.6rem 1.8rem 2rem;
    text-align: center;
    height: 100%;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(212, 175, 55, 0.13);
    pointer-events: none;
    transition: border-color 0.3s ease;
}

.pricing-card:hover {
    border-color: #D4AF37;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.1);
}

.pricing-card:hover::before {
    border-color: rgba(212, 175, 55, 0.28);
}

.pricing-card--featured {
    border-color: #D4AF37;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.14);
}

.pricing-card--featured::before {
    border-color: rgba(212, 175, 55, 0.28);
}

.pricing-card-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Brand block */
.pricing-card-brand {
    margin-bottom: 1.8rem;
}

.pricing-brand-name {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: #D4AF37;
    letter-spacing: 0.14em;
    line-height: 1;
}

.pricing-brand-studios {
    display: block;
    font-size: 0.5rem;
    letter-spacing: 0.48em;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    margin-top: 4px;
    margin-bottom: 0.85rem;
}

.pricing-brand-rule {
    width: 55%;
    height: 1px;
    background: rgba(212, 175, 55, 0.3);
    margin: 0 auto 0.7rem;
}

.pricing-brand-collection {
    display: block;
    font-size: 0.5rem;
    letter-spacing: 0.22em;
    color: #D4AF37;
    text-transform: uppercase;
    opacity: 0.82;
}

/* Package name & tagline */
.pricing-package-name {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 0.45rem;
    line-height: 1.3;
}

.pricing-package-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.8rem;
    line-height: 1.45;
}

/* Features list */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 auto;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.55rem;
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.5;
}

.pricing-features li::before {
    content: '◆';
    color: #D4AF37;
    font-size: 0.5rem;
    flex-shrink: 0;
    margin-top: 0.45rem;
}

/* Investment block */
.pricing-investment-block {
    margin-top: 2rem;
}

.pricing-investment-line {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.7rem;
}

.pricing-investment-line::before,
.pricing-investment-line::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(212, 175, 55, 0.28);
}

.pricing-investment-label {
    font-size: 0.48rem;
    letter-spacing: 0.2em;
    color: #D4AF37;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

.pricing-amount {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #D4AF37;
    letter-spacing: 0.02em;
    line-height: 1;
    margin-bottom: 1.3rem;
}

.pricing-card-tagline {
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
}

/* Section footer */
.pricing-section-footer {
    margin-top: 4rem;
}

.pricing-section-note {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 0.45rem;
}

.pricing-slots-note {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #D4AF37;
    opacity: 0.72;
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 991px) {
    .pricing-intro-heading { font-size: 2rem; }
}

@media (max-width: 768px) {
    .pricing-package-name { font-size: 0.9rem; }
    .pricing-amount { font-size: 2rem; }
    .pricing-card { padding: 2rem 1.4rem 1.8rem; }
}

/* ── End Pricing Page ──────────────────────────────────────── */

/* ── Contact Page ──────────────────────────────────────────── */

.contact-details {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.contact-details li:last-child {
    border-bottom: none;
}

.contact-icon {
    color: #D4AF37;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
    opacity: 0.9;
}

.contact-detail-label {
    display: block;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.42);
    margin-bottom: 0.3rem;
}

.contact-detail-value {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.25s ease;
    word-break: break-word;
}

.contact-detail-value:hover {
    color: #D4AF37;
}

.contact-response-note {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: 1.8rem;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.38);
}

.contact-response-diamond {
    color: #D4AF37;
    font-size: 0.45rem;
    opacity: 0.7;
}

.contact-form-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #1a1a1a;
    margin-bottom: 1.6rem;
    letter-spacing: 0.01em;
}

/* ── End Contact Page ──────────────────────────────────────── */

/* ── Terms of Service Page ────────────────────────────────── */

.terms-effective-date {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: rgba(255, 255, 255, 0.4);
    margin: 1.2rem 0 0;
}

.terms-body-section {
    background: #FAF9F7;
    padding: 5rem 0 4rem;
}

.terms-section {
    max-width: 820px;
    margin: 0 auto 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.terms-section:last-of-type {
    border-bottom: none;
    margin-bottom: 2rem;
}

.terms-section-header {
    display: flex;
    align-items: baseline;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.terms-section-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #D4AF37;
    letter-spacing: 0.04em;
    flex-shrink: 0;
    line-height: 1;
}

.terms-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: 0.01em;
    line-height: 1.3;
}

.terms-section-body p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.08rem;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 1rem;
}

.terms-section-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem;
}

.terms-section-body ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.55rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #444;
}

.terms-section-body ul li::before {
    content: '◆';
    color: #D4AF37;
    font-size: 0.5rem;
    flex-shrink: 0;
    margin-top: 0.55rem;
}

/* Closing signature */
.terms-signature {
    max-width: 720px;
    margin: 3.5rem auto 0;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.terms-signature .hiw-ornament {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.terms-signature-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #D4AF37;
    letter-spacing: 0.22em;
    margin: 0.6rem 0 0.4rem;
}

.terms-signature-tag {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: rgba(0, 0, 0, 0.55);
    margin: 0 0 0.5rem;
}

.terms-signature-line {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.5);
    margin: 0;
}

@media (max-width: 768px) {
    .terms-section-header {
        gap: 0.8rem;
    }
    .terms-section-number {
        font-size: 1.3rem;
    }
    .terms-section-header h2 {
        font-size: 1.15rem;
    }
    .terms-section-body p,
    .terms-section-body ul li {
        font-size: 1rem;
    }
}

/* Subsection heading (used inside terms / privacy sections) */
.terms-subheading {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.02em;
    margin: 1.4rem 0 0.7rem;
}

.terms-section-body h3.terms-subheading:first-child {
    margin-top: 0;
}

/* Privacy contact block (inside section 11) */
.privacy-contact-block {
    background: #fff;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 1.5rem 1.6rem;
    margin-top: 0.8rem;
}

.privacy-contact-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #D4AF37;
    letter-spacing: 0.18em;
    margin-bottom: 0.8rem !important;
}

.privacy-contact-block p {
    margin-bottom: 0.4rem !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
}

.privacy-contact-block p:last-child {
    margin-bottom: 0 !important;
}

.privacy-contact-block a {
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.5);
    transition: color 0.25s ease, border-color 0.25s ease;
}

.privacy-contact-block a:hover {
    color: #D4AF37;
    border-color: #D4AF37;
}

/* ── End Terms of Service Page ────────────────────────────── */

/* ── Soundtrack Sample Page ─────────────────────────────────── */
.soundtrack-list {
    list-style: none !important;
    padding: 0;
    margin: 0 0 auto;
    width: 100%;
    text-align: left;
}

.soundtrack-list li {
    list-style: none;
}

.soundtrack-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.85rem;
    width: 100%;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    text-align: left;
    transition: color 0.25s ease;
}

.soundtrack-item::before,
.soundtrack-item::marker {
    content: none !important;
    display: none !important;
}

.soundtrack-item:last-child {
    border-bottom: none;
}

.soundtrack-play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.55);
    color: #D4AF37;
    font-size: 0.72rem;
    cursor: pointer;
    flex-shrink: 0;
    padding: 0;
    line-height: 1;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.soundtrack-play-btn:hover {
    background: rgba(212, 175, 55, 0.12);
    color: #D4AF37;
    border-color: #D4AF37;
    transform: scale(1.05);
}

.soundtrack-play-btn.is-playing {
    background: #D4AF37;
    color: #0a0a0a;
    border-color: #D4AF37;
    animation: soundtrack-pulse 1.6s ease-in-out infinite;
}

@keyframes soundtrack-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.5); }
    50%      { box-shadow: 0 0 0 7px rgba(212, 175, 55, 0);   }
}

.soundtrack-title {
    font-size: 0.9rem;
    color: #f5f0e2;
    line-height: 1.4;
    letter-spacing: 0.01em;
    flex: 1 1 auto;
    word-break: break-word;
    text-align: left;
}

.soundtrack-item.is-active .soundtrack-title {
    color: #D4AF37;
}
/* ── End Soundtrack Sample Page ─────────────────────────────── */

/* ── Anthem Page (velora-birthday-anthem.php) ──────────────── */
.anthem-mood {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: #f5f0e2;
    font-style: italic;
    margin: 0.4rem 0 1rem;
    letter-spacing: 0.02em;
    text-align: center;
}

.anthem-mood-label {
    display: inline-block;
    font-family: Arial, sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.24em;
    color: #D4AF37;
    text-transform: uppercase;
    font-style: normal;
    font-weight: 700;
    margin-right: 0.4rem;
    vertical-align: middle;
}

.anthem-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: #f5f0e2;
    line-height: 1.7;
    margin: 0 0 1.6rem;
    padding: 0 0.4rem;
}

.anthem-listen-block {
    margin-top: auto;
    margin-bottom: 1.4rem;
    padding-top: 1.2rem;
    text-align: center;
}

.anthem-listen-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.72rem 1.6rem;
    background: transparent;
    border: 1px solid #D4AF37;
    color: #D4AF37;
    font-family: Arial, sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
    text-decoration: none;
}

.anthem-listen-btn:hover {
    background: #D4AF37;
    color: #0a0a0a;
    transform: translateY(-1px);
}

.anthem-listen-btn i {
    font-size: 0.62rem;
}

.anthem-listen-btn--disabled,
.anthem-listen-btn--disabled:hover {
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.35);
    background: transparent;
    cursor: default;
    transform: none;
}

.anthem-listen-count {
    font-size: 0.62rem;
    color: rgba(245, 240, 226, 0.7);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin: 0.7rem 0 0;
    text-align: center;
}

/* Modal — Velora dark/gold treatment */
/* Override Bootstrap 5.3 modal CSS variables at the source */
.anthem-modal {
    --bs-modal-bg: #0a0a0a;
    --bs-modal-color: #f5f0e2;
    --bs-modal-border-color: rgba(212, 175, 55, 0.42);
    --bs-modal-border-width: 1px;
    --bs-modal-border-radius: 3px;
    --bs-modal-header-border-color: rgba(212, 175, 55, 0.22);
    --bs-modal-header-border-width: 1px;
    --bs-modal-header-padding: 1.5rem 1.7rem 1.3rem;
    --bs-modal-padding: 1.4rem 1.7rem 1.7rem;
}

.anthem-modal .modal-content {
    background-color: #0a0a0a !important;
    border: 1px solid rgba(212, 175, 55, 0.42) !important;
    border-radius: 3px !important;
    color: #f5f0e2 !important;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.anthem-modal .modal-content::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(212, 175, 55, 0.14);
    pointer-events: none;
    border-radius: 2px;
}

.anthem-modal .modal-header {
    background-color: transparent !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.22) !important;
}

.anthem-modal .modal-body {
    background-color: transparent !important;
    color: #f5f0e2 !important;
}

.anthem-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1.5rem 1.7rem 1.3rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.22);
    position: relative;
    z-index: 1;
}

.anthem-modal-eyebrow {
    display: block;
    font-family: Arial, sans-serif;
    font-size: 0.55rem;
    letter-spacing: 0.28em;
    color: #D4AF37;
    text-transform: uppercase;
    margin-bottom: 0.45rem;
    opacity: 0.85;
}

.anthem-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #D4AF37;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.01em;
}

.anthem-modal-mood {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    font-style: italic;
    margin: 0.35rem 0 0;
}

.anthem-modal .btn-close,
.anthem-modal-close {
    background-color: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    padding: 0;
    opacity: 1;
    filter: brightness(0) invert(1) !important;
    transition: border-color 0.25s ease, opacity 0.25s ease;
    flex-shrink: 0;
}

.anthem-modal .btn-close:hover,
.anthem-modal-close:hover {
    border-color: #D4AF37 !important;
    opacity: 0.85;
}

.anthem-modal-body {
    padding: 1.4rem 1.7rem 1.7rem;
    position: relative;
    z-index: 1;
}

.anthem-modal-body .soundtrack-list {
    margin: 0;
}

.anthem-modal-note {
    text-align: center;
    font-size: 0.6rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin: 1.3rem 0 0;
}

@media (max-width: 575px) {
    .anthem-modal-header { padding: 1.2rem 1.2rem 1rem; }
    .anthem-modal-body   { padding: 1.2rem; }
    .anthem-modal-title  { font-size: 1.25rem; }
}
/* ── End Anthem Page ───────────────────────────────────────── */

/* ── Video Gallery Page ────────────────────────────────────── */
.video-gallery-section {
    padding-bottom: 5rem;
}

.video-gallery-empty {
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
    margin: 3rem 0;
    font-style: italic;
}

.video-gallery-set {
    margin-top: 3.8rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.video-gallery-set:first-of-type {
    margin-top: 2rem;
    padding-top: 0;
    border-top: none;
}

.video-gallery-set-header {
    text-align: center;
    margin-bottom: 2.6rem;
}

.video-gallery-set-eyebrow {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: #D4AF37;
    margin-bottom: 0.7rem;
    opacity: 0.85;
}

.video-gallery-set-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: 0.02em;
}

/* Full-width video masonry — mirrors executive gallery edge-to-edge pattern.
   Proportional columns (1.78:1) so Square and Vertical render at matching heights. */
.video-masonry {
    display: grid;
    grid-template-columns: 1.78fr 1fr;
    gap: 8px;
    padding: 0 8px;
    margin: 0 auto 3.5rem;
    align-items: start;
}

.video-masonry-item {
    display: flex;
    flex-direction: column;
    background: transparent;
    width: 100%;
}

/* Landscape spans both columns on its own row */
.video-masonry .video-ratio-16-9 {
    grid-column: 1 / -1;
}

.video-frame {
    position: relative;
    width: 100%;
    height: 0;                 /* height set via padding-bottom */
    background: #000;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.video-ratio-1-1  .video-frame { padding-bottom: 100%; }     /* Square    1:1  */
.video-ratio-9-16 .video-frame { padding-bottom: 177.78%; }  /* Vertical  9:16 */
.video-ratio-16-9 .video-frame { padding-bottom: 56.25%; }   /* Landscape 16:9 */

.video-masonry-player {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    max-width: 100%;
    display: block;
    object-fit: contain;
    background: #000;
    margin: 0 !important;
    z-index: 1;
}

/* Format pill sits over the top-left corner of the video (cream on dark) */
.video-format-label {
    position: absolute;
    top: 0.7rem;
    left: 0.7rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: Arial, sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #f5f0e2;
    background: rgba(10, 10, 10, 0.88);
    border: 1px solid rgba(212, 175, 55, 0.55);
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    font-weight: 700;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.video-format-label i {
    font-size: 0.62rem;
    color: #D4AF37;
    opacity: 1;
}

.video-format-note {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.02rem;
    color: #f5f0e2;
    line-height: 1.65;
    margin: 1rem 0.6rem 0;
    text-align: center;
    font-style: italic;
}

/* Tablet: same 2-column proportional grid, slightly tighter gap */
@media (max-width: 991px) {
    .video-masonry {
        gap: 6px;
        padding: 0 6px;
    }
    .video-format-note {
        font-size: 0.98rem;
    }
    .video-gallery-set-title { font-size: 1.55rem; }
}

/* Mobile: single column stack, everything full width */
@media (max-width: 575px) {
    .video-masonry {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 12px;
    }
    .video-masonry .video-ratio-16-9 {
        grid-column: auto;
    }
}
/* ── End Video Gallery Page ────────────────────────────────── */

/* Required field asterisk indicator (forms) */
.required-asterisk {
    color: #dc3545;
    font-weight: 700;
    margin-left: 2px;
}

/* Acknowledgment checkbox block on booking forms (T&Cs + Privacy) */
.acknowledgment-check {
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    padding: 1rem 1.1rem 1rem 2.4rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.acknowledgment-check .form-check-input {
    margin-top: 0.35rem;
    margin-left: -1.5rem;
    flex-shrink: 0;
}

.acknowledgment-check .form-check-input:checked {
    background-color: #D4AF37;
    border-color: #D4AF37;
}

.acknowledgment-check .form-check-input:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.2);
}

.acknowledgment-check .form-check-label {
    font-size: 0.88rem;
    line-height: 1.55;
    color: #444;
    cursor: pointer;
}

.acknowledgment-check .form-check-label a {
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.55);
    transition: color 0.25s ease, border-color 0.25s ease;
}

.acknowledgment-check .form-check-label a:hover {
    color: #D4AF37;
    border-color: #D4AF37;
}

/* Section header used inside booking forms to group fields */
.form-section-header {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.02em;
    margin: 1.6rem 0 1rem;
    padding-bottom: 0.55rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.form-section-header:first-child {
    margin-top: 0;
}

/* ── Booking Title Section (signature / birthday booking pages) ── */
.booking-title-section {
    background: #0a0a0a;
    padding: 4rem 0 3.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.booking-title-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #D4AF37;
    margin: 0.8rem 0 1rem;
    letter-spacing: 0.02em;
}

.booking-title-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.62);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .booking-title-heading { font-size: 1.85rem; }
    .booking-title-sub { font-size: 1rem; }
}

/* ── Dual CTA buttons (Birthday + Signature) ───────────────── */
.cta-button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 720px;
    margin: 0 auto;
}

.cta-button-group .btn-cta {
    flex: 1 1 auto;
    min-width: 240px;
}

.cta-button-group .btn-cta-outline {
    background: transparent;
    color: #D4AF37;
}

.cta-button-group .btn-cta-outline:hover {
    background: #D4AF37;
    color: #0a0a0a;
}

@media (max-width: 575px) {
    .cta-button-group {
        flex-direction: column;
        align-items: stretch;
    }
    .cta-button-group .btn-cta {
        min-width: 0;
        width: 100%;
    }
}

/* ── FAQ Page ──────────────────────────────────────────────── */
.faq-body-section {
    background: #FAF9F7;
    padding: 5rem 0 4rem;
}

.faq-accordion {
    max-width: 820px;
    margin: 0 auto;
}

.faq-accordion .accordion-item {
    background: #fff;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 0;
    margin-bottom: 0.9rem;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-accordion .accordion-item:hover {
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 4px 18px rgba(212, 175, 55, 0.08);
}

.faq-accordion .accordion-header {
    margin: 0;
}

.faq-accordion .accordion-button {
    background: #fff;
    color: #1a1a1a;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.02rem;
    letter-spacing: 0.01em;
    padding: 1.2rem 1.5rem;
    box-shadow: none;
    border: none;
    line-height: 1.4;
    text-align: left;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
    outline: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: #0a0a0a;
    color: #D4AF37;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) .faq-number {
    color: #D4AF37;
}

/* Replace default Bootstrap chevron with a styled diamond */
.faq-accordion .accordion-button::after {
    background-image: none;
    content: '◆';
    color: #D4AF37;
    font-size: 0.65rem;
    width: auto;
    height: auto;
    transform: rotate(0deg);
    transition: transform 0.3s ease, color 0.3s ease;
    margin-left: 0.5rem;
    opacity: 0.7;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
    color: #D4AF37;
    opacity: 1;
}

.faq-number {
    color: #D4AF37;
    font-weight: 700;
    margin-right: 0.85rem;
    letter-spacing: 0.04em;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.faq-accordion .accordion-body {
    background: #fff;
    color: #3a3a3a;
    padding: 1.6rem 1.8rem 1.8rem;
    border-top: 1px solid rgba(212, 175, 55, 0.18);
}

.faq-accordion .accordion-body p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.08rem;
    line-height: 1.85;
    margin-bottom: 0.9rem;
    color: #3a3a3a;
}

.faq-accordion .accordion-body p:last-child {
    margin-bottom: 0;
}

.faq-accordion .faq-tagline {
    font-family: 'Playfair Display', serif !important;
    font-size: 0.7rem !important;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: #D4AF37 !important;
    margin-top: 0.6rem;
    margin-bottom: 0 !important;
}

.faq-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.faq-list li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #444;
}

.faq-list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    top: 0.05em;
    color: #D4AF37;
    font-size: 0.5rem;
    line-height: 1.9;
}

.faq-inline-link {
    color: #1a1a1a;
    border-bottom: 1px solid rgba(212, 175, 55, 0.5);
    text-decoration: none;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.faq-inline-link:hover {
    color: #D4AF37;
    border-color: #D4AF37;
}

@media (max-width: 768px) {
    .faq-accordion .accordion-button {
        font-size: 0.95rem;
        padding: 1rem 2.5rem 1rem 1.1rem;
        align-items: flex-start;
        line-height: 1.45;
    }
    .faq-number {
        font-size: 0.95rem;
        margin-right: 0.85rem;
        line-height: 1.45;
        flex-shrink: 0;
        min-width: 1.6rem;
    }
    .faq-accordion .accordion-button::after {
        margin-top: 0.4rem;
    }
    .faq-accordion .accordion-body {
        padding: 1.3rem 1.2rem 1.4rem;
    }
    .faq-accordion .accordion-body p,
    .faq-list li {
        font-size: 1rem;
    }
}
/* ── End FAQ Page ──────────────────────────────────────────── */

/* AOS Animation Enhancements */
[data-aos] {
    transition: all 0.6s ease;
}

[data-aos][data-aos-delay] {
    transition-delay: calc(var(--aos-delay) * 1ms);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #D4AF37, #1e3a8a);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #f59e0b, #3b82f6);
}