/*
 Theme Name:   San Diego Chic Child
 Theme URI:    https://sandiegochic.com
 Description:  San Diego Chic Medical Spa – Child theme of Astra
 Author:        San Diego Chic
 Author URI:   https://sandiegochic.com
 Template:     astra
 Version:      1.0.0
 License:       GNU General Public License v2 or later
 Text Domain:  san-diego-chic-child
*/

/* =====================================================
   SAN DIEGO CHIC — DESIGN SYSTEM
   Palette:
     --blush:      #F2D6D0   (soft rose blush)
     --champagne:  #E8D5B7   (warm champagne)
     --gold:       #C9A96E   (aged gold accent)
     --ivory:      #FAF7F4   (warm off-white)
     --charcoal:   #2C2C2C   (near-black for text)
     --mauve:      #A87E7E   (deep dusty rose)
     --white:      #FFFFFF
   Fonts:
     Headings: 'Cormorant Garamond', serif  (luxe editorial)
     Body:     'Raleway', sans-serif        (clean modern)
   ===================================================== */

/* -------------------------------------------------------
   0. CSS CUSTOM PROPERTIES
------------------------------------------------------- */
:root {
    --clr-blush:       #F2D6D0;
    --clr-champagne:   #E8D5B7;
    --clr-gold:        #C9A96E;
    --clr-gold-dark:   #A8844A;
    --clr-ivory:       #FAF7F4;
    --clr-charcoal:    #2C2C2C;
    --clr-mauve:       #A87E7E;
    --clr-white:       #FFFFFF;
    --clr-text:        #3D3535;
    --clr-text-light:  #7A6E6E;

    --font-heading:    'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body:       'Raleway', 'Lato', 'Helvetica Neue', sans-serif;

    --radius-sm:       4px;
    --radius-md:       8px;
    --radius-lg:       20px;
    --radius-pill:     100px;

    --shadow-soft:     0 4px 32px rgba(169, 126, 126, 0.10);
    --shadow-card:     0 8px 40px rgba(44, 44, 44, 0.08);
    --shadow-hover:    0 16px 56px rgba(44, 44, 44, 0.14);

    --transition:      all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width:       1200px;
    --section-gap:     100px;
}

/* -------------------------------------------------------
   1. RESET & BASE
------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    background-color: var(--clr-ivory);
    color: var(--clr-text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 300;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--clr-gold-dark); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--clr-mauve); }

/* -------------------------------------------------------
   2. TYPOGRAPHY
------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    color: var(--clr-charcoal);
    letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-style: italic; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.15em; }

p { margin-bottom: 1.2rem; }

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--clr-gold-dark);
    display: block;
    margin-bottom: 0.75rem;
}

.lead {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--clr-text-light);
    line-height: 1.9;
    max-width: 680px;
}

blockquote {
    border-left: 3px solid var(--clr-gold);
    padding: 1.5rem 2rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--clr-mauve);
    background: var(--clr-blush);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 2rem 0;
}

/* -------------------------------------------------------
   3. LAYOUT UTILITIES
------------------------------------------------------- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
}

.section { padding: var(--section-gap) 0; }
.section--sm { padding: 60px 0; }
.section--lg { padding: 140px 0; }

.section--ivory { background-color: var(--clr-ivory); }
.section--white { background-color: var(--clr-white); }
.section--blush { background-color: var(--clr-blush); }
.section--champagne { background-color: var(--clr-champagne); }
.section--charcoal { background-color: var(--clr-charcoal); color: var(--clr-ivory); }

.section--charcoal h1,
.section--charcoal h2,
.section--charcoal h3 { color: var(--clr-ivory); }

.text-center { text-align: center; }
.text-left   { text-align: left; }
.mx-auto     { margin-left: auto; margin-right: auto; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 24px; }
}

/* -------------------------------------------------------
   4. BUTTONS
------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 16px 40px;
    border-radius: var(--radius-pill);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1;
}

.btn--primary {
    background: var(--clr-gold);
    color: var(--clr-white);
    border-color: var(--clr-gold);
}
.btn--primary:hover {
    background: var(--clr-gold-dark);
    border-color: var(--clr-gold-dark);
    color: var(--clr-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 169, 110, 0.35);
}

.btn--outline {
    background: transparent;
    color: var(--clr-gold-dark);
    border-color: var(--clr-gold);
}
.btn--outline:hover {
    background: var(--clr-gold);
    color: var(--clr-white);
    transform: translateY(-2px);
}

.btn--dark {
    background: var(--clr-charcoal);
    color: var(--clr-ivory);
    border-color: var(--clr-charcoal);
}
.btn--dark:hover {
    background: var(--clr-mauve);
    border-color: var(--clr-mauve);
    color: var(--clr-white);
    transform: translateY(-2px);
}

.btn--ghost {
    background: transparent;
    color: var(--clr-white);
    border-color: rgba(255,255,255,0.6);
}
.btn--ghost:hover {
    background: var(--clr-white);
    color: var(--clr-charcoal);
}

.btn--lg { padding: 20px 56px; font-size: 0.85rem; }
.btn--sm { padding: 10px 24px; font-size: 0.72rem; }

/* -------------------------------------------------------
   5. HEADER / NAVIGATION
------------------------------------------------------- */
#masthead,
.site-header {
    background: var(--clr-white);
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 24px rgba(44, 44, 44, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Top bar with phone */
.header-topbar {
    background: var(--clr-charcoal);
    color: var(--clr-champagne);
    text-align: center;
    padding: 8px 20px;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    font-weight: 400;
}

.header-topbar a {
    color: var(--clr-gold);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.1em;
}
.header-topbar a:hover { color: var(--clr-blush); }

/* Logo */
.site-branding .site-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    font-style: italic;
    color: var(--clr-charcoal);
    letter-spacing: 0.04em;
    line-height: 1;
}

.site-branding .site-title a { color: inherit; text-decoration: none; }
.site-branding .site-description {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--clr-gold);
    margin-top: 4px;
}

/* Primary navigation */
.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 36px;
    align-items: center;
}

.main-navigation a {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--clr-charcoal);
    text-decoration: none;
    padding-bottom: 4px;
    position: relative;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--clr-gold);
    transition: var(--transition);
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a {
    color: var(--clr-gold-dark);
}
.main-navigation a:hover::after,
.main-navigation .current-menu-item > a::after {
    width: 100%;
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--clr-charcoal);
    display: flex;
    align-items: center;
    gap: 6px;
}
.header-phone::before {
    content: '\260E';
    color: var(--clr-gold);
    font-size: 1rem;
}

/* ── MOBILE HEADER: two-row layout, no hamburger ───────── */
@media (max-width: 900px) {

    /* Allow header to grow to two rows */
    .header-inner {
        flex-wrap: wrap;
        padding: 10px 16px 0;
        height: auto;
        gap: 0;
    }

    /* Row 1: logo (left) + Book Now (right) */
    .site-branding {
        flex: 1 1 auto;
        min-width: 0;
    }
    .header-cta {
        flex-shrink: 0;
        align-self: center;
    }
    .header-phone { display: none; }  /* hide phone number, keep button */

    /* Row 2: nav spans full width below */
    .main-navigation {
        order: 10;
        width: 100%;
        border-top: 1px solid rgba(201,169,110,0.15);
        margin-top: 8px;
        padding: 6px 0 10px;
    }
    .main-navigation ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
    }
    .main-navigation ul li a {
        font-size: 0.68rem;
        letter-spacing: 0.1em;
        padding: 7px 10px;
        display: inline-block;
    }
    .main-navigation a::after { display: none; }
    .site-branding .site-description { display: none; }
}

/* Very small phones — shrink Book Now button slightly */
@media (max-width: 400px) {
    .header-cta .btn {
        font-size: 0.6rem;
        padding: 8px 12px;
        letter-spacing: 0.12em;
    }
    .site-branding .site-title { font-size: 1.5rem; }
}

/* On small phones, hide the header Book Now button — it lives in the mobile menu instead */
@media (max-width: 680px) {
    .header-cta .btn { display: none; }
}

/* -------------------------------------------------------
   6. HERO SECTION
------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--clr-charcoal);
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    opacity: 0.5;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(44, 44, 44, 0.65) 0%,
        rgba(168, 126, 126, 0.25) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 60px 40px;
}

.hero__eyebrow {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--clr-gold);
    display: block;
    margin-bottom: 1.2rem;
}

.hero__title {
    color: var(--clr-white);
    margin-bottom: 1.5rem;
    font-size: clamp(3rem, 7vw, 5.5rem);
}

.hero__subtitle {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

/* Split hero (image + content side by side) */
.hero--split {
    min-height: 85vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.hero--split .hero__image { height: 100%; object-fit: cover; }
.hero--split .hero__panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: var(--clr-charcoal);
}

@media (max-width: 768px) {
    .hero { min-height: 70vh; }
    .hero__content { padding: 40px 20px; }
    .hero--split { grid-template-columns: 1fr; }
    .hero--split .hero__image { height: 50vh; }
}

/* -------------------------------------------------------
   7. SECTION HEADERS
------------------------------------------------------- */
.section-header {
    margin-bottom: 64px;
}

.section-header--center {
    text-align: center;
}
.section-header--center .lead {
    margin: 0 auto;
}

.section-header .divider {
    width: 48px;
    height: 2px;
    background: var(--clr-gold);
    margin: 20px 0;
    display: block;
}

.section-header--center .divider {
    margin: 20px auto;
}

/* -------------------------------------------------------
   8. SERVICE CARDS
------------------------------------------------------- */
.service-card {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-card__image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-card__image {
    transform: scale(1.04);
}

.service-card__image-wrap {
    overflow: hidden;
    height: 280px;
}

.service-card__body {
    padding: 36px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card__eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--clr-gold);
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    margin-bottom: 14px;
    color: var(--clr-charcoal);
}

.service-card__desc {
    color: var(--clr-text-light);
    font-size: 0.92rem;
    line-height: 1.8;
    flex: 1;
    margin-bottom: 24px;
}

.service-card__link {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--clr-gold-dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.service-card__link::after {
    content: '→';
    transition: transform 0.25s ease;
}
.service-card:hover .service-card__link::after {
    transform: translateX(4px);
}

/* Service detail page hero */
.service-hero {
    background: linear-gradient(135deg, var(--clr-charcoal) 0%, #4A3535 100%);
    padding: 120px 0 80px;
    color: var(--clr-white);
    text-align: center;
}

.service-hero h1 { color: var(--clr-white); margin-bottom: 16px; }
.service-hero .lead { color: rgba(255,255,255,0.8); margin: 0 auto; }

/* -------------------------------------------------------
   9. MEMBERSHIP SECTION
------------------------------------------------------- */
.membership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

@media (max-width: 900px) {
    .membership-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

.membership-card {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    padding: 48px 36px;
    text-align: center;
    box-shadow: var(--shadow-card);
    position: relative;
    border: 2px solid transparent;
    transition: var(--transition);
}

.membership-card:hover {
    border-color: var(--clr-gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.membership-card--featured {
    border-color: var(--clr-gold);
    background: var(--clr-charcoal);
    color: var(--clr-ivory);
    transform: scale(1.04);
}

.membership-card--featured:hover {
    transform: scale(1.04) translateY(-6px);
}

.membership-card--featured h3,
.membership-card--featured .membership-card__price { color: var(--clr-white); }
.membership-card--featured .membership-card__period { color: var(--clr-champagne); }
.membership-card--featured li { color: rgba(255,255,255,0.8); }

.membership-card__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--clr-gold);
    color: var(--clr-white);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
}

.membership-card__tier {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--clr-gold);
    margin-bottom: 12px;
}

.membership-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 8px;
}

.membership-card__price {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 600;
    color: var(--clr-charcoal);
    line-height: 1;
    margin: 20px 0 4px;
}

.membership-card__period {
    font-size: 0.78rem;
    color: var(--clr-text-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.membership-card__features {
    list-style: none;
    margin: 0 0 36px;
    padding: 0;
    text-align: left;
    border-top: 1px solid rgba(201, 169, 110, 0.25);
    padding-top: 24px;
}

.membership-card__features li {
    font-size: 0.88rem;
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--clr-text);
    border-bottom: 1px solid rgba(201, 169, 110, 0.12);
}

.membership-card__features li::before {
    content: '✓';
    color: var(--clr-gold);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* -------------------------------------------------------
   10. FAQ SECTION
------------------------------------------------------- */
.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item {
    border-bottom: 1px solid rgba(201, 169, 110, 0.25);
}

.faq-question {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--clr-charcoal);
    padding: 28px 48px 28px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    position: relative;
    user-select: none;
    transition: color 0.25s ease;
}

.faq-question:hover { color: var(--clr-gold-dark); }

.faq-question::after {
    content: '+';
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--clr-gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.is-open .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.is-open .faq-answer {
    max-height: 600px;
    padding-bottom: 28px;
}

.faq-answer p {
    color: var(--clr-text-light);
    line-height: 1.9;
    font-size: 0.95rem;
}

/* -------------------------------------------------------
   11. CONTACT / FORMS
------------------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 64px;
    align-items: start;
}

@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

.contact-info { padding-top: 8px; }

.contact-info__phone {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: var(--clr-charcoal);
    display: block;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.contact-info__phone a { color: var(--clr-gold-dark); }
.contact-info__phone a:hover { color: var(--clr-mauve); }

.contact-info__detail {
    font-size: 0.88rem;
    color: var(--clr-text-light);
    line-height: 2;
    margin-bottom: 32px;
}

/* Form styling */
.chic-form .form-group {
    margin-bottom: 24px;
}

.chic-form label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--clr-charcoal);
    margin-bottom: 8px;
}

.chic-form input[type="text"],
.chic-form input[type="email"],
.chic-form input[type="tel"],
.chic-form input[type="number"],
.chic-form select,
.chic-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(201, 169, 110, 0.35);
    border-radius: var(--radius-md);
    background: var(--clr-white);
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--clr-charcoal);
    transition: var(--transition);
    -webkit-appearance: none;
    appearance: none;
}

.chic-form input:focus,
.chic-form select:focus,
.chic-form textarea:focus {
    outline: none;
    border-color: var(--clr-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

.chic-form textarea { min-height: 140px; resize: vertical; }

.chic-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A96E' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

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

@media (max-width: 600px) {
    .chic-form .form-row { grid-template-columns: 1fr; }
}

.chic-form .form-note {
    font-size: 0.78rem;
    color: var(--clr-text-light);
    margin-top: 8px;
}

.form-success {
    background: #EAF7F0;
    border: 1px solid #6DBF95;
    color: #1E6B45;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    display: none;
}

/* -------------------------------------------------------
   12. TESTIMONIALS
------------------------------------------------------- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

@media (max-width: 900px) {
    .testimonial-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}

.testimonial-card {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: var(--shadow-card);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1;
    color: var(--clr-blush);
    position: absolute;
    top: 16px;
    left: 28px;
}

.testimonial-card__stars {
    color: var(--clr-gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-card__text {
    font-style: italic;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--clr-text);
    margin-bottom: 24px;
}

.testimonial-card__author {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--clr-mauve);
}

/* -------------------------------------------------------
   13. FOOTER
------------------------------------------------------- */
.site-footer {
    background: var(--clr-charcoal);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand .site-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--clr-white);
    margin-bottom: 8px;
    display: block;
}

.footer-brand .tagline {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--clr-gold);
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-phone-block { margin: 20px 0; }
.footer-phone-block .label {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--clr-gold);
    display: block;
    margin-bottom: 4px;
}

.footer-phone-block .phone-number {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--clr-white);
    text-decoration: none;
    transition: color 0.25s ease;
}
.footer-phone-block .phone-number:hover { color: var(--clr-gold); }

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--clr-white);
    margin-bottom: 20px;
}

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

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

.footer-col a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.25s ease;
}
.footer-col a:hover { color: var(--clr-gold); }

.footer-col address {
    font-style: normal;
    font-size: 0.88rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.6);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
}

@media (max-width: 600px) {
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--clr-gold); }

/* Social icons */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(201, 169, 110, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    transition: var(--transition);
    text-decoration: none;
}

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

/* -------------------------------------------------------
   14. STATS / CREDENTIALS BAR
------------------------------------------------------- */
.stats-bar {
    background: var(--clr-blush);
    padding: 56px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

.stat__number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--clr-charcoal);
    line-height: 1;
    margin-bottom: 8px;
}

.stat__label {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--clr-mauve);
    font-weight: 600;
}

/* -------------------------------------------------------
   15. LEAD CAPTURE BANNER
------------------------------------------------------- */
.lead-capture {
    background: linear-gradient(135deg, var(--clr-mauve) 0%, var(--clr-charcoal) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lead-capture::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(201, 169, 110, 0.07);
    top: -200px;
    right: -100px;
    pointer-events: none;
}

.lead-capture h2 { color: var(--clr-white); margin-bottom: 16px; }
.lead-capture .lead { color: rgba(255,255,255,0.8); margin: 0 auto 36px; }

.lead-capture-form {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 560px;
    margin: 0 auto;
}

.lead-capture-form input[type="email"] {
    flex: 1;
    min-width: 260px;
    padding: 16px 24px;
    border: none;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 0.92rem;
    background: rgba(255,255,255,0.15);
    color: var(--clr-white);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
}

.lead-capture-form input::placeholder { color: rgba(255,255,255,0.6); }
.lead-capture-form input:focus {
    outline: none;
    background: rgba(255,255,255,0.22);
    border-color: var(--clr-gold);
}

/* -------------------------------------------------------
   16. MEDIA / IMAGE GALLERY
------------------------------------------------------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-grid .gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

.gallery-grid .gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-grid .gallery-item:hover img { transform: scale(1.06); }

.gallery-grid .gallery-item--tall { grid-row: span 2; }
.gallery-grid .gallery-item--tall img { height: 100%; min-height: 616px; }

@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid .gallery-item--tall { grid-row: span 1; }
    .gallery-grid .gallery-item--tall img { min-height: auto; height: 300px; }
}

/* -------------------------------------------------------
   17. MEMBERSHIP REGISTRATION FORM
------------------------------------------------------- */
.membership-form-wrap {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    padding: 56px 48px;
    box-shadow: var(--shadow-card);
    max-width: 680px;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .membership-form-wrap { padding: 36px 24px; }
}

.membership-form-wrap h2 {
    text-align: center;
    margin-bottom: 8px;
}

.membership-form-wrap .lead {
    text-align: center;
    margin: 0 auto 40px;
    font-size: 0.95rem;
}

.plan-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

@media (max-width: 600px) {
    .plan-selector { grid-template-columns: 1fr; }
}

.plan-option {
    cursor: pointer;
}

.plan-option input[type="radio"] { display: none; }

.plan-option__label {
    display: block;
    padding: 16px 12px;
    border: 2px solid rgba(201, 169, 110, 0.3);
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.plan-option__name {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--clr-charcoal);
    margin-bottom: 4px;
}

.plan-option__price {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--clr-gold-dark);
}

.plan-option input:checked + .plan-option__label {
    border-color: var(--clr-gold);
    background: rgba(201, 169, 110, 0.07);
}

/* -------------------------------------------------------
   18. NOTIFICATION BADGE / MEMBER BADGE
------------------------------------------------------- */
.member-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--clr-gold);
    color: var(--clr-white);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: var(--radius-pill);
}

/* -------------------------------------------------------
   19. PAGE-SPECIFIC: SERVICE DETAIL
------------------------------------------------------- */
.service-detail .treatment-steps {
    counter-reset: step;
}

.treatment-step {
    display: flex;
    gap: 32px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
    align-items: flex-start;
}

.treatment-step:last-child { border-bottom: none; }

.treatment-step__number {
    counter-increment: step;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 300;
    color: var(--clr-blush);
    line-height: 1;
    flex-shrink: 0;
    width: 60px;
    text-align: center;
}

.treatment-step__number::before { content: counter(step, decimal-leading-zero); }

.treatment-step__content h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.treatment-step__content p {
    color: var(--clr-text-light);
    font-size: 0.92rem;
    line-height: 1.85;
    margin: 0;
}

/* Before/After strip */
.before-after-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.before-after-strip .panel {
    position: relative;
}

.before-after-strip .panel img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.before-after-strip .panel-label {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(44, 44, 44, 0.7);
    color: var(--clr-white);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: var(--radius-pill);
    backdrop-filter: blur(4px);
}

/* -------------------------------------------------------
   20. ANIMATIONS
------------------------------------------------------- */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.animate-fade-up  { animation: fadeUp  0.7s ease both; }
.animate-fade-in  { animation: fadeIn  0.6s ease both; }

/* Stagger delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* -------------------------------------------------------
   21. ASTRA THEME OVERRIDES
------------------------------------------------------- */
.ast-container { max-width: var(--max-width) !important; }
.ast-header-break-point .main-header-bar { padding: 0 !important; }

/* Override Astra default button */
.ast-button-wrap .menu-toggle { background: var(--clr-gold) !important; }

/* -------------------------------------------------------
   22. WOOCOMMERCE / PMPRO MEMBERSHIP OVERRIDES
------------------------------------------------------- */
.pmpro_checkout h2,
.pmpro_account h2 {
    font-family: var(--font-heading) !important;
    font-size: 2rem !important;
    font-weight: 400 !important;
}

.pmpro_btn,
.pmpro_btn-submit {
    background: var(--clr-gold) !important;
    border-color: var(--clr-gold) !important;
    color: var(--clr-white) !important;
    border-radius: var(--radius-pill) !important;
    font-family: var(--font-body) !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    padding: 14px 36px !important;
}

.pmpro_btn:hover,
.pmpro_btn-submit:hover {
    background: var(--clr-gold-dark) !important;
    border-color: var(--clr-gold-dark) !important;
}

.pmpro_level {
    border: 2px solid rgba(201, 169, 110, 0.25) !important;
    border-radius: var(--radius-lg) !important;
    padding: 32px !important;
}

/* -------------------------------------------------------
   23. RESPONSIVE UTILITY OVERRIDES
------------------------------------------------------- */
@media (max-width: 768px) {
    :root { --section-gap: 64px; }
    h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }
    .membership-card--featured { transform: scale(1); }
    .membership-card--featured:hover { transform: translateY(-6px); }
    .before-after-strip { grid-template-columns: 1fr; }
    .before-after-strip .panel img { height: 320px; }
}

@media (max-width: 480px) {
    .hero__actions { flex-direction: column; align-items: flex-start; }
    .btn { width: 100%; justify-content: center; }
}
