/* ==============================================
   Patrice Sean Keller Photography
   Main Stylesheet - Consolidated for Performance
   ============================================== */

/* Font Faces with font-display: swap */
@font-face {
   font-family: 'BlackGold Regular';
   font-style: normal;
   font-weight: normal;
   src: local('BlackGold Regular'), url('fonts/blackgold-webfont/BlackGold_Personal_use.woff') format('woff');
   font-display: swap;
}
@font-face {
   font-family: 'Montserrat';
   src: url('fonts/Montserrat-Regular.ttf') format('truetype');
   font-weight: 400;
   font-style: normal;
   font-display: swap;
}
@font-face {
   font-family: 'Playfair Display';
   font-style: normal;
   font-weight: normal;
   src: local('Playfair Display Regular'), url('fonts/playfair-display-webfont/PlayfairDisplay-Regular.woff') format('woff');
   font-display: swap;
}

@font-face {
   font-family: 'Playfair Display';
   font-style: normal;
   font-weight: bold;
   src: local('Playfair Display Bold'), url('fonts/playfair-display-webfont/PlayfairDisplay-Bold.woff') format('woff');
   font-display: swap;
}

@font-face {
   font-family: 'Playfair Display';
   font-style: normal;
   font-weight: 900;
   src: local('Playfair Display Black'), url('fonts/playfair-display-webfont/PlayfairDisplay-Black.woff') format('woff');
   font-display: swap;
}

/* ==============================================
   CSS Variables & Color Palette
   Editorial Minimalism Design System
   ============================================== */

:root {
    /* Colors - Pure Editorial */
        --bg: #FFFFFF;
        --ink: #111111;
        --muted: #444444;
        --accent: #8B7A6F;
        --accent-soft: #F5F5F5;
    --card: #FFFFFF;
    --divider: #EAEAEA;

        /* Typography - Font Families */
        --font-display: "Playfair Display", "Times New Roman", serif;
        --font-body: "Montserrat", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;

        /* Typography - Font Sizes */
        --fs-h1: clamp(2rem, 4vw, 2.8rem);
        --fs-h2: clamp(1.8rem, 3.5vw, 2.4rem);
        --fs-h3: clamp(1.1rem, 2.5vw, 1.3rem);
        --fs-h4: 1rem;
        --fs-body: 1rem;
        --fs-small: 0.875rem;
        --fs-tiny: 0.75rem;

        /* Typography - Letter Spacing */
        --ls-display: 0.16em;
        --ls-nav: 0.12em;
        --ls-button: 0.1em;
        --ls-body: 0.01em;

        /* Typography - Line Heights */
        --lh-tight: 1.2;
        --lh-normal: 1.5;
        --lh-relaxed: 1.75;
        --lh-loose: 1.85;

        /* Spacing Scale */
        --space-xs: 0.5rem;
        --space-sm: 1rem;
        --space-md: 1.5rem;
        --space-lg: 2.5rem;
        --space-xl: 4rem;
        --space-2xl: 6rem;

    /* Borders & Lines */
        --border-width: 1px;
        --border-color: var(--divider);

        /* Transitions */
        --transition-fast: 140ms ease-out;
        --transition-base: 180ms ease-out;
        --transition-slow: 300ms ease-out;

        /* Effects - Minimal */
        --shadow: none;
        --radius: 0;
}

/* ==============================================
   Base Styles & Typography
   Editorial Minimalism
   ============================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--ink);
    line-height: var(--lh-relaxed);
        letter-spacing: var(--ls-body);
    overflow-x: hidden;
    font-size: var(--fs-body);
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity var(--transition-base);
    }

    a:hover {
        opacity: 0.7;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

/* Typography - Display (Headlines) */
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
        font-weight: normal;
        letter-spacing: var(--ls-display);
    margin: 0;
    color: var(--ink);
    text-transform: uppercase;
    line-height: var(--lh-tight);
}

h1 {
    font-size: var(--fs-h1);
}

h2 {
    font-size: var(--fs-h2);
}

h3 {
    font-size: var(--fs-h3);
}

h4 {
    font-size: var(--fs-h4);
}

/* Typography - Body Text */
p {
    margin: 0;
    font-family: var(--font-body);
    color: var(--muted);
    line-height: var(--lh-loose);
        letter-spacing: var(--ls-body);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Section Spacing */
section {
    padding: var(--space-2xl) 0;
    }

    @media (max-width: 768px) {
        section {
            padding: var(--space-xl) 0;
        }
}

/* ==============================================
   Navigation - Mobile First
   ============================================== */

.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg);
    border-bottom: var(--border-width) solid var(--divider);
    /* Safe area for iOS devices with notch */
    padding-top: env(safe-area-inset-top, 0);
}

.nav-inner {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    gap: 12px;
    min-height: 60px;
}

/* Brand / Logo */
.brand {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    z-index: 101;
    order: 1;
}

.brand .logo {
    height: 60px;
    width: auto;
    display: block;
}

/* Mobile Menu Toggle (Hamburger) */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    padding: 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
    order: 2;
    -webkit-tap-highlight-color: transparent;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger Animation when open */
.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Navigation Links - Mobile Default (hidden) */
.nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    order: 4;
    padding: 16px;
    font-family: var(--font-display);
    font-weight: normal;
    color: var(--ink);
    font-size: 1rem;
    letter-spacing: var(--ls-nav);
    text-transform: uppercase;
    background: var(--bg);
    border-top: var(--border-width) solid var(--divider);
}

/* Language Switch */
.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: var(--fs-tiny);
    letter-spacing: var(--ls-nav);
    text-transform: uppercase;
}

.lang-switch button {
    background: none;
    border: none;
    padding: 6px 2px;
    font-family: inherit;
    font-size: inherit;
    letter-spacing: inherit;
    text-transform: uppercase;
    color: var(--muted);
    cursor: pointer;
    transition: color 0.2s ease;
}

.lang-switch button:hover {
    color: var(--ink);
}

.lang-switch button.active {
    color: var(--ink);
    font-weight: 600;
}

.lang-divider {
    color: var(--muted);
    font-weight: 300;
}

/* Mobile Nav open state */
.nav-links.is-open {
    display: flex;
}

.nav-links a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 48px;
    padding: 14px 16px;
    transition: background-color 0.2s ease, color 0.2s ease;
    border-bottom: var(--border-width) solid var(--divider);
}

.nav-links a:last-child {
    border-bottom: none;
}

.nav-links a:hover,
.nav-links a:focus {
    background: var(--accent-soft);
    color: var(--ink);
    opacity: 1;
}

/* Focus visible for accessibility */
.nav-links a:focus-visible {
    outline: 2px solid var(--ink);
    outline-offset: -2px;
}

/* Instagram Link in Mobile Menu */
.nav-links .instagram-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 8px;
    padding: 14px 16px;
    border-bottom: none;
}

.nav-links .instagram-link::after {
    content: 'Instagram';
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: var(--ls-nav);
    text-transform: uppercase;
}

/* Instagram Link (standalone) */
.instagram-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    min-height: 48px;
    min-width: 48px;
    transition: opacity var(--transition-base);
}

.instagram-link:hover {
    opacity: 0.6;
}

.instagram-link svg {
    width: 22px;
    height: 22px;
}



/* ==============================================
   Tablet Breakpoint (768px+)
   ============================================== */
@media (min-width: 768px) {
    .nav-inner {
        padding: 20px 24px;
    }

    .brand .logo {
        height: 100px;
    }

    .lang-switch span {
        display: inline;
    }

    .nav-links {
        padding: 20px 24px;
    }

    .nav-links a {
        padding: 16px 20px;
    }
}

/* ==============================================
   Desktop Breakpoint (1024px+)
   ============================================== */
@media (min-width: 1024px) {
    .nav-inner {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        padding: 24px 48px;
        gap: 40px;
    }

    .brand {
        grid-column: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .brand .logo {
        height: 120px;
    }

    .mobile-menu-toggle {
        display: none;
    }

    /* Desktop Navigation Links */
    .nav-links {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 32px;
        padding: 0;
        border-top: none;
        background: transparent;
        font-size: var(--fs-tiny);
        font-family: var(--font-display);
        letter-spacing: var(--ls-nav);
        text-transform: uppercase;
        width: 100%;
    }

    .nav-links:first-of-type {
        grid-column: 1;
        justify-content: flex-end;
        padding-right: 0;
    }

    .nav-links:last-of-type {
        grid-column: 3;
        justify-content: flex-start;
        padding-left: 0;
    }

    .nav-links a {
        padding: 8px 0;
        min-height: auto;
        border-bottom: none;
        position: relative;
        transition: color 0.3s ease;
        display: inline-block;
        gap: 0;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--ink);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.3s ease;
    }

    .nav-links a:hover::after,
    .nav-links a:focus::after {
        transform: scaleX(1);
        transform-origin: left;
    }

    .nav-links a:hover,
    .nav-links a:focus {
        background: transparent;
        color: var(--ink);
    }

    .lang-switch {
        grid-column: 3;
        justify-self: end;
        white-space: nowrap;
        z-index: 95;
    }
}

/* ==============================================
   Large Desktop (1280px+)
   ============================================== */
@media (min-width: 1280px) {
    .nav-inner {
        padding: 32px 48px;
    }

    .brand .logo {
        height: 140px;
    }

    .nav-links,
    .nav-links-left,
    .nav-links-right {
        gap: 40px;
    }
}

/* ==============================================
   Header Overrides - Redesign
   ============================================== */

/* Header-specific variables */
:root {
    --header-height-mobile: auto;
    --header-padding-mobile: 12px 16px;
    --header-padding-tablet: 16px 32px;
    --header-padding-desktop: 20px 48px;
    --header-gap: 16px;
    --nav-gap-mobile: 20px;
    --nav-gap-tablet: 20px;
    --nav-gap-desktop: 28px;
    --logo-height-mobile: 80px;
        --logo-height-tablet: 100px;
        --logo-height-desktop: 120px;
    --header-transition: all 0.2s ease-out;
}

/* Header Container */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg);
    border-bottom: var(--border-width) solid var(--divider);
}

.nav-inner {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    padding: var(--header-padding-mobile);
    gap: var(--header-gap);
    max-width: 100%;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

/* Brand / Logo */
.brand {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 101;
    position: relative;
    left: auto;
    transform: none;
    order: 0;
}

.brand .logo {
    height: var(--logo-height-mobile);
    width: auto;
    display: block;
    transition: height var(--header-transition);
}

/* Mobile Menu Toggle (Hamburger) */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
    order: 1;
    margin-left: auto;
    flex-shrink: 0;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Navigation Links */
.nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--nav-gap-mobile);
    width: 100%;
    order: 2;
    padding: 24px 16px;
    font-family: var(--font-display);
    font-weight: normal;
    color: var(--ink);
    font-size: 0.875rem;
    letter-spacing: var(--ls-nav);
    text-transform: uppercase;
    margin: 0;
    list-style: none;
}

.nav-links.is-open {
    display: flex;
}

.nav-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 12px;
    color: var(--ink);
    text-decoration: none;
    transition: opacity var(--header-transition);
    font-size: 0.875rem;
    letter-spacing: var(--ls-nav);
}

.nav-links a:hover,
.nav-links a:focus {
    opacity: 0.6;
}

/* Instagram Link */
.instagram-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    min-height: 44px;
    min-width: 44px;
    padding: 0 8px;
    transition: opacity var(--header-transition);
    flex-shrink: 0;
}

.instagram-link:hover {
    opacity: 0.6;
}

.instagram-link svg {
    width: 20px;
    height: 20px;
}

/* Tablet (768px - 1023px) */
@media (min-width: 768px) {
    .nav-inner {
        flex-direction: column;
        padding: var(--header-padding-tablet);
        gap: var(--header-gap);
    }

    .brand {
        order: 0;
        margin-bottom: 8px;
    }

    .brand .logo {
        height: var(--logo-height-tablet);
    }

    .mobile-menu-toggle {
        display: none;
    }

    .nav-links-left,
    .nav-links-right {
        display: none !important;
    }

    .nav-links {
        display: flex;
        flex-direction: row;
        width: 100%;
        padding: 8px 16px;
        gap: var(--nav-gap-tablet);
        order: 1;
        justify-content: center;
        flex-wrap: wrap;
        max-width: 100%;
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-links a {
        padding: 8px 10px;
        font-size: 0.8rem;
        min-height: 40px;
    }

    .nav-links a:hover,
    .nav-links a:focus {
        opacity: 0.6;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .nav-inner {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: var(--header-padding-desktop);
        gap: 0;
        flex-wrap: nowrap;
    }

    .nav-links-left {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: var(--nav-gap-desktop);
        flex: 1;
        justify-content: flex-end;
        padding-right: 40px;
        order: 1;
    }

    .nav-links-left a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 6px 0;
        color: var(--ink);
        text-decoration: none;
        transition: opacity var(--header-transition);
        font-size: 0.75rem;
        letter-spacing: var(--ls-nav);
        white-space: nowrap;
        font-family: var(--font-display);
        text-transform: uppercase;
    }

    .nav-links-left a:hover,
    .nav-links-left a:focus {
        opacity: 0.6;
    }

    .brand {
        flex: 0 0 auto;
        order: 2;
        margin: 0 auto;
        position: relative;
        left: auto;
        transform: none;
    }

    .brand .logo {
        height: var(--logo-height-desktop);
    }

    .nav-links-right {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: var(--nav-gap-desktop);
        flex: 1;
        justify-content: flex-start;
        padding-left: 40px;
        order: 3;
    }

    .nav-links-right a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 6px 0;
        color: var(--ink);
        text-decoration: none;
        transition: opacity var(--header-transition);
        font-size: 0.75rem;
        letter-spacing: var(--ls-nav);
        white-space: nowrap;
        font-family: var(--font-display);
        text-transform: uppercase;
    }

    .nav-links-right a:hover,
    .nav-links-right a:focus {
        opacity: 0.6;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .nav-links a {
        padding: 6px 4px;
        min-height: auto;
        font-size: 0.75rem;
        letter-spacing: var(--ls-nav);
        white-space: nowrap;
    }

    .nav-links a:first-child {
        padding-left: 0;
    }

    .nav-links a:last-child {
        padding-right: 0;
    }
}

/* Large Desktop (1280px+) */
@media (min-width: 1280px) {
    .nav-inner {
        padding: 24px 64px;
    }

    .brand .logo {
        height: 56px;
    }

    .nav-links-left,
    .nav-links-right {
        gap: 32px;
    }
}

/* Utility: Visually hidden */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ==============================================
   Buttons - Editorial Minimalism
   ============================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
        background: transparent;
        color: var(--ink);
        padding: var(--space-sm) 0;
        border: none;
        border-bottom: var(--border-width) solid var(--ink);
    border-radius: 0;
    font-family: var(--font-display);
        font-weight: normal;
        font-size: var(--fs-small);
    text-transform: uppercase;
    letter-spacing: var(--ls-button);
    cursor: pointer;
    transition: border-color var(--transition-base), opacity var(--transition-base);
    text-decoration: none;
}

.btn:hover {
    opacity: 0.6;
        border-bottom-color: var(--muted);
}

.btn.secondary {
    border-bottom-color: var(--divider);
        color: var(--muted);
    }

    .btn.secondary:hover {
        border-bottom-color: var(--ink);
        color: var(--ink);
        opacity: 1;
}

/* ==============================================
   Hero Section
   ============================================== */

.hero {
    padding: clamp(60px, 11vw, 120px) 0 clamp(60px, 10vw, 120px);
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    align-items: center;
    gap: 32px;
}

.eyebrow {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: var(--ls-nav);
        font-size: var(--fs-small);
        font-weight: normal;
        color: var(--accent);
}

.hero h1 {
    margin: var(--space-sm) 0;
}

.hero-statement {
    line-height: 1.3;
    letter-spacing: 0.05em;
}

.hero p {
    font-size: 1.125rem;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.hero-image::after {
    display: none;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 5;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
        padding: var(--space-sm) var(--space-md);
        border-radius: 0;
        background: transparent;
        border: var(--border-width) solid var(--divider);
        color: var(--ink);
        font-family: var(--font-body);
        font-weight: 400;
        font-size: var(--fs-small);
}

/* ==============================================
   Components (Cards, Quotes, Tags, etc.)
   ============================================== */

/* Section Headers */
.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
    padding-bottom: var(--space-md);
    border-bottom: var(--border-width) solid var(--divider);
}

.section-header p {
    max-width: 520px;
}

.section-note {
    color: var(--muted);
    font-size: var(--fs-small);
        margin-top: var(--space-xs);
}

/* Cards - Editorial Flat */
.card {
    background: var(--card);
    border-radius: 0;
        padding: var(--space-lg);
        box-shadow: none;
    position: relative;
    border: var(--border-width) solid var(--divider);
}

.card h3 {
    margin-bottom: var(--space-sm);
    color: var(--accent);
}

.card p {
    font-size: var(--fs-body);
}

/* Service Cards (Flip Effect) */
.service-grid {
    perspective: 1200px;
}

.service-card {
    cursor: pointer;
    min-height: 260px;
    position: relative;
}

.service-card .card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
}

/* Desktop: Hover flip, Mobile: via .is-flipped */
@media (hover: hover) and (pointer: fine) {
    .service-card:hover .card-inner {
        transform: rotateY(180deg);
    }
}

/* Click/Tap flip */
.service-card.is-flipped .card-inner {
    transform: rotateY(180deg);
}

.service-card .card-face {
    position: absolute;
    inset: 0;
    padding: 20px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    display: grid;
    align-content: center;
    gap: 10px;
}

.service-card .card-face.front {
    background: var(--card);
    border: var(--border-width) solid var(--divider);
}
.service-card .card-face.back {
    transform: rotateY(180deg);
    background: var(--card);
    border-radius: 0;
    border: var(--border-width) solid var(--divider);
}

.service-card h4 {
    margin: 0;
    color: var(--accent);
}

.service-card .card-face.back p {
    color: var(--muted);
}

/* Price Details Styling */
.price-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-main {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.1;
}

.price-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 0.88rem;
    color: var(--muted);
}

.price-info > div {
    line-height: 1.3;
}

.price-note {
    margin-top: 2px;
    font-size: 0.82rem;
    color: var(--muted);
    font-style: italic;
}

/* Focus state for keyboard navigation */
.service-card:focus-visible {
    outline: 2px solid var(--ink);
    outline-offset: 2px;
}
/* Feature Cards */
.feature-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.feature-card img {
    border-radius: 0;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

/* Tags */
.tag {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: normal;
    font-size: var(--fs-tiny);
    letter-spacing: var(--ls-nav);
    text-transform: uppercase;
    color: var(--accent);
}

/* Quote */
.quote {
    background: transparent;
    color: var(--ink);
    border-radius: 0;
    padding: 0;
    border: none;
}

.quote h2,
.quote h3,
.quote p {
    color: inherit;
}

.quote h3 {
    margin-top: 0;
    margin-bottom: var(--space-sm);
}

.quote p {
    max-width: 680px;
}

/* Price Cards */
.prices {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
}

.price-card {
    border: var(--border-width) solid var(--divider);
    border-radius: 0;
    padding: var(--space-md);
    background: var(--card);
    color: var(--ink);
    box-shadow: none;
}

.price-card h4 {
    margin: 0 0 var(--space-xs);
    font-family: var(--font-display);
}

.price-card p {
    margin: 0;
    color: var(--muted);
}

/* ==============================================
   Layout & Grid Systems
   ============================================== */

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

/* Process Steps */
.process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    counter-reset: step;
}

.process .step {
    padding: 16px 16px 18px;
    border: none;
    border-radius: var(--radius);
    background: #FFFFFF;
    box-shadow: 0 12px 24px rgba(32, 22, 14, 0.06);
}

.process .step h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
}

.process .step h3::before {
    counter-increment: step;
    content: counter(step);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
}

.gallery-grid .frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    isolation: isolate;
}

.gallery-grid .frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 5;
    transition: transform 0.4s ease;
}

.gallery-grid .frame:hover img {
    transform: scale(1.04);
}

/* About Section */
.about {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
    align-items: center;
}

.about img {
    width: 100%;
    border-radius: var(--radius);
    object-fit: cover;
    aspect-ratio: 4 / 5;
}

/* CTA Section */
.cta {
    background: transparent;
    color: var(--ink);
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
    border: none;
}

.cta .cta-header {
    order: 1;
    grid-column: 1 / -1;
}

.cta .quote {
    order: 2;
    grid-column: 1 / -1;
    margin-top: 8px;
}

.cta form.contact-form {
    order: 3;
    grid-column: 1 / -1;
    width: 100%;
}

.cta .form-status {
    order: 4;
    grid-column: 1 / -1;
}
.cta h2,
.cta p {
    color: inherit;
}

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

/* Tablet/Desktop CTA */
@media (min-width: 768px) {
    .cta {
        grid-template-columns: 1fr;
        gap: 40px;
    }
        .cta .cta-header {
            order: 1;
            grid-column: 1 / -1;
        }

        .cta .quote {
            order: 2;
            grid-column: 1 / -1;
        }

        .cta form.contact-form {
            order: 3;
            grid-column: 1 / -1;
        }

        .cta .form-status {
            order: 4;
            grid-column: 1 / -1;
        }
        }
}

/* ==============================================
   Forms & Contact
   ============================================== */

.contact-list {
    margin-top: 16px;
        font-family: var(--font-display);
        font-size: var(--fs-small);
        letter-spacing: 0.05em;
    color: var(--muted);
}

.contact-list a {
    font-weight: 400;
    color: var(--ink);
    text-decoration: none;
        transition: opacity 0.2s ease;
    }

    .contact-list a:hover {
        opacity: 0.6;
}

/* Contact Form */
form.contact-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px 14px;
    margin-top: 16px;
}

.contact-form .field {
    display: grid;
    gap: 6px;
}

.contact-form .field.full {
    grid-column: 1 / -1;
}

.contact-form label {
    font-family: var(--font-display);
        font-weight: normal;
        font-size: var(--fs-tiny);
        letter-spacing: var(--ls-nav);
        text-transform: uppercase;
    color: var(--ink);
}

.contact-form .hint {
    font-size: var(--fs-body);
    color: var(--muted);
}

.contact-form input,
.contact-form textarea {
    border: none;
    border-bottom: var(--border-width) solid var(--divider);
    border-radius: 0;
    padding: var(--space-sm) 0;
        font-family: var(--font-body);
        font-size: var(--fs-body);
        background: transparent;
        color: var(--ink);
        transition: border-bottom-color var(--transition-base);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid var(--ink);
        outline-offset: 2px;
        border-bottom-color: var(--ink);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--muted);
        opacity: 0.6;
}

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

.contact-form button {
    justify-content: center;
    grid-column: 1 / -1;
    margin-top: 4px;
}

/* Form Status Messages */
.form-status {
    margin-top: 10px;
    font-size: var(--fs-body);
    color: var(--muted);
}

.form-status.success {
    color: var(--accent);
}

.form-status.error {
    color: #b0453f;
}

/* ==============================================
   Footer
   ============================================== */

footer {
    padding: 32px 0 50px;
    text-align: center;
    color: var(--muted);
    font-size: var(--fs-small);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-primary {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    width: 100%;
}

.footer-note {
    margin: 0;
    max-width: 720px;
    text-align: center;
    line-height: 1.5;
}

.footer-links {
    margin-top: 8px;
}

.footer-link-btn {
    background: none;
    border: none;
    color: var(--muted);
    font-size: var(--fs-small);
    font-family: inherit;
    cursor: pointer;
    padding: 0;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    cursor: pointer;
}

.modal-content {
    position: relative;
    background: var(--bg);
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 40px;
    z-index: 10000;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    color: var(--ink);
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.modal-close:hover {
    opacity: 0.6;
}

.modal-content h2 {
    font-size: var(--fs-h2);
    margin-bottom: 24px;
    padding-right: 40px;
}

.impressum-body {
    line-height: 1.8;
    font-size: var(--fs-body);
}

.impressum-body p {
    margin: 0;
}

.impressum-body a {
    color: var(--accent);
    text-decoration: none;
}

.impressum-body a:hover {
    text-decoration: underline;
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 32px 24px;
        max-height: 90vh;
    }
    
    .modal-close {
        top: 12px;
        right: 12px;
    }
}

/* ==============================================
   Responsive Design - Mobile First Breakpoints
   ============================================== */

/* Prevent horizontal overflow */
html,
body {
    overflow-x: hidden;
    width: 100%;
}

/* Container with Mobile-First Padding */
.container {
    padding: 0 16px;
    max-width: 100%;
    width: 100%;
}

/* Fluid Typography */
.hero h1,
.hero-statement {
    font-size: clamp(32px, 7vw, 56px);
    line-height: 1.15;
    margin: 12px 0 16px;
    word-break: break-word;
    hyphens: auto;
}

h2,
.section-header h2 {
    font-size: clamp(24px, 5vw, 36px);
    line-height: 1.25;
}

body {
    font-size: 16px;
    line-height: 1.6;
}

.hero p {
    font-size: clamp(15px, 3.5vw, 18px);
    line-height: 1.65;
}

.eyebrow {
    font-size: 0.9rem;
    }

/* Hero Section - Mobile First */
.hero {
    padding: 24px 0 40px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.hero-grid> :first-child {
    order: 1;
}

.hero-grid> :last-child {
    order: 2;
}

.hero-image {
    max-width: 100%;
    margin: 0 auto;
    }

.hero-image img {
    aspect-ratio: 4 / 5;
    width: 100%;
        height: auto;
    max-height: 480px;
        object-fit: cover;
}

/* Hero Actions - Full width stacked */
.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.hero-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 52px;
    font-size: 0.9rem;
    padding: 14px 24px;
    text-align: center;
}

.pill {
    margin-top: 16px;
    padding: 12px 16px;
    font-size: 0.85rem;
}

/* About Section - Mobile First */
.about {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

.about .hero-image {
    max-width: 100%;
    margin: 0 auto;
}

.about img {
    aspect-ratio: 4 / 5;
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: cover;
    margin: 0 auto;
}

/* Section Headers - Mobile First */
.section-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
        margin-bottom: 24px;
    }

.section-header p {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: var(--space-sm);
    }

    .section-note {
    font-size: 0.85rem;
    margin-top: var(--space-xs);
    }

/* Grids - Mobile First (1 column) */
.grid,
#approach .grid,
.service-grid,
.process {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    gap: 16px;
    overflow-x: visible;
}

/* Gallery Grid - 2 columns from 360px */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    overflow-x: visible;
}

@media (max-width: 359px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        }
        }

.gallery-grid img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

/* Feature Cards */
.feature-card img {
    aspect-ratio: 4 / 5;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Cards - Mobile First */
.card,
.quote {
    padding: 20px;
}

.card h3 {
    font-size: 1.1rem;
}

.card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-card {
    min-height: 240px;
}

.price-main {
    font-size: 1.5rem;
}

.price-info {
    font-size: 0.85rem;
}

/* CTA Section - Mobile First */
.cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
        padding: 0;
    }
.cta> :first-child {
    order: 1;
}

.cta> :last-child {
    order: 2;
}
.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
}

/* Contact Form - Mobile First */
.contact-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.contact-form .field {
    grid-column: auto;
}
.contact-form .field.full {
    grid-column: auto;
}

/* Input-Styling for iOS (no zoom) */
.contact-form input,
.contact-form textarea,
.contact-form select {
    font-size: 16px !important;
    padding: 14px 0;
    min-height: 48px;
    -webkit-appearance: none;
        appearance: none;
    }

    .contact-form input[type="date"],
    .contact-form input[type="number"] {
        min-height: 48px;
        padding: 14px 0;
}

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

.contact-form button {
    width: 100%;
    min-height: 52px;
    font-size: 1rem;
    margin-top: 8px;
}

.contact-list {
    font-size: 0.8rem;
        margin-top: 16px;
    }

/* Form Status */
.form-status {
    margin-top: 16px;
    padding: 12px;
    font-size: 0.95rem;
}

/* Section & Footer Spacing - Mobile First */
section {
    padding: 40px 0;
}

footer {
    padding: 28px 0 36px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
        text-align: center;
        gap: 16px;
    font-size: 0.9rem;
}

/* Touch Targets - Min 44px */
a,
button,
input,
select,
textarea {
    min-height: 44px;
}

/* Very Small Devices (max-width: 359px) */
@media (max-width: 359px) {
    .container {
        padding: 0 12px;
    }

        .hero h1,
        .hero-statement {
            font-size: clamp(28px, 8vw, 32px);
    }

    .btn {
        font-size: 0.8rem;
        padding: 12px 16px;
    }

    .card,
    .quote {
        padding: 16px;
    }
        .gallery-grid {
            gap: 6px;
        }
}

/* Small Mobile (360px - 479px) */
@media (min-width: 360px) {
    .container {
        padding: 0 16px;
    }

        .gallery-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
    }
}

/* Large Mobile (480px - 767px) */
@media (min-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-image,
    .about .hero-image {
        max-width: 100%;
    }

        .hero-image img {
            max-height: 520px;
        }

    .contact-form {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .contact-form .field.full {
        grid-column: 1 / -1;
    }

    section {
        padding: 48px 0;
    }

    .hero {
        padding: 32px 0 48px;
    }
        .service-grid {
            grid-template-columns: repeat(2, 1fr);
        }
}

/* Tablet (768px - 1023px) */
@media (min-width: 768px) {
    .container {
        padding: 0 24px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
    }
        .hero-grid> :first-child {
            order: 1;
        }
        .hero-grid> :last-child {
            order: 2;
        }
        .hero-image,
        .about .hero-image {
            max-width: 100%;
        }

        .hero-image img {
            max-height: none;
        }
        .hero-actions {
            flex-direction: row;
        }

        .hero-actions .btn {
            width: auto;
        }

        .about {
            grid-template-columns: 1fr minmax(auto, 45%);
            gap: 40px;
        }
        .section-header {
            flex-direction: row;
            align-items: flex-end;
            justify-content: space-between;
        }

        .grid,
        #approach .grid,
        .service-grid,
        .process {
            grid-template-columns: repeat(2, 1fr);
        }

        .price-main {
            font-size: 1.9rem;
        }

        .service-card {
            min-height: 260px;
        }

        .gallery-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }
        .about {
            grid-template-columns: 1fr minmax(auto, 40%);
            gap: 40px;
        }
        .cta {
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

                .cta-header {
                    grid-column: 1 / -1;
                }

                .contact-form {
                    grid-column: 1;
                }

                .quote {
                    grid-column: 2;
                }
        .form-status {
            grid-column: 1 / -1;
        }

        .cta-actions {
            flex-direction: row;
        }

        .cta-actions .btn {
            width: auto;
        }
        section {
            padding: 64px 0;
        }
        .hero {
            padding: 48px 0 64px;
        }

        footer {
            padding: 36px 0 44px;
        }

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

        .footer-primary {
            justify-content: space-between;
        }
        }

/* Desktop (1024px - 1279px) */
@media (min-width: 1024px) {
       .container {
           padding: 0 48px;
       }
        .hero-grid {
            gap: 48px;
        }
        #approach .grid,
        .service-grid {
            grid-template-columns: repeat(3, 1fr);
        }
        .process {
            grid-template-columns: repeat(4, 1fr);
        }
        .gallery-grid {
            grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    section {
        padding: 80px 0;
    }

    .hero {
        padding: 60px 0 80px;
    }
    }

/* Large Desktop (1280px+) */
@media (min-width: 1280px) {
       .container {
           max-width: 1200px;
           padding: 0 24px;
           margin: 0 auto;
       }
        .hero-grid {
            gap: 56px;
        }

        section {
        padding: 100px 0;
    .hero {
        padding: 80px 0 100px;
    }
    }

/* Extra Large Desktop (1920px+) */
@media (min-width: 1920px) {
       .container {
           max-width: 1400px;
       }
   }

/* Landscape Mode for Phones */
@media (max-width: 920px) and (orientation: landscape) {
    .hero {
        padding: 24px 0 32px;
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
        .hero-grid> :first-child {
            order: 1;
        }
        .hero-grid> :last-child {
            order: 2;
        }

        .hero h1 {
        font-size: clamp(24px, 5vw, 32px);
        }

        section {
            padding: 32px 0;
        }
        }

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
            scroll-behavior: auto !important;
    }
}

/* ==============================================
   Mobile-Specific Optimizations
   ============================================== */

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    button,
    a,
    input,
    select,
    textarea {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.05);
    }

        .gallery-grid img:hover {
        transform: none;
    }

        .btn:hover {
            opacity: 1;
        }
        .service-card:hover .card-inner {
            transform: none;
        }

        .service-card.is-flipped .card-inner {
            transform: rotateY(180deg);
        }
    .service-card {
        touch-action: manipulation;
    }

    .service-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
        .nav-links {
            -webkit-overflow-scrolling: touch;
            scroll-behavior: smooth;
    }
}

/* iOS Specific Fixes */
@media screen and (max-width: 768px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    input[type="number"],
    textarea,
    select {
        font-size: 16px !important;
    }
}

/* Safe Area for iPhone with Notch/Dynamic Island */
@supports (padding: max(0px)) {
    body {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }

        .nav {
            padding-top: env(safe-area-inset-top);
    }
        .nav-links.is-open {
            padding-bottom: max(16px, env(safe-area-inset-bottom));
        }

        footer {
            padding-bottom: max(28px, env(safe-area-inset-bottom));
    }
        .container {
            padding-left: max(16px, env(safe-area-inset-left));
            padding-right: max(16px, env(safe-area-inset-right));
        }

        @media (min-width: 768px) {
            .container {
                padding-left: max(24px, env(safe-area-inset-left));
                padding-right: max(24px, env(safe-area-inset-right));
            }
        }
}

/* Image Optimizations */
img {
    content-visibility: auto;
}

img[loading="lazy"] {
    background-color: var(--accent-soft);
}
.hero-image img,
.gallery-grid img,
.about img,
.feature-card img {
    background-color: var(--accent-soft);
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

        .service-card .card-inner {
            transition: none;


        .gallery-grid img {
            transition: none;
        }
}

/* Reduce box-shadows on mobile */
@media (max-width: 767px) {
    .process .step {
        box-shadow: 0 4px 12px rgba(32, 22, 14, 0.04);
    }
}

/* Accessibility Enhancements */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--ink);
    outline-offset: 2px;
}

.nav-links.is-open a:focus-visible {
    outline: 2px solid var(--ink);
    outline-offset: -2px;
    background: var(--accent-soft);
}
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ink);
    color: var(--bg);
    padding: 12px 24px;
    z-index: 1000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 10px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --divider: #000000;
        --muted: #000000;
    }

        .btn {
            border-width: 2px;
    .nav-links a {
        border-bottom-width: 2px;
    }
    }

    @media (max-width: 767px) {

        .gallery-grid {
            mask-image: none;
            -webkit-mask-image: none;
        }

        .gallery-grid img {
            display: block;
        }
        }

        @media (max-width: 1023px) {
            .service-card {
                cursor: pointer;
            }

            .service-card::after {
                content: '';
                position: absolute;
                bottom: 8px;
                right: 8px;
                width: 24px;
                height: 24px;
                background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23999'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M15 15l-2 5L9 9l11 4-5 2zm0 0l5 5M7.188 2.239l.777 2.897M5.136 7.965l-2.898-.777M13.95 4.05l-2.122 2.122m-5.657 5.656l-2.12 2.122'/%3E%3C/svg%3E");
                background-size: contain;
                opacity: 0.4;
                pointer-events: none;
            }

            .service-card.is-flipped::after {
                opacity: 0;
            }
}

/* Print Styles */
@media print {
    .nav,
    .mobile-menu-toggle,
    .lang-switch,
    .hero-actions,
    .cta-actions,
    footer {
        display: none !important;
    }

        body {
            font-size: 12pt;
            line-height: 1.5;
            color: #000;
            background: #fff;
        }

        .container {
            max-width: 100%;
            padding: 0;
    }

        img {
            max-width: 100%;
            page-break-inside: avoid;
    }
}
