:root {
--primary-brown: #3D2817;
--espresso: #2C1810;
--burgundy: #6B2737;
--warm-beige: #D4C5B0;
--aged-brass: #B8860B;
--light-cream: #F5EFE7;
--text-dark: #1A1A1A;
--text-light: #4A4A4A;
}

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

body {
font-family: 'Georgia', 'Times New Roman', serif;
line-height: 1.7;
color: var(--text-dark);
background-color: var(--light-cream);
}

.main-header {
background: linear-gradient(135deg, var(--espresso) 0%, var(--primary-brown) 100%);
padding: 1.2rem 0;
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
position: sticky;
top: 0;
z-index: 1000;
}

.header-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 2rem;
display: flex;
justify-content: space-between;
align-items: center;
}

.logo-section {
display: flex;
align-items: center;
gap: 1rem;
}

.site-logo {
border-radius: 8px;
border: 2px solid var(--aged-brass);
}

.brand-name {
font-size: 2rem;
font-weight: 700;
color: var(--warm-beige);
letter-spacing: 2px;
text-transform: uppercase;
}

.primary-nav {
display: flex;
gap: 2.5rem;
}

.nav-item {
color: var(--warm-beige);
text-decoration: none;
font-size: 1.05rem;
font-weight: 500;
transition: all 0.3s ease;
padding: 0.5rem 0;
border-bottom: 2px solid transparent;
}

.nav-item:hover,
.nav-item.active {
color: var(--aged-brass);
border-bottom-color: var(--aged-brass);
}

.hero-banner {
position: relative;
height: 600px;
overflow: hidden;
}

.hero-image {
width: 100%;
height: 100%;
object-fit: cover;
filter: brightness(0.6);
}

.hero-overlay {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
color: white;
z-index: 10;
width: 90%;
max-width: 900px;
}

.hero-title {
font-size: 3.5rem;
margin-bottom: 1.5rem;
text-shadow: 3px 3px 8px rgba(0,0,0,0.7);
font-weight: 700;
letter-spacing: 1px;
}

.hero-subtitle {
font-size: 1.5rem;
margin-bottom: 2.5rem;
text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

.cta-button {
display: inline-block;
padding: 1rem 3rem;
background: var(--burgundy);
color: white;
text-decoration: none;
font-size: 1.15rem;
font-weight: 600;
border-radius: 50px;
transition: all 0.3s ease;
box-shadow: 0 6px 20px rgba(107,39,55,0.4);
}

.cta-button:hover {
background: var(--aged-brass);
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(184,134,11,0.5);
}

.content-wrapper {
max-width: 1300px;
margin: 0 auto;
padding: 0 2rem;
}

.intro-section,
.services-preview,
.process-section,
.testimonials-section,
.blog-preview {
padding: 5rem 0;
}

.section-heading {
font-size: 2.5rem;
color: var(--espresso);
text-align: center;
margin-bottom: 3rem;
position: relative;
padding-bottom: 1rem;
}

.section-heading::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 3px;
background: var(--aged-brass);
}

.intro-text {
font-size: 1.15rem;
color: var(--text-light);
margin-bottom: 1.5rem;
text-align: justify;
line-height: 1.8;
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 2.5rem;
margin-top: 3rem;
}

.service-card {
background: white;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 8px 24px rgba(0,0,0,0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

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

.service-title {
font-size: 1.5rem;
color: var(--espresso);
margin: 1.5rem 1.5rem 1rem;
}

.service-description {
padding: 0 1.5rem 1.5rem;
color: var(--text-light);
line-height: 1.7;
}

.process-steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-top: 3rem;
}

.step-item {
text-align: center;
padding: 2rem;
background: white;
border-radius: 10px;
box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.step-number {
font-size: 3rem;
color: var(--aged-brass);
font-weight: 700;
margin-bottom: 1rem;
}

.step-title {
font-size: 1.3rem;
color: var(--espresso);
margin-bottom: 1rem;
}

.step-description {
color: var(--text-light);
line-height: 1.6;
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 3rem;
}

.testimonial-card {
background: white;
padding: 2rem;
border-radius: 10px;
border-left: 4px solid var(--burgundy);
box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.testimonial-text {
font-style: italic;
color: var(--text-light);
margin-bottom: 1.5rem;
line-height: 1.7;
}

.testimonial-author {
color: var(--espresso);
font-weight: 600;
}

.blog-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 2.5rem;
margin-top: 3rem;
}

.blog-card {
background: white;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.blog-image {
width: 100%;
height: 200px;
object-fit: cover;
}

.blog-title {
font-size: 1.3rem;
color: var(--espresso);
margin: 1.5rem 1.5rem 1rem;
}

.blog-excerpt {
padding: 0 1.5rem;
color: var(--text-light);
line-height: 1.6;
margin-bottom: 1.5rem;
}

.read-more {
display: inline-block;
margin: 0 1.5rem 1.5rem;
color: var(--burgundy);
text-decoration: none;
font-weight: 600;
transition: color 0.3s ease;
}

.read-more:hover {
color: var(--aged-brass);
}

.btn-secondary {
display: inline-block;
margin-top: 2rem;
padding: 0.8rem 2.5rem;
background: var(--espresso);
color: white;
text-decoration: none;
border-radius: 30px;
transition: all 0.3s ease;
}

.btn-secondary:hover {
background: var(--aged-brass);
transform: translateY(-2px);
}

.site-footer {
background: linear-gradient(135deg, var(--espresso) 0%, var(--primary-brown) 100%);
color: var(--warm-beige);
padding: 3rem 0 1rem;
margin-top: 5rem;
}

.footer-content {
max-width: 1300px;
margin: 0 auto;
padding: 0 2rem;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2.5rem;
margin-bottom: 2rem;
}

.footer-heading {
color: var(--aged-brass);
margin-bottom: 1.5rem;
font-size: 1.2rem;
}

.footer-text {
margin-bottom: 0.8rem;
line-height: 1.6;
}

.footer-logo {
margin-top: 1rem;
border-radius: 6px;
}

.footer-link {
display: block;
color: var(--warm-beige);
text-decoration: none;
margin-bottom: 0.8rem;
transition: color 0.3s ease;
}

.footer-link:hover {
color: var(--aged-brass);
}

.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid rgba(212,197,176,0.3);
color: var(--warm-beige);
}

.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--espresso);
color: var(--warm-beige);
padding: 2rem;
box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
z-index: 10000;
display: none;
}

.cookie-banner.active {
display: block;
}

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

.cookie-title {
color: var(--aged-brass);
margin-bottom: 1rem;
font-size: 1.3rem;
}

.cookie-text {
margin-bottom: 1.5rem;
line-height: 1.6;
}

.cookie-buttons {
display: flex;
gap: 1rem;
flex-wrap: wrap;
margin-bottom: 1rem;
}

.cookie-btn {
padding: 0.7rem 1.8rem;
border: none;
border-radius: 30px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

.cookie-btn.primary {
background: var(--burgundy);
color: white;
}

.cookie-btn.secondary {
background: transparent;
color: var(--warm-beige);
border: 2px solid var(--warm-beige);
}

.cookie-btn.tertiary {
background: var(--aged-brass);
color: white;
}

.cookie-btn:hover {
transform: translateY(-2px);
opacity: 0.9;
}

.cookie-link {
color: var(--aged-brass);
text-decoration: underline;
}

.page-hero {
background: linear-gradient(135deg, var(--espresso) 0%, var(--primary-brown) 100%);
padding: 5rem 2rem;
text-align: center;
}

.page-title {
font-size: 3rem;
color: var(--warm-beige);
margin-bottom: 1rem;
}

.page-subtitle {
font-size: 1.3rem;
color: var(--warm-beige);
opacity: 0.9;
}

.about-story {
padding: 5rem 0;
}

.story-content {
max-width: 900px;
margin: 0 auto;
}

.story-paragraph {
font-size: 1.1rem;
color: var(--text-light);
margin-bottom: 1.5rem;
line-height: 1.8;
text-align: justify;
}

.story-image {
margin: 2rem 0;
text-align: center;
}

.story-image img {
border-radius: 12px;
box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.values-section {
padding: 5rem 0;
background: white;
}

.values-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2.5rem;
margin-top: 3rem;
}

.value-item {
text-align: center;
padding: 2rem;
}

.value-icon {
font-size: 3rem;
color: var(--aged-brass);
margin-bottom: 1.5rem;
}

.value-title {
font-size: 1.4rem;
color: var(--espresso);
margin-bottom: 1rem;
}

.value-description {
color: var(--text-light);
line-height: 1.6;
}

.team-section {
padding: 5rem 0;
}

.team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 3rem;
margin-top: 3rem;
}

.team-member {
background: white;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 8px 24px rgba(0,0,0,0.1);
text-align: center;
}

.team-photo {
width: 100%;
height: 400px;
object-fit: cover;
}

.member-name {
font-size: 1.4rem;
color: var(--espresso);
margin: 1.5rem 1rem 0.5rem;
}

.member-role {
color: var(--burgundy);
font-weight: 600;
margin-bottom: 1rem;
}

.member-bio {
padding: 0 1.5rem 2rem;
color: var(--text-light);
line-height: 1.6;
}

.workshop-section {
padding: 5rem 0;
background: white;
}

.workshop-text {
font-size: 1.1rem;
color: var(--text-light);
margin-bottom: 1.5rem;
line-height: 1.8;
text-align: justify;
}

.workshop-images {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 2rem;
}

.workshop-images img {
width: 100%;
border-radius: 10px;
box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.commitment-section {
padding: 5rem 0;
}

.commitment-text {
font-size: 1.1rem;
color: var(--text-light);
margin-bottom: 1.5rem;
line-height: 1.8;
text-align: justify;
max-width: 900px;
margin-left: auto;
margin-right: auto;
}

.services-detailed {
padding: 4rem 0;
}

.service-detail {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
margin-bottom: 4rem;
align-items: center;
}

.service-detail.reverse {
direction: rtl;
}

.service-detail.reverse > * {
direction: ltr;
}

.service-detail-title {
font-size: 2rem;
color: var(--espresso);
margin-bottom: 1.5rem;
}

.service-detail-description {
font-size: 1.05rem;
color: var(--text-light);
margin-bottom: 1.2rem;
line-height: 1.7;
}

.service-features {
list-style: none;
margin: 1.5rem 0;
}

.service-features li {
padding: 0.5rem 0;
padding-left: 1.8rem;
position: relative;
color: var(--text-light);
}

.service-features li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--aged-brass);
font-weight: 700;
}

.service-price {
font-size: 1.3rem;
color: var(--burgundy);
font-weight: 700;
margin-top: 1.5rem;
}

.service-detail-image img {
width: 100%;
border-radius: 12px;
box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.pricing-comparison {
padding: 5rem 0;
background: white;
}

.table-responsive {
overflow-x: auto;
margin-top: 2rem;
}

.comparison-table {
width: 100%;
border-collapse: collapse;
background: white;
box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.comparison-table thead {
background: var(--espresso);
color: var(--warm-beige);
}

.comparison-table th,
.comparison-table td {
padding: 1.2rem;
text-align: left;
border-bottom: 1px solid #e0e0e0;
}

.comparison-table tbody tr:hover {
background: var(--light-cream);
}

.pricing-note {
margin-top: 2rem;
color: var(--text-light);
font-style: italic;
text-align: center;
}

.faq-section {
padding: 5rem 0;
}

.faq-list {
max-width: 900px;
margin: 0 auto;
}

.faq-item {
background: white;
padding: 2rem;
margin-bottom: 1.5rem;
border-radius: 10px;
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.faq-question {
font-size: 1.2rem;
color: var(--espresso);
margin-bottom: 1rem;
}

.faq-answer {
color: var(--text-light);
line-height: 1.7;
}

.cta-section {
padding: 5rem 0;
background: linear-gradient(135deg, var(--burgundy) 0%, var(--espresso) 100%);
text-align: center;
color: white;
}

.cta-heading {
font-size: 2.5rem;
margin-bottom: 1rem;
}

.cta-text {
font-size: 1.2rem;
margin-bottom: 2rem;
}

.blog-listing {
padding: 4rem 0;
}

.blog-posts {
display: flex;
flex-direction: column;
gap: 3rem;
}

.blog-post-card {
display: grid;
grid-template-columns: 400px 1fr;
gap: 2rem;
background: white;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 6px 18px rgba(0,0,0,0.1);
transition: transform 0.3s ease;
}

.blog-post-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 28px rgba(0,0,0,0.15);
}

.post-thumbnail {
width: 100%;
height: 100%;
object-fit: cover;
}

.post-content {
padding: 2rem;
display: flex;
flex-direction: column;
justify-content: center;
}

.post-title {
font-size: 1.6rem;
color: var(--espresso);
margin-bottom: 1rem;
}

.post-meta {
display: flex;
gap: 1.5rem;
margin-bottom: 1rem;
font-size: 0.9rem;
color: var(--text-light);
}

.post-excerpt {
color: var(--text-light);
line-height: 1.7;
margin-bottom: 1.5rem;
}

.read-more-btn {
display: inline-block;
padding: 0.7rem 2rem;
background: var(--burgundy);
color: white;
text-decoration: none;
border-radius: 30px;
transition: all 0.3s ease;
align-self: flex-start;
}

.read-more-btn:hover {
background: var(--aged-brass);
transform: translateX(5px);
}

.newsletter-section {
padding: 4rem 0;
background: white;
text-align: center;
}

.newsletter-text {
font-size: 1.1rem;
color: var(--text-light);
margin-bottom: 2rem;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}

.newsletter-form {
display: flex;
justify-content: center;
gap: 1rem;
max-width: 600px;
margin: 0 auto;
}

.newsletter-input {
flex: 1;
padding: 1rem;
border: 2px solid var(--warm-beige);
border-radius: 30px;
font-size: 1rem;
}

.newsletter-btn {
padding: 1rem 2.5rem;
background: var(--burgundy);
color: white;
border: none;
border-radius: 30px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

.newsletter-btn:hover {
background: var(--aged-brass);
}

.contact-section {
padding: 5rem 0;
}

.contact-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
}

.contact-info {
display: flex;
flex-direction: column;
gap: 2rem;
}

.contact-heading {
font-size: 2rem;
color: var(--espresso);
margin-bottom: 2rem;
}

.contact-item {
display: flex;
gap: 1.5rem;
}

.contact-icon {
font-size: 2rem;
color: var(--aged-brass);
}

.contact-label {
font-size: 1.1rem;
color: var(--espresso);
font-weight: 600;
margin-bottom: 0.5rem;
}

.contact-value {
color: var(--text-light);
line-height: 1.6;
}

.contact-note {
font-size: 0.9rem;
color: var(--text-light);
font-style: italic;
}

.contact-form-wrapper {
background: white;
padding: 2.5rem;
border-radius: 12px;
box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.contact-form {
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.form-group {
display: flex;
flex-direction: column;
}

.form-label {
margin-bottom: 0.5rem;
color: var(--espresso);
font-weight: 600;
}

.form-input,
.form-select,
.form-textarea {
padding: 1rem;
border: 2px solid var(--warm-beige);
border-radius: 8px;
font-size: 1rem;
font-family: inherit;
transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
outline: none;
border-color: var(--aged-brass);
}

.checkbox-label {
display: flex;
align-items: center;
gap: 0.5rem;
color: var(--text-light);
}

.submit-btn {
padding: 1rem 2rem;
background: var(--burgundy);
color: white;
border: none;
border-radius: 30px;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

.submit-btn:hover {
background: var(--aged-brass);
transform: translateY(-2px);
}

.letter-section {
padding: 5rem 0;
background: white;
}

.letter-container {
max-width: 900px;
margin: 0 auto;
padding: 3rem;
background: var(--light-cream);
border-left: 4px solid var(--aged-brass);
border-radius: 8px;
}

.letter-title {
font-size: 2rem;
color: var(--espresso);
margin-bottom: 2rem;
}

.letter-paragraph {
font-size: 1.05rem;
color: var(--text-light);
margin-bottom: 1.5rem;
line-height: 1.8;
text-align: justify;
}

.letter-signature {
margin-top: 2rem;
font-size: 1.1rem;
color: var(--espresso);
}

.map-section {
padding: 5rem 0;
}

.map-container {
margin: 2rem 0;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.directions {
margin-top: 2rem;
}

.directions-title {
font-size: 1.5rem;
color: var(--espresso);
margin-bottom: 1rem;
}

.directions-text {
color: var(--text-light);
margin-bottom: 1rem;
line-height: 1.7;
}

.modal {
display: none;
position: fixed;
z-index: 10001;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.6);
}

.modal.show {
display: flex;
align-items: center;
justify-content: center;
}

.modal-content {
background: white;
padding: 3rem;
border-radius: 12px;
max-width: 500px;
text-align: center;
position: relative;
box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.close-modal {
position: absolute;
top: 1rem;
right: 1.5rem;
font-size: 2rem;
cursor: pointer;
color: var(--text-light);
}

.modal-title {
font-size: 2rem;
color: var(--espresso);
margin-bottom: 1rem;
}

.modal-text {
font-size: 1.1rem;
color: var(--text-light);
margin-bottom: 2rem;
}

.modal-btn {
padding: 1rem 2.5rem;
background: var(--burgundy);
color: white;
border: none;
border-radius: 30px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

.modal-btn:hover {
background: var(--aged-brass);
}

.blog-post {
background: white;
}

.post-header {
background: var(--light-cream);
padding: 3rem 0;
}

.post-main-title {
font-size: 2.8rem;
color: var(--espresso);
margin-bottom: 1.5rem;
line-height: 1.3;
}

.post-meta-info {
display: flex;
gap: 2rem;
color: var(--text-light);
font-size: 1rem;
}

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

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

.post-content-wrapper {
padding: 4rem 0;
}

.post-content-wrapper .content-wrapper {
display: grid;
grid-template-columns: 1fr 300px;
gap: 3rem;
}

.post-body {
max-width: 800px;
}

.lead-paragraph {
font-size: 1.25rem;
color: var(--text-dark);
font-weight: 500;
margin-bottom: 2rem;
line-height: 1.8;
}

.post-subheading {
font-size: 1.8rem;
color: var(--espresso);
margin: 2.5rem 0 1.5rem;
}

.post-paragraph {
font-size: 1.1rem;
color: var(--text-light);
margin-bottom: 1.5rem;
line-height: 1.8;
text-align: justify;
}

.post-sidebar {
position: sticky;
top: 120px;
align-self: flex-start;
}

.sidebar-section {
background: var(--light-cream);
padding: 2rem;
border-radius: 10px;
margin-bottom: 2rem;
}

.sidebar-title {
font-size: 1.3rem;
color: var(--espresso);
margin-bottom: 1.5rem;
}

.related-posts {
list-style: none;
}

.related-posts li {
margin-bottom: 1rem;
}

.related-posts a {
color: var(--burgundy);
text-decoration: none;
transition: color 0.3s ease;
}

.related-posts a:hover {
color: var(--aged-brass);
}

.sidebar-text {
color: var(--text-light);
margin-bottom: 1.5rem;
line-height: 1.6;
}

.sidebar-cta {
display: inline-block;
padding: 0.8rem 2rem;
background: var(--burgundy);
color: white;
text-decoration: none;
border-radius: 30px;
transition: all 0.3s ease;
}

.sidebar-cta:hover {
background: var(--aged-brass);
}

@media (max-width: 1024px) {
.header-container {
flex-direction: column;
gap: 1.5rem;
}

.primary-nav {
gap: 1.5rem;
}

.hero-title {
font-size: 2.5rem;
}

.service-detail {
grid-template-columns: 1fr;
}

.service-detail.reverse {
direction: ltr;
}

.contact-grid {
grid-template-columns: 1fr;
}

.blog-post-card {
grid-template-columns: 1fr;
}

.post-content-wrapper .content-wrapper {
grid-template-columns: 1fr;
}

.post-sidebar {
position: static;
}
}

@media (max-width: 768px) {
.hero-title {
font-size: 2rem;
}

.hero-subtitle {
font-size: 1.2rem;
}

.section-heading {
font-size: 2rem;
}

.page-title {
font-size: 2rem;
}

.primary-nav {
flex-wrap: wrap;
justify-content: center;
gap: 1rem;
}

.brand-name {
font-size: 1.5rem;
}

.newsletter-form {
flex-direction: column;
}
}

h1, h2, h3, h4, h5, h6 {word-break: break-word;}
