/*
Theme Name: Luscious Lox Hair Boutique
Theme URI: https://lusciouslox.com
Author: Luscious Lox
Author URI: https://lusciouslox.com
Description: Custom theme for Luscious Lox Hair Boutique - Luxury Hair Extensions & Styling
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: luscious-lox
*/

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

:root {
    --dark-brown: #3E1F0D;
    --rich-brown: #5C2E0E;
    --copper: #B5651D;
    --light-copper: #C8875F;
    --gold: #C9A96E;
    --cream: #FDF6EE;
    --warm-white: #FFFAF5;
    --soft-blush: #F5E6D8;
    --charcoal: #2A2A2A;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Cormorant', serif;
    color: var(--charcoal);
    background: var(--warm-white);
    line-height: 1.7;
    font-weight: 400;
}

/* ── NAVIGATION ── */
.site-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
    background: var(--cream);
    box-shadow: 0 2px 20px rgba(62,31,13,0.06);
}
body.admin-bar .site-nav {
    top: 32px;
}

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

.site-nav.scrolled {
    background: var(--cream);
    backdrop-filter: blur(10px);
    padding: 12px 60px;
    box-shadow: 0 2px 30px rgba(62,31,13,0.1);
}

.site-nav.nav-solid {
    background: var(--cream);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 30px rgba(62,31,13,0.1);
}

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-logo-img {
    display: block;
    height: 50px;
    width: auto;
    transition: opacity 0.3s ease;
}

.nav-logo-img:hover {
    opacity: 0.85;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-brown);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after { width: 100%; }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--dark-brown);
    transition: 0.3s;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, var(--dark-brown) 0%, #1a0c04 50%, var(--dark-brown) 100%);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    position: relative;
    overflow: hidden;
}
body.admin-bar .hero {
    padding-top: 172px;
}

@media (max-width: 782px) {
    body.admin-bar .hero {
        padding-top: 190px;
    }
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background-image: url('img/hero.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    mask-image: linear-gradient(to right, transparent 0%, black 30%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(181,101,29,0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-40px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 30px 0 80px;
}
.hero-tagline {
    font-family: 'Cormorant', serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeUp 1s ease 0.3s forwards;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 300;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 25px;
    opacity: 0;
    animation: fadeUp 1s ease 0.6s forwards;
}

.hero-title em {
    font-style: italic;
    color: var(--light-copper);
}

.hero-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    margin-bottom: 45px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeUp 1s ease 0.9s forwards;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.btn {
    display: inline-block;
    padding: 16px 45px;
    font-family: 'Cormorant', serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    background: transparent;
    transition: all 0.4s ease;
    cursor: pointer;
    opacity: 0;
    animation: fadeUp 1s ease 1.2s forwards;
}

.btn:hover {
    background: var(--gold);
    color: var(--dark-brown);
}

.btn-filled {
    background: var(--copper);
    border-color: var(--copper);
    color: #fff;
}

.btn-filled:hover {
    background: var(--light-copper);
    border-color: var(--light-copper);
    color: #fff;
}

.btn-static {
    opacity: 1;
    animation: none;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll span {
    display: block;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    margin: 0 auto;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; height: 60px; }
    50% { opacity: 0.3; height: 40px; }
}

/* ── SECTIONS COMMON ── */
section { padding: 120px 60px; }

.section-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--dark-brown);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 40px;
}

.section-text {
    font-size: 1.075rem;
    color: #666;
    max-width: 600px;
    line-height: 1.9;
}

/* ── SERVICES ── */
.services { background: var(--cream); }

.services-header { text-align: center; margin-bottom: 70px; }
.services-header .section-divider { margin: 0 auto 40px; }
.services-header .section-text { margin: 0 auto; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    padding: 50px 35px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--copper), var(--gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(62,31,13,0.08);
}

.service-icon {
    font-size: 2.2rem;
    margin-bottom: 25px;
    display: block;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--dark-brown);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--copper);
    font-weight: 500;
}

.services-cta { text-align: center; margin-top: 50px; }


/* ── GALLERY ── */
.gallery { background: var(--dark-brown); }

.gallery .section-label { color: var(--gold); }
.gallery .section-title { color: #fff; }
.gallery-header { text-align: center; margin-bottom: 60px; }
.gallery-header .section-divider { margin: 0 auto 40px; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-item {
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(181,101,29,0.2), rgba(92,46,14,0.4));
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.gallery-item:hover { transform: scale(1.03); }

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(62,31,13,0.6), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-item span {
    position: absolute;
    bottom: 15px;
    left: 15px;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #fff;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.gallery-item:hover span { opacity: 1; transform: translateY(0); }

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    color: rgba(255,255,255,0.15);
    font-size: 1.5rem;
    font-style: italic;
}

/* ── TESTIMONIALS ── */
.testimonials { background: var(--cream); text-align: center; }

.testimonials-header { margin-bottom: 70px; }
.testimonials-header .section-divider { margin: 0 auto 40px; }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: #fff;
    padding: 45px 35px;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--soft-blush);
    position: absolute;
    top: 10px;
    left: 25px;
    line-height: 1;
}

.testimonial-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.9;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark-brown);
}

.testimonial-role {
    font-size: 0.75rem;
    color: var(--copper);
    letter-spacing: 1px;
    margin-top: 4px;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.8rem;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

/* ── CONTACT / BOOKING ── */
.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--dark-brown);
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    background: var(--soft-blush);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-item-text h4 {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark-brown);
    margin-bottom: 4px;
}

.contact-item-text p {
    font-size: 0.9rem;
    color: #888;
}

.hours-grid {
    display: grid;
    grid-template-columns: auto auto;
    gap: 5px 20px;
    margin-top: 30px;
}

.hours-grid dt {
    font-size: 0.85rem;
    color: var(--dark-brown);
    font-weight: 400;
}

.hours-grid dd {
    font-size: 0.85rem;
    color: #888;
}

/* Form */
.booking-form {
    background: var(--cream);
    padding: 50px;
}

.booking-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--dark-brown);
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark-brown);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0d5ca;
    background: #fff;
    font-family: 'Cormorant', serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--charcoal);
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--copper);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--dark-brown);
    color: #fff;
    border: none;
    font-family: 'Cormorant', serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 10px;
}

.form-submit:hover { background: var(--rich-brown); }

/* ── AMELIA BOOKING INTEGRATION ── */
.amelia-booking-section {
    background: var(--cream);
    padding: 50px;
}

.amelia-booking-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--dark-brown);
    margin-bottom: 30px;
}

/* ── FOOTER ── */
.site-footer {
    background: var(--dark-brown);
    color: rgba(255,255,255,0.5);
    padding: 60px 60px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.8;
    max-width: 300px;
}

.footer-col h4 {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 10px; }

.footer-col a {
    text-decoration: none;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    font-size: 0.75rem;
    max-width: 1200px;
    margin: 0 auto;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ══════════════════════════════════════
   SERVICES PAGE STYLES
   ══════════════════════════════════════ */

/* ── PAGE HERO ── */
.page-hero {
    padding: 180px 60px 100px;
    background: linear-gradient(135deg, var(--dark-brown) 0%, #1a0c04 50%, var(--dark-brown) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(181,101,29,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero-content { position: relative; z-index: 2; }

.page-hero-label {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.page-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 300;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.page-hero-title em { font-style: italic; color: var(--light-copper); }

.page-hero-subtitle {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    max-width: 550px;
    margin: 0 auto;
}

/* ── NOTICES BAR ── */
.notices {
    background: var(--cream);
    padding: 30px 60px;
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.notice-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--dark-brown);
    font-weight: 400;
}

.notice-icon {
    width: 36px;
    height: 36px;
    background: var(--soft-blush);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* ── PRICING SECTIONS ── */
.pricing-section {
    padding: 80px 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-section-wrapper:nth-child(even) { background: var(--cream); }

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 45px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--soft-blush);
}

.section-note {
    font-size: 0.8rem;
    color: #999;
    font-style: italic;
    text-align: right;
    max-width: 250px;
}

/* ── PRICING ITEMS ── */
.pricing-list { display: flex; flex-direction: column; }

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

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

.pricing-item:hover {
    padding-left: 15px;
    background: rgba(245,230,216,0.3);
}

.pricing-item-name {
    font-size: 0.95rem;
    color: var(--charcoal);
    font-weight: 400;
}

.pricing-item-desc {
    font-size: 0.8rem;
    color: #999;
    margin-top: 3px;
    font-weight: 300;
}

.pricing-item-dots {
    flex: 1;
    margin: 0 15px;
    border-bottom: 1px dotted #d4c8bb;
    min-width: 40px;
    position: relative;
    top: -5px;
}

.pricing-item-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--copper);
    white-space: nowrap;
}

/* ── PRICING CARDS ── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.pricing-card {
    background: #fff;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.pricing-section-wrapper:nth-child(even) .pricing-card { background: var(--warm-white); }

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--copper), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.pricing-card:hover::before { transform: scaleX(1); }

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(62,31,13,0.08);
}

.pricing-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--dark-brown);
    margin-bottom: 8px;
}

.pricing-card-subtitle {
    font-size: 0.78rem;
    color: #999;
    margin-bottom: 20px;
    line-height: 1.6;
}

.pricing-card .pricing-item { padding: 12px 0; }
.pricing-card .pricing-item-name { font-size: 0.88rem; }
.pricing-card .pricing-item-price { font-size: 1.15rem; }

/* ── EXTENSIONS FEATURE ── */
.extensions-hero {
    background: linear-gradient(135deg, var(--dark-brown), #1a0c04);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.extensions-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(181,101,29,0.1) 0%, transparent 70%);
}

.extensions-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto;
}

.extensions-badge {
    display: inline-block;
    padding: 8px 25px;
    border: 1px solid var(--gold);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 30px;
}

.extensions-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.2;
}

.extensions-title em { color: var(--light-copper); font-style: italic; }

.extensions-text {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    line-height: 1.9;
    margin-bottom: 15px;
}

.extensions-features {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.ext-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
}

.ext-feature::before {
    content: '◆';
    color: var(--gold);
    font-size: 0.45rem;
}

.extensions-cta {
    display: inline-block;
    margin-top: 45px;
    padding: 16px 45px;
    font-family: 'Cormorant', serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    transition: all 0.4s ease;
}

.extensions-cta:hover {
    background: var(--gold);
    color: var(--dark-brown);
}

/* ── CTA BANNER ── */
.cta-banner {
    background: var(--soft-blush);
    padding: 70px 60px;
    text-align: center;
}

.cta-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--dark-brown);
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 35px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-block;
    padding: 16px 45px;
    font-family: 'Cormorant', serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    background: var(--dark-brown);
    color: #fff;
    transition: all 0.4s ease;
}

.cta-btn:hover { background: var(--rich-brown); }

/* ── LED BADGE ── */
.led-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(181,101,29,0.1), rgba(201,169,110,0.1));
    border: 1px solid rgba(201,169,110,0.3);
    padding: 8px 18px;
    margin-top: 12px;
    font-size: 0.72rem;
    color: var(--copper);
    font-weight: 400;
    letter-spacing: 1px;
}

.led-pulse {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(201,169,110,0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(201,169,110,0); }
}

/* ── SCROLL ANIMATIONS ── */
.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.8rem;
    }

    .hero-content {
        max-width: 620px;
        padding: 0 30px 0 60px;
    }

    .hero-bg {
        width: 50%;
    }
}

@media (max-width: 1024px) {
    section {
        padding: 80px 40px;
    }

    .hero {
        padding: 130px 0 70px;
    }

    .hero-title {
        font-size: 3.2rem;
    }

    .hero-subtitle {
        font-size: 1.175rem;
        max-width: 500px;
    }

    .hero-content {
        max-width: 560px;
        padding: 0 30px 0 40px;
    }

    .hero-bg {
        width: 48%;
        background-position: center center;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .gallery-item:nth-child(1) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-section {
        padding: 60px 40px;
    }

    .page-hero {
        padding: 150px 40px 80px;
    }

}

@media (max-width: 768px) {
    .site-nav {
        padding: 15px 25px;
    }

    .site-nav.scrolled {
        padding: 12px 25px;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--dark-brown);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.4s ease;
    }

    .nav-links.open {
        right: 0;
    }

    section {
        padding: 70px 25px;
    }

    .hero {
        min-height: auto;
        padding: 140px 0 70px;
        justify-content: center;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 25px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 2.4rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .hero-bg {
        width: 100%;
        opacity: 0.18;
        mask-image: none;
        -webkit-mask-image: none;
        background-position: center top;
    }

    .hero-tagline {
        font-size: 0.7rem;
        letter-spacing: 4px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .booking-form {
        padding: 35px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .page-hero {
        padding: 130px 25px 70px;
    }

    .page-hero-title {
        font-size: 2.8rem;
    }

    .pricing-section {
        padding: 50px 25px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .section-note {
        text-align: left;
        max-width: none;
    }

    .notices {
        padding: 25px;
        gap: 25px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .extensions-hero {
        padding: 60px 25px;
    }

    .extensions-title {
        font-size: 2.2rem;
    }

    .cta-banner {
        padding: 50px 25px;
    }

    .cta-banner h2 {
        font-size: 2rem;
    }

    .site-footer {
        padding: 40px 25px 25px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 130px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-content {
        padding: 0 20px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.7rem;
        letter-spacing: 2px;
    }

}