/*
Theme Name: CM Aesthetic
Theme URI:
Author: Custom
Description: Landing page theme for Teresa Boland Mobile Hair & Beauty.
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cm-aesthetic
*/

/* Fonts loaded via <link> in header.php */


/* ========================================
   RESET & BASE
   ======================================== */

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

:root {
    /* Teresa Boland palette derived from logo */
    --cream: #F4F1EA;
    --cream-dark: #E5E0D5;
    --taupe: #5C4A3D;       /* dark brown (scissors / wordmark) */
    --taupe-light: #7A6452;
    --taupe-faint: #998676;
    --rose: #D45A3C;        /* terracotta (heart accent) */
    --rose-muted: #E8AA98;
    --charcoal: #2A2520;
    --charcoal-light: #4A3F35;
    --sage: #9BB89A;        /* sage (logo wash) */
    --sage-muted: #C8DAC4;
    --white: #FFFFFF;
    --border: rgba(92, 74, 61, 0.15);
    --shadow-sm: 0 2px 8px rgba(42, 37, 32, 0.06);
    --shadow-md: 0 4px 20px rgba(42, 37, 32, 0.08);
    --shadow-lg: 0 8px 40px rgba(42, 37, 32, 0.10);
    --radius: 4px;
    --radius-card: 14px;
    --transition: 0.3s ease;

    /* Type scale */
    --text-body: 0.95rem;
    --text-small: 0.85rem;
    --text-label: 0.75rem;
    --text-caption: 0.7rem;

    /* Frosted glass tokens */
    --glass-bg: rgba(255, 255, 255, 0.55);
    --glass-bg-strong: rgba(255, 255, 255, 0.72);
    --glass-border: rgba(255, 255, 255, 0.45);
    --glass-blur: blur(16px);
    --glass-blur-strong: blur(24px);
    --glass-shadow: 0 4px 24px rgba(42, 37, 32, 0.06), 0 1px 2px rgba(42, 37, 32, 0.04);
    --glass-dark-bg: rgba(42, 37, 32, 0.45);
    --glass-dark-border: rgba(244, 241, 234, 0.1);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal);
    background-color: var(--cream);
    overflow-x: hidden;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--charcoal);
    color: var(--cream);
    padding: 0.6rem 1.2rem;
    border-radius: 0 0 6px 6px;
    font-size: 0.82rem;
    font-weight: 500;
    z-index: 10000;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 0;
}

/* Focus styles */
*:focus-visible {
    outline: 2px solid var(--rose);
    outline-offset: 2px;
}

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

a {
    color: inherit;
    text-decoration: none;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.25;
    color: var(--charcoal);
}

h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    letter-spacing: 0.02em;
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    letter-spacing: 0.02em;
}

h3 {
    font-size: 1.3rem;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: var(--text-body);
    color: var(--taupe);
    max-width: 560px;
    margin: 0 auto 3rem;
    text-align: center;
    font-weight: 300;
    line-height: 1.8;
}

.section-heading-wrapper {
    text-align: center;
    margin-bottom: 1rem;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.section-divider span {
    display: block;
    width: 40px;
    height: 1px;
    background-color: var(--rose-muted);
}

.section-divider .divider-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--rose);
}

/* ========================================
   LAYOUT
   ======================================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 5rem 0;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: var(--text-label);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

/* Unified booking CTA — rose, used on ALL booking actions */
.btn-cta {
    background-color: var(--rose);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border-radius: 30px;
}

.btn-cta:hover {
    background-color: #B8472A;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 90, 60, 0.3);
}

.btn-cta svg {
    transition: transform var(--transition);
}

.btn-cta:hover svg {
    transform: translateX(3px);
}

.btn-primary {
    background-color: var(--charcoal);
    color: var(--cream);
}

.btn-primary:hover {
    background-color: var(--charcoal-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--charcoal);
    border: 1.5px solid var(--charcoal);
}

.btn-secondary:hover {
    background-color: var(--charcoal);
    color: var(--cream);
    transform: translateY(-1px);
}

/* ========================================
   HEADER / NAV
   ======================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(244, 241, 234, 0.7);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
}

.site-header.scrolled {
    background: rgba(244, 241, 234, 0.88);
    box-shadow: 0 4px 30px rgba(42, 37, 32, 0.06);
    border-color: rgba(255, 255, 255, 0.6);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* Logo area */
.site-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.site-logo img {
    max-height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.site-logo:hover img {
    transform: scale(1.03);
}

.site-logo .logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--charcoal);
}

.logo-divider {
    width: 1px;
    height: 24px;
    background: linear-gradient(to bottom, transparent, var(--rose-muted), transparent);
}

.logo-tagline {
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--taupe-light);
    line-height: 1;
}

/* Glass nav pill */
.nav-glass {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 40px;
    padding: 0.4rem 0.5rem;
    box-shadow: 0 2px 12px rgba(42, 37, 32, 0.04);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.nav-links a {
    display: block;
    padding: 0.45rem 1.2rem;
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--charcoal-light);
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--charcoal);
    background: rgba(255, 255, 255, 0.6);
}

.nav-links a.active {
    background: var(--white);
    color: var(--charcoal);
    box-shadow: 0 1px 6px rgba(42, 37, 32, 0.06);
}

/* Book Now button */
.nav-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.5rem;
    background: var(--charcoal);
    color: var(--cream);
    border-radius: 30px;
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.nav-book-btn:hover {
    background: var(--charcoal-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(42, 37, 32, 0.15);
    color: var(--cream);
}

.nav-book-btn svg {
    transition: transform 0.3s ease;
}

.nav-book-btn:hover svg {
    transform: translateX(2px);
}

/* Animated pulse dot */
.nav-book-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--rose);
    position: relative;
    flex-shrink: 0;
}

.nav-book-pulse::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1.5px solid var(--rose);
    animation: navPulse 2s ease-in-out infinite;
}

@keyframes navPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.8); opacity: 0; }
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    padding: 6px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.6);
}

.hamburger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background-color: var(--charcoal);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active {
    background: rgba(232, 170, 152, 0.15);
    border-color: var(--rose-muted);
}

.hamburger.active span {
    background-color: var(--rose);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4.5px, 4.5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4.5px, -4.5px);
}

/* Mobile nav */
.mobile-nav {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(244, 241, 234, 0.92);
    backdrop-filter: blur(28px) saturate(1.5);
    -webkit-backdrop-filter: blur(28px) saturate(1.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 1rem;
    box-shadow: 0 12px 40px rgba(42, 37, 32, 0.08);
    z-index: 999;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.35s ease;
    padding-top: 0;
    padding-bottom: 0;
}

.mobile-nav.open {
    max-height: 500px;
    opacity: 1;
    padding: 1rem;
}

.mobile-nav-inner {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.85rem 1rem;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--charcoal-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mobile-nav-link svg {
    stroke: var(--taupe-light);
    flex-shrink: 0;
    transition: stroke 0.3s ease;
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.5);
    color: var(--charcoal);
}

.mobile-nav-link:hover svg {
    stroke: var(--rose);
}

.mobile-nav-book {
    margin-top: 0.25rem;
    background: var(--charcoal);
    color: var(--cream) !important;
    justify-content: center;
    border-radius: 12px;
}

.mobile-nav-book svg {
    stroke: var(--rose-muted) !important;
}

.mobile-nav-book:hover {
    background: var(--charcoal-light);
    color: var(--cream) !important;
}

/* ========================================
   HERO SECTION — Editorial Bleed Layout
   ======================================== */

.hero {
    position: relative;
    background-color: var(--cream);
    overflow: hidden;
    min-height: 100svh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
}

/* Container variant — full height, centres the text vertically */
.hero-container {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-top: 72px;
}

/* Text column — takes ~55% of the container */
.hero-text {
    width: 55%;
    max-width: 560px;
    padding: 3rem 0;
}

.hero-eyebrow {
    display: block;
    font-size: var(--text-caption);
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.hero-h1-bold {
    display: block;
    font-weight: 600;
    color: var(--charcoal);
}

.hero-h1-light {
    display: block;
    font-weight: 300;
    font-style: italic;
    color: var(--taupe);
    /* The bleed: this line extends past the text column into the image */
    margin-left: 0;
    position: relative;
    z-index: 3;
}

.hero-text p {
    font-size: var(--text-body);
    color: var(--taupe);
    font-weight: 300;
    line-height: 1.85;
    margin-bottom: 2rem;
    max-width: 440px;
}

.hero-highlight {
    background: linear-gradient(to top, rgba(232, 170, 152, 0.18) 40%, transparent 40%);
    padding: 0 2px;
}

/* CTA — single, square, confident */
.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.2rem;
    background: var(--charcoal);
    color: var(--cream);
    font-family: 'Montserrat', sans-serif;
    font-size: var(--text-label);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    transition: all var(--transition);
}

.hero-cta-btn:hover {
    background: var(--taupe);
    color: var(--cream);
    transform: translateY(-1px);
}

.hero-cta-btn svg {
    transition: transform var(--transition);
}

.hero-cta-btn:hover svg {
    transform: translateX(3px);
}

.hero-promo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.2rem;
    padding: 0.5rem 1rem;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    box-shadow: var(--glass-shadow);
}

.hero-promo-text {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--taupe);
    letter-spacing: 0.02em;
}

.hero-promo-code {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--rose);
    background: transparent;
    border: none;
    padding: 0;
}

.hero-trust-duplicate {
    display: none;
}

/* Vertical column rule between text and image */
.hero-rule {
    position: absolute;
    left: 50%;
    top: 72px;
    bottom: 0;
    width: 4px;
    background: var(--taupe);
    opacity: 0.12;
    z-index: 3;
}

/* Image — bleeds to right viewport edge, full height */
.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 48%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Subtle fade on left edge of image for headline legibility */
.hero-image-fade {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 150px;
    background: linear-gradient(to right, var(--cream) 0%, rgba(244, 241, 234, 0.6) 40%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* Staggered hero animations */
.hero-anim {
    opacity: 0;
    transform: translateY(15px);
    animation: heroFadeIn 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

.hero-anim--1 { animation-delay: 0.2s; }
.hero-anim--2 { animation-delay: 0.35s; }
.hero-anim--3 { animation-delay: 0.47s; }
.hero-anim--4 { animation-delay: 0.6s; }
.hero-anim--5 { animation-delay: 0.8s; }

.hero-anim--img {
    opacity: 0;
    transform: none;
    animation: heroImageIn 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroImageIn {
    from {
        opacity: 0;
        transform: scale(1.03);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Trust footnote bar */
.hero-trust {
    position: relative;
    padding-bottom: 2rem;
    z-index: 2;
}

.hero-trust-rule {
    width: 100%;
    height: 1px;
    background: var(--rose-muted);
    margin-bottom: 1.2rem;
    transform-origin: left;
    animation: ruleDrawIn 0.6s ease 0.75s both;
}

@keyframes ruleDrawIn {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.hero-trust-items {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
}

.hero-trust-sep {
    width: 1px;
    height: 28px;
    background: var(--border);
    flex-shrink: 0;
    margin-top: 2px;
}

.hero-trust-item {
    display: flex;
    flex-direction: column;
}

.hero-trust-label {
    font-size: var(--text-caption);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--charcoal);
    line-height: 1.3;
}

.hero-trust-desc {
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--taupe-light);
    line-height: 1.3;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about {
    background-color: var(--white);
}

.about-grid {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-image {
    flex: 0 0 340px;
}

.about-image img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.about-image-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: linear-gradient(160deg, var(--cream-dark) 0%, var(--rose-muted) 50%, var(--taupe-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-placeholder .placeholder-text {
    font-size: 0.8rem;
    color: var(--taupe);
    letter-spacing: 0.1em;
    text-transform: none;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content h2 em {
    font-style: normal;
    color: var(--taupe);
    font-weight: 300;
}

.about-content p {
    font-size: var(--text-body);
    color: var(--taupe);
    font-weight: 300;
    line-height: 1.85;
}

.about-credentials {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.about-credential {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--charcoal);
}

.about-credential svg {
    stroke: var(--rose);
    flex-shrink: 0;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services {
    position: relative;
    overflow: hidden;
    background: var(--cream-dark);
}

/* Animated orb background */
.services-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    will-change: transform;
}

.orb--1 {
    width: 350px;
    height: 350px;
    background: var(--rose-muted);
    opacity: 0.5;
    top: -8%;
    right: 5%;
    animation: orbDrift1 18s ease-in-out infinite;
}

.orb--2 {
    width: 300px;
    height: 300px;
    background: var(--sage-muted);
    opacity: 0.45;
    bottom: -5%;
    left: 0%;
    animation: orbDrift2 22s ease-in-out infinite;
}

.orb--3 {
    width: 250px;
    height: 250px;
    background: var(--rose);
    opacity: 0.2;
    top: 40%;
    left: 30%;
    animation: orbDrift3 16s ease-in-out infinite;
}

.orb--4 {
    width: 200px;
    height: 200px;
    background: #D4C4B5;
    opacity: 0.35;
    top: 10%;
    left: -3%;
    animation: orbDrift4 20s ease-in-out infinite;
}

.orb--5 {
    width: 180px;
    height: 180px;
    background: var(--sage);
    opacity: 0.2;
    bottom: 15%;
    right: -2%;
    animation: orbDrift5 24s ease-in-out infinite;
}

@keyframes orbDrift1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-30px, 20px) scale(1.05); }
    50% { transform: translate(15px, 40px) scale(0.95); }
    75% { transform: translate(-15px, -10px) scale(1.02); }
}

@keyframes orbDrift2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(25px, -15px) scale(1.04); }
    50% { transform: translate(-20px, -35px) scale(0.96); }
    75% { transform: translate(10px, 15px) scale(1.03); }
}

@keyframes orbDrift3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -25px) scale(1.08); }
    66% { transform: translate(-25px, 30px) scale(0.93); }
}

@keyframes orbDrift4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    30% { transform: translate(20px, 30px) scale(1.06); }
    60% { transform: translate(-15px, -20px) scale(0.95); }
}

@keyframes orbDrift5 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    40% { transform: translate(-30px, -20px) scale(1.05); }
    70% { transform: translate(20px, 15px) scale(0.97); }
}

.services .container {
    position: relative;
    z-index: 1;
}

/* Section eyebrow */
.section-eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 0.6rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-card);
    padding: 2.2rem 1.8rem 1.8rem;
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 16px rgba(42, 37, 32, 0.04);
}

/* Rose top accent bar */
.service-card-accent {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--rose), transparent);
    border-radius: 0 0 3px 3px;
    transition: width 0.35s ease;
}

.service-card:hover .service-card-accent {
    width: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(42, 37, 32, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.5);
}

.service-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.35s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--rose-muted) 0%, var(--rose) 100%);
    border-color: var(--rose);
}

.service-icon svg,
.service-icon img {
    width: 28px;
    height: 28px;
    transition: all 0.35s ease;
}

.service-icon svg {
    stroke: var(--rose);
    fill: none;
    stroke-width: 1.5;
}

.service-icon img {
    object-fit: contain;
    filter: opacity(0.7);
}

.service-card:hover .service-icon svg {
    stroke: var(--white);
}

.service-card:hover .service-icon img {
    filter: brightness(0) invert(1);
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--charcoal);
}

.service-card p {
    font-size: var(--text-small);
    color: var(--taupe);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 1rem;
    flex-grow: 1;
}

/* Popular / Free tags */
.service-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--rose);
    background: rgba(232, 170, 152, 0.15);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(232, 170, 152, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 0.8rem;
}

.service-tag--free {
    color: var(--sage);
    background: rgba(168, 181, 160, 0.15);
    border-color: rgba(168, 181, 160, 0.25);
}

/* Card link */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: none;
    color: var(--charcoal-light);
    transition: all var(--transition);
    margin-top: auto;
}

.service-link svg {
    transition: transform var(--transition);
}

.service-link:hover {
    color: var(--rose);
}

.service-link:hover svg {
    transform: translateX(3px);
}

/* Highlight card variant (consultation) */
.service-card--highlight {
    background: rgba(200, 213, 192, 0.25);
    border-color: rgba(197, 206, 188, 0.45);
}

.service-card--highlight .service-card-accent {
    background: linear-gradient(90deg, transparent, var(--sage), transparent);
}

.service-card--highlight:hover {
    border-color: var(--sage-muted);
}

.service-card--highlight:hover .service-icon {
    background: linear-gradient(135deg, var(--sage-muted) 0%, var(--sage) 100%);
    border-color: var(--sage);
}

/* Services CTA */
.services-cta {
    text-align: center;
}

.services-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.services-cta .btn-primary svg {
    transition: transform var(--transition);
}

.services-cta .btn-primary:hover svg {
    transform: translateX(3px);
}

.services-cta-text {
    font-size: 0.9rem;
    color: var(--taupe-light);
    font-weight: 300;
    margin-bottom: 0.8rem;
}

/* ========================================
   PROCESS SECTION
   ======================================== */

.process {
    background-color: var(--cream);
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.process-step {
    flex: 1;
    max-width: 240px;
    text-align: center;
    padding: 0 1rem;
}

.process-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--rose);
    margin-bottom: 0.8rem;
    letter-spacing: 0.05em;
}

.process-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
}

.process-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--rose);
    fill: none;
}

.process-step h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.process-step p {
    font-size: var(--text-small);
    color: var(--taupe);
    font-weight: 300;
    line-height: 1.65;
    margin-bottom: 0;
}

.process-connector {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--rose-muted), transparent);
    margin-top: 3.2rem;
    flex-shrink: 0;
}

/* ========================================
   PRICING SECTION
   ======================================== */

.pricing {
    position: relative;
    overflow: hidden;
    background: var(--charcoal);
}

/* Animated orb background */
.pricing-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.orb--p1 {
    width: 320px;
    height: 320px;
    background: var(--rose);
    opacity: 0.15;
    top: -10%;
    left: 10%;
    animation: orbDrift1 20s ease-in-out infinite;
}

.orb--p2 {
    width: 280px;
    height: 280px;
    background: var(--sage);
    opacity: 0.1;
    bottom: -8%;
    right: 5%;
    animation: orbDrift2 24s ease-in-out infinite;
}

.orb--p3 {
    width: 200px;
    height: 200px;
    background: var(--rose-muted);
    opacity: 0.12;
    top: 50%;
    right: 30%;
    animation: orbDrift3 18s ease-in-out infinite;
}

.pricing .container {
    position: relative;
    z-index: 1;
}

.pricing .section-eyebrow {
    color: var(--rose-muted);
}

.pricing .section-heading-wrapper h2 {
    color: var(--cream);
}

.pricing .section-subtitle {
    color: var(--taupe-light);
}

.pricing .section-divider span {
    background-color: rgba(232, 170, 152, 0.25);
}

.pricing .section-divider .divider-dot {
    background-color: var(--rose);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1.4rem 1.6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all 0.35s ease;
}

.pricing-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.pricing-card-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.pricing-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 170, 152, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(232, 170, 152, 0.15);
    border-radius: 10px;
}

.pricing-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--rose-muted);
    fill: none;
}

.pricing-icon--free {
    background: rgba(168, 181, 160, 0.15);
    border-color: rgba(168, 181, 160, 0.2);
}

.pricing-icon--free svg {
    stroke: var(--sage-muted);
}

.pricing-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.pricing-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--cream);
    line-height: 1.2;
}

.pricing-desc {
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--taupe-light);
    letter-spacing: 0.02em;
    line-height: 1.3;
    margin-top: 0.15rem;
}

.pricing-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.4rem;
    flex-shrink: 0;
}

.pricing-amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--cream);
    white-space: nowrap;
}

.pricing-amount--free {
    color: var(--sage-muted);
}

.pricing-book {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: none;
    color: var(--rose-muted);
    transition: all var(--transition);
}

.pricing-book svg {
    transition: transform var(--transition);
}

.pricing-book:hover {
    color: var(--cream);
}

.pricing-book:hover svg {
    transform: translateX(2px);
}

/* Free consultation variant */
.pricing-card--free {
    background: rgba(168, 181, 160, 0.08);
    border-color: rgba(168, 181, 160, 0.12);
}

.pricing-card--free:hover {
    background: rgba(168, 181, 160, 0.14);
    border-color: rgba(168, 181, 160, 0.2);
}

/* Disclaimer footer */
.pricing-footer {
    text-align: center;
}

.pricing-disclaimer-card {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 30px;
    padding: 0.6rem 1.4rem;
}

.pricing-disclaimer-card svg {
    stroke: var(--taupe-light);
    flex-shrink: 0;
}

.pricing-disclaimer-card span {
    font-size: 0.78rem;
    color: var(--taupe-light);
    font-weight: 300;
    font-style: italic;
}

/* ========================================
   MARQUEE STRIP
   ======================================== */

.marquee-strip {
    background: var(--rose);
    overflow: hidden;
    padding: 0.9rem 0;
    position: relative;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    width: max-content;
    animation: marqueeScroll 35s linear infinite;
}

.marquee-item {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.04em;
    white-space: nowrap;
    text-transform: uppercase;
}

.marquee-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================================
   BOOKING SECTION
   ======================================== */

.booking {
    position: relative;
    overflow: hidden;
    background: linear-gradient(170deg, #1a1715 0%, var(--charcoal) 40%, #352f2a 100%);
    color: var(--cream);
    text-align: center;
    padding: 6rem 0;
}

/* Animated orb background */
.booking-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.orb--b1 {
    width: 400px;
    height: 400px;
    background: var(--rose);
    opacity: 0.08;
    top: -15%;
    left: 50%;
    transform: translateX(-50%);
    animation: orbDrift1 22s ease-in-out infinite;
}

.orb--b2 {
    width: 250px;
    height: 250px;
    background: var(--sage);
    opacity: 0.06;
    bottom: -10%;
    left: 10%;
    animation: orbDrift2 18s ease-in-out infinite;
}

.orb--b3 {
    width: 200px;
    height: 200px;
    background: var(--rose-muted);
    opacity: 0.07;
    bottom: 20%;
    right: 5%;
    animation: orbDrift3 20s ease-in-out infinite;
}

.booking .container {
    position: relative;
    z-index: 1;
}

.booking-content {
    max-width: 640px;
    margin: 0 auto;
}

.booking-eyebrow {
    color: var(--rose) !important;
    margin-bottom: 1rem;
}

.booking h2 {
    color: var(--cream);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.booking h2 em {
    font-style: normal;
    color: var(--rose-muted);
    font-weight: 300;
}

.booking-lead {
    color: var(--taupe-light) !important;
    font-weight: 300 !important;
    font-size: 1.05rem !important;
    line-height: 1.85 !important;
    max-width: 500px;
    margin: 0 auto 2.5rem !important;
}

/* CTA button — glowing accent */
.booking-cta-wrapper {
    margin-bottom: 3rem;
}

/* Booking CTA — larger version of btn-cta */
.booking-cta-btn {
    padding: 1.1rem 3rem;
    font-size: var(--text-small);
}

.booking-cta-sub {
    display: block;
    margin-top: 1rem;
    font-size: 0.78rem;
    font-weight: 300;
    color: var(--taupe-light);
    letter-spacing: 0.03em;
}

/* Trust badges row */
.booking-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.booking-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 30px;
    padding: 0.5rem 1rem;
}

.booking-trust-item svg {
    stroke: var(--rose-muted);
    flex-shrink: 0;
}

.booking-trust-item span {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: none;
    color: rgba(244, 241, 234, 0.7);
}

/* ========================================
   GALLERY SECTION
   ======================================== */

.gallery {
    background-color: var(--cream-dark);
    position: relative;
    overflow: hidden;
}

.gallery-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.orb--g1 {
    width: 350px;
    height: 350px;
    background: var(--rose-muted);
    opacity: 0.2;
    top: -8%;
    left: 15%;
    animation: orbDrift2 24s ease-in-out infinite;
}

.orb--g2 {
    width: 280px;
    height: 280px;
    background: var(--sage-muted);
    opacity: 0.15;
    bottom: -5%;
    right: 10%;
    animation: orbDrift1 20s ease-in-out infinite;
}

.gallery .container {
    position: relative;
    z-index: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.gallery-item--tall {
    grid-row: span 2;
}

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

.gallery-item:hover > img {
    transform: scale(1.05);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, var(--cream) 0%, var(--rose-muted) 50%, var(--taupe-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

.gallery-placeholder span {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--taupe);
}

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

.gallery-item:hover .gallery-placeholder,
.gallery-item:hover .gallery-placeholder img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(42, 37, 32, 0.6) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.35s ease;
}

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

.gallery-label {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: none;
    color: var(--cream);
}

.gallery-cta {
    text-align: center;
}

.gallery-cta-text {
    font-size: 0.88rem;
    color: var(--taupe);
    font-weight: 300;
    margin-bottom: 0.8rem;
}

.gallery-insta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.6rem;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--charcoal);
    transition: all var(--transition);
}

.gallery-insta-btn svg {
    stroke: var(--rose);
}

.gallery-insta-btn:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: translateY(-1px);
    box-shadow: var(--glass-shadow);
    color: var(--charcoal);
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials {
    background-color: var(--cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 14px;
    padding: 1.8rem;
    transition: all 0.35s ease;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(42, 37, 32, 0.06);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
}

.testimonial-stars svg {
    color: #D4A745;
}

.testimonial-quote {
    font-size: var(--text-body);
    color: var(--charcoal-light);
    font-weight: 300;
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 1.2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.testimonial-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--charcoal);
}

.testimonial-treatment {
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--taupe-light);
    padding-left: 0.6rem;
    border-left: 1px solid var(--border);
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq {
    background-color: var(--white);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

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

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.3rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--charcoal);
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--rose);
}

.faq-question svg {
    stroke: var(--taupe-light);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

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

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding-bottom: 1.3rem;
    font-size: var(--text-body);
    color: var(--taupe);
    font-weight: 300;
    line-height: 1.8;
}

/* ========================================
   STICKY MOBILE CTA
   ======================================== */

.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 998;
    padding: 0.7rem 1rem;
    background: rgba(244, 241, 234, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 -4px 20px rgba(42, 37, 32, 0.06);
    transform: translateY(100%);
    transition: transform 0.35s ease;
}

.sticky-mobile-cta.visible {
    transform: translateY(0);
}

.sticky-mobile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.8rem;
    background: var(--charcoal);
    color: var(--cream);
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.sticky-mobile-btn:hover {
    background: var(--charcoal-light);
    color: var(--cream);
}

.sticky-promo {
    display: block;
    text-align: center;
    font-size: 0.7rem;
    color: var(--taupe);
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
}

.sticky-promo strong {
    color: var(--charcoal);
    letter-spacing: 0.08em;
}

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
    background-color: var(--charcoal);
    border-top: 1px solid rgba(244, 241, 234, 0.08);
    padding: 3.5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(244, 241, 234, 0.06);
}

.footer-brand {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--cream);
    letter-spacing: 0.04em;
    margin-bottom: 0.7rem;
}

.footer-tagline {
    font-size: 0.82rem;
    color: var(--taupe-light);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition);
}

.footer-social a svg {
    stroke: var(--taupe-light);
    transition: stroke var(--transition);
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

.footer-social a:hover svg {
    stroke: var(--cream);
}

.footer-col-title {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 1rem;
}

.footer-col a {
    display: block;
    font-size: 0.82rem;
    color: var(--taupe-light);
    font-weight: 300;
    padding: 0.25rem 0;
    transition: color var(--transition);
}

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

.footer-detail {
    display: block;
    font-size: 0.82rem;
    color: var(--taupe-light);
    font-weight: 300;
    padding: 0.25rem 0;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
}

.footer-copy {
    font-size: 0.72rem;
    color: rgba(155, 143, 131, 0.6);
    font-weight: 300;
}

/* ========================================
   ANIMATIONS
   ======================================== */

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

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Testimonials review link */
.testimonials-footer {
    text-align: center;
    margin-top: 2rem;
}

.testimonials-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--taupe-light);
    letter-spacing: 0.03em;
    transition: color var(--transition);
}

.testimonials-link:hover {
    color: var(--charcoal);
}

.testimonials-link svg {
    transition: transform var(--transition);
}

.testimonials-link:hover svg {
    transform: translate(2px, -2px);
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.back-to-top svg {
    stroke: var(--charcoal-light);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    background: var(--white);
    box-shadow: var(--glass-shadow);
}

/* Footer bottom links */
.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-bottom-links a {
    transition: color var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--cream);
}

/* ========================================
   PREFERS REDUCED MOTION
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .orb { display: none; }
    .hero-orbs { display: none; }
    .services-bg { display: none; }
    .pricing-bg { display: none; }
    .gallery-orbs { display: none; }
    .booking-bg { display: none; }
    .marquee-track { animation: none; }
    .hero-anim { opacity: 1; transform: none; }
    .fade-in { opacity: 1; transform: none; }

    html { scroll-behavior: auto; }
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    /* Hero: headline no longer bleeds into image on tablet */
    .hero-h1-light {
        margin-left: 0;
    }

    .hero-image {
        width: 40%;
    }

    .hero-rule {
        left: 55%;
    }

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

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-glass {
        display: none;
    }

    .nav-book-btn {
        display: none;
    }

    .logo-tagline {
        display: none;
    }

    .logo-divider {
        display: none;
    }

    /* Hero: stacked image-first on mobile */
    .hero {
        min-height: auto;
        flex-direction: column;
    }

    .hero-container {
        padding-top: 0;
    }

    .hero-image {
        position: relative;
        width: 100%;
        height: 55vw;
        min-height: 280px;
        max-height: 420px;
        order: -1;
        margin-top: 72px;
    }

    .hero-image-fade {
        display: none;
    }

    .hero-rule {
        display: none;
    }

    .hero-text {
        width: 100%;
        max-width: 100%;
        padding: 2rem 0;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .hero-h1-light {
        margin-left: 0;
    }

    .hero-text p {
        max-width: 100%;
    }

    .hero-cta-btn {
        display: flex;
        width: 100%;
        justify-content: center;
    }

    .hero-trust-items {
        gap: 1.5rem;
    }

    .hero-trust-sep {
        display: none;
    }

    section {
        padding: 3.5rem 0;
    }

    .hero {
        padding: 0;
    }

    .hero-promo {
        display: none;
    }


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

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

    .pricing-icon {
        display: none;
    }

    .pricing-disclaimer-card {
        flex-direction: column;
        text-align: center;
        gap: 0.3rem;
    }

    .booking {
        padding: 4rem 0;
    }

    .booking-trust {
        gap: 0.8rem;
    }

    .booking-trust-item {
        padding: 0.4rem 0.8rem;
    }

    .marquee-item {
        font-size: 0.95rem;
    }

    .about-grid {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        flex: none;
        width: 260px;
        margin: 0 auto;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .process-connector {
        width: 1px;
        height: 30px;
        margin: 0;
        background: linear-gradient(to bottom, transparent, var(--rose-muted), transparent);
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-tagline {
        max-width: 100%;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.3rem;
    }

    .sticky-mobile-cta {
        display: block;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.2rem;
    }

    .hero-trust {
        overflow: hidden;
        position: relative;
    }

    .hero-trust::before,
    .hero-trust::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        width: 40px;
        z-index: 5;
        pointer-events: none;
    }

    .hero-trust::before {
        left: 0;
        background: linear-gradient(to right, var(--cream), transparent);
    }

    .hero-trust::after {
        right: 0;
        background: linear-gradient(to left, var(--cream), transparent);
    }

    .hero-trust-items {
        flex-direction: row;
        gap: 2.5rem;
        flex-wrap: nowrap;
        animation: marquee-scroll 12s linear infinite;
        width: max-content;
    }

    .hero-trust-sep {
        display: block !important;
    }

    .hero-trust-duplicate {
        display: contents;
    }

    @keyframes marquee-scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    .header-inner {
        height: 60px;
    }

    .mobile-nav {
        top: 60px;
    }

    .booking-cta-btn {
        padding: 1rem 2rem;
        font-size: 0.8rem;
        width: 100%;
        justify-content: center;
    }

    .booking-trust {
        flex-direction: column;
        gap: 0.6rem;
    }
}


/* ========================================
   TERESA BOLAND — RESKIN ADDITIONS
   ======================================== */

/* Hero logo panel — replaces the broken hero-banner image ref */
.hero-logo-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 6vw;
    background: radial-gradient(circle at 75% 40%, var(--sage-muted) 0%, var(--cream) 60%);
}

.hero-logo-wrap img {
    max-width: min(45vw, 520px);
    width: 100%;
    height: auto;
    opacity: 0.92;
    filter: drop-shadow(0 12px 40px rgba(42, 37, 32, 0.10));
}

@media (max-width: 900px) {
    .hero-logo-wrap {
        padding: 0;
        justify-content: center;
        align-items: flex-start;
        padding-top: 8vh;
        opacity: 0.45;
    }
    .hero-logo-wrap img {
        max-width: 70vw;
    }
}

/* About image — show logo cleanly without hard crop */
.about-image img {
    background: var(--sage-muted);
    border-radius: 50%;
    padding: 8%;
    object-fit: contain;
    aspect-ratio: 1 / 1;
    width: 100%;
    box-shadow: var(--shadow-md);
}

/* Inline-SVG service icons (replace PNG <img> icons) */
.service-icon.service-icon--svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--sage-muted);
    color: var(--taupe);
    margin-bottom: 1rem;
}

.service-icon.service-icon--svg svg {
    width: 28px;
    height: 28px;
}

/* Booking form */
.booking-form {
    margin: 2rem auto 1.5rem;
    max-width: 720px;
    text-align: left;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: clamp(1.5rem, 3vw, 2.4rem);
    box-shadow: var(--shadow-md);
}

.booking-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.2rem;
}

@media (max-width: 640px) {
    .booking-form-grid {
        grid-template-columns: 1fr;
    }
}

.booking-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.booking-field--full {
    grid-column: 1 / -1;
}

.booking-field-label {
    font-size: var(--text-label);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--taupe);
}

.booking-field input,
.booking-field select,
.booking-field textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--charcoal);
    transition: all var(--transition);
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
    outline: none;
    border-color: var(--rose);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(212, 90, 60, 0.12);
}

.booking-field textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.booking-form-note {
    margin: 1rem 0 1.4rem;
    font-size: var(--text-small);
    color: var(--taupe-light);
    text-align: center;
}

.tb-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.booking-form .booking-cta-btn {
    display: inline-flex;
    margin: 0 auto;
}

.booking-form .booking-cta-btn,
.booking-form .booking-cta-btn:hover {
    color: var(--white);
}

.booking-form-wrap-center {
    text-align: center;
}

/* Booking alert (success / error after redirect) */
.booking-alert {
    max-width: 720px;
    margin: 1.5rem auto 0;
    padding: 0.9rem 1.2rem;
    border-radius: 10px;
    font-size: 0.95rem;
    text-align: left;
}

.booking-alert--success {
    background: var(--sage-muted);
    color: #2C3F2C;
    border: 1px solid var(--sage);
}

.booking-alert--error {
    background: rgba(212, 90, 60, 0.10);
    color: #7A2E1A;
    border: 1px solid rgba(212, 90, 60, 0.35);
}
