:root {
--cream: #F5F3EE;
--espresso: #3D2B1F;
--dusty-rose: #C9A5A0;
--light-cream: #FAF8F5;
--dark-brown: #2B1F17;
--accent-gold: #D4AF37;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Georgia', 'Times New Roman', serif;
background-color: var(--cream);
color: var(--espresso);
line-height: 1.7;
font-size: 17px;
}

.container-main {
max-width: 1280px;
margin: 0 auto;
padding: 0 30px;
}

.site-header {
background-color: var(--light-cream);
padding: 25px 0;
box-shadow: 0 3px 12px rgba(0,0,0,0.08);
position: sticky;
top: 0;
z-index: 100;
}

.header-container {
max-width: 1280px;
margin: 0 auto;
padding: 0 30px;
display: flex;
justify-content: space-between;
align-items: center;
}

.logo-wrapper img {
height: 60px;
width: auto;
}

.main-navigation ul {
list-style: none;
display: flex;
gap: 45px;
}

.main-navigation a {
text-decoration: none;
color: var(--espresso);
font-weight: 500;
font-size: 16px;
transition: color 0.3s ease;
letter-spacing: 0.5px;
}

.main-navigation a:hover {
color: var(--dusty-rose);
}

.hero-section {
padding: 90px 0;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
max-width: 1280px;
margin: 0 auto;
padding-left: 30px;
padding-right: 30px;
}

.hero-content h1 {
font-size: 56px;
margin-bottom: 25px;
color: var(--dark-brown);
line-height: 1.2;
font-weight: 400;
}

.hero-subtitle {
font-size: 22px;
margin-bottom: 35px;
color: var(--dusty-rose);
font-style: italic;
}

.cta-button {
display: inline-block;
background-color: var(--dusty-rose);
color: white;
padding: 16px 40px;
text-decoration: none;
border-radius: 3px;
font-size: 17px;
transition: background-color 0.3s ease;
letter-spacing: 0.8px;
}

.cta-button:hover {
background-color: var(--espresso);
}

.hero-image img {
width: 100%;
height: auto;
border-radius: 6px;
box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.inspiration-block {
padding: 80px 0;
background-color: var(--light-cream);
}

.inspiration-block h2 {
text-align: center;
font-size: 42px;
margin-bottom: 55px;
color: var(--dark-brown);
font-weight: 400;
}

.inspiration-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 40px;
}

.inspiration-card {
background: white;
padding: 30px;
border-radius: 6px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
transition: transform 0.3s ease;
}

.inspiration-card:hover {
transform: translateY(-8px);
}

.inspiration-card img {
width: 100%;
height: 300px;
object-fit: cover;
border-radius: 4px;
margin-bottom: 20px;
}

.inspiration-card h3 {
font-size: 24px;
margin-bottom: 15px;
color: var(--espresso);
}

.inspiration-card p {
color: #666;
line-height: 1.7;
}

.featured-posts {
padding: 80px 0;
}

.featured-posts h2 {
text-align: center;
font-size: 42px;
margin-bottom: 55px;
color: var(--dark-brown);
font-weight: 400;
}

.posts-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
gap: 45px;
}

.post-preview {
background: white;
border-radius: 6px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
transition: transform 0.3s ease;
}

.post-preview:hover {
transform: translateY(-8px);
}

.post-preview img {
width: 100%;
height: 300px;
object-fit: cover;
}

.post-preview h3 {
padding: 25px 25px 10px;
font-size: 24px;
}

.post-preview h3 a {
color: var(--espresso);
text-decoration: none;
transition: color 0.3s ease;
}

.post-preview h3 a:hover {
color: var(--dusty-rose);
}

.post-preview p {
padding: 0 25px 25px;
color: #666;
}

.custom-list-section {
padding: 80px 0;
background-color: var(--light-cream);
}

.custom-list-section h2 {
text-align: center;
font-size: 42px;
margin-bottom: 45px;
color: var(--dark-brown);
font-weight: 400;
}

.custom-styled-list {
max-width: 800px;
margin: 0 auto;
list-style: none;
}

.custom-styled-list li {
padding: 18px 0 18px 45px;
position: relative;
font-size: 18px;
line-height: 1.8;
}

.custom-styled-list li::before {
content: '◆';
position: absolute;
left: 0;
color: var(--dusty-rose);
font-size: 20px;
}

.page-hero-small {
background-color: var(--dusty-rose);
padding: 70px 0;
text-align: center;
color: white;
}

.page-hero-small h1 {
font-size: 48px;
margin-bottom: 15px;
font-weight: 400;
}

.page-hero-small p {
font-size: 20px;
font-style: italic;
}

.blog-listing {
padding: 80px 0;
}

.blog-card {
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 40px;
margin-bottom: 50px;
background: white;
border-radius: 6px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.blog-image img {
width: 100%;
height: 100%;
object-fit: cover;
}

.blog-content {
padding: 35px;
}

.blog-content h2 {
font-size: 28px;
margin-bottom: 15px;
font-weight: 400;
}

.blog-content h2 a {
color: var(--espresso);
text-decoration: none;
transition: color 0.3s ease;
}

.blog-content h2 a:hover {
color: var(--dusty-rose);
}

.blog-meta {
color: var(--dusty-rose);
font-size: 14px;
margin-bottom: 18px;
font-style: italic;
}

.read-more {
color: var(--dusty-rose);
text-decoration: none;
font-weight: 600;
transition: color 0.3s ease;
display: inline-block;
margin-top: 15px;
}

.read-more:hover {
color: var(--espresso);
}

.about-intro {
padding: 80px 0;
}

.about-content {
max-width: 900px;
margin: 0 auto;
text-align: center;
}

.about-content h2 {
font-size: 38px;
margin-bottom: 30px;
color: var(--dark-brown);
font-weight: 400;
}

.about-content p {
font-size: 18px;
line-height: 1.9;
margin-bottom: 25px;
color: #555;
}

.team-section {
padding: 80px 0;
background-color: var(--light-cream);
}

.team-section h2 {
text-align: center;
font-size: 42px;
margin-bottom: 55px;
color: var(--dark-brown);
font-weight: 400;
}

.team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 45px;
}

.team-member {
background: white;
padding: 35px;
border-radius: 6px;
text-align: center;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.team-member img {
width: 100%;
height: 400px;
object-fit: cover;
border-radius: 4px;
margin-bottom: 20px;
}

.team-member h3 {
font-size: 24px;
margin-bottom: 10px;
color: var(--espresso);
}

.team-member .position {
color: var(--dusty-rose);
font-style: italic;
margin-bottom: 15px;
font-weight: 600;
}

.team-member p {
color: #666;
line-height: 1.7;
}

.values-section {
padding: 80px 0;
}

.values-section h2 {
text-align: center;
font-size: 42px;
margin-bottom: 55px;
color: var(--dark-brown);
font-weight: 400;
}

.values-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 40px;
}

.value-item {
text-align: center;
padding: 30px;
}

.value-item h3 {
font-size: 26px;
margin-bottom: 18px;
color: var(--dusty-rose);
}

.value-item p {
color: #666;
line-height: 1.8;
}

.contact-section {
padding: 80px 0;
}

.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 60px;
}

.contact-info {
background-color: var(--light-cream);
padding: 45px;
border-radius: 6px;
}

.info-block {
margin-bottom: 35px;
}

.info-block h3 {
font-size: 22px;
margin-bottom: 12px;
color: var(--dark-brown);
}

.info-block p,
.info-block a {
color: #555;
line-height: 1.8;
text-decoration: none;
}

.info-block a:hover {
color: var(--dusty-rose);
}

.contact-form-wrapper {
background: white;
padding: 45px;
border-radius: 6px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-form-wrapper h2 {
font-size: 32px;
margin-bottom: 30px;
color: var(--dark-brown);
font-weight: 400;
}

.form-group {
margin-bottom: 25px;
}

.form-group label {
display: block;
margin-bottom: 8px;
color: var(--espresso);
font-weight: 500;
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 14px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 16px;
font-family: inherit;
transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--dusty-rose);
}

.submit-btn {
background-color: var(--dusty-rose);
color: white;
padding: 16px 45px;
border: none;
border-radius: 4px;
font-size: 17px;
cursor: pointer;
transition: background-color 0.3s ease;
letter-spacing: 0.8px;
}

.submit-btn:hover {
background-color: var(--espresso);
}

.modal {
display: none;
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.6);
}

.modal-content {
background-color: white;
margin: 15% auto;
padding: 50px;
border-radius: 8px;
width: 90%;
max-width: 500px;
text-align: center;
position: relative;
}

.modal-close {
position: absolute;
top: 15px;
right: 25px;
font-size: 32px;
cursor: pointer;
color: #999;
}

.modal-close:hover {
color: var(--espresso);
}

.modal-content h2 {
color: var(--dark-brown);
margin-bottom: 20px;
font-size: 32px;
}

.modal-content p {
color: #666;
font-size: 18px;
line-height: 1.7;
}

.post-content {
background: white;
}

.post-header {
padding: 60px 0 30px;
text-align: center;
}

.post-header h1 {
font-size: 44px;
margin-bottom: 20px;
color: var(--dark-brown);
max-width: 900px;
margin-left: auto;
margin-right: auto;
font-weight: 400;
}

.post-meta {
color: var(--dusty-rose);
font-style: italic;
font-size: 16px;
}

.post-featured-image {
max-width: 1400px;
margin: 0 auto 60px;
padding: 0 30px;
}

.post-featured-image img {
width: 100%;
height: auto;
border-radius: 6px;
}

.post-body {
padding-bottom: 80px;
}

.post-body .container-main {
max-width: 850px;
}

.post-body h2 {
font-size: 32px;
margin: 45px 0 25px;
color: var(--dark-brown);
font-weight: 400;
}

.post-body p {
margin-bottom: 25px;
line-height: 1.9;
color: #444;
font-size: 18px;
}

.site-footer {
background-color: var(--dark-brown);
color: var(--light-cream);
padding: 60px 0 30px;
}

.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 45px;
max-width: 1280px;
margin: 0 auto;
padding: 0 30px;
}

.footer-section h3 {
color: var(--dusty-rose);
margin-bottom: 20px;
font-size: 20px;
font-weight: 400;
}

.footer-section p {
line-height: 1.8;
margin-bottom: 10px;
color: #ccc;
}

.registration-number {
font-size: 14px;
color: #999;
margin-top: 15px;
}

.footer-links {
list-style: none;
}

.footer-links li {
margin-bottom: 12px;
}

.footer-links a {
color: #ccc;
text-decoration: none;
transition: color 0.3s ease;
}

.footer-links a:hover {
color: var(--dusty-rose);
}

.footer-bottom {
text-align: center;
margin-top: 50px;
padding-top: 30px;
border-top: 1px solid rgba(255,255,255,0.1);
color: #999;
max-width: 1280px;
margin-left: auto;
margin-right: auto;
}

.cookie-consent {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background-color: white;
box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
padding: 30px;
z-index: 1000;
display: none;
}

.cookie-content {
max-width: 1280px;
margin: 0 auto;
}

.cookie-content h3 {
color: var(--dark-brown);
margin-bottom: 15px;
font-size: 24px;
}

.cookie-content p {
color: #666;
margin-bottom: 20px;
line-height: 1.7;
}

.cookie-content a {
color: var(--dusty-rose);
text-decoration: underline;
}

.cookie-buttons {
display: flex;
gap: 15px;
flex-wrap: wrap;
}

.cookie-btn {
padding: 12px 28px;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 15px;
transition: all 0.3s ease;
font-family: inherit;
}

.cookie-btn.primary {
background-color: var(--dusty-rose);
color: white;
}

.cookie-btn.primary:hover {
background-color: var(--espresso);
}

.cookie-btn.secondary {
background-color: var(--light-cream);
color: var(--espresso);
border: 1px solid var(--dusty-rose);
}

.cookie-btn.secondary:hover {
background-color: var(--dusty-rose);
color: white;
}

.cookie-btn.tertiary {
background-color: transparent;
color: var(--espresso);
border: 1px solid #ddd;
}

.cookie-btn.tertiary:hover {
background-color: #f5f5f5;
}

@media screen and (max-width: 768px) {
.header-container {
flex-direction: column;
gap: 20px;
}
.main-navigation ul {
flex-direction: column;
gap: 15px;
text-align: center;
}
.hero-section {
grid-template-columns: 1fr;
padding: 50px 20px;
}
.hero-content h1 {
font-size: 36px;
}
.blog-card {
grid-template-columns: 1fr;
}
.contact-wrapper {
grid-template-columns: 1fr;
}
.team-grid {
grid-template-columns: 1fr;
}
.cookie-buttons {
flex-direction: column;
}
.cookie-btn {
width: 100%;
}
}

h1, h2, h3, h4, h5, h6 {word-break: break-word;}
