
/* focus-visible for keyboard accessibility */
a:focus-visible, button:focus-visible, [tabindex]:focus-visible, .gallery-item:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 2px solid var(--site-accent,var(--food-accent,var(--accent,#355c7d))); outline-offset: 3px; border-radius: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.sr-only:focus { position: static; width: auto; height: auto; margin: 0; overflow: visible; clip: auto; white-space: normal; }

:root {
    --site-bg: #f4f0e8;
    --site-paper: #fffdf8;
    --site-paper-strong: #efe8dd;
    --site-ink: #171412;
    --site-muted: #665f55;
    --site-line: rgba(23, 20, 18, 0.12);
    --site-dark: #17151d;
    --site-accent: #8b5e3c;
    --site-header-h: 84px;
    --site-font: "Manrope", sans-serif;
    --site-display: "Fraunces", serif;
    --site-mono: "Courier Prime", monospace;
    --site-radius-lg: 24px;
    --site-radius-md: 18px;
    --site-radius-sm: 14px;
    --site-shadow: 0 18px 48px rgba(23, 20, 18, 0.09);
}

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

html,
body {
    margin: 0;
    padding: 0;
}

body:not(.page-home) {
    min-width: 0;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 0% 0%, rgba(139, 94, 60, 0.09), transparent 24%),
        radial-gradient(circle at 100% 0%, rgba(23, 20, 18, 0.04), transparent 30%),
        linear-gradient(180deg, #f7f2ea 0%, var(--site-bg) 38%, #ede7dc 100%);
    color: var(--site-ink);
    font-family: var(--site-font);
    font-size: 16px;
    line-height: 1.6;
}

body:not(.page-home) a {
    color: inherit;
}

body:not(.page-home) img {
    max-width: 100%;
    display: block;
}

body:not(.page-home) .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body:not(.page-home) .hamburger-menu {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 4000;
    width: 46px;
    height: 46px;
    display: none;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--site-line);
    border-radius: 999px;
    background: rgba(247, 245, 239, 0.94);
    box-shadow: 0 10px 28px rgba(29, 34, 27, 0.1);
    appearance: none;
    -webkit-appearance: none;
}

body:not(.page-home) .hamburger-icon {
    width: 18px;
    height: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

body:not(.page-home) .hamburger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--site-ink);
    transition: transform 0.2s cubic-bezier(0.16,1,0.3,1), opacity 0.2s ease;
}

body:not(.page-home) .hamburger-icon.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

body:not(.page-home) .hamburger-icon.active span:nth-child(2) {
    opacity: 0;
}

body:not(.page-home) .hamburger-icon.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

body:not(.page-home) .nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 2800;
    background: rgba(29, 34, 27, 0.24);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s cubic-bezier(0.16,1,0.3,1), visibility 0.2s ease;
}

body:not(.page-home).nav-active .nav-overlay {
    opacity: 1;
    visibility: visible;
}

body:not(.page-home) .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3000;
    display: grid;
    grid-template-columns: minmax(220px, 260px) 1fr auto;
    align-items: center;
    gap: 18px;
    min-height: 72px;
    padding: 12px max(24px, calc((100vw - 1140px) / 2));
    background: rgba(255, 253, 248, 0.9);
    border-bottom: 1px solid var(--site-line);
    backdrop-filter: blur(14px);-webkit-backdrop-filter:blur(14px)
}

body:not(.page-home) .home-logo {
    display: inline-flex;
    flex-direction: column;
    gap: 3px;
    color: var(--site-ink);
    text-decoration: none;
}

body:not(.page-home) .brand-name {
    font-family: var(--site-font);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body:not(.page-home) .brand-role {
    color: var(--site-muted);
    font-family: var(--site-mono);
    font-size: 9px;
    line-height: 1.2;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

body:not(.page-home) .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

body:not(.page-home) .nav-links li,
body:not(.page-home) .nav-links a,
body:not(.page-home) .nav-links p {
    font-family: var(--site-mono);
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
}

body:not(.page-home) .nav-links .nav-divider,
body:not(.page-home) .nav-links li p,
body:not(.page-home) .content-wrapper {
    display: none;
}

body:not(.page-home) .nav-links a:hover,
body.page-about .nav-links a[href="about.php"],
body.page-services .nav-links a[href="services.php"],
body.page-contact .nav-links a[href="contact.php"],
body.page-portfolio .nav-links a[href="portfolio.php"],
body.page-privacy .nav-links a[href="privacy-policy.php"],
body:not(.page-home) .footer-links a:hover,
body:not(.page-home) .legal-links a:hover,
body:not(.page-home) .privacy-link:hover,
body:not(.page-home) .service-link:hover {
    color: var(--site-accent);
}

body:not(.page-home) .cta-button,
body:not(.page-home) .btn-primary,
body:not(.page-home) .btn-secondary,
body:not(.page-home) .card-btn,
body:not(.page-home) .footer-btn,
body:not(.page-home) .cookie-accept,
body:not(.page-home) .cookie-settings,
body:not(.page-home) .cookie-save,
body:not(.page-home) .cookie-modal-close,
body:not(.page-home) .filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--site-mono);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    min-height: 40px;
    padding: 11px 16px;
    border-radius: 999px;
    transition: background-color 0.2s cubic-bezier(0.16,1,0.3,1), border-color 0.2s cubic-bezier(0.16,1,0.3,1), color 0.2s cubic-bezier(0.16,1,0.3,1), transform 0.2s ease;
}

body:not(.page-home) .cta-button,
body:not(.page-home) .btn-primary,
body:not(.page-home) .card-btn,
body:not(.page-home) .footer-btn,
body:not(.page-home) .cookie-accept,
body:not(.page-home) .cookie-save,
body:not(.page-home) .filter-btn.active {
    background: var(--site-dark);
    border: 1px solid var(--site-dark);
    color: #f7f5ef;
    box-shadow: 0 10px 24px rgba(23, 20, 18, 0.12);
}

body:not(.page-home) .btn-secondary,
body:not(.page-home) .cookie-settings,
body:not(.page-home) .cookie-modal-close,
body:not(.page-home) .filter-btn {
    background: transparent;
    border: 1px solid var(--site-line);
    color: var(--site-ink);
}

body:not(.page-home) .cta-button:hover,
body:not(.page-home) .btn-primary:hover,
body:not(.page-home) .card-btn:hover,
body:not(.page-home) .footer-btn:hover,
body:not(.page-home) .cookie-accept:hover,
body:not(.page-home) .cookie-save:hover,
body:not(.page-home) .filter-btn.active:hover{
    background: var(--site-accent);
    border-color: var(--site-accent);
    transform: translateY(-1px);
}.filter-btn.active:active{transform:scale(0.97)}

body:not(.page-home) .btn-secondary:hover,
body:not(.page-home) .cookie-settings:hover,
body:not(.page-home) .cookie-modal-close:hover,
body:not(.page-home) .filter-btn:hover {
    border-color: var(--site-accent);
    color: var(--site-accent);
}

body:not(.page-home) main {
    padding: calc(var(--site-header-h) + 4px) 24px 88px;
}

body:not(.page-home) .container {
    width: min(1140px, 100%);
    margin: 0 auto;
}

body:not(.page-home) h1,
body:not(.page-home) h2,
body:not(.page-home) h3 {
    margin: 0;
    color: var(--site-ink);
}

body:not(.page-home) .hero-badge,
body:not(.page-home) .service-kicker,
body:not(.page-home) .popular-badge,
body:not(.page-home) .premium-badge,
body:not(.page-home) .scope,
body:not(.page-home) .hero-subtitle {
    display: inline-block;
    font-family: var(--site-mono);
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body:not(.page-home) .hero-badge,
body:not(.page-home) .popular-badge,
body:not(.page-home) .premium-badge {
    margin-bottom: 14px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(139, 94, 60, 0.1);
    color: var(--site-accent);
}

body:not(.page-home) .section-title,
body:not(.page-home) .story-content h2,
body:not(.page-home) .services-overview h2,
body:not(.page-home) .experience-text h2,
body:not(.page-home) .contact-form-container h2,
body:not(.page-home) .contact-info h3,
body:not(.page-home) .privacy-policy-section h1,
body:not(.page-home) .portfolio-cta h2 {
    font-family: var(--site-display);
    font-size: clamp(30px, 3vw, 46px);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

body:not(.page-home) .highlight {
    color: var(--site-accent);
}

body:not(.page-home) .lead,
body:not(.page-home) .hero-description,
body:not(.page-home) .portfolio-cta .lead,
body:not(.page-home) .contact-form-intro,
body:not(.page-home) .privacy-content > p {
    color: #47423a;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.65;
}

body:not(.page-home) .hero-about,
body:not(.page-home) .hero-services,
body:not(.page-home) .hero-contact,
body:not(.page-home) .hero-portfolio,
body:not(.page-home) .privacy-policy-section {
    padding: 28px 0 40px;
}

body:not(.page-home) .about-hero-content,
body:not(.page-home) .contact-grid,
body:not(.page-home) .experience-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.92fr);
    gap: 32px 42px;
    align-items: start;
}

body:not(.page-home) .about-hero-content {
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 360px);
}

body:not(.page-home) .hero-services .container,
body:not(.page-home) .hero-contact .container,
body:not(.page-home) .hero-portfolio .container {
    max-width: 860px;
}

body:not(.page-home) .hero-services h1,
body:not(.page-home) .hero-contact h1,
body:not(.page-home) .hero-portfolio h1,
body:not(.page-home) .about-text h1 {
    max-width: 12ch;
    margin-bottom: 20px;
    font-family: var(--site-display);
    font-size: clamp(46px, 5vw, 68px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.05em;
    text-wrap: balance;
}

body:not(.page-home) .hero-services h1 {
    max-width: 14ch;
}

body:not(.page-home) .hero-contact h1,
body:not(.page-home) .hero-portfolio h1 {
    max-width: 15ch;
}

body:not(.page-home) .hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 28px;
}

body:not(.page-home) .about-highlights,
body:not(.page-home) .experience-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

body:not(.page-home) .highlight-item,
body:not(.page-home) .stat-item,
body:not(.page-home) .process-step-card,
body:not(.page-home) .addon-item,
body:not(.page-home) .faq-item,
body:not(.page-home) .service-item,
body:not(.page-home) .pricing-card,
body:not(.page-home) .contact-info,
body:not(.page-home) .contact-image,
body:not(.page-home) .contact-form-container,
body:not(.page-home) .portfolio-cta,
body:not(.page-home) .availability-note,
body:not(.page-home) .privacy-contact-cta {
    background: rgba(255, 253, 248, 0.82);
    border: 1px solid var(--site-line);
    border-radius: var(--site-radius-md);
    box-shadow: 0 12px 30px rgba(23, 20, 18, 0.06);
}

body:not(.page-home) .highlight-item,
body:not(.page-home) .stat-item {
    padding: 14px;
}

body:not(.page-home) .highlight-item strong,
body:not(.page-home) .stat-number {
    display: block;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

body:not(.page-home) .highlight-item span,
body:not(.page-home) .stat-label {
    display: block;
    margin-top: 8px;
    color: var(--site-muted);
    font-family: var(--site-mono);
    font-size: 12px;
    line-height: 1.45;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body:not(.page-home) .about-image img,
body:not(.page-home) .story-image img,
body:not(.page-home) .contact-image img {
    width: 100%;
    border-radius: var(--site-radius-sm);
    object-fit: cover;
    box-shadow: var(--site-shadow);
}

body:not(.page-home) .about-image img {
    max-width: 360px;
    min-height: 560px;
    margin-left: auto;
}

body:not(.page-home) .story-section,
body:not(.page-home) .services-overview,
body:not(.page-home) .experience-section,
body:not(.page-home) .pricing-section,
body:not(.page-home) .how-it-works,
body:not(.page-home) .addons-section,
body:not(.page-home) .faq-section,
body:not(.page-home) .contact-form-section,
body:not(.page-home) .portfolio-filters,
body:not(.page-home) .portfolio-gallery,
body:not(.page-home) .portfolio-cta-section {
    padding: 56px 0 0;
}

body:not(.page-home) .story-grid,
body:not(.page-home) .services-grid,
body:not(.page-home) .pricing-cards,
body:not(.page-home) .process-steps-grid,
body:not(.page-home) .addons-grid,
body:not(.page-home) .faq-grid,
body:not(.page-home) .gallery-grid {
    display: grid;
    gap: 22px;
}

body:not(.page-home) .story-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    align-items: start;
}

body:not(.page-home) .story-text > p,
body:not(.page-home) .experience-text > p,
body:not(.page-home) .faq-item p,
body:not(.page-home) .service-item p,
body:not(.page-home) .package-description,
body:not(.page-home) .addon-description,
body:not(.page-home) .ideal-for,
body:not(.page-home) .contact-info p,
body:not(.page-home) .contact-item p,
body:not(.page-home) .privacy-content li,
body:not(.page-home) .privacy-content p {
    color: #47423a;
    font-size: 14px;
    line-height: 1.65;
}

body:not(.page-home) .story-text > p + p,
body:not(.page-home) .experience-text > p + p,
body:not(.page-home) .privacy-content p + p {
    margin-top: 18px;
}

body:not(.page-home) .approach-points,
body:not(.page-home) .services-grid,
body:not(.page-home) .addons-grid,
body:not(.page-home) .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 28px;
}

body:not(.page-home) .approach-item,
body:not(.page-home) .service-item,
body:not(.page-home) .addon-item,
body:not(.page-home) .faq-item,
body:not(.page-home) .process-step-card {
    padding: 22px;
}

body:not(.page-home) .approach-item h3,
body:not(.page-home) .service-item h3,
body:not(.page-home) .faq-item h3,
body:not(.page-home) .process-step-card h3,
body:not(.page-home) .contact-item strong,
body:not(.page-home) .social-links h4 {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
}

body:not(.page-home) .pricing-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    margin-top: 28px;
}

body:not(.page-home) .pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 24px;
}

body:not(.page-home) .pricing-card.featured,
body:not(.page-home) .addon-item.highlight {
    background: linear-gradient(180deg, rgba(139, 94, 60, 0.08), rgba(255, 253, 248, 0.9));
    border-color: rgba(139, 94, 60, 0.18);
}

body:not(.page-home) .card-header h3 {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.1;
}

body:not(.page-home) .price,
body:not(.page-home) .addon-price {
    margin: 10px 0 4px;
    color: var(--site-accent);
    font-family: var(--site-display);
    font-size: 34px;
    line-height: 1;
}

body:not(.page-home) .scope {
    color: var(--site-muted);
}

body:not(.page-home) .features,
body:not(.page-home) .expertise-areas ul,
body:not(.page-home) .privacy-content ul {
    margin: 14px 0 0;
    padding-left: 18px;
}

body:not(.page-home) .features li,
body:not(.page-home) .expertise-areas li,
body:not(.page-home) .privacy-content li {
    margin-bottom: 8px;
}

body:not(.page-home) .card-footer {
    margin-top: auto;
    padding-top: 24px;
}

body:not(.page-home) .process-steps-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 28px;
}

body:not(.page-home) .step-number {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border-radius: 999px;
    background: var(--site-dark);
    color: #f7f5ef;
    font-family: var(--site-mono);
    font-size: 12px;
    font-weight: 700;
}

body:not(.page-home) .availability-note,
body:not(.page-home) .portfolio-cta,
body:not(.page-home) .privacy-contact-cta {
    padding: 26px;
    margin-top: 32px;
}

body:not(.page-home) .contact-form-container,
body:not(.page-home) .contact-info {
    padding: 26px;
}

body:not(.page-home) .contact-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

body:not(.page-home) .contact-form {
    display: grid;
    gap: 18px;
}

body:not(.page-home) .form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

body:not(.page-home) .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

body:not(.page-home) .form-group label,
body:not(.page-home) .checkbox-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--site-ink);
}

body:not(.page-home) input[type="text"],
body:not(.page-home) input[type="email"],
body:not(.page-home) input[type="tel"],
body:not(.page-home) select,
body:not(.page-home) textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--site-line);
    border-radius: 12px;
    background: var(--site-paper);
    color: var(--site-ink);
    font: inherit;
}

body:not(.page-home) textarea {
    resize: vertical;
    min-height: 140px;
}

body:not(.page-home) input:focus,
body:not(.page-home) select:focus,
body:not(.page-home) textarea:focus {
    outline: 2px solid rgba(139, 94, 60, 0.22);
    outline-offset: 1px;
    border-color: rgba(139, 94, 60, 0.35);
}

body:not(.page-home) .checkbox-group {
    padding-top: 6px;
}

body:not(.page-home) .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 500;
}

body:not(.page-home) .honeypot-field {
    position: absolute;
    left: -9999px;
}

body:not(.page-home) .contact-details,
body:not(.page-home) .social-links {
    margin-top: 32px;
}

body:not(.page-home) .contact-item + .contact-item {
    margin-top: 14px;
}

body:not(.page-home) .social-icons-contact {
    display: grid;
    gap: 14px;
}

body:not(.page-home) .social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(255, 253, 248, 0.88);
    border: 1px solid var(--site-line);
    border-radius: 12px;
    text-decoration: none;
}

body:not(.page-home) .social-link img {
    width: 18px;
    height: 18px;
}

body:not(.page-home) .filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

body:not(.page-home) .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 28px;
}

body:not(.page-home) .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--site-radius-md);
    background: rgba(255, 253, 248, 0.82);
    border: 1px solid var(--site-line);
    box-shadow: 0 12px 30px rgba(23, 20, 18, 0.06);
}

body:not(.page-home) .gallery-item picture,
body:not(.page-home) .gallery-item img {
    display: block;
    width: 100%;
}

body:not(.page-home) .gallery-item img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

body:not(.page-home) .gallery-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 16px;
    background: linear-gradient(180deg, rgba(23, 20, 18, 0) 0%, rgba(23, 20, 18, 0.72) 100%);
    color: #fff;
}

body:not(.page-home) .gallery-info h3,
body:not(.page-home) .gallery-info p,
body:not(.page-home) .gallery-category {
    margin: 0;
}

body:not(.page-home) .gallery-info h3 {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

body:not(.page-home) .gallery-info p,
body:not(.page-home) .gallery-category {
    font-family: var(--site-mono);
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
}

body:not(.page-home) .lightbox {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(12, 12, 16, 0.86);
}

body:not(.page-home) .lightbox-content {
    position: relative;
    width: min(1200px, 100%);
}

body:not(.page-home) .lightbox-image {
    width: 100%;
    max-height: 84vh;
    object-fit: contain;
    border-radius: 12px;
}

body:not(.page-home) .lightbox-close,
body:not(.page-home) .lightbox-prev,
body:not(.page-home) .lightbox-next {
    position: absolute;
    border: 0;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(8px);
}

body:not(.page-home) .lightbox-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    font-size: 28px;
    line-height: 1;
}

body:not(.page-home) .lightbox-nav {
    position: absolute;
    inset: 50% 0 auto 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

body:not(.page-home) .lightbox-prev,
body:not(.page-home) .lightbox-next {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    font-size: 28px;
    pointer-events: auto;
}

body:not(.page-home) .privacy-content {
    padding: 30px;
    background: rgba(255, 253, 248, 0.82);
    border: 1px solid var(--site-line);
    border-radius: var(--site-radius-md);
    box-shadow: 0 12px 30px rgba(23, 20, 18, 0.06);
}

body:not(.page-home) .privacy-content h2 {
    margin: 34px 0 14px;
    font-family: var(--site-display);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.05;
}

body:not(.page-home) .privacy-content h3 {
    margin: 22px 0 10px;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
}

body:not(.page-home) .last-updated {
    margin-bottom: 20px;
    color: var(--site-muted);
    font-family: var(--site-mono);
    font-size: 11px;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body:not(.page-home) .cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3500;
    display: none;
    padding: 8px max(24px, calc((100vw - 1140px) / 2)) 12px;
    background: rgba(29, 34, 27, 0.95);
    color: #f7f5ef;
    box-shadow: 0 -12px 28px rgba(23, 20, 18, 0.18);
}

body:not(.page-home) .cookie-banner p {
    margin: 0 0 6px;
    font-size: 12px;
    line-height: 1.4;
}

body:not(.page-home) .cookie-banner .cookie-accept,
body:not(.page-home) .cookie-banner .cookie-settings {
    margin-right: 6px;
}

body:not(.page-home) .main-footer {
    background: rgba(248, 249, 252, 0.96);
    border-top: 1px solid var(--site-line);
}

body:not(.page-home) .main-footer .container {
    width: min(1180px, 100%);
    padding: 18px 24px 14px;
}

body:not(.page-home) .footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 24px;
}

body:not(.page-home) .footer-section p,
body:not(.page-home) .footer-links a,
body:not(.page-home) .footer-legal p,
body:not(.page-home) .legal-links a,
body:not(.page-home) .footer-credit p {
    margin: 0;
    color: var(--site-muted);
    font-size: 12px;
    line-height: 1.5;
    text-decoration: none;
}

body:not(.page-home) .footer-section h3,
body:not(.page-home) .footer-section h4 {
    margin: 0 0 12px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

body:not(.page-home) .footer-links,
body:not(.page-home) .legal-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

body:not(.page-home) .footer-links li,
body:not(.page-home) .legal-links li {
    margin: 0 0 6px;
}

body:not(.page-home) .footer-social {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

body:not(.page-home) .footer-social img {
    width: 16px;
    height: 16px;
}

body:not(.page-home) .footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-end;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--site-line);
}

body:not(.page-home) .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

body:not(.page-home) .legal-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    body:not(.page-home) .main-nav {
        left: auto;
        right: -300px;
        width: 300px;
        height: 100vh;
        grid-template-columns: 1fr;
        align-items: start;
        gap: 18px;
        padding: 76px 22px 24px;
        box-shadow: -8px 0 32px rgba(29, 34, 27, 0.12);
        transition: right 0.22s cubic-bezier(0.16,1,0.3,1);
    }

    body:not(.page-home).nav-active .main-nav {
        right: 0;
    }

    body:not(.page-home) .hamburger-menu {
        display: inline-flex;
    }

    body:not(.page-home) .brand-name {
        font-size: 18px;
    }

    body:not(.page-home) .brand-role {
        font-size: 12px;
    }

    body:not(.page-home) .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    body:not(.page-home) .nav-links li,
    body:not(.page-home) .nav-links a {
        font-size: 12px;
    }

    body:not(.page-home) .nav-links .nav-divider,
    body:not(.page-home) .nav-links li p,
    body:not(.page-home) .content-wrapper {
        display: block;
    }

    body:not(.page-home) .content-wrapper {
        margin-top: auto;
    }

    body:not(.page-home) .social-icons {
        display: flex;
        gap: 12px;
    }

    body:not(.page-home) .social-icons img {
        width: 16px;
        height: 16px;
    }

    body:not(.page-home) main {
        padding: 82px 18px 68px;
    }

    body:not(.page-home) .about-hero-content,
    body:not(.page-home) .contact-grid,
    body:not(.page-home) .experience-content,
    body:not(.page-home) .story-grid,
    body:not(.page-home) .services-grid,
    body:not(.page-home) .pricing-cards,
    body:not(.page-home) .process-steps-grid,
    body:not(.page-home) .addons-grid,
    body:not(.page-home) .faq-grid,
    body:not(.page-home) .gallery-grid,
    body:not(.page-home) .footer-content,
    body:not(.page-home) .footer-bottom,
    body:not(.page-home) .form-row,
    body:not(.page-home) .about-highlights,
    body:not(.page-home) .experience-stats {
        grid-template-columns: 1fr;
    }

    body:not(.page-home) .hero-services h1,
    body:not(.page-home) .hero-contact h1,
    body:not(.page-home) .hero-portfolio h1,
    body:not(.page-home) .about-text h1,
    body:not(.page-home) .section-title,
    body:not(.page-home) .story-content h2,
    body:not(.page-home) .services-overview h2,
    body:not(.page-home) .experience-text h2,
    body:not(.page-home) .contact-form-container h2,
    body:not(.page-home) .contact-info h3,
    body:not(.page-home) .privacy-policy-section h1,
    body:not(.page-home) .portfolio-cta h2 {
        max-width: none;
        font-size: 33px;
        line-height: 0.98;
    }

    body:not(.page-home) .lead,
    body:not(.page-home) .hero-description,
    body:not(.page-home) .portfolio-cta .lead,
    body:not(.page-home) .contact-form-intro {
        font-size: 14px;
        line-height: 1.5;
    }

    body:not(.page-home) .about-image img,
    body:not(.page-home) .contact-image img {
        min-height: 0;
        aspect-ratio: 4 / 5;
    }

    body:not(.page-home) .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 8px 10px 10px;
        border-radius: 16px;
    }

    body:not(.page-home) .main-footer .container {
        padding: 16px 18px 14px;
    }
}
