/*
Theme Name:  Amit Danon Voice Studio
Theme URI:   https://amitdanon.com
Description: Custom theme — warm vintage editorial, Hebrew RTL, WooCommerce-ready. Built with wp-build-pro.
Version:     1.1.0
Author:      Amit Shnoll (amitomato-flows)
Text Domain: amitdanon
*/

/* ══ Reset ════════════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; direction: rtl; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; background: none; border: none; }
ul, ol { list-style: none; }

/* ══ Base ═════════════════════════════════════════════════════════════════════ */
body {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    line-height: 1.7;
    color: var(--c-rosewood);
    background-color: var(--c-cream);
    background-image: var(--g-mesh);
    background-attachment: fixed;
    direction: rtl;
    text-align: right;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.15;
    color: var(--c-rosewood);
    font-weight: 700;
    letter-spacing: -0.015em;
}

p { max-width: 72ch; }
p + p { margin-block-start: var(--sp-4); }

/* ══ Layout ═══════════════════════════════════════════════════════════════════ */
.container {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: var(--sp-6);
}
.container--wide   { max-width: 1440px; }
.container--narrow { max-width: 780px; }

.section    { padding-block: clamp(2.5rem, 5vw, 5rem); }
.section--sm { padding-block: var(--sp-16); }
.section--lg { padding-block: clamp(4rem, 8vw, 8rem); }

/* ══ Dark / light section variants ═══════════════════════════════════════════ */
.section-dark {
    background: hsl(10 56% 18%);
    color: var(--c-cream);
}
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--c-cream); }
.section-dark .text-muted { color: hsl(33 64% 91% / 0.65); }
.section-dark .badge-terracotta { background: hsl(14 53% 53% / 0.22); color: hsl(14 60% 70%); }

.section-light { background: hsl(34 53% 88%); color: var(--c-rosewood); }

/* ══ Typography helpers ═══════════════════════════════════════════════════════ */
.font-display   { font-family: var(--font-display); }
.font-script    { font-family: var(--font-script); font-style: italic; font-weight: 400; }
.font-cormorant { font-family: var(--font-cormorant); }

.text-cream     { color: var(--c-cream); }
.text-rosewood  { color: var(--c-rosewood); }
.text-terracotta { color: var(--c-terracotta); }
.text-vintage-blue { color: var(--c-vintage-blue); }
.text-sage      { color: var(--c-sage); }
.text-muted     { color: var(--c-ink-soft); }

/* ══ Buttons ══════════════════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    padding: var(--sp-3) var(--sp-8);
    border-radius: var(--r-pill);
    font-weight: 700;
    font-size: var(--fs-base);
    letter-spacing: 0.01em;
    transition: transform 300ms var(--ease-smooth), box-shadow 300ms var(--ease-smooth), background 200ms ease, color 200ms ease;
    white-space: nowrap;
    border: 2px solid transparent;
    will-change: transform;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary  { background: var(--c-terracotta); color: #fff; border-color: var(--c-terracotta); }
.btn-primary:hover { background: hsl(14 58% 45%); border-color: hsl(14 58% 45%); box-shadow: 0 8px 30px -8px hsl(14 53% 53% / 0.50); }

.btn-outline  { background: transparent; color: var(--c-terracotta); border-color: var(--c-terracotta); }
.btn-outline:hover { background: var(--c-terracotta); color: #fff; }

.btn-ghost  { background: transparent; color: var(--c-cream); border-color: hsl(33 64% 91% / 0.45); }
.btn-ghost:hover { background: hsl(33 64% 91% / 0.12); border-color: var(--c-cream); }

.btn-sm  { padding: var(--sp-2) var(--sp-5); font-size: var(--fs-sm); }
.btn-lg  { padding: var(--sp-4) var(--sp-10); font-size: var(--fs-lg); }

.btn .arrow { display: inline-block; transition: transform 250ms var(--ease-smooth); }
.btn:hover .arrow { transform: translateX(-4px); }

/* ══ Accessibility ════════════════════════════════════════════════════════════ */
.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link:focus {
    position: fixed; top: var(--sp-4); inset-inline-start: var(--sp-4);
    z-index: 9999; padding: var(--sp-2) var(--sp-4);
    background: var(--c-terracotta); color: #fff;
    border-radius: var(--r-md); width: auto; height: auto;
    clip: auto; white-space: normal;
}

/* ══ Animations ═══════════════════════════════════════════════════════════════ */

/* Hero image zoom — 14s subtle pan-in */
@keyframes hero-zoom {
    from { transform: scale(1.08); }
    to   { transform: scale(1); }
}
.hero-zoom {
    animation: hero-zoom 14s var(--ease-smooth) forwards;
    transform-origin: center;
}

/* Reveal on scroll */
@keyframes reveal-up {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity var(--t-reveal), transform var(--t-reveal);
    will-change: transform, opacity;
}
.reveal--in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.32s; }
.reveal-delay-4 { transition-delay: 0.45s; }

/* Float — for decorative tattoos */
@keyframes float-slow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    30%       { transform: translateY(-10px) rotate(1.5deg); }
    60%       { transform: translateY(3px) rotate(-1deg); }
}
.float-slow { animation: float-slow 8s ease-in-out infinite; }

/* Fade in */
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
.fade-in { animation: fade-in 1s var(--ease-smooth) 1s both; }

/* Pulse soft — for decorative elements */
@keyframes pulse-soft {
    0%, 100% { opacity: 0.55; transform: scaleY(1); }
    50%       { opacity: 1;    transform: scaleY(1.2); }
}
.pulse-soft { animation: pulse-soft 4s ease-in-out infinite; }

/* ══ Grain overlay ════════════════════════════════════════════════════════════ */
.grain { position: relative; }
.grain::after {
    content: '';
    position: absolute; inset: 0;
    pointer-events: none;
    opacity: 0.065;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
    mix-blend-mode: overlay;
    border-radius: inherit;
}

/* ══ Cards ════════════════════════════════════════════════════════════════════ */
.card {
    background: var(--c-surface);
    border-radius: var(--r-xl);
    border: 1px solid var(--c-line-soft);
    overflow: hidden;
    box-shadow: var(--sh-card);
    transition: box-shadow 450ms var(--ease-smooth), transform 450ms var(--ease-smooth);
    will-change: transform;
}
.card:hover { box-shadow: var(--sh-hover); transform: translateY(-6px); }
.card__body { padding: var(--sp-8); }

/* ══ Badges ═══════════════════════════════════════════════════════════════════ */
.badge {
    display: inline-flex; align-items: center; gap: var(--sp-1);
    padding: var(--sp-1) var(--sp-3);
    border-radius: var(--r-pill);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.badge-terracotta { background: hsl(14 53% 53% / 0.15); color: var(--c-terracotta); }
.badge-sage       { background: hsl(104 10% 67% / 0.2); color: hsl(104 20% 35%); }
.badge-rosewood   { background: hsl(0 39% 30% / 0.1); color: var(--c-rosewood); }

/* ══ Wave dividers ════════════════════════════════════════════════════════════ */
.wave-divider {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-block: -1px; /* prevent gap between section and wave */
}
.wave-divider svg { display: block; width: 100%; }

/* ══ Hero ═════════════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 100svh;   /* full viewport — bleeds behind the glass header */
    margin-block-start: -72px; /* pull up under the fixed header */
    padding-block-start: 72px; /* push content down so it's below the header */
    display: flex;
    align-items: center;
}
.hero__bg-img {
    position: absolute; inset: 0; z-index: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 30%;
}
.hero__overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg,
        hsl(0 39% 12% / 0.82) 0%,
        hsl(0 39% 14% / 0.72) 50%,
        hsl(0 39% 12% / 0.90) 100%);
}
.hero__vignette {
    position: absolute; inset: 0; z-index: 1;
    background: radial-gradient(ellipse at center, transparent 35%, hsl(0 39% 8% / 0.55) 100%);
}
.hero__content {
    position: relative; z-index: 2;
    text-align: center;
    color: var(--c-cream);
    width: 100%;
    padding-block: var(--sp-16);
}
.hero__eyebrow {
    font-size: var(--fs-sm);
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: hsl(33 64% 91% / 0.65);
    margin-block-end: var(--sp-4);
}
.hero__title-script {
    font-family: var(--font-script);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--c-terracotta);
    display: inline-block;
    line-height: 1.1;
    /* intentional offset — matches Lovable's -translate-x-32 */
    margin-inline-end: clamp(2rem, 8vw, 8rem);
}
.hero__title-main {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 8vw, 5.75rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--c-cream);
    display: block;
    /* Cormorant italic for the main line, matching Lovable */
    font-family: var(--font-cormorant);
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0;
}
.hero__sub {
    font-family: var(--font-cormorant);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    line-height: 1.6;
    color: hsl(33 64% 91% / 0.88);
    max-width: 60ch;
    margin-inline: auto;
}
.hero__tags {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: var(--sp-3) var(--sp-5);
    font-family: var(--font-cormorant);
    font-size: clamp(0.8rem, 1.5vw, 1.1rem);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: hsl(33 64% 91% / 0.88);
    margin-block: var(--sp-5);
}
.hero__tags .sep { color: var(--c-terracotta); font-style: normal; }
.hero__actions { display: flex; gap: var(--sp-4); justify-content: center; flex-wrap: wrap; margin-block-start: var(--sp-6); }

/* Tattoo ornaments in hero */
.hero-tattoo {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    user-select: none;
}
.hero-tattoo img { filter: brightness(1.8) saturate(0.4); }

/* Scroll indicator */
.scroll-indicator {
    position: absolute; bottom: var(--sp-6);
    left: 50%; transform: translateX(-50%);
    color: hsl(33 64% 91% / 0.50);
    font-size: var(--fs-xs);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    z-index: 2;
    white-space: nowrap;
}

/* ══ Portrait + illustrated frame ════════════════════════════════════════════ */
.portrait-frame {
    position: relative;
    aspect-ratio: 1;
    max-width: 480px;
    margin-inline: auto;
}
.portrait-frame__photo-wrap {
    position: absolute;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: var(--sh-card);
    /* positioned inside the frame — matches Lovable's top:19%, bottom:15%, left:27%, right:27% */
    top: 19%; bottom: 15%; left: 27%; right: 27%;
    z-index: 1;
}
.portrait-frame__photo {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 25%;
}
.portrait-frame__overlay {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    mix-blend-mode: multiply;
    z-index: 2;
}
.pointing-hand {
    position: absolute;
    top: -22%;
    inset-inline-end: 4%;
    width: clamp(7rem, 15vw, 13rem);
    transform: rotate(-18deg);
    z-index: 10;
    pointer-events: none;
    opacity: 0.55;
}

/* About / intro section */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 6rem);
    align-items: center;
    padding-block: clamp(3rem, 6vw, 5rem);
    max-width: 1100px;
    margin-inline: auto;
}
@media (max-width: 820px) {
    .intro-grid { grid-template-columns: 1fr; }
    .pointing-hand { display: none; }
}

.intro-heading { text-align: start; }
.intro-heading .script-line {
    font-family: var(--font-script);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--c-terracotta);
    display: block;
    line-height: 1.1;
}
.intro-heading .script-line--indented { margin-inline-start: clamp(1rem, 3vw, 2.5rem); }
.intro-heading h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.15;
    margin-block: var(--sp-3);
}
.intro-body {
    font-family: var(--font-cormorant);
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    line-height: 1.65;
    color: hsl(0 39% 30% / 0.85);
    max-width: 44ch;
}
.intro-divider {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    margin-block-start: var(--sp-6);
}
.intro-divider-line { flex: 1; height: 1px; background: hsl(0 39% 30% / 0.18); }
.intro-divider-text {
    font-size: var(--fs-xs);
    color: hsl(0 39% 30% / 0.55);
    font-style: italic;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

/* ══ Services grid (4-up, dark section) ═══════════════════════════════════════ */
.services-heading {
    text-align: center;
    max-width: 700px;
    margin-inline: auto;
    margin-block-end: clamp(2rem, 5vw, 3.5rem);
}
.services-heading .script-line { display: block; line-height: 1; }
.services-heading h2 { font-size: clamp(2rem, 5vw, 3.5rem); margin-block-start: var(--sp-3); }
.services-heading p {
    font-family: var(--font-cormorant);
    font-style: italic;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: hsl(33 64% 91% / 0.72);
    margin-block-start: var(--sp-4);
    margin-inline: auto;
}

.services-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-6);
    max-width: 1400px;
    margin-inline: auto;
}
@media (max-width: 1024px) { .services-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px)  { .services-grid-4 { grid-template-columns: 1fr; } }

/* Alternating Y offsets — CSS custom property lets hover lift *relative* to stagger position */
.service-card-4 { --sy: 0px; }

/* Stagger only kicks in after reveal animation completes */
.services-grid-4 > *.reveal--in:nth-child(even) { transform: translateY(-12px); --sy: -12px; }
.services-grid-4 > *.reveal--in:nth-child(odd)  { transform: translateY(12px);  --sy: 12px;  }

/* Disable stagger on 2-col and 1-col breakpoints */
@media (max-width: 1024px) {
    .services-grid-4 > *.reveal--in:nth-child(n) { transform: translateY(0); --sy: 0px; }
}

.service-card-4 {
    position: relative;
    overflow: hidden;
    border-radius: var(--r-2xl);
    padding: var(--sp-7);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    border: 1px solid hsl(33 64% 91% / 0.18);
    box-shadow: var(--sh-card);
    transition: transform 500ms var(--ease-smooth), box-shadow 500ms var(--ease-smooth);
    will-change: transform;
    min-height: 360px;
    color: var(--c-rosewood);
}
/* Lift 8px above the staggered resting position — no !important needed */
.service-card-4:hover { transform: translateY(calc(var(--sy) - 8px)); box-shadow: var(--sh-glow); }

.service-card-4__bg-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1000ms var(--ease-smooth);
    z-index: 0;
}
.service-card-4:hover .service-card-4__bg-img { transform: scale(1.1); }

.service-card-4__cream-wash {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg,
        hsl(33 64% 91% / 0.88) 0%,
        hsl(33 64% 91% / 0.88) 100%);
}

.service-card-4__num {
    position: absolute;
    top: var(--sp-4); inset-inline-end: var(--sp-4);
    font-family: var(--font-script);
    font-size: var(--fs-2xl);
    color: var(--c-terracotta);
    z-index: 2;
    line-height: 1;
}

.service-card-4__body {
    position: relative; z-index: 2;
    display: flex; flex-direction: column;
    align-items: center; gap: var(--sp-2);
    margin-block-start: var(--sp-6);
}

.service-card-4__icon {
    width: 90px; height: 90px;
    object-fit: contain;
    transition: transform 700ms var(--ease-smooth);
}
.service-card-4:hover .service-card-4__icon {
    transform: scale(1.1) rotate(-3deg);
}

.service-card-4__script {
    font-family: var(--font-script);
    font-size: var(--fs-xl);
    color: var(--c-terracotta);
    margin-block-start: var(--sp-3);
    line-height: 1.1;
}
.service-card-4__title {
    font-family: var(--font-display);
    font-size: var(--fs-2xl);
    font-weight: 700;
    color: var(--c-rosewood);
    line-height: 1.15;
}
.service-card-4__sub {
    font-size: var(--fs-xs);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--c-vintage-blue);
}
.service-card-4__desc {
    font-family: var(--font-cormorant);
    font-style: italic;
    font-size: var(--fs-md);
    line-height: 1.6;
    color: hsl(0 39% 30% / 0.78);
    margin-block-start: var(--sp-3);
}
.service-card-4__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: var(--fs-sm);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--c-terracotta);
    margin-block-start: var(--sp-4);
    transition: gap 250ms var(--ease-smooth);
}
.service-card-4:hover .service-card-4__cta { gap: var(--sp-3); }

/* ══ Featured package (dark, full-bleed photo) ════════════════════════════════ */
.featured-pkg {
    position: relative;
    overflow: hidden;
    border-radius: var(--r-2xl);
    box-shadow: var(--sh-glow);
    border: 1px solid hsl(33 64% 91% / 0.12);
    max-width: 1200px;
    margin-inline: auto;
}
.featured-pkg__bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}
.featured-pkg__overlay {
    position: absolute; inset: 0; z-index: 1;
    /* RTL: text sits on the right, so darken the left side slightly less */
    background: linear-gradient(
        to left,
        hsl(0 39% 12% / 0.92),
        hsl(0 39% 14% / 0.85) 55%,
        hsl(0 39% 12% / 0.78)
    );
}
.featured-pkg__body {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-10);
    align-items: center;
    padding: clamp(2.5rem, 5vw, 4rem);
    color: var(--c-cream);
}
@media (max-width: 768px) {
    .featured-pkg__body { grid-template-columns: 1fr; }
}
.featured-pkg__price {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--c-terracotta);
    line-height: 1;
    margin-block-start: var(--sp-6);
}
.featured-pkg__checklist { display: flex; flex-direction: column; gap: var(--sp-4); }
.featured-pkg__check {
    display: flex; align-items: flex-start; gap: var(--sp-3);
    font-size: var(--fs-md);
    color: hsl(33 64% 91% / 0.9);
}
.featured-pkg__check-icon {
    flex-shrink: 0;
    width: 24px; height: 24px;
    background: hsl(14 53% 53% / 0.2);
    border: 1px solid hsl(14 53% 53% / 0.5);
    border-radius: var(--r-pill);
    display: flex; align-items: center; justify-content: center;
    color: var(--c-terracotta);
    font-size: var(--fs-xs);
    margin-block-start: 2px;
}

/* ══ Testimonials slider ══════════════════════════════════════════════════════ */
/* Lives in section-light (warm cream bg) — all colours are rosewood/terracotta */
.testimonials-slider {
    position: relative;
    max-width: 860px;
    margin-inline: auto;
    text-align: center;
}
.testimonials-slider__quote-icon {
    width: 48px; height: 48px;
    color: hsl(14 53% 53% / 0.55); /* terracotta, enough contrast on cream */
    margin-inline: auto;
    margin-block-end: var(--sp-6);
}
.testimonials-slider__quote-icon svg { width: 100%; height: 100%; fill: currentColor; }

.testimonials-slider__item {
    animation: reveal-up 0.6s var(--ease-smooth) both;
}
.testimonials-slider__text {
    font-family: var(--font-cormorant);
    font-style: italic;
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    line-height: 1.55;
    color: hsl(0 39% 30% / 0.88); /* rosewood on cream — readable */
}
.testimonials-slider__name {
    font-family: var(--font-display);
    font-size: var(--fs-lg);
    color: var(--c-terracotta);
    margin-block-start: var(--sp-6);
}
.testimonials-slider__role {
    font-size: var(--fs-xs);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--c-terracotta);
    opacity: 0.72;
    margin-block-start: var(--sp-1);
}

.testimonials-slider__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-6);
    margin-block-start: var(--sp-10);
}
.testimonials-slider__btn {
    width: 48px; height: 48px;
    border-radius: var(--r-pill);
    border: 1.5px solid hsl(0 39% 30% / 0.22);
    color: var(--c-rosewood);
    display: flex; align-items: center; justify-content: center;
    transition: background 200ms ease, border-color 200ms ease;
    font-size: var(--fs-lg);
}
.testimonials-slider__btn:hover {
    background: hsl(0 39% 30% / 0.07);
    border-color: var(--c-terracotta);
}
.testimonials-slider__dots { display: flex; gap: var(--sp-2); align-items: center; }
.testimonials-slider__dot {
    height: 6px;
    border-radius: var(--r-pill);
    background: hsl(0 39% 30% / 0.18);
    transition: width 300ms var(--ease-smooth), background 300ms ease;
    cursor: pointer;
    width: 8px;
}
.testimonials-slider__dot--active { width: 28px; background: var(--c-terracotta); }

/* ══ CTA band ═════════════════════════════════════════════════════════════════ */
.cta-band {
    background: var(--c-rosewood);
    padding-block: var(--sp-20);
    text-align: center;
    color: var(--c-cream);
}
.cta-band h2 { color: var(--c-cream); margin-block-end: var(--sp-4); font-size: clamp(2rem, 4vw, 3rem); }
.cta-band p  { color: hsl(33 64% 91% / 0.78); margin-inline: auto; max-width: 48ch; margin-block-end: var(--sp-8); }
.cta-band .about-headline-script { color: hsl(14 53% 68%); }

/* ══ About headline script ════════════════════════════════════════════════════ */
.about-headline-script {
    font-family: var(--font-script);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--c-terracotta);
    display: block;
    line-height: 1;
    margin-block-end: var(--sp-2);
}

/* ══ Price cards ══════════════════════════════════════════════════════════════ */
.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--sp-6);
}
.price-card {
    background: var(--c-surface);
    border: 2px solid var(--c-line-soft);
    border-radius: var(--r-2xl);
    padding: var(--sp-8);
    text-align: center;
    transition: border-color 300ms var(--ease-smooth), box-shadow 300ms var(--ease-smooth), transform 300ms var(--ease-smooth);
    position: relative;
    will-change: transform;
}
.price-card:hover { border-color: var(--c-terracotta); box-shadow: var(--sh-hover); transform: translateY(-6px); }
.price-card.featured {
    border-color: var(--c-terracotta);
    background: linear-gradient(160deg, hsl(14 53% 53% / 0.06), hsl(33 64% 91%));
}
.price-card .price {
    font-family: var(--font-display);
    font-size: var(--fs-4xl);
    font-weight: 900;
    color: var(--c-rosewood);
    line-height: 1;
}
.price-card .price-sub  { font-size: var(--fs-sm); color: var(--c-ink-soft); margin-block-start: var(--sp-1); }
.price-card .price-title { font-size: var(--fs-xl); font-weight: 700; color: var(--c-rosewood); margin-block: var(--sp-4); }
.price-card .price-desc  { font-size: var(--fs-sm); color: var(--c-ink-soft); }

/* ══ Page hero (inner pages) ══════════════════════════════════════════════════ */
.page-hero {
    background: hsl(10 56% 18%);
    color: var(--c-cream);
    padding-block: var(--sp-20);
    text-align: center;
}
.page-hero h1 { color: var(--c-cream); font-size: clamp(2rem, 5vw, 3.5rem); }
.page-hero p  { color: hsl(33 64% 91% / 0.78); max-width: 52ch; margin-inline: auto; margin-block-start: var(--sp-4); }
.page-hero__script {
    font-family: var(--font-script);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--c-terracotta);
    display: block;
    margin-block-end: var(--sp-3);
}

/* ══ WhatsApp float ═══════════════════════════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: var(--sp-6);
    inset-inline-start: var(--sp-6);
    z-index: 500;
    width: 56px; height: 56px;
    background: #25D366;
    border-radius: var(--r-pill);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px hsl(145 60% 35% / 0.45);
    transition: transform 300ms var(--ease-smooth), box-shadow 300ms var(--ease-smooth);
    color: #fff;
    will-change: transform;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px hsl(145 60% 35% / 0.65); }
.whatsapp-float svg { width: 28px; height: 28px; }

/* ══ Forms ════════════════════════════════════════════════════════════════════ */
.form-group { margin-block-end: var(--sp-5); }
.form-group label {
    display: block;
    font-weight: 600;
    font-size: var(--fs-sm);
    margin-block-end: var(--sp-2);
    color: var(--c-rosewood);
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--sp-3) var(--sp-4);
    border: 1.5px solid var(--c-line);
    border-radius: var(--r-lg);
    font: inherit;
    font-size: var(--fs-base);
    background: var(--c-surface);
    color: var(--c-ink);
    direction: rtl;
    transition: border-color 200ms ease, box-shadow 200ms ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--c-terracotta);
    box-shadow: 0 0 0 3px hsl(14 53% 53% / 0.18);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ══ WooCommerce base ═════════════════════════════════════════════════════════ */
.woocommerce-page h2 { font-family: var(--font-display); }
.woocommerce form .form-row { direction: rtl; }
.woocommerce #payment { border-radius: var(--r-xl); }
.woocommerce .woocommerce-info { border-right: none; border-inline-start: 4px solid var(--c-terracotta); }

/* ══ FAQ accordion ════════════════════════════════════════════════════════════ */
.faq-item { border-block-end: 1px solid var(--c-line-soft); padding-block: var(--sp-5); }
.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    font-size: var(--fs-md);
    color: var(--c-rosewood);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--sp-4);
    user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-icon {
    flex-shrink: 0;
    font-size: var(--fs-xl);
    font-weight: 300;
    color: var(--c-terracotta);
    transition: transform 300ms var(--ease-smooth);
}
.faq-item[open] summary .faq-icon { transform: rotate(45deg); }
.faq-item p { margin-block-start: var(--sp-3); color: var(--c-ink-soft); line-height: 1.75; }

/* ══ Footer ═══════════════════════════════════════════════════════════════════ */
.site-footer {
    background: hsl(0 39% 18%);
    color: hsl(33 64% 91% / 0.7);
    padding-block: var(--sp-16) var(--sp-8);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--sp-12);
    margin-block-end: var(--sp-12);
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: var(--sp-8); } }

.footer-brand .footer-logo {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: 900;
    color: var(--c-cream);
    margin-block-end: var(--sp-4);
}
.footer-brand p { font-size: var(--fs-sm); line-height: 1.7; }
.footer-brand .footer-social { display: flex; gap: var(--sp-3); margin-block-start: var(--sp-5); }
.footer-brand .footer-social a {
    width: 40px; height: 40px;
    border: 1px solid hsl(33 64% 91% / 0.18);
    border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center;
    color: hsl(33 64% 91% / 0.55);
    transition: border-color 200ms ease, color 200ms ease;
}
.footer-brand .footer-social a:hover { border-color: var(--c-terracotta); color: var(--c-terracotta); }
.footer-nav h4 {
    font-family: var(--font-display);
    font-size: var(--fs-xs);
    font-weight: 700;
    color: var(--c-cream);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-block-end: var(--sp-5);
}
.footer-nav ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-nav a { font-size: var(--fs-sm); color: hsl(33 64% 91% / 0.6); transition: color 200ms ease; }
.footer-nav a:hover { color: var(--c-terracotta); }
.footer-bottom {
    border-block-start: 1px solid hsl(33 64% 91% / 0.1);
    padding-block-start: var(--sp-6);
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: var(--sp-4);
    font-size: var(--fs-xs);
    color: hsl(33 64% 91% / 0.38);
}

/* ══ Utilities ════════════════════════════════════════════════════════════════ */
.text-center { text-align: center; }
.text-start  { text-align: start; }
.mt-4  { margin-block-start: var(--sp-4); }
.mt-8  { margin-block-start: var(--sp-8); }
.mt-12 { margin-block-start: var(--sp-12); }
.mb-4  { margin-block-end: var(--sp-4); }
.mb-8  { margin-block-end: var(--sp-8); }
.w-full { width: 100%; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-4 { gap: var(--sp-4); }
.max-w-prose { max-width: 68ch; }

/* ══ Responsive ═══════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
    .section, .section--lg { padding-block: var(--sp-16); }
    .hero { min-height: 85svh; }
    .price-grid { grid-template-columns: 1fr; }
    .featured-pkg__body { padding: var(--sp-8); }
    .btn-lg { padding: var(--sp-3) var(--sp-8); font-size: var(--fs-base); }
}

/* ══ Header hide-on-scroll ════════════════════════════════════════════════════ */
.site-header {
    transition: transform 300ms var(--ease-smooth), box-shadow 300ms var(--ease-smooth);
    will-change: transform;
}
.site-header.hidden {
    transform: translateY(-100%);
}
.site-header.scrolled {
    box-shadow: var(--sh-soft);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}
