﻿/*
Theme Name: PixelPro Theme
Author: Thanos
Version: 2.0
*/

/* =========================================================
   1) Design Tokens
   ========================================================= */
:root {
    /* Palette */
    --bg:           #000000;
    --bg-deep:      #000000;
    --bg-raised:    #000000;

    --line:         rgba(255, 255, 255, 0.08);
    --line-soft:    rgba(255, 255, 255, 0.05);

    --text:         #ede9e1;          /* warm off-white β€” not pure white */
    --text-muted:   rgba(237, 233, 225, 0.65);
    --text-faint:   rgba(237, 233, 225, 0.38);

    /* Typography */
    --font-heading: "Outfit", "Avenir Next", "Helvetica Neue", sans-serif;
    --font-body:    "Outfit", "Avenir Next", "Helvetica Neue", sans-serif;
    --font-minimal: "Outfit", "Avenir Next", "Helvetica Neue", sans-serif;

    /* Layout */
    --gutter:         clamp(1.2rem, 3.5vw, 4rem);
    --edge-pad:       clamp(1.2rem, 4vw, 60px);
    --hero-pad:       clamp(1.2rem, 5vw, 80px);
    --section-space:  clamp(6rem, 10vw, 12rem);
    --measure:        54ch;
    --header-h:       80px;

    /* Motion */
    --ease-out:    400ms cubic-bezier(0.16, 1, 0.3, 1);
    --ease-std:    300ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================================
   2) Base Reset
   ========================================================= */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 0.9;
}

p { margin: 0; }

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

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

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

.site {
    overflow-x: clip;
    animation: site-fadein 400ms ease-out both;
}

@keyframes site-fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* =========================================================
   3) Layout Primitives
   ========================================================= */
.container {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    padding-inline: var(--gutter);
}

.lensory-homepage .container,
.lensory-homepage .row,
.lensory-homepage .wpb_row,
.lensory-homepage .vc_row-fluid {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.section {
    padding-block: var(--section-space);
}

.lensory-contact-page .contact-page-main {
    padding-top: calc(var(--header-h) + 1rem);
}

.lensory-contact-page .contact-hub {
    padding-top: clamp(2.4rem, 5vw, 4.4rem);
}

/* Eyebrow label β€” shared across sections */
.section-heading__eyebrow {
    display: block;
    margin-bottom: 1rem;
    color: var(--text-faint);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.section-heading__title {
    font-size: clamp(3rem, 7.5vw, 8rem);
    line-height: 0.88;
}

/* =========================================================
   4) Header β€” Floating, no glass box
   ========================================================= */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    width: 100%;
    /* Block padding only β€” horizontal comes from .container inside */
    padding-block: 1.6rem;
    padding-inline: 0;
    background: linear-gradient(
        to bottom,
        rgba(6, 6, 6, 0.68) 0%,
        rgba(6, 6, 6, 0) 100%
    );
    pointer-events: none;
}

.site-header__inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    pointer-events: auto;
    position: relative;
    width: 100%;
    padding-inline: var(--edge-pad);
}

/* Logo */
.site-brand {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 40px;
    color: var(--text);
    transition: opacity var(--ease-std);
}

.site-brand__logo {
    display: block;
    width: clamp(36px, 3.4vw, 52px);
    height: auto;
}

.site-brand__monogram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-brand:hover {
    opacity: 0.75;
}

/* Navigation β€” true center via flex-grow trick */
.site-nav {
    position: absolute;
    left: 50%;
    transform: translateX(calc(-50% - 18px));
    flex: 0 0 auto;
    min-width: max-content;
    display: flex;
    justify-content: center;
}

.site-nav__list {
    display: flex;
    align-items: center;
    gap: clamp(1.4rem, 2.8vw, 3rem);
}

.site-nav__item a {
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: color var(--ease-std);
}

.site-nav__item a:hover,
.site-nav__item a:focus-visible {
    color: var(--text);
}

/* Gold nav link — "Lensory" */
.nav-gold {
    color: #c7a558 !important;
}
.nav-gold:hover,
.nav-gold:focus-visible {
    color: #e0c07a !important;
}

.site-header__menu-toggle {
    display: none;
    margin-left: auto;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    background: rgba(8, 8, 8, 0.78);
    color: var(--text);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    transition: border-color var(--ease-std), background var(--ease-std);
}

.site-header__menu-toggle:hover,
.site-header__menu-toggle:focus-visible {
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(10, 10, 10, 0.9);
}

.site-header__menu-line {
    width: 18px;
    height: 1.5px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 260ms ease, opacity 220ms ease;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 120;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 320ms ease;
}

.mobile-menu__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.mobile-menu__panel {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    padding: clamp(5.5rem, 10vw, 7.5rem) clamp(1.4rem, 5vw, 2.4rem) clamp(2rem, 6vw, 3rem);
    transform: translateY(16px);
    transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.mobile-menu__label {
    color: var(--text-faint);
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.mobile-menu__close {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    background: rgba(0, 0, 0, 0.24);
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
}

.mobile-menu__nav {
    display: grid;
    gap: 0.9rem;
}

.mobile-menu__link {
    color: rgba(237, 233, 225, 0.96);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 8.4vw, 3.6rem);
    line-height: 0.95;
    letter-spacing: -0.01em;
}

.mobile-menu__social {
    display: grid;
    gap: 0.55rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line-soft);
}

.mobile-menu__social a {
    color: var(--text-muted);
    font-size: 0.92rem;
    letter-spacing: 0.05em;
}

.mobile-menu__social a:hover,
.mobile-menu__social a:focus-visible {
    color: var(--text);
}

.mobile-menu--open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu--open .mobile-menu__panel {
    transform: translateY(0);
}

body.mobile-menu-open {
    overflow: hidden;
}

body.mobile-menu-open .site-header__menu-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

body.mobile-menu-open .site-header__menu-line:nth-child(2) {
    opacity: 0;
}

body.mobile-menu-open .site-header__menu-line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* CTA β€” Elegant outline button */
.site-header__cta {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.5rem;
    border: 1px solid rgba(237, 233, 225, 0.3);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: border-color var(--ease-std), background var(--ease-std);
}

.site-header__cta:hover,
.site-header__cta:focus-visible {
    border-color: rgba(237, 233, 225, 0.7);
    background: rgba(237, 233, 225, 0.06);
    opacity: 1;
}

/* =========================================================
   5) Hero β€” Full-screen editorial cover
   ========================================================= */
.hero {
    --flash-x: 52%;
    --flash-y: 42%;
    position: relative;
    isolation: isolate;
    width: 100vw;
    height: 100svh;
    min-height: 620px;
    display: grid;
    align-items: end;
    overflow: clip;
    background: var(--bg-deep);
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: none;
    transform-origin: center center;
}

/* Cinematic overlay β€” left side for text, right side photo visible */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(to right,  rgba(6, 6, 6, 0.78) 0%, rgba(6, 6, 6, 0.48) 30%, rgba(6, 6, 6, 0.08) 56%, rgba(6, 6, 6, 0) 72%),
        linear-gradient(to top,    rgba(6, 6, 6, 0.92) 0%, rgba(6, 6, 6, 0.10) 40%, transparent 65%);
}

.hero__flash {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    background:
        radial-gradient(
            circle at var(--flash-x) var(--flash-y),
            rgba(255, 255, 255, 0.98) 0%,
            rgba(255, 255, 255, 0.72) 14%,
            rgba(255, 255, 255, 0.34) 36%,
            rgba(255, 255, 255, 0.08) 58%,
            rgba(255, 255, 255, 0) 74%
        ),
        radial-gradient(
            circle at center,
            rgba(255, 255, 255, 0.16) 0%,
            rgba(255, 255, 255, 0.05) 48%,
            rgba(255, 255, 255, 0) 76%
        );
}

.hero.hero--flash .hero__flash {
    animation: hero-camera-flash 460ms cubic-bezier(0.18, 0.78, 0.28, 1) both;
}

@keyframes hero-camera-flash {
    0%   { opacity: 0; }
    12%  { opacity: 0.97; }
    28%  { opacity: 0.46; }
    100% { opacity: 0; }
}

/* Content β€” pinned bottom-left, text occupies left column only */
.hero__content {
    /* Override .container width: 100% β€” content stays left, photo shows right */
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
    padding-inline: var(--hero-pad);
    padding-bottom: clamp(4.5rem, 9svh, 9rem);
    padding-top: calc(var(--header-h) + 2rem);
}

.hero__title {
    font-family: var(--font-minimal);
    font-size: clamp(3.2rem, 9.4vw, 7.8rem);
    font-weight: 300;
    line-height: 0.9;
    letter-spacing: -0.012em;
    margin-bottom: 1.35rem;
    max-width: min(11ch, 58vw);
}

/* Subtitle group β€” three <p> elements read as one block */
.hero__subtitle {
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: clamp(0.92rem, 1.4vw, 1.2rem);
    font-weight: 300;
    letter-spacing: 0.04em;
    line-height: 1.6;
    display: block;
}

.hero__subtitle + .hero__subtitle {
    margin-top: 0.1rem;
}

/* Scroll β€” vertical editorial indicator */
.hero__scroll {
    position: absolute;
    right: var(--gutter);
    bottom: calc(4.8rem + env(safe-area-inset-bottom, 0px));
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-faint);
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transition: color var(--ease-std);
}

.hero__scroll::before {
    content: "";
    display: block;
    width: 1px;
    height: 3.5rem;
    background: currentColor;
    transition: height var(--ease-out);
}

.hero__scroll:hover,
.hero__scroll:focus-visible {
    color: var(--text-muted);
    opacity: 1;
}

.hero__scroll:hover::before {
    height: 5rem;
}

/* =========================================================
   6) Services Stack - Premium Layered Panels
   ========================================================= */
.services-stack {
    position: relative;
    background: var(--bg);
    padding-top: var(--section-space);
    padding-bottom: clamp(3rem, 5vw, 5.5rem);
    overflow: clip;
}

.services-stack > .container {
    padding-inline: 0;
}

.services-stack .section-heading {
    padding-inline: var(--edge-pad);
    max-width: calc(600px + (2 * var(--edge-pad)));
    margin-bottom: clamp(2.2rem, 4.5vw, 4rem);
}

.services-stack__cards {
    display: block;
    padding-inline: clamp(0.9rem, 2.2vw, 2.2rem);
    padding-bottom: clamp(2.8rem, 5svh, 4.8rem);
    position: relative;
    isolation: isolate;
}

.service-card {
    --service-stage-gap: clamp(16px, 2vw, 26px);
    position: sticky;
    top: calc(var(--header-h) + var(--service-stage-gap));
    height: clamp(
        460px,
        calc(100svh - var(--header-h) - (var(--service-stage-gap) * 2)),
        760px
    );
    border-radius: clamp(18px, 2vw, 30px);
    overflow: hidden;
    isolation: isolate;
    background: var(--service-tone, #1a1a1a);
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.28);
}

.service-card + .service-card {
    margin-top: clamp(0.8rem, 1.5vw, 1.25rem);
    box-shadow:
        0 -24px 42px rgba(0, 0, 0, 0.36),
        0 34px 82px rgba(0, 0, 0, 0.46);
}

.service-card--1 { z-index: 1; }
.service-card--2 { z-index: 2; }
.service-card--3 { z-index: 3; }
.service-card--4 { z-index: 4; }
.service-card--5 { z-index: 5; }

.service-card__visual {
    position: absolute;
    inset: 0;
    background-color: var(--service-tone, #1a1a1a);
    background-image: var(--service-image);
    background-size: cover;
    background-position: center;
    opacity: 1;
    transition: opacity 400ms ease, transform 400ms ease;
    z-index: 0;
}

.service-card::before {
    content: none;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.74) 0%,
            rgba(0, 0, 0, 0.44) 34%,
            rgba(0, 0, 0, 0.22) 58%,
            rgba(0, 0, 0, 0.34) 100%
        ),
        linear-gradient(
            to right,
            rgba(0, 0, 0, 0.24) 0%,
            rgba(0, 0, 0, 0.08) 45%,
            rgba(0, 0, 0, 0.24) 100%
        );
    z-index: 1;
}

.service-card__content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: grid;
    grid-template-rows: auto 1fr auto;
    padding: clamp(1.1rem, 1.9vw, 1.9rem) clamp(1.2rem, 2.4vw, 2.2rem) clamp(1.3rem, 2.4vw, 2rem);
}

.service-card__meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.service-card__tag {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0.22rem 0.72rem;
    border-radius: 999px;
    border: 1px solid rgba(239, 237, 232, 0.34);
    color: rgba(239, 237, 232, 0.92);
    font-family: var(--font-body);
    font-size: 0.69rem;
    font-weight: 500;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    margin-inline: auto;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.service-card__date {
    color: rgba(239, 237, 232, 0.9);
    font-family: var(--font-heading);
    font-size: clamp(0.85rem, 1vw, 1.1rem);
    font-weight: 500;
    letter-spacing: 0.04em;
}

.service-card__stretched-link {
    position: absolute;
    inset: 0;
    z-index: 4;
    border-radius: inherit;
}

.service-card__stretched-link:focus-visible {
    outline: 2px solid rgba(239, 237, 232, 0.78);
    outline-offset: -2px;
}

.service-card__title {
    justify-self: center;
    align-self: center;
    margin-bottom: 0;
    width: 100%;
    color: rgba(239, 237, 232, 0.95);
    font-size: clamp(4rem, 12vw, 11rem);
    line-height: 0.82;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.68);
}

.service-card__text {
    justify-self: center;
    align-self: end;
    text-align: center;
    max-width: 54ch;
    color: rgba(239, 237, 232, 0.82);
    font-size: clamp(0.88rem, 1vw, 1rem);
    line-height: 1.6;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}

.service-card:hover .service-card__visual,
.service-card:focus-within .service-card__visual {
    opacity: 1;
    transform: scale(1.01);
}

.service-card--1 { --service-tone: #181818; --service-image: url("assets/images/service-1.jpg"); }
.service-card--2 { --service-tone: #1c1c1c; --service-image: url("assets/images/service-2.jpg"); }
.service-card--3 { --service-tone: #1d1d1d; --service-image: url("assets/images/service-4.jpg"); }
.service-card--4 { --service-tone: #181818; --service-image: url("assets/images/service-5.jpg"); }
.service-card--5 { --service-tone: #1e1e1e; --service-image: url("assets/images/service-6.jpg"); }

@supports (animation-timeline: view()) {
    .service-card {
        animation-name: service-panel-exit;
        animation-duration: 1ms;
        animation-timing-function: linear;
        animation-timeline: view();
        animation-range: exit 28% exit 82%;
    }

    .service-card__visual {
        animation-name: service-visual-settle;
        animation-duration: 1ms;
        animation-timing-function: linear;
        animation-timeline: view();
        animation-range: entry 0% cover 32%;
    }
}

@keyframes service-panel-exit {
    from { opacity: 1; }
    to   { opacity: 1; }
}

@keyframes service-visual-settle {
    from { transform: scale(1); }
    to   { transform: scale(1); }
}

/* =========================================================
   7) About β€" Editorial 50/50 flex layout
   ========================================================= */
.photographer-bio {
    background: var(--bg-deep);
    padding-top: clamp(2.4rem, 4vw, 4.5rem);
    padding-bottom: clamp(1.3rem, 2.4vw, 2.2rem);
}

/* Keep bio section tighter (not full-width) */
.lensory-homepage .photographer-bio .container.photographer-bio__grid {
    width: min(100%, 1240px) !important;
    max-width: 1240px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-inline: clamp(1rem, 3.2vw, 2.6rem);
}

/* Two columns side-by-side β€" text left, image right */
.photographer-bio__grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(0.45rem, 1vw, 1.1rem);
    width: min(100%, 1240px) !important;
    max-width: 1240px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-inline: clamp(1rem, 3.2vw, 2.6rem) !important;
}

/* Left column: text */
.photographer-bio__content {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
    padding-right: clamp(0.55rem, 1.3vw, 1.4rem);
}

.photographer-bio__content .section-heading__title {
    font-size: clamp(2.2rem, 4.5vw, 5.1rem);
    max-width: 14ch;
    margin-top: 0.4rem;
}

.photographer-bio__content p {
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.72;
    max-width: 46ch;
}

/* ── Bio CTA ──────────────────────────────────────────── */

.bio-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: 0.5rem;
    padding: 0.7rem 1.5rem 0.7rem 0;
    color: #c7a558;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid rgba(199, 165, 88, 0.35);
    transition: gap 280ms var(--ease-out), border-color 280ms ease, color 280ms ease;
    width: fit-content;
}

.bio-cta:hover {
    gap: 0.9rem;
    border-color: rgba(199, 165, 88, 0.75);
    color: #d4b56a;
}

.bio-cta__arrow {
    display: flex;
    align-items: center;
    transition: transform 280ms var(--ease-out);
}

.bio-cta:hover .bio-cta__arrow {
    transform: translateX(4px);
}

/* Right column: image */
.photographer-bio__media {
    flex: 0 0 46% !important;
    aspect-ratio: 4 / 5;
    position: relative;
    background: var(--bg-deep);
    overflow: hidden;
}

/* Side fade so image blends into section background */
.photographer-bio__media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(
            to right,
            rgba(0, 0, 0, 0.96) 0%,
            rgba(0, 0, 0, 0.62) 16%,
            rgba(0, 0, 0, 0.18) 34%,
            rgba(0, 0, 0, 0) 50%
        ),
        linear-gradient(
            to left,
            rgba(0, 0, 0, 0.70) 0%,
            rgba(0, 0, 0, 0.20) 22%,
            rgba(0, 0, 0, 0) 42%
        );
}

/* Top/bottom vignette to remove hard photo edges */
.photographer-bio__media::after {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: 3;
    pointer-events: none;
    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.44) 0%,
            rgba(0, 0, 0, 0.10) 34%,
            rgba(0, 0, 0, 0.10) 68%,
            rgba(0, 0, 0, 0.52) 100%
        ),
        radial-gradient(
            82% 72% at 50% 50%,
            rgba(0, 0, 0, 0) 44%,
            rgba(0, 0, 0, 0.24) 100%
        );
}

.photographer-bio__media img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
    transition: transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
    transform: scale(1);
    image-rendering: auto;
}

.photographer-bio__media:hover img,
.photographer-bio__media:focus-within img {
    transform: scale(1.01);
}

/* =========================================================
   8) Extra Services β€” Asymmetric mosaic
   ========================================================= */
.extra-services {
    background: var(--bg);
    padding-top: clamp(3.4rem, 7vw, 6rem) !important;
    padding-bottom: clamp(3.4rem, 6vw, 5rem) !important;
    margin-top: clamp(1rem, 2.4vw, 2.2rem) !important;
    margin-bottom: 0 !important;
}

.extra-services .section-heading {
    margin-bottom: clamp(1.8rem, 3.8vw, 3.2rem);
    max-width: none;
}

.extra-services .section-heading__title {
    font-size: clamp(2.35rem, 6vw, 5.6rem);
    line-height: 0.9;
    letter-spacing: -0.01em;
}

/* 4-column row */
.extra-services__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.72rem, 1.1vw, 1.12rem);
}

.extra-service {
    --extra-position: center center;
    position: relative;
    isolation: isolate;
    min-height: clamp(340px, 33vw, 540px);
    padding: clamp(0.95rem, 1.45vw, 1.35rem);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.42rem;
    background: var(--bg-raised);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.14);
    overflow: hidden;
    transition:
        transform 360ms cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.extra-service::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: var(--extra-image);
    background-size: cover;
    background-position: var(--extra-position);
    background-repeat: no-repeat;
    opacity: 1;
    filter: brightness(1.12) contrast(1.03) saturate(0.94);
    transform: scale(1);
    transition:
        transform 700ms cubic-bezier(0.16, 1, 0.3, 1),
        opacity   500ms ease,
        filter    500ms ease;
    image-rendering: auto;
}

.extra-service::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
        to top,
        rgba(6, 6, 6, 0.46) 0%,
        rgba(6, 6, 6, 0.18) 50%,
        rgba(6, 6, 6, 0.04) 100%
    );
}

.extra-service:hover::before,
.extra-service:focus-within::before {
    transform: scale(1.012);
    opacity: 1;
    filter: brightness(1.18) contrast(1.04) saturate(0.96);
}

.extra-service:hover,
.extra-service:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.24);
}

/* Image assignment per card */
.extra-service:nth-child(1) {
    --extra-image: url("assets/images/extra-1.jpg");
    --extra-position: center 58%;
}
.extra-service:nth-child(2) {
    --extra-image: url("assets/images/extra-2.jpg");
    --extra-position: center 52%;
}
.extra-service:nth-child(3) {
    --extra-image: url("assets/images/extra-3.jpg");
    --extra-position: center 48%;
}
.extra-service:nth-child(4) {
    --extra-image: url("assets/images/extra-4.jpg");
    --extra-position: center 52%;
}

.extra-service__title {
    position: relative;
    z-index: 1;
    font-size: clamp(1.12rem, 1.68vw, 1.88rem);
    line-height: 0.95;
    letter-spacing: -0.01em;
    color: var(--text);
}

.extra-service__text {
    position: relative;
    z-index: 1;
    max-width: 30ch;
    color: rgba(237, 233, 225, 0.78);
    font-size: clamp(0.74rem, 0.8vw, 0.86rem);
    font-weight: 300;
    line-height: 1.45;
}

.extra-service__stretched-link {
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: inherit;
}

.extra-service__stretched-link:focus-visible {
    outline: 2px solid rgba(199, 165, 88, 0.85);
    outline-offset: -2px;
}

/* =========================================================
   9) Client Reviews
   ========================================================= */
.client-reviews {
    background: var(--bg);
    padding-top: clamp(3.4rem, 6vw, 5rem);
    padding-bottom: clamp(3.4rem, 6vw, 5rem);
}

.client-reviews .section-heading {
    margin-bottom: clamp(1.1rem, 2vw, 1.8rem);
}

.client-reviews__heading {
    max-width: min(760px, 100%);
}

.client-reviews .section-heading__title {
    font-size: clamp(2rem, 4.3vw, 3.6rem);
    line-height: 0.9;
}

.client-reviews__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem 1.2rem;
    margin-bottom: clamp(1.1rem, 2vw, 1.9rem);
}

.client-reviews__summary-card {
    display: flex;
    align-items: center;
    gap: 0.75rem 1rem;
    flex-wrap: wrap;
    padding: 0;
}

.client-reviews__score-wrap {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.client-reviews__score {
    color: var(--text);
    font-size: clamp(1.08rem, 1.5vw, 1.3rem);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.client-reviews__stars,
.client-review-card__stars {
    display: inline-flex;
    align-items: center;
    gap: 0.16rem;
    flex-wrap: wrap;
}

.client-reviews__star,
.client-review-card__star {
    display: inline-flex;
    color: rgba(251, 188, 5, 0.26);
    line-height: 1;
    letter-spacing: 0;
}

.client-reviews__star.is-active,
.client-review-card__star.is-active {
    color: rgba(251, 188, 5, 0.92);
}

.client-reviews__star {
    font-size: 0.84rem;
}

.client-review-card__star {
    font-size: 0.76rem;
}

.client-reviews__count {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.client-reviews__all-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0.5rem 0.95rem;
    border: 1px solid rgba(199, 165, 88, 0.45);
    border-radius: 999px;
    color: #d7b86a;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    transition: border-color var(--ease-std), background var(--ease-std), color var(--ease-std);
}

.client-reviews__all-link:hover,
.client-reviews__all-link:focus-visible {
    border-color: rgba(199, 165, 88, 0.8);
    background: rgba(199, 165, 88, 0.1);
    color: #e0c273;
}

.client-reviews__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.72rem, 1.2vw, 0.95rem);
}

.client-reviews__marquee {
    --client-reviews-gap: clamp(0.72rem, 1.2vw, 0.95rem);
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 3%, #000 97%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 3%, #000 97%, transparent 100%);
}

.client-reviews__track {
    display: flex;
    align-items: stretch;
    gap: var(--client-reviews-gap);
    width: max-content;
    animation: client-reviews-drift-right var(--client-reviews-duration, 96s) linear infinite;
    will-change: transform;
}

.client-reviews__marquee:hover .client-reviews__track,
.client-reviews__marquee:focus-within .client-reviews__track {
    animation-play-state: paused;
}

.client-review-card {
    border: 1px solid var(--line-soft);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.02);
    min-height: 100%;
    transition: border-color var(--ease-std), background var(--ease-std);
}

.client-review-card:hover,
.client-review-card:focus-within,
.client-review-card[open] {
    border-color: rgba(199, 165, 88, 0.26);
    background: rgba(255, 255, 255, 0.028);
}

.client-review-card__toggle {
    display: flex;
    flex-direction: column;
    gap: 0.72rem;
    padding: clamp(1rem, 1.25vw, 1.15rem);
    cursor: pointer;
    list-style: none;
}

.client-review-card__toggle:focus-visible {
    outline: none;
}

.client-review-card__toggle::-webkit-details-marker {
    display: none;
}

.client-review-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.9rem;
}

.client-review-card__identity {
    display: flex;
    flex-direction: column;
    gap: 0.32rem;
}

.client-review-card__author {
    margin: 0;
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.3;
}

.client-review-card__score {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.client-review-card__meta {
    margin: 0;
    color: var(--text-faint);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.client-review-card__text {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.86rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.client-review-card[open] .client-review-card__text {
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
}

.client-reviews--slider .client-review-card {
    flex: 0 0 clamp(230px, 23vw, 312px);
    width: clamp(230px, 23vw, 312px);
}

@keyframes client-reviews-drift-right {
    from {
        transform: translateX(calc(-50% - (var(--client-reviews-gap, 1rem) / 2)));
    }

    to {
        transform: translateX(0);
    }
}

.client-reviews--notice {
    padding-top: 0.2rem;
}

.client-reviews__notice {
    margin: 0;
    padding: 0.8rem 0.9rem;
    border: 1px dashed var(--line);
    border-radius: 10px;
    color: var(--text-muted);
    font-size: 0.82rem;
}

@media (max-width: 1180px) {
    .client-reviews__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .client-reviews--slider .client-review-card {
        flex-basis: clamp(220px, 32vw, 296px);
        width: clamp(220px, 32vw, 296px);
    }
}

/* =========================================================
   10) Contact
   ========================================================= */
.contact-section {
    background: var(--bg);
    padding-top: clamp(3.4rem, 6vw, 5rem);
    padding-bottom: clamp(4rem, 6.4vw, 6.2rem);
}

.contact-section__grid {
    position: relative;
    width: min(100%, 1160px) !important;
    max-width: 1160px !important;
    margin-inline: auto !important;
    margin-top: clamp(3.2rem, 6vw, 5.2rem) !important;
    direction: ltr;
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: stretch;
    justify-content: space-between;
    gap: 0;
    border: 1px solid var(--line-soft);
    background: rgba(255, 255, 255, 0.01);
}

/* Override global full-width .container rule only for Contact */
.lensory-homepage .contact-section__grid {
    width: min(100%, 1160px) !important;
    max-width: 1160px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.contact-section__corner {
    position: absolute;
    z-index: 5;
    color: #c7a558;
    font-family: var(--font-body);
    font-size: clamp(1.8rem, 2vw, 2.2rem);
    font-weight: 300;
    line-height: 1;
    pointer-events: none;
}

.contact-section__corner--tl {
    top: 0;
    left: 0;
    transform: translate(-50%, -55%);
}

.contact-section__corner--tr {
    top: 0;
    right: 0;
    transform: translate(50%, -55%);
}

.contact-section__corner--bl {
    bottom: 0;
    left: 0;
    transform: translate(-50%, 55%);
}

.contact-section__corner--br {
    bottom: 0;
    right: 0;
    transform: translate(50%, 55%);
}

.contact-section__content {
    order: 1;
    flex: 1 1 auto !important;
    min-width: 0;
    padding:
        clamp(0.7rem, 1vw, 0.95rem)
        clamp(1rem, 1.8vw, 1.7rem)
        clamp(2.2rem, 3.6vw, 3rem);
    text-align: left;
}

.contact-section__content .section-heading {
    max-width: none;
    margin-bottom: 0;
}

.contact-section__content .section-heading__title {
    font-size: clamp(2rem, 3.9vw, 3.8rem);
    line-height: 0.9;
    max-width: 11ch;
    margin-bottom: 0.7rem;
}

.contact-section__lead {
    max-width: 50ch;
    color: var(--text-muted);
    font-size: clamp(0.9rem, 0.95vw, 0.98rem);
    line-height: 1.62;
}

.contact-section__details {
    margin-top: clamp(0.8rem, 1.2vw, 1.2rem);
    display: grid;
    gap: 0.62rem;
}

.contact-section__details li {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.9rem;
    align-items: baseline;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid var(--line-soft);
    color: var(--text-muted);
}

.contact-section__label {
    min-width: 92px;
    color: var(--text-faint);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-section__details a {
    color: var(--text);
}

.contact-section__form {
    order: 2;
    flex: 0 0 clamp(330px, 29vw, 430px) !important;
    width: clamp(330px, 29vw, 430px) !important;
    max-width: 430px;
    margin-left: 0;
    margin-top: clamp(2.4rem, 4.4vw, 3.8rem);
    border-left: 1px solid var(--line-soft);
    background: rgba(255, 255, 255, 0.015);
    padding:
        clamp(0.7rem, 1vw, 0.95rem)
        clamp(0.9rem, 1.4vw, 1.15rem)
        clamp(2.35rem, 4vw, 3.1rem);
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
}

.contact-section__field {
    display: flex;
    flex-direction: column;
    gap: 0.38rem;
}

.contact-section__field--full {
    grid-column: auto;
}

.contact-section__field label {
    color: var(--text-faint);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-section__field input,
.contact-section__field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.24);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.88rem;
    padding: 0.58rem 0.68rem;
    transition: border-color var(--ease-std), background var(--ease-std);
}

.contact-section__field input::placeholder,
.contact-section__field textarea::placeholder {
    color: var(--text-faint);
}

.contact-section__field input:focus,
.contact-section__field textarea:focus {
    outline: none;
    border-color: rgba(237, 233, 225, 0.4);
    background: rgba(255, 255, 255, 0.04);
}

.contact-section__field textarea {
    min-height: 96px;
    resize: vertical;
}

.contact-section__submit {
    grid-column: auto;
    min-height: 36px;
    border: 1px solid rgba(199, 165, 88, 0.46);
    border-radius: 8px;
    background: rgba(237, 233, 225, 0.06);
    color: rgba(237, 233, 225, 0.96);
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color var(--ease-std), background var(--ease-std);
}

.contact-section__submit:hover,
.contact-section__submit:focus-visible {
    border-color: rgba(199, 165, 88, 0.78);
    background: rgba(199, 165, 88, 0.12);
}

@media (max-width: 992px) {
    .client-reviews__summary {
        flex-direction: column;
        align-items: flex-start;
    }

    .client-reviews__summary-card {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .client-reviews__score-wrap {
        align-items: flex-start;
        gap: 0.8rem;
    }

    .client-reviews__star {
        font-size: 0.8rem;
    }

    .client-reviews__grid {
        grid-template-columns: 1fr;
    }

    .client-reviews--slider .client-review-card {
        flex-basis: min(84vw, 292px);
        width: min(84vw, 292px);
    }

    .client-review-card__score {
        font-size: 0.78rem;
    }
}

/* =========================================================
   9b) Contact Hub Page (Standalone /epikoinonia/)
   ========================================================= */
.contact-hub {
    background: var(--bg);
    padding-top: clamp(2.2rem, 4.8vw, 4rem);
    padding-bottom: clamp(2.8rem, 5.5vw, 5rem);
}

.contact-hub__frame {
    position: relative;
    width: min(100%, 1160px);
    margin-inline: auto;
    border: 1px solid var(--line-soft);
    background:
        radial-gradient(120% 140% at 0% 0%, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.01) 62%, rgba(255, 255, 255, 0.004) 100%),
        #050505;
    overflow: hidden;
}

.contact-hub__corner {
    position: absolute;
    z-index: 6;
    color: #c7a558;
    font-family: var(--font-body);
    font-size: clamp(1.8rem, 2vw, 2.2rem);
    font-weight: 300;
    line-height: 1;
    pointer-events: none;
}

.contact-hub__corner--tl {
    top: 0;
    left: 0;
    transform: translate(-50%, -56%);
}

.contact-hub__corner--tr {
    top: 0;
    right: 0;
    transform: translate(50%, -56%);
}

.contact-hub__corner--bl {
    bottom: 0;
    left: 0;
    transform: translate(-50%, 56%);
}

.contact-hub__corner--br {
    bottom: 0;
    right: 0;
    transform: translate(50%, 56%);
}

.contact-hub__intro {
    padding: clamp(1.2rem, 2vw, 1.8rem);
    border-bottom: 1px solid var(--line-soft);
}

.contact-hub__title {
    font-size: clamp(2.25rem, 4.9vw, 4.9rem);
    line-height: 0.9;
    letter-spacing: -0.02em;
    margin-bottom: 0.7rem;
}

.contact-hub__lead {
    max-width: 62ch;
    color: var(--text-muted);
    font-size: clamp(0.92rem, 1.05vw, 1.04rem);
    line-height: 1.7;
}

.contact-hub__info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-bottom: 1px solid var(--line-soft);
}

.contact-hub-card {
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-width: 0;
    border-right: 1px solid var(--line-soft);
}

.contact-hub-card:last-child {
    border-right: 0;
}

.contact-hub-card__head {
    display: flex;
    align-items: center;
    gap: 0.62rem;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid var(--line-soft);
    background: rgba(255, 255, 255, 0.03);
}

.contact-hub-card__icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(237, 233, 225, 0.72);
    background: rgba(255, 255, 255, 0.02);
}

.contact-hub-card__title {
    font-size: 1.08rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.contact-hub-card__body {
    display: flex;
    align-items: center;
    gap: 0.68rem;
    padding: 1.05rem 1rem;
}

.contact-hub-card__value {
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: 0.01em;
    word-break: break-word;
}

.contact-hub-card__value--small {
    font-size: 0.92rem;
    color: var(--text-muted);
}

.contact-hub-card__meta {
    border-top: 1px solid var(--line-soft);
    padding: 0.74rem 1rem;
    color: var(--text-faint);
    font-size: 0.74rem;
    line-height: 1.55;
    letter-spacing: 0.04em;
}

.contact-copy-btn {
    position: relative;
    border: 1px solid rgba(199, 165, 88, 0.42);
    border-radius: 999px;
    background: rgba(199, 165, 88, 0.09);
    color: rgba(237, 233, 225, 0.9);
    font-family: var(--font-body);
    font-size: 0.64rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    min-width: 84px;
    min-height: 30px;
    padding: 0 0.78rem;
    cursor: pointer;
    transition: border-color var(--ease-std), background var(--ease-std), color var(--ease-std);
}

.contact-copy-btn:hover,
.contact-copy-btn:focus-visible {
    border-color: rgba(199, 165, 88, 0.78);
    background: rgba(199, 165, 88, 0.15);
}

.contact-copy-btn__done {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 180ms ease, transform 180ms ease;
}

.contact-copy-btn.is-copied .contact-copy-btn__default {
    opacity: 0;
}

.contact-copy-btn.is-copied .contact-copy-btn__done {
    opacity: 1;
    transform: scale(1);
}

.contact-hub__lower {
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(300px, 0.84fr);
    min-width: 0;
}

.contact-hub__form {
    padding: 1rem;
    border-right: 1px solid var(--line-soft);
}

.contact-hub__field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.contact-hub__field {
    display: flex;
    flex-direction: column;
    gap: 0.36rem;
}

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

.contact-hub__field label {
    color: var(--text-faint);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-hub__field input,
.contact-hub__field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.24);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 0.6rem 0.72rem;
    transition: border-color var(--ease-std), background var(--ease-std);
}

.contact-hub__field input:focus,
.contact-hub__field textarea:focus {
    outline: none;
    border-color: rgba(237, 233, 225, 0.4);
    background: rgba(255, 255, 255, 0.04);
}

.contact-hub__field textarea {
    min-height: 132px;
    resize: vertical;
}

.contact-hub__submit {
    margin-top: 0.84rem;
    min-height: 38px;
    width: 100%;
    border: 1px solid rgba(199, 165, 88, 0.46);
    border-radius: 8px;
    background: rgba(237, 233, 225, 0.06);
    color: rgba(237, 233, 225, 0.96);
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color var(--ease-std), background var(--ease-std);
}

.contact-hub__submit:hover,
.contact-hub__submit:focus-visible {
    border-color: rgba(199, 165, 88, 0.78);
    background: rgba(199, 165, 88, 0.12);
}

.contact-hub__extras {
    display: grid;
    gap: 0;
}

.contact-side-card {
    padding: 1rem;
    border-bottom: 1px solid var(--line-soft);
    background: rgba(255, 255, 255, 0.015);
}

.contact-side-card:last-child {
    border-bottom: 0;
}

.contact-side-card__head {
    margin-bottom: 0.68rem;
}

.contact-side-card__head h2 {
    font-size: 1.04rem;
    line-height: 1;
    letter-spacing: 0.01em;
}

.contact-side-card p {
    color: var(--text-muted);
    font-size: 0.84rem;
    line-height: 1.6;
}

.contact-map-media {
    display: block;
    margin-top: 0.8rem;
    border: 1px solid rgba(199, 165, 88, 0.5);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(10, 10, 10, 0.92);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.5);
}

.contact-map-media--live {
    overflow: hidden;
    margin-top: 0.2rem;
}

.contact-map-canvas {
    width: 100%;
    min-height: 260px;
    aspect-ratio: 16 / 9;
    background: #0c0c0c;
}

.contact-map-canvas .mapboxgl-marker {
    z-index: 4;
}

.contact-map-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transform: scale(1.001);
    transition: transform var(--ease-std), filter var(--ease-std);
    filter: saturate(1.03) contrast(1.04);
}

.contact-map-media:hover .contact-map-image,
.contact-map-media:focus-visible .contact-map-image {
    transform: scale(1.02);
    filter: saturate(1.08) contrast(1.08);
}

.contact-map-canvas .mapboxgl-ctrl-top-right {
    top: 10px;
    right: 10px;
}

.contact-map-canvas .mapboxgl-ctrl-group {
    background: rgba(8, 8, 8, 0.84);
    border: 1px solid rgba(199, 165, 88, 0.4);
    border-radius: 8px;
    box-shadow: none;
}

.contact-map-canvas .mapboxgl-ctrl-group button + button {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-map-canvas .mapboxgl-ctrl-group button span {
    filter: invert(1) brightness(1.22);
}

.contact-map-canvas .mapboxgl-ctrl-attrib,
.contact-map-canvas .mapboxgl-ctrl-logo {
    opacity: 0.6;
}

.contact-map-placeholder {
    position: relative;
    margin-top: 0.8rem;
    min-height: 165px;
    border: 1px dashed rgba(199, 165, 88, 0.42);
    border-radius: 10px;
    background:
        radial-gradient(circle at 22% 18%, rgba(199, 165, 88, 0.15) 0%, rgba(199, 165, 88, 0.02) 34%, transparent 60%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.008));
    display: grid;
    place-items: center;
    overflow: hidden;
}

.contact-map-placeholder__pin {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(199, 165, 88, 0.95);
    box-shadow: 0 0 0 7px rgba(199, 165, 88, 0.15);
}

.contact-map-placeholder__text {
    position: absolute;
    left: 50%;
    bottom: 0.7rem;
    transform: translateX(-50%);
    color: var(--text-faint);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
}

.contact-side-card__link {
    display: inline-flex;
    align-items: center;
    margin-top: 0.72rem;
    color: var(--text);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(199, 165, 88, 0.4);
    padding-bottom: 0.12rem;
}

.contact-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.contact-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0.24rem 0.74rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-muted);
    font-size: 0.66rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: border-color var(--ease-std), color var(--ease-std), background var(--ease-std);
}

.contact-social-links a:hover,
.contact-social-links a:focus-visible {
    border-color: rgba(199, 165, 88, 0.7);
    color: var(--text);
    background: rgba(199, 165, 88, 0.1);
}

/* =========================================================
   10) Footer
   ========================================================= */
.site-footer {
    background: var(--bg-deep);
    padding-top: clamp(2.8rem, 5vw, 4.6rem);
    padding-bottom: clamp(2rem, 4vw, 3.2rem);
}

.site-footer__card {
    position: relative;
    width: min(100%, 1180px);
    margin-inline: auto;
    border: 1px solid var(--line-soft);
    border-radius: clamp(16px, 2.1vw, 26px);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%),
        var(--bg);
    padding: clamp(1rem, 2.2vw, 2rem);
    overflow: visible;
}

.site-footer__tape {
    position: absolute;
    top: -12px;
    width: clamp(70px, 8vw, 96px);
    height: clamp(24px, 2.8vw, 34px);
    border-radius: 3px;
    overflow: hidden;
    background:
        repeating-linear-gradient(
            90deg,
            rgba(255, 246, 214, 0.18) 0 1px,
            rgba(255, 246, 214, 0) 1px 6px
        ),
        linear-gradient(
            180deg,
            rgba(255, 249, 228, 0.22) 0%,
            rgba(255, 249, 228, 0.06) 42%,
            rgba(0, 0, 0, 0.16) 100%
        ),
        linear-gradient(
            135deg,
            rgba(241, 216, 151, 0.94) 0%,
            rgba(205, 164, 76, 0.92) 52%,
            rgba(137, 97, 22, 0.95) 100%
        );
    border: 1px solid rgba(248, 226, 166, 0.46);
    box-shadow:
        0 10px 18px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 247, 222, 0.4),
        inset 0 -1px 0 rgba(100, 67, 16, 0.34);
    pointer-events: none;
}

.site-footer__tape--left {
    left: clamp(1.1rem, 2.4vw, 2.4rem);
    transform: rotate(-22deg);
}

.site-footer__tape--right {
    right: clamp(1.1rem, 2.4vw, 2.4rem);
    transform: rotate(24deg);
}

.site-footer__main {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 2.1rem);
    padding-bottom: clamp(1.1rem, 2vw, 1.8rem);
    border-bottom: 1px solid var(--line-soft);
}

.site-footer__intro {
    max-width: 44ch;
}

.site-footer__title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.3vw, 2.4rem);
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1;
    margin-bottom: 0.68rem;
    color: var(--text);
}

.site-footer__text {
    color: var(--text-muted);
    font-size: clamp(0.84rem, 0.95vw, 0.94rem);
    line-height: 1.65;
    letter-spacing: 0.02em;
}

.site-footer__col {
    min-width: 0;
}

.site-footer__heading {
    color: var(--text-faint);
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

.site-footer__col li {
    color: var(--text-muted);
    font-size: 0.86rem;
    font-weight: 300;
    line-height: 1.55;
    letter-spacing: 0.02em;
}

.site-footer__col li + li {
    margin-top: 0.38rem;
}

.site-footer a {
    color: inherit;
    transition: color var(--ease-std), opacity var(--ease-std);
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: var(--text);
    opacity: 1;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: clamp(0.9rem, 1.7vw, 1.35rem);
}

.site-footer__bottom-left {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 0;
}

.site-footer__logo-link {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(36px, 3.8vw, 46px);
    height: clamp(36px, 3.8vw, 46px);
    border: 1px solid rgba(199, 165, 88, 0.42);
    border-radius: 10px;
    background: rgba(199, 165, 88, 0.06);
}

.site-footer__logo-img {
    width: 72%;
    height: auto;
    object-fit: contain;
}

.site-footer__logo-mark {
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-footer__copyright,
.site-footer__credit {
    color: var(--text-faint);
    font-size: 0.74rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
}

.site-footer__credit a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(199, 165, 88, 0.35);
    transition: color 220ms ease, border-color 220ms ease;
}
.site-footer__credit a:hover {
    color: #c7a558;
    border-color: #c7a558;
}

/* ── FAQ Section ────────────────────────────────────────── */

.faq-section {
    padding: clamp(4rem, 8vw, 7rem) 0;
    border-top: 1px solid var(--line);
}

.faq-section__inner {
    max-width: 780px;
    margin: 0 auto;
}

.faq-section__header {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.faq-section__eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c7a558;
    margin-bottom: 0.75rem;
}

.faq-section__title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.faq-section__sub {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Card με στρογγυλεμένες γωνίες + βάθος */
.faq-item {
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.025);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.22),
        0 1px 0 rgba(255, 255, 255, 0.04) inset;
    overflow: hidden;
    transition: border-color 300ms ease, box-shadow 300ms ease;
}

.faq-item:has(.faq-item__btn[aria-expanded="true"]) {
    border-color: rgba(199, 165, 88, 0.22);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(199, 165, 88, 0.1),
        0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

.faq-item__q {
    margin: 0;
}

.faq-item__btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 1.4rem;
    background: none;
    border: none;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.97rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: color 220ms ease;
}

.faq-item__btn:hover {
    color: #c7a558;
}

.faq-item__btn[aria-expanded="true"] {
    color: #c7a558;
}

.faq-item__icon {
    flex-shrink: 0;
    color: var(--text-faint);
    transition:
        transform 460ms cubic-bezier(0.16, 1, 0.3, 1),
        color 220ms ease;
}

.faq-item__btn[aria-expanded="true"] .faq-item__icon {
    transform: rotate(180deg);
    color: #c7a558;
}

/* Smooth max-height animation */
.faq-item__a {
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 460ms cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item__a--open {
    max-height: 400px;
}

.faq-item__a-inner {
    padding: 0 1.4rem 1.3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item__a p {
    padding-top: 1rem;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.78;
    margin: 0;
}

.faq-item__a a {
    color: #c7a558;
    text-decoration: none;
    border-bottom: 1px solid rgba(199, 165, 88, 0.35);
    transition: border-color 200ms ease;
}

.faq-item__a a:hover {
    border-color: #c7a558;
}

/* ── Cookie Banner ──────────────────────────────────────── */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(10, 10, 10, 0.97);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: translateY(100%);
    transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
                opacity  420ms ease;
    opacity: 0;
    pointer-events: none;
}

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

.cookie-banner--hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.cookie-banner__inner {
    max-width: 1200px;
    margin-inline: auto;
    padding: 1.1rem clamp(1.2rem, 4vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-banner__text {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    flex: 1 1 280px;
    margin: 0;
}

.cookie-banner__text a {
    color: #c7a558;
    text-decoration: underline;
    text-underline-offset: 3px;
    white-space: nowrap;
}

.cookie-banner__text a:hover {
    opacity: 0.8;
}

.cookie-banner__actions {
    display: flex;
    gap: 0.65rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-banner__btn {
    padding: 0.55rem 1.3rem;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: opacity 200ms ease, transform 150ms ease;
    white-space: nowrap;
    border: none;
}

.cookie-banner__btn:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.cookie-banner__btn:active {
    transform: translateY(0);
}

.cookie-banner__btn--accept {
    background: #c7a558;
    color: #000;
}

.cookie-banner__btn--reject {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.cookie-banner__btn--reject:hover {
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--text);
    opacity: 1;
}

@media (max-width: 540px) {
    .cookie-banner__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .cookie-banner__actions {
        width: 100%;
    }

    .cookie-banner__btn {
        flex: 1;
        text-align: center;
        padding: 0.7rem 1rem;
    }
}

/* ── Portfolio Page ─────────────────────────────────────── */

/* Hero */
.pf-hero {
    padding: clamp(7rem, 12vw, 11rem) var(--edge-pad) clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pf-rays-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.pf-hero__eyebrow,
.pf-hero__title,
.pf-hero__sub {
    position: relative;
    z-index: 1;
}

.pf-hero__eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-faint);
    margin-bottom: 0.9rem;
}

.pf-hero__title {
    font-size: clamp(2.8rem, 7vw, 6rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text);
    line-height: 1;
    margin-bottom: 0.8rem;
}

.pf-hero__sub {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* Filters */
.pf-filters {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 0.75rem var(--edge-pad);
}

.pf-filters__inner {
    display: flex;
    gap: 0.45rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin-inline: auto;
}

.pf-filter-btn {
    padding: 0.42rem 1.05rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: transparent;
    color: var(--text-faint);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 150ms ease;
}

.pf-filter-btn:hover {
    border-color: rgba(199,165,88,0.5);
    color: var(--text-muted);
    transform: translateY(-1px);
}

.pf-filter-btn--active {
    background: #c7a558;
    border-color: #c7a558;
    color: #000;
    font-weight: 600;
}

.pf-filter-btn--active:hover {
    background: #d4b56a;
    border-color: #d4b56a;
    color: #000;
    transform: none;
}

.pf-category-copy {
    padding: 0.95rem var(--edge-pad) 0;
}

.pf-category-copy__inner {
    max-width: 1280px;
    margin-inline: auto;
}

.pf-category-copy__item {
    max-width: none;
    display: none;
    grid-template-columns: minmax(120px, 160px) minmax(0, 1fr);
    gap: clamp(1rem, 2.4vw, 2.8rem);
    align-items: start;
    animation: pf-category-copy-in 220ms ease;
}

.pf-category-copy__item.is-active {
    display: grid;
}

.pf-category-copy__eyebrow {
    margin: 0;
    color: rgba(199,165,88,0.9);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.pf-category-copy__text {
    max-width: 980px;
    color: rgba(255,255,255,0.62);
    font-size: clamp(0.8rem, 0.9vw, 0.9rem);
    line-height: 1.95;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.pf-category-copy__text p {
    margin: 0;
}

.pf-category-copy__text p + p {
    margin-top: 0.7rem;
}

@keyframes pf-category-copy-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Grid */
.pf-grid {
    columns: 3 260px;
    column-gap: 0.75rem;
    padding-top: 1.5rem;
    padding-bottom: clamp(4rem, 8vw, 8rem);
}

.pf-item {
    break-inside: avoid;
    margin-bottom: 0.75rem;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 520ms ease, transform 520ms var(--ease-out);
}

.pf-item--in {
    opacity: 1;
    transform: translateY(0);
}

.pf-item--hidden {
    display: none;
}

.pf-item__trigger {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.pf-item__img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 500ms var(--ease-out), filter 400ms ease;
    filter: brightness(0.96);
}

.pf-item__trigger:hover .pf-item__img {
    transform: scale(1.035);
    filter: brightness(1.04);
}

.pf-item__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0);
    color: #fff;
    opacity: 0;
    transition: background 300ms ease, opacity 300ms ease;
}

.pf-item__trigger:hover .pf-item__overlay,
.pf-item__trigger:focus-visible .pf-item__overlay {
    background: rgba(0,0,0,0.28);
    opacity: 1;
}

/* Empty state */
.pf-empty {
    column-span: all;
    text-align: center;
    padding: 4rem 1rem;
    color: var(--text-faint);
    font-size: 0.9rem;
}

.pf-empty a {
    color: #c7a558;
    text-decoration: underline;
}

/* Lightbox */
.pf-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms ease;
}

.pf-lightbox--open {
    opacity: 1;
    pointer-events: auto;
}

.pf-lightbox__backdrop {
    position: fixed;
    inset: 0;
    z-index: 9997;
    background: rgba(0,0,0,0.93);
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms ease;
}

.pf-lightbox__backdrop.pf-lightbox--open {
    opacity: 1;
    pointer-events: auto;
}

.pf-lightbox__stage {
    position: relative;
    z-index: 1;
    max-width: min(90vw, 1200px);
    max-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pf-lightbox__img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 3px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    transition: opacity 180ms ease;
}

.pf-lb-fade {
    opacity: 0 !important;
}

.pf-lightbox__close {
    position: fixed;
    top: 1.2rem;
    right: 1.5rem;
    z-index: 9999;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(0,0,0,0.5);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 200ms ease, border-color 200ms ease;
}

.pf-lightbox__close:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.35);
}

.pf-lightbox__nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(0,0,0,0.45);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.pf-lightbox__nav:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
}

.pf-lightbox__nav--prev { left: 1.2rem; }
.pf-lightbox__nav--next { right: 1.2rem; }

.pf-lightbox__nav--prev:hover { transform: translateY(-50%) translateX(-2px); }
.pf-lightbox__nav--next:hover { transform: translateY(-50%) translateX(2px); }

.pf-lightbox__meta {
    position: fixed;
    bottom: 1.4rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    color: var(--text-faint);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 80vw;
}

/* Portfolio responsive */
@media (max-width: 768px) {
    .pf-category-copy {
        padding-top: 0.8rem;
    }

    .pf-category-copy__item {
        grid-template-columns: 1fr;
        gap: 0.45rem;
    }

    .pf-category-copy__item.is-active {
        display: grid;
    }

    .pf-category-copy__text {
        font-size: 0.82rem;
        line-height: 1.82;
    }

    .pf-grid {
        columns: 2 160px;
        column-gap: 0.5rem;
    }

    .pf-item {
        margin-bottom: 0.5rem;
    }

    .pf-lightbox__nav--prev { left: 0.5rem; }
    .pf-lightbox__nav--next { right: 0.5rem; }
}

@media (max-width: 480px) {
    .pf-category-copy__eyebrow {
        font-size: 0.58rem;
    }

    .pf-category-copy__text {
        font-size: 0.78rem;
        line-height: 1.76;
    }

    .pf-grid {
        columns: 2 120px;
    }

    .pf-hero__title {
        font-size: clamp(2.2rem, 10vw, 3rem);
    }
}

/* Nav active state */
.site-nav__item--active a {
    color: #c7a558;
}

/* ── Legal Pages ────────────────────────────────────────── */

.legal-page {
    padding-top: clamp(5rem, 10vw, 8rem);
    padding-bottom: clamp(4rem, 8vw, 7rem);
    min-height: 70vh;
}

.legal-page__inner {
    max-width: 780px;
    margin-inline: auto;
}

.legal-page__article h1 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.4rem;
    letter-spacing: -0.02em;
}

.legal-page__article h2 {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 600;
    color: var(--text);
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--line-soft, rgba(255,255,255,0.08));
}

.legal-page__article h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-page__article p,
.legal-page__article li {
    color: var(--text-muted, #aaa);
    font-size: 0.92rem;
    line-height: 1.8;
}

.legal-page__article ul {
    padding-left: 1.4rem;
    margin-bottom: 1rem;
}

.legal-page__article li {
    margin-bottom: 0.45rem;
}

.legal-page__article a {
    color: var(--accent, #cfab53);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-page__article a:hover {
    opacity: 0.8;
}

.legal-page__article em {
    color: var(--text-faint);
    font-style: italic;
}

.legal-page__article strong {
    color: var(--text);
    font-weight: 600;
}

/* ─────────────────────────────────────────────────────── */

.site-footer__legal {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.site-footer__legal a,
.site-footer__legal span {
    color: var(--text-faint);
    font-size: 0.74rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer__legal a:hover {
    color: var(--text-muted, currentColor);
    text-decoration: underline;
}

/* =========================================================
   11) Service Pages
   ========================================================= */
.service-page {
    background: var(--bg);
}

.service-page__hero {
    position: relative;
    isolation: isolate;
    min-height: 74svh;
    display: grid;
    align-items: end;
    overflow: clip;
    background: #050505;
}

.service-page__hero-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.02);
}

.service-page__hero-veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to right,
            rgba(0, 0, 0, 0.72) 0%,
            rgba(0, 0, 0, 0.46) 42%,
            rgba(0, 0, 0, 0.72) 100%
        ),
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.84) 0%,
            rgba(0, 0, 0, 0.28) 46%,
            rgba(0, 0, 0, 0.42) 100%
        );
}

.service-page__hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: clamp(2.4rem, 6vw, 5.2rem);
}

.service-page__hero-title {
    font-size: clamp(2.6rem, 7vw, 6.8rem);
    line-height: 0.85;
    letter-spacing: -0.015em;
    margin-bottom: 0.9rem;
}

.service-page__hero-lead {
    max-width: 54ch;
    color: var(--text-muted);
    font-size: clamp(0.92rem, 1.08vw, 1.1rem);
    line-height: 1.72;
}

.service-page__content {
    padding-top: clamp(2.2rem, 5vw, 5rem);
}

.service-page__content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: clamp(1.2rem, 2.3vw, 2.4rem);
    align-items: start;
}

.service-page__copy h2 {
    font-size: clamp(1.5rem, 2.6vw, 2.5rem);
    line-height: 0.95;
    margin-bottom: 1rem;
}

.service-page__copy p {
    color: var(--text-muted);
    max-width: 60ch;
    line-height: 1.75;
    margin-top: 0.9rem;
}

.service-page__card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--line-soft);
    border-radius: 14px;
    padding: clamp(1rem, 2vw, 1.5rem);
}

.service-page__card-heading {
    color: var(--text-faint);
    font-size: 0.72rem;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
}

.service-page__card ul {
    display: grid;
    gap: 0.7rem;
    margin-bottom: 1.2rem;
}

.service-page__card li {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.55;
    padding-left: 1rem;
    position: relative;
}

.service-page__card li::before {
    content: "";
    position: absolute;
    top: 0.58em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(199, 165, 88, 0.82);
}

.service-page__card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    width: 100%;
    border: 1px solid rgba(199, 165, 88, 0.48);
    border-radius: 10px;
    background: rgba(199, 165, 88, 0.08);
    color: var(--text);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: border-color var(--ease-std), background var(--ease-std);
}

.service-page__card-cta:hover,
.service-page__card-cta:focus-visible {
    border-color: rgba(199, 165, 88, 0.86);
    background: rgba(199, 165, 88, 0.16);
}

.service-page__hero-cta {
    margin-top: 1.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 1.15rem;
    border: 1px solid rgba(199, 165, 88, 0.52);
    border-radius: 10px;
    background: rgba(199, 165, 88, 0.1);
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    transition: border-color var(--ease-std), background var(--ease-std);
}

.service-page__hero-cta:hover,
.service-page__hero-cta:focus-visible {
    border-color: rgba(199, 165, 88, 0.86);
    background: rgba(199, 165, 88, 0.2);
}

.service-page__section-title {
    font-size: clamp(1.35rem, 2.8vw, 2.15rem);
    margin-bottom: clamp(1rem, 2.5vw, 1.7rem);
    letter-spacing: -0.01em;
}

.service-page__trust {
    padding-top: clamp(1.5rem, 3vw, 2.7rem);
    padding-bottom: clamp(1.5rem, 3vw, 2.7rem);
}

.service-page__trust-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1rem, 2.5vw, 2rem);
    align-items: center;
}

.service-page__trust-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    color: #c7a558;
    margin-bottom: 0.7rem;
}

.service-page__trust-title {
    font-size: clamp(1.35rem, 2.6vw, 2.2rem);
    line-height: 1.05;
    max-width: 20ch;
}

.service-page__trust-text {
    color: var(--text-muted);
    line-height: 1.72;
    max-width: 60ch;
}

.service-page__featured,
.service-page__gallery {
    padding-top: clamp(2rem, 4.5vw, 3.4rem);
}

.service-page__featured-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.service-page__featured-item {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: #111;
}

.service-page__featured-item img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.service-page__gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.service-page__gallery-item {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: #111;
}

.service-page__gallery-item img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.service-page__portfolio {
    padding-top: 1rem;
}

.service-page__portfolio-inner {
    display: flex;
    justify-content: center;
}

.service-page__portfolio-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 1.3rem;
    border-radius: 999px;
    border: 1px solid rgba(199, 165, 88, 0.45);
    color: var(--text);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.72rem;
    background: rgba(199, 165, 88, 0.08);
    transition: border-color var(--ease-std), background var(--ease-std);
}

.service-page__portfolio-btn:hover,
.service-page__portfolio-btn:focus-visible {
    border-color: rgba(199, 165, 88, 0.86);
    background: rgba(199, 165, 88, 0.16);
}

.service-page__process {
    padding-top: clamp(2rem, 5vw, 4rem);
}

.service-page__process .service-page__section-title {
    text-align: center;
}

.service-page__process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 1260px;
    margin: 0 auto;
}

.service-page__process-step {
    border: 1px solid var(--line-soft);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.015);
    padding: 1.1rem;
    text-align: center;
}

.service-page__process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(199, 165, 88, 0.45);
    color: #c7a558;
    font-size: 0.75rem;
    margin: 0 auto 0.72rem;
}

.service-page__process-step h3 {
    font-size: 1.02rem;
    margin-bottom: 0.4rem;
}

.service-page__process-step p {
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0 auto;
    max-width: 34ch;
}

.service-page__cta {
    padding-top: clamp(2.2rem, 5vw, 4rem);
}

.service-page__cta-box {
    border: 1px solid rgba(199, 165, 88, 0.28);
    border-radius: 16px;
    background:
        radial-gradient(circle at 20% 20%, rgba(199, 165, 88, 0.12), transparent 55%),
        rgba(255, 255, 255, 0.015);
    padding: clamp(1.2rem, 3.2vw, 2.2rem);
    text-align: center;
}

.service-page__cta-box h2 {
    font-size: clamp(1.35rem, 2.7vw, 2.2rem);
    margin-bottom: 1rem;
}

.service-page__cta-box a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 1.3rem;
    border-radius: 999px;
    border: 1px solid rgba(199, 165, 88, 0.52);
    color: var(--text);
    letter-spacing: 0.09em;
    text-transform: uppercase;
    font-size: 0.72rem;
    transition: border-color var(--ease-std), background var(--ease-std);
}

.service-page__cta-box a:hover,
.service-page__cta-box a:focus-visible {
    background: rgba(199, 165, 88, 0.16);
    border-color: rgba(199, 165, 88, 0.86);
}

/* Service share/like row: centered and visible without hover */
.lensory-service-page .post-meta,
.lensory-service-page .meta-share-wrap,
.lensory-service-page .social-sharing,
.lensory-service-page .a2a_kit,
.lensory-service-page .a2a_default_style {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.7rem !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.lensory-service-page .nectar-love-wrap,
.lensory-service-page .meta-share,
.lensory-service-page .meta-share-wrap,
.lensory-service-page .nectar-social,
.lensory-service-page .social-share,
.lensory-service-page .sharing-wrap {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.7rem !important;
    width: 100% !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.lensory-service-page .post-meta .nectar-love-wrap,
.lensory-service-page .post-meta .meta-share-wrap,
.lensory-service-page .post-meta .social-sharing,
.lensory-service-page .post-meta .sharing-links,
.lensory-service-page a.nectar-love,
.lensory-service-page .nectar-love {
    float: none !important;
    position: static !important;
}

.lensory-service-page .post-meta a,
.lensory-service-page .meta-share-wrap a,
.lensory-service-page .social-sharing a,
.lensory-service-page .a2a_kit a,
.lensory-service-page .a2a_default_style a,
.lensory-service-page a.nectar-love,
.lensory-service-page .nectar-love {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.42rem !important;
    min-height: 38px !important;
    padding: 0.42rem 0.9rem !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    color: var(--text) !important;
    line-height: 1 !important;
    transition: border-color 220ms ease, background 220ms ease !important;
}

.lensory-service-page .post-meta a:hover,
.lensory-service-page .meta-share-wrap a:hover,
.lensory-service-page .social-sharing a:hover,
.lensory-service-page .a2a_kit a:hover,
.lensory-service-page .a2a_default_style a:hover {
    border-color: rgba(199, 165, 88, 0.62) !important;
    background: rgba(199, 165, 88, 0.12) !important;
}

.lensory-service-page .post-meta .nectar-love span,
.lensory-service-page .post-meta .love-count,
.lensory-service-page .post-meta .count {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 22px !important;
    height: 22px !important;
    border-radius: 999px !important;
    font-size: 0.7rem !important;
    background: rgba(255, 255, 255, 0.12) !important;
    color: var(--text) !important;
    margin-left: 0.25rem !important;
}

/* Keep only the Love action visible; hide all share controls */
.lensory-service-page .post-meta .meta-share,
.lensory-service-page .post-meta .meta-share-wrap,
.lensory-service-page .post-meta .sharing-links,
.lensory-service-page .post-meta .sharing-links ul,
.lensory-service-page .post-meta .share-menu,
.lensory-service-page .post-meta .share-this,
.lensory-service-page .social-sharing,
.lensory-service-page .social-sharing ul,
.lensory-service-page .a2a_kit,
.lensory-service-page .a2a_default_style,
.lensory-service-page .sharing-wrap {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Final hard override for share controls on all service pages */
body.lensory-service-page .meta-share,
body.lensory-service-page .meta-share-wrap,
body.lensory-service-page .sharing-links,
body.lensory-service-page .sharing-links ul,
body.lensory-service-page .share-menu,
body.lensory-service-page .share-this,
body.lensory-service-page .social-sharing,
body.lensory-service-page .social-sharing ul,
body.lensory-service-page .a2a_kit,
body.lensory-service-page .a2a_default_style,
body.lensory-service-page .nectar-social,
body.lensory-service-page .sharing-wrap,
body.single-services .meta-share,
body.single-services .meta-share-wrap,
body.single-services .sharing-links,
body.single-services .sharing-links ul,
body.single-services .share-menu,
body.single-services .share-this,
body.single-services .social-sharing,
body.single-services .social-sharing ul,
body.single-services .a2a_kit,
body.single-services .a2a_default_style,
body.single-services .nectar-social,
body.single-services .sharing-wrap {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* =========================================================
   11) Social Sidebar & Mobile Dock
   ========================================================= */

/* ── Desktop sidebar β€" icon always visible, label expands on hover only ── */
.social-sidebar {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 200;
    display: none;
}

@media (min-width: 768px) {
    .social-sidebar { display: block; }
}

.social-sidebar__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;  /* κάθε link έχει το δικό του φυσικό πλάτος */
    gap: 8px;
}

/* Each link: icon on LEFT (always visible), label on RIGHT (hidden at rest) */
.social-sidebar__link {
    display: flex;
    align-items: center;
    height: 40px;
    border-radius: 10px 0 0 10px;  /* rounded left, flush right */
    text-decoration: none;
    background: rgba(10, 10, 10, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-right: none;
    overflow: hidden;               /* clips the label during animation */
}

/* Icon β€" always visible square area */
.social-sidebar__icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin: 0 12px;                 /* 12 + 16 + 12 = 40px square touch zone */
    transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.social-sidebar__link:hover .social-sidebar__icon,
.social-sidebar__link:focus-visible .social-sidebar__icon {
    transform: scale(1.15);
}

/* Label β€" hidden (max-width: 0), expands only for the hovered link */
.social-sidebar__label {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding-right: 0;
    transition:
        max-width  420ms cubic-bezier(0.16, 1, 0.3, 1),
        padding-right 400ms ease;
}

.social-sidebar__link:hover .social-sidebar__label,
.social-sidebar__link:focus-visible .social-sidebar__label {
    max-width: 110px;               /* enough for longest label */
    padding-right: 14px;
}

/* Subtle platform-tinted icons */
.social-sidebar__link--facebook  .social-sidebar__icon { color: #7ba3f0; }
.social-sidebar__link--instagram .social-sidebar__icon { color: #d47cbf; }
.social-sidebar__link--contact   .social-sidebar__icon { color: #5fc4d0; }
.social-sidebar__link--mail      .social-sidebar__icon { color: #7ab4f0; }

/* Accessibility toggle: align below desktop social sidebar */
@media (min-width: 768px) {
    body #pojo-a11y-toolbar,
    body .pojo-a11y-toolbar,
    body [id*="a11y-toolbar"],
    body [class*="a11y-toolbar"] {
        position: fixed !important;
        top: calc(50% + 104px) !important;
        right: 0 !important;
        left: auto !important;
        bottom: auto !important;
        transform: none !important;
        margin: 0 !important;
        z-index: 91 !important;
    }

    body #pojo-a11y-toolbar .pojo-a11y-toolbar-toggle,
    body #pojo-a11y-toolbar-toggle,
    body .pojo-a11y-toolbar-toggle,
    body [id*="a11y-toggle"],
    body [class*="a11y-toggle"] {
        position: static !important;
        top: auto !important;
        right: 0 !important;
        left: auto !important;
        bottom: auto !important;
        transform: none !important;
        margin: 0 !important;
    }

    body #pojo-a11y-toolbar .pojo-a11y-toolbar-toggle a,
    body #pojo-a11y-toolbar-toggle a,
    body .pojo-a11y-toolbar-toggle a,
    body #pojo-a11y-toolbar .pojo-a11y-toolbar-toggle button,
    body #pojo-a11y-toolbar-toggle button,
    body .pojo-a11y-toolbar-toggle button,
    body [id*="a11y-toggle"] a,
    body [id*="a11y-toggle"] button,
    body [class*="a11y-toggle"] a,
    body [class*="a11y-toggle"] button {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
        padding: 0 !important;
        border-radius: 10px 0 0 10px !important;
        background: rgba(10, 10, 10, 0.92) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-right: none !important;
        box-shadow: none !important;
        color: rgba(255, 255, 255, 0.78) !important;
    }

    body #pojo-a11y-toolbar .pojo-a11y-toolbar-toggle svg,
    body #pojo-a11y-toolbar-toggle svg,
    body .pojo-a11y-toolbar-toggle svg,
    body [id*="a11y-toggle"] svg,
    body [class*="a11y-toggle"] svg {
        width: 16px !important;
        height: 16px !important;
    }

    /* OneTap accessibility plugin (explicit selectors from DOM) */
    body section.onetap-container-toggle {
        position: fixed !important;
        top: calc(50% + 104px) !important;
        right: 0 !important;
        left: auto !important;
        bottom: auto !important;
        transform: none !important;
        margin: 0 !important;
        padding: 0 !important;
        width: 40px !important;
        min-width: 40px !important;
        max-width: 40px !important;
        height: 40px !important;
        min-height: 40px !important;
        max-height: 40px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        z-index: 91 !important;
    }

    body section.onetap-container-toggle > button.onetap-toggle {
        position: static !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
        padding: 0 !important;
        border-radius: 10px 0 0 10px !important;
        background: rgba(10, 10, 10, 0.92) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-right: none !important;
        box-shadow: none !important;
        margin: 0 !important;
        outline: none !important;
    }

    body section.onetap-container-toggle > button.onetap-toggle > img.design-size2,
    body section.onetap-container-toggle > button.onetap-toggle > img.design-size2.design-border2 {
        width: 16px !important;
        height: 16px !important;
        min-width: 16px !important;
        min-height: 16px !important;
        max-width: 16px !important;
        max-height: 16px !important;
        padding: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
    }
}

/* ── Mobile floating dock (bottom-right) ── */
.social-dock {
    display: block;
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 110;
}

@media (min-width: 768px) {
    .social-dock { display: none; }
}

/* Backdrop overlay */
.social-dock__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(6, 6, 6, 0.65);
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms ease;
}

.social-dock--open .social-dock__backdrop {
    opacity: 1;
    pointer-events: auto;
}

/* Icon circles stack */
.social-dock__items {
    position: absolute;
    bottom: 5rem;
    right: 0;
    display: flex;
    flex-direction: column-reverse;
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
    transition:
        opacity 300ms ease,
        transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.social-dock--open .social-dock__items {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.social-dock__item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.social-dock__item:hover {
    transform: scale(1.12);
}

/* Subtle dark + tinted icon for mobile dock */
.social-dock__item--facebook  { background: rgba(12, 12, 12, 0.88); color: #7ba3f0; }
.social-dock__item--instagram { background: rgba(12, 12, 12, 0.88); color: #d47cbf; }
.social-dock__item--contact   { background: rgba(12, 12, 12, 0.88); color: #5fc4d0; }
.social-dock__item--mail      { background: rgba(12, 12, 12, 0.88); color: #7ab4f0; }

/* Toggle button */
.social-dock__btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(14, 14, 14, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.75);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
    transition: transform 300ms ease, background 300ms ease;
}

.social-dock__btn:hover { background: rgba(22, 22, 22, 0.95); transform: scale(1.06); }
.social-dock--open .social-dock__btn { transform: rotate(90deg); }

/* Icon swap via CSS */
.social-dock__icon-close { display: none; }
.social-dock--open .social-dock__icon-share { display: none; }
.social-dock--open .social-dock__icon-close { display: block; }

/* =========================================================
   11) Responsive
   ========================================================= */
@media (max-width: 1200px) {
    .service-card {
        --service-stage-gap: clamp(14px, 1.8vw, 20px);
        top: calc(var(--header-h) + var(--service-stage-gap));
        height: clamp(
            430px,
            calc(100svh - var(--header-h) - (var(--service-stage-gap) * 2)),
            700px
        );
    }

    .service-card + .service-card {
        margin-top: clamp(0.72rem, 1.25vw, 1rem);
    }

    .service-card__title {
        font-size: clamp(3.4rem, 11vw, 8.5rem);
    }

    .service-card__date {
        font-size: clamp(0.8rem, 1.2vw, 0.95rem);
    }
}

@media (max-width: 900px) {
    :root {
        --header-h: 92px;
    }

    /* Header β€” mobile with hamburger overlay */
    .site-header {
        padding-block: 1rem;
    }

    .site-header__inner {
        display: flex;
        flex-wrap: nowrap;
        row-gap: 0;
        align-items: center;
        padding-inline: var(--gutter);
    }

    .site-nav {
        display: none;
    }

    .site-header__menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    /* Hero */
    .hero__title {
        font-size: clamp(2.8rem, 9.8vw, 5.6rem);
        max-width: 11ch;
    }

    /* Services panels */
    .service-card {
        --service-stage-gap: clamp(10px, 1.4vw, 14px);
        top: calc(var(--header-h) + var(--service-stage-gap));
        height: clamp(
            390px,
            calc(100svh - var(--header-h) - (var(--service-stage-gap) * 2)),
            620px
        );
        border-radius: 20px;
    }

    .service-card + .service-card {
        margin-top: clamp(0.6rem, 1vw, 0.85rem);
    }

    .service-card__content {
        padding: 1rem 1.1rem 1.4rem;
    }

    .service-card__meta {
        gap: 0.65rem;
    }

    .service-card__tag {
        min-height: 28px;
        padding: 0.2rem 0.58rem;
        font-size: 0.56rem;
        letter-spacing: 0.08em;
    }

    .service-card__date {
        font-size: 0.72rem;
        letter-spacing: 0.03em;
    }

    .service-card__title {
        font-size: clamp(2.7rem, 11vw, 5.2rem);
    }

    .service-card__text {
        max-width: 46ch;
        font-size: 0.9rem;
    }

    /* About */
    .photographer-bio__grid {
        gap: 0;
    }

    /* Extra services */
    .extra-services__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .extra-service:nth-child(1),
    .extra-service:nth-child(2),
    .extra-service:nth-child(3),
    .extra-service:nth-child(4) {
        grid-column: span 1;
    }

    /* Service pages */
    .service-page__hero {
        min-height: 62svh;
    }

    .service-page__hero-title {
        font-size: clamp(2.2rem, 9.4vw, 4.8rem);
    }

    .service-page__content-grid {
        grid-template-columns: 1fr;
    }

    .service-page__trust-grid {
        grid-template-columns: 1fr;
    }

    .service-page__featured-grid,
    .service-page__gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .service-page__process-grid {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact-section__grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: stretch;
        gap: 0;
    }

    .contact-section__content {
        max-width: none;
    }

    .contact-section__form {
        flex: 0 0 clamp(300px, 36vw, 380px) !important;
        width: clamp(300px, 36vw, 380px) !important;
        border-left: 1px solid var(--line-soft);
        border-top: 0;
    }

    .contact-section__corner {
        font-size: 1.7rem;
    }

    .contact-hub__frame {
        width: min(100%, 980px);
    }

    .contact-hub__info-grid {
        grid-template-columns: 1fr;
    }

    .contact-hub-card {
        border-right: 0;
        border-bottom: 1px solid var(--line-soft);
    }

    .contact-hub-card:last-child {
        border-bottom: 0;
    }

    .contact-hub__lower {
        grid-template-columns: 1fr;
    }

    .contact-hub__form {
        border-right: 0;
        border-bottom: 1px solid var(--line-soft);
    }

    /* Footer */
    .site-footer__main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer__intro {
        grid-column: 1 / -1;
    }

    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    :root {
        --gutter:        clamp(1.2rem, 5vw, 2rem);
        --edge-pad:      clamp(1.2rem, 5vw, 2rem);
        --hero-pad:      clamp(1.2rem, 5vw, 2rem);
        --section-space: clamp(4rem, 9vw, 6rem);
    }

    /* Hero β€” full width on mobile */
    .hero__content {
        width: 100%;
        max-width: 100%;
        padding-inline: var(--hero-pad);
    }

    .hero__title {
        font-size: clamp(2.2rem, 10.8vw, 4.2rem);
    }

    .hero__scroll {
        display: none;
    }

    .service-card {
        --service-stage-gap: 10px;
        top: calc(var(--header-h) + var(--service-stage-gap));
        height: clamp(
            340px,
            calc(100svh - var(--header-h) - (var(--service-stage-gap) * 2)),
            500px
        );
        border-radius: 16px;
    }

    .service-card + .service-card {
        margin-top: 0.5rem;
    }

    .service-card__content {
        padding: 0.85rem 0.9rem 1.1rem;
    }

    .service-card__tag {
        min-height: 24px;
        font-size: 0.5rem;
        padding: 0.14rem 0.5rem;
        letter-spacing: 0.06em;
    }

    .service-card__date {
        font-size: 0.62rem;
    }

    .service-card__title {
        font-size: clamp(2.1rem, 12vw, 3.8rem);
    }

    .service-card__text {
        display: none;
    }

    /* About β€” keep 50/50 side-by-side on mobile too */
    .photographer-bio__grid {
        flex-direction: row;
        align-items: stretch;
        gap: 0;
    }

    .photographer-bio__content {
        order: 1;
        flex: 1 1 0;
    }

    .photographer-bio__media {
        order: 2;
        flex: 1 1 0;
        aspect-ratio: auto;
    }

    .contact-section {
        padding-top: clamp(3rem, 7vw, 4rem);
        padding-bottom: clamp(3.8rem, 8.5vw, 5.4rem);
    }

    .contact-section__grid {
        margin-top: clamp(2.2rem, 6vw, 3.2rem) !important;
        flex-direction: column;
        align-items: stretch;
    }

    .contact-section__form {
        width: 100% !important;
        max-width: none;
        flex: 1 1 auto !important;
        margin-top: 0;
        border-left: 0;
        border-top: 1px solid var(--line-soft);
    }

    .contact-section__form {
        padding: 0.7rem 0.9rem 1.95rem;
    }

    .contact-section__field--full,
    .contact-section__submit {
        grid-column: auto;
    }

    .contact-hub {
        padding-top: clamp(2.2rem, 6vw, 3.4rem);
        padding-bottom: clamp(3rem, 7vw, 4.5rem);
    }

    .contact-hub__frame {
        width: 100%;
    }

    .contact-hub__intro,
    .contact-hub-card__head,
    .contact-hub-card__body,
    .contact-hub-card__meta,
    .contact-hub__form,
    .contact-side-card {
        padding-left: 0.9rem;
        padding-right: 0.9rem;
    }

    .contact-hub__title {
        font-size: clamp(2rem, 10vw, 3.2rem);
    }

    .contact-hub__field-grid {
        grid-template-columns: 1fr;
    }

    .contact-hub__field--full {
        grid-column: auto;
    }

    .contact-map-placeholder {
        min-height: 150px;
    }

    .extra-services__grid {
        grid-template-columns: 1fr;
    }

    .service-page__hero {
        min-height: 58svh;
    }

    .service-page__hero-content {
        padding-bottom: 1.8rem;
    }

    .service-page__hero-title {
        font-size: clamp(2rem, 10vw, 3.2rem);
    }

    .service-page__hero-lead {
        font-size: 0.92rem;
        line-height: 1.62;
    }

    .service-page__hero-cta {
        width: 100%;
        justify-content: center;
    }

    .service-page__section-title {
        margin-bottom: 0.9rem;
    }

    .service-page__featured-grid,
    .service-page__gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .service-page__cta-box {
        padding: 1rem;
    }

    .site-footer__card {
        border-radius: 16px;
        padding: 0.95rem;
    }

    .site-footer__main {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .site-footer__intro {
        grid-column: auto;
    }

    .site-footer__bottom-left {
        align-items: flex-start;
    }

    .site-footer__tape {
        width: 66px;
        height: 24px;
        top: -10px;
    }

    .site-footer__tape--left {
        left: 0.9rem;
    }

    .site-footer__tape--right {
        right: 0.9rem;
    }
}

@media (max-width: 767px) {
    .social-dock {
        top: 50%;
        right: 0;
        bottom: auto;
        transform: translateY(-50%);
        z-index: 111;
    }

    .social-dock__backdrop,
    .social-dock__btn {
        display: none;
    }

    .social-dock__items {
        position: static;
        bottom: auto;
        right: auto;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .social-dock__item {
        width: 40px;
        height: 40px;
        border-radius: 10px 0 0 10px;
        border-right: none;
        background: rgba(10, 10, 10, 0.92);
    }

    /* Accessibility toggle - keep it aligned with mobile social rail */
    body #pojo-a11y-toolbar,
    body .pojo-a11y-toolbar,
    body [id*="a11y-toolbar"],
    body [class*="a11y-toolbar"],
    body section.onetap-container-toggle {
        position: fixed !important;
        top: calc(50% + 104px) !important;
        right: 0 !important;
        left: auto !important;
        bottom: auto !important;
        transform: none !important;
        margin: 0 !important;
        padding: 0 !important;
        width: 40px !important;
        min-width: 40px !important;
        max-width: 40px !important;
        height: 40px !important;
        min-height: 40px !important;
        max-height: 40px !important;
        z-index: 112 !important;
    }

    body #pojo-a11y-toolbar .pojo-a11y-toolbar-toggle,
    body #pojo-a11y-toolbar-toggle,
    body .pojo-a11y-toolbar-toggle,
    body [id*="a11y-toggle"],
    body [class*="a11y-toggle"],
    body section.onetap-container-toggle > button.onetap-toggle {
        position: static !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
        padding: 0 !important;
        border-radius: 10px 0 0 10px !important;
        background: rgba(10, 10, 10, 0.92) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-right: none !important;
        box-shadow: none !important;
        outline: none !important;
    }

    body #pojo-a11y-toolbar .pojo-a11y-toolbar-toggle a,
    body #pojo-a11y-toolbar-toggle a,
    body .pojo-a11y-toolbar-toggle a,
    body #pojo-a11y-toolbar .pojo-a11y-toolbar-toggle button,
    body #pojo-a11y-toolbar-toggle button,
    body .pojo-a11y-toolbar-toggle button,
    body [id*="a11y-toggle"] a,
    body [id*="a11y-toggle"] button,
    body [class*="a11y-toggle"] a,
    body [class*="a11y-toggle"] button {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
        padding: 0 !important;
        border-radius: 10px 0 0 10px !important;
        background: rgba(10, 10, 10, 0.92) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-right: none !important;
        box-shadow: none !important;
        color: rgba(255, 255, 255, 0.78) !important;
    }

    body section.onetap-container-toggle > button.onetap-toggle > img.design-size2,
    body section.onetap-container-toggle > button.onetap-toggle > img.design-size2.design-border2,
    body #pojo-a11y-toolbar .pojo-a11y-toolbar-toggle svg,
    body #pojo-a11y-toolbar-toggle svg,
    body .pojo-a11y-toolbar-toggle svg,
    body [id*="a11y-toggle"] svg,
    body [class*="a11y-toggle"] svg {
        width: 16px !important;
        height: 16px !important;
        min-width: 16px !important;
        min-height: 16px !important;
        max-width: 16px !important;
        max-height: 16px !important;
        padding: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
    }
}

/* =========================================================
   11) Motion Accessibility
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    .site { animation: none; }

    *,
    *::before,
    *::after {
        animation-duration:    1ms !important;
        transition-duration:   1ms !important;
        transition-delay:      0ms !important;
    }
}
