/* ============================================
   CUSTOM PROPERTIES
   ============================================ */
:root {
    --dark:          #111111;
    --dark2:         #1c1c1c;
    --cream:         #f7f3ee;
    --cream2:        #ede8df;
    --gold:          #c9a96e;
    --gold-light:    #dfc08a;
    --gold-dark:     #a8843c;
    --text-on-dark:  #e0dbd4;
    --text-muted-dk: #888880;
    --text-on-light: #1a1a1a;
    --text-muted-lt: #666660;
    --font-serif:    'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --max-width:     1100px;
    --sec-pad:       100px 24px;
    --radius:        4px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    background: var(--dark);
    color: var(--text-on-dark);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.pain-grid  .pain-card:nth-child(2)  { transition-delay: 0.10s; }
.pain-grid  .pain-card:nth-child(3)  { transition-delay: 0.20s; }
.pain-grid  .pain-card:nth-child(4)  { transition-delay: 0.30s; }

.services-grid .service-card:nth-child(2) { transition-delay: 0.12s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.24s; }

.reviews-grid .review-card:nth-child(2) { transition-delay: 0.08s; }
.reviews-grid .review-card:nth-child(3) { transition-delay: 0.16s; }
.reviews-grid .review-card:nth-child(4) { transition-delay: 0.04s; }
.reviews-grid .review-card:nth-child(5) { transition-delay: 0.12s; }
.reviews-grid .review-card:nth-child(6) { transition-delay: 0.20s; }

/* ============================================
   NAVIGATION
   ============================================ */
.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 24px 32px;
    transition: padding 0.4s ease, background 0.4s ease, border-color 0.4s ease;
}
.site-nav.scrolled {
    padding: 14px 32px;
    background: rgba(17,17,17,0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(201,169,110,0.18);
}
.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-brand {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.06em;
}
.nav-links {
    display: flex;
    gap: 36px;
}
.nav-links a {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-on-dark);
    transition: color 0.25s ease;
}
.nav-links a:hover { color: var(--gold); }

.nav-book {
    padding: 10px 24px;
    background: var(--gold);
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: background 0.25s ease, transform 0.2s ease;
}
.nav-book:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
    text-align: center;
    background-color: var(--dark);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(8,6,4,0.72) 0%,
        rgba(8,6,4,0.55) 50%,
        rgba(8,6,4,0.72) 100%
    );
    pointer-events: none;
}
.hero-container {
    position: relative;
    z-index: 1;
    max-width: 820px;
}
.eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.hero-divider {
    width: 56px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 32px;
}
.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    font-weight: 700;
    line-height: 1.13;
    color: var(--cream);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.18rem);
    color: var(--text-muted-dk);
    font-weight: 300;
    letter-spacing: 0.03em;
    max-width: 500px;
    margin: 0 auto 52px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-gold {
    display: inline-block;
    padding: 16px 36px;
    background: var(--gold);
    color: var(--dark);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201,169,110,0.32);
}
.btn-gold.btn-lg { padding: 18px 44px; font-size: 0.85rem; }

.btn-outline {
    display: inline-block;
    padding: 16px 36px;
    background: transparent;
    color: var(--cream);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid rgba(247,243,238,0.22);
    border-radius: var(--radius);
    transition: border-color 0.25s, color 0.25s, transform 0.2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ============================================
   SCROLL HINT
   ============================================ */
.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted-dk);
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--text-muted-dk), transparent);
    animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.35; transform: scaleY(1); }
    50%       { opacity: 1;    transform: scaleY(1.08); }
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}
.section-cream { background: var(--cream);  padding: var(--sec-pad); }
.section-dark  { background: var(--dark2); padding: var(--sec-pad); }

.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.eyebrow-dark {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 14px;
}
.section-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    font-weight: 700;
    color: var(--text-on-light);
    line-height: 1.2;
    margin-bottom: 14px;
}
.section-dark .section-header h2 { color: var(--cream); }
.section-lead {
    font-size: 1.05rem;
    color: var(--text-muted-lt);
    max-width: 500px;
    margin: 0 auto;
}

/* ============================================
   PAIN POINTS
   ============================================ */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.pain-card {
    background: #fff;
    padding: 32px 28px;
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    box-shadow: 0 2px 18px rgba(0,0,0,0.07);
}
.pain-card h3 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--text-on-light);
    margin-bottom: 10px;
    font-weight: 600;
}
.pain-card p {
    font-size: 0.9rem;
    color: var(--text-muted-lt);
    line-height: 1.65;
}

/* ============================================
   ABOUT
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 72px;
    align-items: start;
}
.about-photo-frame {
    position: relative;
}
.about-photo-frame img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 2px;
}
.about-photo-frame::before {
    content: '';
    position: absolute;
    top: 18px;
    left: -18px;
    right: 18px;
    bottom: -18px;
    border: 1px solid rgba(201,169,110,0.28);
    border-radius: 2px;
    pointer-events: none;
    z-index: 0;
}
.about-content .eyebrow { display: block; margin-bottom: 16px; }
.about-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--cream);
    line-height: 1.2;
    margin-bottom: 24px;
}
.about-content p {
    font-size: 1rem;
    color: var(--text-on-dark);
    margin-bottom: 16px;
    line-height: 1.8;
}
.about-content blockquote {
    border-left: 2px solid var(--gold);
    padding: 2px 0 2px 20px;
    margin: 28px 0 32px;
    font-style: italic;
    color: var(--gold-light);
    font-size: 1.05rem;
    line-height: 1.7;
    font-family: var(--font-serif);
}
.qual-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 36px;
}
.qual-list li {
    padding-left: 18px;
    border-left: 1px solid rgba(201,169,110,0.3);
}
.qual-list li strong {
    display: block;
    color: var(--cream);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}
.qual-list li span {
    font-size: 0.86rem;
    color: var(--text-muted-dk);
    line-height: 1.6;
}
.credentials { display: flex; flex-direction: column; gap: 8px; }
.credential {
    font-size: 0.77rem;
    color: var(--text-muted-dk);
    letter-spacing: 0.04em;
    padding: 6px 12px;
    border: 1px solid rgba(201,169,110,0.22);
    border-radius: var(--radius);
    width: fit-content;
}

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 2px 20px rgba(0,0,0,0.07);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 16px 44px rgba(0,0,0,0.13); }
.service-card:hover .service-img img { transform: scale(1.05); }
.service-img {
    height: 220px;
    overflow: hidden;
    border-top: 3px solid var(--gold);
}
.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.service-body { padding: 28px 28px 32px; }
.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--text-on-light);
    margin-bottom: 12px;
    font-weight: 700;
}
.service-card p {
    font-size: 0.92rem;
    color: var(--text-muted-lt);
    line-height: 1.75;
}

/* ============================================
   IMAGE BANNER (parallax strip)
   ============================================ */
.image-banner {
    height: 420px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}
.image-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8,6,4,0.42);
}

/* ============================================
   GUARANTEE
   ============================================ */
.guarantee-section {
    background: var(--dark);
    padding: 88px 24px;
    text-align: center;
    border-top:    1px solid rgba(201,169,110,0.14);
    border-bottom: 1px solid rgba(201,169,110,0.14);
}
.guarantee-inner { max-width: 680px; margin: 0 auto; }
.guarantee-mark {
    font-family: var(--font-serif);
    font-size: 7rem;
    color: var(--gold);
    opacity: 0.25;
    line-height: 0.65;
    margin-bottom: 12px;
    display: block;
}
.guarantee-text {
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 3vw, 2rem);
    color: var(--cream);
    font-style: italic;
    line-height: 1.5;
    font-weight: 400;
}
.guarantee-highlight {
    color: var(--gold);
    font-weight: 700;
    font-style: normal;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.stars-row {
    color: var(--gold-dark);
    font-size: 0.95rem;
    margin-top: 8px;
}
.stars-row span {
    font-size: 0.82rem;
    color: var(--text-muted-lt);
    margin-left: 6px;
    vertical-align: middle;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.review-card {
    background: #fff;
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: 0 2px 18px rgba(0,0,0,0.07);
}
.review-stars {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-bottom: 14px;
}
.review-card p {
    font-size: 0.9rem;
    color: var(--text-on-light);
    line-height: 1.75;
    margin-bottom: 16px;
    font-style: italic;
}
.reviewer {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-on-light);
    letter-spacing: 0.04em;
}
.reviewer span { font-weight: 400; color: var(--text-muted-lt); }

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.contact-info .eyebrow { display: block; margin-bottom: 16px; }
.contact-info h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 18px;
    line-height: 1.2;
}
.contact-info p {
    font-size: 0.98rem;
    color: var(--text-muted-dk);
    margin-bottom: 36px;
    line-height: 1.75;
}
.contact-details { display: flex; flex-direction: column; gap: 28px; }
.contact-item {
    border-left: 2px solid rgba(201,169,110,0.28);
    padding-left: 20px;
}
.contact-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}
.contact-value {
    font-size: 1rem;
    color: var(--text-on-dark);
    line-height: 1.65;
}
.contact-note {
    font-size: 0.82rem;
    color: var(--text-muted-dk);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #0a0a0a;
    padding: 52px 24px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-brand {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 0.08em;
}
.footer-disclaimer {
    font-size: 0.73rem;
    color: #555;
    max-width: 620px;
    margin: 0 auto 14px;
    line-height: 1.75;
}
.footer-copy {
    font-size: 0.73rem;
    color: #444;
    letter-spacing: 0.05em;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
    :root { --sec-pad: 72px 20px; }
    .pain-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-photo-frame img { height: 420px; object-position: center 20%; }
    .about-photo-frame::before { display: none; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .nav-links { display: none; }
    .image-banner { background-attachment: scroll; }
}
@media (max-width: 620px) {
    .services-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    :root { --sec-pad: 60px 16px; }
    .pain-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: center; }
    .site-nav { padding: 16px 20px; }
    .site-nav.scrolled { padding: 12px 20px; }
    .image-banner { height: 260px; }
}

/* ============================================
   BLAZOR ERROR (keep)
   ============================================ */
#blazor-error-ui {
    display: none;
    position: fixed;
    bottom: 0; width: 100%;
    background: #b32121;
    color: #fff;
    padding: 10px 20px;
    z-index: 9999;
    font-size: 0.85rem;
}
#blazor-error-ui a { color: #fff; text-decoration: underline; }
