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

:root {
    --color-primary: #5a8f7b;
    --color-primary-dark: #3d5a4c;
    --color-secondary: #f5d69c;
    --color-accent: #8b7a9e;
    --color-text: #2d3436;
    --color-text-light: #636e72;
    --color-bg: #ffffff;
    --color-bg-alt: #f9f6f1;
    --color-bg-soft: #e8f4f8;
    --font-serif: 'Georgia', 'Times New Roman', serif;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --max-width: 1200px;
    --content-narrow: 680px;
}

html {
    scroll-behavior: smooth;
}

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

img, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

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

a:hover {
    color: var(--color-primary-dark);
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-text);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 1.9rem; margin-bottom: 1rem; }
h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.15rem; margin-bottom: 0.5rem; }

.nav-editorial {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    z-index: 1000;
}

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

.logo {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--color-primary-dark);
    font-weight: 400;
}

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

.nav-links a {
    color: var(--color-text);
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s ease;
}

.hero-editorial {
    padding: 10rem 2rem 5rem;
    display: flex;
    flex-wrap: wrap;
    max-width: var(--max-width);
    margin: 0 auto;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero-tag {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.hero-editorial h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero-lead {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    color: #fff;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-full {
    width: 100%;
}

.story-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.story-container.narrow {
    max-width: var(--content-narrow);
}

.story-section {
    padding: 5rem 0;
}

.story-section.alt-bg {
    background: var(--color-bg-alt);
}

.story-intro {
    padding: 4rem 0;
    background: var(--color-bg-soft);
}

.story-dropcap {
    font-size: 1.2rem;
    line-height: 1.8;
}

.story-dropcap::first-letter {
    float: left;
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 0.8;
    padding-right: 0.75rem;
    color: var(--color-primary);
}

.story-section p {
    margin-bottom: 1.5rem;
}

.inline-image {
    margin: 2.5rem 0;
    border-radius: 8px;
    overflow: hidden;
}

.text-link {
    display: inline-block;
    font-weight: 500;
    margin-top: 1rem;
}

.visual-break {
    padding: 2rem 0;
    text-align: center;
}

.divider-graphic {
    max-width: 600px;
    margin: 0 auto;
}

.section-title-left {
    margin-bottom: 2.5rem;
}

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

.service-cards-editorial {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-card-story {
    flex: 1;
    min-width: 260px;
    padding: 2rem;
    background: var(--color-bg);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.25rem;
}

.service-card-story h3 {
    font-family: var(--font-sans);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

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

.price {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
}

.cta-inline {
    text-align: center;
    margin-top: 2rem;
}

.testimonial-editorial {
    padding: 2rem 0;
    border-left: 4px solid var(--color-secondary);
    padding-left: 2rem;
}

.testimonial-editorial p {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-editorial cite {
    font-style: normal;
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.reasons-flow {
    margin-top: 2rem;
}

.reason-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

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

.reason-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--color-secondary);
    line-height: 1;
}

.reason-content h4 {
    font-family: var(--font-sans);
    font-weight: 600;
}

.reason-content p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

.visual-section {
    background: var(--color-bg-soft);
}

.visual-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
}

.visual-text {
    flex: 1;
    min-width: 300px;
}

.visual-image {
    flex: 0 0 280px;
}

.process-list {
    list-style: none;
    counter-reset: process;
}

.process-list li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1.25rem;
}

.process-list li::before {
    counter-increment: process;
    content: counter(process);
    position: absolute;
    left: 0;
    top: 0;
    width: 1.75rem;
    height: 1.75rem;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
}

.form-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-bg-soft) 0%, #fff 100%);
}

.form-intro {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.editorial-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--color-text-light);
    text-align: center;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    padding: 2rem 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trust-item svg {
    width: 50px;
    height: 50px;
}

.trust-item span {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.footer-editorial {
    background: var(--color-text);
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
    flex: 2;
    min-width: 250px;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    display: block;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-links h4 {
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

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

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.footer-simple {
    padding: 2rem 0;
}

.footer-simple .footer-bottom {
    padding-top: 0;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.btn-sticky {
    display: block;
    padding: 1rem 1.5rem;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50px;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(90,143,123,0.4);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: var(--color-primary-dark);
    color: #fff;
    box-shadow: 0 6px 25px rgba(90,143,123,0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-text);
    color: #fff;
    padding: 1.25rem 2rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.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 {
    flex: 1;
    font-size: 0.9rem;
    margin: 0;
}

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

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

.btn-cookie {
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

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

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

.btn-cookie.reject:hover {
    border-color: #fff;
}

.page-header-alt,
.page-header-services,
.page-header-contact,
.page-header-legal {
    padding: 9rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(135deg, var(--color-bg-soft) 0%, #fff 100%);
}

.page-header-alt h1,
.page-header-services h1,
.page-header-contact h1,
.page-header-legal h1 {
    margin-bottom: 0.75rem;
}

.header-subtitle {
    color: var(--color-text-light);
    font-size: 1.15rem;
}

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

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    text-align: center;
}

.member-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
}

.team-member h3 {
    font-family: var(--font-sans);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.member-role {
    display: block;
    color: var(--color-primary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team-member p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.values-list {
    margin-top: 2rem;
}

.value-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.value-marker {
    width: 12px;
    height: 12px;
    background: var(--color-primary);
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.value-content h4 {
    font-family: var(--font-sans);
    font-weight: 600;
}

.value-content p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

.cta-box {
    background: var(--color-bg-soft);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
}

.cta-box h3 {
    margin-bottom: 0.75rem;
}

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

.cta-box.large {
    padding: 3rem;
}

.intro-text {
    font-size: 1.15rem;
    color: var(--color-text-light);
    text-align: center;
}

.services-detailed {
    padding: 3rem 0 5rem;
}

.service-detail-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.service-detail-card.alt {
    background: var(--color-bg-alt);
}

.service-detail-card.highlight {
    border: 3px solid var(--color-primary);
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.service-detail-title h2 {
    margin-bottom: 0.25rem;
    font-size: 1.5rem;
}

.price-tag {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
}

.service-detail-body {
    padding: 2rem;
}

.service-detail-body p {
    margin-bottom: 1rem;
}

.service-includes {
    list-style: none;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(90,143,123,0.08);
    border-radius: 8px;
}

.service-includes li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.service-includes li:last-child {
    margin-bottom: 0;
}

.btn-service {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    background: var(--color-primary);
    color: #fff;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.btn-service.btn-highlight {
    background: var(--color-primary-dark);
    padding: 1rem 2rem;
}

.info-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.info-box {
    flex: 1;
    min-width: 250px;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
}

.info-box h4 {
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--color-primary);
}

.info-box p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.contact-main {
    padding: 4rem 0 5rem;
}

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

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

.contact-intro {
    margin-bottom: 2.5rem;
}

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

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.contact-text h3 {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-text p {
    margin-bottom: 0.25rem;
}

.contact-note {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-top: 0.5rem;
}

.hours-list {
    margin-bottom: 0.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0;
    max-width: 280px;
}

.hours-row.muted {
    color: var(--color-text-light);
}

.contact-extra h3 {
    font-family: var(--font-sans);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.directions-info {
    margin-top: 1rem;
}

.direction-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.direction-label {
    font-weight: 600;
    color: var(--color-primary);
    min-width: 60px;
}

.contact-visual {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.map-placeholder {
    background: var(--color-bg-alt);
    border-radius: 12px;
    overflow: hidden;
}

.map-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-top: 1rem;
}

.faq-list {
    margin-top: 2rem;
}

.faq-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    font-family: var(--font-sans);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

.thanks-page {
    padding: 10rem 2rem 5rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-bg-soft) 0%, #fff 100%);
}

.thanks-container {
    max-width: 600px;
    text-align: center;
}

.thanks-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
}

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

.thanks-message {
    font-size: 1.15rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.thanks-details {
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    min-height: 50px;
}

.thanks-details p {
    margin: 0;
    color: var(--color-text-light);
}

.thanks-next {
    text-align: left;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.thanks-next h2 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.next-steps {
    list-style: none;
}

.next-steps li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.next-steps li:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 32px;
    height: 32px;
    background: var(--color-bg-soft);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.thanks-contact {
    margin-bottom: 2rem;
}

.thanks-contact p {
    margin-bottom: 0.25rem;
}

.thanks-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.btn-text {
    padding: 0.875rem 1.5rem;
    color: var(--color-text-light);
}

.btn-text:hover {
    color: var(--color-primary);
}

.legal-content {
    padding: 4rem 0 5rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-bg-soft);
}

.legal-section h3 {
    font-size: 1.15rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section p {
    margin-bottom: 1rem;
}

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

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

.gdpr-rights {
    margin-top: 1.5rem;
}

.gdpr-right {
    padding: 1.5rem;
    background: var(--color-bg-alt);
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.gdpr-right:last-child {
    margin-bottom: 0;
}

.gdpr-right h3 {
    margin-top: 0;
    color: var(--color-primary);
}

.gdpr-right p:last-child,
.gdpr-right ul:last-child {
    margin-bottom: 0;
}

.contact-box {
    padding: 1.5rem;
    background: var(--color-bg-soft);
    border-radius: 8px;
    margin: 1rem 0;
}

.cookie-type {
    margin-bottom: 2rem;
}

.cookie-type h3 {
    margin-top: 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.cookie-table th {
    background: var(--color-bg-soft);
    font-weight: 600;
    font-size: 0.9rem;
}

.cookie-table td {
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .hero-editorial {
        padding-top: 8rem;
    }

    .hero-editorial h1 {
        font-size: 2.25rem;
    }

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

    .visual-image {
        order: -1;
        max-width: 200px;
        margin: 0 auto;
    }

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

    .contact-visual {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--color-bg);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(0,0,0,0.08);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-editorial {
        padding: 7rem 1.5rem 3rem;
    }

    .hero-editorial h1 {
        font-size: 1.85rem;
    }

    .hero-lead {
        font-size: 1.05rem;
    }

    .story-container {
        padding: 0 1.5rem;
    }

    .story-section {
        padding: 3rem 0;
    }

    .service-cards-editorial {
        flex-direction: column;
    }

    .testimonial-editorial p {
        font-size: 1.1rem;
    }

    .reason-item {
        flex-direction: column;
        gap: 0.75rem;
    }

    .editorial-form {
        padding: 1.5rem;
    }

    .trust-badges {
        flex-direction: column;
        gap: 1.5rem;
    }

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

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

    .page-header-alt,
    .page-header-services,
    .page-header-contact,
    .page-header-legal {
        padding: 7rem 1.5rem 3rem;
    }

    .team-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-detail-header {
        flex-direction: column;
        text-align: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        margin: 0 auto;
    }

    .hours-row {
        margin: 0 auto;
    }

    .thanks-page {
        padding: 7rem 1.5rem 3rem;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .info-boxes {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-editorial h1 {
        font-size: 1.6rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .story-dropcap::first-letter {
        font-size: 3rem;
    }
}
