/*
Theme Name: Studio Elegant
Theme URI: https://studio-elegant.local
Author: Fly Creative
Author URI: https://flycreativelk.com
Description: A custom WordPress theme preserving the Next.js UI, animations, and integrating WooCommerce with a custom admin dashboard.
Version: 1.1.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: studio-elegant
Tags: e-commerce, custom-theme
*/

/* =========================================================
   Studio Elegant WordPress Theme — Main Stylesheet
   Design System: Dark luxury photography brand
   ========================================================= */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- CSS Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: #000;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---- Typography ---- */
.font-serif { font-family: 'Playfair Display', serif; }
h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; line-height: 1.2; }

/* ---- Layout ---- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }

/* ---- Glassmorphism ---- */
.glassmorphism {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1rem;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.se-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: background 0.3s ease, border-color 0.3s ease;
    border-bottom: 1px solid transparent;
}
.se-navbar.scrolled {
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(12px);
    border-color: rgba(255,255,255,0.08);
}
.se-navbar__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.se-navbar__logo-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: .18em;
    color: #fff;
    transition: color .2s;
}
.se-navbar__logo-sub {
    font-size: .6rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
}
.se-navbar__logo:hover .se-navbar__logo-title { color: #d1d5db; }

/* Desktop Nav Links */
.se-navbar__links {
    display: none;
    list-style: none;
    gap: 0;
    align-items: center;
}
@media (min-width: 1024px) {
    .se-navbar__links { display: flex; gap: .25rem; }
}
.se-navbar__links li { position: relative; }
.se-navbar__links a,
.se-navbar__dropdown-toggle {
    color: #d1d5db;
    font-size: .82rem;
    font-weight: 500;
    padding: .5rem .75rem;
    border-radius: .375rem;
    transition: color .2s;
    display: flex; align-items: center; gap: .25rem;
    background: none;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
}
.se-navbar__links a:hover,
.se-navbar__dropdown-toggle:hover { color: #fff; }
.se-navbar__links a .underline-bar {
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: #fff;
    transition: width .3s;
}
.se-navbar__links a:hover .underline-bar { width: 100%; }
.se-navbar__dropdown-toggle .arrow {
    font-size: .6rem;
    transition: transform .3s;
    display: inline-block;
}
.se-navbar__links li:hover .arrow { transform: rotate(180deg); }

/* Dropdown */
.se-navbar__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    padding-top: .5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s, visibility .25s;
    pointer-events: none;
}
.se-navbar__links li:hover .se-navbar__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.se-navbar__dropdown-inner {
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: .75rem;
    padding: .5rem;
    min-width: 12rem;
    box-shadow: 0 20px 60px rgba(0,0,0,.8);
}
.se-navbar__dropdown a {
    display: block;
    padding: .5rem 1rem;
    font-size: .75rem;
    color: #9ca3af;
    border-radius: .5rem;
    transition: all .2s;
}
.se-navbar__dropdown a:hover { color: #fff; background: rgba(255,255,255,.06); }

/* CTA Area */
.se-navbar__cta {
    display: none;
    align-items: center;
    gap: 1rem;
}
@media (min-width: 1024px) { .se-navbar__cta { display: flex; } }
.se-navbar__cart-btn {
    position: relative;
    width: 2rem; height: 2rem;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;
    color: #fff;
    transition: background .2s;
    font-size: .85rem;
}
.se-navbar__cart-btn:hover { background: rgba(255,255,255,.15); }
.se-navbar__cart-count {
    position: absolute;
    top: -4px; right: -4px;
    background: #fff;
    color: #000;
    font-size: .55rem;
    font-weight: 700;
    width: 1rem; height: 1rem;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.se-navbar__divider { width: 1px; height: 1.5rem; background: rgba(255,255,255,.1); }
.se-navbar__signin {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #fff;
    padding: .375rem .75rem;
    border-radius: 2rem;
    transition: color .2s;
}
.se-navbar__signin:hover { color: #d1d5db; }
.se-btn-book {
    background: #fff;
    color: #000;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .5rem 1.25rem;
    border-radius: 2rem;
    transition: background .2s, transform .2s;
    display: inline-flex; align-items: center; gap: .4rem;
}
.se-btn-book:hover { background: #e5e7eb; transform: scale(1.04); }

/* Hamburger */
.se-navbar__hamburger {
    display: flex;
    align-items: center;
    gap: .75rem;
}
@media (min-width: 1024px) { .se-navbar__hamburger { display: none; } }
#se-menu-toggle {
    width: 2.2rem; height: 2.2rem;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 5px;
    background: transparent;
    border-radius: .375rem;
    transition: background .2s;
}
#se-menu-toggle:hover { background: rgba(255,255,255,.08); }
#se-menu-toggle span {
    display: block; width: 20px; height: 1.5px;
    background: #fff;
    transition: transform .3s, opacity .3s;
}
#se-menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
#se-menu-toggle.open span:nth-child(2) { opacity: 0; }
#se-menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.se-mobile-menu {
    display: none;
    background: rgba(0,0,0,.95);
    backdrop-filter: blur(16px);
    overflow: hidden;
    max-height: 0;
    transition: max-height .4s ease;
}
@media (max-width: 1023px) { .se-mobile-menu { display: block; } }
.se-mobile-menu.open { max-height: 600px; }
.se-mobile-menu__inner { padding: .5rem .75rem 1.25rem; }
.se-mobile-menu a, .se-mobile-menu__group-title {
    display: block;
    padding: .6rem .75rem;
    border-radius: .5rem;
    color: #d1d5db;
    font-size: .9rem;
    font-weight: 500;
    transition: color .2s, background .2s;
}
.se-mobile-menu a:hover { color: #fff; background: rgba(255,255,255,.05); }
.se-mobile-menu__group-title {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #4b5563;
    pointer-events: none;
}
.se-mobile-menu__sub a { padding-left: 1.5rem; border-left: 1px solid rgba(255,255,255,.08); }
.se-mobile-menu__actions {
    display: flex; flex-direction: column; gap: .75rem;
    margin-top: 1rem; padding: 0 .75rem;
}
.se-mobile-menu__actions .se-btn-book { text-align: center; justify-content: center; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.se-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.se-hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #000, #111827, #000);
    z-index: 0;
}
.se-hero__bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: .2;
}
.se-hero__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.6); z-index: 1; }
.se-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s ease, transform .8s ease;
}
.se-hero__content.visible { opacity: 1; transform: translateY(0); }
.se-hero__eyebrow {
    color: #9ca3af;
    letter-spacing: .3em;
    font-size: .8rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}
.se-hero__title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -.02em;
}
.se-hero__desc {
    color: #d1d5db;
    max-width: 40rem;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}
.se-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: .75rem;
}
.se-btn-primary {
    background: #fff;
    color: #000;
    padding: .7rem 2rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: .9rem;
    display: inline-flex; align-items: center; gap: .5rem;
    transition: background .2s, transform .2s;
}
.se-btn-primary:hover { background: #e5e7eb; transform: scale(1.04); }
.se-btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,.5);
    color: #fff;
    padding: .7rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: .9rem;
    transition: background .2s;
}
.se-btn-outline:hover { background: rgba(255,255,255,.08); }
.se-hero__shutter {
    position: absolute; inset: 0;
    background: #fff;
    z-index: 50;
    pointer-events: none;
}
.se-hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    z-index: 10;
    opacity: 0;
    animation: bounce 2s infinite 1.5s;
    text-align: center;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.se-hero__scroll a {
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    transition: color .2s;
}
.se-hero__scroll a:hover { color: #fff; }

/* ============================================================
   STATS SECTION
   ============================================================ */
.se-stats {
    padding: 4rem 0;
    background: #000;
    border-top: 1px solid rgba(255,255,255,.07);
}
.se-stats__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}
@media (min-width: 768px) { .se-stats__grid { grid-template-columns: repeat(4, 1fr); } }
.se-stat { padding: 1rem; }
.se-stat__value {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: .375rem;
    font-family: 'Playfair Display', serif;
}
.se-stat__label {
    font-size: .7rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-family: 'Inter', sans-serif;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.se-services {
    padding: 5rem 0;
    background: #000;
}
.se-section-header { text-align: center; margin-bottom: 4rem; }
.se-section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}
.se-section-divider {
    width: 4rem; height: 2px;
    background: rgba(255,255,255,.4);
    margin: 0 auto;
}
.se-services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) { .se-services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .se-services__grid { grid-template-columns: repeat(3, 1fr); } }
.se-service-card {
    padding: 2rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform .3s, background .3s, border-color .3s;
    cursor: default;
}
.se-service-card:hover { transform: scale(1.04); background: rgba(255,255,255,.06); }
.se-service-card__icon {
    width: 4rem; height: 4rem;
    background: rgba(255,255,255,.06);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
    transition: background .3s;
    font-size: 1.75rem;
}
.se-service-card:hover .se-service-card__icon { background: rgba(255,255,255,.15); }
.se-service-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: .6rem;
    font-family: 'Inter', sans-serif;
}
.se-service-card__desc { font-size: .85rem; color: #6b7280; line-height: 1.6; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.se-testimonials {
    padding: 5rem 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}
.se-testimonials__inner { max-width: 50rem; margin: 0 auto; padding: 0 1.5rem; text-align: center; }
.se-testimonials__quote-icon { font-size: 3rem; color: rgba(255,255,255,.15); margin-bottom: 2rem; line-height: 1; }
.se-testimonials__slider { min-height: 200px; position: relative; }
.se-testimonial {
    position: absolute; width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease;
    pointer-events: none;
}
.se-testimonial.active { opacity: 1; transform: translateY(0); pointer-events: all; position: relative; }
.se-testimonial__text {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    font-style: italic;
    color: #fff;
    margin-bottom: 1.25rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.5;
}
.se-testimonial__stars { margin-bottom: .75rem; font-size: .85rem; letter-spacing: .1em; }
.se-testimonial__stars .filled { color: #f59e0b; }
.se-testimonial__stars .empty { color: #374151; }
.se-testimonial__name { font-size: 1.1rem; font-weight: 600; color: #fff; font-family: 'Inter', sans-serif; }
.se-testimonials__dots { display: flex; justify-content: center; gap: .5rem; margin-top: 2rem; flex-wrap: wrap; }
.se-dot {
    width: .75rem; height: .75rem;
    border-radius: 1rem;
    background: rgba(255,255,255,.2);
    border: none;
    cursor: pointer;
    transition: background .3s, width .3s;
}
.se-dot.active { background: #fff; width: 2rem; }

/* ============================================================
   BOOKING CTA
   ============================================================ */
.se-booking-cta {
    padding: 6rem 1.5rem;
    text-align: center;
    background: linear-gradient(to top, #111827, #000);
}
.se-booking-cta__inner { max-width: 48rem; margin: 0 auto; }
.se-booking-cta__title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.25rem;
}
.se-booking-cta__desc { color: #6b7280; font-size: 1.1rem; margin-bottom: 2.5rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.se-footer {
    background: #000;
    border-top: 1px solid rgba(255,255,255,.05);
    color: #fff;
    padding: 5rem 0 3rem;
    position: relative;
    overflow: hidden;
}
.se-footer__top-line {
    position: absolute; top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,.2), transparent);
}
.se-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}
@media (min-width: 640px) { .se-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .se-footer__grid { grid-template-columns: repeat(4, 1fr); } }
.se-footer__brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: .25rem;
}
.se-footer__brand-name span { color: #6b7280; }
.se-footer__brand-sub { font-size: .6rem; text-transform: uppercase; letter-spacing: .3em; color: rgba(255,255,255,.3); margin-bottom: 1rem; }
.se-footer__brand-desc { font-size: .85rem; color: #4b5563; line-height: 1.7; max-width: 22rem; }
.se-footer__socials { display: flex; gap: .75rem; margin-top: 1.5rem; }
.se-footer__social {
    width: 2.5rem; height: 2.5rem;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    color: #6b7280;
    transition: color .2s, border-color .2s, background .2s;
}
.se-footer__social:hover { color: #fff; border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.05); }
.se-footer__col-title {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #e5e7eb;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
}
.se-footer__links { list-style: none; display: flex; flex-direction: column; gap: .9rem; }
.se-footer__links a {
    font-size: .85rem;
    color: #6b7280;
    display: flex; align-items: center; gap: 0;
    transition: color .3s;
}
.se-footer__links a::before {
    content: '';
    display: inline-block;
    width: 0; height: 1px;
    background: #fff;
    margin-right: 0;
    opacity: 0;
    transition: width .3s, margin-right .3s, opacity .3s;
}
.se-footer__links a:hover { color: #fff; }
.se-footer__links a:hover::before { width: 1rem; margin-right: .5rem; opacity: 1; }
.se-footer__contact-item {
    display: flex; align-items: flex-start; gap: 1rem;
    margin-bottom: 1.25rem;
}
.se-footer__contact-icon {
    width: 2.25rem; height: 2.25rem;
    min-width: 2.25rem;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: .5rem;
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem;
    color: #6b7280;
}
.se-footer__contact-text { font-size: .85rem; color: #6b7280; }
.se-footer__contact-text a { color: #6b7280; transition: color .2s; }
.se-footer__contact-text a:hover { color: #fff; }
.se-footer__newsletter-desc { font-size: .85rem; color: #4b5563; margin-bottom: 1rem; line-height: 1.6; }
.se-footer__newsletter-form { position: relative; }
.se-footer__newsletter-form input {
    width: 100%;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 1.25rem;
    padding: 1rem 3.5rem 1rem 1.25rem;
    font-size: .85rem;
    color: #fff;
    outline: none;
    transition: border-color .2s;
}
.se-footer__newsletter-form input::placeholder { color: #374151; }
.se-footer__newsletter-form input:focus { border-color: rgba(255,255,255,.25); }
.se-footer__newsletter-btn {
    position: absolute;
    right: .4rem; top: 50%;
    transform: translateY(-50%);
    width: 2.5rem; height: 2.5rem;
    background: #fff;
    color: #000;
    border-radius: .75rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    transition: background .2s;
}
.se-footer__newsletter-btn:hover { background: #e5e7eb; }
.se-footer__bottom {
    border-top: 1px solid rgba(255,255,255,.05);
    padding-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: .72rem;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: .12em;
}
.se-footer__bottom a { color: #6b7280; transition: color .2s; }
.se-footer__bottom a:hover { color: #fff; }
#se-back-to-top {
    position: fixed;
    bottom: 2rem; right: 2rem;
    z-index: 200;
    width: 3.5rem; height: 3.5rem;
    background: #fff;
    color: #000;
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(0,0,0,.6);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    transition: opacity .3s, transform .3s;
    pointer-events: none;
}
#se-back-to-top.visible { opacity: 1; transform: scale(1) translateY(0); pointer-events: all; }
#se-back-to-top:hover { background: #e5e7eb; }

/* ============================================================
   PACKAGES PAGE
   ============================================================ */
.se-page-hero {
    padding: 8rem 1.5rem 4rem;
    text-align: center;
}
.se-page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}
.se-page-divider {
    width: 5rem; height: 2px;
    background: rgba(255,255,255,.25);
    margin: 0 auto;
}
.se-packages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1.5rem 5rem;
    max-width: 1280px;
    margin: 0 auto;
}
@media (min-width: 768px) { .se-packages-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .se-packages-grid { grid-template-columns: repeat(3, 1fr); } }
.se-pkg-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    transition: border-color .3s, background .3s;
}
.se-pkg-card:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.15); }
.se-pkg-badge {
    position: absolute;
    top: 0; right: 0;
    background: rgba(255,255,255,.1);
    padding: .6rem 1rem;
    border-bottom-left-radius: 1rem;
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #fff;
}
.se-pkg-name { font-size: 1.35rem; font-weight: 700; color: #fff; margin-bottom: .375rem; font-family: 'Playfair Display', serif; }
.se-pkg-desc { font-size: .85rem; color: #6b7280; margin-bottom: 1.5rem; min-height: 2.5rem; }
.se-pkg-price { font-size: 2.5rem; font-weight: 700; color: #fff; margin-bottom: 2rem; font-family: 'Playfair Display', serif; }
.se-pkg-price span { font-size: .9rem; font-weight: 400; color: #6b7280; }
.se-pkg-features { list-style: none; flex: 1; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.se-pkg-features li { display: flex; align-items: flex-start; gap: .75rem; font-size: .85rem; color: #d1d5db; }
.se-pkg-features li::before { content: '✓'; color: #fff; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.se-about {
    min-height: 100vh;
    background: #000;
    padding-top: 6rem;
    padding-bottom: 5rem;
}
