/* Mögeldorfer Brilliance — standalone styles */
:root {
    --br-rosegold: #B88B7A;
    --br-rosegold-light: #D4A898;
    --br-rosegold-dark: #9A7164;
    --br-beige: #F5F0EB;
    --br-beige-dark: #E8DFD6;
    --br-taupe: #B5A99A;
    --br-taupe-dark: #7A6E63;
    --br-warm-dark: #3D3530;
    --br-warm-cream: #FAF7F4;
}

/* Reset & base */
.br-page { font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--br-warm-dark); margin: 0; background: var(--br-warm-cream); }
.br-page * { box-sizing: border-box; }
.br-page img { max-width: 100%; }
.br-serif { font-family: 'Cormorant Garamond', Georgia, serif; }
.br-container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }

/* Gradient & utilities */
.br-gradient { background: linear-gradient(135deg, var(--br-rosegold) 0%, var(--br-rosegold-light) 50%, var(--br-rosegold) 100%); }
.br-text-gradient { background: linear-gradient(135deg, var(--br-rosegold), var(--br-rosegold-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.br-diamond-glow { filter: drop-shadow(0 0 20px rgba(184,139,122,0.3)); }
.br-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 600; padding: 14px 32px; border-radius: 50px; text-decoration: none; transition: opacity 0.2s; }
.br-btn:hover { opacity: 0.9; }
.br-btn-primary { background: linear-gradient(135deg, var(--br-rosegold), var(--br-rosegold-light), var(--br-rosegold)); color: white; box-shadow: 0 4px 15px rgba(184,139,122,0.3); }
.br-btn-secondary { background: rgba(255,255,255,0.8); color: var(--br-warm-dark); border: 1px solid var(--br-beige-dark); }
.br-btn-secondary:hover { background: white; }

/* Navbar */
.br-nav { position: fixed; top: 0; width: 100%; z-index: 50; transition: all 0.3s; }
.br-nav.scrolled { background: rgba(255,255,255,0.9); backdrop-filter: blur(12px); box-shadow: 0 1px 3px rgba(0,0,0,0.08); }
.br-nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.br-nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.br-nav-logo img { height: 56px; }
.br-nav-logo span { font-size: 1.4rem; font-weight: 600; color: var(--br-warm-dark); }
.br-nav-links { display: none; align-items: center; gap: 32px; }
.br-nav-links a { font-size: 14px; color: var(--br-taupe-dark); text-decoration: none; transition: color 0.2s; }
.br-nav-links a:hover { color: var(--br-rosegold); }
.br-lang-switcher { display: flex; background: var(--br-beige); border-radius: 8px; padding: 2px; }
.br-lang-btn { padding: 4px 10px; border-radius: 6px; border: none; background: none; font-size: 12px; font-weight: 700; cursor: pointer; color: rgba(122,110,99,0.5); transition: all 0.2s; }
.br-lang-btn.active { background: white; color: var(--br-rosegold); box-shadow: 0 1px 3px rgba(0,0,0,0.08); }
.br-nav-book { font-size: 14px; font-weight: 600; padding: 10px 24px; border-radius: 50px; text-decoration: none; color: white; }
.br-mobile-toggle { display: block; background: none; border: none; cursor: pointer; color: var(--br-warm-dark); font-size: 24px; }
.br-mobile-menu { display: none; background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); border-top: 1px solid var(--br-beige-dark); padding: 24px 16px; }
.br-mobile-menu.open { display: block; }
.br-mobile-menu a { display: block; color: var(--br-warm-dark); text-decoration: none; padding: 8px 0; }

@media (min-width: 768px) {
    .br-nav-links { display: flex; }
    .br-mobile-toggle { display: none; }
    .br-nav-logo img { height: 64px; }
    .br-container { padding: 0 24px; }
}

/* Hero */
.br-hero { position: relative; display: flex; align-items: center; background: linear-gradient(135deg, var(--br-beige), var(--br-warm-cream), var(--br-beige-dark)); overflow: hidden; }
.br-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.br-hero-bg img { position: absolute; right: 0; top: 0; height: 100%; width: auto; object-fit: cover; opacity: 0.18; transform: translateX(10%); -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 65%, transparent 100%); mask-image: linear-gradient(to right, transparent 0%, black 10%, black 65%, transparent 100%); }
@media (min-width: 768px) {
    .br-hero-bg img { -webkit-mask-image: linear-gradient(to right, transparent 0%, black 40%, black 65%, transparent 100%); mask-image: linear-gradient(to right, transparent 0%, black 40%, black 65%, transparent 100%); }
}
.br-hero-content { position: relative; z-index: 10; padding: 112px 16px 64px; text-align: center; max-width: 800px; margin: 0 auto; }
.br-hero h1 { font-size: 2.5rem; font-weight: 600; color: var(--br-warm-dark); line-height: 1.15; margin: 0 0 16px; }
.br-hero .br-tagline { font-size: 1.25rem; font-style: italic; color: var(--br-taupe-dark); margin: 0 0 32px; }
.br-hero .br-desc { font-size: 1.1rem; color: var(--br-taupe-dark); line-height: 1.6; margin: 0 auto 40px; max-width: 560px; }
.br-hero-buttons { display: flex; flex-direction: column; gap: 16px; justify-content: center; align-items: center; }
@media (min-width: 640px) { .br-hero-buttons { flex-direction: row; } }
@media (min-width: 768px) {
    .br-hero-content { padding: 128px 24px 80px; }
    .br-hero h1 { font-size: 3.75rem; }
    .br-hero .br-tagline { font-size: 1.5rem; }
}
@media (min-width: 1024px) { .br-hero h1 { font-size: 4.5rem; } }

/* Sections */
.br-section { padding: 80px 0; }
.br-section-dark { background: linear-gradient(135deg, var(--br-warm-dark), #2A2320); }
.br-section-white { background: white; }
.br-section-beige { background: linear-gradient(135deg, var(--br-beige), var(--br-beige-dark)); }
.br-section-cream { background: var(--br-beige); }
@media (min-width: 768px) { .br-section { padding: 112px 0; } }
.br-section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.br-section-header .br-label { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 3px; color: var(--br-rosegold); margin: 0 0 12px; }
.br-section-header h2 { font-size: 1.875rem; font-weight: 600; color: var(--br-warm-dark); margin: 0 0 16px; }
.br-section-header p { font-size: 1.1rem; color: var(--br-taupe-dark); margin: 0; }
@media (min-width: 768px) { .br-section-header h2 { font-size: 3rem; } }

/* Treatment cards */
.br-treatments-grid { display: grid; gap: 24px; }
@media (min-width: 768px) { .br-treatments-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .br-treatments-grid { grid-template-columns: repeat(4, 1fr); } }
.br-treatment-card { background: var(--br-warm-cream); border-radius: 16px; padding: 32px; border: 1px solid transparent; transition: all 0.3s; }
.br-treatment-card:hover { box-shadow: 0 4px 15px rgba(0,0,0,0.08); border-color: rgba(212,168,152,0.3); }
.br-treatment-card .br-icon { font-size: 2.5rem; margin-bottom: 24px; }
.br-treatment-card h3 { font-size: 1.25rem; font-weight: 600; color: var(--br-warm-dark); margin: 0 0 12px; }
.br-treatment-card p { font-size: 0.875rem; color: var(--br-taupe-dark); line-height: 1.6; margin: 0; }
.br-treatments-cta { text-align: center; margin-top: 48px; }
.br-treatments-cta a { color: var(--br-rosegold); font-weight: 600; text-decoration: none; }
.br-treatments-cta a:hover { color: var(--br-rosegold-dark); }

/* Expertise */
.br-expertise-card { background: white; border-radius: 24px; padding: 32px; box-shadow: 0 1px 3px rgba(0,0,0,0.05); max-width: 900px; margin: 0 auto; }
@media (min-width: 768px) { .br-expertise-card { padding: 48px; } }
.br-expertise-card p { font-size: 1.1rem; color: var(--br-taupe-dark); line-height: 1.6; margin: 0 0 24px; }
.br-expertise-stats { display: grid; gap: 24px; margin-top: 40px; }
@media (min-width: 768px) { .br-expertise-stats { grid-template-columns: repeat(3, 1fr); } }
.br-stat { text-align: center; padding: 24px; background: var(--br-warm-cream); border-radius: 16px; }
.br-stat-icon { font-size: 2rem; color: var(--br-rosegold); margin-bottom: 12px; }
.br-stat h4 { font-weight: 600; color: var(--br-warm-dark); margin: 0 0 4px; }
.br-stat p { font-size: 0.875rem; color: var(--br-taupe-dark); margin: 0; }

/* Process steps */
.br-steps { display: grid; gap: 32px; max-width: 900px; margin: 0 auto; }
@media (min-width: 768px) { .br-steps { grid-template-columns: repeat(3, 1fr); } }
.br-step { text-align: center; }
.br-step-number { width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; box-shadow: 0 4px 15px rgba(184,139,122,0.3); }
.br-step-number span { color: white; font-size: 1.5rem; font-weight: 700; }
.br-step h3 { font-size: 1.25rem; font-weight: 600; color: var(--br-warm-dark); margin: 0 0 12px; }
.br-step p { font-size: 0.875rem; color: var(--br-taupe-dark); line-height: 1.6; margin: 0; }

/* Booking / Calendly */
.br-section-dark .br-label { color: var(--br-rosegold-light); }
.br-section-dark h2 { color: white; }
.br-section-dark .br-subtitle { color: var(--br-taupe); }
.br-calendly-wrap { max-width: 800px; margin: 0 auto; border-radius: 24px; overflow: hidden; background: white; box-shadow: 0 8px 30px rgba(0,0,0,0.15); height: 750px; }
.br-calendly-wrap iframe { border: none; overflow: hidden; }
.br-calendly-placeholder { display: flex; align-items: center; justify-content: center; height: 300px; background: white; border-radius: 24px; box-shadow: 0 8px 30px rgba(0,0,0,0.15); max-width: 800px; margin: 0 auto; }
.br-calendly-placeholder span { color: var(--br-taupe-dark); font-size: 1rem; }
.br-booking-call { text-align: center; margin-top: 24px; font-size: 0.875rem; color: var(--br-taupe); }
.br-booking-call a { color: var(--br-rosegold-light); text-decoration: none; }
.br-booking-call a:hover { text-decoration: underline; }

/* Contact */
.br-contact-grid { display: grid; gap: 32px; max-width: 900px; margin: 0 auto; }
@media (min-width: 768px) { .br-contact-grid { grid-template-columns: repeat(2, 1fr); } }
.br-contact-card { background: white; border-radius: 16px; padding: 32px; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.br-contact-card h3 { font-size: 1.25rem; font-weight: 600; color: var(--br-warm-dark); margin: 0 0 24px; }
.br-contact-item { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; color: var(--br-taupe-dark); text-decoration: none; transition: color 0.2s; }
.br-contact-item:hover { color: var(--br-rosegold); }
.br-contact-icon { width: 40px; height: 40px; background: var(--br-beige); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--br-rosegold); }
.br-map { margin-top: 24px; border-radius: 12px; overflow: hidden; }

/* Footer */
.br-footer { background: var(--br-warm-dark); color: var(--br-taupe); padding: 48px 0; }
.br-footer-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; }
@media (min-width: 768px) { .br-footer-inner { flex-direction: row; justify-content: space-between; } }
.br-footer-logo { display: flex; align-items: center; gap: 12px; }
.br-footer-logo img { height: 40px; }
.br-footer-logo span { font-size: 1.1rem; color: white; }
.br-footer-links { display: flex; align-items: center; gap: 24px; }
.br-footer-links a { font-size: 0.875rem; color: var(--br-taupe); text-decoration: none; transition: color 0.2s; }
.br-footer-links a:hover { color: var(--br-rosegold-light); }
.br-footer-legal { display: flex; align-items: center; gap: 16px; font-size: 0.75rem; color: rgba(181,169,154,0.6); }
.br-footer-legal a { color: rgba(181,169,154,0.6); text-decoration: none; }
.br-footer-legal a:hover { color: var(--br-rosegold-light); }

/* SVG icons inline */
.br-icon-svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.br-icon-svg-sm { width: 16px; height: 16px; }

/* Smooth scroll */
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
