:root {
    --color-primary: #1a365d;
    --color-secondary: #744210;
    --color-accent: #c05621;
    --color-bg: #fffaf5;
    --color-bg-alt: #f7fafc;
    --color-text: #2d3748;
    --color-text-light: #718096;
    --color-border: #e2e8f0;
    --font-heading: 'Georgia', serif;
    --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --max-width: 1200px;
    --content-width: 720px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-primary);
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.5rem; }

p {
    margin-bottom: 1.25rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-primary);
    color: #fff;
    padding: 1.25rem;
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 280px;
}

.cookie-content a {
    color: #fff;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.btn-primary {
    background: var(--color-accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--color-secondary);
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

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

.btn-outline:hover {
    background: var(--color-accent);
    color: #fff;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.site-header {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-top {
    background: var(--color-primary);
    padding: 0.35rem 1.5rem;
    text-align: right;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-nav {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: 400;
}

.logo:hover {
    color: var(--color-accent);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--color-text);
    font-size: 0.95rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

.hero-editorial {
    position: relative;
    height: 65vh;
    min-height: 450px;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    inset: 0;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4rem 2rem 3rem;
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
    color: #fff;
    text-align: center;
}

.hero-text-overlay h1 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.hero-text-overlay .lead {
    font-size: 1.35rem;
    opacity: 0.9;
    margin: 0;
}

.editorial-content {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.story-intro {
    margin-bottom: 3rem;
}

.dropcap::first-letter {
    float: left;
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 0.8;
    padding-right: 0.75rem;
    padding-top: 0.25rem;
    color: var(--color-primary);
}

.story-section {
    margin-bottom: 2.5rem;
}

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

.inline-image {
    margin: 2.5rem 0;
}

.inline-image.left {
    float: left;
    width: 45%;
    margin-right: 2rem;
    margin-bottom: 1rem;
}

.inline-image.right {
    float: right;
    width: 45%;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.image-wrapper {
    border-radius: 4px;
    overflow: hidden;
}

.inline-image figcaption {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-top: 0.5rem;
    font-style: italic;
}

.full-width-image {
    margin: 3rem -10vw;
    width: calc(100% + 20vw);
}

.full-width-image .image-wrapper {
    border-radius: 0;
}

.pullquote {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 3px solid var(--color-accent);
    border-bottom: 1px solid var(--color-border);
    clear: both;
}

.pullquote p {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-primary);
    margin: 0;
    text-align: center;
}

.cta-inline {
    background: var(--color-bg-alt);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    margin: 3rem 0;
    clear: both;
}

.cta-inline h3 {
    color: var(--color-primary);
}

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

.services-preview {
    background: var(--color-bg-alt);
    padding: 5rem 1.5rem;
    clear: both;
}

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

.services-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    margin-bottom: 0.5rem;
}

.card-content p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.price {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.section-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.booking-section {
    padding: 5rem 1.5rem;
    background: #fff;
}

.booking-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: flex-start;
}

.booking-text {
    flex: 1;
    min-width: 280px;
}

.booking-text h2 {
    margin-bottom: 1rem;
}

.booking-form {
    flex: 1;
    min-width: 320px;
    background: var(--color-bg-alt);
    padding: 2rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-family: var(--font-body);
    transition: border-color 0.2s ease;
}

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

.site-footer {
    background: var(--color-primary);
    color: rgba(255,255,255,0.9);
    padding: 4rem 1.5rem 2rem;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.footer-section p {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul a {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
}

.footer-section ul a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    text-align: center;
}

.disclaimer {
    font-size: 0.8rem;
    opacity: 0.7;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.copyright {
    font-size: 0.85rem;
    opacity: 0.6;
    margin: 0;
}

.page-header {
    background: linear-gradient(135deg, var(--color-primary), #2c5282);
    color: #fff;
    padding: 4rem 1.5rem;
    text-align: center;
}

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

.page-header .subtitle {
    opacity: 0.85;
    font-size: 1.15rem;
}

.page-content {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.page-content.wide {
    max-width: var(--max-width);
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

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

.services-full {
    padding: 4rem 1.5rem;
}

.services-list {
    max-width: var(--max-width);
    margin: 0 auto;
}

.service-item {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--color-border);
    align-items: center;
}

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

.service-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-details {
    flex: 1;
    min-width: 300px;
}

.service-details h2 {
    margin-bottom: 1rem;
}

.service-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.meta-item {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 0.8rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
}

.meta-value.price-highlight {
    color: var(--color-accent);
    font-size: 1.35rem;
}

.about-intro {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.about-text {
    flex: 1.5;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 280px;
    border-radius: 8px;
    overflow: hidden;
}

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

.values-section {
    background: var(--color-bg-alt);
    padding: 4rem 1.5rem;
    margin: 3rem -1.5rem;
}

.values-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 1.5rem;
}

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
}

.contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-info {
    flex: 1;
    min-width: 280px;
}

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

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.info-block p {
    margin-bottom: 0.25rem;
}

.thanks-container {
    text-align: center;
    padding: 5rem 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: #48bb78;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    stroke: #fff;
    fill: none;
    stroke-width: 3;
}

.thanks-container h1 {
    margin-bottom: 1rem;
}

.thanks-container p {
    color: var(--color-text-light);
    font-size: 1.1rem;
}

.back-link {
    margin-top: 2rem;
}

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

    .nav-links {
        display: none;
    }

    .inline-image.left,
    .inline-image.right {
        float: none;
        width: 100%;
        margin: 2rem 0;
    }

    .full-width-image {
        margin: 2rem -1.5rem;
        width: calc(100% + 3rem);
    }

    .hero-editorial {
        height: 50vh;
        min-height: 350px;
    }

    .hero-text-overlay {
        padding: 2rem 1rem 2rem;
    }

    .booking-container,
    .about-intro,
    .service-item,
    .service-item:nth-child(even) {
        flex-direction: column;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}
