:root {
    --primary: #2c3e50;
    --secondary: #8b6914;
    --accent: #c9a227;
    --text: #333333;
    --text-light: #666666;
    --bg-light: #faf8f5;
    --bg-cream: #f5f0e6;
    --bg-dark: #1a1a1a;
    --white: #ffffff;
    --border: #e0d8c8;
    --shadow: rgba(0, 0, 0, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text);
    background-color: var(--white);
}

.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-wide {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
    font-weight: normal;
    line-height: 1.3;
    color: var(--primary);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

.ad-disclosure {
    background-color: var(--bg-cream);
    padding: 8px 0;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
}

header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 1.4rem;
    font-weight: normal;
    color: var(--primary);
    letter-spacing: 1px;
}

.logo span {
    color: var(--secondary);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

nav ul li a {
    color: var(--text);
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background-color: var(--primary);
    transition: transform 0.3s ease;
}

.hero-editorial {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.hero-editorial h1 {
    text-align: center;
    margin-bottom: 2rem;
}

.hero-editorial .lead {
    font-size: 1.25rem;
    text-align: center;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.hero-image-container {
    background-color: var(--bg-cream);
    margin: 3rem 0;
    position: relative;
}

.hero-image-container img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.editorial-content {
    padding: 60px 0;
}

.editorial-content p {
    text-align: justify;
    hyphens: auto;
}

.editorial-content p:first-of-type::first-letter {
    font-size: 4rem;
    float: left;
    line-height: 1;
    margin-right: 12px;
    color: var(--secondary);
}

.inline-image {
    margin: 3rem -60px;
    background-color: var(--bg-cream);
}

.inline-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.inline-image figcaption {
    padding: 12px 16px;
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    font-style: italic;
}

.cta-inline {
    background-color: var(--bg-cream);
    padding: 40px;
    margin: 3rem 0;
    text-align: center;
    border-left: 4px solid var(--secondary);
}

.cta-inline p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--secondary);
    color: var(--white);
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background-color: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--secondary);
    color: var(--secondary);
}

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

.services-section {
    padding: 80px 0;
    background-color: var(--white);
}

.services-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-item {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 30px;
    background-color: var(--bg-light);
    border-left: 3px solid var(--secondary);
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
    border-left: none;
    border-right: 3px solid var(--secondary);
}

.service-image {
    flex: 0 0 280px;
    background-color: var(--bg-cream);
}

.service-image img {
    width: 280px;
    height: 200px;
    object-fit: cover;
    display: block;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    margin-bottom: 0.8rem;
}

.service-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.service-price {
    font-size: 1.4rem;
    color: var(--secondary);
    font-weight: normal;
}

.about-section {
    padding: 80px 0;
    background-color: var(--bg-cream);
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 0 0 400px;
    background-color: var(--border);
}

.about-image img {
    width: 400px;
    height: 500px;
    object-fit: cover;
    display: block;
}

.testimonial-section {
    padding: 80px 0;
    background-color: var(--white);
}

.testimonial-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial {
    padding: 40px;
    background-color: var(--bg-light);
    position: relative;
}

.testimonial::before {
    content: '"';
    font-size: 6rem;
    color: var(--border);
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    padding-left: 40px;
}

.testimonial-author {
    padding-left: 40px;
    color: var(--secondary);
    font-size: 0.95rem;
}

.contact-section {
    padding: 80px 0;
    background-color: var(--bg-cream);
}

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.8rem;
}

.contact-form-container {
    flex: 1;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    background-color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text);
    transition: border-color 0.3s ease;
}

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

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

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

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--accent);
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-section a:hover {
    color: var(--accent);
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 24px;
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.cookie-content a {
    color: var(--accent);
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

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

.cookie-accept:hover {
    background-color: var(--accent);
}

.cookie-reject {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.cookie-reject:hover {
    border-color: var(--white);
}

.page-header {
    background-color: var(--bg-cream);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 0.5rem;
}

.page-header p {
    color: var(--text-light);
    margin: 0;
}

.page-content {
    padding: 60px 0;
}

.page-content h2 {
    margin-top: 2.5rem;
}

.page-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.page-content li {
    margin-bottom: 0.5rem;
}

.thanks-container {
    text-align: center;
    padding: 100px 0;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--white);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 3rem;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: var(--bg-light);
    padding: 30px;
    border-bottom: 3px solid var(--secondary);
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-card .price {
    font-size: 1.3rem;
    color: var(--secondary);
}

.contact-page-grid {
    display: flex;
    gap: 60px;
    padding: 60px 0;
}

.contact-main {
    flex: 2;
}

.contact-sidebar {
    flex: 1;
    background-color: var(--bg-light);
    padding: 30px;
    height: fit-content;
}

.contact-sidebar h3 {
    margin-bottom: 1.5rem;
}

.contact-detail {
    margin-bottom: 1.5rem;
}

.contact-detail strong {
    display: block;
    color: var(--primary);
    margin-bottom: 4px;
}

.disclaimer {
    background-color: var(--bg-light);
    padding: 30px;
    margin: 40px 0;
    border-left: 3px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-light);
}

.sticky-cta {
    position: fixed;
    bottom: 80px;
    right: 24px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 900px) {
    .about-content {
        flex-direction: column;
    }

    .about-image {
        flex: none;
        width: 100%;
    }

    .about-image img {
        width: 100%;
        height: 350px;
    }

    .contact-grid {
        flex-direction: column;
    }

    .service-item {
        flex-direction: column;
    }

    .service-item:nth-child(even) {
        flex-direction: column;
    }

    .service-image {
        flex: none;
        width: 100%;
    }

    .service-image img {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
    }

    .contact-page-grid {
        flex-direction: column;
    }
}

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

    h2 {
        font-size: 1.6rem;
    }

    .hamburger {
        display: flex;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        border-bottom: 1px solid var(--border);
        display: none;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        padding: 20px 24px;
        gap: 0;
    }

    nav ul li {
        border-bottom: 1px solid var(--border);
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav ul li a {
        display: block;
        padding: 12px 0;
    }

    .inline-image {
        margin: 2rem -24px;
    }

    .hero-image-container img {
        height: 300px;
    }

    .services-grid {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}
