/* =============================================================================
   Global City Excavation — public site styles
   Palette: safety amber + charcoal. Type: Oswald (headings) + Inter (body).
============================================================================= */
:root {
    --amber: #f5a623;
    --amber-dark: #d98b0c;
    --amber-soft: #fff4e0;
    --ink: #16181d;
    --ink-2: #21242c;
    --ink-3: #2c303a;
    --gray-700: #3d434d;
    --gray-500: #6b7280;
    --muted: #7c8591;
    --line: #e6e9ed;
    --bg: #ffffff;
    --bg-soft: #f4f6f8;
    --bg-dark: #16181d;
    --white: #fff;
    --radius: 6px;
    --radius-lg: 12px;
    --shadow-sm: 0 2px 8px rgba(20, 24, 31, .07);
    --shadow: 0 14px 40px rgba(20, 24, 31, .12);
    --container: 1200px;
    --header-h: 76px;
    --ff-head: 'Oswald', 'Arial Narrow', sans-serif;
    --ff-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body { overflow-x: clip; }
body {
    margin: 0;
    font-family: var(--ff-body);
    font-size: 16px;
    line-height: 1.65;
    color: #2b2f36;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--amber-dark); text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--ff-head); color: var(--ink); line-height: 1.12; margin: 0 0 .5em; font-weight: 600; }
p { margin: 0 0 1rem; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.narrow { max-width: 820px; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.muted { color: var(--muted); }
.lead { font-size: 1.16rem; color: var(--gray-700); }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: .5rem; justify-content: center;
    font-family: var(--ff-head); font-weight: 600; font-size: .95rem;
    letter-spacing: .6px; text-transform: uppercase;
    padding: .82rem 1.6rem; border: 2px solid transparent; border-radius: var(--radius);
    cursor: pointer; transition: .2s ease; white-space: nowrap; line-height: 1;
}
.btn--primary { background: var(--amber); color: var(--ink); border-color: var(--amber); }
.btn--primary:hover { background: var(--amber-dark); border-color: var(--amber-dark); color: #fff; transform: translateY(-2px); }
.btn--dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--dark:hover { background: var(--ink-3); color: var(--amber); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: #fff; }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .8); }
.btn--outline-light:hover { background: #fff; color: var(--ink); }
.btn--ghost { background: rgba(255, 255, 255, .08); color: #fff; border-color: rgba(255, 255, 255, .35); }
.btn--ghost:hover { background: #fff; color: var(--ink); }
.btn--sm { padding: .5rem .9rem; font-size: .82rem; }
.btn--lg { padding: 1rem 2rem; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* ── Topbar ──────────────────────────────────────────────────────────────── */
.topbar { background: var(--ink); color: #c7ccd4; font-size: .85rem; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; height: 40px; }
.topbar__left { display: flex; gap: 1.4rem; }
.topbar__right { display: flex; gap: 1.4rem; }
.topbar a { color: #c7ccd4; transition: .2s; }
.topbar a:hover { color: var(--amber); }
.topbar i { color: var(--amber); margin-right: .35rem; }

/* ── Header / Nav ────────────────────────────────────────────────────────── */
/* NOTE: never put transform/will-change on .site-header — it becomes the containing
   block for the position:fixed mobile menu inside it, crushing the overlay into the header bar. */
.site-header { position: -webkit-sticky; position: sticky; top: 0; z-index: 200; background: #fff; box-shadow: var(--shadow-sm); transition: box-shadow .25s; }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.brand { display: flex; align-items: center; min-width: 0; }
.brand--with-title { gap: .7rem; }
.brand--logo-only { flex: 0 0 auto; }
.brand__logo { width: auto; max-width: 180px; height: 52px; object-fit: contain; object-position: left center; }
.brand--wordmark .brand__logo { width: 230px; height: 60px; max-width: 230px; object-fit: cover; }
.brand__name { font-family: var(--ff-head); font-weight: 700; font-size: 1.25rem; color: var(--ink); text-transform: uppercase; letter-spacing: .5px; }
.main-nav__list { display: flex; align-items: center; gap: .35rem; list-style: none; margin: 0; padding: 0; }
.main-nav__list > li > a { display: block; padding: .6rem .9rem; color: var(--ink); font-family: var(--ff-head); font-weight: 500; font-size: 1rem; text-transform: uppercase; letter-spacing: .4px; border-radius: var(--radius); transition: .2s; }
.main-nav__list > li:not(.main-nav__cta) > a:hover, .main-nav__list > li:not(.main-nav__cta) > a.is-active { color: var(--amber-dark); }
.main-nav__cta { margin-left: .6rem; }
.dropdown-caret { font-size: .7rem; margin-left: .2rem; }

/* dropdown */
.has-dropdown { position: relative; }
.dropdown {
    position: absolute; top: 100%; left: 0; min-width: 240px; background: #fff;
    box-shadow: var(--shadow); border-radius: var(--radius); border-top: 3px solid var(--amber);
    list-style: none; margin: 0; padding: .4rem; opacity: 0; visibility: hidden; transform: translateY(10px); transition: .2s;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a { display: flex; align-items: center; gap: .6rem; padding: .6rem .8rem; color: var(--gray-700); font-size: .95rem; border-radius: 4px; }
.dropdown li a:hover { background: var(--amber-soft); color: var(--ink); }
.dropdown li a i { color: var(--amber-dark); width: 18px; text-align: center; }

/* mobile toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; background: none; border: 0; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle span { width: 26px; height: 2px; background: var(--ink); transition: .25s; }
.main-nav__foot { display: none; }
body.nav-open { overflow: hidden; }
@keyframes navItemIn { to { opacity: 1; transform: none; } }
@keyframes xSpinIn { from { opacity: 0; transform: rotate(-90deg) scale(.5); } to { opacity: 1; transform: rotate(0) scale(1); } }

/* ── Sections ────────────────────────────────────────────────────────────── */
.section { padding: 92px 0; }
.section--muted { background: var(--bg-soft); }
.section--dark { background: var(--bg-dark); color: #d4d8df; }
.section--dark .section-title { color: #fff; }
.section-head { max-width: 720px; margin: 0 auto 54px; text-align: center; }
.section-eyebrow { font-family: var(--ff-head); text-transform: uppercase; letter-spacing: 3px; color: var(--amber-dark); font-weight: 600; font-size: .9rem; margin: 0 0 .6rem; }
.section--dark .section-eyebrow { color: var(--amber); }
.section-title { font-size: clamp(1.9rem, 3.6vw, 2.7rem); text-transform: uppercase; letter-spacing: .5px; }
.section-lead { color: var(--gray-500); font-size: 1.1rem; }
.section-head--light .section-title { color: #fff; }
.section-cta { text-align: center; margin-top: 48px; }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero__slides { position: absolute; inset: 0; }
.hero__slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.4s ease; transform: scale(1.05); }
.hero__slide.is-active { opacity: 1; animation: heroZoom 8s ease forwards; }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1.16); } }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(13, 15, 19, .9) 0%, rgba(13, 15, 19, .72) 42%, rgba(13, 15, 19, .35) 100%); }
.hero__content { position: relative; z-index: 3; max-width: 760px; padding: 60px 22px 116px; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--ff-head); text-transform: uppercase; letter-spacing: 2.5px; font-size: .92rem; color: var(--amber); background: rgba(245, 166, 35, .12); border: 1px solid rgba(245, 166, 35, .4); padding: .45rem 1rem; border-radius: 40px; margin: 0 0 1.4rem; }
.hero__title { font-size: clamp(2.4rem, 5.4vw, 4.2rem); text-transform: uppercase; color: #fff; letter-spacing: .5px; margin-bottom: 1.1rem; }
.hero__subtitle { font-size: 1.22rem; color: #d7dbe2; max-width: 600px; margin-bottom: 2rem; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__points { display: flex; flex-wrap: wrap; gap: 1.6rem; list-style: none; padding: 0; margin: 2.4rem 0 0; }
.hero__points li { font-weight: 500; color: #eef1f4; }
.hero__points i { color: var(--amber); margin-right: .5rem; }

/* ── Stats ───────────────────────────────────────────────────────────────── */
.stats { background: var(--amber); }
.stats--plain { background: var(--ink); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { text-align: center; padding: 42px 18px; border-right: 1px solid rgba(0, 0, 0, .12); }
.stats--plain .stat { border-color: rgba(255, 255, 255, .1); }
.stat:last-child { border-right: 0; }
.stat__value { display: block; font-family: var(--ff-head); font-weight: 700; font-size: 2.8rem; line-height: 1; color: var(--ink); }
.stats--plain .stat__value { color: var(--amber); }
.stat__label { display: block; margin-top: .5rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; font-size: .82rem; color: var(--ink-2); }
.stats--plain .stat__label { color: #c7ccd4; }

/* ── Service cards ───────────────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: .25s; display: flex; flex-direction: column; }
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-6px); border-color: transparent; }
.service-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--ink); }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: .5s; }
.service-card:hover .service-card__media img { transform: scale(1.08); }
/* Auto-rotating gallery photos on the card */
.card-slideshow { position: absolute; inset: 0; }
.card-slideshow__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .8s ease, transform .5s ease; }
.card-slideshow__img.is-active { opacity: 1; }
.service-card:hover .card-slideshow__img.is-active { transform: scale(1.08); }
.service-card__icon { position: absolute; left: 18px; top: -30px; width: 56px; height: 56px; display: grid; place-items: center; background: var(--amber); color: var(--ink); border-radius: 50%; font-size: 1.35rem; box-shadow: var(--shadow-sm); z-index: 2; }
.service-card__body { position: relative; padding: 38px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.service-card__title { font-size: 1.4rem; text-transform: uppercase; margin-bottom: .5rem; }
.service-card__text { color: var(--gray-500); font-size: .98rem; flex: 1; }
.service-card__more { font-family: var(--ff-head); text-transform: uppercase; font-size: .85rem; letter-spacing: 1px; color: var(--amber-dark); font-weight: 600; margin-top: 1rem; }
.service-card__more i { transition: .2s; }
.service-card:hover .service-card__more i { transform: translateX(5px); }

/* ── Features ────────────────────────────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 40px; }
.feature { padding: 28px; border: 1px solid rgba(255, 255, 255, .08); border-radius: var(--radius-lg); background: rgba(255, 255, 255, .02); transition: .25s; }
.feature:hover { border-color: rgba(245, 166, 35, .5); background: rgba(245, 166, 35, .05); }
.feature i { font-size: 1.9rem; color: var(--amber); margin-bottom: 1rem; }
.feature h3 { color: #fff; text-transform: uppercase; font-size: 1.2rem; margin-bottom: .4rem; }
.feature p { color: #aeb4bd; font-size: .96rem; margin: 0; }

/* ── Vision & Mission ────────────────────────────────────────────────────── */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.vm-card { position: relative; min-height: 340px; border-radius: var(--radius-lg); overflow: hidden; background-size: cover; background-position: center; display: flex; align-items: flex-end; }
.vm-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13, 15, 19, .92), rgba(13, 15, 19, .55)); }
.vm-card__inner { position: relative; z-index: 2; padding: 40px; color: #fff; }
.vm-card__icon { display: grid; place-items: center; width: 58px; height: 58px; background: var(--amber); color: var(--ink); border-radius: 50%; font-size: 1.4rem; margin-bottom: 1rem; }
.vm-card__inner h2 { color: #fff; text-transform: uppercase; font-size: 1.7rem; }
.vm-card__inner p { color: #d7dbe2; margin: 0; font-size: 1.04rem; }

/* ── Projects ────────────────────────────────────────────────────────────── */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.project-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); transition: .25s; }
.project-card:hover { box-shadow: var(--shadow); transform: translateY(-6px); border-color: transparent; }
.project-card__media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: var(--ink); }
.project-card__media img { width: 100%; height: 100%; object-fit: cover; transition: .5s; }
.project-card:hover .project-card__media img { transform: scale(1.07); }
.project-card__tag { position: absolute; top: 14px; left: 14px; background: var(--amber); color: var(--ink); font-family: var(--ff-head); text-transform: uppercase; font-size: .76rem; font-weight: 600; letter-spacing: .5px; padding: .3rem .7rem; border-radius: 4px; }
.project-card__body { padding: 24px; }
.project-card__meta, .project-card__loc { display: flex; gap: 1rem; flex-wrap: wrap; color: var(--muted); font-size: .85rem; margin-bottom: .5rem; }
.project-card__meta i, .project-card__loc i { color: var(--amber-dark); }
.project-card__title { font-size: 1.3rem; text-transform: uppercase; margin-bottom: .5rem; }
.project-card__text { color: var(--gray-500); font-size: .96rem; margin-bottom: .8rem; }

/* ── About preview ───────────────────────────────────────────────────────── */
.about-preview__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-preview__media { position: relative; }
.about-preview__media img { border-radius: var(--radius-lg); width: 100%; }
.about-preview__badge { position: absolute; right: -18px; bottom: -18px; background: var(--amber); color: var(--ink); padding: 22px 26px; border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow); }
.about-preview__badge-num { display: block; font-family: var(--ff-head); font-weight: 700; font-size: 2.4rem; line-height: 1; }
.about-preview__badge-label { font-size: .78rem; text-transform: uppercase; font-weight: 600; letter-spacing: .5px; }
.check-list { list-style: none; padding: 0; margin: 1.4rem 0; }
.check-list li { display: flex; align-items: center; gap: .7rem; padding: .35rem 0; font-weight: 500; color: var(--gray-700); }
.check-list i { color: #fff; background: var(--amber); width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: .7rem; flex: none; }
.check-list--2col { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 0 1.8rem; }
.about-why__title { text-transform: uppercase; font-size: 1.3rem; margin: 1.8rem 0 .5rem; }
.about-preview__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.6rem; }

/* ── CTA band ────────────────────────────────────────────────────────────── */
.cta-band { background: var(--amber); padding: 54px 0; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-band__title { font-size: 2rem; text-transform: uppercase; color: var(--ink); margin: 0; }
.cta-band__text { color: var(--ink-2); margin: .3rem 0 0; font-weight: 500; }
.cta-band__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.cta-band .btn--ghost { background: rgba(0, 0, 0, .12); border-color: rgba(0, 0, 0, .25); color: var(--ink); }
.cta-band .btn--ghost:hover { background: var(--ink); color: #fff; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer { background: var(--ink); color: #aab0b9; }
.site-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; padding: 72px 22px 48px; }
.footer-brand { display: flex; align-items: center; gap: .7rem; color: #fff; font-family: var(--ff-head); font-size: 1.2rem; text-transform: uppercase; font-weight: 700; margin-bottom: 1rem; }
.footer-brand__logo { width: auto; max-width: 150px; height: 46px; object-fit: contain; object-position: left center; }
.footer-brand--wordmark .footer-brand__logo { width: 170px; max-width: 170px; height: 50px; object-fit: cover; }
.footer-about { font-size: .95rem; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.2rem; }
.footer-social a { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: rgba(255, 255, 255, .08); color: #fff; transition: .2s; }
.footer-social a:hover { background: var(--amber); color: var(--ink); }
.footer-col__title { color: #fff; text-transform: uppercase; font-size: 1.05rem; letter-spacing: .5px; margin-bottom: 1.2rem; position: relative; padding-bottom: .6rem; }
.footer-col__title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 36px; height: 3px; background: var(--amber); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a { color: #aab0b9; transition: .2s; }
.footer-links a:hover { color: var(--amber); padding-left: 4px; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: .8rem; margin-bottom: 1rem; font-size: .95rem; }
.footer-contact i { color: var(--amber); margin-top: 4px; }
.footer-contact a { color: #aab0b9; }
.footer-contact a:hover { color: var(--amber); }
.footer-map { line-height: 0; filter: grayscale(.3) contrast(1.05); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .08); }
.footer-bottom__inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; padding: 22px; font-size: .85rem; }
.footer-bottom p { margin: 0; }

/* floating quote button */
.float-quote { position: fixed; right: 20px; bottom: 20px; z-index: 150; display: inline-flex; align-items: center; gap: .5rem; background: var(--amber); color: var(--ink); font-family: var(--ff-head); text-transform: uppercase; font-weight: 600; letter-spacing: .5px; padding: .85rem 1.3rem; border-radius: 40px; box-shadow: var(--shadow); transition: .2s; }
.float-quote:hover { background: var(--ink); color: #fff; transform: translateY(-3px); }

/* ── Page banner ─────────────────────────────────────────────────────────── */
.page-banner { position: relative; background-size: cover; background-position: center; color: #fff; padding: 96px 0; }
.page-banner--tall { padding: 130px 0 96px; }
.page-banner__overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(13, 15, 19, .9), rgba(13, 15, 19, .6)); }
.page-banner__content { position: relative; z-index: 2; }
.page-banner__title { font-size: clamp(2.1rem, 4.4vw, 3.2rem); text-transform: uppercase; color: #fff; margin: .4rem 0; }
.page-banner__title i { color: var(--amber); }
.page-banner__sub { font-size: 1.15rem; color: #d7dbe2; max-width: 640px; }
.page-banner__meta { display: flex; gap: 1.6rem; flex-wrap: wrap; color: #d7dbe2; margin-top: .6rem; }
.page-banner__meta i { color: var(--amber); margin-right: .3rem; }
.page-banner__tag { display: inline-block; background: var(--amber); color: var(--ink); font-family: var(--ff-head); text-transform: uppercase; font-weight: 600; font-size: .8rem; padding: .3rem .8rem; border-radius: 4px; }
.breadcrumb { font-size: .9rem; color: #c4cad2; text-transform: uppercase; letter-spacing: .5px; font-family: var(--ff-head); }
.breadcrumb a { color: var(--amber); }
.breadcrumb span { margin: 0 .4rem; opacity: .6; }

/* ── Detail layout (service / project) ───────────────────────────────────── */
.detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; }
.detail-main__hero { position: relative; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; border-radius: var(--radius-lg); margin-bottom: 28px; background: var(--ink); }
.rich-text { color: var(--gray-700); font-size: 1.05rem; }
.rich-text h3 { font-size: 1.4rem; text-transform: uppercase; margin: 1.6rem 0 .8rem; }
.rich-text ul { list-style: none; padding: 0; margin: 0 0 1.2rem; }
.rich-text li { position: relative; padding: .35rem 0 .35rem 1.8rem; }
.rich-text li::before { content: "\f054"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--amber); position: absolute; left: 0; font-size: .8rem; top: .6rem; }
.rich-text--lg { font-size: 1.12rem; }
.detail-cta { background: var(--bg-soft); border-radius: var(--radius-lg); padding: 32px; margin-top: 34px; border-left: 4px solid var(--amber); }
.detail-cta h3 { font-size: 1.4rem; text-transform: uppercase; }
.detail-cta__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1rem; }
.detail-cta--center { text-align: center; border-left: 0; border-top: 4px solid var(--amber); margin-top: 48px; }
.detail-cta--center .btn { margin: .3rem; }

.aside-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 24px; }
.aside-box__title { text-transform: uppercase; font-size: 1.2rem; padding-bottom: .7rem; border-bottom: 2px solid var(--line); }
.aside-services { list-style: none; padding: 0; margin: 0; }
.aside-services li a { display: flex; align-items: center; gap: .6rem; padding: .8rem .4rem; color: var(--gray-700); border-bottom: 1px solid var(--line); font-weight: 500; transition: .2s; }
.aside-services li:last-child a { border-bottom: 0; }
.aside-services li a:hover, .aside-services li.is-active a { color: var(--amber-dark); padding-left: .8rem; }
.aside-services__arrow { margin-left: auto; font-size: .8rem; }
.aside-box--contact { position: relative; background-size: cover; background-position: center; color: #fff; overflow: hidden; border: 0; }
.aside-box__overlay { position: absolute; inset: 0; background: linear-gradient(rgba(13,15,19,.82), rgba(13,15,19,.92)); }
.aside-box__inner { position: relative; z-index: 2; }
.aside-box__inner h3 { color: #fff; text-transform: uppercase; }
.aside-phone { display: block; font-family: var(--ff-head); font-size: 1.4rem; color: var(--amber); margin: .6rem 0 1rem; }

/* ── Gallery + lightbox ──────────────────────────────────────────────────── */
.gallery-title { text-transform: uppercase; font-size: 1.7rem; margin: 40px 0 20px; }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery__item { position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden; cursor: pointer; background: var(--ink); }
.gallery__item img, .gallery__item video { width: 100%; height: 100%; object-fit: cover; transition: .4s; }
.gallery__item:hover img { transform: scale(1.07); }
.gallery__zoom { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(13, 15, 19, .35); color: #fff; font-size: 1.6rem; opacity: 0; transition: .25s; }
.gallery__item:hover .gallery__zoom { opacity: 1; }
.gallery__item--video { cursor: default; }
.lightbox { position: fixed; inset: 0; z-index: 999; background: rgba(10, 11, 14, .92); display: grid; place-items: center; padding: 30px; }
.lightbox[hidden] { display: none; }
.lightbox__img { max-width: 92vw; max-height: 88vh; border-radius: 6px; }
.lightbox__close { position: absolute; top: 22px; right: 30px; background: none; border: 0; color: #fff; font-size: 2.6rem; cursor: pointer; line-height: 1; }

/* ── Process steps ───────────────────────────────────────────────────────── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-step { text-align: center; padding: 20px; }
.process-step__num { display: grid; place-items: center; width: 64px; height: 64px; margin: 0 auto 1rem; border-radius: 50%; background: var(--ink); color: var(--amber); font-family: var(--ff-head); font-size: 1.6rem; font-weight: 700; }
.process-step h3 { text-transform: uppercase; font-size: 1.2rem; }
.process-step p { color: var(--gray-500); font-size: .95rem; }

/* ── About main ──────────────────────────────────────────────────────────── */
.about-main__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.about-main__media img { border-radius: var(--radius-lg); }
.about-main__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.6rem; }
.values .feature h3 { font-size: 1.25rem; }

/* ── Contact / forms ─────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; }
.contact-cards { list-style: none; padding: 0; margin: 1.6rem 0 0; }
.contact-card { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.contact-card__icon { flex: none; width: 50px; height: 50px; border-radius: 50%; background: var(--amber-soft); color: var(--amber-dark); display: grid; place-items: center; font-size: 1.15rem; }
.contact-card__label { display: block; font-family: var(--ff-head); text-transform: uppercase; font-size: .8rem; letter-spacing: 1px; color: var(--muted); }
.contact-card a { color: var(--ink); font-weight: 600; }
.contact-card a:hover { color: var(--amber-dark); }

/* Weekly opening hours — clean schedule table (footer + contact) */
.hours-list { display: flex; flex-direction: column; width: 100%; max-width: 320px; }
.hours-row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: .36rem 0; border-bottom: 1px solid var(--line); }
.hours-row:last-child { border-bottom: 0; }
.hours-day { font-weight: 500; }
.hours-val { white-space: nowrap; color: var(--gray-500); }
.hours-row.is-today { color: var(--amber-dark); font-weight: 700; }
.hours-row.is-today .hours-val { color: var(--amber-dark); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-sm); }
.form-card__title { text-transform: uppercase; font-size: 1.5rem; margin-bottom: 1.2rem; }
.form-card__note { font-size: .82rem; color: var(--muted); margin: 1rem 0 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: block; margin-bottom: 18px; }
.field__label { display: block; font-family: var(--ff-head); text-transform: uppercase; font-size: .82rem; letter-spacing: .8px; color: var(--gray-700); margin-bottom: .45rem; }
.field__label em { color: #d9534f; font-style: normal; }
.field input, .field select, .field textarea {
    width: 100%; padding: .8rem .9rem; border: 1.5px solid var(--line); border-radius: var(--radius);
    font-family: var(--ff-body); font-size: 1rem; color: var(--ink); background: #fff; transition: .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--amber); box-shadow: 0 0 0 3px rgba(245, 166, 35, .15); }
.field--file input { padding: .6rem; background: var(--bg-soft); }
.phone-input { display: flex; align-items: stretch; }
.phone-input__prefix { display: inline-flex; align-items: center; padding: 0 .9rem; background: var(--bg-soft); border: 1.5px solid var(--line); border-right: 0; border-radius: var(--radius) 0 0 var(--radius); font-weight: 600; color: var(--gray-700); }
.phone-input input { border-top-left-radius: 0; border-bottom-left-radius: 0; }
.phone-input:focus-within .phone-input__prefix { border-color: var(--amber); }

.chip-list { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: .8rem; }
.chip { background: var(--amber-soft); color: var(--amber-dark); border: 1px solid rgba(245,166,35,.4); padding: .4rem .9rem; border-radius: 40px; font-size: .9rem; font-weight: 600; }
.careers-positions h3 { text-transform: uppercase; font-size: 1.2rem; margin-top: 1.8rem; }

/* alerts */
.alert { padding: 1rem 1.2rem; border-radius: var(--radius); margin-bottom: 1.4rem; font-size: .96rem; }
.alert ul { margin: .4rem 0 0; padding-left: 1.2rem; }
.alert--success { background: #e8f6ec; color: #1f7a3d; border: 1px solid #b6e2c3; }
.alert--error { background: #fdeceb; color: #b3322a; border: 1px solid #f3c2bd; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .services-grid, .projects-grid, .features-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .detail-layout { grid-template-columns: 1fr; }
    .site-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
    .topbar { display: none; }
    .nav-toggle { display: flex; position: relative; z-index: 210; }

    /* Full-screen slide-in overlay menu */
    .main-nav {
        position: fixed; inset: 0; z-index: 150;
        background: linear-gradient(165deg, #1d2129 0%, #141519 100%);
        display: flex; flex-direction: column; justify-content: center;
        padding: calc(var(--header-h) + 24px) 26px 30px;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform .5s cubic-bezier(.76, 0, .24, 1);
    }
    .main-nav.is-open { transform: translateX(0); }

    .main-nav__list { flex-direction: column; align-items: stretch; gap: 0; width: 100%; max-width: 440px; margin: auto; }
    .main-nav__list > li:not(.main-nav__cta) {
        text-align: center; border-bottom: 1px solid rgba(255, 255, 255, .07);
        opacity: 0; transform: translateY(24px);
    }
    .main-nav.is-open .main-nav__list > li { animation: navItemIn .55s cubic-bezier(.33, 1, .68, 1) forwards; }
    .main-nav.is-open li:nth-child(1) { animation-delay: .10s; }
    .main-nav.is-open li:nth-child(2) { animation-delay: .17s; }
    .main-nav.is-open li:nth-child(3) { animation-delay: .24s; }
    .main-nav.is-open li:nth-child(4) { animation-delay: .31s; }
    .main-nav.is-open li:nth-child(5) { animation-delay: .38s; }
    .main-nav.is-open li:nth-child(6) { animation-delay: .45s; }
    .main-nav.is-open li:nth-child(7) { animation-delay: .52s; }

    .main-nav__list > li:not(.main-nav__cta) > a {
        display: block; padding: 1.05rem .6rem; color: #fff; font-size: 1.65rem; font-weight: 600; letter-spacing: 1px;
    }
    .main-nav__list > li:not(.main-nav__cta) > a:hover, .main-nav__list > li:not(.main-nav__cta) > a.is-active { color: var(--amber); }
    .dropdown-caret { transition: transform .3s; }
    .has-dropdown.is-open .dropdown-caret { transform: rotate(180deg); }

    /* Services accordion inside the overlay */
    .dropdown {
        position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
        border-top: 0; border-radius: 0; background: transparent;
        max-height: 0; overflow: hidden; padding: 0; transition: max-height .4s ease;
    }
    .has-dropdown.is-open .dropdown { max-height: 620px; padding: .4rem 0; }
    .dropdown li a { justify-content: center; color: #c7ccd4; font-size: 1.08rem; padding: .65rem; }
    .dropdown li a:hover { background: transparent; color: var(--amber); }
    .dropdown li a i { color: var(--amber); }

    /* Keep the close (X) button pinned to the top-right while the menu is open */
    body.nav-open .nav-toggle { position: fixed; top: 17px; right: 22px; }

    /* Keep the logo visible at the top-left while the menu is open */
    body.nav-open .brand { position: relative; z-index: 210; }
    body.nav-open .brand__name { color: #fff; }

    .main-nav__cta { margin: 1.6rem auto 0; opacity: 0; transition: opacity .4s .55s; }
    .main-nav.is-open .main-nav__cta { opacity: 1; }
    .main-nav__cta .btn { width: 100%; max-width: 320px; font-size: 1.05rem; padding: 1rem 2rem; }

    /* Contact block at the bottom of the overlay */
    .main-nav__foot { display: block; text-align: center; margin: 2rem auto 0; opacity: 0; transition: opacity .4s .65s; }
    .main-nav.is-open .main-nav__foot { opacity: 1; }
    .main-nav__call { display: inline-flex; align-items: center; gap: .5rem; color: var(--amber); font-family: var(--ff-head); font-size: 1.4rem; }
    .main-nav__foot-email { display: block; color: #aab0b9; margin-top: .5rem; font-size: .95rem; }

    /* Hamburger morphs to an X — spins in to match the menu items' entrance */
    .nav-toggle.is-open { animation: xSpinIn .5s cubic-bezier(.34, 1.4, .64, 1) both; }
    .nav-toggle.is-open span { background: #fff; }                 /* white X on the dark menu */
    .nav-toggle.is-open:hover span { background: var(--amber); }    /* amber hover, matching the nav items */
    .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
    .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .stats__grid { grid-template-columns: repeat(2, 1fr); }
    .stat:nth-child(2) { border-right: 0; }
    .vm-grid, .about-preview__grid, .about-main__grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .gallery { grid-template-columns: repeat(2, 1fr); }
    .section { padding: 64px 0; }
    .hero { min-height: 80vh; }
    .cta-band__inner { flex-direction: column; text-align: center; }
}
@media (max-width: 560px) {
    .services-grid, .projects-grid, .features-grid, .process-grid, .gallery, .form-row { grid-template-columns: 1fr; }
    /* Footer: single column, fully centered */
    .site-footer__grid { grid-template-columns: 1fr; text-align: center; }
    .footer-brand { justify-content: center; }
    .footer-col__title { display: inline-block; }
    .footer-col__title::after { left: 50%; transform: translateX(-50%); }
    .footer-social { justify-content: center; }
    .footer-contact li { justify-content: center; }
    .footer-bottom__inner { justify-content: center; text-align: center; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; }
    .float-quote span { display: none; }
    .brand__logo { height: 48px; max-width: 150px; }
    .brand--wordmark .brand__logo { width: 178px; height: 52px; max-width: 178px; }
    .brand__name { font-size: 1.05rem; }
}
