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

:root {
    --color-primary: #2c3e50;
    --color-accent: #8b7355;
    --color-light: #f4f1ee;
    --color-dark: #1a1a1a;
    --color-border: #d4cfc7;
    --color-bg-alt: #faf8f6;
    --font-serif: Georgia, 'Times New Roman', serif;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --max-width-narrow: 680px;
}

body {
    font-family: var(--font-serif);
    line-height: 1.7;
    color: var(--color-dark);
    background: #ffffff;
}

.container-narrow {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    padding: 0 24px;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-family: var(--font-sans);
    font-size: 14px;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 14px;
    border-radius: 4px;
    transition: opacity 0.2s;
}

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

.btn-cookie-reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.btn-cookie-accept:hover,
.btn-cookie-reject:hover {
    opacity: 0.8;
}

.header-minimal {
    padding: 40px 0 24px;
    border-bottom: 1px solid var(--color-border);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.brand {
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.ad-notice {
    font-family: var(--font-sans);
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-horizontal {
    display: flex;
    gap: 28px;
    font-family: var(--font-sans);
    font-size: 14px;
}

.nav-horizontal a {
    color: var(--color-dark);
    text-decoration: none;
    transition: color 0.2s;
}

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

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

.story-flow {
    max-width: 100%;
}

.hero-editorial {
    margin-bottom: 80px;
}

.display-heading {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.intro-text {
    font-size: 20px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 48px;
}

.editorial-image {
    margin: 48px 0;
}

.editorial-image img {
    width: 100%;
    height: auto;
    display: block;
}

.content-block {
    margin-bottom: 64px;
}

.content-block h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 24px;
    line-height: 1.3;
}

.content-block p {
    font-size: 18px;
    margin-bottom: 20px;
}

.inline-visual {
    margin: 64px 0;
}

.text-image-flow {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.text-image-flow img {
    width: 100%;
    height: auto;
    border-radius: 2px;
}

.caption-text {
    font-size: 15px;
    font-style: italic;
    color: #666;
}

.services-editorial {
    margin: 80px 0;
}

.service-entry {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--color-border);
}

.service-entry:last-child {
    border-bottom: none;
}

.service-entry h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 12px;
}

.service-entry p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #444;
}

.service-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.price {
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-accent);
}

.price-note {
    font-family: var(--font-sans);
    font-size: 13px;
    color: #666;
}

.btn-select-service {
    padding: 10px 24px;
    background: var(--color-primary);
    color: white;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 14px;
    border-radius: 4px;
    transition: background 0.2s;
}

.btn-select-service:hover {
    background: #1a2a3a;
}

.btn-select-service.selected {
    background: var(--color-accent);
}

.inquiry-section {
    margin: 80px 0;
}

.service-notice {
    background: #fff3cd;
    border: 1px solid #ffc107;
    padding: 12px 16px;
    margin-bottom: 24px;
    font-family: var(--font-sans);
    font-size: 14px;
    border-radius: 4px;
    display: none;
}

.service-notice.show {
    display: block;
}

.form-editorial {
    margin-top: 32px;
}

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

.form-group label {
    display: block;
    font-family: var(--font-sans);
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--color-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-family: var(--font-serif);
    font-size: 16px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    background: var(--color-bg-alt);
}

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

.btn-submit {
    padding: 14px 32px;
    background: var(--color-accent);
    color: white;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 16px;
    border-radius: 4px;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: #75604a;
}

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.disclaimer-box {
    background: var(--color-bg-alt);
    border-left: 3px solid var(--color-accent);
    padding: 24px;
    margin: 48px 0;
}

.disclaimer-text {
    font-size: 13px;
    font-family: var(--font-sans);
    line-height: 1.6;
    color: #555;
}

.footer-editorial {
    border-top: 1px solid var(--color-border);
    padding: 48px 0;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-brand {
    font-size: 18px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-family: var(--font-sans);
    font-size: 14px;
}

.footer-nav a {
    color: var(--color-dark);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-note {
    font-family: var(--font-sans);
    font-size: 13px;
    color: #666;
}

.page-header {
    padding: 80px 0 40px;
    text-align: center;
}

.page-title {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 16px;
}

.page-intro {
    font-size: 18px;
    color: #555;
}

.page-content {
    padding: 40px 0 80px;
}

.content-section {
    margin-bottom: 48px;
}

.content-section h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
}

.content-section h3 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 16px;
    margin-top: 32px;
}

.content-section p {
    font-size: 17px;
    margin-bottom: 16px;
}

.content-section ul,
.content-section ol {
    margin-left: 24px;
    margin-bottom: 20px;
}

.content-section li {
    font-size: 17px;
    margin-bottom: 12px;
}

.about-visual {
    margin: 48px 0;
}

.about-visual img {
    width: 100%;
    height: auto;
    border-radius: 2px;
}

.contact-info {
    background: var(--color-bg-alt);
    padding: 32px;
    border-radius: 4px;
    margin-bottom: 32px;
}

.info-row {
    margin-bottom: 20px;
}

.info-row:last-child {
    margin-bottom: 0;
}

.info-label {
    font-family: var(--font-sans);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
    margin-bottom: 6px;
}

.info-value {
    font-size: 17px;
}

.thanks-message {
    text-align: center;
    padding: 60px 0;
}

.thanks-message h1 {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 20px;
}

.thanks-message p {
    font-size: 18px;
    color: #555;
    margin-bottom: 16px;
}

.btn-link {
    display: inline-block;
    margin-top: 32px;
    padding: 12px 28px;
    background: var(--color-primary);
    color: white;
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 15px;
    border-radius: 4px;
    transition: background 0.2s;
}

.btn-link:hover {
    background: #1a2a3a;
}

@media (max-width: 768px) {
    .display-heading {
        font-size: 36px;
    }

    .intro-text {
        font-size: 18px;
    }

    .content-block h2 {
        font-size: 28px;
    }

    .service-entry h3 {
        font-size: 20px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .nav-horizontal {
        flex-wrap: wrap;
        gap: 16px;
    }
}