/* Architecture — modern minimal */

html, body { overflow-x: hidden; }

.warch {
    font-family: 'Outfit', sans-serif;
    color: #111;
    background: #fff;
    overflow-x: hidden;
}
.warch *, .warch *::before, .warch *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.warch .arch-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: url("../assets/services_imag/arch.png") center/cover no-repeat;
}
.warch .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.20) 60%,
        rgba(0,0,0,0.40) 100%
    );
    z-index: 1;
}
.warch .hero-content {
    position: absolute; inset: 0; z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 8% 80px;
}
.warch .hero-content h1 {
    font-size: clamp(48px, 8vw, 110px);
    font-weight: 200;
    color: #fff;
    letter-spacing: -0.04em;
    line-height: 0.95;
    margin-bottom: 28px;
    max-width: 14ch;
}
.warch .hero-content p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    font-weight: 300;
    max-width: 40ch;
    line-height: 1.7;
    letter-spacing: 0.01em;
}
/* label top-right */
.warch .arch-hero::before {
    content: 'WorQ Group — Services';
    position: absolute;
    top: 40px; right: 8%;
    z-index: 2;
    font-size: 10px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}
@media (max-width: 768px) {
    .warch .arch-hero { height: 70vh; min-height: 480px; }
    .warch .hero-content { padding: 0 6% 60px; }
    .warch .hero-content h1 { font-size: clamp(40px, 12vw, 72px); }
    .warch .arch-hero::before { display: none; }
}

/* ══════════════════════════════════════
   INTRO — two-column split
══════════════════════════════════════ */
.warch .arch-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    padding: 120px 8%;
    border-bottom: 1px solid #e8e8e8;
}
/* .line acts as eyebrow in col 1 */
.warch .line {
    display: block;
    width: 24px; height: 1px;
    background: #ff7a00;
    margin-bottom: 32px;
    /* span full col 1 */
    grid-column: 1;
}
.warch .arch-intro h2 {
    grid-column: 1;
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 300;
    letter-spacing: -0.03em;
    color: #111;
    line-height: 1.1;
    margin: 0;
    align-self: start;
}
.warch .arch-intro p {
    grid-column: 2;
    grid-row: 1 / 4;
    align-self: center;
    font-size: 16px;
    color: #888;
    line-height: 1.85;
    font-weight: 300;
    padding-top: 8px;
}
@media (max-width: 900px) {
    .warch .arch-intro {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 80px 6%;
    }
    .warch .arch-intro p { grid-column: 1; grid-row: auto; }
}

/* ══════════════════════════════════════
   SERVICES — editorial rows
══════════════════════════════════════ */
.warch .arch-services {
    padding: 0 8% 100px;
}
.warch .service {
    display: grid;
    grid-template-columns: 56px 1fr 2fr;
    gap: 0 48px;
    align-items: baseline;
    padding: 36px 0;
    border-bottom: 1px solid #ebebeb;
    transition: background 0.2s;
}
.warch .service:first-child { border-top: 1px solid #ebebeb; }
.warch .service-num {
    font-size: 10px;
    letter-spacing: 0.18em;
    color: #ff7a00;
    text-transform: uppercase;
    font-weight: 400;
    padding-top: 2px;
}
.warch .service h3 {
    font-size: 18px;
    font-weight: 400;
    color: #111;
    letter-spacing: -0.01em;
    line-height: 1.2;
}
.warch .service p {
    font-size: 14px;
    color: #999;
    line-height: 1.7;
    font-weight: 300;
}
@media (max-width: 768px) {
    .warch .arch-services { padding: 0 6% 72px; }
    .warch .service {
        grid-template-columns: 40px 1fr;
        grid-template-rows: auto auto;
        gap: 8px 20px;
        padding: 28px 0;
    }
    .warch .service p {
        grid-column: 2;
        margin-top: 4px;
    }
}

/* ══════════════════════════════════════
   PROCESS — clean steps
══════════════════════════════════════ */
.warch .arch-process {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
}
.warch .process-step {
    padding: 72px 8%;
    border-right: 1px solid #ebebeb;
}
.warch .process-step:last-child { border-right: none; }
.warch .process-step > span {
    display: block;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #ff7a00;
    margin-bottom: 28px;
    font-weight: 400;
}
.warch .process-step h4 {
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 300;
    color: #111;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 16px;
}
.warch .process-step p {
    font-size: 14px;
    color: #999;
    line-height: 1.75;
    font-weight: 300;
}
@media (max-width: 900px) {
    .warch .arch-process { grid-template-columns: 1fr; }
    .warch .process-step {
        padding: 48px 6%;
        border-right: none;
        border-bottom: 1px solid #ebebeb;
    }
    .warch .process-step:last-child { border-bottom: none; }
}

/* ══════════════════════════════════════
   PROJECTS GALLERY
══════════════════════════════════════ */
.warch .arch-projects {
    padding: 100px 8%;
}
.warch .arch-projects-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 1px solid #ebebeb;
}
.warch .arch-projects-kicker {
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #ff7a00;
}
.warch .arch-projects-header h2 {
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 300;
    letter-spacing: -0.03em;
    color: #111;
    margin: 0;
}
.warch .arch-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}
.warch .arch-proj-card { cursor: pointer; overflow: hidden; }
.warch .arch-proj-img-wrap { position: relative; overflow: hidden; }
.warch .arch-proj-cover {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    filter: grayscale(30%);
    transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.5s ease;
}
.warch .arch-proj-card:hover .arch-proj-cover {
    transform: scale(1.04);
    filter: grayscale(0%);
}
.warch .arch-proj-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 50%);
    display: flex; flex-direction: column;
    justify-content: flex-end; padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.warch .arch-proj-card:hover .arch-proj-overlay { opacity: 1; }
.warch .arch-proj-tag {
    display: block; font-size: 9px;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: #ff7a00; margin-bottom: 4px;
}
.warch .arch-proj-title { font-size: 13px; font-weight: 300; color: #fff; margin: 0 0 4px; }
.warch .arch-proj-count { font-size: 10px; color: rgba(255,255,255,0.4); letter-spacing: 0.08em; }
@media (max-width: 900px) {
    .warch .arch-projects-grid { grid-template-columns: repeat(2, 1fr); }
    .warch .arch-projects { padding: 72px 6%; }
    .warch .arch-projects-header { flex-direction: column; gap: 8px; }
}

/* ── LIGHTBOX ── */
#arch-lb {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.97);
    display: none; flex-direction: column;
}
#arch-lb.open { display: flex; }
.arch-lb-top {
    display: flex; align-items: center; gap: 16px;
    padding: 20px 32px; flex-shrink: 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.arch-lb-title { flex: 1; font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.5); letter-spacing: 0.12em; text-transform: uppercase; }
.arch-lb-counter { font-size: 11px; color: rgba(255,255,255,0.25); letter-spacing: 0.1em; }
.arch-lb-close {
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    color: #fff; font-size: 18px; cursor: pointer; padding: 6px 12px;
    transition: background 0.2s, color 0.2s; line-height: 1; border-radius: 4px;
}
.arch-lb-close:hover { background: #ff7a00; border-color: #ff7a00; color: #fff; }
.arch-lb-stage { flex: 1; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; padding: 32px 72px; }
#arch-lb-img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; transition: opacity 0.15s ease; }
.arch-lb-prev, .arch-lb-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: none; border: none; color: transparent;
    cursor: pointer; padding: 18px 14px; transition: background 0.2s, color 0.2s, border-color 0.2s; z-index: 2;
    border-radius: 4px;
}
.arch-lb-prev { left: 12px; }
.arch-lb-next { right: 12px; }
.arch-lb-prev:hover, .arch-lb-next:hover { background: #ff7a00; color: #fff; }
.arch-lb-prev svg, .arch-lb-next svg { width: 32px; height: 32px; display: block; }
.arch-lb-thumbs { flex-shrink: 0; display: flex; justify-content: center; gap: 3px; padding: 8px 16px; overflow-x: auto; background: rgba(0,0,0,0.5); scrollbar-width: none; border-top: 1px solid rgba(255,255,255,0.04); }
.arch-lb-thumbs::-webkit-scrollbar { display: none; }
.arch-lb-thumbs img { width: 56px; height: 40px; object-fit: cover; flex-shrink: 0; cursor: pointer; opacity: 0.2; filter: grayscale(50%); transition: opacity 0.2s, filter 0.2s; outline: 1px solid transparent; outline-offset: 2px; }
.arch-lb-thumbs img:hover { opacity: 0.55; filter: grayscale(0%); }
.arch-lb-thumbs img.active { opacity: 0.85; filter: grayscale(0%); outline: 1px solid rgba(255,122,0,0.6); outline-offset: 2px; }
@media (max-width: 768px) {
    .arch-lb-stage { padding: 0 44px; }
    .arch-lb-prev { left: 4px; } .arch-lb-next { right: 4px; }
    .arch-lb-thumbs img { width: 44px; height: 32px; }
    .arch-lb-top { padding: 14px 16px; }
}

/* ── FOOTER ── */
.site-footer { background: #000; color: #fff; padding: 80px 8%; font-family: 'Outfit', sans-serif; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; }
.footer-logo img { max-width: 160px; height: auto; margin-bottom: 28px; }
.footer-text { font-size: 14px; line-height: 1.7; color: #666; margin-bottom: 20px; }
.footer-email { display: inline-block; margin-bottom: 20px; color: #fff; text-decoration: none; font-size: 13px; }
.footer-email:hover { color: #ff7a00; }
.footer-social a { color: #555; font-size: 16px; margin-right: 14px; transition: color 0.2s; }
.footer-social a:hover { color: #ff7a00; }
.footer-col h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 20px; color: #444; font-weight: 400; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #555; font-size: 13px; text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
@media (max-width: 900px) {
    .footer-inner { grid-template-columns: 1fr; gap: 40px; }
    .site-footer { padding: 60px 6%; }
}
