/* styles.css — Liapis Civil Engineer template */

        :root {
            --ink:      #0e0d0b;
            --ink2:     #1c1a16;
            --gold:     #c9a86c;
            --gold2:    #e8c98a;
            --cream:    #f5f0e8;
            --cream2:   #ede7d9;
            --stone:    #4a4540;
            --white:    #ffffff;
            --ease:     cubic-bezier(0.16, 1, 0.3, 1);
        }

        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; font-size: 16px; }
        body {
            font-family: 'Inter', sans-serif;
            background: var(--cream);
            color: var(--ink);
            overflow-x: hidden;
        }
        img { max-width: 100%; display: block; }
        a { text-decoration: none; color: inherit; }

        ::-webkit-scrollbar { width: 3px; }
        ::-webkit-scrollbar-track { background: var(--ink); }
        ::-webkit-scrollbar-thumb { background: var(--gold); }

        /* ===== PROGRESS ===== */
        #progress {
            position: fixed; top: 0; left: 0; height: 2px;
            background: linear-gradient(90deg, var(--gold), var(--gold2));
            width: 0%; z-index: 9999; transition: width 0.1s linear;
        }

        /* ===== NAVIGATION ===== */
        nav {
            position: fixed; top: 0; width: 100%; z-index: 1000;
            padding: 0 5%;
            height: 88px;
            display: flex; align-items: center; justify-content: space-between;
            transition: all 0.5s var(--ease);
        }
        nav.scrolled {
            height: 72px;
            background: rgba(14, 13, 11, 0.96);
            backdrop-filter: blur(24px);
            border-bottom: 1px solid rgba(201,168,108,0.12);
        }

        .nav-logo {
            display: flex; align-items: center; gap: 16px;
            z-index: 1001;
        }
        .logo-circle {
            width: 52px; height: 52px;
            border-radius: 50%;
            overflow: hidden;
            border: 1.5px solid var(--gold);
            flex-shrink: 0;
            transition: box-shadow 0.4s;
        }
        .logo-circle img { width: 100%; height: 100%; object-fit: cover; }
        .nav-logo:hover .logo-circle {
            box-shadow: 0 0 0 4px rgba(201,168,108,0.2);
        }
        .logo-text {
            display: flex; flex-direction: column; line-height: 1.2;
        }
        .logo-text .name {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 700; font-size: 20px;
            color: var(--white); letter-spacing: 1px;
            text-shadow: 0 1px 10px rgba(0,0,0,0.8);
        }
        .logo-text .title {
            font-size: 9px; font-weight: 500;
            color: var(--gold2); letter-spacing: 3px;
            text-transform: uppercase;
            text-shadow: 0 1px 8px rgba(0,0,0,0.7);
        }

        .nav-links {
            display: flex; align-items: center; gap: 40px;
        }
        .nav-links a {
            color: rgba(255,255,255,0.88);
            font-size: 11px; font-weight: 500;
            letter-spacing: 2.5px; text-transform: uppercase;
            transition: color 0.3s;
        }
        .nav-links a:hover { color: var(--gold); }
        .nav-cta {
            border: 1px solid var(--gold) !important;
            color: var(--gold) !important;
            padding: 10px 26px; border-radius: 2px;
            transition: background 0.3s, color 0.3s !important;
        }
        .nav-cta:hover {
            background: var(--gold) !important;
            color: var(--ink) !important;
        }

        .hamburger {
            display: none; flex-direction: column; gap: 6px;
            cursor: pointer; z-index: 1001;
        }
        .hamburger span {
            width: 28px; height: 1.5px; background: var(--white);
            transition: all 0.3s;
        }

        /* ===== HERO ===== */
        .hero {
            height: 100vh; min-height: 700px;
            position: relative;
            display: flex; align-items: flex-end;
            overflow: hidden;
        }

        /* Cover photo crossfade */
        .hero-slide {
            position: absolute; inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            transform: scale(1.06);
            animation: kenburns 20s ease-in-out infinite alternate;
        }
        .hero-slide.active { opacity: 1; }
        .hero-slide:nth-child(1) { background-image: url('cover_photo.webp'); }
        .hero-slide:nth-child(2) {
            background-image: url('cover_photo_2.webp');
            animation-delay: -10s;
        }

        @keyframes kenburns {
            from { transform: scale(1); }
            to   { transform: scale(1.08); }
        }

        .hero-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(
                to top,
                rgba(14,13,11,0.92) 0%,
                rgba(14,13,11,0.55) 40%,
                rgba(14,13,11,0.2) 80%,
                rgba(14,13,11,0.1) 100%
            );
        }

        /* Subtle horizontal line texture */
        .hero-lines {
            position: absolute; inset: 0; pointer-events: none;
            background-image: repeating-linear-gradient(
                0deg,
                transparent,
                transparent 3px,
                rgba(255,255,255,0.012) 3px,
                rgba(255,255,255,0.012) 4px
            );
        }

        .hero-inner {
            position: relative; z-index: 2;
            width: 100%; padding: 0 6% 110px;
            display: flex; flex-direction: column;
            align-items: flex-start; gap: 0;
        }

        .hero-eyebrow {
            display: flex; align-items: center; gap: 16px;
            margin-top: 20px; margin-bottom: 32px;
        }
        .hero-eyebrow::before {
            content: '';
            display: block; width: 40px; height: 1px;
            background: var(--gold);
        }
        .hero-eyebrow span {
            font-size: 10px; font-weight: 600;
            letter-spacing: 3px; text-transform: uppercase;
            color: var(--gold);
        }

        .hero-name {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 300;
            line-height: 0.88;
            margin-bottom: 0;
        }
        .hero-name .line1 {
            font-size: clamp(72px, 11vw, 160px);
            color: var(--white);
            display: block; letter-spacing: -2px;
        }
        .hero-name .line2 {
            font-size: clamp(72px, 11vw, 160px);
            display: block; letter-spacing: -2px;
            color: var(--gold);
        }
        .btn-gold {
            background: var(--gold); color: var(--ink);
            padding: 16px 40px; border-radius: 2px;
            font-size: 11px; font-weight: 600; letter-spacing: 2.5px;
            text-transform: uppercase;
            transition: all 0.3s var(--ease);
            -webkit-tap-highlight-color: transparent;
            display: inline-block;
        }
        .btn-gold:hover {
            background: var(--gold2);
            box-shadow: 0 8px 40px rgba(201,168,108,0.35);
            transform: translateY(-2px);
        }
        .btn-outline {
            border: 1px solid rgba(255,255,255,0.25);
            color: rgba(255,255,255,0.9);
            padding: 16px 36px; border-radius: 2px;
            font-size: 11px; font-weight: 500; letter-spacing: 2px;
            text-transform: uppercase;
            transition: all 0.3s;
        }
        .btn-outline:hover {
            border-color: var(--gold);
            color: var(--gold);
        }

        .hero-stats { display: none; }

        .scroll-hint {
            position: absolute; bottom: 40px; left: 50%;
            transform: translateX(-50%);
            display: flex; flex-direction: column; align-items: center; gap: 10px;
            z-index: 2;
            animation: bounce 2.5s ease-in-out infinite;
        }
        .scroll-hint span {
            font-size: 8px; letter-spacing: 3px; text-transform: uppercase;
            color: rgba(255,255,255,0.7);
            writing-mode: vertical-rl;
        }
        .scroll-hint-line {
            width: 1px; height: 48px;
            background: linear-gradient(to bottom, var(--gold), transparent);
        }
        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(10px); }
        }

        /* ===== MARQUEE BAND ===== */
        .marquee-wrap {
            background: #e8c84a;
            overflow: hidden; padding: 0;
            white-space: nowrap;
        }
        .marquee-track {
            display: inline-flex; gap: 0;
            animation: marquee 28s linear infinite;
        }
        .marquee-item {
            display: inline-flex; align-items: center; gap: 20px;
            padding: 16px 40px;
            font-size: 11px; font-weight: 600;
            letter-spacing: 2.5px; text-transform: uppercase;
            color: var(--ink);
        }
        .marquee-dot {
            width: 4px; height: 4px; border-radius: 50%;
            background: var(--ink); opacity: 0.4; flex-shrink: 0;
        }
        @keyframes marquee {
            from { transform: translateX(0); }
            to   { transform: translateX(-50%); }
        }

        /* ===== SECTION BASE ===== */
        section { padding: 140px 6%; }

        .eyebrow {
            display: flex; align-items: center; gap: 14px;
            margin-bottom: 20px;
        }
        .eyebrow::before {
            content: ''; display: block;
            width: 32px; height: 1px; background: var(--gold);
        }
        .eyebrow span {
            font-size: 10px; font-weight: 600;
            letter-spacing: 3px; text-transform: uppercase;
            color: var(--gold);
        }

        .section-heading {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 300;
            font-size: clamp(40px, 5.5vw, 72px);
            line-height: 1.0;
            color: var(--ink);
            letter-spacing: -1px;
        }
        .section-heading em {
            font-style: italic; color: var(--stone);
        }
        .section-heading.light { color: var(--white); }
        .section-heading.light em { color: var(--gold); }

        [data-reveal] {
            opacity: 0; transform: translateY(36px);
            transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
        }
        [data-reveal].visible { opacity: 1; transform: translateY(0); }
        [data-reveal-r] {
            opacity: 0; transform: translateX(36px);
            transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
        }
        [data-reveal-r].visible { opacity: 1; transform: translateX(0); }

        /* ===== ABOUT ===== */
        .about-section { background: var(--ink); }
        .about-grid {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 100px; align-items: center;
        }
        .about-grid--single {
            grid-template-columns: 1fr;
            max-width: 800px;
            margin: 0 auto;
        }
        .about-grid--single .about-features {
            align-items: flex-start;
        }
        .about-grid--single .feature-row {
            justify-content: flex-start;
        }

        .about-img-wrap {
            position: relative;
            display: flex; justify-content: center; align-items: center;
        }
        .about-img {
            width: 50%; aspect-ratio: 1/1;
            object-fit: cover;
            filter: grayscale(20%);
            border-radius: 50%;
        }
        .about-img-frame { display: none; }
        .about-img-wrap > * { position: relative; z-index: 1; }
        .about-badge { display: none; }

        .about-content { padding-top: 20px; }
        .about-content .section-heading { margin-bottom: 32px; }
        .about-grid--single .about-content .section-heading { text-align: center; }
        .about-lead {
            font-size: 16px; color: rgba(255,255,255,0.85);
            line-height: 1.85; margin-bottom: 40px; font-weight: 300;
        }
        .about-features { display: flex; flex-direction: column; gap: 0; margin-bottom: 48px; }
        .feature-row {
            display: flex; align-items: center; gap: 20px;
            padding: 20px 0;
            border-bottom: 1px solid rgba(255,255,255,0.06);
            font-size: 14px; color: rgba(255,255,255,0.85); font-weight: 300;
        }
        .feature-row:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
        .feature-row i { color: var(--gold); width: 16px; text-align: center; flex-shrink: 0; }
        .feature-row strong { color: var(--white); font-weight: 500; min-width: 160px; }

        /* ===== SERVICES ===== */
        .services-section { background: var(--cream); }
        .services-header {
            display: flex; justify-content: space-between; align-items: flex-end;
            margin-bottom: 80px; flex-wrap: wrap; gap: 24px;
        }

        .services-grid {
            display: grid; grid-template-columns: repeat(4, 1fr);
            border-top: 1px solid rgba(14,13,11,0.12);
        }
        .service-card {
            padding: 56px 40px 80px;
            border-right: 1px solid rgba(14,13,11,0.12);
            position: relative; overflow: hidden;
            cursor: default;
            transition: background 0.5s var(--ease);
        }
        .service-card:nth-child(4n),
        .service-card:last-child { border-right: none; }
        .service-card { border-bottom: 1px solid rgba(14,13,11,0.12); }
        .service-card::after {
            content: '';
            position: absolute; top: 0; left: 0; right: 0; height: 2px;
            background: var(--gold);
            transform: scaleX(0); transform-origin: left;
            transition: transform 0.5s var(--ease);
        }
        .service-card:hover { background: #38342f; }
        .service-card:hover::after { transform: scaleX(1); }

        .service-num {
            font-family: 'Cormorant Garamond', serif;
            font-size: 80px; font-weight: 300;
            color: rgba(14,13,11,0.25);
            line-height: 1; margin-bottom: 32px;
            transition: color 0.5s;
            user-select: none;
        }
        .service-card:hover .service-num { color: rgba(201,168,108,0.35); }

        .service-icon {
            font-size: 20px; color: var(--gold);
            margin-bottom: 24px; display: block;
        }
        .service-card h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 22px; font-weight: 600;
            margin-bottom: 16px; color: var(--ink);
            letter-spacing: 0.3px;
            transition: color 0.5s;
            line-height: 1.3;
        }
        .service-card:hover h3 { color: var(--white); }
        .service-card p {
            font-size: 13px; line-height: 1.8;
            color: var(--stone); font-weight: 300;
            transition: color 0.5s;
        }
        .service-card:hover p { color: rgba(255,255,255,0.85); }

        .service-link {
            position: absolute; bottom: 36px; left: 40px;
            display: flex; align-items: center; gap: 10px;
            font-size: 10px; font-weight: 600; letter-spacing: 2px;
            text-transform: uppercase; color: var(--gold);
            opacity: 0; transform: translateY(8px);
            transition: all 0.4s var(--ease);
        }
        .service-link::after {
            content: '';
            width: 24px; height: 1px; background: var(--gold);
            transition: width 0.3s;
        }
        .service-card:hover .service-link {
            opacity: 1; transform: translateY(0);
        }
        .service-card:hover .service-link:hover::after { width: 40px; }

        /* ===== COVERAGE ===== */
        .coverage-section {
            background: var(--ink2);
            position: relative; overflow: hidden;
        }
        .coverage-section::before {
            content: '';
            position: absolute; top: 0; right: 0;
            width: 45%; height: 100%;
            background: url('cover_photo.webp') center/cover no-repeat;
            opacity: 0.12;
        }
        .coverage-inner {
            position: relative; z-index: 1;
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 100px; align-items: center;
        }
        .coverage-content .section-heading { margin-bottom: 32px; }
        .coverage-lead {
            font-size: 15px; color: rgba(255,255,255,0.85);
            line-height: 1.85; margin-bottom: 56px; font-weight: 300;
        }
        .coverage-cards {
            display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.05);
        }
        .cov-card {
            background: var(--ink2);
            padding: 32px 28px;
            transition: background 0.3s;
        }
        .cov-card:hover { background: rgba(201,168,108,0.06); }
        .cov-card i {
            font-size: 18px; color: var(--gold);
            margin-bottom: 16px; display: block;
        }
        .cov-card h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 18px; font-weight: 600;
            color: var(--white); margin-bottom: 6px;
        }
        .cov-card p {
            font-size: 12px; color: rgba(255,255,255,0.75); line-height: 1.6;
        }

        .coverage-right {
            display: flex; flex-direction: column; gap: 0;
        }
        .coverage-stat {
            padding: 36px 0;
            border-bottom: 1px solid rgba(255,255,255,0.06);
            display: flex; align-items: center; gap: 32px;
        }
        .coverage-stat:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
        .coverage-stat-num {
            font-family: 'Cormorant Garamond', serif;
            font-size: 52px; font-weight: 300; color: var(--gold);
            line-height: 1; min-width: 120px;
        }
        .coverage-stat-text h4 {
            font-size: 14px; color: var(--white); font-weight: 500; margin-bottom: 4px;
        }
        .coverage-stat-text p {
            font-size: 12px; color: rgba(255,255,255,0.75); line-height: 1.6;
        }

        .region-tags {
            display: flex; flex-wrap: wrap; gap: 8px; margin-top: 40px;
        }
        .region-tag {
            border: 1px solid rgba(201,168,108,0.2);
            color: rgba(201,168,108,0.7); font-size: 10px; font-weight: 500;
            padding: 7px 16px; letter-spacing: 1.5px; text-transform: uppercase;
            transition: all 0.3s;
        }
        .region-tag:hover {
            background: rgba(201,168,108,0.1); color: var(--gold);
            border-color: var(--gold);
        }

        /* ===== PROCESS ===== */
        .process-section { background: var(--cream2); }
        .process-header { text-align: center; margin-bottom: 100px; }
        .process-header .section-heading { margin: 16px 0 0; }

        .process-steps {
            display: grid; grid-template-columns: repeat(4, 1fr);
            position: relative;
        }
        .process-steps::before {
            content: '';
            position: absolute; top: 28px; left: 12%; right: 12%;
            height: 1px; background: rgba(14,13,11,0.12); z-index: 0;
        }
        .step {
            text-align: center; position: relative; z-index: 1;
            padding: 0 32px;
        }
        .step-num {
            width: 56px; height: 56px; border-radius: 50%;
            background: var(--cream2);
            border: 1px solid rgba(14,13,11,0.15);
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 32px;
            font-family: 'Cormorant Garamond', serif;
            font-size: 20px; font-weight: 600; color: var(--ink);
            transition: all 0.4s;
        }
        .step:hover .step-num {
            background: var(--gold); border-color: var(--gold);
            color: var(--ink);
            box-shadow: 0 0 0 8px rgba(201,168,108,0.1);
        }
        .step h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 20px; font-weight: 600;
            margin-bottom: 12px; color: var(--ink);
        }
        .step p { font-size: 13px; color: var(--stone); line-height: 1.75; font-weight: 300; }

        /* ===== PROJECTS ===== */
        .projects-section { background: var(--ink2); }
        .projects-header {
            display: flex; justify-content: space-between; align-items: flex-end;
            margin-bottom: 80px; flex-wrap: wrap; gap: 24px;
        }
        .projects-grid {
            display: grid; grid-template-columns: repeat(3, 1fr);
            gap: 2px;
        }
        .project-card {
            position: relative; overflow: hidden;
            aspect-ratio: 4/3;
            background: var(--ink); cursor: pointer;
        }
        .project-card img {
            width: 100%; height: 100%;
            object-fit: cover;
            filter: grayscale(40%);
            transition: transform 0.7s var(--ease), filter 0.5s;
        }
        .project-card:hover img {
            transform: scale(1.06);
            filter: grayscale(10%);
        }
        .project-card-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(to top, rgba(14,13,11,0.85) 0%, rgba(14,13,11,0.1) 60%);
            transition: background 0.4s;
        }
        .project-card:hover .project-card-overlay {
            background: linear-gradient(to top, rgba(14,13,11,0.92) 0%, rgba(14,13,11,0.3) 100%);
        }
        .project-card-info {
            position: absolute; bottom: 0; left: 0; right: 0;
            padding: 32px 28px;
        }
        .project-cat {
            font-size: 9px; font-weight: 600;
            letter-spacing: 2.5px; text-transform: uppercase;
            color: var(--gold); margin-bottom: 8px;
        }
        .project-card-info h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 22px; font-weight: 600;
            color: var(--white); line-height: 1.2;
        }
        .project-card-info p {
            font-size: 12px; color: rgba(255,255,255,0.75);
            margin-top: 6px; line-height: 1.5;
            opacity: 0; transform: translateY(6px);
            transition: all 0.4s var(--ease);
        }
        .project-card:hover .project-card-info p {
            opacity: 1; transform: translateY(0);
        }

        /* ===== CONTACT ===== */
        .contact-section { background: var(--ink); }
        .contact-grid {
            display: grid; grid-template-columns: 1fr 1.4fr;
            gap: 80px; align-items: start;
        }

        .contact-info .section-heading { margin-bottom: 24px; }
        .contact-lead {
            font-size: 15px; color: rgba(255,255,255,0.85);
            line-height: 1.85; margin-bottom: 48px; font-weight: 300;
        }

        .person-card {
            display: flex; align-items: center; gap: 24px;
            border: 1px solid rgba(255,255,255,0.07);
            padding: 32px 36px; margin-bottom: 40px;
            position: relative;
        }
        .person-card::before {
            content: ''; position: absolute;
            left: 0; top: 0; bottom: 0; width: 2px;
            background: var(--gold);
        }
        .person-photo {
            width: 80px; height: 80px; border-radius: 50%;
            object-fit: cover; flex-shrink: 0;
            border: 1px solid rgba(201,168,108,0.3);
        }
        .person-details h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 22px; color: var(--white); font-weight: 600;
            margin-bottom: 4px;
        }
        .person-details p {
            color: var(--gold); font-size: 10px; font-weight: 500;
            letter-spacing: 2.5px; text-transform: uppercase;
        }

        .contact-detail-list { display: flex; flex-direction: column; gap: 0; }
        .contact-detail {
            display: flex; align-items: center; gap: 20px;
            padding: 20px 0;
            border-bottom: 1px solid rgba(255,255,255,0.06);
            font-size: 14px; color: rgba(255,255,255,0.85); font-weight: 300;
            transition: color 0.3s;
        }
        .contact-detail:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
        .contact-detail:hover { color: var(--gold); }
        .contact-detail i { color: var(--gold); width: 16px; text-align: center; }

        /* Form */
        .contact-form-wrap {
            border: 1px solid rgba(201,168,108,0.45);
            padding: 60px 56px;
        }
        .contact-form-wrap h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 36px; color: var(--white); font-weight: 300;
            margin-bottom: 8px;
            text-align: center;
        }
        .contact-form-wrap .sub {
            color: rgba(255,255,255,0.7); font-size: 12px;
            letter-spacing: 1.5px; margin-bottom: 48px;
        }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
        .field { display: flex; flex-direction: column; gap: 10px; }
        .field label {
            font-size: 9px; font-weight: 600;
            color: rgba(255,255,255,0.75);
            letter-spacing: 2.5px; text-transform: uppercase;
        }
        .field input, .field textarea, .field select {
            background: transparent;
            border: none; border-bottom: 1px solid rgba(255,255,255,0.1);
            color: var(--white); padding: 14px 0;
            font-family: 'Inter', sans-serif;
            font-size: 14px; font-weight: 300; outline: none;
            transition: border-color 0.3s;
            -webkit-appearance: none;
            appearance: none;
        }
        .field select option { background: var(--ink); }
        .field input::placeholder,
        .field textarea::placeholder { color: rgba(255,255,255,0.55); }
        .field input:focus,
        .field textarea:focus,
        .field select:focus { border-bottom-color: var(--gold); }
        .field textarea { resize: none; min-height: 120px; }
        .form-fields { display: flex; flex-direction: column; gap: 28px; }
        .btn-submit {
            background: var(--gold); color: var(--ink);
            padding: 20px 56px; border: none;
            font-family: 'Inter', sans-serif;
            font-size: 10px; font-weight: 600;
            letter-spacing: 2.5px; text-transform: uppercase;
            cursor: pointer; margin-top: 16px;
            transition: all 0.3s var(--ease);
        }
        .btn-submit:hover {
            background: var(--gold2);
            box-shadow: 0 8px 40px rgba(201,168,108,0.3);
            transform: translateY(-2px);
        }
        #formStatus {
            display: none; margin-top: 4px;
            padding: 12px 16px; border-radius: 4px;
            font-size: 13px; font-weight: 500; line-height: 1.4;
        }
        #formStatus.status-success {
            background: rgba(201,168,108,0.12);
            border: 1px solid rgba(201,168,108,0.45);
            color: var(--gold2, #e8c98a);
        }
        #formStatus.status-error {
            background: rgba(180,20,20,0.07);
            border: 1px solid rgba(180,20,20,0.3);
            color: #e06060;
        }

        /* ===== FOOTER ===== */
        footer {
            background: #080806;
            padding: 64px 6% 40px;
        }
        .footer-top {
            display: flex; justify-content: space-between; align-items: center;
            flex-wrap: wrap; gap: 32px;
            padding-bottom: 48px;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            margin-bottom: 40px;
        }
        .footer-brand { display: flex; align-items: center; gap: 18px; }
        .footer-logo-circle {
            width: 52px; height: 52px; border-radius: 50%;
            overflow: hidden; border: 1px solid rgba(201,168,108,0.3);
        }
        .footer-logo-circle img { width: 100%; height: 100%; object-fit: cover; }
        .footer-brand-text .fname {
            font-family: 'Cormorant Garamond', serif;
            font-size: 20px; font-weight: 600; color: var(--white);
        }
        .footer-brand-text .ftitle {
            font-size: 9px; color: rgba(255,255,255,0.55); letter-spacing: 2px;
            text-transform: uppercase; margin-top: 3px;
        }
        .footer-links {
            display: flex; gap: 36px; flex-wrap: wrap;
        }
        .footer-links a {
            color: rgba(255,255,255,0.55); font-size: 10px; font-weight: 500;
            letter-spacing: 2px; text-transform: uppercase;
            transition: color 0.3s;
        }
        .footer-links a:hover { color: var(--gold); }
        .footer-bottom {
            display: flex; justify-content: space-between; align-items: center;
            flex-wrap: wrap; gap: 16px;
        }
        .footer-copy {
            color: rgba(255,255,255,0.7); font-size: 11px; letter-spacing: 0.5px;
        }
        .footer-socials { display: flex; gap: 12px; }
        .social-link {
            width: 40px; height: 40px;
            border: 1px solid rgba(255,255,255,0.12);
            display: flex; align-items: center; justify-content: center;
            color: rgba(255,255,255,0.5); font-size: 14px;
            transition: all 0.3s;
        }
        .social-link:hover {
            border-color: var(--gold); color: var(--gold);
        }

        /* ===== ENGINEERING ANIMATIONS ===== */

        /* Scroll Elevation Meter */
        .scroll-elev {
            position: fixed; right: 16px; top: 50%;
            transform: translateY(-50%);
            z-index: 400; pointer-events: none;
            display: flex; flex-direction: column; align-items: center; gap: 0;
            opacity: 0; transition: opacity 0.6s;
        }
        .scroll-elev.show { opacity: 1; }
        .elev-track {
            position: relative; width: 2px; height: 200px;
            background: rgba(201,168,108,0.18);
        }
        .elev-fill {
            position: absolute; bottom: 0; left: 0; right: 0;
            background: rgba(201,168,108,0.55);
            transition: height 0.12s linear;
        }
        .elev-dot {
            position: absolute; left: 50%; width: 9px; height: 9px;
            background: var(--gold); border-radius: 50%;
            transform: translate(-50%, 50%); bottom: 0%;
            box-shadow: 0 0 14px rgba(201,168,108,0.9);
            transition: bottom 0.12s linear;
        }
        .elev-ticks {
            position: absolute; inset: 0;
            display: flex; flex-direction: column; justify-content: space-between;
        }
        .elev-tick { width: 7px; height: 1px; background: rgba(201,168,108,0.4); margin-left: 2px; }
        .elev-tick.major { width: 13px; background: rgba(201,168,108,0.7); position: relative; }
        .elev-tick.major span {
            position: absolute; right: calc(100% + 7px); top: 50%;
            transform: translateY(-50%);
            font-family: 'Cormorant Garamond', serif; font-size: 8px;
            color: rgba(201,168,108,0.6); letter-spacing: 0.5px; white-space: nowrap;
        }
        .elev-label {
            font-family: 'Cormorant Garamond', serif; font-size: 8px;
            color: rgba(201,168,108,0.45); letter-spacing: 1.5px;
            text-transform: uppercase; writing-mode: vertical-rl;
            margin-top: 10px;
        }

        /* Hero blueprint grid */
        .hero-blueprint {
            position: absolute; inset: 0; z-index: 1; pointer-events: none;
            background-image:
                linear-gradient(rgba(201,168,108,0.065) 1px, transparent 1px),
                linear-gradient(90deg, rgba(201,168,108,0.065) 1px, transparent 1px);
            background-size: 54px 54px;
            animation: bpShift 45s linear infinite;
        }
        @keyframes bpShift {
            from { background-position: 0 0; }
            to   { background-position: 70px 70px; }
        }

        /* Hero engineering crosshair */
        .crosshair-wrap {
            position: absolute; top: 20%; right: 9%; z-index: 3;
            pointer-events: none;
            animation: chFloat 9s ease-in-out infinite;
            opacity: 0; transition: opacity 2s 0.8s;
        }
        .crosshair-wrap.loaded { opacity: 0.60; }
        @keyframes chFloat {
            0%,100% { transform: translate(0,0) rotate(0deg); }
            33%  { transform: translate(5px,-8px) rotate(0.8deg); }
            66%  { transform: translate(-4px,5px) rotate(-0.5deg); }
        }
        .crosshair {
            width: 76px; height: 76px; position: relative;
        }
        .crosshair::before {
            content: ''; position: absolute;
            width: 1px; height: 100%; background: var(--gold); left: 50%; top: 0;
        }
        .crosshair::after {
            content: ''; position: absolute;
            height: 1px; width: 100%; background: var(--gold); top: 50%; left: 0;
        }
        .ch-circle {
            position: absolute; width: 26px; height: 26px;
            border-radius: 50%; border: 1px solid var(--gold);
            left: 50%; top: 50%; transform: translate(-50%,-50%);
        }
        .ch-label {
            display: block; font-family: 'Cormorant Garamond', serif;
            font-size: 8px; color: var(--gold);
            letter-spacing: 2.5px; text-align: center; margin-top: 6px;
        }

        /* Dimension line in about */
        .dim-row {
            display: flex; align-items: center; gap: 0;
            margin: -4px 0 44px; opacity: 0; transition: opacity 0.3s;
        }
        .dim-row.ready { opacity: 1; }
        .dim-tick {
            width: 2px; height: 24px; flex-shrink: 0;
            background: rgba(201,168,108,0.65);
            transform: skewX(-12deg) scaleY(0);
            transition: transform 0.3s ease 1s;
        }
        .dim-row.ready .dim-tick { transform: skewX(-12deg) scaleY(1); }
        .dim-bar {
            flex: 1; height: 1.5px; background: rgba(201,168,108,0.38);
            transform: scaleX(0); transition: transform 1.1s var(--ease);
        }
        .dim-bar.dim-l { transform-origin: right; transition-delay: 0.15s; }
        .dim-bar.dim-r { transform-origin: left;  transition-delay: 0.15s; }
        .dim-row.ready .dim-bar { transform: scaleX(1); }
        .dim-value {
            font-family: 'Cormorant Garamond', serif; font-size: 11px;
            color: rgba(201,168,108,0.72); letter-spacing: 3px;
            text-transform: uppercase; padding: 0 20px; white-space: nowrap;
            opacity: 0; transition: opacity 0.4s 1s;
        }
        .dim-row.ready .dim-value { opacity: 1; }

        /* ── Hero measurement line ───────────────────────── */
        .hero-meas {
            display: flex; align-items: center; gap: 0;
            margin-top: 44px; width: 100%;
            opacity: 0; transition: opacity 1.4s 1s; pointer-events: none;
        }
        .hero-meas.show { opacity: 1; }
        .hm-tick {
            width: 2px; height: 26px; flex-shrink: 0;
            background: rgba(201,168,108,0.7); transform: skewX(-14deg);
        }
        .hm-bar {
            flex: 1; height: 1.5px; background: rgba(201,168,108,0.4);
            transform: scaleX(0); transform-origin: left;
            transition: transform 2.2s cubic-bezier(0.16,1,0.3,1) 1.2s;
        }
        .hm-bar.hm-r { transform-origin: left; transition-delay: 3.6s; }
        .hero-meas.show .hm-bar { transform: scaleX(1); }
        .hm-label {
            font-family: 'Cormorant Garamond', serif; font-size: 11px;
            letter-spacing: 0px; color: rgba(201,168,108,1);
            text-transform: uppercase; padding: 0 22px;
            flex-shrink: 0; white-space: nowrap;
            opacity: 0; transform: translateY(6px);
            transition: opacity 1.8s ease 2.6s,
                        letter-spacing 2.4s cubic-bezier(0.16,1,0.3,1) 2.6s,
                        transform 1.8s ease 2.6s;
        }
        .hero-meas.show .hm-label {
            opacity: 1;
            letter-spacing: 3px;
            transform: translateY(0);
        }

        /* ── Scroll ruler (fixed bottom) ─────────────────── */
        .scroll-ruler {
            position: fixed; bottom: 16px; left: 50%;
            transform: translateX(-50%);
            z-index: 400; pointer-events: none;
            display: flex; align-items: center; gap: 0;
            width: min(520px, 80vw);
            opacity: 0; transition: opacity 0.5s;
        }
        .scroll-ruler.show { opacity: 1; }
        .sr-tick {
            width: 2px; height: 24px; flex-shrink: 0;
            background: rgba(201,168,108,0.65); transform: skewX(-12deg);
        }
        .sr-track {
            flex: 1; position: relative; height: 1.5px;
            background: rgba(201,168,108,0.12);
        }
        .sr-fill {
            position: absolute; left: 0; top: 0; height: 100%;
            background: rgba(201,168,108,0.6); transition: width 0.1s linear;
        }
        .sr-ticks {
            position: absolute; top: -10px; left: 0; right: 0;
            display: flex; justify-content: space-between; pointer-events: none;
        }
        .sr-sub { width: 1px; height: 9px; background: rgba(201,168,108,0.22); }
        .sr-sub.maj { height: 14px; background: rgba(201,168,108,0.5); }
        .sr-value {
            font-family: 'Cormorant Garamond', serif; font-size: 11px;
            letter-spacing: 2.5px; color: rgba(201,168,108,0.75);
            padding: 0 14px; flex-shrink: 0; white-space: nowrap;
        }

        /* ── Caliper ─────────────────────────────────────── */
        .caliper-wrap {
            margin: 36px 0 0; display: flex; justify-content: center;
            opacity: 0; transition: opacity 0.8s;
        }
        .caliper-wrap.vis { opacity: 1; }
        .caliper-svg { width: min(960px, 94vw); color: var(--gold); overflow: visible; }

        /* ── Section measurement lines ───────────────────── */
        .sec-meas {
            display: flex; align-items: center; gap: 0;
            margin: 0 0 52px; opacity: 0; transition: opacity 0.3s;
        }
        .sec-meas.ready { opacity: 1; }
        .sec-meas-tick {
            width: 2px; height: 26px; flex-shrink: 0;
            transform: skewX(-14deg) scaleY(0);
            transition: transform 0.3s ease 1.1s;
        }
        .services-section .sec-meas-tick { background: rgba(14,13,11,0.5); }
        .projects-section .sec-meas-tick { background: rgba(201,168,108,0.65); }
        .sec-meas.ready .sec-meas-tick { transform: skewX(-14deg) scaleY(1); }
        .sec-meas-bar {
            flex: 1; height: 1.5px;
            transform: scaleX(0); transition: transform 1.4s cubic-bezier(0.16,1,0.3,1);
        }
        .services-section .sec-meas-bar { background: rgba(14,13,11,0.22); }
        .projects-section .sec-meas-bar { background: rgba(201,168,108,0.3); }
        .sec-meas-bar.bar-l { transform-origin: right; transition-delay: 0.1s; }
        .sec-meas-bar.bar-r { transform-origin: left; transition-delay: 0.1s; }
        .sec-meas.ready .sec-meas-bar { transform: scaleX(1); }
        .sec-meas-label {
            font-family: 'Cormorant Garamond', serif; font-size: 11px;
            letter-spacing: 3px; padding: 0 20px; white-space: nowrap;
            text-transform: uppercase; flex-shrink: 0;
            opacity: 0; transition: opacity 0.5s 1.3s;
        }
        .services-section .sec-meas-label { color: rgba(14,13,11,0.55); }
        .projects-section .sec-meas-label { color: rgba(201,168,108,0.7); }
        .sec-meas.ready .sec-meas-label { opacity: 1; }

        /* Language toggle */
        .lang-toggle {
            display: flex; align-items: center; gap: 2px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(201,168,108,0.18);
            border-radius: 3px; padding: 4px 5px;
            z-index: 1001; flex-shrink: 0;
            transition: border-color 0.3s;
        }
        .lang-toggle:hover { border-color: rgba(201,168,108,0.45); }
        .lang-btn {
            background: none; border: none;
            font-size: 16px; line-height: 1;
            padding: 2px 6px; border-radius: 2px;
            cursor: pointer; opacity: 0.42;
            transition: opacity 0.25s, background 0.25s;
            display: flex; align-items: center; gap: 5px;
        }
        .lang-btn .lcode {
            font-family: 'Inter', sans-serif;
            font-size: 9px; font-weight: 600;
            letter-spacing: 1.5px; text-transform: uppercase;
            color: rgba(255,255,255,0.45);
        }
        .lang-btn.active { opacity: 1; background: rgba(201,168,108,0.14); }
        .lang-btn.active .lcode { color: var(--gold); }
        .lang-sep { width: 1px; height: 14px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

        /* Footer design credit */
        .footer-design {
            font-size: 13px; letter-spacing: 0.5px;
            color: rgba(255,255,255,0.65);
        }
        .footer-design a { text-decoration: none; }
        .footer-design .design-brand {
            color: var(--gold); font-style: italic; font-weight: 600;
            letter-spacing: 1px;
            border-bottom: 1px solid rgba(201,168,108,0.35);
            transition: color 0.3s, border-color 0.3s;
        }
        .footer-design a:hover .design-brand {
            color: var(--gold2); border-color: var(--gold2);
        }

        /* ===== RESPONSIVE ===== */

        /* — Tablet breakpoint — */
        @media (max-width: 1100px) {
            .about-grid { grid-template-columns: 1fr; gap: 60px; }
            .services-grid { grid-template-columns: repeat(2, 1fr); }
            .coverage-inner { grid-template-columns: 1fr; gap: 60px; }
            .coverage-section::before { display: none; }
            .process-steps { grid-template-columns: 1fr 1fr; gap: 60px; }
            .process-steps::before { display: none; }
            .contact-grid { grid-template-columns: 1fr; }
        }

        /* — Mobile (≤768px) — */
        @media (max-width: 768px) {

            /* Base */
            section { padding: 72px 5% 64px; }

            /* Nav */
            nav { height: 64px; padding: 0 5%; }
            nav.scrolled { height: 56px; background: rgba(14,13,11,0.97); backdrop-filter: blur(20px); }
            .nav-links { display: none; }
            .nav-links.open {
                display: flex; flex-direction: column;
                position: fixed; inset: 0;
                background: rgba(14,13,11,0.98);
                justify-content: center; align-items: center;
                gap: 40px; z-index: 999;
            }
            .nav-links.open a {
                font-size: 18px; letter-spacing: 3px;
                color: rgba(255,255,255,0.9); padding: 10px 0;
            }
            .nav-links.open .nav-cta {
                border: 1px solid var(--gold) !important;
                color: var(--gold) !important;
                padding: 14px 48px; margin-top: 8px;
            }
            .hamburger { display: flex; }

            /* Hero — centered layout, photo shown */
            .hero { min-height: 100svh; flex-direction: column; align-items: center; }
            .hero-blueprint { background-size: 36px 36px; }
            .hero-inner {
                padding: 0 5% 40px;
                align-items: center;
                text-align: center;
                flex: 1;
                justify-content: center;
            }
            .hero-eyebrow { justify-content: center; margin-top: 16px; margin-bottom: 24px; }
            .hero-eyebrow::before { display: none; }
            .hero-name .line1,
            .hero-name .line2 { font-size: clamp(54px, 14vw, 96px); letter-spacing: -1px; }
            .btn-gold {
                background: transparent;
                color: var(--gold);
                border: 1.5px solid var(--gold);
                border-radius: 50px;
                font-weight: 700;
                padding: 15px 44px;
                margin-top: 8px;
                letter-spacing: 2px;
            }
            .btn-gold:hover {
                background: var(--gold);
                color: var(--ink);
                box-shadow: 0 6px 28px rgba(201,168,108,0.35);
            }
            .hero-meas { display: none; }

            /* Hide all decorative engineering widgets */
            .scroll-elev   { display: none; }
            .scroll-ruler  { display: none; }
            .crosshair-wrap{ display: none; }
            .caliper-wrap  { display: block; }
            .caliper-svg   { width: 100%; height: auto; }
            .sec-meas      { display: none; }
            .dim-row       { display: none; }

            /* About */
            .about-section { padding: 72px 5%; }
            .feature-row {
                display: grid;
                grid-template-columns: 20px 120px 1fr;
                gap: 12px;
                align-items: center;
            }

            /* Services */
            .services-header { margin-bottom: 48px; }
            .services-grid { grid-template-columns: repeat(2, 1fr); }
            .service-card {
                padding: 28px 20px 36px;
                border-right: 1px solid rgba(14,13,11,0.12);
                border-bottom: 1px solid rgba(14,13,11,0.12);
            }
            .service-card:nth-child(2n) { border-right: none; }
            /* Touch: show top accent line always */
            .service-card::after { transform: scaleX(1); opacity: 0.35; }
            .service-card:hover::after { opacity: 1; }
            .service-num { font-size: 44px; margin-bottom: 14px; }
            .service-icon { font-size: 18px; margin-bottom: 14px; }
            .service-card h3 { font-size: 18px; margin-bottom: 10px; }
            .service-card p  { font-size: 12.5px; line-height: 1.7; }

            /* Projects */
            .projects-header { margin-bottom: 48px; }
            .projects-grid { grid-template-columns: repeat(2, 1fr); }
            /* Always show project descriptions — no hover on touch */
            .project-card-info p { opacity: 1; transform: translateY(0); }
            .project-card-overlay {
                background: linear-gradient(to top, rgba(14,13,11,0.88) 0%, rgba(14,13,11,0.15) 65%);
            }

            /* Contact */
            .contact-grid { gap: 44px; }
            .form-row { grid-template-columns: 1fr; }
            .contact-form-wrap { padding: 36px 28px; border-width: 1px; }
            .contact-form-wrap h3 { font-size: 30px; }
            .person-card { padding: 22px 18px; }
            /* Bigger tap targets for phone/email */
            .contact-detail { padding: 18px 0; font-size: 15px; }
            .btn-submit { width: auto; padding: 15px 44px; font-size: 11px; border-radius: 50px; align-self: center; }
            /* Contact — richer golden palette on mobile */
            .contact-section { --gold: #e8c84a; --gold2: #f5d966; }
            .contact-form-wrap { border-color: rgba(232,200,74,0.55); }
            .contact-detail { border-bottom-color: rgba(232,200,74,0.15); color: rgba(255,255,255,0.9); }
            .contact-detail:first-child { border-top-color: rgba(232,200,74,0.15); }
            .person-card { border-color: rgba(232,200,74,0.18); }
            .field label { color: rgba(232,200,74,0.80); }
            .field input, .field textarea, .field select { border-bottom-color: rgba(232,200,74,0.2); }

            /* Footer */
            .footer-top { flex-direction: column; align-items: flex-start; gap: 24px; }
            .footer-links { display: none; }
            footer { padding: 52px 5% 36px; }

            /* Services — description hidden, title only */
            .service-card p { display: none; }

            /* Gold — slightly more golden on mobile screens */
            :root { --gold: #c6ab5e; --gold2: #dbbe78; }

            /* ── Mobile Animation Enhancements ──────────────────────────────── */

            /* 1. Restore small slide-up on all reveals (was completely disabled) */
            [data-reveal] { transform: translateY(20px); }

            /* 2. Service cards: alternate left/right slide in 2-column grid */
            .services-grid [data-reveal]             { transform: translateX(-22px); }
            .services-grid [data-reveal]:nth-child(even) { transform: translateX(22px); }
            .services-grid [data-reveal].visible     { transform: translateX(0); }

            /* 3. Project cards: same alternating treatment */
            .projects-grid [data-reveal]             { transform: translateX(-22px); }
            .projects-grid [data-reveal]:nth-child(even) { transform: translateX(22px); }
            .projects-grid [data-reveal].visible     { transform: translateX(0); }

            /* 4. Hero: photo scale-in + text staggered entrance */
            @keyframes mobilePhotoIn {
                from { opacity: 0; transform: scale(0.87) translateY(14px); }
                to   { opacity: 1; transform: scale(1)    translateY(0); }
            }
            @keyframes mobileSlideUp {
                from { opacity: 0; transform: translateY(18px); }
                to   { opacity: 1; transform: translateY(0); }
            }
            .hero-name .line1 { animation: mobileSlideUp 0.8s var(--ease) 0.48s both; }
            .hero-name .line2 { animation: mobileSlideUp 0.8s var(--ease) 0.63s both; }
            .hero-eyebrow     { animation: mobileSlideUp 0.7s var(--ease) 0.78s both; }
            .btn-gold         { animation: mobileSlideUp 0.7s var(--ease) 0.93s both; }

            /* 5. Mobile nav menu: links drop in staggered */
            @keyframes navLinkDrop {
                from { opacity: 0; transform: translateY(-10px); }
                to   { opacity: 1; transform: translateY(0); }
            }
            .nav-links.open a                  { animation: navLinkDrop 0.3s var(--ease) both; }
            .nav-links.open a:nth-child(1)     { animation-delay: 0.04s; }
            .nav-links.open a:nth-child(2)     { animation-delay: 0.10s; }
            .nav-links.open a:nth-child(3)     { animation-delay: 0.16s; }
            .nav-links.open a:nth-child(4)     { animation-delay: 0.22s; }

            /* 6. Contact details: slide in from left sequentially */
            .contact-detail-list .contact-detail {
                opacity: 0; transform: translateX(-16px);
                transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
            }
            .contact-info.visible .contact-detail               { opacity: 1; transform: translateX(0); }
            .contact-info.visible .contact-detail:nth-child(1)  { transition-delay: 0.46s; }
            .contact-info.visible .contact-detail:nth-child(2)  { transition-delay: 0.59s; }
            .contact-info.visible .contact-detail:nth-child(3)  { transition-delay: 0.72s; }

            /* 7. Contact form: heading + fields fade in sequentially */
            .contact-form-wrap h3 {
                opacity: 0; transform: translateY(10px);
                transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
                transition-delay: 0.1s;
            }
            .contact-form-wrap.visible h3 { opacity: 1; transform: translateY(0); }
            .contact-form-wrap .form-fields > * {
                opacity: 0; transform: translateY(12px);
                transition: opacity 0.42s var(--ease), transform 0.42s var(--ease);
            }
            .contact-form-wrap.visible .form-fields > *              { opacity: 1; transform: translateY(0); }
            .contact-form-wrap.visible .form-fields > *:nth-child(1) { transition-delay: 0.22s; }
            .contact-form-wrap.visible .form-fields > *:nth-child(2) { transition-delay: 0.35s; }
            .contact-form-wrap.visible .form-fields > *:nth-child(3) { transition-delay: 0.48s; }
            .contact-form-wrap.visible .form-fields > *:nth-child(4) { transition-delay: 0.61s; }
            .contact-form-wrap.visible .form-fields > *:nth-child(5) { transition-delay: 0.74s; }

            /* 8. Service card: scale-down on tap for touch feedback */
            .service-card:active { transform: scale(0.97); transition: transform 0.12s ease; }
        }

        /* — Small phones (≤480px) — */
        @media (max-width: 480px) {

            /* Base */
            section { padding: 60px 5% 56px; }

            /* Nav — strip to essentials */
            nav { padding: 0 4%; height: 60px; }
            nav.scrolled { height: 52px; }
            .logo-circle { width: 38px; height: 38px; }
            .logo-text .name { font-size: 15px; }
            .logo-text .title { display: none; }
            .lcode { display: none; }
            .lang-btn { font-size: 15px; padding: 2px 3px; }
            .hamburger span { width: 24px; }

            /* Hero */
            .hero-name .line1,
            .hero-name .line2 { font-size: clamp(46px, 12.5vw, 64px); letter-spacing: -0.5px; }
            .hero-eyebrow span { font-size: 9px; letter-spacing: 2px; }
            .hero-eyebrow { margin-bottom: 20px; }
            .btn-gold { width: 80%; text-align: center; padding: 15px 24px; }
            .hero-inner { padding: 0 5% 56px; }

            /* Typography */
            .section-heading { font-size: clamp(28px, 7.5vw, 44px); }
            .about-lead { font-size: 14px; line-height: 1.8; }

            /* Services — single column, no big numbers */
            .services-grid { grid-template-columns: 1fr; }
            .service-card { border-right: none; padding: 24px 18px 32px; }
            .service-card:nth-child(2n) { border-right: none; }
            .service-num { display: none; }

            /* Projects — single column, wider aspect */
            .projects-grid { grid-template-columns: 1fr; }
            .project-card { aspect-ratio: 16/9; }

            /* Contact */
            .contact-form-wrap { padding: 28px 16px; }
            .contact-form-wrap h3 { font-size: 26px; }
            .person-card { flex-direction: column; gap: 14px; padding: 18px 14px; }
            .person-photo { width: 58px; height: 58px; }
            .contact-detail { font-size: 14px; }

            /* Footer */
            .footer-links { flex-direction: column; gap: 12px; }
            .footer-brand-text .ftitle { font-size: 8px; letter-spacing: 1px; }
            footer { padding: 44px 5% 28px; }
        }

/* ── Προσβασιμότητα ── */
.skip-link {
    position: absolute; left: 16px; top: -60px; z-index: 10000;
    padding: 10px 18px; background: #c9a86c; color: #1a1410;
    font-weight: 600; text-decoration: none; border-radius: 2px;
    transition: top 0.2s;
}
.skip-link:focus { top: 16px; }
:focus-visible { outline: 2px solid #c9a86c; outline-offset: 3px; }
#main, section[id] { scroll-margin-top: 96px; }

/* ── Πρώτη οθόνη: πρόταση αξίας + κουμπί κλήσης (anavathmisi #10) ── */
.hero-value {
    max-width: 34em; margin: -12px 0 30px;
    font-size: clamp(15px, 1.3vw, 19px); line-height: 1.55; font-weight: 300;
    color: rgba(255,255,255,0.88);
}
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.hero-actions .btn-gold .fa-solid { margin-right: 10px; }
@media (max-width: 768px) {
    .hero-value { margin: -6px auto 22px; text-align: center; max-width: 28em; font-size: 15px; }
    .hero-actions { justify-content: center; flex-direction: column; gap: 12px; }
    .hero-actions { width: 100%; align-items: center; }
    .hero-actions .btn-gold, .hero-actions .btn-outline { width: 80%; max-width: 320px; text-align: center; white-space: nowrap; }
    .hero-actions .btn-gold { letter-spacing: 1.2px; padding: 15px 16px; }
    .hero-actions .btn-outline { border-radius: 50px; padding: 14px 40px; }
    .hero-inner .hero-value, .hero-inner .hero-actions { animation: mobileSlideUp 0.7s var(--ease) 0.9s both; }
}

/* ── Σελίδες υπηρεσιών (anavathmisi #9) ── */
.service-more {
    display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
    font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold); text-decoration: none;
}
.service-more:hover { color: var(--ink); }
.page-hero {
    position: relative; background: var(--ink); color: var(--white);
    padding: 150px 6% 70px; overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background: url('cover_photo_2.webp') center/cover no-repeat; opacity: 0.14;
}
.page-hero-inner { position: relative; max-width: 820px; }
.page-crumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: 12px; letter-spacing: 1px; color: rgba(255,255,255,0.6); margin-bottom: 28px; }
.page-crumbs a { color: var(--gold); text-decoration: none; }
.page-crumbs a:hover { text-decoration: underline; }
.page-hero-icon { font-size: 26px; color: var(--gold); margin-bottom: 18px; display: block; }
.page-hero h1 {
    font-family: 'Cormorant Garamond', serif; font-weight: 400;
    font-size: clamp(38px, 5.2vw, 68px); line-height: 1.05; margin-bottom: 22px;
}
.page-lead { font-size: clamp(16px, 1.4vw, 19px); line-height: 1.6; font-weight: 300; color: rgba(255,255,255,0.86); max-width: 38em; margin-bottom: 32px; }
.page-main { max-width: 820px; margin: 0 auto; padding: 70px 6% 90px; }
.page-main section { padding: 0; min-height: 0; }
.page-section { margin-bottom: 56px; }
.page-section h2, .page-related h2 {
    font-family: 'Cormorant Garamond', serif; font-weight: 600;
    font-size: clamp(28px, 3vw, 38px); line-height: 1.15; margin-bottom: 18px; color: var(--ink);
}
.page-section p { font-size: 17px; line-height: 1.75; margin-bottom: 14px; color: #2b2721; }
.page-section a { color: #8a6a2f; }
.page-steps { counter-reset: st; list-style: none; padding: 0; }
.page-steps li {
    counter-increment: st; position: relative; padding: 14px 0 14px 58px;
    border-bottom: 1px solid rgba(14,13,11,0.1); font-size: 17px; line-height: 1.6;
}
.page-steps li::before {
    content: counter(st, decimal-leading-zero); position: absolute; left: 0; top: 12px;
    font-family: 'Cormorant Garamond', serif; font-size: 26px; color: var(--gold);
}
.page-list { list-style: none; padding: 0; }
.page-list li { position: relative; padding: 8px 0 8px 26px; font-size: 17px; line-height: 1.6; }
.page-list li::before { content: ''; position: absolute; left: 4px; top: 19px; width: 8px; height: 1px; background: var(--gold); }
.page-note { font-size: 15px !important; color: #6b6356 !important; font-style: italic; }
.page-faq details { border-bottom: 1px solid rgba(14,13,11,0.12); padding: 4px 0; }
.page-faq summary {
    cursor: pointer; list-style: none; padding: 16px 36px 16px 0; position: relative;
    font-size: 17px; font-weight: 600; line-height: 1.45;
}
.page-faq summary::-webkit-details-marker { display: none; }
.page-faq summary::after { content: '+'; position: absolute; right: 4px; top: 12px; font-size: 24px; color: var(--gold); }
.page-faq details[open] summary::after { content: '−'; }
.page-faq details p { padding-bottom: 18px; margin: 0; }
.page-cta { background: var(--ink); color: var(--white); padding: 40px 36px; margin: 20px 0 64px; border-left: 3px solid var(--gold); }
.page-cta p { font-size: 19px; line-height: 1.5; margin-bottom: 24px; font-family: 'Cormorant Garamond', serif; }
.page-related ul { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
.page-related a {
    display: flex; align-items: center; gap: 14px; padding: 20px 22px; text-decoration: none;
    background: var(--cream2); color: var(--ink); font-weight: 600; font-size: 15px; line-height: 1.4;
    border: 1px solid transparent; transition: border-color 0.2s;
}
.page-related a:hover { border-color: var(--gold); }
.page-related .fa-solid { color: var(--gold); font-size: 18px; }
@media (max-width: 768px) {
    .page-hero { padding: 120px 5% 56px; text-align: center; }
    .page-crumbs { justify-content: center; }
    .page-lead { margin-left: auto; margin-right: auto; font-size: 16px; }
    .page-main { padding: 48px 5% 70px; }
    .page-section p, .page-steps li, .page-list li, .page-faq summary { font-size: 16px; }
    .page-cta { padding: 32px 22px; text-align: center; }
}

/* ── Μειωμένη κίνηση (03-kinisi.md· κανόνας 5 της istoselida) ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-delay: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    html { scroll-behavior: auto; }
    /* η λωρίδα υπηρεσιών σταματά — δίνεται πίσω χειροκίνητη κύλιση */
    .marquee-track { animation: none; }
    .marquee-wrap  { overflow-x: auto; }
}

/* ── Υπομενού «Υπηρεσίες» και υπηρεσίες στο υποσέλιδο (σύνδεση σελίδων) ── */
.nav-drop { position: relative; display: flex; align-items: center; padding: 16px 0; margin: -16px 0; }
.nav-drop-top::after {
    content: ''; display: inline-block; width: 5px; height: 5px; margin: -4px 0 0 9px;
    border-right: 1px solid currentColor; border-bottom: 1px solid currentColor;
    transform: rotate(45deg); vertical-align: middle; transition: transform .3s;
}
.nav-drop:hover .nav-drop-top::after, .nav-drop:focus-within .nav-drop-top::after { transform: rotate(225deg); margin-top: 2px; }
.nav-sub {
    position: absolute; top: 100%; left: 50%; min-width: 270px;
    display: flex; flex-direction: column; padding: 10px 0;
    background: rgba(14,13,11,0.97); border: 1px solid rgba(201,168,108,0.2); border-top: 2px solid var(--gold);
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
    opacity: 0; visibility: hidden; transform: translate(-50%, 10px);
    transition: opacity .25s, transform .25s var(--ease), visibility 0s .25s;
}
.nav-drop:hover .nav-sub, .nav-drop:focus-within .nav-sub {
    opacity: 1; visibility: visible; transform: translate(-50%, 0);
    transition: opacity .25s, transform .25s var(--ease), visibility 0s;
}
.nav-links .nav-sub a {
    padding: 13px 24px; white-space: nowrap; font-size: 12px; letter-spacing: .6px;
    text-transform: none; color: rgba(255,255,255,0.85);
}
.nav-links .nav-sub a:hover { background: rgba(201,168,108,0.1); color: var(--gold); }
.nav-links .nav-sub a[aria-current="page"] { color: var(--gold); }
.footer-svc { display: flex; flex-direction: column; gap: 10px; }
.footer-svc-h { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.footer-svc a { color: rgba(255,255,255,0.7); font-size: 13px; transition: color .3s; }
.footer-svc a:hover, .footer-svc a[aria-current="page"] { color: var(--gold); }
@media (max-width: 768px) {
    .nav-links.open { gap: 26px; overflow-y: auto; justify-content: safe center; padding: 84px 0 40px; }
    .nav-drop { flex-direction: column; padding: 0; margin: 0; }
    .nav-drop-top::after { display: none; }
    .nav-sub {
        position: static; min-width: 0; transform: none; opacity: 1; visibility: visible;
        background: none; border: 0; box-shadow: none; padding: 12px 0 0; align-items: center; gap: 2px;
    }
    .nav-links.open .nav-sub a {
        font-size: 14px; letter-spacing: .4px; text-transform: none; padding: 9px 0;
        color: var(--gold2);
    }
    .footer-svc a { padding: 6px 0; font-size: 14px; }
}

/* ── Νέα πρώτη οθόνη (επανασχεδιασμός) ── */
.hero-portrait { margin: 0; }
.hero-portrait img { display: block; width: 100%; height: 100%; object-fit: cover; }
.hero-portrait figcaption {
    font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
}
.hero-svc { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.hero-svc a {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 11px 16px; font-size: 13px; letter-spacing: .3px;
    color: rgba(255,255,255,0.92); background: rgba(14,13,11,0.45);
    border: 1px solid rgba(201,168,108,0.35); border-radius: 2px;
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    transition: border-color .3s, background .3s, color .3s;
}
.hero-svc a i { color: var(--gold); font-size: 14px; }
.hero-svc a:hover { border-color: var(--gold); background: rgba(201,168,108,0.14); }
.hero-meas { margin-top: 36px; }
@media (max-width: 768px) {
    .hero { height: auto; min-height: 100svh; }
    .hero-svc { flex-direction: column; width: 100%; max-width: 340px; margin: 26px auto 0; gap: 8px; }
    .hero-svc a { width: 100%; padding: 14px 16px; font-size: 14px; text-align: left; }
    .hero-svc a::after { content: ''; margin-left: auto; width: 7px; height: 7px; border-right: 1.5px solid var(--gold); border-top: 1.5px solid var(--gold); transform: rotate(45deg); }
    .hero-inner .hero-svc { animation: mobileSlideUp 0.7s var(--ease) 1.05s both; }
}
/* Διάταξη: κείμενο αριστερά, πορτρέτο σε όλο το ύψος δεξιά */
.hero { align-items: stretch; }
.hero-overlay { background: linear-gradient(90deg, rgba(14,13,11,.97) 0%, rgba(14,13,11,.92) 42%, rgba(14,13,11,.7) 62%, rgba(14,13,11,.5) 100%); }
.hero-inner { width: 58%; padding: 140px 3% 80px 6%; justify-content: center; }
.hero-name .line1, .hero-name .line2 { font-size: clamp(64px, 8vw, 128px); }
.hero-portrait { position: absolute; z-index: 2; top: 0; right: 0; bottom: 0; width: 42%; }
.hero-portrait img { object-position: 50% 18%; filter: grayscale(12%) contrast(1.04); }
.hero-portrait::before { content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: linear-gradient(90deg, rgba(14,13,11,1) 0%, rgba(14,13,11,0) 22%), linear-gradient(0deg, rgba(14,13,11,.75) 0%, rgba(14,13,11,0) 30%), linear-gradient(180deg, rgba(14,13,11,.85) 0%, rgba(14,13,11,0) 16%); }
.hero-portrait::after { content: ''; position: absolute; z-index: 2; inset: 112px 32px 32px 56px; border: 1px solid rgba(201,168,108,.6); pointer-events: none; }
.hero-portrait figcaption { position: absolute; z-index: 3; left: 80px; bottom: 58px; color: var(--gold); }
.crosshair-wrap { display: none; }
@keyframes heroPortraitIn { from { opacity: 0; transform: scale(1.04); } to { opacity: 1; transform: none; } }
.hero-portrait img { animation: heroPortraitIn 1.4s var(--ease) .1s both; }
@media (max-width: 768px) {
    .hero { flex-direction: column; align-items: stretch; }
    .hero { background: var(--ink); }
    .hero-slide, .hero-overlay { display: none; }
    .hero-blueprint { z-index: 0; }
    .hero-portrait { position: relative; width: 100%; height: 58svh; min-height: 380px; }
    .hero-portrait { box-sizing: border-box; padding-top: 64px; }
    .hero-portrait img { object-position: 50% 0; }
    .hero-portrait::before { background: linear-gradient(0deg, rgba(14,13,11,1) 0%, rgba(14,13,11,.6) 22%, rgba(14,13,11,0) 55%), linear-gradient(180deg, rgba(14,13,11,.6) 0%, rgba(14,13,11,0) 22%); }
    .hero-portrait::after { inset: 76px 16px 16px 16px; border-bottom: 0; }
    .hero-portrait figcaption { left: 50%; transform: translateX(-50%); bottom: 18px; white-space: nowrap; }
    .hero-inner { width: 100%; padding: 8px 5% 48px; margin-top: -8px; flex: 0; }
    .hero-eyebrow { margin-top: 12px; }
    .hero-actions .btn-gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
    .hero-actions .btn-gold:hover { background: var(--gold2); }
}

/* ── Έλεγχος κινητού (kinito): γράμματα ≥12px, στόχοι αφής ≥44px, χωρίς επικαλύψεις ── */
.lang-btn { white-space: nowrap; }
@media (max-width: 768px) {
    .hamburger { padding: 14px 10px; margin: -14px -10px -14px 0; }
    .lang-toggle { padding: 0 4px; }
    .lang-btn { min-width: 44px; min-height: 44px; padding: 13px 6px; justify-content: center; }
    .nav-logo { min-height: 44px; }
    .logo-text .title, .lang-btn .lcode { font-size: 12px; letter-spacing: 1.5px; }
    .hero-eyebrow span { font-size: 12px; letter-spacing: 2px; }
    .hero-portrait figcaption { font-size: 12px; letter-spacing: 2.5px; }
    .footer-brand-text .ftitle { font-size: 12px; letter-spacing: .5px; line-height: 1.5; text-wrap: balance; }
    .footer-svc { gap: 0; }
    .footer-svc-h { font-size: 12px; margin-bottom: 2px; }
    .footer-svc a { display: block; padding: 14px 0; }
    .social-link { width: 44px; height: 44px; }
    .btn-outline, .hero-actions .btn-outline { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
    .page-crumbs { align-items: center; margin: -15px 0 13px; }
    .page-crumbs a { display: inline-block; padding: 15px 4px; }
    .feature-row { grid-template-columns: 20px 1fr; row-gap: 4px; }
    .feature-row span { grid-column: 2; }
    .contact-grid { grid-template-columns: minmax(0, 1fr); }
    #services, #projects { overflow-x: clip; }  /* οι κάρτες μπαίνουν από τα πλάγια (translateX) */
    .expertease-credit .ec-copy, .expertease-credit .ec-label { font-size: 12px; }
    .expertease-credit .ec-brand { min-height: 44px; }
}

/* ── Ενότητα «Σχετικά» (νέα διάταξη): κείμενο αριστερά, τομή κτιρίου δεξιά ── */
.about2 {
    display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    gap: clamp(40px, 6vw, 96px); align-items: center;
    max-width: 1180px; margin: 0 auto;
}
.about2 .section-heading { text-align: left; margin-bottom: 28px; }
.about2 .about-lead { margin-bottom: 0; max-width: 36em; }
.about-feat {
    list-style: none; margin: 40px 0 0; padding: 0;
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px;
}
.about-feat li {
    display: flex; flex-direction: column; gap: 8px;
    padding: 22px 20px 20px; border: 1px solid rgba(201,168,108,0.22);
    border-top: 2px solid var(--gold); background: rgba(255,255,255,0.025);
}
.about-feat i { color: var(--gold); font-size: 17px; margin-bottom: 4px; }
.about-feat strong { color: var(--white); font-weight: 600; font-size: 15px; }
.about-feat span { color: rgba(255,255,255,0.72); font-size: 13.5px; line-height: 1.55; }

.about-draw { margin: 0; color: var(--gold); }
.about-draw svg { width: 100%; max-width: 440px; height: auto; display: block; margin: 0 auto; overflow: visible; }
.about-draw .ln {
    stroke: currentColor; stroke-width: 1.4; stroke-linecap: square; fill: none;
    stroke-dasharray: 1; stroke-dashoffset: 1;
    transition: stroke-dashoffset 1.1s cubic-bezier(.65,0,.35,1) var(--d, 0s);
}
.about-draw .ln.thin { stroke-width: .9; stroke: rgba(245,240,232,0.45); }
.about-draw .axis .ln { stroke: rgba(201,168,108,0.45); stroke-width: .8; }
.about-draw .axis path.ln { stroke-dasharray: 1; }
.about-draw .ln.dash { stroke: rgba(245,240,232,0.35); stroke-width: .8; }
.about-draw .tx {
    fill: currentColor; font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600;
    text-anchor: middle; opacity: 0; transition: opacity .6s ease var(--d, 0s);
}
.about-draw .tx.lv { text-anchor: start; font-size: 11px; letter-spacing: .5px; fill: rgba(245,240,232,0.8); }
.about-draw .tx.dm { font-size: 11px; letter-spacing: 1px; }
.about-draw.in .ln { stroke-dashoffset: 0; }
.about-draw.in .tx { opacity: 1; }
/* Μετά το σχέδιο, οι άξονες γίνονται αξονικές (παύλα-τελεία) */
.about-draw.done .axis path.ln { stroke-dasharray: 10 4 2 4; transition: none; }
.about-draw figcaption {
    margin-top: 14px; text-align: center; font-size: 12px; letter-spacing: 2px;
    text-transform: uppercase; color: rgba(201,168,108,0.8);
}
@media (prefers-reduced-motion: reduce) {
    .about-draw .ln, .about-draw .tx { transition: none; }
}
@media (max-width: 768px) {
    .eyebrow span { font-size: 12px; letter-spacing: 2.5px; }
}
@media (max-width: 960px) {
    .about2 { grid-template-columns: 1fr; }
    .about-draw svg { max-width: 360px; }
}
@media (max-width: 700px) {
    .about-feat { grid-template-columns: 1fr; margin-top: 28px; }
    .about-feat li { flex-direction: row; flex-wrap: wrap; align-items: baseline; column-gap: 12px; padding: 16px 16px; }
    .about-feat li span { flex-basis: 100%; padding-left: 29px; }
    .about-draw svg { max-width: 340px; }
    .about-draw .tx { font-size: 16px; }
    .about-draw .tx.lv, .about-draw .tx.dm { font-size: 15px; }
    .about-draw figcaption { font-size: 12px; letter-spacing: 1px; }
}

/* ── Κάρτες υπηρεσιών: όλη η κάρτα οδηγεί στη σελίδα της υπηρεσίας ── */
.service-card:has(.service-more) { cursor: pointer; }
.service-card .service-more::before { content: ''; position: absolute; inset: 0; z-index: 1; }
.service-card .service-more:focus-visible { outline: none; }
.service-card:has(.service-more:focus-visible) { outline: 2px solid var(--gold); outline-offset: -2px; }

/* ── Νέα του κλάδου (news.json) ── */
.news-section { background: var(--cream2); padding-left: 0; padding-right: 0; }
.news-head { padding: 0 6%; margin-bottom: 48px; }
.news-band {
    overflow: hidden; position: relative; padding: 6px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.news-track { display: inline-flex; gap: 22px; will-change: transform; animation: newsDrift 90s linear infinite; }
@keyframes newsDrift { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.news-card {
    position: relative; display: flex; flex-direction: column; gap: 10px;
    width: 340px; flex-shrink: 0; padding: 24px 24px 22px;
    background: var(--cream); border: 1px solid rgba(14,13,11,0.08); border-top: 3px solid var(--gold);
    color: var(--ink); text-decoration: none; transition: transform .3s var(--ease), box-shadow .3s;
}
.news-card--link:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(14,13,11,0.12); }
.news-card-top { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; }
.news-card-cat { font-size: 11px; font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase; color: #8a6d3b; }
.news-card-date { font-size: 12px; color: var(--stone); white-space: nowrap; }
.news-card-title { font-size: 17px; font-weight: 600; line-height: 1.35; }
.news-card-sum { font-size: 14px; line-height: 1.6; color: #3d3935; }
.news-card-src { font-size: 12px; color: var(--stone); font-style: italic; margin-top: auto; }
.news-card-go { position: absolute; right: 20px; bottom: 16px; color: var(--gold); font-size: 18px; }
.news-card--link .news-card-src { padding-right: 28px; }
@media (max-width: 768px) {
    .news-head { padding: 0 5%; margin-bottom: 32px; text-align: center; }
    .news-head .eyebrow { justify-content: center; }
    .news-card { width: 290px; padding: 20px; }
}
@media (prefers-reduced-motion: reduce) {
    .news-track { animation: none; }
    .news-band { overflow-x: auto; }
}
@media (max-width: 900px) { .page-related ul { grid-template-columns: 1fr; } }
.page-related li:last-child:nth-child(odd):not(:first-child) { grid-column: 1 / -1; }

/* ── Σελίδα «Υπηρεσίες» ── */
.page-main--wide { max-width: 1180px; }
.hub-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.hub-card {
    display: flex; flex-direction: column; gap: 10px; height: 100%; padding: 28px 26px 24px;
    background: var(--white); border: 1px solid rgba(14,13,11,0.08); border-top: 3px solid var(--gold);
    color: var(--ink); text-decoration: none; transition: transform .3s var(--ease), box-shadow .3s;
}
a.hub-card:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(14,13,11,0.1); }
.hub-card .fa-solid { color: var(--gold); font-size: 22px; }
.page-main .hub-card h2 { font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 600; margin: 4px 0 0; line-height: 1.35; }
.hub-card p { font-size: 14.5px; line-height: 1.65; color: #3d3935; margin: 0; }
.hub-more { margin-top: auto; padding-top: 8px; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: #8a6d3b; }
.hub-card--plain { border-top-color: rgba(201,168,108,0.45); }
.nav-links .nav-sub a.nav-sub-all { border-top: 1px solid rgba(201,168,108,0.2); margin-top: 6px; color: var(--gold); }
@media (max-width: 768px) {
    .hub-grid { grid-template-columns: 1fr; }
    a.hub-card p { display: -webkit-box; -webkit-line-clamp: 5; line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; }  /* το πλήρες κείμενο είναι στη σελίδα της υπηρεσίας */
    .nav-links.open .nav-sub a.nav-sub-all { border-top: 0; margin-top: 0; }
}

/* ── Λογότυπο με κύκλο (πλήρες), +25% ── */
.logo-circle { width: 65px; height: 65px; border: 0; background: transparent; }
.logo-circle img { object-fit: contain; }
.nav-logo:hover .logo-circle { box-shadow: 0 0 0 4px rgba(201,168,108,0.25); }
.footer-logo-circle { width: 65px; height: 65px; border: 0; background: transparent; }
.footer-logo-circle img { object-fit: contain; }
@media (max-width: 480px) { .logo-circle { width: 48px; height: 48px; } }

/* ── Μενού κινητού: το φίλτρο θολώματος της μπάρας περιόριζε το σταθερό μενού στο ύψος της ── */
nav:has(.nav-links.open), nav.scrolled:has(.nav-links.open) { backdrop-filter: none; -webkit-backdrop-filter: none; }
.nav-links.open { height: 100vh; height: 100dvh; background: var(--ink) !important; }

/* ── Αριθμοί εμπειρίας ── */
.about-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 34px; padding-top: 26px; border-top: 1px solid rgba(201,168,108,0.25); }
.about-stat { display: flex; flex-direction: column; gap: 6px; }
.about-stat-num { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(30px, 3.4vw, 44px); line-height: 1; color: var(--gold); font-variant-numeric: tabular-nums; }
.about-stat-label { font-size: 12.5px; line-height: 1.45; color: rgba(255,255,255,0.72); }
@media (max-width: 480px) { .about-stats { gap: 10px; } .about-stat-num { font-size: 28px; } .about-stat-label { font-size: 12px; } }

/* ── Από την αρχή ως το τέλος ── */
.onestop { background: var(--ink); color: #fff; padding: 110px 6% 100px; position: relative; overflow: hidden; }
.onestop::before { content: ''; position: absolute; inset: 0; pointer-events: none;
    background-image: linear-gradient(rgba(201,168,108,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,108,0.05) 1px, transparent 1px);
    background-size: 44px 44px; }
.onestop-inner { position: relative; max-width: 1100px; margin: 0 auto; }
.onestop-head { max-width: 680px; }
.onestop-lead { margin-top: 18px; color: rgba(255,255,255,0.75); font-size: 16px; line-height: 1.75; }
.onestop-path { list-style: none; margin: 64px 0 0; padding: 0; position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.onestop-path li { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px;
    opacity: 0; transform: translateY(14px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.os-node { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; background: var(--ink2);
    border: 1.5px solid rgba(201,168,108,0.35); color: var(--gold); font-size: 22px; transition: border-color .5s, box-shadow .5s, background .5s; }
.os-num { font-size: 11px; letter-spacing: 3px; color: var(--gold2); }
.os-label { font-size: 15px; color: #fff; max-width: 190px; }
.os-track { position: absolute; z-index: 0; left: 12.5%; right: 12.5%; top: 31px; height: 2px; background: rgba(201,168,108,0.18); }
.os-fill { position: absolute; inset: 0; background: linear-gradient(90deg, var(--gold), var(--gold2)); transform-origin: left center; transform: scaleX(0); transition: transform 2.2s cubic-bezier(.45,.05,.25,1) .3s; }
.os-runner { position: absolute; top: 50%; left: 0; width: 34px; height: 34px; margin: -17px 0 0 -17px; border-radius: 50%; display: grid; place-items: center;
    background: var(--gold); color: var(--ink); font-size: 14px; box-shadow: 0 0 0 6px rgba(201,168,108,0.18); opacity: 0; }
.onestop-note { margin-top: 44px; text-align: center; color: var(--gold2); font-size: 14px; letter-spacing: .3px; opacity: 0; transition: opacity .8s 2.6s; }
.onestop-inner.visible .onestop-path li { opacity: 1; transform: none; }
.onestop-inner.visible .onestop-path li:nth-child(1) { transition-delay: .2s; }
.onestop-inner.visible .onestop-path li:nth-child(2) { transition-delay: .9s; }
.onestop-inner.visible .onestop-path li:nth-child(3) { transition-delay: 1.6s; }
.onestop-inner.visible .onestop-path li:nth-child(4) { transition-delay: 2.3s; }
.onestop-inner.visible .os-node { border-color: var(--gold); box-shadow: 0 0 0 6px rgba(201,168,108,0.10); }
.onestop-inner.visible li:nth-child(1) .os-node { transition-delay: .3s; }
.onestop-inner.visible li:nth-child(2) .os-node { transition-delay: 1s; }
.onestop-inner.visible li:nth-child(3) .os-node { transition-delay: 1.7s; }
.onestop-inner.visible li:nth-child(4) .os-node { transition-delay: 2.4s; background: rgba(201,168,108,0.14); }
.onestop-inner.visible .os-fill { transform: scaleX(1); }
.onestop-inner.visible .os-runner { animation: osRun 2.2s cubic-bezier(.45,.05,.25,1) .3s forwards; }
.onestop-inner.visible li:nth-child(4) .os-node { animation: osPulse 2.4s ease-in-out 2.7s infinite; }
.onestop-inner.visible .onestop-note { opacity: 1; }
@keyframes osRun { 0% { left: 0; opacity: 0; } 8% { opacity: 1; } 90% { opacity: 1; } 100% { left: 100%; opacity: 0; } }
@keyframes osPulse { 0%, 100% { box-shadow: 0 0 0 6px rgba(201,168,108,0.18); } 50% { box-shadow: 0 0 0 12px rgba(201,168,108,0.06); } }
@media (max-width: 768px) {
    .onestop { padding: 72px 6% 64px; }
    .onestop-path { grid-template-columns: minmax(0, 1fr); gap: 26px; margin-top: 40px; }
    .onestop-path li { flex-direction: row; text-align: left; gap: 16px; }
    .os-node { width: 52px; height: 52px; font-size: 18px; flex-shrink: 0; }
    .os-num { order: 3; margin-left: auto; }
    .os-label { max-width: none; }
    .os-track { left: 25px; right: auto; top: 26px; bottom: 26px; width: 2px; height: auto; }
    .os-fill { transform-origin: center top; transform: scaleY(0); background: linear-gradient(180deg, var(--gold), var(--gold2)); }
    .onestop-inner.visible .os-fill { transform: scaleY(1); }
    .os-runner { left: 50%; top: 0; width: 28px; height: 28px; margin: -14px 0 0 -14px; font-size: 12px; }
    .onestop-inner.visible .os-runner { animation: osRunV 2.2s cubic-bezier(.45,.05,.25,1) .3s forwards; }
    .onestop-note { text-align: left; margin-top: 32px; }
}
@keyframes osRunV { 0% { top: 0; opacity: 0; } 8% { opacity: 1; } 90% { opacity: 1; } 100% { top: 100%; opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
    .onestop-path li, .onestop-note { opacity: 1; transform: none; transition: none; }
    .os-fill { transform: none !important; transition: none; }
    .os-runner { display: none; }
}

/* ── Χάρτης γραφείου (φορτώνει με κλικ) ── */
.contact-map { margin-top: 26px; border: 1px solid rgba(201,168,108,0.3); height: 340px; position: relative; overflow: hidden; background: var(--ink2); }
.contact-map iframe { display: block; width: 100%; height: 100%; border: 0; filter: grayscale(35%) contrast(1.05); }
.contact-map-ph { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; text-align: center; padding: 16px;
    background-image: linear-gradient(rgba(201,168,108,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,108,0.07) 1px, transparent 1px); background-size: 28px 28px; }
.contact-map-ph > i { font-size: 30px; color: var(--gold); }
.contact-map-btn { font: inherit; font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); background: transparent; border: 1px solid var(--gold); padding: 12px 26px; min-height: 44px; cursor: pointer; transition: background .3s, color .3s; }
.contact-map-btn:hover, .contact-map-btn:focus-visible { background: var(--gold); color: var(--ink); }
.contact-map-ph small { font-size: 12px; color: rgba(255,255,255,0.6); }
.contact-map-dir { display: inline-block; margin-top: 12px; font-size: 13px; color: var(--gold2); padding: 6px 0; }
.contact-map-dir:hover { color: var(--gold); }

/* ── Δείγματα έργων + προβολή φωτογραφιών ── */
.projects-lead { margin-top: 14px; max-width: 560px; color: rgba(255,255,255,0.72); font-size: 15px; line-height: 1.7; }
button.project-card { display: block; width: 100%; padding: 0; border: 0; font: inherit; text-align: left; color: inherit; }
button.project-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.project-count { position: absolute; top: 16px; right: 16px; z-index: 2; font-size: 11px; letter-spacing: 1px; color: #fff; background: rgba(14,13,11,0.72); padding: 6px 10px; display: inline-flex; gap: 6px; align-items: center; }
.project-count i { color: var(--gold); font-size: 11px; }
.gallery { width: 100vw; height: 100vh; height: 100dvh; max-width: none; max-height: none; margin: 0; padding: 0; border: 0; background: var(--ink); color: #fff; }
.gallery[open] { display: flex; align-items: center; justify-content: center; }
.gallery::backdrop { background: rgba(0,0,0,0.6); }
.gal-fig { margin: 0; max-width: min(92vw, 1400px); display: flex; flex-direction: column; align-items: center; gap: 12px; }
.gal-fig img { max-width: 100%; max-height: 82vh; max-height: 82dvh; object-fit: contain; }
.gal-fig figcaption { font-size: 13px; letter-spacing: .5px; color: var(--gold2); text-align: center; }
.gal-close { position: absolute; top: 14px; right: 18px; width: 48px; height: 48px; font-size: 34px; line-height: 1; background: none; border: 0; color: #fff; cursor: pointer; }
.gal-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 72px; font-size: 44px; line-height: 1; color: #fff; background: rgba(14,13,11,0.5); border: 1px solid rgba(201,168,108,0.35); cursor: pointer; }
.gal-prev { left: 14px; } .gal-next { right: 14px; }
.gal-close:hover, .gal-nav:hover { color: var(--gold); }
@media (max-width: 1024px) and (min-width: 481px) { .projects-grid .project-card:first-child { grid-column: 1 / -1; aspect-ratio: 16/9; } }
@media (max-width: 600px) { .gal-nav { width: 44px; height: 56px; font-size: 34px; top: auto; bottom: 18px; transform: none; } .gal-prev { left: 18px; } .gal-next { right: 18px; } .gal-fig img { max-height: 74vh; max-height: 74dvh; } }

/* εναλλαγή φωτογραφιών στις κάρτες έργων, κάθε 5″ */
.project-card .pj-img { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease, transform 0.7s var(--ease), filter 0.5s; }
.project-card .pj-img.on { opacity: 1; }
.project-card .pj-img:not([src]) { display: none; }
.project-card .project-card-overlay, .project-card .project-card-info { z-index: 1; }
@media (max-width: 480px) { .contact-map { height: 280px; } }

/* ── «Από την αρχή ως το τέλος»: τίτλος σε μία γραμμή, συνεχής κίνηση ── */
.onestop-head { max-width: none; }
.onestop-lead { max-width: 680px; }
@media (min-width: 900px) { #onestopHeading { white-space: nowrap; } }
.os-fill { transition: none; transform: scaleX(0); }
.onestop-inner.visible .os-fill { transform: scaleX(0); animation: osFillLoop 6s linear 0.6s infinite; }
.onestop-inner.visible .os-runner { animation: osRunLoop 6s linear 0.6s infinite; }
.onestop-inner.visible .onestop-path li .os-node { animation: osHit 6s linear infinite; }
.onestop-inner.visible .onestop-path li:nth-child(1) .os-node { animation-delay: 0.6s; }
.onestop-inner.visible .onestop-path li:nth-child(2) .os-node { animation-delay: 2.3s; }
.onestop-inner.visible .onestop-path li:nth-child(3) .os-node { animation-delay: 4s; }
.onestop-inner.visible .onestop-path li:nth-child(4) .os-node { animation-delay: 5.7s; }
@keyframes osRunLoop { 0% { left: 0; opacity: 0; } 5% { opacity: 1; } 85% { left: 100%; opacity: 1; } 95%, 100% { left: 100%; opacity: 0; } }
@keyframes osFillLoop { 0% { transform: scaleX(0); opacity: 1; } 85% { transform: scaleX(1); opacity: 1; } 100% { transform: scaleX(1); opacity: 0; } }
@keyframes osHit {
    0% { background: var(--gold); color: var(--ink); border-color: var(--gold); box-shadow: 0 0 0 10px rgba(201,168,108,0.22); }
    14% { background: var(--ink2); color: var(--gold); border-color: var(--gold); box-shadow: 0 0 0 6px rgba(201,168,108,0.10); }
    100% { background: var(--ink2); color: var(--gold); border-color: var(--gold); box-shadow: 0 0 0 6px rgba(201,168,108,0.10); }
}
@media (max-width: 768px) {
    .os-fill { transform: scaleY(0); }
    .onestop-inner.visible .os-fill { transform: scaleY(0); animation-name: osFillLoopV; }
    .onestop-inner.visible .os-runner { animation-name: osRunLoopV; }
}
@keyframes osRunLoopV { 0% { top: 0; opacity: 0; } 5% { opacity: 1; } 85% { top: 100%; opacity: 1; } 95%, 100% { top: 100%; opacity: 0; } }
@keyframes osFillLoopV { 0% { transform: scaleY(0); opacity: 1; } 85% { transform: scaleY(1); opacity: 1; } 100% { transform: scaleY(1); opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
    .onestop-inner.visible .os-fill { animation: none; transform: none; }
    .onestop-inner.visible .os-runner, .onestop-inner.visible .onestop-path li .os-node { animation: none; }
}

/* ── Υπηρεσίες: 2 σειρές των 5 (κινητό: ανά 2), «φερμουάρ» με την κύλιση ── */
.services-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); overflow: visible; }
.services-section { overflow-x: clip; }
.service-card { padding: 44px 26px 60px; will-change: transform; transition: background 0.5s var(--ease); }
.service-card:nth-child(4n) { border-right: 1px solid rgba(14,13,11,0.12); }
.service-card:nth-child(5n), .service-card:last-child { border-right: none; }
.service-num { font-size: 60px; margin-bottom: 22px; }
.service-card h3 { font-size: 19px; }
.service-card p { font-size: 13px; line-height: 1.65; }
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .service-card:nth-child(5n) { border-right: 1px solid rgba(14,13,11,0.12); }
    .service-card:nth-child(2n) { border-right: none; }
}
@media (max-width: 480px) {
    .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .service-card { padding: 20px 12px 26px; }
    .service-card:nth-child(odd) { border-right: 1px solid rgba(14,13,11,0.12); }
    .service-card h3 { font-size: 15.5px; line-height: 1.25; }
    .service-card p { font-size: 13px; line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 5; line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; }
    .service-icon { font-size: 20px; }
}
/* ── Χάρτης: λωρίδα πλήρους πλάτους κάτω από την επικοινωνία ── */
.contact-map-band { background: var(--ink); border-top: 1px solid rgba(201,168,108,0.3); border-bottom: 1px solid rgba(201,168,108,0.3); height: 340px; }
.contact-map-band iframe { display: block; width: 100%; height: 100%; border: 0; filter: grayscale(35%) contrast(1.05); }
@media (max-width: 768px) { .contact-map-band { height: 260px; } }
.service-card .service-more { display: inline-flex; align-items: center; min-height: 44px; min-width: 44px; }

/* ── Πρώτη οθόνη: περισσότερη κίνηση ── */
/* όνομα: γράμμα-γράμμα από μάσκα */
.hero-name .line1, .hero-name .line2 { animation: none !important; }
.hero-anim:not(.hero-anim-done) .hero-name .line1, .hero-anim:not(.hero-anim-done) .hero-name .line2 { overflow: hidden; padding-top: .12em; margin-top: -.12em; }
.hero-anim .hero-name .ch { display: inline-block; transform: translateY(110%) rotate(6deg); opacity: 0;
    animation: heroCh .9s cubic-bezier(.2,.8,.2,1) calc(.25s + var(--i) * 45ms) forwards; }
@keyframes heroCh { to { transform: none; opacity: 1; } }
/* ΛΙΑΠΗΣ: χρυσή λάμψη που περνά κάθε λίγα δευτερόλεπτα */
.hero-anim-done .hero-name .line2 {
    background: linear-gradient(100deg, var(--gold) 0%, var(--gold) 42%, #f6e3b4 50%, var(--gold) 58%, var(--gold) 100%);
    background-size: 260% 100%; background-position: 100% 0;
    -webkit-background-clip: text; background-clip: text; color: transparent;
    animation: heroShine 7s ease-in-out 0.4s infinite !important; }
@keyframes heroShine { 0% { background-position: 100% 0; } 30%, 100% { background-position: 0% 0; } }
/* υπότιτλος: η γραμμή σχεδιάζεται */
.hero-anim .hero-eyebrow::before { transform-origin: left; animation: heroRule 1s var(--ease) 1.1s both; }
.hero-anim .hero-eyebrow span { animation: heroUp .8s var(--ease) 1.25s both; }
@keyframes heroRule { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes heroUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.hero-anim .hero-inner .hero-value { animation: heroUp .8s var(--ease) 1.4s both; }
.hero-anim .hero-inner .hero-actions { animation: heroUp .8s var(--ease) 1.55s both; }
.hero-anim .hero-inner .hero-svc { animation: none; }
.hero-anim .hero-svc a { animation: heroUp .7s var(--ease) both; }
.hero-anim .hero-svc a:nth-child(1) { animation-delay: 1.75s; }
.hero-anim .hero-svc a:nth-child(2) { animation-delay: 1.87s; }
.hero-anim .hero-svc a:nth-child(3) { animation-delay: 1.99s; }
/* κουμπί κλήσης: απαλός παλμός */
.hero-anim .hero-actions .btn-gold { position: relative; }
.hero-anim .hero-actions .btn-gold::after { content: ''; position: absolute; inset: 0; border: 1px solid var(--gold); pointer-events: none; animation: heroRing 3.2s ease-out 3s infinite; opacity: 0; border-radius: inherit; }
@keyframes heroRing { 0% { opacity: .8; transform: scale(1); } 70%, 100% { opacity: 0; transform: scale(1.12, 1.4); } }
/* πορτρέτο: το χρυσό πλαίσιο σχεδιάζεται, αργό ζουμ */
.hero-anim .hero-portrait::after { animation: heroFrame 1.6s cubic-bezier(.65,0,.35,1) .9s both; }
@keyframes heroFrame { from { clip-path: inset(0 100% 100% 0); } 50% { clip-path: inset(0 0 100% 0); } to { clip-path: inset(0 0 0 0); } }
.hero-anim .hero-portrait img { animation: heroPortraitIn 1.4s var(--ease) .1s both, heroKB 22s ease-in-out 1.5s infinite alternate; transition: translate .6s cubic-bezier(.2,.8,.2,1); }
@keyframes heroKB { from { transform: scale(1); } to { transform: scale(1.07); } }
.hero-anim .hero-portrait figcaption { animation: heroUp .8s var(--ease) 2.2s both; }
@media (max-width: 900px) { .hero-anim .hero-portrait figcaption { animation-name: heroFade; } }
@keyframes heroFade { from { opacity: 0; } to { opacity: 1; } }
/* αλφάδι λέιζερ: γραμμή που σαρώνει τον χώρο κάθε λίγα δευτερόλεπτα */
.hero-scan { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hero-scan span { position: absolute; left: 0; right: 0; top: 0; height: 1px; opacity: 0;
    background: linear-gradient(90deg, transparent, rgba(201,168,108,.0) 5%, rgba(232,201,138,.85) 50%, rgba(201,168,108,0) 95%, transparent);
    box-shadow: 0 0 12px 2px rgba(232,201,138,.35); }
.hero-anim .hero-scan span { animation: heroScan 9s cubic-bezier(.45,0,.55,1) 2.4s infinite; }
@keyframes heroScan { 0% { top: 8%; opacity: 0; } 6% { opacity: .9; } 44% { top: 92%; opacity: .9; } 50%, 100% { top: 92%; opacity: 0; } }
@media (min-width: 901px) { .hero-scan { right: calc(42% + 4px); } }
@media (prefers-reduced-motion: reduce) {
    .hero-scan { display: none; }
    .hero-anim-done .hero-name .line2 { animation: none !important; }
}
.hero-pre .hero-name { opacity: 0; animation: heroFade .01s 2.5s forwards; }
.hero-portrait { overflow: hidden; }

/* Περιοχές εξυπηρέτησης (anavathmisi-seo #3) */
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.svc-areas { max-width: 1200px; margin: 56px auto 0; padding: 0 24px; }
.svc-areas h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 24px; font-weight: 700; color: var(--ink); margin: 0 0 20px; }
.svc-areas-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.svc-area { border: 1px solid rgba(14,13,11,0.12); border-top: 2px solid var(--gold); padding: 22px 24px; background: rgba(255,255,255,0.4); }
.svc-area p { font-size: 14px; line-height: 1.65; margin: 0; color: var(--ink); }
.svc-area .svc-area-name { font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; display: flex; gap: 8px; align-items: center; }
.svc-area .svc-area-name i { color: var(--gold); }
.svc-area .service-more { min-height: 44px; }
@media (max-width: 768px) { .svc-areas-grid { grid-template-columns: minmax(0,1fr); } .svc-areas { margin-top: 40px; padding: 0 16px; } }

/* ── Πρώτη οθόνη, υπολογιστής: σταθερή φωτογραφία με μικρή είσοδο από δεξιά· χωρίς πλαίσιο και λεζάντα ── */
@media (min-width: 901px) {
    .hero-portrait::after, .hero-anim .hero-portrait::after { display: none; animation: none; }
    .hero-portrait figcaption { display: none; }
    .hero-portrait img, .hero-anim .hero-portrait img { animation: heroSlideL 1.3s cubic-bezier(.2,.8,.2,1) .15s both; transform: none; translate: none; transition: none; }
}
@keyframes heroSlideL { from { opacity: 0; transform: translateX(48px); } to { opacity: 1; transform: none; } }

/* Ορατότητα AI: σύντομη απάντηση, στοιχεία προφίλ, νέα */
.page-answer { border-left: 3px solid var(--gold); background: rgba(201,168,108,0.08); padding: 18px 22px; margin: 0 0 40px; }
.page-answer p { margin: 0 0 8px; font-size: 16px; line-height: 1.65; }
.page-answer .page-answer-label { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.page-answer .page-updated { font-size: 12px; opacity: .7; margin: 6px 0 0; }
.bio-facts { display: grid; grid-template-columns: minmax(0,1fr); gap: 0; margin: 0; }
.bio-facts > div { display: grid; grid-template-columns: 170px minmax(0,1fr); gap: 16px; padding: 12px 0; border-bottom: 1px solid rgba(14,13,11,0.1); }
.bio-facts dt { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; opacity: .7; }
.bio-facts dd { margin: 0; }
.bio-facts a { color: inherit; }
.nea-meta { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; opacity: .7; margin-bottom: 6px; }
.nea-src { font-size: 13px; opacity: .8; }
.fname a { color: inherit; text-decoration: none; }
@media (max-width: 480px) { .bio-facts > div { grid-template-columns: minmax(0,1fr); gap: 4px; } }
