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

:root {
    --color-primary: #2d5a3d;
    --color-secondary: #6b8f71;
    --color-accent: #a4c49a;
    --color-dark: #1a3325;
    --color-light: #f4f9f2;
    --color-cream: #fdfcf7;
    --color-text: #2e3d32;
    --color-muted: #5a6b5e;
    --font-heading: 'Georgia', serif;
    --font-body: 'Segoe UI', 'Helvetica Neue', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.7;
    background-color: var(--color-cream);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

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

.container--narrow {
    max-width: 720px;
}

.container--medium {
    max-width: 960px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(253, 252, 247, 0.97);
    z-index: 1000;
    border-bottom: 1px solid rgba(45, 90, 61, 0.1);
    backdrop-filter: blur(8px);
}

.nav__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav__logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

.nav__menu {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav__link {
    font-size: 0.95rem;
    color: var(--color-muted);
    position: relative;
    padding: 4px 0;
}

.nav__link:hover,
.nav__link--active {
    color: var(--color-primary);
}

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

.nav__link:hover::after {
    width: 100%;
}

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

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

/* Hero Editorial */
.hero-editorial {
    padding: 160px 24px 80px;
    background: linear-gradient(180deg, var(--color-light) 0%, var(--color-cream) 100%);
}

.hero-editorial__inner {
    max-width: 720px;
    margin: 0 auto;
}

.hero-editorial__tag {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-dark);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    margin-bottom: 28px;
}

.hero-editorial__title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.15;
    color: var(--color-dark);
    margin-bottom: 28px;
    font-weight: 400;
}

.hero-editorial__lead {
    font-size: 1.25rem;
    color: var(--color-muted);
    line-height: 1.8;
    margin-bottom: 36px;
}

.hero-editorial__image {
    margin-top: 48px;
    position: relative;
}

.hero-editorial__image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 4px;
}

.hero-editorial__caption {
    font-size: 0.85rem;
    color: var(--color-muted);
    margin-top: 12px;
    font-style: italic;
}

/* Article Content */
.article-content {
    padding: 64px 24px;
}

.article-content__inner {
    max-width: 720px;
    margin: 0 auto;
}

.article-content p {
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.article-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-dark);
    margin: 56px 0 24px;
    font-weight: 400;
}

.article-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin: 40px 0 20px;
    font-weight: 400;
}

.article-content blockquote {
    border-left: 4px solid var(--color-accent);
    padding: 24px 32px;
    margin: 40px 0;
    background: var(--color-light);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-primary);
}

.article-content ul,
.article-content ol {
    margin: 24px 0;
    padding-left: 24px;
}

.article-content li {
    margin-bottom: 12px;
}

/* Inline Image */
.inline-image {
    margin: 48px 0;
}

.inline-image--wide {
    margin-left: -120px;
    margin-right: -120px;
    max-width: calc(100% + 240px);
}

.inline-image img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 4px;
}

.inline-image__caption {
    font-size: 0.85rem;
    color: var(--color-muted);
    margin-top: 12px;
    text-align: center;
}

/* Inline CTA */
.inline-cta {
    background: var(--color-primary);
    color: white;
    padding: 40px 48px;
    margin: 56px 0;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.inline-cta__text {
    font-size: 1.2rem;
    line-height: 1.6;
}

.inline-cta__btn {
    background: white;
    color: var(--color-primary);
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 3px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.inline-cta__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* Split Section */
.split-section {
    display: flex;
    min-height: 500px;
}

.split-section--reverse {
    flex-direction: row-reverse;
}

.split-section__content {
    flex: 1;
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--color-light);
}

.split-section__image {
    flex: 1;
    position: relative;
}

.split-section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.split-section__tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-secondary);
    margin-bottom: 16px;
}

.split-section__title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-dark);
    margin-bottom: 24px;
    font-weight: 400;
}

.split-section__text {
    color: var(--color-muted);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

/* Services Cards */
.services-section {
    padding: 100px 24px;
    background: var(--color-cream);
}

.services-section__header {
    max-width: 720px;
    margin: 0 auto 64px;
    text-align: center;
}

.services-section__title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 20px;
    font-weight: 400;
}

.services-section__desc {
    color: var(--color-muted);
    font-size: 1.1rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 320px;
    background: white;
    border: 1px solid rgba(45, 90, 61, 0.1);
    padding: 40px 36px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(45, 90, 61, 0.12);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    background: var(--color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-card__icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-primary);
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-dark);
    margin-bottom: 16px;
    font-weight: 400;
}

.service-card__desc {
    color: var(--color-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-card__price {
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 20px;
}

.service-card__price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-muted);
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.service-card__link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-card__link svg {
    transform: translateX(4px);
}

/* Stats Section */
.stats-section {
    background: var(--color-primary);
    padding: 80px 24px;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-item__number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.stat-item__label {
    font-size: 0.95rem;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonial */
.testimonial-section {
    padding: 100px 24px;
    background: var(--color-light);
}

.testimonial-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    line-height: 1.6;
    color: var(--color-dark);
    margin-bottom: 40px;
    font-weight: 400;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.testimonial-author__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-dark);
}

.testimonial-author__info {
    text-align: left;
}

.testimonial-author__name {
    font-weight: 600;
    color: var(--color-dark);
}

.testimonial-author__role {
    font-size: 0.9rem;
    color: var(--color-muted);
}

/* Contact Form Section */
.contact-section {
    padding: 100px 24px;
    background: var(--color-cream);
}

.contact-inner {
    display: flex;
    gap: 64px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info__title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 24px;
    font-weight: 400;
}

.contact-info__text {
    color: var(--color-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail__icon {
    width: 44px;
    height: 44px;
    background: var(--color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail__icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-primary);
}

.contact-detail__label {
    font-size: 0.85rem;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-detail__value {
    color: var(--color-dark);
    font-size: 1.05rem;
}

.contact-form-wrapper {
    flex: 1;
    background: white;
    padding: 48px;
    border: 1px solid rgba(45, 90, 61, 0.1);
}

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

.form-label {
    display: block;
    font-size: 0.9rem;
    color: var(--color-dark);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(45, 90, 61, 0.2);
    background: var(--color-cream);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.1);
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--color-primary);
}

.form-checkbox span {
    font-size: 0.9rem;
    color: var(--color-muted);
    line-height: 1.5;
}

.form-checkbox a {
    color: var(--color-primary);
    text-decoration: underline;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn--primary:hover {
    background: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 90, 61, 0.25);
}

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

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

.btn--full {
    width: 100%;
}

.btn svg {
    width: 18px;
    height: 18px;
}

/* Footer */
.footer {
    background: var(--color-dark);
    color: white;
    padding: 80px 24px 40px;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    flex: 1 1 300px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

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

.footer-desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 320px;
}

.footer-nav {
    flex: 1 1 200px;
}

.footer-nav__title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-nav__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-nav__link {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 32px;
    margin-top: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-copy {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--color-primary);
    color: white;
    padding: 16px 28px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(45, 90, 61, 0.35);
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sticky-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(45, 90, 61, 0.45);
}

.sticky-cta svg {
    width: 18px;
    height: 18px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 24px;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
    z-index: 9999;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
    color: var(--color-text);
}

.cookie-text a {
    color: var(--color-primary);
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.cookie-btn--reject {
    background: transparent;
    color: var(--color-muted);
    border: 1px solid var(--color-muted);
}

/* Page Header */
.page-header {
    padding: 140px 24px 80px;
    background: linear-gradient(180deg, var(--color-light) 0%, var(--color-cream) 100%);
    text-align: center;
}

.page-header__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-dark);
    margin-bottom: 20px;
    font-weight: 400;
}

.page-header__desc {
    font-size: 1.15rem;
    color: var(--color-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* About Page */
.about-story {
    padding: 80px 24px;
}

.about-story__inner {
    max-width: 720px;
    margin: 0 auto;
}

.about-story p {
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.about-story h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-dark);
    margin: 56px 0 24px;
    font-weight: 400;
}

.team-section {
    padding: 80px 24px;
    background: var(--color-light);
}

.team-section__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 56px;
    font-weight: 400;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    flex: 0 1 250px;
}

.team-member__avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--color-accent);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-dark);
}

.team-member__name {
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.team-member__role {
    font-size: 0.9rem;
    color: var(--color-muted);
}

/* Legal Pages */
.legal-content {
    padding: 80px 24px;
}

.legal-content__inner {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-dark);
    margin: 48px 0 20px;
    font-weight: 400;
}

.legal-content h3 {
    font-size: 1.2rem;
    color: var(--color-primary);
    margin: 32px 0 16px;
}

.legal-content p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 10px;
}

/* Thanks Page */
.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px;
    text-align: center;
    background: linear-gradient(180deg, var(--color-light) 0%, var(--color-cream) 100%);
}

.thanks-inner {
    max-width: 600px;
}

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

.thanks-icon svg {
    width: 50px;
    height: 50px;
    stroke: var(--color-primary);
}

.thanks-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 20px;
    font-weight: 400;
}

.thanks-text {
    font-size: 1.15rem;
    color: var(--color-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

.thanks-service {
    background: white;
    padding: 24px;
    margin-bottom: 32px;
    border: 1px solid rgba(45, 90, 61, 0.1);
}

.thanks-service__label {
    font-size: 0.85rem;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.thanks-service__name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-primary);
}

/* Contact Page Specific */
.contact-page-section {
    padding: 80px 24px;
}

.contact-page-grid {
    display: flex;
    gap: 64px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-page-info {
    flex: 1;
}

.contact-page-map {
    flex: 1;
    background: var(--color-light);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    color: var(--color-muted);
}

.map-placeholder svg {
    width: 64px;
    height: 64px;
    stroke: var(--color-secondary);
    margin-bottom: 16px;
}

/* Values Section */
.values-section {
    padding: 100px 24px;
    background: var(--color-light);
}

.values-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.values-header__title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-dark);
    margin-bottom: 16px;
    font-weight: 400;
}

.values-header__desc {
    color: var(--color-muted);
    font-size: 1.1rem;
}

.values-grid {
    display: flex;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.value-item {
    flex: 1 1 280px;
    text-align: center;
    padding: 40px 32px;
    background: white;
}

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

.value-item__icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-primary);
}

.value-item__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-dark);
    margin-bottom: 12px;
    font-weight: 400;
}

.value-item__text {
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Process Section */
.process-section {
    padding: 100px 24px;
}

.process-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.process-header__title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-dark);
    margin-bottom: 16px;
    font-weight: 400;
}

.process-steps {
    max-width: 700px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 32px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(45, 90, 61, 0.1);
}

.process-step:last-child {
    border-bottom: none;
}

.process-step__number {
    width: 56px;
    height: 56px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.process-step__content {
    padding-top: 8px;
}

.process-step__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-dark);
    margin-bottom: 8px;
    font-weight: 400;
}

.process-step__text {
    color: var(--color-muted);
    line-height: 1.7;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .nav__menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        transform: translateY(-120%);
        transition: transform 0.3s ease;
        box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    }

    .nav__menu.active {
        transform: translateY(0);
    }

    .nav__toggle {
        display: flex;
    }

    .split-section {
        flex-direction: column;
    }

    .split-section--reverse {
        flex-direction: column;
    }

    .split-section__image {
        min-height: 300px;
    }

    .split-section__content {
        padding: 48px 24px;
    }

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

    .contact-form-wrapper {
        padding: 32px 24px;
    }

    .inline-image--wide {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }

    .stats-grid {
        gap: 40px;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .sticky-cta {
        bottom: 16px;
        right: 16px;
        padding: 14px 20px;
        font-size: 0.9rem;
    }

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

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

@media (max-width: 600px) {
    .hero-editorial {
        padding: 120px 20px 60px;
    }

    .hero-editorial__title {
        font-size: 2rem;
    }

    .services-section {
        padding: 64px 20px;
    }

    .services-section__title {
        font-size: 2rem;
    }

    .service-card {
        padding: 32px 24px;
    }

    .inline-cta {
        padding: 32px 24px;
    }

    .testimonial-quote {
        font-size: 1.4rem;
    }

    .btn {
        padding: 14px 28px;
    }
}
