:root {
    --primary-color: #d4af37;
    --primary-dark: #b8962e;
    --secondary-color: #f5e6d3;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --bg-light: #fdfbf7;
    --white: #ffffff;
    --border-color: #e8e8e8;
    --shadow: 0 2px 15px rgba(0,0,0,0.08);
    --shadow-hover: 0 4px 25px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

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

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

.bv-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bv-navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.bv-nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bv-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
}

.bv-logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.bv-nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.bv-nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.bv-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.bv-nav-menu a:hover::after,
.bv-nav-menu a.bv-active::after {
    width: 100%;
}

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

.bv-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

.bv-welcome-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--bg-light) 100%);
    padding: 12px 0;
    text-align: center;
}

.bv-welcome-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-style: italic;
    color: var(--text-light);
}

.bv-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background: linear-gradient(135deg, #f5e6d3 0%, #ede0d0 50%, #e6d4c0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bv-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="%23d4af37" opacity="0.1"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    from { transform: translateY(0); }
    to { transform: translateY(-100px); }
}

.bv-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, transparent 40%, rgba(255,255,255,0.2) 100%);
}

.bv-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 40px 20px;
}

.bv-hero-title {
    font-size: 64px;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.05);
}

.bv-hero-subtitle {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.bv-hero-description {
    font-size: 17px;
    margin-bottom: 35px;
    color: var(--text-light);
    line-height: 1.8;
}

.bv-btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 30px;
    font-weight: 500;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

.bv-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.bv-btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
}

.bv-btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.bv-btn-light {
    display: inline-block;
    padding: 15px 40px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 30px;
    font-weight: 500;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.bv-btn-light:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.bv-section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.bv-services {
    padding: 80px 0;
    background: var(--bg-light);
}

.bv-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.bv-service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.bv-service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.bv-service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.bv-service-card h3 {
    font-size: 26px;
    padding: 25px 25px 15px;
    color: var(--primary-color);
}

.bv-service-card p {
    padding: 0 25px 25px;
    color: var(--text-light);
    line-height: 1.8;
}

.bv-calculator {
    padding: 80px 0;
    background: var(--white);
}

.bv-calc-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.bv-calc-group {
    margin-bottom: 25px;
}

.bv-calc-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.bv-calc-select,
.bv-calc-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
}

.bv-calc-select:focus,
.bv-calc-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.bv-calc-checkbox {
    margin-right: 8px;
}

.bv-calc-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.bv-calc-btn:hover {
    background: var(--primary-dark);
}

.bv-calc-result {
    margin-top: 25px;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
    display: none;
}

.bv-calc-result.show {
    display: block;
}

.bv-about-preview {
    padding: 80px 0;
    background: var(--white);
}

.bv-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bv-about-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
}

.bv-about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.9;
}

.bv-about-image img {
    border-radius: 15px;
    box-shadow: var(--shadow);
    width: 100%;
}

.bv-testimonials {
    padding: 80px 0;
    background: var(--bg-light);
}

.bv-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bv-testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.bv-testimonial-stars {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 15px;
}

.bv-testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.bv-testimonial-author {
    font-weight: 500;
    color: var(--text-dark);
}

.bv-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    text-align: center;
    color: var(--white);
}

.bv-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--white);
}

.bv-cta p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.bv-footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.bv-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.bv-footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.bv-footer-col p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.bv-footer-col a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

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

.bv-footer-reg {
    font-size: 13px;
    opacity: 0.7;
    margin-top: 10px;
}

.bv-social-links {
    display: flex;
    gap: 15px;
}

.bv-social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.bv-social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.bv-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.bv-footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.bv-footer-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.bv-footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.bv-footer-links a:hover {
    color: var(--primary-color);
}

.bv-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -2px 20px rgba(0,0,0,0.15);
    padding: 25px 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: var(--transition);
}

.bv-cookie-banner.show {
    transform: translateY(0);
}

.bv-cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bv-cookie-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.bv-cookie-content p {
    color: var(--text-light);
    margin-bottom: 8px;
    font-size: 14px;
}

.bv-cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.bv-cookie-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.bv-cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.bv-cookie-accept {
    background: var(--primary-color);
    color: var(--white);
}

.bv-cookie-accept:hover {
    background: var(--primary-dark);
}

.bv-cookie-decline {
    background: var(--border-color);
    color: var(--text-dark);
}

.bv-cookie-decline:hover {
    background: #d0d0d0;
}

.bv-page-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--bg-light) 100%);
    padding: 80px 0;
    text-align: center;
}

.bv-page-header h1 {
    font-size: 52px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.bv-page-header p {
    font-size: 18px;
    color: var(--text-light);
}

.bv-about-story {
    padding: 80px 0;
}

.bv-story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bv-story-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
}

.bv-story-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.9;
}

.bv-story-image img {
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.bv-team {
    padding: 80px 0;
    background: var(--bg-light);
}

.bv-team-intro {
    text-align: center;
    color: var(--text-light);
    max-width: 700px;
    margin: -30px auto 50px;
    font-size: 17px;
}

.bv-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.bv-team-member {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.bv-team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.bv-team-member img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.bv-team-member h3 {
    font-size: 24px;
    padding: 20px 20px 10px;
    color: var(--text-dark);
}

.bv-team-position {
    color: var(--primary-color);
    font-weight: 500;
    padding: 0 20px;
    margin-bottom: 10px;
}

.bv-team-member p {
    padding: 0 20px 20px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}

.bv-values {
    padding: 80px 0;
}

.bv-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.bv-value-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: var(--transition);
}

.bv-value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.bv-value-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.bv-value-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.bv-value-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.bv-blog-section {
    padding: 80px 0;
}

.bv-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.bv-blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.bv-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.bv-blog-image {
    display: block;
    overflow: hidden;
}

.bv-blog-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}

.bv-blog-card:hover .bv-blog-image img {
    transform: scale(1.05);
}

.bv-blog-content {
    padding: 25px;
}

.bv-blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
}

.bv-blog-date {
    color: var(--text-light);
}

.bv-blog-category {
    color: var(--primary-color);
    font-weight: 500;
}

.bv-blog-content h2 {
    font-size: 22px;
    margin-bottom: 12px;
}

.bv-blog-content h2 a {
    color: var(--text-dark);
}

.bv-blog-content h2 a:hover {
    color: var(--primary-color);
}

.bv-blog-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.bv-read-more {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-block;
}

.bv-read-more:hover {
    text-decoration: underline;
}

.bv-contact-section {
    padding: 80px 0;
}

.bv-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.bv-contact-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.bv-contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.bv-contact-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.bv-contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.bv-contact-item p {
    color: var(--text-light);
    font-size: 15px;
}

.bv-contact-item a {
    color: var(--primary-color);
}

.bv-contact-form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

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

.bv-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.bv-form-group input,
.bv-form-group select,
.bv-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
}

.bv-form-group input:focus,
.bv-form-group select:focus,
.bv-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.bv-form-group textarea {
    resize: vertical;
}

.bv-map-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.bv-map-placeholder {
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.bv-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.bv-modal.show {
    display: flex;
}

.bv-modal-content {
    background: var(--white);
    border-radius: 15px;
    max-width: 500px;
    width: 100%;
    position: relative;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.bv-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: var(--text-light);
}

.bv-modal-close:hover {
    color: var(--text-dark);
}

.bv-modal-body {
    padding: 60px 40px;
    text-align: center;
}

.bv-modal-body svg {
    margin: 0 auto 20px;
}

.bv-modal-body h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.bv-modal-body p {
    color: var(--text-light);
    line-height: 1.7;
}

.bv-post {
    background: var(--white);
}

.bv-post-header {
    padding: 40px 0 30px;
    background: var(--bg-light);
}

.bv-back-link {
    display: inline-block;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.bv-back-link:hover {
    text-decoration: underline;
}

.bv-post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
}

.bv-post-date {
    color: var(--text-light);
}

.bv-post-category {
    color: var(--primary-color);
    font-weight: 500;
}

.bv-post-header h1 {
    font-size: 48px;
    color: var(--text-dark);
}

.bv-post-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.bv-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bv-post-content {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

.bv-lead {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

.bv-post-content h2 {
    font-size: 36px;
    margin: 50px 0 20px;
    color: var(--text-dark);
}

.bv-post-content h3 {
    font-size: 28px;
    margin: 35px 0 15px;
    color: var(--primary-color);
}

.bv-post-content p {
    margin-bottom: 20px;
    line-height: 1.9;
    color: var(--text-light);
}

.bv-post-content ul,
.bv-post-content ol {
    margin: 20px 0 20px 30px;
    color: var(--text-light);
}

.bv-post-content li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.bv-post-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

.bv-post-footer {
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 20px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

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

    .bv-nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: var(--white);
        padding: 30px 20px;
        box-shadow: var(--shadow);
        transition: var(--transition);
        gap: 20px;
    }

    .bv-nav-menu.active {
        left: 0;
    }

    .bv-hero-title {
        font-size: 42px;
    }

    .bv-hero-subtitle {
        font-size: 22px;
    }

    .bv-section-title {
        font-size: 32px;
    }

    .bv-about-content,
    .bv-story-content,
    .bv-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bv-services-grid,
    .bv-team-grid,
    .bv-blog-grid {
        grid-template-columns: 1fr;
    }

    .bv-footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .bv-post-header h1 {
        font-size: 36px;
    }

    .bv-post-content h2 {
        font-size: 28px;
    }

    .bv-post-content h3 {
        font-size: 22px;
    }

    .bv-cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .bv-hero-title {
        font-size: 32px;
    }

    .bv-hero-subtitle {
        font-size: 18px;
    }

    .bv-section-title {
        font-size: 28px;
    }

    .bv-btn-primary,
    .bv-btn-secondary,
    .bv-btn-light {
        padding: 12px 30px;
        font-size: 14px;
    }

    .bv-calc-wrapper {
        padding: 25px;
    }

    .bv-post-header h1 {
        font-size: 28px;
    }
}