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

:root {
--espresso-brown: #3d2817;
--copper: #b87333;
--champagne: #f7e7ce;
--dark-copper: #8b5a2b;
--light-espresso: #5c442f;
--cream: #faf6f0;
--gold-accent: #d4af37;
}

body {
font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
line-height: 1.7;
color: var(--espresso-brown);
background-color: var(--cream);
}

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

.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 {
width: 60px;
height: 60px;
border-radius: 8px;
border: 2px solid var(--copper);
object-fit: cover;
}

.brand-name {
font-family: 'Didot', 'Bodoni MT', serif;
font-size: 2rem;
color: var(--champagne);
font-weight: 700;
letter-spacing: 1px;
}

.primary-navigation ul {
list-style: none;
display: flex;
gap: 2.5rem;
}

.nav-link {
color: var(--champagne);
text-decoration: none;
font-size: 1.1rem;
font-weight: 500;
padding: 0.5rem 1rem;
border-radius: 6px;
transition: all 0.3s ease;
position: relative;
}

.nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
width: 0;
height: 2px;
background: var(--copper);
transition: all 0.3s ease;
transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
width: 80%;
}

.nav-link:hover,
.nav-link.active {
color: var(--copper);
}

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

.hero-image {
width: 100%;
height: 100%;
object-fit: cover;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(to bottom, rgba(61,40,23,0.7), rgba(61,40,23,0.4));
display: flex;
align-items: center;
justify-content: center;
}

.hero-content {
text-align: center;
color: var(--champagne);
max-width: 900px;
padding: 2rem;
}

.hero-title {
font-family: 'Didot', 'Bodoni MT', serif;
font-size: 4rem;
margin-bottom: 1.5rem;
text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
letter-spacing: 2px;
}

.hero-subtitle {
font-size: 1.5rem;
margin-bottom: 2rem;
font-style: italic;
}

.cta-button {
display: inline-block;
background: var(--copper);
color: var(--cream);
padding: 1rem 2.5rem;
border-radius: 50px;
text-decoration: none;
font-size: 1.2rem;
font-weight: 600;
transition: all 0.3s ease;
border: 2px solid var(--copper);
}

.cta-button:hover {
background: transparent;
color: var(--champagne);
border-color: var(--champagne);
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(184,115,51,0.4);
}

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

.framed-content {
background: white;
padding: 3rem;
border: 3px solid var(--copper);
border-radius: 12px;
box-shadow: 0 8px 24px rgba(0,0,0,0.1);
position: relative;
}

.framed-content::before {
content: '';
position: absolute;
top: -6px;
left: -6px;
right: -6px;
bottom: -6px;
border: 1px solid var(--champagne);
border-radius: 14px;
pointer-events: none;
}

.section-heading {
font-family: 'Didot', 'Bodoni MT', serif;
font-size: 2.5rem;
color: var(--espresso-brown);
margin-bottom: 2rem;
position: relative;
padding-bottom: 1rem;
}

.section-heading::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 80px;
height: 3px;
background: var(--copper);
}

.section-heading.centered {
text-align: center;
}

.section-heading.centered::after {
left: 50%;
transform: translateX(-50%);
}

.intro-text {
font-size: 1.15rem;
margin-bottom: 1.5rem;
line-height: 1.9;
}

.welcome-section,
.features-showcase,
.testimonials-section,
.location-info {
margin: 4rem 0;
}

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

.feature-card {
background: linear-gradient(145deg, #ffffff, #f5f5f5);
padding: 2.5rem;
border-radius: 12px;
text-align: center;
transition: all 0.3s ease;
border: 2px solid transparent;
}

.feature-card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 32px rgba(184,115,51,0.2);
border-color: var(--copper);
}

.feature-icon {
font-size: 3.5rem;
color: var(--copper);
margin-bottom: 1.5rem;
}

.feature-title {
font-size: 1.5rem;
color: var(--espresso-brown);
margin-bottom: 1rem;
font-weight: 600;
}

.feature-description {
color: var(--light-espresso);
line-height: 1.8;
}

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

.testimonial-card {
background: white;
padding: 2.5rem;
border-left: 4px solid var(--copper);
border-radius: 8px;
box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

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

.testimonial-author {
font-weight: 600;
color: var(--espresso-brown);
margin-bottom: 0.5rem;
}

.rating-stars {
color: var(--gold-accent);
font-size: 1.2rem;
}

.location-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
}

.location-details {
}

.info-block {
display: flex;
align-items: flex-start;
gap: 1rem;
margin-bottom: 1.5rem;
}

.info-block i {
color: var(--copper);
font-size: 1.5rem;
margin-top: 0.3rem;
}

.info-block p {
font-size: 1.1rem;
line-height: 1.6;
}

.registration-info {
margin-top: 2rem;
font-size: 0.95rem;
color: var(--light-espresso);
font-style: italic;
}

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

.location-map,
.full-map {
width: 100%;
height: 400px;
object-fit: cover;
}

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

.footer-content {
max-width: 1400px;
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 {
font-size: 1.3rem;
margin-bottom: 1rem;
color: var(--champagne);
font-weight: 600;
}

.footer-text {
line-height: 1.8;
margin-bottom: 0.8rem;
color: rgba(247,231,206,0.9);
}

.footer-links {
list-style: none;
}

.footer-links li {
margin-bottom: 0.8rem;
}

.footer-links a {
color: rgba(247,231,206,0.9);
text-decoration: none;
transition: all 0.3s ease;
}

.footer-links a:hover {
color: var(--copper);
padding-left: 5px;
}

.footer-bottom {
border-top: 1px solid rgba(247,231,206,0.3);
padding-top: 1.5rem;
text-align: center;
max-width: 1400px;
margin: 0 auto;
padding-left: 2rem;
padding-right: 2rem;
}

.page-number {
margin-top: 0.5rem;
font-size: 0.9rem;
color: rgba(247,231,206,0.7);
}

.cookie-consent {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(to top, rgba(61,40,23,0.98), rgba(61,40,23,0.95));
padding: 2rem;
box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
z-index: 10000;
display: none;
border-top: 3px solid var(--copper);
}

.cookie-consent.show {
display: block;
}

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

.cookie-text h3 {
color: var(--champagne);
margin-bottom: 1rem;
font-size: 1.5rem;
}

.cookie-text p {
color: rgba(247,231,206,0.9);
margin-bottom: 1.5rem;
line-height: 1.7;
}

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

.cookie-btn {
padding: 0.8rem 2rem;
border: none;
border-radius: 6px;
cursor: pointer;
font-size: 1rem;
font-weight: 600;
transition: all 0.3s ease;
}

.cookie-btn.accept-all {
background: var(--copper);
color: white;
}

.cookie-btn.accept-all:hover {
background: var(--dark-copper);
transform: translateY(-2px);
}

.cookie-btn.customize {
background: var(--champagne);
color: var(--espresso-brown);
}

.cookie-btn.customize:hover {
background: #ffffff;
}

.cookie-btn.decline {
background: transparent;
color: var(--champagne);
border: 2px solid var(--champagne);
}

.cookie-btn.decline:hover {
background: rgba(247,231,206,0.1);
}

.cookie-link {
color: var(--copper);
text-decoration: none;
font-weight: 500;
}

.cookie-link:hover {
text-decoration: underline;
}

.page-hero {
position: relative;
height: 400px;
overflow: hidden;
margin-bottom: 3rem;
}

.page-title {
font-family: 'Didot', 'Bodoni MT', serif;
font-size: 3.5rem;
color: var(--champagne);
margin-bottom: 0.5rem;
text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.page-subtitle {
font-size: 1.3rem;
color: var(--champagne);
font-style: italic;
}

.story-section {
margin: 4rem 0;
}

.story-paragraph {
font-size: 1.15rem;
margin-bottom: 1.8rem;
line-height: 1.9;
text-align: justify;
}

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

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

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

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

.value-description {
line-height: 1.8;
color: var(--light-espresso);
}

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

.team-intro {
text-align: center;
font-size: 1.2rem;
margin-bottom: 3rem;
color: var(--light-espresso);
max-width: 800px;
margin-left: auto;
margin-right: auto;
}

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

.team-member {
background: white;
padding: 2rem;
border-radius: 12px;
text-align: center;
box-shadow: 0 6px 20px rgba(0,0,0,0.1);
transition: all 0.3s ease;
border: 2px solid transparent;
}

.team-member:hover {
transform: translateY(-8px);
border-color: var(--copper);
box-shadow: 0 12px 32px rgba(184,115,51,0.2);
}

.team-member img {
border-radius: 50%;
margin-bottom: 1.5rem;
border: 4px solid var(--champagne);
transition: all 0.3s ease;
}

.team-member:hover img {
border-color: var(--copper);
}

.team-member h3 {
font-size: 1.4rem;
color: var(--espresso-brown);
margin-bottom: 0.5rem;
}

.member-position {
color: var(--copper);
font-weight: 600;
margin-bottom: 1rem;
font-size: 1.1rem;
}

.member-bio {
line-height: 1.7;
color: var(--light-espresso);
}

.facilities-overview {
margin: 5rem 0;
}

.facilities-showcase {
display: flex;
flex-direction: column;
gap: 3rem;
margin-top: 3rem;
}

.facility-item {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2.5rem;
align-items: center;
background: white;
padding: 2rem;
border-radius: 12px;
box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.facility-item:nth-child(even) {
direction: rtl;
}

.facility-item:nth-child(even) .facility-details {
direction: ltr;
}

.facility-image {
width: 100%;
height: 350px;
object-fit: cover;
border-radius: 8px;
}

.facility-name {
font-size: 1.8rem;
color: var(--espresso-brown);
margin-bottom: 1rem;
}

.facility-description {
font-size: 1.1rem;
line-height: 1.8;
color: var(--light-espresso);
}

.blog-listing {
margin: 3rem 0;
}

.blog-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 3rem;
}

.spell-check-btn {
background: var(--copper);
color: white;
border: none;
padding: 0.8rem 1.5rem;
border-radius: 6px;
cursor: pointer;
font-size: 1rem;
display: flex;
align-items: center;
gap: 0.5rem;
transition: all 0.3s ease;
}

.spell-check-btn:hover {
background: var(--dark-copper);
transform: translateY(-2px);
}

.posts-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
gap: 2.5rem;
}

.post-card {
background: white;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 6px 20px rgba(0,0,0,0.1);
transition: all 0.3s ease;
border: 2px solid transparent;
}

.post-card:hover {
transform: translateY(-8px);
border-color: var(--copper);
box-shadow: 0 12px 32px rgba(184,115,51,0.2);
}

.post-image-container {
width: 100%;
height: 250px;
overflow: hidden;
}

.post-thumbnail {
width: 100%;
height: 100%;
object-fit: cover;
transition: all 0.3s ease;
}

.post-card:hover .post-thumbnail {
transform: scale(1.05);
}

.post-content {
padding: 2rem;
}

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

.post-date,
.post-category,
.post-author {
display: flex;
align-items: center;
gap: 0.4rem;
}

.post-category {
background: var(--champagne);
padding: 0.3rem 0.8rem;
border-radius: 4px;
color: var(--espresso-brown);
font-weight: 600;
}

.post-title {
font-size: 1.5rem;
color: var(--espresso-brown);
margin-bottom: 1rem;
line-height: 1.4;
}

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

.read-more {
color: var(--copper);
text-decoration: none;
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 0.5rem;
transition: all 0.3s ease;
}

.read-more:hover {
gap: 1rem;
color: var(--dark-copper);
}

.contact-section {
margin: 3rem 0;
}

.contact-layout {
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 3rem;
}

.contact-info-panel {
background: linear-gradient(145deg, var(--champagne), #ffffff);
padding: 2.5rem;
border-radius: 12px;
}

.contact-intro {
font-size: 1.1rem;
line-height: 1.8;
margin-bottom: 2rem;
color: var(--light-espresso);
}

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

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

.contact-icon {
background: var(--copper);
color: white;
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.3rem;
flex-shrink: 0;
}

.contact-text h3 {
font-size: 1.2rem;
color: var(--espresso-brown);
margin-bottom: 0.5rem;
}

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

.availability {
font-size: 0.9rem;
font-style: italic;
}

.contact-form-panel {
}

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

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

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

.form-input,
.form-textarea {
padding: 1rem;
border: 2px solid var(--champagne);
border-radius: 6px;
font-size: 1rem;
font-family: inherit;
transition: all 0.3s ease;
background: white;
}

.form-input:focus,
.form-textarea:focus {
outline: none;
border-color: var(--copper);
box-shadow: 0 0 0 3px rgba(184,115,51,0.1);
}

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

.submit-button {
background: var(--copper);
color: white;
border: none;
padding: 1rem 2rem;
border-radius: 6px;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
}

.submit-button:hover {
background: var(--dark-copper);
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(184,115,51,0.3);
}

.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;
text-align: center;
max-width: 500px;
position: relative;
box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

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

.modal-close:hover {
color: var(--copper);
}

.modal-icon {
font-size: 4rem;
color: var(--copper);
margin-bottom: 1.5rem;
}

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

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

.modal-button {
background: var(--copper);
color: white;
border: none;
padding: 0.8rem 2rem;
border-radius: 6px;
cursor: pointer;
font-size: 1rem;
font-weight: 600;
transition: all 0.3s ease;
}

.modal-button:hover {
background: var(--dark-copper);
}

.map-section {
margin: 4rem 0;
}

.blog-post {
margin-bottom: 4rem;
}

.post-hero {
position: relative;
height: 500px;
overflow: hidden;
margin-bottom: 3rem;
border-radius: 12px;
}

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

.post-hero-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(to top, rgba(61,40,23,0.95), transparent);
padding: 3rem;
}

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

.post-metadata {
display: flex;
gap: 2rem;
margin-bottom: 1.5rem;
font-size: 1rem;
color: var(--champagne);
flex-wrap: wrap;
}

.post-heading {
font-family: 'Didot', 'Bodoni MT', serif;
font-size: 3rem;
color: var(--champagne);
line-height: 1.3;
}

.post-content-wrapper {
max-width: 1400px;
margin: 0 auto;
padding: 0 2rem;
display: grid;
grid-template-columns: 3fr 1fr;
gap: 3rem;
}

.post-body {
background: white;
padding: 3rem;
border-radius: 12px;
box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.lead-paragraph {
font-size: 1.3rem;
line-height: 1.9;
color: var(--light-espresso);
margin-bottom: 2rem;
font-style: italic;
border-left: 4px solid var(--copper);
padding-left: 1.5rem;
}

.post-body h2 {
font-size: 2rem;
color: var(--espresso-brown);
margin: 2.5rem 0 1.5rem;
padding-bottom: 0.5rem;
border-bottom: 2px solid var(--champagne);
}

.post-body p {
font-size: 1.1rem;
line-height: 1.9;
margin-bottom: 1.5rem;
text-align: justify;
}

.post-sidebar {
}

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

.sidebar-heading {
font-size: 1.3rem;
color: var(--espresso-brown);
margin-bottom: 1.5rem;
padding-bottom: 0.8rem;
border-bottom: 2px solid var(--champagne);
}

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

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

.related-posts a,
.categories-list a {
color: var(--light-espresso);
text-decoration: none;
transition: all 0.3s ease;
display: block;
padding: 0.5rem;
border-radius: 4px;
}

.related-posts a:hover,
.categories-list a:hover {
color: var(--copper);
background: var(--champagne);
padding-left: 1rem;
}

@media (max-width: 1024px) {
.post-content-wrapper {
grid-template-columns: 1fr;
}
.contact-layout {
grid-template-columns: 1fr;
}
.location-grid {
grid-template-columns: 1fr;
}
.facility-item {
grid-template-columns: 1fr;
}
}

@media (max-width: 768px) {
.header-container {
flex-direction: column;
gap: 1.5rem;
}
.primary-navigation ul {
flex-wrap: wrap;
justify-content: center;
gap: 1rem;
}
.hero-title {
font-size: 2.5rem;
}
.page-title {
font-size: 2rem;
}
.post-heading {
font-size: 2rem;
}
.posts-grid {
grid-template-columns: 1fr;
}
.features-grid,
.values-grid,
.team-grid {
grid-template-columns: 1fr;
}
}

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