/* =========================================
   ATTE LESKINEN PHOTOGRAPHY — DESIGN SYSTEM
   v2 — Refined visual direction
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --color-bg: #ffffff;
    --color-surface: #f7f7f7;
    --color-border: #e5e5e5;
    --color-text-primary: #111111;
    --color-text-secondary: #6b6b6b;
    --color-text-muted: #aaaaaa;
    --color-accent: #111111;
    --color-accent-hover: #333333;
    --color-overlay: rgba(0, 0, 0, 0.38);

    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 32px;
    --space-lg: 64px;
    --space-xl: 96px;
    --space-2xl: 140px;

    --container-max: 1280px;
    --text-max: 680px;
    --gutter: 48px;
    --section-pad: var(--space-xl);
}

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

html {
    scroll-behavior: smooth;
}

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

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* --- Container --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* --- Typography --- */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
}

h1.hero-title {
    font-size: clamp(52px, 7vw, 88px);
    color: #fff;
    letter-spacing: -0.5px;
}

h1.page-title {
    font-size: clamp(36px, 4vw, 56px);
}

h2 {
    font-size: clamp(28px, 3vw, 42px);
}

h3 {
    font-size: clamp(18px, 1.8vw, 24px);
}

.label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.pullquote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(20px, 2.2vw, 28px);
    line-height: 1.5;
    color: var(--color-text-primary);
}

p {
    color: var(--color-text-secondary);
}

p.lead {
    font-size: 18px;
    color: var(--color-text-secondary);
    max-width: var(--text-max);
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 0;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-primary {
    background: var(--color-accent);
    color: #fff;
    border: 1.5px solid var(--color-accent);
}

.btn-primary:hover {
    background: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
}

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

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

.btn-ghost {
    background: transparent;
    color: var(--color-text-primary);
    border: none;
    padding: 0;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--color-text-primary);
    padding-bottom: 2px;
}

.btn-ghost:hover {
    color: var(--color-text-secondary);
    border-bottom-color: var(--color-text-secondary);
}

/* =========================================
   HEADER
   ========================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--color-border);
    backdrop-filter: blur(8px);
}

.header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--gutter);
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.site-logo {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--color-text-primary);
    white-space: nowrap;
}

.site-logo span {
    font-style: italic;
    color: var(--color-text-secondary);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.main-nav a {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    transition: color 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--color-text-primary);
}

.header-right {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.lang-switcher {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: flex;
    gap: 4px;
    color: var(--color-text-muted);
}

.lang-switcher a {
    color: var(--color-text-muted);
    transition: color 0.2s;
}

.lang-switcher a.active {
    color: var(--color-text-primary);
}

.lang-switcher a:hover {
    color: var(--color-text-primary);
}

.lang-divider {
    color: var(--color-border);
}

/* =========================================
   HERO
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
}

.hero-image img {
    object-position: center center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.62) 0%,
            rgba(0, 0, 0, 0.18) 50%,
            rgba(0, 0, 0, 0.05) 100%);
}

.hero-content {
    position: absolute;
    bottom: var(--space-2xl);
    left: 0;
    right: 0;
    padding: 0 var(--gutter);
    max-width: var(--container-max);
    margin: 0 auto;
}

.hero-content .label {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: var(--space-sm);
}

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

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: var(--space-md);
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

/* =========================================
   SECTIONS — Generic
   ========================================= */
section {
    padding: var(--section-pad) 0;
}

.section-label {
    margin-bottom: var(--space-sm);
}

.section-header {
    margin-bottom: var(--space-lg);
}

/* =========================================
   INTRO / PHILOSOPHY
   ========================================= */
.intro-section {
    padding: var(--space-2xl) 0;
    border-bottom: 1px solid var(--color-border);
}

.intro-inner {
    max-width: var(--text-max);
    margin: 0 auto;
    text-align: center;
}

.intro-inner .pullquote {
    margin-bottom: var(--space-md);
}

/* =========================================
   PORTFOLIO CATEGORIES GRID (2×2)
   ========================================= */
.categories-section {
    padding: var(--section-pad) 0;
}

.categories-section h2 {
    margin-bottom: var(--space-lg);
    text-align: center;
}

.categories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.category-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.category-card img {
    transition: transform 0.6s ease;
}

.category-card:hover img {
    transform: scale(1.04);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-md);
    transition: background 0.3s;
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.68) 0%, transparent 55%);
}

.category-overlay .label {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 6px;
}

.category-overlay h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    color: #fff;
}

.category-arrow {
    display: inline-block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 8px;
    font-family: var(--font-body);
    font-weight: 500;
    transition: color 0.2s;
}

.category-card:hover .category-arrow {
    color: #fff;
}

/* =========================================
   FEATURED WORK (Split)
   ========================================= */
.featured-section {
    padding: var(--section-pad) 0;
    background: var(--color-surface);
}

.featured-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 540px;
}

.featured-row.reverse {
    direction: rtl;
}

.featured-row.reverse>* {
    direction: ltr;
}

.featured-image {
    overflow: hidden;
}

.featured-text {
    padding: var(--space-2xl) var(--space-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-md);
}

.featured-text .label {
    margin-bottom: 0;
}

.featured-text h2 {
    font-size: clamp(28px, 2.5vw, 38px);
}

.featured-text p {
    max-width: 420px;
}

/* =========================================
   ABOUT TEASER (50/50)
   ========================================= */
.about-teaser {
    padding: var(--section-pad) 0;
}

.about-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about-image-wrap {
    aspect-ratio: 3/4;
    overflow: hidden;
}

.about-text {
    padding: var(--space-lg) 0;
}

.about-text .label {
    margin-bottom: var(--space-sm);
}

.about-text h2 {
    margin-bottom: var(--space-md);
}

.about-text p {
    margin-bottom: var(--space-md);
    max-width: 480px;
}

/* =========================================
   TESTIMONIAL
   ========================================= */
.testimonial-section {
    padding: var(--space-2xl) 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

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

.testimonial-inner .quote-mark {
    font-family: var(--font-heading);
    font-size: 96px;
    line-height: 0.6;
    color: var(--color-border);
    margin-bottom: var(--space-md);
    display: block;
}

.testimonial-inner .pullquote {
    margin-bottom: var(--space-md);
}

.testimonial-author {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

/* =========================================
   CTA BANNER
   ========================================= */
.cta-banner {
    padding: var(--space-2xl) 0;
    background: var(--color-surface);
    text-align: center;
}

.cta-banner h2 {
    margin-bottom: var(--space-sm);
}

.cta-banner p {
    margin-bottom: var(--space-md);
    color: var(--color-text-secondary);
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    background: var(--color-text-primary);
    color: rgba(255, 255, 255, 0.6);
    padding: var(--space-xl) 0 var(--space-lg);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: var(--space-xl);
    align-items: start;
    margin-bottom: var(--space-xl);
}

.footer-brand .site-logo {
    color: #fff;
    margin-bottom: var(--space-sm);
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    max-width: 240px;
    line-height: 1.6;
}

.footer-nav h4 {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: var(--space-md);
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-nav a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-links a {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s;
}

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

/* =========================================
   PAGE HEADER (inner pages)
   ========================================= */
.page-header {
    padding-top: calc(72px + var(--space-xl));
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--color-border);
}

.page-header .label {
    margin-bottom: var(--space-sm);
}

.page-header h1 {
    margin-bottom: var(--space-sm);
}

.breadcrumb {
    font-size: 13px;
    color: var(--color-text-muted);
    display: flex;
    gap: 8px;
    margin-bottom: var(--space-sm);
}

.breadcrumb a {
    color: var(--color-text-muted);
}

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

.breadcrumb span {
    color: var(--color-border);
}

/* =========================================
   PORTFOLIO PREVIEW (Homepage 3×2 grid)
   ========================================= */
.portfolio-preview {
    padding: var(--space-xl) 0 0;
}

.portfolio-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-top: var(--space-lg);
}

.preview-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    background: var(--color-surface);
}

.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease, opacity 0.35s ease;
}

.preview-item:hover img {
    transform: scale(1.05);
    opacity: 0.88;
}

.preview-item-tall {
    aspect-ratio: 3/4;
}

.preview-item-wide {
    aspect-ratio: 16/7;
}

/* =========================================
   FULL-BLEED EDGE-TO-EDGE IMAGE BREAK
   ========================================= */
.full-bleed {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 0;
}

.full-bleed img {
    width: 100%;
    height: 70vh;
    min-height: 480px;
    object-fit: cover;
    display: block;
}

.full-bleed-caption {
    position: absolute;
    bottom: var(--space-lg);
    left: var(--gutter);
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* =========================================
   SERVICES OVERVIEW (homepage strip)
   ========================================= */
.services-strip {
    padding: var(--space-xl) 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.services-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.service-strip-item {
    padding: var(--space-md) var(--space-md) var(--space-md) 0;
    border-right: 1px solid var(--color-border);
}

.service-strip-item:last-child {
    border-right: none;
}

.service-strip-item .label {
    margin-bottom: var(--space-sm);
}

.service-strip-item h3 {
    font-size: 20px;
    margin-bottom: var(--space-sm);
}

.service-strip-item p {
    font-size: 14px;
    line-height: 1.7;
}

.service-strip-item a {
    display: inline-block;
    margin-top: var(--space-sm);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-text-primary);
    border-bottom: 1px solid var(--color-text-primary);
    padding-bottom: 2px;
    transition: opacity 0.2s;
}

.service-strip-item a:hover {
    opacity: 0.55;
}

/* =========================================
   LIGHTBOX
   ========================================= */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.93);
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.lightbox-overlay.open {
    display: flex;
}

.lightbox-overlay img {
    max-width: 88vw;
    max-height: 88vh;
    width: auto;
    height: auto;
    object-fit: contain;
    box-shadow: 0 32px 96px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.2s;
}

.lightbox-close:hover {
    color: #fff;
}

/* =========================================
   PORTFOLIO HUB
   ========================================= */
.portfolio-filter {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 0;
}

.filter-btn {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: var(--space-sm) 0;
    margin-bottom: -1px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
}

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

.filter-btn.active {
    color: var(--color-text-primary);
    border-bottom-color: var(--color-text-primary);
}

.portfolio-grid {
    columns: 3;
    column-gap: 8px;
}

.portfolio-item {
    break-inside: avoid;
    margin-bottom: 8px;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-item img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.55s ease, opacity 0.35s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
    opacity: 0.87;
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: var(--space-2xl);
    align-items: start;
    padding: var(--section-pad) 0;
}

.contact-info .label {
    margin-bottom: var(--space-sm);
}

.contact-info h2 {
    margin-bottom: var(--space-md);
}

.contact-info p {
    margin-bottom: var(--space-lg);
}

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-item h4 {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 15px;
    color: var(--color-text-primary);
    margin: 0;
}

/* Simulated Fluent Form */
.fluent-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--color-border);
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-text-primary);
    background: var(--color-bg);
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
}

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

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

/* =========================================
   CLIENT GALLERY ENTRY PAGE
   ========================================= */
.gallery-entry {
    padding: var(--section-pad) 0;
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
}

.gallery-entry-inner {
    max-width: 560px;
}

.gallery-entry .label {
    margin-bottom: var(--space-sm);
}

.gallery-entry h1 {
    margin-bottom: var(--space-md);
    font-size: clamp(32px, 3.5vw, 48px);
}

.gallery-entry p {
    margin-bottom: var(--space-xl);
}

.gallery-entry-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    border-left: 2px solid var(--color-border);
    padding-left: var(--space-md);
}

.gallery-step {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gallery-step .step-num {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.gallery-step p {
    font-size: 15px;
    color: var(--color-text-primary);
    margin: 0;
}

/* === Gallery itself (Sunshine mockup) === */
.gallery-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: var(--space-md);
}

.gallery-header-bar h2 {
    font-size: 22px;
    margin: 0;
}

.gallery-meta {
    font-size: 13px;
    color: var(--color-text-muted);
}

.gallery-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.photo-thumb {
    position: relative;
    aspect-ratio: 3/2;
    overflow: hidden;
    cursor: pointer;
}

.photo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.2s;
}

.photo-thumb:hover img {
    opacity: 0.85;
}

.photo-select {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.photo-select.selected {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.photo-select.selected::after {
    content: '✓';
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.selection-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--color-border);
    padding: 14px var(--gutter);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 90;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.06);
}

.selection-bar .selection-count {
    font-size: 14px;
    font-weight: 500;
}

.selection-bar .selection-count span {
    font-weight: 600;
}

.selection-actions {
    display: flex;
    gap: var(--space-sm);
}

/* =========================================
   SERVICES PAGE
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin: var(--section-pad) 0;
}

.service-card {
    padding: var(--space-xl);
    background: var(--color-surface);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.service-card .label {
    color: var(--color-text-muted);
}

.service-card h3 {
    font-size: 26px;
}

.service-card p {
    font-size: 15px;
    flex: 1;
}

.service-card .price {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--color-text-primary);
}

.service-card .price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text-muted);
    font-family: var(--font-body);
}

/* =========================================
   UTILITY
   ========================================= */
.mt-sm {
    margin-top: var(--space-sm);
}

.mt-md {
    margin-top: var(--space-md);
}

.mt-lg {
    margin-top: var(--space-lg);
}

.flex-gap {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
}

.text-center {
    text-align: center;
}

.pt-header {
    padding-top: calc(72px + var(--space-xl));
}

.hidden {
    display: none;
}