/*
Theme Name: Crown Road
Theme URI: https://crownroad.gy
Author: Crown Road and Drainage Contractors
Author URI: https://crownroad.gy
Description: Custom theme for Crown Road and Drainage Contractors — registered & certified infrastructure contractor in Guyana.
Version: 2.0.0
License: GPL-2.0-or-later
Text Domain: crownroad
*/

/* ============================================================
   DESIGN TOKENS — Brand Guidelines v1.0
   Crown Orange #FF7E26 | Asphalt Charcoal #25282A
   Concrete Grey (secondary) | Montserrat (primary font)
   ============================================================ */
:root {
  /* Primary Palette */
  --color-orange: #FF7E26;
  --color-orange-dark: #E06A1A;
  --color-orange-light: #FF9A55;
  --color-charcoal: #25282A;
  --color-charcoal-2: #2D3134;
  --color-charcoal-3: #3A3F43;

  /* Secondary Palette */
  --color-grey: #8C9196;          /* Concrete Grey */
  --color-grey-light: #C9CDD1;
  --color-grey-bg: #F5F6F7;       /* Steel White for backgrounds */
  --color-white: #FFFFFF;
  --color-ink: #25282A;
  --color-muted: #6B7177;
  --color-line: #E4E6E8;

  /* Typography */
  --font-head: "Montserrat", "Arial", system-ui, sans-serif;
  --font-body: "Montserrat", "Arial", system-ui, -apple-system, sans-serif;

  /* Layout */
  --container: 1280px;
  --radius: 2px;                   /* Sharper, more industrial */
  --radius-lg: 8px;
  --shadow-sm: 0 1px 3px rgba(37, 40, 42, 0.08);
  --shadow-md: 0 8px 30px rgba(37, 40, 42, 0.12);
  --shadow-lg: 0 20px 50px rgba(37, 40, 42, 0.18);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-ink);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-orange-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-orange); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1em; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 32px; }

/* Eyebrow / Section Label */
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 16px;
  position: relative;
  padding-left: 40px;
}
.eyebrow::before {
  content: "";
  position: absolute; left: 0; top: 50%;
  width: 28px; height: 2px; background: var(--color-orange);
  transform: translateY(-50%);
}

.section { padding: 100px 0; }
.section--tight { padding: 64px 0; }
.section--dark { background: var(--color-charcoal); color: #C9CDD1; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--color-white); }
.section--grey { background: var(--color-grey-bg); }

.section-head { max-width: 760px; margin-bottom: 64px; }
.section-head--center { margin-left: auto; margin-right: auto; }
.section-head p { color: var(--color-muted); font-size: 1.1rem; margin-top: 12px; }
.section--dark .section-head p { color: #9CA3A8; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 16px 32px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer; transition: all var(--transition);
  text-decoration: none;
}
.btn--orange { background: var(--color-orange); color: var(--color-white); border-color: var(--color-orange); }
.btn--orange:hover { background: var(--color-orange-dark); border-color: var(--color-orange-dark); color: var(--color-white); }
.btn--outline { background: transparent; color: var(--color-white); border-color: rgba(255,255,255,0.35); }
.btn--outline:hover { border-color: var(--color-orange); color: var(--color-orange); background: rgba(255,126,38,0.06); }
.btn--dark { background: var(--color-charcoal); color: var(--color-white); border-color: var(--color-charcoal); }
.btn--dark:hover { background: var(--color-charcoal-3); color: var(--color-orange); border-color: var(--color-charcoal-3); }
.btn--ghost { background: transparent; color: var(--color-charcoal); border-color: var(--color-charcoal); }
.btn--ghost:hover { background: var(--color-charcoal); color: var(--color-white); }

/* ============================================================
   HEADER / NAV — Transparent bar, oversized logo
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(37, 40, 42, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 126, 38, 0.15);
  transition: background var(--transition);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100px;                        /* Taller to fit 2× logo */
}
.brand { display: flex; align-items: center; gap: 14px; color: var(--color-white); }
.brand__logo {
  height: 100px;                        /* 2× original (was 50px) */
  width: auto; display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);     /* Make logo white for dark header (negative usage per brand guide) */
}
.brand__logo--natural {               /* Header logo shown in source colours (no white overlay) */
  filter: none;
  height: 80px;                        /* tuned for the wide grey logo aspect (6667×3750) */
}
.brand__mark {
  width: 44px; height: 44px;
  background: var(--color-orange);
  display: grid; place-items: center;
  border-radius: var(--radius);
  font-family: var(--font-head); font-weight: 800; font-size: 1.4rem;
  color: var(--color-white);
}
.brand__text { line-height: 1.1; }
.brand__name { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; letter-spacing: 0.02em; text-transform: uppercase; }
.brand__sub { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-orange); font-weight: 600; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__list { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 4px; }
.nav a {
  color: #C9CDD1; font-family: var(--font-head); font-size: 0.82rem;
  font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 12px 18px; border-radius: var(--radius);
  transition: all var(--transition);
}
.nav a:hover { color: var(--color-orange); }
.nav .current-menu-item > a, .nav .current-page-item > a { color: var(--color-orange); }

.nav__cta { margin-left: 12px; }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; padding: 0;
}
.nav-toggle span {
  display: block; width: 28px; height: 2px; background: var(--color-white);
  margin: 6px auto; transition: all var(--transition);
}

@media (max-width: 980px) {
  .nav {
    position: fixed; top: 100px; right: 0; bottom: auto;
    /* Explicit viewport-unit height instead of `bottom: 0`. `bottom` is
       containing-block-relative — and .site-header's `backdrop-filter`
       (see line ~148) makes IT the containing block for this fixed
       element, collapsing top:100px+bottom:0 to ~0 height. vh/svh
       always resolve against the real viewport, so the drawer gets a
       real height. svh = small viewport (Safari toolbar visible),
       the worst case — guarantees all items fit on screen. */
    height: calc(100vh - 100px);     /* legacy fallback */
    height: calc(100svh - 100px);    /* modern: fits even with iOS toolbar visible */
    width: min(340px, 80vw);
    background: var(--color-charcoal);
    flex-direction: column; align-items: stretch;
    padding: 24px; gap: 4px;
    transform: translateX(100%); transition: transform var(--transition);
    border-left: 1px solid rgba(255,126,38,0.15);
    z-index: 1001;                     /* above site-header (1000) so the open drawer paints on top */
    overflow-y: auto;
  }
  .nav.open { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: stretch; width: 100%; }
  .nav a { padding: 16px 18px; font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,0.06); display: block; }
  .nav__cta { margin: 16px 0 0; }
  .nav-toggle { display: block; z-index: 1002; }   /* burger stays clickable above the open drawer */
}

/* ============================================================
   HERO — Split-screen layout (text left, image right)
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--color-charcoal);
  padding-top: 100px;
}
.hero__content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 60px 48px 60px 32px;
  color: var(--color-white);
  max-width: 640px;
}
.hero__content .eyebrow { color: var(--color-orange); }
.hero h1 { margin-bottom: 24px; color: var(--color-white); }
.hero h1 .accent { color: var(--color-orange); }
.hero__lead { font-size: 1.15rem; color: #C9CDD1; margin-bottom: 40px; max-width: 520px; line-height: 1.75; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__media {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-charcoal-2), var(--color-charcoal-3));
}
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.85) contrast(1.1);
}
.hero__media::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(37,40,42,0.4) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;  /* decorative overlay — must not block the video controls */
}
/* Hero video — fills the media panel like the static img; hides native controls
   overlay until hover so the poster frame reads as a clean image. */
.hero__video {
  width: 100%; height: 100%; object-fit: cover;
  display: block; background: var(--color-charcoal);
  filter: brightness(0.85) contrast(1.1);
  z-index: 0;
}
.hero__video::-webkit-media-controls {
  background: linear-gradient(transparent, rgba(0,0,0,0.4));
}
.hero__media .hero__badge { transition: opacity 0.3s ease, transform 0.3s ease; }
.hero__badge--hidden {
  opacity: 0; transform: translateY(8px); pointer-events: none;
}
.hero__badge {
  position: absolute; bottom: 40px; right: 40px;
  background: var(--color-orange); color: var(--color-white);
  padding: 20px 28px; border-radius: var(--radius);
  font-family: var(--font-head); font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  z-index: 2; box-shadow: var(--shadow-lg);
}

/* Diagonal accent stripe between hero halves */
.hero__divider {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 4px; background: var(--color-orange);
  transform: skewX(-8deg); transform-origin: top;
  z-index: 2; opacity: 0.9;
}

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; }
  .hero__content { padding: 40px 32px; order: 2; }
  .hero__media { min-height: 350px; order: 1; }
  .hero__divider { display: none; }
}

/* ============================================================
   TRUST BAR — Horizontal strip with accent top border
   ============================================================ */
.trust {
  background: var(--color-charcoal-2);
  border-top: 3px solid var(--color-orange);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(255,255,255,0.06);
}
.trust__item {
  background: var(--color-charcoal-2);
  padding: 32px 28px; text-align: center;
  transition: background var(--transition);
}
.trust__item:hover { background: var(--color-charcoal-3); }
.trust__num {
  font-family: var(--font-head); font-size: 2.6rem; font-weight: 800;
  color: var(--color-orange); line-height: 1;
}
.trust__label {
  font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: #9CA3A8; margin-top: 10px; font-weight: 500;
}
@media (max-width: 760px) { .trust__grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   SERVICES — Alternating horizontal rows (zigzag layout)
   ============================================================ */
.service-row {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 0;
  align-items: stretch;
  border-bottom: 1px solid var(--color-line);
}
.service-row:nth-child(even) { grid-template-columns: 1.2fr 1fr; }
.service-row:nth-child(even) .service-row__content { order: 2; }
.service-row:nth-child(even) .service-row__visual { order: 1; }

.service-row__content {
  padding: 56px 48px;
  display: flex; flex-direction: column; justify-content: center;
}
.service-row__num {
  font-family: var(--font-head); font-size: 3rem; font-weight: 800;
  color: var(--color-grey-light); line-height: 1; margin-bottom: 20px;
  transition: color var(--transition);
}
.service-row:hover .service-row__num { color: var(--color-orange); }
.service-row__content h3 { font-size: 1.6rem; margin-bottom: 12px; }
.service-row__content p { color: var(--color-muted); margin-bottom: 0; }

.service-row__visual {
  background: var(--color-grey-bg);
  display: grid; place-items: center;
  padding: 48px;
  position: relative; overflow: hidden;
}
.service-row__visual::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: var(--color-orange); transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.service-row:hover .service-row__visual::before { transform: scaleX(1); }
.service-row__icon {
  width: 80px; height: 80px;
  color: var(--color-charcoal);
  transition: all var(--transition);
}
.service-row:hover .service-row__icon { color: var(--color-orange); transform: scale(1.1); }
.service-row__icon svg { width: 100%; height: 100%; }

@media (max-width: 860px) {
  .service-row, .service-row:nth-child(even) { grid-template-columns: 1fr; }
  .service-row:nth-child(even) .service-row__content { order: 1; }
  .service-row:nth-child(even) .service-row__visual { order: 2; }
  .service-row__visual { min-height: 200px; padding: 40px; }
  .service-row__content { padding: 40px 32px; }
}

/* Services grid (used on archive + about page — keep compact) */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 860px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--color-orange); transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 56px; height: 56px; margin-bottom: 24px;
  display: grid; place-items: center;
  background: var(--color-grey-bg); border-radius: var(--radius);
  color: var(--color-orange);
}
.service-card__icon svg { width: 30px; height: 30px; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.service-card p { color: var(--color-muted); font-size: 0.95rem; margin-bottom: 0; }

/* ============================================================
   FEATURE / ABOUT PREVIEW — Asymmetric two-column
   ============================================================ */
.feature {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px; align-items: center;
}
@media (max-width: 860px) { .feature { grid-template-columns: 1fr; gap: 40px; } }

.feature__media {
  position: relative; aspect-ratio: 5/4;
  border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, var(--color-charcoal-2), var(--color-charcoal));
  box-shadow: var(--shadow-md);
}
.feature__media img { width: 100%; height: 100%; object-fit: cover; }
.feature__badge {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--color-orange); color: var(--color-white);
  padding: 16px 24px; border-radius: var(--radius);
  font-family: var(--font-head); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  box-shadow: var(--shadow-md);
}

.feature__list { list-style: none; margin: 28px 0 36px; }
.feature__list li {
  padding: 14px 0 14px 36px; position: relative;
  border-bottom: 1px solid var(--color-line);
  font-size: 1rem; font-weight: 500;
  color: var(--color-charcoal);
}
.feature__list li::before {
  content: ""; position: absolute; left: 0; top: 22px;
  width: 18px; height: 18px;
  background: var(--color-orange);
  clip-path: polygon(14% 44%, 0 60%, 40% 100%, 100% 18%, 86% 0, 38% 68%);
}

/* ============================================================
   PROJECTS — 2×2 grid with large featured first card
   ============================================================ */
.projects-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
@media (max-width: 760px) { .projects-grid { grid-template-columns: 1fr; } }

.project-card {
  position: relative; aspect-ratio: 16/10;
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--color-charcoal-2);
  cursor: pointer; display: block;
  border: 1px solid rgba(255,255,255,0.06);
}
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.project-card:hover img { transform: scale(1.05); }
.project-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(37,40,42,0.95) 0%, rgba(37,40,42,0.2) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px; color: var(--color-white);
}
.project-card__cat {
  font-family: var(--font-head); font-size: 0.72rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--color-orange); font-weight: 600;
}
.project-card__title {
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; margin-top: 8px;
}
.project-card__arrow {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--color-orange); color: var(--color-white);
  display: grid; place-items: center;
  opacity: 0; transform: translateY(-10px); transition: all var(--transition);
}
.project-card:hover .project-card__arrow { opacity: 1; transform: translateY(0); }
.project-card__arrow svg { width: 20px; height: 20px; }

/* ============================================================
   CTA BAND — Full-width orange accent bar
   ============================================================ */
.cta-band {
  background: var(--color-charcoal);
  color: var(--color-white); text-align: center;
  position: relative; overflow: hidden;
  border-top: 4px solid var(--color-orange);
}
.cta-band::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 50%;
  background: linear-gradient(90deg, rgba(255,126,38,0.04), transparent);
}
.cta-band h2 { margin-bottom: 16px; }
.cta-band p { color: #C9CDD1; max-width: 560px; margin: 0 auto 36px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.contact-info__item {
  display: flex; gap: 18px; padding: 24px 0;
  border-bottom: 1px solid var(--color-line);
}
.contact-info__icon {
  width: 48px; height: 48px; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--color-grey-bg); border-radius: var(--radius);
  color: var(--color-orange);
}
.contact-info__icon svg { width: 24px; height: 24px; }
.contact-info__label {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-muted); font-weight: 600;
}
.contact-info__value { font-size: 1.05rem; font-weight: 500; color: var(--color-ink); }

.contact-form {
  background: var(--color-white); border: 1px solid var(--color-line);
  border-radius: var(--radius-lg); padding: 48px;
  box-shadow: var(--shadow-sm);
}
.contact-form h3 { margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 0; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block; font-family: var(--font-head); font-size: 0.75rem;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px;
  color: var(--color-muted); font-weight: 600;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--color-line); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 1rem; color: var(--color-ink);
  background: var(--color-grey-bg); transition: all var(--transition);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--color-orange); background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(255,126,38,0.12);
}
.form-field textarea { resize: vertical; min-height: 140px; }

/* Contact Form 7 wrapper styling */
.wpcf7 { font-family: var(--font-body); }
.wpcf7-response-output { margin-top: 18px !important; border-radius: var(--radius); }

/* ============================================================
   PAGE HEADER (interior pages) — Split-style with accent
   ============================================================ */
.page-header {
  background: var(--color-charcoal);
  color: var(--color-white);
  padding: calc(100px + 72px) 0 72px;
  position: relative;
  border-bottom: 4px solid var(--color-orange);
  overflow: hidden;
}
.page-header::after {
  content: ""; position: absolute; top: 0; right: 0; width: 40%; height: 100%;
  background: linear-gradient(135deg, rgba(255,126,38,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.page-header__inner { position: relative; z-index: 1; max-width: 760px; }
.page-header h1 { margin-bottom: 16px; }
.page-header p { color: #C9CDD1; max-width: 620px; }
.breadcrumb {
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-orange); margin-bottom: 16px; font-weight: 600;
}
.breadcrumb a { color: #9CA3A8; }
.breadcrumb a:hover { color: var(--color-orange); }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination, .page-numbers { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.page-numbers {
  font-family: var(--font-head); font-weight: 600; font-size: 0.9rem;
  padding: 12px 16px; border-radius: var(--radius); border: 1px solid var(--color-line);
  color: var(--color-charcoal); transition: all var(--transition);
}
a.page-numbers:hover { background: var(--color-orange); color: var(--color-white); border-color: var(--color-orange); }
.page-numbers.current { background: var(--color-charcoal); color: var(--color-white); border-color: var(--color-charcoal); }

/* ============================================================
   SINGLE PROJECT / SERVICE — Split layout
   ============================================================ */
.single-layout {
  display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: start;
}
@media (max-width: 860px) { .single-layout { grid-template-columns: 1fr; gap: 40px; } }

.single-media {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); margin-bottom: 40px;
}
.single-media img { width: 100%; height: auto; }

.single-sidebar {
  background: var(--color-grey-bg); border-radius: var(--radius-lg);
  padding: 36px; position: sticky; top: 120px;
}
.single-sidebar h3 {
  font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-orange); margin-bottom: 20px; padding-bottom: 16px;
  border-bottom: 2px solid var(--color-line);
}
.single-sidebar__item { padding: 14px 0; border-bottom: 1px solid var(--color-line); }
.single-sidebar__item:last-child { border-bottom: none; }
.single-sidebar__label {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-muted); font-weight: 600; margin-bottom: 4px;
}
.single-sidebar__value { font-size: 1rem; font-weight: 500; color: var(--color-ink); }
.single-sidebar__value a { color: var(--color-orange-dark); }

/* ============================================================
   SERVICES ARCHIVE — Card with image
   ============================================================ */
.service-card--archive {
  display: block; text-decoration: none; color: inherit;
  background: var(--color-white); border: 1px solid var(--color-line);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition);
}
.service-card--archive:hover {
  box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent;
}
.service-card--archive__img {
  aspect-ratio: 16/10; overflow: hidden; background: var(--color-grey-bg);
}
.service-card--archive__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card--archive:hover .service-card--archive__img img { transform: scale(1.05); }
.service-card--archive__body { padding: 32px 28px; }
.service-card--archive__body h3 { margin-bottom: 10px; }
.service-card--archive__body p { color: var(--color-muted); font-size: 0.95rem; margin-bottom: 16px; }
.service-card--archive__link {
  font-family: var(--font-head); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-orange);
  display: inline-flex; align-items: center; gap: 8px;
}
.service-card--archive__link::after {
  content: "→"; transition: transform var(--transition);
}
.service-card--archive:hover .service-card--archive__link::after { transform: translateX(4px); }

/* ============================================================
   ABOUT PAGE — Values cards with numbered layout
   ============================================================ */
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 860px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  background: var(--color-white); border: 1px solid var(--color-line);
  border-radius: var(--radius-lg); padding: 40px 32px; position: relative;
  transition: all var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.value-card__num {
  font-family: var(--font-head); font-size: 3rem; font-weight: 800;
  color: var(--color-grey-light); line-height: 1; margin-bottom: 16px;
  transition: color var(--transition);
}
.value-card:hover .value-card__num { color: var(--color-orange); }
.value-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.value-card p { color: var(--color-muted); font-size: 0.95rem; margin-bottom: 0; }
.value-card__icon {
  width: 56px; height: 56px; margin-bottom: 20px;
  display: grid; place-items: center;
  background: var(--color-grey-bg); border-radius: var(--radius);
  color: var(--color-orange);
}
.value-card__icon svg { width: 30px; height: 30px; }

/* ============================================================
   CONTACT PAGE — Map placeholder
   ============================================================ */
.contact-map {
  margin-top: 40px; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--color-grey-bg); border: 1px solid var(--color-line);
  aspect-ratio: 21/9; display: grid; place-items: center;
  color: var(--color-muted); font-family: var(--font-head);
  font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
}

/* ============================================================
   CONTENT / PROSE
   ============================================================ */
.prose { max-width: 760px; }
.prose p { color: #3A3F43; }
.prose h2 { margin: 1.6em 0 0.5em; }
.prose h2:first-child { margin-top: 0; }
.prose ul { margin: 1em 0; padding-left: 1.2em; }
.prose li { margin-bottom: 0.5em; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-charcoal);
  color: #9CA3A8;
  padding: 72px 0 0;
  border-top: 3px solid var(--color-orange);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-col h4 {
  color: var(--color-white); font-size: 0.82rem; letter-spacing: 0.12em;
  margin-bottom: 24px; text-transform: uppercase;
}
.footer-col p, .footer-col li { font-size: 0.92rem; line-height: 1.75; }
.footer-col ul { list-style: none; }
.footer-col a { color: #9CA3A8; }
.footer-col a:hover { color: var(--color-orange); }
.footer-col li { margin-bottom: 10px; }

.footer-brand .brand__name { color: var(--color-white); }
.footer-brand img { filter: brightness(0) invert(1); }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 44px; height: 44px; display: grid; place-items: center;
  background: var(--color-charcoal-2); border-radius: var(--radius); color: #9CA3A8;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--color-orange); color: var(--color-white); }
.footer-social svg { width: 20px; height: 20px; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 0; font-size: 0.84rem; flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: #9CA3A8; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
