/* ─── BURRAQ CONSTRUCTION ─── Shared Stylesheet ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0A0908;
  --surface: #141110;
  --surface-2: #1C1815;
  --surface-3: #252019;
  --line: rgba(245,239,230,0.08);
  --line-strong: rgba(245,239,230,0.14);

  --gold: #B89968;
  --gold-light: #D4B07F;
  --gold-dark: #8C7140;
  --gold-glow: rgba(184,153,104,0.18);

  --text: #F5EFE6;
  --text-muted: rgba(245,239,230,0.62);
  --text-faint: rgba(245,239,230,0.38);

  --cream: #F4EFE6;
  --cream-2: #EBE3D4;
  --ink: #1A1612;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.display { font-family: 'Fraunces', 'Playfair Display', Georgia, serif; font-optical-sizing: auto; }
.gold { color: var(--gold); }
.container { max-width: 1400px; margin: 0 auto; padding: 0 60px; }

/* ─── TOP BAR ────────────────────────────────────── */
.topbar {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 9px 60px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--text-faint);
  letter-spacing: 0.5px;
}
.topbar-left { display: flex; gap: 28px; }
.topbar-right { display: flex; gap: 22px; align-items: center; }
.topbar a { color: var(--text-muted); transition: color 0.2s; }
.topbar a:hover { color: var(--gold); }
.topbar-divider { width: 1px; height: 12px; background: var(--line-strong); }

/* ─── NAV ────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 1000;
  padding: 18px 60px;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(10,9,8,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s, background 0.3s;
}
nav.scrolled { padding: 12px 60px; background: rgba(10,9,8,0.96); }

.logo { display: flex; align-items: center; gap: 14px; }
.brand-logo {
  height: 52px;
  width: auto;
  display: block;
  mix-blend-mode: screen;
  filter: invert(1) hue-rotate(180deg) brightness(1.15) contrast(1.1);
}
footer .brand-logo { height: 60px; }

.nav-links { display: flex; gap: 38px; list-style: none; }
.nav-links a {
  color: var(--text-muted);
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -6px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--text); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--gold);
  color: var(--ink);
  padding: 12px 26px;
  border-radius: 4px;
  font-weight: 600; font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 30px var(--gold-glow); }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav-hamburger span { width: 26px; height: 2px; background: var(--text); transition: 0.3s; }

/* ─── BUTTONS ────────────────────────────────────── */
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  padding: 18px 36px;
  border-radius: 4px;
  font-weight: 600; font-size: 14px;
  letter-spacing: 1.2px; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 12px;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  border: none; cursor: pointer;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(184,153,104,0.35); }
.btn-gold svg { transition: transform 0.25s; }
.btn-gold:hover svg { transform: translateX(4px); }

.btn-ghost {
  color: var(--text);
  padding: 18px 30px;
  border-radius: 4px;
  font-weight: 500; font-size: 14px;
  letter-spacing: 1px; text-transform: uppercase;
  border: 1px solid var(--line-strong);
  display: inline-flex; align-items: center; gap: 12px;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ─── HERO (HOME) ────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(10,9,8,0.96) 35%, rgba(10,9,8,0.55) 70%, rgba(10,9,8,0.4) 100%),
    url('images/construction-site.jpg') center/cover no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 70%, var(--bg) 100%);
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(184,153,104,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,153,104,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 850px;
  padding: 100px 60px 140px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 9px 18px;
  background: rgba(184,153,104,0.08);
  border: 1px solid rgba(184,153,104,0.25);
  border-radius: 100px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(184,153,104,0.6); } 50% { box-shadow: 0 0 0 8px rgba(184,153,104,0); } }

.hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.98;
  letter-spacing: -2px;
  margin-bottom: 32px;
  font-variation-settings: "SOFT" 50, "WONK" 0;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.hero-sub {
  font-size: 19px; line-height: 1.7;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 48px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero-meta {
  position: absolute; bottom: 50px; left: 60px; right: 60px;
  z-index: 2;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.hero-meta-left {
  display: flex; align-items: center; gap: 14px;
  color: var(--text-faint); font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
}
.hero-meta-line { width: 60px; height: 1px; background: var(--text-faint); }
.hero-meta-right { display: flex; gap: 50px; }
.hero-stat-mini { text-align: right; }
.hero-stat-mini .num {
  font-family: 'Fraunces', serif;
  font-size: 32px; font-weight: 500;
  color: var(--gold); line-height: 1;
  letter-spacing: -1px;
}
.hero-stat-mini .lbl {
  font-size: 10px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 6px;
}

/* ─── PAGE HERO (INNER PAGES) ────────────────────── */
.page-hero {
  position: relative;
  padding: 140px 60px 100px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.page-hero-bg {
  position: absolute; inset: 0;
  opacity: 0.18;
  background-size: cover;
  background-position: center;
}
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--surface) 0%, rgba(20,17,16,0.8) 60%, transparent 100%),
              linear-gradient(to bottom, transparent 50%, var(--surface) 100%);
}
.page-hero-inner {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
}
.crumbs {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 28px;
}
.crumbs a { color: var(--text-muted); transition: color 0.2s; }
.crumbs a:hover { color: var(--gold); }
.crumbs .sep { color: var(--gold); }
.crumbs .current { color: var(--gold); }
.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero-sub {
  font-size: 18px; line-height: 1.7;
  color: var(--text-muted);
  max-width: 660px;
  font-weight: 300;
}

/* ─── CREDENTIALS STRIP ─────────────────────────── */
.creds {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px 60px;
  display: flex; justify-content: space-around; align-items: center;
  gap: 40px; flex-wrap: wrap;
  position: relative;
}
.creds::before, .creds::after {
  content: '';
  position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}
.creds::before { top: 0; }
.creds::after { bottom: 0; }
.cred-item {
  display: flex; align-items: center; gap: 12px;
  color: var(--text-muted);
  font-size: 13px;
}
.cred-item strong { color: var(--text); font-weight: 600; }
.cred-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.cred-divider { width: 1px; height: 28px; background: var(--line-strong); }

/* ─── SECTION BASE ──────────────────────────────── */
section { position: relative; }
.sec-pad { padding: 140px 60px; }
.sec-pad-sm { padding: 90px 60px; }
.sec-tag {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.sec-tag::before {
  content: ''; width: 32px; height: 1px;
  background: var(--gold);
}
.sec-tag.center { justify-content: center; }
.sec-tag.center::before { display: none; }
.sec-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  font-variation-settings: "SOFT" 50;
}
.sec-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.sec-sub {
  font-size: 18px; line-height: 1.75;
  color: var(--text-muted);
  max-width: 620px;
  font-weight: 300;
}

/* ─── REVEAL ANIMATION ──────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ─── FOUNDER STORY ─────────────────────────────── */
.story {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: center;
}
.story-img-wrap { position: relative; }
.story-img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover;
  filter: brightness(0.92) contrast(1.05);
  border-radius: 2px;
}
.story-img-frame {
  position: absolute; inset: -20px;
  border: 1px solid var(--gold);
  pointer-events: none;
  transform: translate(20px, 20px);
  z-index: -1;
}
.story-badge {
  position: absolute; top: 30px; left: 30px;
  background: var(--bg);
  border: 1px solid var(--gold);
  padding: 18px 24px;
  display: flex; align-items: center; gap: 14px;
}
.story-badge .yr {
  font-family: 'Fraunces', serif;
  font-size: 38px; font-weight: 500;
  color: var(--gold); line-height: 1;
}
.story-badge .lbl {
  font-size: 10px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.4;
}
.story-content blockquote {
  border-left: 2px solid var(--gold);
  padding: 8px 0 8px 24px;
  margin: 32px 0;
  font-family: 'Fraunces', serif;
  font-size: 22px; font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text);
}
.story-signature {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.signature-name { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 500; }
.signature-role {
  font-size: 12px; color: var(--text-faint);
  letter-spacing: 2px; text-transform: uppercase;
  margin-top: 4px;
}
.story-pillars { display: flex; gap: 28px; }
.pillar { text-align: right; }
.pillar-num {
  font-family: 'Fraunces', serif;
  font-size: 28px; color: var(--gold);
  line-height: 1; font-weight: 500;
}
.pillar-lbl {
  font-size: 10px; letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 4px;
}

/* ─── FEATURED PROJECT ──────────────────────────── */
.featured {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.featured-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 640px;
}
.featured-img {
  background: url('images/australian-islamic-college.jpg') center/cover no-repeat;
  position: relative;
}
.featured-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--surface) 100%);
}
.featured-content {
  padding: 90px 80px;
  display: flex; flex-direction: column; justify-content: center;
}
.featured-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.featured-label::before {
  content: ''; width: 24px; height: 1px; background: var(--gold);
}
.featured-content h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.featured-content h3 em { font-style: italic; color: var(--gold); font-weight: 400; }
.featured-content > p {
  font-size: 17px; line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 36px;
  font-weight: 300;
}
.featured-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 32px;
  margin-bottom: 36px;
}
.featured-spec {
  border-right: 1px solid var(--line);
  padding-right: 20px;
}
.featured-spec:last-child { border-right: none; }
.featured-spec .v {
  font-family: 'Fraunces', serif;
  font-size: 24px; font-weight: 500;
  color: var(--text);
  line-height: 1; margin-bottom: 8px;
}
.featured-spec .l {
  font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-faint);
}
.featured-link {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--gold);
  font-size: 13px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 1px solid var(--gold);
  align-self: flex-start;
  transition: gap 0.25s;
}
.featured-link:hover { gap: 18px; }

/* ─── SERVICES ──────────────────────────────────── */
.services-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service {
  padding: 50px 40px 60px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background 0.3s;
  cursor: default;
}
.service:hover { background: var(--surface); }
.service::before {
  content: '';
  position: absolute; top: 0; left: 0; width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.service:hover::before { width: 100%; }
.service-num {
  font-family: 'Fraunces', serif;
  font-size: 13px; font-weight: 500;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 12px;
}
.service-num::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.service-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 24px;
}
.service h4 {
  font-family: 'Fraunces', serif;
  font-size: 24px; font-weight: 500;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.service p {
  font-size: 14px; line-height: 1.75;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 24px;
}
.service ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 13px; color: var(--text-faint);
}
.service ul li { padding-left: 16px; position: relative; }
.service ul li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }

/* ─── SERVICE DETAIL (full services page) ───────── */
.service-detail {
  padding: 100px 60px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.service-detail:nth-child(even) { background: var(--surface); }
.service-detail:nth-child(even) .sd-img-wrap { order: 2; }
.sd-num {
  font-family: 'Fraunces', serif;
  font-size: 80px; font-weight: 500;
  color: var(--gold); line-height: 1;
  letter-spacing: -3px;
  margin-bottom: 24px;
  opacity: 0.7;
}
.sd-num em { font-style: normal; font-size: 28px; color: var(--text-muted); }
.service-detail h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 500; line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 22px;
}
.service-detail h2 em { font-style: italic; color: var(--gold); }
.service-detail > div > p {
  font-size: 17px; line-height: 1.8;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 28px;
}
.sd-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin-bottom: 32px;
}
.sd-features li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 24px;
  position: relative;
}
.sd-features li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--gold);
  font-weight: 700;
}
.sd-img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover;
  filter: brightness(0.85);
}

/* ─── PROCESS ───────────────────────────────────── */
.process {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process-head { text-align: center; max-width: 720px; margin: 0 auto 90px; }
.process-head .sec-tag { justify-content: center; }
.process-head .sec-tag::before { display: none; }
.process-head .sec-sub { margin: 0 auto; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute; top: 36px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
  opacity: 0.5;
}
.step { text-align: center; padding: 0 14px; position: relative; }
.step-num {
  width: 72px; height: 72px;
  margin: 0 auto 28px;
  border: 1px solid var(--gold);
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 24px; font-weight: 500;
  color: var(--gold);
  position: relative; z-index: 1;
  transform: rotate(45deg);
}
.step-num span { transform: rotate(-45deg); display: block; }
.step h5 {
  font-family: 'Fraunces', serif;
  font-size: 19px; font-weight: 500;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}
.step p {
  font-size: 13px; line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
}
.step-time {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 10px;
  background: rgba(184,153,104,0.1);
  border: 1px solid rgba(184,153,104,0.2);
  font-size: 10px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold);
}

/* ─── PORTFOLIO ─────────────────────────────────── */
.portfolio-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 70px;
}
.portfolio-tabs { display: flex; gap: 8px; }
.tab {
  padding: 10px 18px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--line-strong);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.tab.active, .tab:hover { color: var(--ink); background: var(--gold); border-color: var(--gold); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.pg-item {
  position: relative; overflow: hidden;
  cursor: pointer;
  background: var(--surface);
}
.pg-item.tall { grid-row: span 2; }
.pg-item.wide { grid-column: span 2; }
.pg-item.large { grid-column: span 3; grid-row: span 2; }
.pg-item.medium { grid-column: span 2; }
.pg-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.78) saturate(1.05);
  transition: transform 0.7s ease, filter 0.4s;
}
.pg-item:hover img { transform: scale(1.06); filter: brightness(0.55); }
.pg-overlay {
  position: absolute; inset: 0;
  padding: 32px;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(to top, rgba(10,9,8,0.85), transparent 55%);
  opacity: 0.85;
  transition: opacity 0.3s;
}
.pg-item:hover .pg-overlay { opacity: 1; }
.pg-tag {
  font-size: 10px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.pg-title {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 500;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}
.pg-loc { font-size: 12px; color: var(--text-muted); letter-spacing: 0.5px; }

/* ─── TESTIMONIALS ──────────────────────────────── */
.testi {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.testi-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end; margin-bottom: 70px;
}
.testi-rating {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px;
  border: 1px solid var(--line-strong);
  align-self: flex-end;
  max-width: 420px;
}
.testi-rating .stars { color: var(--gold); font-size: 18px; letter-spacing: 3px; }
.testi-rating .num {
  font-family: 'Fraunces', serif;
  font-size: 28px; font-weight: 500; color: var(--text); line-height: 1;
}
.testi-rating-meta { font-size: 12px; color: var(--text-muted); letter-spacing: 0.5px; }
.testi-rating-meta strong { color: var(--text); }
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.testi-card {
  padding: 44px 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s;
}
.testi-card:hover { background: var(--surface-2); }
.testi-mark {
  font-family: 'Fraunces', serif;
  font-size: 64px; line-height: 0.6;
  color: var(--gold); opacity: 0.4;
  margin-bottom: 20px;
}
.testi-stars { color: var(--gold); font-size: 14px; letter-spacing: 3px; margin-bottom: 18px; }
.testi-text {
  font-family: 'Fraunces', serif;
  font-size: 17px; line-height: 1.65;
  color: var(--text);
  font-weight: 400;
  margin-bottom: 32px;
  font-style: italic;
}
.testi-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.testi-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  letter-spacing: 0.5px;
}
.testi-name { font-weight: 600; font-size: 14px; }
.testi-loc { font-size: 12px; color: var(--text-faint); margin-top: 2px; }

/* ─── STATS / TRUST ─────────────────────────────── */
.stats-trust {
  background: var(--bg);
  padding: 110px 60px;
  position: relative;
  overflow: hidden;
}
.stats-trust::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(184,153,104,0.08), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(184,153,104,0.06), transparent 50%);
  pointer-events: none;
}
.stats-trust-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  border: 1px solid var(--line-strong);
}
.stat-tile {
  padding: 50px 32px;
  text-align: center;
  border-right: 1px solid var(--line-strong);
  position: relative;
}
.stat-tile:last-child { border-right: none; }
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 76px; font-weight: 500;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -3px;
  margin-bottom: 14px;
}
.stat-num em { font-style: normal; font-size: 38px; }
.stat-name {
  font-size: 12px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--text-muted);
}

/* ─── VALUES (about page) ───────────────────────── */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.value {
  padding: 60px 44px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.value-icon {
  width: 64px; height: 64px;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 32px;
  transform: rotate(45deg);
}
.value-icon svg { transform: rotate(-45deg); }
.value h3 {
  font-family: 'Fraunces', serif;
  font-size: 28px; font-weight: 500;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.value p {
  font-size: 15px; line-height: 1.75;
  color: var(--text-muted);
  font-weight: 300;
}

/* ─── MISSION/VISION (about page) ──────────────── */
.mv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.mv-block {
  padding: 70px 60px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.mv-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 14px;
}
.mv-label::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.mv-block h3 {
  font-family: 'Fraunces', serif;
  font-size: 36px; font-weight: 500;
  letter-spacing: -0.8px;
  margin-bottom: 18px;
  line-height: 1.15;
}
.mv-block h3 em { font-style: italic; color: var(--gold); }
.mv-block p {
  font-size: 17px; line-height: 1.75;
  color: var(--text-muted);
  font-weight: 300;
}

/* ─── CTA BANNER ────────────────────────────────── */
.cta { padding: 0 60px 140px; }
.cta-inner {
  background:
    linear-gradient(135deg, rgba(10,9,8,0.86), rgba(10,9,8,0.94)),
    url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1800&q=85') center/cover no-repeat;
  border: 1px solid rgba(184,153,104,0.35);
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute; top: 0; left: 0; width: 4px; height: 100%;
  background: var(--gold);
}
.cta-eyebrow {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
  margin-bottom: 18px;
}
.cta h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500; line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.cta h2 em { font-style: italic; color: var(--gold); }
.cta p {
  font-size: 17px; line-height: 1.7;
  color: var(--text-muted);
  max-width: 500px;
  font-weight: 300;
}
.cta-actions {
  display: flex; flex-direction: column; gap: 18px;
  align-items: stretch;
}
.cta-call {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px;
  background: rgba(184,153,104,0.08);
  border: 1px solid rgba(184,153,104,0.25);
}
.cta-call-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.cta-call-meta { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-faint); }
.cta-call-num { font-family: 'Fraunces', serif; font-size: 24px; font-weight: 500; color: var(--text); }

/* ─── CONTACT ───────────────────────────────────── */
.contact-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}
.contact-info-list { display: flex; flex-direction: column; margin-top: 40px; }
.contact-row {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.contact-row-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.contact-row-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 4px;
}
.contact-row-val {
  font-family: 'Fraunces', serif;
  font-size: 18px; font-weight: 500;
  color: var(--text);
}
.contact-row-val a { color: var(--text); }
.contact-row-val a:hover { color: var(--gold); }
.contact-row-sub { font-size: 12px; color: var(--text-faint); margin-top: 4px; }
.contact-form {
  background: var(--bg);
  border: 1px solid var(--line-strong);
  padding: 50px;
}
.contact-form-head { margin-bottom: 36px; }
.contact-form-head h3 {
  font-family: 'Fraunces', serif;
  font-size: 30px; font-weight: 500;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.contact-form-head p { color: var(--text-muted); font-size: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--text);
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold);
  background: rgba(184,153,104,0.04);
}
.field select option { background: var(--surface); color: var(--text); }
.field textarea { resize: vertical; min-height: 120px; }
.submit {
  width: 100%;
  background: var(--gold); color: var(--ink);
  border: none;
  padding: 18px;
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.submit:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(184,153,104,0.3); }
.form-meta { font-size: 12px; color: var(--text-faint); margin-top: 14px; text-align: center; }

/* ─── FAQ ──────────────────────────────────────── */
.faq-wrap { max-width: 900px; margin: 0 auto; }
.faq-head { text-align: center; margin-bottom: 60px; }
.faq-head .sec-tag { justify-content: center; }
.faq-head .sec-tag::before { display: none; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  cursor: pointer;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 500;
  letter-spacing: -0.3px;
}
.faq-toggle {
  width: 36px; height: 36px; flex-shrink: 0;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  transition: transform 0.3s, background 0.3s, border-color 0.3s;
}
.faq-item.open .faq-toggle {
  background: var(--gold); color: var(--ink);
  transform: rotate(45deg);
  border-color: var(--gold);
}
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, margin 0.4s ease;
  color: var(--text-muted);
  font-size: 16px; line-height: 1.75;
  font-weight: 300;
}
.faq-item.open .faq-a {
  max-height: 400px;
  margin-top: 20px;
}

/* ─── FOOTER ───────────────────────────────────── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--line-strong);
  padding: 90px 60px 40px;
}
.foot-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.foot-brand p {
  color: var(--text-muted);
  font-size: 14px; line-height: 1.75;
  margin-top: 22px; max-width: 320px;
  font-weight: 300;
}
.foot-social { display: flex; gap: 10px; margin-top: 28px; }
.foot-social a {
  width: 40px; height: 40px;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.foot-social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(184,153,104,0.06); }
.foot-col h6 {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.foot-col a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.2s;
}
.foot-col a:hover { color: var(--text); }
.foot-bottom {
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.foot-bottom p { font-size: 12px; color: var(--text-faint); letter-spacing: 0.5px; }
.foot-bottom .creds-mini {
  display: flex; gap: 24px; font-size: 11px; color: var(--text-faint);
}
.foot-bottom .creds-mini span strong { color: var(--text-muted); font-weight: 600; }

/* ─── FLOATING ACTIONS ─────────────────────────── */
.float-actions {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 999;
  display: flex; flex-direction: column; gap: 12px;
}
.float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-btn:hover { transform: scale(1.08); box-shadow: 0 14px 36px rgba(0,0,0,0.5); }
.float-wa { background: #25D366; color: white; }
.float-call { background: var(--gold); color: var(--ink); animation: floaty 3s ease-in-out infinite; }
@keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* ─── RESPONSIVE ───────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-inner { grid-template-columns: 1fr; }
  .featured-img { min-height: 400px; }
  .featured-img::after { background: linear-gradient(to bottom, transparent 60%, var(--surface) 100%); }
  .featured-content { padding: 60px 40px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 50px; }
  .process-steps::before { display: none; }
  .portfolio-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; }
  .pg-item.large { grid-column: span 2; }
  .testi-grid { grid-template-columns: 1fr; }
  .stats-trust-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-tile { border-bottom: 1px solid var(--line-strong); }
  .stat-tile:nth-child(2n) { border-right: none; }
  .testi-head { grid-template-columns: 1fr; gap: 32px; }
  .cta { padding: 0 24px 80px; }
  .cta-inner { grid-template-columns: 1fr; padding: 60px 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 36px 28px; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .values { grid-template-columns: 1fr; }
  .mv { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 50px; }
  .service-detail:nth-child(even) .sd-img-wrap { order: 0; }
  .sd-features { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .topbar { display: none; }
  nav, nav.scrolled { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-content { padding: 80px 24px 120px; }
  .hero-meta { display: none; }
  .creds { padding: 24px; gap: 20px; }
  .cred-divider { display: none; }
  .sec-pad { padding: 80px 24px; }
  .sec-pad-sm { padding: 60px 24px; }
  .container { padding: 0 24px; }
  .page-hero { padding: 80px 24px 60px; }
  .story { grid-template-columns: 1fr; gap: 60px; }
  .story-img-frame { display: none; }
  .featured-content { padding: 50px 24px; }
  .featured-specs { grid-template-columns: 1fr; gap: 20px; }
  .featured-spec { border-right: none; border-bottom: 1px solid var(--line); padding-bottom: 16px; }
  .services-head { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-head { flex-direction: column; gap: 24px; align-items: flex-start; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .pg-item.large, .pg-item.wide { grid-column: span 2; }
  .stats-trust { padding: 70px 24px; }
  .stat-num { font-size: 56px; }
  .service-detail { padding: 70px 24px; }
  footer { padding: 60px 24px 30px; }
  .foot-top { grid-template-columns: 1fr; gap: 32px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
  .foot-bottom .creds-mini { flex-wrap: wrap; gap: 12px; }
}

/* ─── PHONES (≤600px) ────────────────────────────── */
@media (max-width: 600px) {
  /* Type scales down — 48px floor was too heavy for a 375px screen */
  .hero h1 { font-size: clamp(34px, 9.5vw, 46px); letter-spacing: -1px; line-height: 1.04; }
  .page-hero h1 { font-size: clamp(30px, 8.5vw, 42px); letter-spacing: -0.8px; }
  .sec-title { font-size: clamp(28px, 7.5vw, 38px); letter-spacing: -0.6px; }
  .hero-sub { font-size: 16px; line-height: 1.65; }
  .page-hero-sub { font-size: 15px; line-height: 1.65; }

  .hero-eyebrow { font-size: 10px; letter-spacing: 1.6px; padding: 8px 14px; }
  .sec-tag { font-size: 10px; letter-spacing: 2px; }

  /* One column — two was far too cramped at this width */
  .portfolio-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .pg-item.large, .pg-item.wide, .pg-item.tall { grid-column: span 1; }
  .process-steps { grid-template-columns: 1fr; gap: 36px; }
  .stats-trust-inner { grid-template-columns: 1fr; }
  .stat-tile { border-right: none !important; padding: 28px 0; }
  .stat-num { font-size: 44px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* Full-width buttons read better than side-by-side on a phone */
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-actions .btn-gold,
  .hero-actions .btn-ghost { width: 100%; justify-content: center; padding: 17px 24px; }
  .cta-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .cta-actions .btn-gold,
  .cta-actions .btn-ghost { width: 100%; justify-content: center; }

  /* Breathing room */
  .sec-pad { padding: 64px 20px; }
  .sec-pad-sm { padding: 48px 20px; }
  .container { padding: 0 20px; }
  .hero-content { padding: 60px 20px 90px; }
  .page-hero { padding: 64px 20px 48px; }
  .cta-inner { padding: 44px 24px; }
  .contact-form { padding: 28px 20px; }
  .featured-content { padding: 40px 20px; }
  .service-detail { padding: 56px 20px; }
  footer { padding: 48px 20px 24px; }

  /* Tap targets — 44px is the Apple/Google minimum */
  .nav-links.mobile-open a { padding: 14px 0; font-size: 16px; display: block; }
  .foot-col a,
  .foot-col li a { padding: 13px 0; display: inline-block; min-height: 44px; line-height: 1.4; }
  .crumbs a, .crumbs span { padding: 10px 0; display: inline-block; min-height: 40px; line-height: 1.6; }
  .foot-contact a, .foot-bottom a { padding: 10px 0; display: inline-block; min-height: 40px; }
  .cta-call-num { padding: 10px 0; display: inline-block; min-height: 44px; line-height: 1.5; }
  .featured-link { padding: 12px 0; display: inline-flex; align-items: center; min-height: 44px; }
  .contact-row-val a { padding: 10px 0; display: inline-block; min-height: 44px; line-height: 1.6; }
  .tab { padding: 12px 18px; font-size: 12px; min-height: 44px; display: inline-flex; align-items: center; }
  .portfolio-tabs { flex-wrap: wrap; gap: 8px; }

  /* Logo trimmed so the nav bar doesn't dominate the screen */
  .brand-logo { height: 42px; }
  footer .brand-logo { height: 48px; }

  /* Overlays are always visible on touch — there is no hover on a phone */
  .pg-overlay { opacity: 1; transform: none; background: linear-gradient(to top, rgba(10,9,8,0.92) 0%, rgba(10,9,8,0.35) 55%, transparent 100%); }
}

/* ─── SMALL PHONES (≤380px) ──────────────────────── */
@media (max-width: 380px) {
  .hero h1 { font-size: 32px; }
  .sec-title { font-size: 26px; }
  .stat-num { font-size: 38px; }
  .container, .sec-pad { padding-left: 16px; padding-right: 16px; }
  .hero-content { padding: 52px 16px 80px; }
}

/* Kill any accidental sideways scroll on touch devices */
@media (max-width: 900px) {
  html, body { overflow-x: hidden; max-width: 100%; }
}
