/* ============================================
   Ksenia Consultant — Style Sheet
   Warm, organic, sanctuary-like aesthetic
   ============================================ */

/* --- CSS Variables --- */
:root {
    /* Colors */
    --cream: #FBF8F3;
    --cream-dark: #F3EDE4;
    --sage-light: #D4DDD4;
    --sage: #A3B5A0;
    --sage-dark: #7A9477;
    --sage-deeper: #5A7358;
    --terracotta: #C4907A;
    --terracotta-muted: #B8806A;
    --terracotta-light: #E8C4B4;
    --clay: #D4A889;
    --gold: #C9A96E;
    --gold-light: #E0D0A8;
    --text-dark: #3A3530;
    --text-body: #5A554E;
    --text-light: #8A847D;
    --white: #FFFFFF;
    --overlay: rgba(58, 53, 48, 0.6);

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Nunito', 'Segoe UI', sans-serif;

    /* Spacing */
    --section-padding: 120px 0;
    --container-width: 1140px;
    --border-radius: 12px;

    /* Transitions */
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Linen texture overlay on body */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Crect width='4' height='4' fill='%23f5f0e8'/%3E%3Crect width='1' height='1' fill='%23ece7df' x='0' y='0'/%3E%3Crect width='1' height='1' fill='%23ece7df' x='2' y='2'/%3E%3C/svg%3E");
    opacity: 0.4;
}

body > * {
    position: relative;
    z-index: 1;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-smooth);
}

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

/* --- Fade-in Animation --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Hero gets a special entrance animation */
.hero .fade-in {
    opacity: 0;
    transform: translateY(0);
    animation: heroEntrance 1.2s ease forwards;
    animation-delay: 0.2s;
}

@keyframes heroEntrance {
    0% {
        opacity: 0;
        transform: translateY(24px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(251, 248, 243, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(163, 181, 160, 0.15);
    transition: all var(--transition-smooth);
}

.nav.scrolled {
    box-shadow: 0 2px 24px rgba(58, 53, 48, 0.08);
}

.nav-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--sage-deeper);
    letter-spacing: 0.02em;
}

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

.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-body);
    padding: 8px 14px;
    border-radius: 8px;
    transition: all var(--transition-smooth);
    letter-spacing: 0.01em;
}

.nav-links a:hover {
    color: var(--sage-deeper);
    background: rgba(163, 181, 160, 0.12);
}

.nav-cta {
    background: var(--sage-dark) !important;
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--sage-deeper) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
}

.nav-links a.active-link:not(.nav-cta) {
    color: var(--sage-deeper);
    background: rgba(163, 181, 160, 0.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 16px 36px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-smooth);
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--sage-dark);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(122, 148, 119, 0.3);
}

.btn-primary:hover {
    background: var(--sage-deeper);
    box-shadow: 0 6px 24px rgba(122, 148, 119, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--sage-dark);
    border: 1.5px solid var(--sage);
    padding: 14px 34px;
}

.btn-secondary:hover {
    background: var(--sage-dark);
    color: var(--white);
    border-color: var(--sage-dark);
}

.btn-full {
    width: 100%;
}

/* --- Section Common --- */
.section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--sage-dark);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 8px;
}

.section-divider,
.pricing-divider,
.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 0 auto;
}

.divider-line {
    display: block;
    width: 60px;
    height: 1px;
    background: var(--gold-light);
}

.divider-dot {
    color: var(--gold);
    font-size: 0.6rem;
    line-height: 1;
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 72px;
}

.hero-bg-layers {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 70% at 50% 30%, rgba(212, 221, 212, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse 60% 60% at 80% 80%, rgba(232, 196, 180, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 20% 70%, rgba(201, 169, 110, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.hero-texture {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Ccircle cx='50' cy='50' r='1' fill='%233A3530'/%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 40px 24px;
}

.hero-ornament {
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 24px;
    opacity: 0.7;
}

.hero-name {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 300;
    color: var(--text-dark);
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    line-height: 1.1;
}

.hero-divider {
    margin-bottom: 28px;
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.5vw, 1.45rem);
    font-weight: 400;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 20px;
    letter-spacing: 0.01em;
}

.hero-welcome {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto 40px;
}

.hero-btn {
    font-size: 1rem;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.6;
    animation: hintBounce 2.5s ease-in-out infinite;
}

.scroll-arrow {
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, var(--text-light), transparent);
}

@keyframes hintBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* --- About --- */
.about {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    align-items: start;
}

.about-lead {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 24px;
}

.about-text p {
    margin-bottom: 18px;
    font-size: 0.97rem;
}

.about-highlight {
    background: linear-gradient(135deg, rgba(212, 221, 212, 0.3), rgba(232, 196, 180, 0.15));
    padding: 20px 24px;
    border-radius: var(--border-radius);
    border-left: 3px solid var(--sage);
    font-style: italic;
    color: var(--text-dark);
}

.about-quote {
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    padding: 36px 28px;
    border-radius: var(--border-radius);
    margin-bottom: 32px;
    position: relative;
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--gold);
    line-height: 1;
    position: absolute;
    top: 12px;
    left: 20px;
    opacity: 0.5;
}

.about-quote p {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.5;
    position: relative;
    padding-top: 16px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--text-body);
}

.value-icon {
    color: var(--sage-dark);
    font-size: 0.7rem;
}

/* --- Services --- */
.services {
    background: linear-gradient(180deg, var(--cream) 0%, rgba(212, 221, 212, 0.12) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 32px;
    border: 1px solid rgba(163, 181, 160, 0.15);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sage), var(--gold-light));
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(58, 53, 48, 0.08);
    border-color: rgba(163, 181, 160, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 48px;
    height: 48px;
    color: var(--sage-dark);
    margin-bottom: 24px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* --- Process --- */
.process {
    background: var(--white);
}

.process-steps {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    position: relative;
    padding-bottom: 48px;
}

.step:last-child {
    padding-bottom: 0;
}

.step-number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--sage);
    min-width: 64px;
    text-align: center;
    line-height: 1;
    padding-top: 4px;
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.92rem;
    color: var(--text-body);
}

.step-connector {
    position: absolute;
    left: 32px;
    top: 44px;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--sage-light), transparent);
}

.process-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 56px;
    padding: 20px 32px;
    background: linear-gradient(135deg, rgba(212, 221, 212, 0.2), rgba(201, 169, 110, 0.1));
    border-radius: 50px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.note-icon {
    font-size: 1.2rem;
    color: var(--gold);
}

/* --- Pricing --- */
.pricing {
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
    padding: 100px 0;
}

.pricing-card {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    border-radius: 20px;
    padding: 72px 56px;
    position: relative;
    border: 1px solid rgba(201, 169, 110, 0.2);
    box-shadow: 0 20px 60px rgba(58, 53, 48, 0.06);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.3), rgba(163, 181, 160, 0.2), rgba(201, 169, 110, 0.15));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.pricing-ornament {
    position: absolute;
    color: var(--gold-light);
    font-size: 1.2rem;
    opacity: 0.3;
}

.pricing-ornament.top-left { top: 24px; left: 28px; }
.pricing-ornament.top-right { top: 24px; right: 28px; }
.pricing-ornament.bottom-left { bottom: 24px; left: 28px; }
.pricing-ornament.bottom-right { bottom: 24px; right: 28px; }

.pricing-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 20px;
    margin-top: 16px;
}

.pricing-divider {
    margin-bottom: 32px;
}

.pricing-main-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto 40px;
    font-style: italic;
}

.pricing-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    text-align: left;
}

.pricing-detail {
    padding: 24px;
    background: linear-gradient(135deg, rgba(212, 221, 212, 0.12), rgba(201, 169, 110, 0.06));
    border-radius: var(--border-radius);
}

.detail-icon {
    display: block;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.pricing-detail p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.7;
}

/* --- Schedule --- */
.schedule {
    background: var(--white);
}

.schedule-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.schedule-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
}

.schedule-nav-btn {
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--sage-light);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sage-dark);
    transition: all var(--transition-smooth);
}

.schedule-nav-btn:hover {
    background: var(--sage-dark);
    border-color: var(--sage-dark);
    color: var(--white);
}

.schedule-nav-btn svg {
    width: 18px;
    height: 18px;
}

.schedule-week-label {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-dark);
    min-width: 280px;
    text-align: center;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.schedule-day {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.day-header {
    text-align: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--sage-light);
    width: 100%;
}

.day-name {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 2px;
}

.day-date {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-dark);
}

.day-slots {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.slot-btn {
    width: 100%;
    padding: 12px 8px;
    background: rgba(212, 221, 212, 0.15);
    border: 1.5px solid transparent;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--sage-deeper);
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.slot-btn:hover {
    background: var(--sage-dark);
    color: var(--white);
    border-color: var(--sage-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(122, 148, 119, 0.25);
}

.slot-btn.booked {
    background: rgba(138, 132, 125, 0.08);
    color: var(--text-light);
    cursor: default;
    font-size: 0.82rem;
    font-weight: 400;
    border-color: transparent;
}

.slot-btn.booked:hover {
    transform: none;
    box-shadow: none;
    background: rgba(138, 132, 125, 0.08);
    color: var(--text-light);
    border-color: transparent;
}

.slot-btn.past {
    opacity: 0.4;
    cursor: default;
    background: rgba(138, 132, 125, 0.05);
    color: var(--text-light);
}

.slot-btn.past:hover {
    transform: none;
    box-shadow: none;
    background: rgba(138, 132, 125, 0.05);
    color: var(--text-light);
    border-color: transparent;
}

.slot-btn.booked {
    opacity: 0.6;
    cursor: default;
    background: rgba(139, 157, 122, 0.15);
    color: var(--sage);
    border: 1px solid rgba(139, 157, 122, 0.3);
}

.slot-btn.booked:hover {
    transform: none;
    box-shadow: none;
    background: rgba(139, 157, 122, 0.15);
    color: var(--sage);
    border-color: rgba(139, 157, 122, 0.3);
}

/* --- Modal --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: var(--overlay);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 24px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--white);
    border-radius: 20px;
    max-width: 480px;
    width: 100%;
    padding: 48px 40px;
    position: relative;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(138, 132, 125, 0.08);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all var(--transition-smooth);
}

.modal-close:hover {
    background: rgba(138, 132, 125, 0.15);
    color: var(--text-dark);
}

.modal-close svg {
    width: 18px;
    height: 18px;
}

.modal-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.modal-slot-info {
    font-size: 0.92rem;
    color: var(--sage-dark);
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--cream-dark);
}

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

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group .required {
    color: var(--terracotta);
}

.form-group .optional {
    color: var(--text-light);
    font-weight: 400;
    font-size: 0.82rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--cream-dark);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--cream);
    transition: all var(--transition-smooth);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--sage);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(163, 181, 160, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

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

/* Success View */
.modal-success-view {
    text-align: center;
}

.success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sage), var(--sage-dark));
    color: var(--white);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.modal-success-view p {
    font-size: 0.95rem;
    color: var(--text-body);
    margin-bottom: 32px;
    line-height: 1.7;
}

/* --- Testimonials --- */
.testimonials {
    background: linear-gradient(180deg, var(--cream) 0%, rgba(212, 221, 212, 0.12) 100%);
}

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 36px;
    border: 1px solid rgba(163, 181, 160, 0.12);
    position: relative;
    transition: all var(--transition-smooth);
}

.testimonial-card:hover {
    box-shadow: 0 8px 32px rgba(58, 53, 48, 0.06);
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: -8px;
}

.testimonial-card p {
    font-size: 0.93rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.author-note {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* --- Footer --- */
.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 72px 0 32px;
}

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

.footer-name {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--white);
    display: block;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contacts h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 20px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.65);
    transition: all var(--transition-smooth);
}

.contact-link:hover {
    color: var(--white);
}

.contact-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.footer-bottom {
    padding-top: 24px;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pricing-card {
        padding: 56px 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }

    /* Nav mobile */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(251, 248, 243, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        border-bottom: 1px solid rgba(163, 181, 160, 0.15);
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        padding: 12px 16px;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }

    .nav-cta {
        margin-top: 8px;
    }

    /* Toggle animation */
    .nav-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Hero */
    .hero-name {
        font-size: clamp(2.8rem, 12vw, 4rem);
    }

    .hero-scroll-hint {
        display: none;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        padding: 28px 24px;
    }

    /* Process */
    .step {
        gap: 20px;
    }

    .step-number {
        font-size: 1.8rem;
        min-width: 48px;
    }

    .step-connector {
        left: 24px;
    }

    /* Pricing */
    .pricing-card {
        padding: 40px 24px;
    }

    .pricing-details {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Schedule */
    .schedule-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 12px;
    }

    .schedule-day {
        min-width: 100px;
    }

    .schedule-week-label {
        font-size: 1rem;
        min-width: auto;
    }

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

    .testimonial-card {
        padding: 28px 24px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Modal */
    .modal {
        padding: 36px 24px;
    }
}

@media (max-width: 480px) {
    .schedule-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 6px;
    }

    .schedule-day {
        min-width: 80px;
    }

    .slot-btn {
        padding: 10px 4px;
        font-size: 0.82rem;
    }

    .day-name {
        font-size: 0.72rem;
    }

    .day-date {
        font-size: 1.1rem;
    }

    .hero-welcome br {
        display: none;
    }

    .hero-tagline br {
        display: none;
    }
}
