/* WorkflowSpaces — Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── Variables ─────────────────────────────────────────── */
:root {
  --dark:       #0f1c2e;
  --dark2:      #1a2d42;
  --gold:       #cf6a3a;
  --gold-light: #e8906c;
  --gold-dark:  #a84f26;
  --white:      #ffffff;
  --off-white:  #f5f5f3;
  --gray-100:   #f0f0ee;
  --gray-200:   #e2e2df;
  --gray-400:   #999994;
  --gray-600:   #555552;
  --text:       #1c1c1a;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --nav-h: 76px;
  --max-w: 1220px;
  --r: 10px;
  --r-lg: 18px;
  --shadow: 0 4px 20px rgba(0,0,0,0.07);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 64px rgba(0,0,0,0.18);
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); }
input, textarea, select { font-family: var(--font); }

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

section { padding: 96px 0; }

/* ── Typography ─────────────────────────────────────────── */
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.015em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; line-height: 1.3; }
h4 { font-size: 1rem; font-weight: 600; }
p { font-size: 1rem; line-height: 1.7; color: var(--gray-600); }
.lead { font-size: 1.15rem; line-height: 1.7; color: var(--gray-600); }
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 14px;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.25s var(--ease);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(207,106,58,0.35);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.75);
  transform: translateY(-1px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-lg { padding: 17px 36px; font-size: 1rem; border-radius: 12px; }
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: all 0.35s var(--ease);
}
.nav.transparent {
  background: transparent;
}
.nav.solid {
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08), var(--shadow);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.nav-logo {
  display: inline-flex;
  align-items: baseline;       /* align on text baseline */
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
}
/* ── CSS wordmark logo ─────────────────────────────────── */
.logo-wm {
  font-family: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.logo-wm em {
  font-style: italic;
  color: var(--gold);
}
.logo-sep {
  display: inline-block;
  width: 1px;
  height: 13px;
  background: var(--dark);
  opacity: 0.18;
  flex-shrink: 0;
  margin: 0 7px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
.logo-tag {
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 0.53rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.4;
  white-space: nowrap;
  vertical-align: middle;
}
/* Transparent nav (dark hero) */
.nav.transparent .logo-wm  { color: var(--white); }
.nav.transparent .logo-sep { background: var(--white); opacity: 0.25; }
.nav.transparent .logo-tag { color: var(--white); opacity: 0.45; }
/* Footer (always dark bg) */
.footer-brand .logo-wm  { color: var(--white); }
.footer-brand .logo-sep { background: var(--white); opacity: 0.2; }
.footer-brand .logo-tag { color: var(--white); opacity: 0.4; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--dark);
  transition: all 0.2s;
  position: relative;
}
.nav.transparent .nav-link { color: rgba(255,255,255,0.85); }
.nav.transparent .nav-link:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav.solid .nav-link:hover { color: var(--dark); background: var(--gray-100); }
.nav-link.active { color: var(--gold) !important; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--dark);
  background: none;
  border: none;
  transition: all 0.2s;
  cursor: pointer;
}
.nav.transparent .nav-dropdown-toggle { color: rgba(255,255,255,0.85); }
.nav.transparent .nav-dropdown-toggle:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav.solid .nav-dropdown-toggle:hover { color: var(--dark); background: var(--gray-100); }
.dropdown-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
  opacity: 0.7;
}
.nav-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  min-width: 260px;
  padding: 8px 10px 10px;
  padding-top: 18px; /* visual gap via padding — no break in hover zone */
  margin-top: -10px; /* overlap button by 10px so hover zone is continuous */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s var(--ease), transform 0.18s var(--ease);
  border: 1px solid var(--gray-200);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: all 0.15s;
}
.dropdown-item:hover { background: var(--gray-100); color: var(--gold-dark); }
.dropdown-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.nav-cta .btn { padding: 10px 22px; font-size: 0.88rem; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.25s;
}
.nav.transparent .nav-hamburger span { background: var(--white); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  box-shadow: var(--shadow-md);
  padding: 16px 32px 24px;
  z-index: 999;
  border-top: 1px solid var(--gray-200);
}
.nav-mobile.open { display: block; }
.mobile-links a, .mobile-links button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border: none;
  background: none;
  border-bottom: 1px solid var(--gray-200);
}
.mobile-links a:last-child, .mobile-links button:last-child { border-bottom: none; }
.mobile-submenu { padding-left: 16px; }
.mobile-submenu a {
  font-size: 0.92rem;
  color: var(--gray-600);
  padding: 9px 0;
}
.mobile-cta { margin-top: 16px; display: flex; }
.mobile-cta .btn { flex: 1; justify-content: center; }

/* ── Hero (Home) — grid: text left · photo card right ─── */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 60% 70% at 18% 55%, rgba(207,106,58,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero-pattern {
  position: absolute;
  top: 0; left: 0; bottom: 0; width: 55%;
  z-index: 0;
  opacity: 0.016;
  background-image:
    linear-gradient(rgba(255,255,255,0.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.6) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding: calc(var(--nav-h) + 48px) 32px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.hero-text { /* left column — no extra styling needed */ }
/* Photo: contained card, not full-bleed */
.hero-visual {
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.07);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.8s ease;
}
.hero-visual:hover img { transform: scale(1.03); }
/* Subtle vignette on photo card */
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(15,28,46,0.25) 0%,
    transparent 40%,
    transparent 70%,
    rgba(15,28,46,0.35) 100%
  );
  border-radius: inherit;
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(207,106,58,0.15);
  border: 1px solid rgba(207,106,58,0.3);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}
.hero h1 .gold { color: var(--gold); }
.hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-stats {
  position: relative;
  z-index: 2;
  background: rgba(207,106,58,0.06);
  border-top: 1px solid rgba(207,106,58,0.15);
}
.hero-stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 28px 0;
  border-right: 1px solid rgba(207,106,58,0.12);
  padding-left: 32px;
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 5px;
}
.stat-number span { color: var(--gold); }
.stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Service Hero (inner pages) ─────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 72px) 0 72px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(207,106,58,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .section-label { color: var(--gold-light); }
.page-hero h1 { color: var(--white); max-width: 660px; margin-bottom: 20px; }
.page-hero p { color: rgba(255,255,255,0.6); max-width: 520px; font-size: 1.1rem; }

/* ── Section headings ───────────────────────────────────── */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; }

/* ── Services Grid ──────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.service-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 22px;
  transition: background 0.2s;
}
.service-card:hover .service-icon { background: rgba(207,106,58,0.1); }
.service-card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.service-card p { font-size: 0.92rem; margin-bottom: 24px; flex: 1; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-dark);
  transition: gap 0.2s;
}
.service-card:hover .service-link { gap: 10px; }

/* ── Process Section ────────────────────────────────────── */
.process-section { background: var(--off-white); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}
.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.process-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold);
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.process-step:hover .process-num {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  transform: scale(1.05);
}
.process-step h4 { font-size: 0.95rem; margin-bottom: 8px; }
.process-step p { font-size: 0.84rem; line-height: 1.5; }

/* ── Why us ─────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: center;
}
.why-content .section-label { display: block; }
.why-content h2 { margin-bottom: 20px; }
.why-content .lead { margin-bottom: 32px; }
.why-points { display: flex; flex-direction: column; gap: 18px; }
.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-point-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(207,106,58,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-point h4 { margin-bottom: 4px; }
.why-point p { font-size: 0.9rem; }
.why-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.why-card {
  background: var(--dark);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  color: var(--white);
}
.why-card:first-child {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  border: 1px solid rgba(207,106,58,0.2);
}
.why-card-num {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.why-card p {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  margin: 0;
}
.why-card h3 { color: var(--white); font-size: 1rem; margin-bottom: 6px; }

/* ── Gallery / Projects ─────────────────────────────────── */
.gallery-section { background: var(--off-white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  background: var(--gray-200);
  cursor: pointer;
}
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gray-400);
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.25s;
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
}
.gallery-item:hover .gallery-placeholder { background: linear-gradient(135deg, var(--gray-200), var(--gray-100)); }
.gallery-placeholder svg { width: 28px; height: 28px; opacity: 0.35; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,42,0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
  color: var(--white);
  text-align: center;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.gallery-overlay p { font-size: 0.92rem; color: var(--white); margin: 0; }

/* Real photo support */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-cta { text-align: center; margin-top: 40px; }

/* ── Testimonials ───────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
}
.testimonial-card.add-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-style: dashed;
  border-color: var(--gray-200);
  background: var(--off-white);
  color: var(--gray-400);
  gap: 12px;
  padding: 40px 24px;
  cursor: default;
}
.testimonial-card.add-card svg { opacity: 0.3; }
.testimonial-card.add-card p { font-size: 0.85rem; color: var(--gray-400); }
.quote-icon {
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 12px;
  display: block;
  line-height: 1;
}
.testimonial-text {
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 700;
  flex-shrink: 0;
}
.author-name { font-size: 0.9rem; font-weight: 600; margin-bottom: 2px; }
.author-role { font-size: 0.8rem; color: var(--gray-400); }
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.85rem;
}

/* ── CTA Banner ─────────────────────────────────────────── */
.cta-section {
  background: var(--dark);
  text-align: center;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(207,106,58,0.07) 0%, transparent 65%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section .section-label { color: var(--gold-light); }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.6); font-size: 1.05rem; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}
.cta-contact-item a { color: rgba(255,255,255,0.8); transition: color 0.2s; }
.cta-contact-item a:hover { color: var(--gold-light); }
.cta-contact-item svg { color: var(--gold); flex-shrink: 0; }

/* ── Service Detail ─────────────────────────────────────── */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}
.service-includes h3 { margin-bottom: 24px; }
.includes-list { display: flex; flex-direction: column; gap: 14px; }
.include-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border-radius: var(--r);
  background: var(--off-white);
  border: 1.5px solid var(--gray-200);
  transition: border-color 0.2s;
}
.include-item:hover { border-color: var(--gold); }
.include-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(207,106,58,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-dark);
  margin-top: 1px;
}
.include-check svg { width: 13px; }
.include-title { font-size: 0.92rem; font-weight: 600; margin-bottom: 3px; }
.include-desc { font-size: 0.84rem; color: var(--gray-400); margin: 0; line-height: 1.5; }
.service-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.sidebar-card {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: 32px;
  margin-bottom: 20px;
}
.sidebar-card h4 { color: var(--gold); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px; }
.sidebar-card ul { display: flex; flex-direction: column; gap: 10px; }
.sidebar-card li { font-size: 0.9rem; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 8px; }
.sidebar-card li::before { content: '—'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.sidebar-contact {
  background: var(--off-white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 28px;
}
.sidebar-contact h4 { margin-bottom: 6px; }
.sidebar-contact p { font-size: 0.88rem; margin-bottom: 20px; }
.contact-info-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gray-600);
  margin-bottom: 10px;
}
.contact-info-row a { color: var(--dark); font-weight: 500; }
.contact-info-row svg { color: var(--gold); flex-shrink: 0; }

/* ── Gallery Filter (projects page) ────────────────────── */
.gallery-filter {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  border: 1.5px solid var(--gray-200);
  background: transparent;
  color: var(--gray-600);
  transition: all 0.2s;
  cursor: pointer;
}
.filter-btn.active,
.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: rgba(207,106,58,0.06);
}

/* ── Contact Form ───────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}
.contact-form-wrapper h2 { margin-bottom: 8px; }
.contact-form-wrapper > p { margin-bottom: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.form-group label { font-size: 0.88rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r);
  font-size: 0.94rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(207,106,58,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { display: flex; gap: 16px; align-items: center; margin-top: 4px; }
.form-note { font-size: 0.82rem; color: var(--gray-400); }
.contact-info-panel { position: sticky; top: calc(var(--nav-h) + 24px); }
.contact-info-card {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: 36px;
  margin-bottom: 20px;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 6px; }
.contact-info-card > p { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin-bottom: 28px; }
.contact-info-list { display: flex; flex-direction: column; gap: 18px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(207,106,58,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-info-item h4 { font-size: 0.8rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.contact-info-item a, .contact-info-item p { color: rgba(255,255,255,0.75); font-size: 0.92rem; margin: 0; }
.contact-info-item a:hover { color: var(--gold-light); }
.coverage-card {
  background: var(--off-white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 28px;
}
.coverage-card h4 { margin-bottom: 8px; }
.coverage-card p { font-size: 0.88rem; margin-bottom: 16px; }
.coverage-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.coverage-tag {
  padding: 5px 12px;
  border-radius: 50px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-600);
}

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: #080f18;
  color: rgba(255,255,255,0.55);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .nav-logo {
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-brand .logo-mark { background: var(--gold); }
.footer-col h5 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.8);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; }
.footer-legal {
  display: flex;
  gap: 24px;
  font-size: 0.82rem;
}
.footer-legal a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
}
.breadcrumb a { font-size: 0.82rem; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.breadcrumb a:hover { color: rgba(255,255,255,0.75); }
.breadcrumb span { font-size: 0.82rem; color: rgba(255,255,255,0.25); }
.breadcrumb .current { font-size: 0.82rem; color: var(--gold-light); }

/* ── Other Components ───────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.badge-gold { background: rgba(207,106,58,0.12); color: var(--gold-dark); }
.badge-dark { background: var(--dark); color: var(--white); }

.divider {
  height: 1px;
  background: var(--gray-200);
  margin: 24px 0;
}

.bg-off { background: var(--off-white); }
.bg-dark { background: var(--dark); }

.text-center { text-align: center; }
.text-gold { color: var(--gold); }

.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0 !important; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-visual { grid-template-columns: repeat(2, 1fr); }
  .why-card:first-child { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .service-detail-grid { grid-template-columns: 1fr; gap: 48px; }
  .service-sidebar { position: static; }
}

@media (max-width: 900px) {
  :root { --nav-h: 68px; }
  section { padding: 72px 0; }
  .container { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  /* Hero: single column on tablet/mobile, hide photo card */
  .hero-content { grid-template-columns: 1fr; padding-top: calc(var(--nav-h) + 40px); padding-bottom: 40px; }
  .hero-visual { display: none; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 20px 16px; }
  .stat-item:first-child { padding-left: 16px; }
  .stat-item:nth-child(2) { border-right: none; }
  .process-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .process-grid::before { display: none; }
  .process-step:nth-child(n+4) { grid-column: span 1; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-info-panel { position: static; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --nav-h: 60px; }
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  section { padding: 56px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery-item.wide { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
}
